diff --git a/.github/labeler.yml b/.github/labeler.yml
index 291516e11b501741be16591e36c5c7d996bd3f55..bda01f0223e8c0a3187c39544e03f2e6adc1bcc1 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -127,6 +127,11 @@
   - any-glob-to-any-file:
     - 'superset/translations/es/**'
 
+"i18n:persian":
+- changed-files:
+  - any-glob-to-any-file:
+    - 'superset/translations/fa/**'
+
 ############################################
 # Sub-projects and monorepo packages
 ############################################
diff --git a/.github/workflows/check-python-deps.yml b/.github/workflows/check-python-deps.yml
index 749c41b75f89a2deb91dc763fa82804d4934aacc..edb7d4ea5f6edc0011e43d54390fa9649cca0337 100644
--- a/.github/workflows/check-python-deps.yml
+++ b/.github/workflows/check-python-deps.yml
@@ -17,13 +17,12 @@ jobs:
   check-python-deps:
     runs-on: ubuntu-22.04
     steps:
-
       - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
         uses: actions/checkout@v4
         with:
           persist-credentials: false
           submodules: recursive
-          depth: 1
+          fetch-depth: 1
 
       - name: Setup Python
         if: steps.check.outputs.python
diff --git a/docs/data/countries.json b/docs/data/countries.json
index 34e505b2e32635ff46f2b5552d7a92f642c17ff6..396b001fdf8b822cf7cfd831b290e2a93b56e61d 100644
--- a/docs/data/countries.json
+++ b/docs/data/countries.json
@@ -86,6 +86,7 @@
     "Israel",
     "Italy",
     "Italy (regions)",
+    "Ivory Coast",
     "Japan",
     "Jordan",
     "Kazakhstan",
@@ -143,6 +144,7 @@
     "Poland",
     "Portugal",
     "Qatar",
+    "Republic Of Serbia",
     "Romania",
     "Russia",
     "Rwanda",
diff --git a/docs/docs/configuration/configuring-superset.mdx b/docs/docs/configuration/configuring-superset.mdx
index 0fb208d4f8c795675d4ad25f8b0d5fa65d6d361a..1a453adfe32cb0a2eb67bd93ed2a13db4d4d278b 100644
--- a/docs/docs/configuration/configuring-superset.mdx
+++ b/docs/docs/configuration/configuring-superset.mdx
@@ -302,6 +302,15 @@ AUTH_USER_REGISTRATION = True
 AUTH_USER_REGISTRATION_ROLE = "Public"
 ```
 
+In case you want to assign the `Admin` role on new user registration, it can be assigned as follows:
+```python
+AUTH_USER_REGISTRATION_ROLE = "Admin"
+```
+If you encounter the [issue](https://github.com/apache/superset/issues/13243) of not being able to list users from the Superset main page settings, although a newly registered user has an `Admin` role, please re-run `superset init` to sync the required permissions. Below is the command to re-run `superset init` using docker compose.
+```
+docker-compose exec superset superset init
+```
+
 Then, create a `CustomSsoSecurityManager` that extends `SupersetSecurityManager` and overrides
 `oauth_user_info`:
 
diff --git a/docs/docs/configuration/databases.mdx b/docs/docs/configuration/databases.mdx
index e74c1e535a88050bc09ae4ea5d72d54cc7e04f5f..2c8124e942f344066be22686574174eff316e9e2 100644
--- a/docs/docs/configuration/databases.mdx
+++ b/docs/docs/configuration/databases.mdx
@@ -1293,6 +1293,13 @@ The connection string for SQL Server looks like this:
 mssql+pyodbc:///?odbc_connect=Driver%3D%7BODBC+Driver+17+for+SQL+Server%7D%3BServer%3Dtcp%3A%3Cmy_server%3E%2C1433%3BDatabase%3Dmy_database%3BUid%3Dmy_user_name%3BPwd%3Dmy_password%3BEncrypt%3Dyes%3BConnection+Timeout%3D30
 ```
 
+:::note
+You might have noticed that some special charecters are used in the above connection string. For example see the `odbc_connect` parameter. The value is `Driver%3D%7BODBC+Driver+17+for+SQL+Server%7D%3B` which is a URL-encoded form of `Driver={ODBC+Driver+17+for+SQL+Server};`. It's important to give the connection string is URL encoded.
+
+For more information about this check the [sqlalchemy documentation](https://docs.sqlalchemy.org/en/20/core/engines.html#escaping-special-characters-such-as-signs-in-passwords). Which says `When constructing a fully formed URL string to pass to create_engine(), special characters such as those that may be used in the user and password need to be URL encoded to be parsed correctly. This includes the @ sign.`
+:::
+
+
 #### StarRocks
 
 The [sqlalchemy-starrocks](https://pypi.org/project/starrocks/) library is the recommended
diff --git a/docs/docs/installation/docker-builds.mdx b/docs/docs/installation/docker-builds.mdx
index d6d41a1161d56962ae7996cf675692a7494ebde4..93afa08606e028a7d732fc1bba044af69b55d1a3 100644
--- a/docs/docs/installation/docker-builds.mdx
+++ b/docs/docs/installation/docker-builds.mdx
@@ -1,7 +1,7 @@
 ---
 title: Docker Builds
 hide_title: true
-sidebar_position: 6
+sidebar_position: 7
 version: 1
 ---
 
@@ -44,7 +44,7 @@ Here are the build presets that are exposed through the `supersetbot docker` uti
 - `py311`, e.g., Py311: Similar to lean but with a different Python version (in this example, 3.11).
 - `ci`: For certain CI workloads.
 - `websocket`: For Superset clusters supporting advanced features.
-- `dockerize`: Used by Helm.
+- `dockerize`: Used by Helm in initContainers to wait for database dependencies to be available.
 
 ## Key tags examples
 
diff --git a/docs/docs/installation/docker-compose.mdx b/docs/docs/installation/docker-compose.mdx
index 42d0de47b9f823f3af58826e833e60809bc9f8f8..24dccde7c25b5c1fac2a3ada7c97431ffc7d20e9 100644
--- a/docs/docs/installation/docker-compose.mdx
+++ b/docs/docs/installation/docker-compose.mdx
@@ -1,7 +1,7 @@
 ---
 title: Docker Compose
 hide_title: true
-sidebar_position: 4
+sidebar_position: 5
 version: 1
 ---
 
diff --git a/docs/docs/installation/installation-methods.mdx b/docs/docs/installation/installation-methods.mdx
new file mode 100644
index 0000000000000000000000000000000000000000..76a481938d176d7a2ecc3c31f1bb830406fafad0
--- /dev/null
+++ b/docs/docs/installation/installation-methods.mdx
@@ -0,0 +1,58 @@
+---
+title: Installation Methods
+hide_title: true
+sidebar_position: 2
+version: 1
+---
+
+import useBaseUrl from "@docusaurus/useBaseUrl";
+
+# Installation Methods
+
+How should you install Superset? Here's a comparison of the different options. It will help if you've first read the [Architecture](/docs/installation/architecture.mdx) page to understand Superset's different components.
+
+The fundamental trade-off is between you needing to do more of the detail work yourself vs. using a more complex deployment route that handles those details.
+
+## [Docker Compose](/docs/installation/docker-compose.mdx)
+
+**Summary:** This takes advantage of containerization while remaining simpler than Kubernetes. This is the best way to try out Superset; it's also useful for developing & contributing back to Superset.
+
+If you're not just demoing the software, you'll need a moderate understanding of Docker to customize your deployment and avoid a few risks. Even when fully-optimized this is not as robust a method as Kubernetes when it comes to large-scale production deployments.
+
+You manage a superset-config.py file and a docker-compose.yml file. Docker Compose brings up all the needed services - the Superset application, a Postgres metadata DB, Redis cache, Celery worker and beat. They are automatically connected to each other.
+
+**Responsibilities**
+
+You will need to back up your metadata DB. That could mean backing up the service running as a Docker container and its volume; ideally you are running Postgres as a service outside of that container and backing up that service.
+
+You will also need to extend the Superset docker image. The default `lean` images do not contain drivers needed to access your metadata database (Postgres or MySQL), nor to access your data warehouse, nor the headless browser needed for Alerts & Reports. You could run a `-dev` image while demoing Superset, which has some of this, but you'll still need to install the driver for your data warehouse. The `-dev` images run as root, which is not recommended for production.
+
+Ideally you will build your own image of Superset that extends `lean`, adding what your deployment needs.
+
+See [Docker Build Presets](/docs/installation/docker-builds/#build-presets) for more information about the different image versions you can extend.
+
+## [Kubernetes (K8s)](/docs/installation/kubernetes.mdx)
+
+**Summary:** This is the best-practice way to deploy a production instance of Superset, but has the steepest skill requirement - someone who knows Kubernetes.
+
+You will deploy Superset into a K8s cluster. The most common method is using the community-maintained Helm chart, though work is now underway to implement [SIP-149 - a Kubernetes Operator for Superset](https://github.com/apache/superset/issues/31408).
+
+A K8s deployment can scale up and down based on usage and deploy rolling updates with zero downtime - features that big deployments appreciate.
+
+**Responsibilities**
+
+You will need to build your own Docker image, and back up your metadata DB, both as described in Docker Compose above. You'll also need to customize your Helm chart values and deploy and maintain your Kubernetes cluster.
+
+## [PyPI (Python)](/docs/installation/pypi.mdx)
+
+**Summary:** This is the only method that requires no knowledge of containers. It requires the most hands-on work to deploy, connect, and maintain each component.
+
+You install Superset as a Python package and run it that way, providing your own metadata database. Superset has documentation on how to install this way, but it is updated infrequently.
+
+If you want caching, you'll set up Redis or RabbitMQ. If you want Alerts & Reports, you'll set up Celery.
+
+**Responsibilities**
+
+You will need to get the component services running and communicating with each other. You'll need to arrange backups of your metadata database.
+
+When upgrading, you'll need to manage the system environment and packages and ensure all components have functional dependencies.
diff --git a/docs/docs/installation/kubernetes.mdx b/docs/docs/installation/kubernetes.mdx
index f4b29938d76980da74a0d6ec2048f00b8a2b53df..9f515a63010e74336ac352147bc4a5101bcab556 100644
--- a/docs/docs/installation/kubernetes.mdx
+++ b/docs/docs/installation/kubernetes.mdx
@@ -1,7 +1,7 @@
 ---
 title:  Kubernetes
 hide_title: true
-sidebar_position: 2
+sidebar_position: 3
 version: 1
 ---
 
diff --git a/docs/docs/installation/pypi.mdx b/docs/docs/installation/pypi.mdx
index da2aabcf0b10fefe03e9c6c1eac4a13487698806..c03261461d7675451c2645190711f4b482c36fdf 100644
--- a/docs/docs/installation/pypi.mdx
+++ b/docs/docs/installation/pypi.mdx
@@ -1,7 +1,7 @@
 ---
 title: PyPI
 hide_title: true
-sidebar_position: 3
+sidebar_position: 4
 version: 1
 ---
 
diff --git a/docs/docs/installation/upgrading-superset.mdx b/docs/docs/installation/upgrading-superset.mdx
index 38e03822dd40d4715c1f613976203f4cb590c909..46f00b0616b7dd99c2f8c23b8bea4197aa6ca7ea 100644
--- a/docs/docs/installation/upgrading-superset.mdx
+++ b/docs/docs/installation/upgrading-superset.mdx
@@ -1,7 +1,7 @@
 ---
 title: Upgrading Superset
 hide_title: true
-sidebar_position: 5
+sidebar_position: 6
 version: 1
 ---
 
diff --git a/docs/docs/security/cves.mdx b/docs/docs/security/cves.mdx
index 778cb72ab797356ea7ad2b45a205d32918cbeb53..e61d8602162d8a5ec53b4b8127f6490598760286 100644
--- a/docs/docs/security/cves.mdx
+++ b/docs/docs/security/cves.mdx
@@ -2,6 +2,12 @@
 title: CVEs fixed by release
 sidebar_position: 2
 ---
+#### Version 4.1.2
+
+| CVE            | Title                                                                              | Affected |
+|:---------------|:-----------------------------------------------------------------------------------|---------:|
+| CVE-2025-27696 | Improper authorization leading to resource ownership takeover                      |  < 4.1.2 |
+
 #### Version 4.1.0
 
 | CVE            | Title                                                                              | Affected |
diff --git a/docs/docs/security/security.mdx b/docs/docs/security/security.mdx
index d665547760968b4ca1950111d9d59a66238b6f49..1b2aa8fd240241645aea6f4a6f03f6631cb5bd32 100644
--- a/docs/docs/security/security.mdx
+++ b/docs/docs/security/security.mdx
@@ -64,6 +64,26 @@ tables in the **Permissions** dropdown. To select the data sources you want to a
 You can then confirm with users assigned to the **Gamma** role that they see the
 objects (dashboards and slices) associated with the tables you just extended them.
 
+### SQL Execution Security Considerations
+
+Apache Superset includes features designed to provide safeguards when interacting with connected databases, such as the `DISALLOWED_SQL_FUNCTIONS` configuration setting. This aims to prevent the execution of potentially harmful database functions or system variables directly from Superset interfaces like SQL Lab.
+
+However, it is crucial to understand the following:
+
+**Superset is Not a Database Firewall**: Superset's built-in checks, like `DISALLOWED_SQL_FUNCTIONS`, provide a layer of protection but cannot guarantee complete security against all database-level threats or advanced bypass techniques (like specific comment injection methods). They should be viewed as a supplement to, not a replacement for, robust database security.
+
+**Configuration is Key**: The effectiveness of Superset's safeguards heavily depends on proper configuration by the Superset administrator. This includes maintaining the `DISALLOWED_SQL_FUNCTIONS` list, carefully managing feature flags (like `ENABLE_TEMPLATE_PROCESSING`), and configuring other security settings appropriately.
+
+**Database Security is Paramount**: The ultimate responsibility for securing database access, controlling permissions, and preventing unauthorized function execution lies with the database administrators (DBAs) and security teams managing the underlying database instance.
+
+**Recommended Database Practices**: We strongly recommend implementing security best practices at the database level, including:
+* **Least Privilege**: Connecting Superset using dedicated database user accounts with the minimum permissions required for Superset's operation (typically read-only access to necessary schemas/tables).
+* **Database Roles & Permissions**: Utilizing database-native roles and permissions to restrict access to sensitive functions, system variables (like `@@hostname`), schemas, or tables.
+* **Network Security**: Employing network-level controls like database firewalls or proxies to restrict connections.
+* **Auditing**: Enabling database-level auditing to monitor executed queries and access patterns.
+
+By combining Superset's configurable safeguards with strong database-level security practices, you can achieve a more robust and layered security posture.
+
 ### REST API for user & role management
 
 Flask-AppBuilder supports a REST API for user CRUD,
diff --git a/docs/package.json b/docs/package.json
index 31eded32416b4b841f6559f0ba6a9a5287b36399..e3670ac9af88de1e575424c7df92c9ac3b25e913 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -26,16 +26,16 @@
     "@emotion/styled": "^10.0.27",
     "@saucelabs/theme-github-codeblock": "^0.3.0",
     "@superset-ui/style": "^0.14.23",
-    "antd": "^5.24.5",
+    "antd": "^5.24.9",
     "docusaurus-plugin-less": "^2.0.2",
-    "less": "^4.2.2",
+    "less": "^4.3.0",
     "less-loader": "^11.0.0",
     "prism-react-renderer": "^2.4.1",
     "react": "^18.3.1",
     "react-dom": "^18.3.1",
     "react-github-btn": "^1.4.0",
     "react-svg-pan-zoom": "^3.13.1",
-    "swagger-ui-react": "^5.20.2"
+    "swagger-ui-react": "^5.21.0"
   },
   "devDependencies": {
     "@docusaurus/module-type-aliases": "^3.7.0",
@@ -44,12 +44,12 @@
     "@typescript-eslint/eslint-plugin": "^5.0.0",
     "@typescript-eslint/parser": "^5.0.0",
     "eslint": "^8.0.0",
-    "eslint-config-prettier": "^10.1.1",
+    "eslint-config-prettier": "^10.1.2",
     "eslint-plugin-prettier": "^4.0.0",
-    "eslint-plugin-react": "^7.0.0",
+    "eslint-plugin-react": "^7.37.5",
     "prettier": "^2.0.0",
-    "typescript": "~5.8.2",
-    "webpack": "^5.98.0"
+    "typescript": "~5.8.3",
+    "webpack": "^5.99.7"
   },
   "browserslist": {
     "production": [
diff --git a/docs/static/resources/openapi.json b/docs/static/resources/openapi.json
index 6389dec60df414cb137fc23f68e023fe02f26fa2..bb8858fb6ccf888a0cf9061676b52e23ab43e710 100644
--- a/docs/static/resources/openapi.json
+++ b/docs/static/resources/openapi.json
@@ -635,37 +635,6 @@
         },
         "type": "object"
       },
-      "AppleHealthResponseSchema": {
-        "properties": {
-          "cache_message": {
-            "description": "Human readable status message for the cache connection",
-            "type": "string"
-          },
-          "cache_status": {
-            "description": "The status of the cache",
-            "enum": [
-              "NA",
-              "HEALTHY",
-              "ERROR"
-            ],
-            "type": "string"
-          },
-          "metastore_message": {
-            "description": "Human readable status message for the metastore connection",
-            "type": "string"
-          },
-          "metastore_status": {
-            "description": "The status of the metastore",
-            "enum": [
-              "NA",
-              "HEALTHY",
-              "ERROR"
-            ],
-            "type": "string"
-          }
-        },
-        "type": "object"
-      },
       "AvailableDomainsSchema": {
         "properties": {
           "domains": {
@@ -677,132 +646,6 @@
         },
         "type": "object"
       },
-      "CSVMetadataUploadFilePostSchema": {
-        "properties": {
-          "delimiter": {
-            "description": "The delimiter of the CSV file",
-            "type": "string"
-          },
-          "file": {
-            "description": "The file to upload",
-            "format": "binary",
-            "type": "string"
-          },
-          "header_row": {
-            "description": "Row containing the headers to use as column names(0 is first line of data). Leave empty if there is no header row.",
-            "type": "integer"
-          }
-        },
-        "required": [
-          "file"
-        ],
-        "type": "object"
-      },
-      "CSVUploadPostSchema": {
-        "properties": {
-          "already_exists": {
-            "default": "fail",
-            "description": "What to do if the table already exists accepts: fail, replace, append",
-            "enum": [
-              "fail",
-              "replace",
-              "append"
-            ],
-            "type": "string"
-          },
-          "column_data_types": {
-            "description": "A dictionary with column names and their data types if you need to change the defaults. Example: {'user_id':'int'}. Check Python Pandas library for supported data types",
-            "type": "string"
-          },
-          "column_dates": {
-            "description": "A list of column names that should be parsed as dates. Example: date,timestamp",
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
-          },
-          "columns_read": {
-            "description": "A List of the column names that should be read",
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
-          },
-          "dataframe_index": {
-            "description": "Write dataframe index as a column.",
-            "type": "boolean"
-          },
-          "day_first": {
-            "description": "DD/MM format dates, international and European format",
-            "type": "boolean"
-          },
-          "decimal_character": {
-            "description": "Character to recognize as decimal point. Default is '.'",
-            "type": "string"
-          },
-          "delimiter": {
-            "description": "The delimiter of the CSV file",
-            "type": "string"
-          },
-          "file": {
-            "description": "The CSV file to upload",
-            "format": "text/csv",
-            "type": "string"
-          },
-          "header_row": {
-            "description": "Row containing the headers to use as column names(0 is first line of data). Leave empty if there is no header row.",
-            "type": "integer"
-          },
-          "index_column": {
-            "description": "Column to use as the row labels of the dataframe. Leave empty if no index column",
-            "type": "string"
-          },
-          "index_label": {
-            "description": "Index label for index column.",
-            "type": "string"
-          },
-          "null_values": {
-            "description": "A list of strings that should be treated as null. Examples: '' for empty strings, 'None', 'N/A',Warning: Hive database supports only a single value",
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
-          },
-          "rows_to_read": {
-            "description": "Number of rows to read from the file. If None, reads all rows.",
-            "minimum": 1,
-            "nullable": true,
-            "type": "integer"
-          },
-          "schema": {
-            "description": "The schema to upload the data file to.",
-            "type": "string"
-          },
-          "skip_blank_lines": {
-            "description": "Skip blank lines in the CSV file.",
-            "type": "boolean"
-          },
-          "skip_initial_space": {
-            "description": "Skip spaces after delimiter.",
-            "type": "boolean"
-          },
-          "skip_rows": {
-            "description": "Number of rows to skip at start of file.",
-            "type": "integer"
-          },
-          "table_name": {
-            "description": "The name of the table to be created/appended",
-            "maxLength": 10000,
-            "minLength": 1,
-            "type": "string"
-          }
-        },
-        "required": [
-          "file",
-          "table_name"
-        ],
-        "type": "object"
-      },
       "CacheInvalidationRequestSchema": {
         "properties": {
           "datasource_uids": {
@@ -879,6 +722,14 @@
           "image_url": {
             "description": "The url to fetch the screenshot",
             "type": "string"
+          },
+          "task_status": {
+            "description": "The status of the async screenshot",
+            "type": "string"
+          },
+          "task_updated_at": {
+            "description": "The timestamp of the last change in status",
+            "type": "string"
           }
         },
         "type": "object"
@@ -1898,7 +1749,7 @@
             "type": "boolean"
           },
           "owners": {
-            "$ref": "#/components/schemas/ChartDataRestApi.get.AppleUser"
+            "$ref": "#/components/schemas/ChartDataRestApi.get.User"
           },
           "params": {
             "nullable": true,
@@ -1930,26 +1781,6 @@
         },
         "type": "object"
       },
-      "ChartDataRestApi.get.AppleUser": {
-        "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
-          },
-          "id": {
-            "type": "integer"
-          },
-          "last_name": {
-            "maxLength": 64,
-            "type": "string"
-          }
-        },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
-        "type": "object"
-      },
       "ChartDataRestApi.get.Dashboard": {
         "properties": {
           "dashboard_title": {
@@ -1988,6 +1819,26 @@
         },
         "type": "object"
       },
+      "ChartDataRestApi.get.User": {
+        "properties": {
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
       "ChartDataRestApi.get_list": {
         "properties": {
           "cache_timeout": {
@@ -2069,10 +1920,10 @@
             "type": "string"
           },
           "last_saved_by": {
-            "$ref": "#/components/schemas/ChartDataRestApi.get_list.AppleUser"
+            "$ref": "#/components/schemas/ChartDataRestApi.get_list.User2"
           },
           "owners": {
-            "$ref": "#/components/schemas/ChartDataRestApi.get_list.AppleUser1"
+            "$ref": "#/components/schemas/ChartDataRestApi.get_list.User3"
           },
           "params": {
             "nullable": true,
@@ -2098,52 +1949,17 @@
           "url": {
             "readOnly": true
           },
-          "viz_type": {
-            "maxLength": 250,
+          "uuid": {
+            "format": "uuid",
             "nullable": true,
             "type": "string"
-          }
-        },
-        "type": "object"
-      },
-      "ChartDataRestApi.get_list.AppleUser": {
-        "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
-          },
-          "id": {
-            "type": "integer"
-          },
-          "last_name": {
-            "maxLength": 64,
-            "type": "string"
-          }
-        },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
-        "type": "object"
-      },
-      "ChartDataRestApi.get_list.AppleUser1": {
-        "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
-          },
-          "id": {
-            "type": "integer"
           },
-          "last_name": {
-            "maxLength": 64,
+          "viz_type": {
+            "maxLength": 250,
+            "nullable": true,
             "type": "string"
           }
         },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
         "type": "object"
       },
       "ChartDataRestApi.get_list.Dashboard": {
@@ -2236,6 +2052,46 @@
         ],
         "type": "object"
       },
+      "ChartDataRestApi.get_list.User2": {
+        "properties": {
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
+      "ChartDataRestApi.get_list.User3": {
+        "properties": {
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
       "ChartDataRestApi.post": {
         "properties": {
           "cache_timeout": {
@@ -2718,7 +2574,7 @@
             "type": "boolean"
           },
           "owners": {
-            "$ref": "#/components/schemas/ChartRestApi.get.AppleUser"
+            "$ref": "#/components/schemas/ChartRestApi.get.User"
           },
           "params": {
             "nullable": true,
@@ -2750,31 +2606,11 @@
         },
         "type": "object"
       },
-      "ChartRestApi.get.AppleUser": {
+      "ChartRestApi.get.Dashboard": {
         "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
-          },
-          "id": {
-            "type": "integer"
-          },
-          "last_name": {
-            "maxLength": 64,
-            "type": "string"
-          }
-        },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
-        "type": "object"
-      },
-      "ChartRestApi.get.Dashboard": {
-        "properties": {
-          "dashboard_title": {
-            "maxLength": 500,
-            "nullable": true,
+          "dashboard_title": {
+            "maxLength": 500,
+            "nullable": true,
             "type": "string"
           },
           "id": {
@@ -2808,6 +2644,26 @@
         },
         "type": "object"
       },
+      "ChartRestApi.get.User": {
+        "properties": {
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
       "ChartRestApi.get_list": {
         "properties": {
           "cache_timeout": {
@@ -2889,10 +2745,10 @@
             "type": "string"
           },
           "last_saved_by": {
-            "$ref": "#/components/schemas/ChartRestApi.get_list.AppleUser"
+            "$ref": "#/components/schemas/ChartRestApi.get_list.User2"
           },
           "owners": {
-            "$ref": "#/components/schemas/ChartRestApi.get_list.AppleUser1"
+            "$ref": "#/components/schemas/ChartRestApi.get_list.User3"
           },
           "params": {
             "nullable": true,
@@ -2918,52 +2774,17 @@
           "url": {
             "readOnly": true
           },
-          "viz_type": {
-            "maxLength": 250,
+          "uuid": {
+            "format": "uuid",
             "nullable": true,
             "type": "string"
-          }
-        },
-        "type": "object"
-      },
-      "ChartRestApi.get_list.AppleUser": {
-        "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
-          },
-          "id": {
-            "type": "integer"
-          },
-          "last_name": {
-            "maxLength": 64,
-            "type": "string"
-          }
-        },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
-        "type": "object"
-      },
-      "ChartRestApi.get_list.AppleUser1": {
-        "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
-          },
-          "id": {
-            "type": "integer"
           },
-          "last_name": {
-            "maxLength": 64,
+          "viz_type": {
+            "maxLength": 250,
+            "nullable": true,
             "type": "string"
           }
         },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
         "type": "object"
       },
       "ChartRestApi.get_list.Dashboard": {
@@ -3056,6 +2877,46 @@
         ],
         "type": "object"
       },
+      "ChartRestApi.get_list.User2": {
+        "properties": {
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
+      "ChartRestApi.get_list.User3": {
+        "properties": {
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
       "ChartRestApi.post": {
         "properties": {
           "cache_timeout": {
@@ -3265,68 +3126,6 @@
         },
         "type": "object"
       },
-      "ColumnarMetadataUploadFilePostSchema": {
-        "properties": {
-          "file": {
-            "description": "The file to upload",
-            "format": "binary",
-            "type": "string"
-          }
-        },
-        "required": [
-          "file"
-        ],
-        "type": "object"
-      },
-      "ColumnarUploadPostSchema": {
-        "properties": {
-          "already_exists": {
-            "default": "fail",
-            "description": "What to do if the table already exists accepts: fail, replace, append",
-            "enum": [
-              "fail",
-              "replace",
-              "append"
-            ],
-            "type": "string"
-          },
-          "columns_read": {
-            "description": "A List of the column names that should be read",
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
-          },
-          "dataframe_index": {
-            "description": "Write dataframe index as a column.",
-            "type": "boolean"
-          },
-          "file": {
-            "description": "The Columnar file to upload",
-            "format": "binary",
-            "type": "string"
-          },
-          "index_label": {
-            "description": "Index label for index column.",
-            "type": "string"
-          },
-          "schema": {
-            "description": "The schema to upload the data file to.",
-            "type": "string"
-          },
-          "table_name": {
-            "description": "The name of the table to be created/appended",
-            "maxLength": 10000,
-            "minLength": 1,
-            "type": "string"
-          }
-        },
-        "required": [
-          "file",
-          "table_name"
-        ],
-        "type": "object"
-      },
       "CssTemplateRestApi.get": {
         "properties": {
           "changed_by": {
@@ -3505,6 +3304,14 @@
           "image_url": {
             "description": "The url to fetch the screenshot",
             "type": "string"
+          },
+          "task_status": {
+            "description": "The status of the async screenshot",
+            "type": "string"
+          },
+          "task_updated_at": {
+            "description": "The timestamp of the last change in status",
+            "type": "string"
           }
         },
         "type": "object"
@@ -3565,9 +3372,6 @@
             },
             "type": "array"
           },
-          "currency_formats": {
-            "type": "object"
-          },
           "database": {
             "$ref": "#/components/schemas/Database"
           },
@@ -3769,6 +3573,7 @@
             "type": "array"
           },
           "thumbnail_url": {
+            "nullable": true,
             "type": "string"
           },
           "url": {
@@ -3845,10 +3650,6 @@
           "created_on_delta_humanized": {
             "readOnly": true
           },
-          "css": {
-            "nullable": true,
-            "type": "string"
-          },
           "dashboard_title": {
             "maxLength": 500,
             "nullable": true,
@@ -3860,16 +3661,8 @@
           "is_managed_externally": {
             "type": "boolean"
           },
-          "json_metadata": {
-            "nullable": true,
-            "type": "string"
-          },
           "owners": {
-            "$ref": "#/components/schemas/DashboardRestApi.get_list.AppleUser"
-          },
-          "position_json": {
-            "nullable": true,
-            "type": "string"
+            "$ref": "#/components/schemas/DashboardRestApi.get_list.User2"
           },
           "published": {
             "nullable": true,
@@ -3894,28 +3687,13 @@
           },
           "url": {
             "readOnly": true
-          }
-        },
-        "type": "object"
-      },
-      "DashboardRestApi.get_list.AppleUser": {
-        "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
-          },
-          "id": {
-            "type": "integer"
           },
-          "last_name": {
-            "maxLength": 64,
+          "uuid": {
+            "format": "uuid",
+            "nullable": true,
             "type": "string"
           }
         },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
         "type": "object"
       },
       "DashboardRestApi.get_list.Role": {
@@ -3994,6 +3772,26 @@
         ],
         "type": "object"
       },
+      "DashboardRestApi.get_list.User2": {
+        "properties": {
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
       "DashboardRestApi.post": {
         "properties": {
           "certification_details": {
@@ -5030,10 +4828,6 @@
             },
             "type": "array"
           },
-          "currency_formats": {
-            "description": "Currency formats.",
-            "type": "object"
-          },
           "database": {
             "description": "Database associated with the dataset.",
             "type": "object"
@@ -5532,7 +5326,7 @@
             "type": "string"
           },
           "changed_by": {
-            "$ref": "#/components/schemas/DatasetRestApi.get.User1"
+            "$ref": "#/components/schemas/DatasetRestApi.get.User2"
           },
           "changed_on": {
             "format": "date-time",
@@ -5549,7 +5343,7 @@
             "$ref": "#/components/schemas/DatasetRestApi.get.TableColumn"
           },
           "created_by": {
-            "$ref": "#/components/schemas/DatasetRestApi.get.User"
+            "$ref": "#/components/schemas/DatasetRestApi.get.User1"
           },
           "created_on": {
             "format": "date-time",
@@ -5559,9 +5353,6 @@
           "created_on_humanized": {
             "readOnly": true
           },
-          "currency_formats": {
-            "readOnly": true
-          },
           "database": {
             "$ref": "#/components/schemas/DatasetRestApi.get.Database"
           },
@@ -5591,6 +5382,9 @@
             "nullable": true,
             "type": "boolean"
           },
+          "folders": {
+            "nullable": true
+          },
           "granularity_sqla": {
             "readOnly": true
           },
@@ -5630,7 +5424,7 @@
             "readOnly": true
           },
           "owners": {
-            "$ref": "#/components/schemas/DatasetRestApi.get.AppleUser"
+            "$ref": "#/components/schemas/DatasetRestApi.get.User"
           },
           "schema": {
             "maxLength": 255,
@@ -5673,33 +5467,13 @@
         ],
         "type": "object"
       },
-      "DatasetRestApi.get.AppleUser": {
+      "DatasetRestApi.get.Database": {
         "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
+          "allow_multi_catalog": {
+            "readOnly": true
           },
-          "id": {
-            "type": "integer"
-          },
-          "last_name": {
-            "maxLength": 64,
-            "type": "string"
-          }
-        },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
-        "type": "object"
-      },
-      "DatasetRestApi.get.Database": {
-        "properties": {
-          "allow_multi_catalog": {
-            "readOnly": true
-          },
-          "backend": {
-            "readOnly": true
+          "backend": {
+            "readOnly": true
           },
           "database_name": {
             "maxLength": 250,
@@ -5727,9 +5501,7 @@
             "type": "string"
           },
           "currency": {
-            "maxLength": 128,
-            "nullable": true,
-            "type": "string"
+            "nullable": true
           },
           "d3format": {
             "maxLength": 128,
@@ -5759,6 +5531,11 @@
             "nullable": true,
             "type": "string"
           },
+          "uuid": {
+            "format": "uuid",
+            "nullable": true,
+            "type": "string"
+          },
           "verbose_name": {
             "maxLength": 1024,
             "nullable": true,
@@ -5861,6 +5638,9 @@
             "maxLength": 64,
             "type": "string"
           },
+          "id": {
+            "type": "integer"
+          },
           "last_name": {
             "maxLength": 64,
             "type": "string"
@@ -5889,6 +5669,23 @@
         ],
         "type": "object"
       },
+      "DatasetRestApi.get.User2": {
+        "properties": {
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
       "DatasetRestApi.get_list": {
         "properties": {
           "catalog": {
@@ -5936,7 +5733,7 @@
             "readOnly": true
           },
           "owners": {
-            "$ref": "#/components/schemas/DatasetRestApi.get_list.AppleUser"
+            "$ref": "#/components/schemas/DatasetRestApi.get_list.User1"
           },
           "schema": {
             "maxLength": 255,
@@ -5950,6 +5747,11 @@
           "table_name": {
             "maxLength": 250,
             "type": "string"
+          },
+          "uuid": {
+            "format": "uuid",
+            "nullable": true,
+            "type": "string"
           }
         },
         "required": [
@@ -5958,42 +5760,42 @@
         ],
         "type": "object"
       },
-      "DatasetRestApi.get_list.AppleUser": {
+      "DatasetRestApi.get_list.Database": {
         "properties": {
-          "first_name": {
-            "maxLength": 64,
+          "database_name": {
+            "maxLength": 250,
             "type": "string"
           },
           "id": {
             "type": "integer"
-          },
-          "last_name": {
-            "maxLength": 64,
-            "type": "string"
           }
         },
         "required": [
-          "first_name",
-          "last_name"
+          "database_name"
         ],
         "type": "object"
       },
-      "DatasetRestApi.get_list.Database": {
+      "DatasetRestApi.get_list.User": {
         "properties": {
-          "database_name": {
-            "maxLength": 250,
+          "first_name": {
+            "maxLength": 64,
             "type": "string"
           },
           "id": {
             "type": "integer"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
           }
         },
         "required": [
-          "database_name"
+          "first_name",
+          "last_name"
         ],
         "type": "object"
       },
-      "DatasetRestApi.get_list.User": {
+      "DatasetRestApi.get_list.User1": {
         "properties": {
           "first_name": {
             "maxLength": 64,
@@ -6119,6 +5921,12 @@
             "nullable": true,
             "type": "boolean"
           },
+          "folders": {
+            "items": {
+              "$ref": "#/components/schemas/Folder"
+            },
+            "type": "array"
+          },
           "is_managed_externally": {
             "nullable": true,
             "type": "boolean"
@@ -6360,112 +6168,6 @@
         ],
         "type": "object"
       },
-      "ExcelMetadataUploadFilePostSchema": {
-        "properties": {
-          "file": {
-            "description": "The file to upload",
-            "format": "binary",
-            "type": "string"
-          },
-          "header_row": {
-            "description": "Row containing the headers to use as column names(0 is first line of data). Leave empty if there is no header row.",
-            "type": "integer"
-          }
-        },
-        "required": [
-          "file"
-        ],
-        "type": "object"
-      },
-      "ExcelUploadPostSchema": {
-        "properties": {
-          "already_exists": {
-            "default": "fail",
-            "description": "What to do if the table already exists accepts: fail, replace, append",
-            "enum": [
-              "fail",
-              "replace",
-              "append"
-            ],
-            "type": "string"
-          },
-          "column_dates": {
-            "description": "A list of column names that should be parsed as dates. Example: date,timestamp",
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
-          },
-          "columns_read": {
-            "description": "A List of the column names that should be read",
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
-          },
-          "dataframe_index": {
-            "description": "Write dataframe index as a column.",
-            "type": "boolean"
-          },
-          "decimal_character": {
-            "description": "Character to recognize as decimal point. Default is '.'",
-            "type": "string"
-          },
-          "file": {
-            "description": "The Excel file to upload",
-            "format": "binary",
-            "type": "string"
-          },
-          "header_row": {
-            "description": "Row containing the headers to use as column names(0 is first line of data). Leave empty if there is no header row.",
-            "type": "integer"
-          },
-          "index_column": {
-            "description": "Column to use as the row labels of the dataframe. Leave empty if no index column",
-            "type": "string"
-          },
-          "index_label": {
-            "description": "Index label for index column.",
-            "type": "string"
-          },
-          "null_values": {
-            "description": "A list of strings that should be treated as null. Examples: '' for empty strings, 'None', 'N/A',Warning: Hive database supports only a single value",
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
-          },
-          "rows_to_read": {
-            "description": "Number of rows to read from the file. If None, reads all rows.",
-            "minimum": 1,
-            "nullable": true,
-            "type": "integer"
-          },
-          "schema": {
-            "description": "The schema to upload the data file to.",
-            "type": "string"
-          },
-          "sheet_name": {
-            "description": "Strings used for sheet names (default is the first sheet).",
-            "type": "string"
-          },
-          "skip_rows": {
-            "description": "Number of rows to skip at start of file.",
-            "type": "integer"
-          },
-          "table_name": {
-            "description": "The name of the table to be created/appended",
-            "maxLength": 10000,
-            "minLength": 1,
-            "type": "string"
-          }
-        },
-        "required": [
-          "file",
-          "table_name"
-        ],
-        "type": "object"
-      },
       "ExecutePayloadSchema": {
         "properties": {
           "catalog": {
@@ -6573,6 +6275,44 @@
         ],
         "type": "object"
       },
+      "Folder": {
+        "properties": {
+          "children": {
+            "items": {
+              "$ref": "#/components/schemas/Folder"
+            },
+            "nullable": true,
+            "type": "array"
+          },
+          "description": {
+            "maxLength": 1000,
+            "minLength": 0,
+            "nullable": true,
+            "type": "string"
+          },
+          "name": {
+            "maxLength": 250,
+            "minLength": 1,
+            "type": "string"
+          },
+          "type": {
+            "enum": [
+              "metric",
+              "column",
+              "folder"
+            ],
+            "type": "string"
+          },
+          "uuid": {
+            "format": "uuid",
+            "type": "string"
+          }
+        },
+        "required": [
+          "uuid"
+        ],
+        "type": "object"
+      },
       "FormDataPostSchema": {
         "properties": {
           "chart_id": {
@@ -6718,176 +6458,56 @@
         ],
         "type": "object"
       },
-      "IASLoginTokenRequestSchema": {
+      "ImportV1Database": {
         "properties": {
-          "access_token": {
-            "description": "IAS Access token. Can be requested by adding `token` to the `responseTypes`.",
+          "allow_csv_upload": {
+            "type": "boolean"
+          },
+          "allow_ctas": {
+            "type": "boolean"
+          },
+          "allow_cvas": {
+            "type": "boolean"
+          },
+          "allow_dml": {
+            "type": "boolean"
+          },
+          "allow_run_async": {
+            "type": "boolean"
+          },
+          "cache_timeout": {
             "nullable": true,
+            "type": "integer"
+          },
+          "database_name": {
             "type": "string"
           },
-          "client_id": {
-            "description": "IAS client id. Only needed if `refresh_token` is provided.",
+          "encrypted_extra": {
             "nullable": true,
             "type": "string"
           },
-          "client_secret": {
-            "description": "IAS client secret. Only needed if `refresh_token` and `client_id` is provided.",
+          "expose_in_sqllab": {
+            "type": "boolean"
+          },
+          "external_url": {
             "nullable": true,
             "type": "string"
           },
-          "id_token": {
-            "description": "IAS ID token. Can be requested by adding `id_token` to the `responseTypes`. The following scopes should be added:`iam:ds:groups`, `corpds:ds:username`, `corpds:ds:firstName`, `corpds:ds:lastName`, `corpds:ds:email`, `corpds:ds:uidNumber`, `iam:ds:explicitgroups`.",
-            "type": "string"
+          "extra": {
+            "$ref": "#/components/schemas/ImportV1DatabaseExtra"
+          },
+          "impersonate_user": {
+            "type": "boolean"
           },
-          "refresh_token": {
-            "description": "IAS refresh token. This can be requested by adding `offline` to `scopes`. To be able to refresh the token, the IAS `client_id` and `client_secret` need to be added, as the same client needs to be used for refreshing as logging in.",
+          "is_managed_externally": {
+            "nullable": true,
+            "type": "boolean"
+          },
+          "password": {
             "nullable": true,
-            "type": "string"
-          }
-        },
-        "required": [
-          "id_token"
-        ],
-        "type": "object"
-      },
-      "IASLoginTokenResponseSchema": {
-        "properties": {
-          "access_token": {
-            "description": "Access that can be used access the Superset API",
             "type": "string"
           },
-          "refresh_token": {
-            "description": "Refresh token that can be used to refresh the `access_token`",
-            "type": "string"
-          }
-        },
-        "required": [
-          "access_token"
-        ],
-        "type": "object"
-      },
-      "IASProfileResponse": {
-        "properties": {
-          "client_id": {
-            "description": "The client id",
-            "type": "string"
-          },
-          "profile": {
-            "description": "The IAS profile",
-            "type": "string"
-          },
-          "scope": {
-            "description": "The scope of the client",
-            "type": "string"
-          }
-        },
-        "required": [
-          "client_id",
-          "profile"
-        ],
-        "type": "object"
-      },
-      "IASProfilesResponseSchema": {
-        "properties": {
-          "result": {
-            "description": "A list of all available IAS profiles",
-            "items": {
-              "$ref": "#/components/schemas/IASProfileResponse"
-            },
-            "type": "array"
-          }
-        },
-        "type": "object"
-      },
-      "IASTokenResponse": {
-        "properties": {
-          "access_token": {
-            "description": "The access token",
-            "type": "string"
-          },
-          "has_client_credentials": {
-            "description": "Are the original client credentials available or not",
-            "type": "boolean"
-          },
-          "has_refresh_token": {
-            "description": "Is there a refresh token available or not",
-            "type": "boolean"
-          },
-          "ias_profile": {
-            "description": "The IAS profile",
-            "type": "string"
-          },
-          "id_token": {
-            "description": "The id token",
-            "type": "string"
-          }
-        },
-        "required": [
-          "has_client_credentials",
-          "has_refresh_token",
-          "ias_profile",
-          "id_token"
-        ],
-        "type": "object"
-      },
-      "IASTokensResponseSchema": {
-        "properties": {
-          "result": {
-            "description": "A list of all requested tokens",
-            "items": {
-              "$ref": "#/components/schemas/IASTokenResponse"
-            },
-            "type": "array"
-          }
-        },
-        "type": "object"
-      },
-      "ImportV1Database": {
-        "properties": {
-          "allow_csv_upload": {
-            "type": "boolean"
-          },
-          "allow_ctas": {
-            "type": "boolean"
-          },
-          "allow_cvas": {
-            "type": "boolean"
-          },
-          "allow_dml": {
-            "type": "boolean"
-          },
-          "allow_run_async": {
-            "type": "boolean"
-          },
-          "cache_timeout": {
-            "nullable": true,
-            "type": "integer"
-          },
-          "database_name": {
-            "type": "string"
-          },
-          "expose_in_sqllab": {
-            "type": "boolean"
-          },
-          "external_url": {
-            "nullable": true,
-            "type": "string"
-          },
-          "extra": {
-            "$ref": "#/components/schemas/ImportV1DatabaseExtra"
-          },
-          "impersonate_user": {
-            "type": "boolean"
-          },
-          "is_managed_externally": {
-            "nullable": true,
-            "type": "boolean"
-          },
-          "password": {
-            "nullable": true,
-            "type": "string"
-          },
-          "sqlalchemy_uri": {
+          "sqlalchemy_uri": {
             "type": "string"
           },
           "ssh_tunnel": {
@@ -6948,6 +6568,10 @@
             "additionalProperties": {},
             "type": "object"
           },
+          "schema_options": {
+            "additionalProperties": {},
+            "type": "object"
+          },
           "schemas_allowed_for_csv_upload": {
             "items": {
               "type": "string"
@@ -6961,446 +6585,298 @@
         },
         "type": "object"
       },
-      "LakehouseCatalog": {
+      "LogRestApi.get": {
         "properties": {
-          "database_id": {
-            "description": "The numerical id of the database",
+          "action": {
+            "maxLength": 512,
+            "nullable": true,
+            "type": "string"
+          },
+          "dashboard_id": {
+            "nullable": true,
             "type": "integer"
           },
-          "database_name": {
-            "description": "The name of the database",
+          "dttm": {
+            "format": "date-time",
+            "nullable": true,
             "type": "string"
           },
-          "id": {
-            "description": "The numerical id of the catalog",
+          "duration_ms": {
+            "nullable": true,
             "type": "integer"
           },
-          "name": {
-            "description": "The name of the catalog",
+          "json": {
+            "nullable": true,
             "type": "string"
           },
-          "sqlalchemy_uri": {
-            "description": "The SQLAlchemy URI",
+          "referrer": {
+            "maxLength": 1024,
+            "nullable": true,
+            "type": "string"
+          },
+          "slice_id": {
+            "nullable": true,
+            "type": "integer"
+          },
+          "user": {
+            "$ref": "#/components/schemas/LogRestApi.get.User"
+          },
+          "user_id": {
+            "nullable": true,
+            "type": "integer"
+          }
+        },
+        "type": "object"
+      },
+      "LogRestApi.get.User": {
+        "properties": {
+          "username": {
+            "maxLength": 64,
             "type": "string"
           }
         },
+        "required": [
+          "username"
+        ],
         "type": "object"
       },
-      "LakehouseConnectRequestSchema": {
+      "LogRestApi.get_list": {
         "properties": {
-          "catalogs": {
-            "description": "A list of catalogs to connect to. If empty or undefined, connect all available catalogs.",
-            "example": [
-              "my_catalog"
-            ],
-            "items": {
-              "type": "string"
-            },
+          "action": {
+            "maxLength": 512,
             "nullable": true,
-            "type": "array"
+            "type": "string"
           },
-          "database_names": {
-            "description": "Custom catalog-database name mappings. If undefined, the default naming convention will be used",
-            "example": {
-              "my_catalog": "my_database"
-            },
+          "dashboard_id": {
             "nullable": true,
-            "type": "object"
-          },
-          "dry_run": {
-            "description": "Should the task be executed in dry run mode. Useful for testing.",
-            "example": false,
-            "type": "boolean"
+            "type": "integer"
           },
-          "engine_type": {
-            "description": "The type of the engine (only trino is currently supported)",
-            "enum": [
-              "trino"
-            ],
-            "example": "trino",
+          "dttm": {
+            "format": "date-time",
+            "nullable": true,
             "type": "string"
           },
-          "engine_url": {
-            "description": "The URL to the engine",
-            "example": "https://myengine.corp.apple.com",
-            "type": "string"
+          "duration_ms": {
+            "nullable": true,
+            "type": "integer"
           },
-          "environment": {
-            "description": "Prod or Int",
-            "enum": [
-              "int",
-              "prod"
-            ],
-            "example": "int",
+          "json": {
+            "nullable": true,
             "type": "string"
           },
-          "name": {
-            "description": "The name of the Lakehouse (subject to change over time). If left undefined, use lakehouse id",
-            "example": "My Lakehouse",
+          "referrer": {
+            "maxLength": 1024,
             "nullable": true,
             "type": "string"
           },
-          "superset_url": {
-            "description": "The URL of the Superset instance connecting to",
-            "example": "http://localhost:8088",
+          "slice_id": {
+            "nullable": true,
+            "type": "integer"
+          },
+          "user": {
+            "$ref": "#/components/schemas/LogRestApi.get_list.User"
+          },
+          "user_id": {
+            "nullable": true,
+            "type": "integer"
+          }
+        },
+        "type": "object"
+      },
+      "LogRestApi.get_list.User": {
+        "properties": {
+          "username": {
+            "maxLength": 64,
             "type": "string"
           }
         },
         "required": [
-          "engine_type",
-          "engine_url",
-          "environment",
-          "superset_url"
+          "username"
         ],
         "type": "object"
       },
-      "LakehouseConnectResponseSchema": {
+      "LogRestApi.post": {
         "properties": {
-          "task_id": {
-            "description": "The id of the connection task",
-            "type": "string"
+          "id": {
+            "type": "integer"
           }
         },
         "type": "object"
       },
-      "LakehouseConnectResultResponseSchema": {
+      "LogRestApi.put": {
         "properties": {
-          "existing_catalogs": {
-            "description": "A list of connected catalogs before the connect operation",
-            "items": {
-              "description": "Catalogs",
-              "items": {
-                "$ref": "#/components/schemas/LakehouseCatalog"
-              },
-              "type": "array"
-            },
-            "type": "array"
+          "action": {
+            "maxLength": 512,
+            "nullable": true,
+            "type": "string"
           },
-          "lakehouse": {
-            "allOf": [
-              {
-                "$ref": "#/components/schemas/LakehouseGetResponseSchema"
-              }
-            ],
-            "description": "The connected Lakehouse",
-            "nullable": true
+          "dttm": {
+            "format": "date-time",
+            "nullable": true,
+            "type": "string"
           },
-          "message": {
-            "description": "A message to provide additional context on what has happened",
+          "json": {
+            "nullable": true,
             "type": "string"
           },
-          "new_catalogs": {
-            "description": "A list of newly connected catalogs after the connect operation",
-            "items": {
-              "description": "Catalogs",
-              "items": {
-                "$ref": "#/components/schemas/LakehouseCatalog"
-              },
-              "type": "array"
-            },
-            "type": "array"
+          "user": {
+            "nullable": true
+          }
+        },
+        "type": "object"
+      },
+      "PermissionApi.get": {
+        "properties": {
+          "id": {
+            "type": "integer"
           },
-          "status": {
-            "description": "The status of the task",
-            "enum": [
-              "scheduled",
-              "running",
-              "completed",
-              "failed",
-              "reconnect_failed",
-              "cancelled"
-            ],
+          "name": {
+            "maxLength": 100,
             "type": "string"
           }
         },
         "required": [
-          "lakehouse"
+          "name"
         ],
         "type": "object"
       },
-      "LakehouseConnectStatusResponseSchema": {
+      "PermissionApi.get_list": {
         "properties": {
-          "message": {
-            "description": "A message to provide additional context on what has happened",
-            "type": "string"
+          "id": {
+            "type": "integer"
           },
-          "status": {
-            "description": "The status of the task",
-            "enum": [
-              "scheduled",
-              "running",
-              "completed",
-              "failed",
-              "reconnect_failed",
-              "cancelled"
-            ],
-            "type": "string"
-          }
-        },
-        "type": "object"
-      },
-      "LakehouseDatasetListResponseSchema": {
-        "properties": {
           "name": {
-            "description": "The name of the dataset",
-            "type": "string"
-          },
-          "schema": {
-            "description": "The schema",
-            "nullable": true,
-            "type": "string"
-          },
-          "sql": {
-            "description": "The virtual dataset query",
+            "maxLength": 100,
             "type": "string"
           }
         },
         "required": [
-          "name",
-          "sql"
+          "name"
         ],
         "type": "object"
       },
-      "LakehouseDatasetRequestSchema": {
+      "PermissionApi.post": {
         "properties": {
-          "catalog": {
-            "description": "The catalog. If left empty, uses an arbitrary connected catalog.",
-            "nullable": true,
-            "type": "string"
-          },
-          "lakehouse_id": {
-            "description": "Deprecated, not used for anything",
-            "type": "string"
-          },
           "name": {
-            "description": "The name of the dataset to be created",
-            "type": "string"
-          },
-          "overwrite": {
-            "default": false,
-            "description": "Should the virtual dataset be overwritten if it already exists",
-            "type": "boolean"
-          },
-          "schema": {
-            "description": "The schema",
-            "nullable": true,
-            "type": "string"
-          },
-          "sql": {
-            "description": "The virtual dataset query",
+            "maxLength": 100,
             "type": "string"
           }
         },
         "required": [
-          "name",
-          "sql"
+          "name"
         ],
         "type": "object"
       },
-      "LakehouseDatasetResponseSchema": {
+      "PermissionApi.put": {
         "properties": {
-          "url": {
-            "description": "The url for exploring the virtual dataset",
+          "name": {
+            "maxLength": 100,
             "type": "string"
           }
         },
         "required": [
-          "url"
+          "name"
         ],
         "type": "object"
       },
-      "LakehouseDisconnectResponseSchema": {
+      "PermissionViewMenuApi.get": {
         "properties": {
-          "lakehouse": {
-            "allOf": [
-              {
-                "$ref": "#/components/schemas/LakehouseGetResponseSchema"
-              }
-            ],
-            "description": "A list of disconnected lakehouses"
+          "id": {
+            "type": "integer"
+          },
+          "permission": {
+            "$ref": "#/components/schemas/PermissionViewMenuApi.get.Permission"
+          },
+          "view_menu": {
+            "$ref": "#/components/schemas/PermissionViewMenuApi.get.ViewMenu"
           }
         },
         "type": "object"
       },
-      "LakehouseGetListResponseSchema": {
+      "PermissionViewMenuApi.get.Permission": {
         "properties": {
-          "lakehouses": {
-            "description": "A list of connected lakehouses",
-            "items": {
-              "$ref": "#/components/schemas/LakehouseGetResponseSchema"
-            },
-            "type": "array"
+          "name": {
+            "maxLength": 100,
+            "type": "string"
           }
         },
+        "required": [
+          "name"
+        ],
         "type": "object"
       },
-      "LakehouseGetResponseSchema": {
+      "PermissionViewMenuApi.get.ViewMenu": {
         "properties": {
-          "catalogs": {
-            "description": "A list of connected catalogs",
-            "items": {
-              "description": "Catalogs",
-              "items": {
-                "$ref": "#/components/schemas/LakehouseCatalog"
-              },
-              "type": "array"
-            },
-            "type": "array"
-          },
-          "engine_url": {
-            "description": "The URL uf the engine",
-            "type": "string"
-          },
-          "id": {
-            "description": "The unique id of the Lakehouse",
-            "type": "string"
-          },
           "name": {
-            "type": "string"
-          },
-          "superset_url": {
-            "description": "The URL uf the Superset instance",
+            "maxLength": 250,
             "type": "string"
           }
         },
+        "required": [
+          "name"
+        ],
         "type": "object"
       },
-      "LogRestApi.get": {
+      "PermissionViewMenuApi.get_list": {
         "properties": {
-          "action": {
-            "maxLength": 512,
-            "nullable": true,
-            "type": "string"
-          },
-          "dashboard_id": {
-            "nullable": true,
-            "type": "integer"
-          },
-          "dttm": {
-            "format": "date-time",
-            "nullable": true,
-            "type": "string"
-          },
-          "duration_ms": {
-            "nullable": true,
-            "type": "integer"
-          },
-          "json": {
-            "nullable": true,
-            "type": "string"
-          },
-          "referrer": {
-            "maxLength": 1024,
-            "nullable": true,
-            "type": "string"
-          },
-          "slice_id": {
-            "nullable": true,
+          "id": {
             "type": "integer"
           },
-          "user": {
-            "$ref": "#/components/schemas/LogRestApi.get.AppleUser"
+          "permission": {
+            "$ref": "#/components/schemas/PermissionViewMenuApi.get_list.Permission"
           },
-          "user_id": {
-            "nullable": true,
-            "type": "integer"
+          "view_menu": {
+            "$ref": "#/components/schemas/PermissionViewMenuApi.get_list.ViewMenu"
           }
         },
         "type": "object"
       },
-      "LogRestApi.get.AppleUser": {
+      "PermissionViewMenuApi.get_list.Permission": {
         "properties": {
-          "username": {
-            "maxLength": 64,
+          "name": {
+            "maxLength": 100,
             "type": "string"
           }
         },
         "required": [
-          "username"
+          "name"
         ],
         "type": "object"
       },
-      "LogRestApi.get_list": {
-        "properties": {
-          "action": {
-            "maxLength": 512,
-            "nullable": true,
-            "type": "string"
-          },
-          "dashboard_id": {
-            "nullable": true,
-            "type": "integer"
-          },
-          "dttm": {
-            "format": "date-time",
-            "nullable": true,
-            "type": "string"
-          },
-          "duration_ms": {
-            "nullable": true,
-            "type": "integer"
-          },
-          "json": {
-            "nullable": true,
-            "type": "string"
-          },
-          "referrer": {
-            "maxLength": 1024,
-            "nullable": true,
-            "type": "string"
-          },
-          "slice_id": {
-            "nullable": true,
-            "type": "integer"
-          },
-          "user": {
-            "$ref": "#/components/schemas/LogRestApi.get_list.AppleUser"
-          },
-          "user_id": {
-            "nullable": true,
-            "type": "integer"
-          }
-        },
-        "type": "object"
-      },
-      "LogRestApi.get_list.AppleUser": {
+      "PermissionViewMenuApi.get_list.ViewMenu": {
         "properties": {
-          "username": {
-            "maxLength": 64,
+          "name": {
+            "maxLength": 250,
             "type": "string"
           }
         },
         "required": [
-          "username"
+          "name"
         ],
         "type": "object"
       },
-      "LogRestApi.post": {
+      "PermissionViewMenuApi.post": {
         "properties": {
-          "id": {
+          "permission_id": {
+            "nullable": true,
+            "type": "integer"
+          },
+          "view_menu_id": {
+            "nullable": true,
             "type": "integer"
           }
         },
         "type": "object"
       },
-      "LogRestApi.put": {
+      "PermissionViewMenuApi.put": {
         "properties": {
-          "action": {
-            "maxLength": 512,
+          "permission_id": {
             "nullable": true,
-            "type": "string"
-          },
-          "dttm": {
-            "format": "date-time",
-            "nullable": true,
-            "type": "string"
+            "type": "integer"
           },
-          "json": {
+          "view_menu_id": {
             "nullable": true,
-            "type": "string"
-          },
-          "user": {
-            "nullable": true
+            "type": "integer"
           }
         },
         "type": "object"
@@ -8249,7 +7725,7 @@
             "type": "string"
           },
           "owners": {
-            "$ref": "#/components/schemas/ReportScheduleRestApi.get.AppleUser"
+            "$ref": "#/components/schemas/ReportScheduleRestApi.get.User"
           },
           "recipients": {
             "$ref": "#/components/schemas/ReportScheduleRestApi.get.ReportRecipients"
@@ -8293,26 +7769,6 @@
         ],
         "type": "object"
       },
-      "ReportScheduleRestApi.get.AppleUser": {
-        "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
-          },
-          "id": {
-            "type": "integer"
-          },
-          "last_name": {
-            "maxLength": 64,
-            "type": "string"
-          }
-        },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
-        "type": "object"
-      },
       "ReportScheduleRestApi.get.Dashboard": {
         "properties": {
           "dashboard_title": {
@@ -8378,6 +7834,26 @@
         },
         "type": "object"
       },
+      "ReportScheduleRestApi.get.User": {
+        "properties": {
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
       "ReportScheduleRestApi.get_list": {
         "properties": {
           "active": {
@@ -8448,7 +7924,7 @@
             "type": "string"
           },
           "owners": {
-            "$ref": "#/components/schemas/ReportScheduleRestApi.get_list.AppleUser"
+            "$ref": "#/components/schemas/ReportScheduleRestApi.get_list.User2"
           },
           "recipients": {
             "$ref": "#/components/schemas/ReportScheduleRestApi.get_list.ReportRecipients"
@@ -8470,26 +7946,6 @@
         ],
         "type": "object"
       },
-      "ReportScheduleRestApi.get_list.AppleUser": {
-        "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
-          },
-          "id": {
-            "type": "integer"
-          },
-          "last_name": {
-            "maxLength": 64,
-            "type": "string"
-          }
-        },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
-        "type": "object"
-      },
       "ReportScheduleRestApi.get_list.ReportRecipients": {
         "properties": {
           "id": {
@@ -8539,16 +7995,36 @@
         ],
         "type": "object"
       },
-      "ReportScheduleRestApi.post": {
+      "ReportScheduleRestApi.get_list.User2": {
         "properties": {
-          "active": {
-            "type": "boolean"
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
           },
-          "chart": {
-            "nullable": true,
+          "id": {
             "type": "integer"
           },
-          "context_markdown": {
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
+      "ReportScheduleRestApi.post": {
+        "properties": {
+          "active": {
+            "type": "boolean"
+          },
+          "chart": {
+            "nullable": true,
+            "type": "integer"
+          },
+          "context_markdown": {
             "description": "Markdown description",
             "nullable": true,
             "type": "string"
@@ -10056,6 +9532,73 @@
         ],
         "type": "object"
       },
+      "RolePermissionListSchema": {
+        "properties": {
+          "id": {
+            "type": "integer"
+          },
+          "permission_name": {
+            "type": "string"
+          },
+          "view_menu_name": {
+            "type": "string"
+          }
+        },
+        "type": "object"
+      },
+      "RolePermissionPostSchema": {
+        "properties": {
+          "permission_view_menu_ids": {
+            "description": "List of permission view menu id",
+            "items": {
+              "type": "integer"
+            },
+            "type": "array"
+          }
+        },
+        "required": [
+          "permission_view_menu_ids"
+        ],
+        "type": "object"
+      },
+      "RoleResponseSchema": {
+        "properties": {
+          "id": {
+            "type": "integer"
+          },
+          "name": {
+            "type": "string"
+          },
+          "permission_ids": {
+            "items": {
+              "type": "integer"
+            },
+            "type": "array"
+          },
+          "user_ids": {
+            "items": {
+              "type": "integer"
+            },
+            "type": "array"
+          }
+        },
+        "type": "object"
+      },
+      "RoleUserPutSchema": {
+        "properties": {
+          "user_ids": {
+            "description": "List of user ids",
+            "items": {
+              "type": "integer"
+            },
+            "type": "array"
+          }
+        },
+        "required": [
+          "user_ids"
+        ],
+        "type": "object"
+      },
       "Roles": {
         "properties": {
           "id": {
@@ -10078,6 +9621,26 @@
         },
         "type": "object"
       },
+      "RolesResponseSchema": {
+        "properties": {
+          "count": {
+            "type": "integer"
+          },
+          "ids": {
+            "items": {
+              "type": "integer"
+            },
+            "type": "array"
+          },
+          "result": {
+            "items": {
+              "$ref": "#/components/schemas/RoleResponseSchema"
+            },
+            "type": "array"
+          }
+        },
+        "type": "object"
+      },
       "SQLLabBootstrapSchema": {
         "properties": {
           "active_tab": {
@@ -10541,1185 +10104,2080 @@
         },
         "type": "object"
       },
-      "StopQuerySchema": {
-        "properties": {
-          "client_id": {
-            "type": "string"
-          }
-        },
-        "type": "object"
-      },
-      "Tab": {
-        "properties": {
-          "children": {
-            "items": {
-              "$ref": "#/components/schemas/Tab"
-            },
-            "type": "array"
-          },
-          "parents": {
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
-          },
-          "title": {
-            "type": "string"
-          },
-          "value": {
-            "type": "string"
-          }
-        },
-        "type": "object"
-      },
-      "TabState": {
+      "SqlLabPermalinkSchema": {
         "properties": {
-          "active": {
-            "type": "boolean"
-          },
           "autorun": {
             "type": "boolean"
           },
-          "database_id": {
-            "type": "integer"
-          },
-          "extra_json": {
-            "type": "object"
-          },
-          "hide_left_bar": {
-            "type": "boolean"
-          },
-          "id": {
-            "type": "string"
-          },
-          "label": {
+          "catalog": {
+            "description": "The catalog name of the query",
+            "nullable": true,
             "type": "string"
           },
-          "latest_query": {
-            "$ref": "#/components/schemas/QueryResult"
-          },
-          "query_limit": {
+          "dbId": {
+            "description": "The id of the database",
             "type": "integer"
           },
-          "saved_query": {
-            "nullable": true,
-            "type": "object"
+          "name": {
+            "description": "The label of the editor tab",
+            "type": "string"
           },
           "schema": {
+            "description": "The schema name of the query",
+            "nullable": true,
             "type": "string"
           },
           "sql": {
+            "description": "SQL query text",
             "type": "string"
           },
-          "table_schemas": {
-            "items": {
-              "$ref": "#/components/schemas/Table"
-            },
-            "type": "array"
-          },
-          "user_id": {
-            "type": "integer"
+          "templateParams": {
+            "description": "stringfied JSON string for template parameters",
+            "nullable": true,
+            "type": "string"
           }
         },
+        "required": [
+          "dbId",
+          "name",
+          "sql"
+        ],
         "type": "object"
       },
-      "Table": {
+      "StopQuerySchema": {
         "properties": {
-          "database_id": {
-            "type": "integer"
-          },
-          "description": {
+          "client_id": {
             "type": "string"
-          },
-          "expanded": {
-            "type": "boolean"
-          },
+          }
+        },
+        "type": "object"
+      },
+      "SupersetRoleApi.get": {
+        "properties": {
           "id": {
             "type": "integer"
           },
-          "schema": {
+          "name": {
+            "maxLength": 64,
             "type": "string"
-          },
-          "tab_state_id": {
+          }
+        },
+        "required": [
+          "name"
+        ],
+        "type": "object"
+      },
+      "SupersetRoleApi.get_list": {
+        "properties": {
+          "id": {
             "type": "integer"
           },
-          "table": {
+          "name": {
+            "maxLength": 64,
             "type": "string"
           }
         },
+        "required": [
+          "name"
+        ],
         "type": "object"
       },
-      "TableExtraMetadataResponseSchema": {
+      "SupersetRoleApi.post": {
         "properties": {
-          "clustering": {
-            "type": "object"
-          },
-          "metadata": {
-            "type": "object"
-          },
-          "partitions": {
-            "type": "object"
+          "name": {
+            "maxLength": 64,
+            "type": "string"
           }
         },
+        "required": [
+          "name"
+        ],
         "type": "object"
       },
-      "TableMetadataColumnsResponse": {
+      "SupersetRoleApi.put": {
         "properties": {
-          "duplicates_constraint": {
-            "type": "string"
-          },
-          "keys": {
-            "description": "",
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
-          },
-          "longType": {
-            "description": "The actual backend long type for the column",
-            "type": "string"
-          },
           "name": {
-            "description": "The column name",
-            "type": "string"
-          },
-          "type": {
-            "description": "The column type",
+            "maxLength": 64,
             "type": "string"
           }
         },
+        "required": [
+          "name"
+        ],
         "type": "object"
       },
-      "TableMetadataForeignKeysIndexesResponse": {
+      "SupersetUserApi.get": {
         "properties": {
-          "column_names": {
-            "items": {
-              "description": "A list of column names that compose the foreign key or  index",
-              "type": "string"
-            },
-            "type": "array"
+          "active": {
+            "nullable": true,
+            "type": "boolean"
           },
-          "name": {
-            "description": "The name of the foreign key or index",
-            "type": "string"
+          "changed_by": {
+            "$ref": "#/components/schemas/SupersetUserApi.get.User1"
           },
-          "options": {
-            "$ref": "#/components/schemas/TableMetadataOptionsResponse"
+          "changed_on": {
+            "format": "date-time",
+            "nullable": true,
+            "type": "string"
           },
-          "referred_columns": {
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
+          "created_by": {
+            "$ref": "#/components/schemas/SupersetUserApi.get.User"
           },
-          "referred_schema": {
+          "created_on": {
+            "format": "date-time",
+            "nullable": true,
             "type": "string"
           },
-          "referred_table": {
+          "email": {
+            "maxLength": 320,
             "type": "string"
           },
-          "type": {
+          "fail_login_count": {
+            "nullable": true,
+            "type": "integer"
+          },
+          "first_name": {
+            "maxLength": 64,
             "type": "string"
-          }
-        },
-        "type": "object"
-      },
-      "TableMetadataOptionsResponse": {
-        "properties": {
-          "deferrable": {
-            "type": "boolean"
           },
-          "initially": {
-            "type": "boolean"
+          "id": {
+            "type": "integer"
           },
-          "match": {
-            "type": "boolean"
+          "last_login": {
+            "format": "date-time",
+            "nullable": true,
+            "type": "string"
           },
-          "ondelete": {
-            "type": "boolean"
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
           },
-          "onupdate": {
-            "type": "boolean"
-          }
-        },
-        "type": "object"
-      },
-      "TableMetadataPrimaryKeyResponse": {
-        "properties": {
-          "column_names": {
-            "items": {
-              "description": "A list of column names that compose the primary key",
-              "type": "string"
-            },
-            "type": "array"
+          "login_count": {
+            "nullable": true,
+            "type": "integer"
           },
-          "name": {
-            "description": "The primary key index name",
-            "type": "string"
+          "roles": {
+            "$ref": "#/components/schemas/SupersetUserApi.get.Role"
           },
-          "type": {
+          "username": {
+            "maxLength": 64,
             "type": "string"
           }
         },
+        "required": [
+          "email",
+          "first_name",
+          "last_name",
+          "username"
+        ],
         "type": "object"
       },
-      "TableMetadataResponseSchema": {
+      "SupersetUserApi.get.Role": {
         "properties": {
-          "columns": {
-            "description": "A list of columns and their metadata",
-            "items": {
-              "$ref": "#/components/schemas/TableMetadataColumnsResponse"
-            },
-            "type": "array"
-          },
-          "foreignKeys": {
-            "description": "A list of foreign keys and their metadata",
-            "items": {
-              "$ref": "#/components/schemas/TableMetadataForeignKeysIndexesResponse"
-            },
-            "type": "array"
-          },
-          "indexes": {
-            "description": "A list of indexes and their metadata",
-            "items": {
-              "$ref": "#/components/schemas/TableMetadataForeignKeysIndexesResponse"
-            },
-            "type": "array"
+          "id": {
+            "type": "integer"
           },
           "name": {
-            "description": "The name of the table",
-            "type": "string"
-          },
-          "primaryKey": {
-            "allOf": [
-              {
-                "$ref": "#/components/schemas/TableMetadataPrimaryKeyResponse"
-              }
-            ],
-            "description": "Primary keys metadata"
-          },
-          "selectStar": {
-            "description": "SQL select star",
+            "maxLength": 64,
             "type": "string"
           }
         },
+        "required": [
+          "name"
+        ],
         "type": "object"
       },
-      "Tables": {
+      "SupersetUserApi.get.User": {
         "properties": {
           "id": {
             "type": "integer"
-          },
-          "schema": {
-            "type": "string"
-          },
-          "table_name": {
-            "type": "string"
           }
         },
         "type": "object"
       },
-      "TabsPayloadSchema": {
+      "SupersetUserApi.get.User1": {
         "properties": {
-          "all_tabs": {
-            "additionalProperties": {
-              "type": "string"
-            },
-            "type": "object"
-          },
-          "tab_tree": {
-            "items": {
-              "$ref": "#/components/schemas/Tab"
-            },
-            "type": "array"
+          "id": {
+            "type": "integer"
           }
         },
         "type": "object"
       },
-      "Tag": {
+      "SupersetUserApi.get_list": {
         "properties": {
-          "id": {
+          "active": {
+            "nullable": true,
+            "type": "boolean"
+          },
+          "changed_by": {
+            "$ref": "#/components/schemas/SupersetUserApi.get_list.User1"
+          },
+          "changed_on": {
+            "format": "date-time",
+            "nullable": true,
+            "type": "string"
+          },
+          "created_by": {
+            "$ref": "#/components/schemas/SupersetUserApi.get_list.User"
+          },
+          "created_on": {
+            "format": "date-time",
+            "nullable": true,
+            "type": "string"
+          },
+          "email": {
+            "maxLength": 320,
+            "type": "string"
+          },
+          "fail_login_count": {
+            "nullable": true,
             "type": "integer"
           },
-          "name": {
+          "first_name": {
+            "maxLength": 64,
             "type": "string"
           },
-          "type": {
-            "enum": [
-              1,
-              2,
-              3,
-              4
-            ]
-          }
-        },
-        "type": "object"
-      },
-      "TagGetResponseSchema": {
-        "properties": {
           "id": {
             "type": "integer"
           },
-          "name": {
+          "last_login": {
+            "format": "date-time",
+            "nullable": true,
             "type": "string"
           },
-          "type": {
+          "last_name": {
+            "maxLength": 64,
             "type": "string"
-          }
-        },
-        "type": "object"
-      },
-      "TagObject": {
-        "properties": {
-          "description": {
+          },
+          "login_count": {
             "nullable": true,
-            "type": "string"
+            "type": "integer"
           },
-          "name": {
-            "minLength": 1,
-            "type": "string"
+          "roles": {
+            "$ref": "#/components/schemas/SupersetUserApi.get_list.Role"
           },
-          "objects_to_tag": {
-            "description": "Objects to tag",
-            "items": {},
-            "type": "array"
+          "username": {
+            "maxLength": 64,
+            "type": "string"
           }
         },
+        "required": [
+          "email",
+          "first_name",
+          "last_name",
+          "username"
+        ],
         "type": "object"
       },
-      "TagPostBulkResponseObject": {
+      "SupersetUserApi.get_list.Role": {
         "properties": {
-          "objects_skipped": {
-            "description": "Objects to tag",
-            "items": {},
-            "type": "array"
+          "id": {
+            "type": "integer"
           },
-          "objects_tagged": {
-            "description": "Objects to tag",
-            "items": {},
-            "type": "array"
+          "name": {
+            "maxLength": 64,
+            "type": "string"
           }
         },
+        "required": [
+          "name"
+        ],
         "type": "object"
       },
-      "TagPostBulkResponseSchema": {
+      "SupersetUserApi.get_list.User": {
         "properties": {
-          "result": {
-            "$ref": "#/components/schemas/TagPostBulkResponseObject"
+          "id": {
+            "type": "integer"
           }
         },
         "type": "object"
       },
-      "TagPostBulkSchema": {
+      "SupersetUserApi.get_list.User1": {
         "properties": {
-          "tags": {
-            "items": {
-              "$ref": "#/components/schemas/TagObject"
-            },
-            "type": "array"
+          "id": {
+            "type": "integer"
           }
         },
         "type": "object"
       },
-      "TagRestApi.get": {
+      "SupersetUserApi.post": {
         "properties": {
-          "changed_by": {
-            "$ref": "#/components/schemas/TagRestApi.get.User"
+          "active": {
+            "description": "Is user active?It's not a good policy to remove a user, just make it inactive",
+            "type": "boolean"
           },
-          "changed_on_delta_humanized": {
-            "readOnly": true
+          "email": {
+            "description": "The user's email",
+            "type": "string"
           },
-          "created_by": {
-            "$ref": "#/components/schemas/TagRestApi.get.User1"
+          "first_name": {
+            "description": "The user's first name",
+            "type": "string"
           },
-          "created_on_delta_humanized": {
-            "readOnly": true
+          "last_name": {
+            "description": "The user's last name",
+            "type": "string"
           },
-          "description": {
-            "nullable": true,
+          "password": {
+            "description": "The user's password for authentication",
             "type": "string"
           },
-          "id": {
-            "type": "integer"
+          "roles": {
+            "description": "The user's roles",
+            "items": {
+              "type": "integer"
+            },
+            "minItems": 1,
+            "type": "array"
           },
-          "name": {
+          "username": {
+            "description": "The user's username",
             "maxLength": 250,
-            "nullable": true,
+            "minLength": 1,
             "type": "string"
-          },
-          "type": {
-            "enum": [
-              1,
-              2,
-              3,
-              4
-            ]
           }
         },
+        "required": [
+          "email",
+          "first_name",
+          "last_name",
+          "password",
+          "roles",
+          "username"
+        ],
         "type": "object"
       },
-      "TagRestApi.get.User": {
+      "SupersetUserApi.put": {
         "properties": {
+          "active": {
+            "description": "Is user active?It's not a good policy to remove a user, just make it inactive",
+            "type": "boolean"
+          },
+          "email": {
+            "description": "The user's email",
+            "type": "string"
+          },
           "first_name": {
-            "maxLength": 64,
+            "description": "The user's first name",
             "type": "string"
           },
           "last_name": {
-            "maxLength": 64,
+            "description": "The user's last name",
+            "type": "string"
+          },
+          "password": {
+            "description": "The user's password for authentication",
+            "type": "string"
+          },
+          "roles": {
+            "description": "The user's roles",
+            "items": {
+              "type": "integer"
+            },
+            "minItems": 1,
+            "type": "array"
+          },
+          "username": {
+            "description": "The user's username",
+            "maxLength": 250,
+            "minLength": 1,
             "type": "string"
           }
         },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
         "type": "object"
       },
-      "TagRestApi.get.User1": {
+      "Tab": {
         "properties": {
-          "active": {
-            "nullable": true,
-            "type": "boolean"
+          "children": {
+            "items": {
+              "$ref": "#/components/schemas/Tab"
+            },
+            "type": "array"
           },
-          "changed_on": {
-            "format": "date-time",
-            "nullable": true,
-            "type": "string"
+          "parents": {
+            "items": {
+              "type": "string"
+            },
+            "type": "array"
           },
-          "created_on": {
-            "format": "date-time",
-            "nullable": true,
+          "title": {
             "type": "string"
           },
-          "email": {
-            "maxLength": 320,
+          "value": {
             "type": "string"
+          }
+        },
+        "type": "object"
+      },
+      "TabState": {
+        "properties": {
+          "active": {
+            "type": "boolean"
           },
-          "fail_login_count": {
-            "nullable": true,
+          "autorun": {
+            "type": "boolean"
+          },
+          "database_id": {
             "type": "integer"
           },
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
+          "extra_json": {
+            "type": "object"
           },
-          "id": {
-            "type": "integer"
+          "hide_left_bar": {
+            "type": "boolean"
           },
-          "last_login": {
-            "format": "date-time",
-            "nullable": true,
+          "id": {
             "type": "string"
           },
-          "last_name": {
-            "maxLength": 64,
+          "label": {
             "type": "string"
           },
-          "login_count": {
-            "nullable": true,
+          "latest_query": {
+            "$ref": "#/components/schemas/QueryResult"
+          },
+          "query_limit": {
             "type": "integer"
           },
-          "password": {
-            "maxLength": 256,
+          "saved_query": {
             "nullable": true,
+            "type": "object"
+          },
+          "schema": {
             "type": "string"
           },
-          "username": {
-            "maxLength": 64,
+          "sql": {
             "type": "string"
+          },
+          "table_schemas": {
+            "items": {
+              "$ref": "#/components/schemas/Table"
+            },
+            "type": "array"
+          },
+          "user_id": {
+            "type": "integer"
           }
         },
-        "required": [
-          "email",
-          "first_name",
-          "last_name",
-          "username"
-        ],
         "type": "object"
       },
-      "TagRestApi.get_list": {
+      "Table": {
         "properties": {
-          "changed_by": {
-            "$ref": "#/components/schemas/TagRestApi.get_list.User"
-          },
-          "changed_on_delta_humanized": {
-            "readOnly": true
-          },
-          "created_by": {
-            "$ref": "#/components/schemas/TagRestApi.get_list.User1"
-          },
-          "created_on_delta_humanized": {
-            "readOnly": true
+          "database_id": {
+            "type": "integer"
           },
           "description": {
-            "nullable": true,
             "type": "string"
           },
+          "expanded": {
+            "type": "boolean"
+          },
           "id": {
             "type": "integer"
           },
-          "name": {
-            "maxLength": 250,
-            "nullable": true,
+          "schema": {
             "type": "string"
           },
-          "type": {
-            "enum": [
-              1,
-              2,
-              3,
-              4
-            ]
-          }
-        },
-        "type": "object"
-      },
-      "TagRestApi.get_list.User": {
-        "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
+          "tab_state_id": {
+            "type": "integer"
           },
-          "last_name": {
-            "maxLength": 64,
+          "table": {
             "type": "string"
           }
         },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
         "type": "object"
       },
-      "TagRestApi.get_list.User1": {
+      "TableExtraMetadataResponseSchema": {
         "properties": {
-          "first_name": {
-            "maxLength": 64,
-            "type": "string"
+          "clustering": {
+            "type": "object"
           },
-          "last_name": {
-            "maxLength": 64,
-            "type": "string"
+          "metadata": {
+            "type": "object"
+          },
+          "partitions": {
+            "type": "object"
           }
         },
-        "required": [
-          "first_name",
-          "last_name"
-        ],
         "type": "object"
       },
-      "TagRestApi.post": {
+      "TableMetadataColumnsResponse": {
         "properties": {
-          "description": {
-            "nullable": true,
-            "type": "string"
-          },
-          "name": {
-            "minLength": 1,
+          "duplicates_constraint": {
             "type": "string"
           },
-          "objects_to_tag": {
-            "description": "Objects to tag",
-            "items": {},
+          "keys": {
+            "description": "",
+            "items": {
+              "type": "string"
+            },
             "type": "array"
-          }
-        },
-        "type": "object"
-      },
-      "TagRestApi.put": {
-        "properties": {
-          "description": {
-            "nullable": true,
+          },
+          "longType": {
+            "description": "The actual backend long type for the column",
             "type": "string"
           },
           "name": {
-            "minLength": 1,
+            "description": "The column name",
             "type": "string"
           },
-          "objects_to_tag": {
-            "description": "Objects to tag",
-            "items": {},
-            "type": "array"
+          "type": {
+            "description": "The column type",
+            "type": "string"
           }
         },
         "type": "object"
       },
-      "TaggedObjectEntityResponseSchema": {
+      "TableMetadataForeignKeysIndexesResponse": {
         "properties": {
-          "changed_on": {
-            "format": "date-time",
-            "type": "string"
-          },
-          "created_by": {
-            "$ref": "#/components/schemas/User"
-          },
-          "creator": {
-            "type": "string"
-          },
-          "id": {
-            "type": "integer"
+          "column_names": {
+            "items": {
+              "description": "A list of column names that compose the foreign key or  index",
+              "type": "string"
+            },
+            "type": "array"
           },
           "name": {
+            "description": "The name of the foreign key or index",
             "type": "string"
           },
-          "owners": {
-            "items": {
-              "$ref": "#/components/schemas/User1"
-            },
-            "type": "array"
+          "options": {
+            "$ref": "#/components/schemas/TableMetadataOptionsResponse"
           },
-          "tags": {
+          "referred_columns": {
             "items": {
-              "$ref": "#/components/schemas/TagGetResponseSchema"
+              "type": "string"
             },
             "type": "array"
           },
-          "type": {
+          "referred_schema": {
             "type": "string"
           },
-          "url": {
-            "type": "string"
-          }
-        },
-        "type": "object"
-      },
-      "TemporaryCachePostSchema": {
-        "properties": {
-          "value": {
-            "description": "Any type of JSON supported text.",
+          "referred_table": {
             "type": "string"
-          }
-        },
-        "required": [
-          "value"
-        ],
-        "type": "object"
-      },
-      "TemporaryCachePutSchema": {
-        "properties": {
-          "value": {
-            "description": "Any type of JSON supported text.",
+          },
+          "type": {
             "type": "string"
           }
         },
-        "required": [
-          "value"
-        ],
         "type": "object"
       },
-      "UploadFileMetadata": {
+      "TableMetadataOptionsResponse": {
         "properties": {
-          "items": {
-            "items": {
-              "$ref": "#/components/schemas/UploadFileMetadataItem"
-            },
-            "type": "array"
+          "deferrable": {
+            "type": "boolean"
+          },
+          "initially": {
+            "type": "boolean"
+          },
+          "match": {
+            "type": "boolean"
+          },
+          "ondelete": {
+            "type": "boolean"
+          },
+          "onupdate": {
+            "type": "boolean"
           }
         },
         "type": "object"
       },
-      "UploadFileMetadataItem": {
+      "TableMetadataPrimaryKeyResponse": {
         "properties": {
           "column_names": {
-            "description": "A list of columns names in the sheet",
             "items": {
+              "description": "A list of column names that compose the primary key",
               "type": "string"
             },
             "type": "array"
           },
-          "sheet_name": {
-            "description": "The name of the sheet",
+          "name": {
+            "description": "The primary key index name",
+            "type": "string"
+          },
+          "type": {
             "type": "string"
           }
         },
         "type": "object"
       },
-      "User": {
+      "TableMetadataResponseSchema": {
         "properties": {
-          "first_name": {
+          "columns": {
+            "description": "A list of columns and their metadata",
+            "items": {
+              "$ref": "#/components/schemas/TableMetadataColumnsResponse"
+            },
+            "type": "array"
+          },
+          "foreignKeys": {
+            "description": "A list of foreign keys and their metadata",
+            "items": {
+              "$ref": "#/components/schemas/TableMetadataForeignKeysIndexesResponse"
+            },
+            "type": "array"
+          },
+          "indexes": {
+            "description": "A list of indexes and their metadata",
+            "items": {
+              "$ref": "#/components/schemas/TableMetadataForeignKeysIndexesResponse"
+            },
+            "type": "array"
+          },
+          "name": {
+            "description": "The name of the table",
             "type": "string"
           },
-          "id": {
-            "type": "integer"
+          "primaryKey": {
+            "allOf": [
+              {
+                "$ref": "#/components/schemas/TableMetadataPrimaryKeyResponse"
+              }
+            ],
+            "description": "Primary keys metadata"
           },
-          "last_name": {
+          "selectStar": {
+            "description": "SQL select star",
             "type": "string"
           }
         },
         "type": "object"
       },
-      "User1": {
+      "Tables": {
         "properties": {
-          "first_name": {
-            "type": "string"
-          },
           "id": {
             "type": "integer"
           },
-          "last_name": {
+          "schema": {
             "type": "string"
           },
-          "username": {
+          "table_name": {
             "type": "string"
           }
         },
         "type": "object"
       },
-      "User2": {
+      "TabsPayloadSchema": {
         "properties": {
-          "first_name": {
-            "type": "string"
-          },
-          "last_name": {
-            "type": "string"
+          "all_tabs": {
+            "additionalProperties": {
+              "type": "string"
+            },
+            "type": "object"
           },
-          "username": {
-            "type": "string"
+          "tab_tree": {
+            "items": {
+              "$ref": "#/components/schemas/Tab"
+            },
+            "type": "array"
           }
         },
         "type": "object"
       },
-      "UserResponseSchema": {
+      "Tag": {
         "properties": {
-          "email": {
-            "type": "string"
+          "id": {
+            "type": "integer"
           },
-          "first_name": {
+          "name": {
             "type": "string"
           },
+          "type": {
+            "enum": [
+              1,
+              2,
+              3,
+              4
+            ]
+          }
+        },
+        "type": "object"
+      },
+      "TagGetResponseSchema": {
+        "properties": {
           "id": {
             "type": "integer"
           },
-          "is_active": {
-            "type": "boolean"
-          },
-          "is_anonymous": {
-            "type": "boolean"
-          },
-          "last_name": {
+          "name": {
             "type": "string"
           },
-          "username": {
+          "type": {
             "type": "string"
           }
         },
         "type": "object"
       },
-      "ValidateSQLRequest": {
+      "TagObject": {
         "properties": {
-          "catalog": {
-            "nullable": true,
-            "type": "string"
-          },
-          "schema": {
+          "description": {
             "nullable": true,
             "type": "string"
           },
-          "sql": {
-            "description": "SQL statement to validate",
+          "name": {
+            "minLength": 1,
             "type": "string"
           },
-          "template_params": {
-            "nullable": true,
-            "type": "object"
+          "objects_to_tag": {
+            "description": "Objects to tag",
+            "items": {},
+            "type": "array"
           }
         },
-        "required": [
-          "sql"
-        ],
         "type": "object"
       },
-      "ValidateSQLResponse": {
+      "TagPostBulkResponseObject": {
         "properties": {
-          "end_column": {
-            "type": "integer"
-          },
-          "line_number": {
-            "type": "integer"
-          },
-          "message": {
-            "type": "string"
+          "objects_skipped": {
+            "description": "Objects to tag",
+            "items": {},
+            "type": "array"
           },
-          "start_column": {
-            "type": "integer"
+          "objects_tagged": {
+            "description": "Objects to tag",
+            "items": {},
+            "type": "array"
           }
         },
         "type": "object"
       },
-      "ValidatorConfigJSON": {
+      "TagPostBulkResponseSchema": {
         "properties": {
-          "op": {
-            "description": "The operation to compare with a threshold to apply to the SQL output\n",
-            "enum": [
-              "<",
-              "<=",
-              ">",
-              ">=",
-              "==",
-              "!="
-            ],
-            "type": "string"
-          },
-          "threshold": {
-            "type": "number"
+          "result": {
+            "$ref": "#/components/schemas/TagPostBulkResponseObject"
           }
         },
         "type": "object"
       },
-      "advanced_data_type_convert_schema": {
+      "TagPostBulkSchema": {
         "properties": {
-          "type": {
-            "default": "port",
-            "type": "string"
-          },
-          "values": {
+          "tags": {
             "items": {
-              "default": "http"
+              "$ref": "#/components/schemas/TagObject"
             },
-            "minItems": 1,
             "type": "array"
           }
         },
-        "required": [
-          "type",
-          "values"
-        ],
         "type": "object"
       },
-      "database_catalogs_query_schema": {
+      "TagRestApi.get": {
         "properties": {
-          "force": {
-            "type": "boolean"
+          "changed_by": {
+            "$ref": "#/components/schemas/TagRestApi.get.User"
+          },
+          "changed_on_delta_humanized": {
+            "readOnly": true
+          },
+          "created_by": {
+            "$ref": "#/components/schemas/TagRestApi.get.User1"
+          },
+          "created_on_delta_humanized": {
+            "readOnly": true
+          },
+          "description": {
+            "nullable": true,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "name": {
+            "maxLength": 250,
+            "nullable": true,
+            "type": "string"
+          },
+          "type": {
+            "enum": [
+              1,
+              2,
+              3,
+              4
+            ]
           }
         },
         "type": "object"
       },
-      "database_schemas_query_schema": {
+      "TagRestApi.get.User": {
         "properties": {
-          "catalog": {
+          "first_name": {
+            "maxLength": 64,
             "type": "string"
           },
-          "force": {
-            "type": "boolean"
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
           }
         },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
         "type": "object"
       },
-      "database_tables_query_schema": {
+      "TagRestApi.get.User1": {
         "properties": {
-          "catalog_name": {
+          "active": {
+            "nullable": true,
+            "type": "boolean"
+          },
+          "changed_on": {
+            "format": "date-time",
+            "nullable": true,
             "type": "string"
           },
-          "force": {
-            "type": "boolean"
+          "created_on": {
+            "format": "date-time",
+            "nullable": true,
+            "type": "string"
           },
-          "schema_name": {
+          "email": {
+            "maxLength": 320,
+            "type": "string"
+          },
+          "fail_login_count": {
+            "nullable": true,
+            "type": "integer"
+          },
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_login": {
+            "format": "date-time",
+            "nullable": true,
+            "type": "string"
+          },
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          },
+          "login_count": {
+            "nullable": true,
+            "type": "integer"
+          },
+          "password": {
+            "maxLength": 256,
+            "nullable": true,
+            "type": "string"
+          },
+          "username": {
+            "maxLength": 64,
             "type": "string"
           }
         },
         "required": [
-          "schema_name"
+          "email",
+          "first_name",
+          "last_name",
+          "username"
         ],
         "type": "object"
       },
-      "delete_tags_schema": {
-        "items": {
-          "type": "string"
-        },
-        "type": "array"
-      },
-      "get_delete_ids_schema": {
-        "items": {
-          "type": "integer"
-        },
-        "type": "array"
-      },
-      "get_export_ids_schema": {
-        "items": {
-          "type": "integer"
-        },
-        "type": "array"
-      },
-      "get_fav_star_ids_schema": {
-        "items": {
-          "type": "integer"
-        },
-        "type": "array"
-      },
-      "get_info_schema": {
+      "TagRestApi.get_list": {
         "properties": {
-          "add_columns": {
-            "additionalProperties": {
-              "properties": {
-                "page": {
-                  "type": "integer"
-                },
-                "page_size": {
-                  "type": "integer"
-                }
-              },
-              "type": "object"
-            },
-            "type": "object"
+          "changed_by": {
+            "$ref": "#/components/schemas/TagRestApi.get_list.User"
           },
-          "edit_columns": {
-            "additionalProperties": {
-              "properties": {
-                "page": {
-                  "type": "integer"
-                },
-                "page_size": {
-                  "type": "integer"
-                }
-              },
-              "type": "object"
-            },
-            "type": "object"
+          "changed_on_delta_humanized": {
+            "readOnly": true
           },
-          "keys": {
-            "items": {
-              "enum": [
-                "add_columns",
-                "edit_columns",
-                "filters",
-                "permissions",
-                "add_title",
-                "edit_title",
-                "none"
-              ],
-              "type": "string"
-            },
-            "type": "array"
+          "created_by": {
+            "$ref": "#/components/schemas/TagRestApi.get_list.User1"
+          },
+          "created_on_delta_humanized": {
+            "readOnly": true
+          },
+          "description": {
+            "nullable": true,
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "name": {
+            "maxLength": 250,
+            "nullable": true,
+            "type": "string"
+          },
+          "type": {
+            "enum": [
+              1,
+              2,
+              3,
+              4
+            ]
           }
         },
         "type": "object"
       },
-      "get_item_schema": {
+      "TagRestApi.get_list.User": {
         "properties": {
-          "columns": {
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
           },
-          "keys": {
-            "items": {
-              "enum": [
-                "show_columns",
-                "description_columns",
-                "label_columns",
-                "show_title",
-                "none"
-              ],
-              "type": "string"
-            },
-            "type": "array"
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
           }
         },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
         "type": "object"
       },
-      "get_list_schema": {
+      "TagRestApi.get_list.User1": {
         "properties": {
-          "columns": {
-            "items": {
-              "type": "string"
-            },
-            "type": "array"
+          "first_name": {
+            "maxLength": 64,
+            "type": "string"
           },
-          "filters": {
-            "items": {
-              "properties": {
-                "col": {
-                  "type": "string"
-                },
-                "opr": {
-                  "type": "string"
-                },
-                "value": {
-                  "anyOf": [
-                    {
-                      "type": "number"
-                    },
-                    {
-                      "type": "string"
-                    },
-                    {
-                      "type": "boolean"
-                    },
-                    {
-                      "type": "array"
-                    }
-                  ]
-                }
-              },
-              "required": [
-                "col",
-                "opr",
-                "value"
-              ],
-              "type": "object"
-            },
-            "type": "array"
+          "last_name": {
+            "maxLength": 64,
+            "type": "string"
+          }
+        },
+        "required": [
+          "first_name",
+          "last_name"
+        ],
+        "type": "object"
+      },
+      "TagRestApi.post": {
+        "properties": {
+          "description": {
+            "nullable": true,
+            "type": "string"
           },
-          "keys": {
-            "items": {
-              "enum": [
-                "list_columns",
-                "order_columns",
-                "label_columns",
-                "description_columns",
-                "list_title",
-                "none"
-              ],
-              "type": "string"
-            },
+          "name": {
+            "minLength": 1,
+            "type": "string"
+          },
+          "objects_to_tag": {
+            "description": "Objects to tag",
+            "items": {},
             "type": "array"
+          }
+        },
+        "type": "object"
+      },
+      "TagRestApi.put": {
+        "properties": {
+          "description": {
+            "nullable": true,
+            "type": "string"
           },
-          "order_column": {
+          "name": {
+            "minLength": 1,
             "type": "string"
           },
-          "order_direction": {
-            "enum": [
-              "asc",
-              "desc"
-            ],
+          "objects_to_tag": {
+            "description": "Objects to tag",
+            "items": {},
+            "type": "array"
+          }
+        },
+        "type": "object"
+      },
+      "TaggedObjectEntityResponseSchema": {
+        "properties": {
+          "changed_on": {
+            "format": "date-time",
             "type": "string"
           },
-          "page": {
-            "type": "integer"
+          "created_by": {
+            "$ref": "#/components/schemas/User"
           },
-          "page_size": {
+          "creator": {
+            "type": "string"
+          },
+          "id": {
             "type": "integer"
           },
-          "select_columns": {
+          "name": {
+            "type": "string"
+          },
+          "owners": {
             "items": {
-              "type": "string"
+              "$ref": "#/components/schemas/User1"
+            },
+            "type": "array"
+          },
+          "tags": {
+            "items": {
+              "$ref": "#/components/schemas/TagGetResponseSchema"
             },
             "type": "array"
+          },
+          "type": {
+            "type": "string"
+          },
+          "url": {
+            "type": "string"
           }
         },
         "type": "object"
       },
-      "get_recent_activity_schema": {
+      "TemporaryCachePostSchema": {
         "properties": {
-          "actions": {
+          "value": {
+            "description": "Any type of JSON supported text.",
+            "type": "string"
+          }
+        },
+        "required": [
+          "value"
+        ],
+        "type": "object"
+      },
+      "TemporaryCachePutSchema": {
+        "properties": {
+          "value": {
+            "description": "Any type of JSON supported text.",
+            "type": "string"
+          }
+        },
+        "required": [
+          "value"
+        ],
+        "type": "object"
+      },
+      "UploadFileMetadata": {
+        "properties": {
+          "items": {
             "items": {
-              "type": "string"
+              "$ref": "#/components/schemas/UploadFileMetadataItem"
             },
             "type": "array"
-          },
-          "distinct": {
-            "type": "boolean"
-          },
-          "page": {
-            "type": "number"
-          },
-          "page_size": {
-            "type": "number"
           }
         },
         "type": "object"
       },
-      "get_related_schema": {
+      "UploadFileMetadataItem": {
         "properties": {
-          "filter": {
-            "type": "string"
-          },
-          "include_ids": {
+          "column_names": {
+            "description": "A list of columns names in the sheet",
             "items": {
-              "type": "integer"
+              "type": "string"
             },
             "type": "array"
           },
-          "page": {
-            "type": "integer"
-          },
-          "page_size": {
-            "type": "integer"
+          "sheet_name": {
+            "description": "The name of the sheet",
+            "type": "string"
           }
         },
         "type": "object"
       },
-      "queries_get_updated_since_schema": {
+      "UploadFileMetadataPostSchema": {
         "properties": {
-          "last_updated_ms": {
-            "type": "number"
+          "delimiter": {
+            "description": "The character used to separate values in the CSV file (e.g., a comma, semicolon, or tab).",
+            "type": "string"
+          },
+          "file": {
+            "description": "The file to upload",
+            "format": "binary",
+            "type": "string"
+          },
+          "header_row": {
+            "description": "Row containing the headers to use as column names(0 is first line of data). Leave empty if there is no header row.",
+            "type": "integer"
+          },
+          "type": {
+            "description": "File type to upload",
+            "enum": [
+              "csv",
+              "excel",
+              "columnar"
+            ]
           }
         },
         "required": [
-          "last_updated_ms"
+          "file",
+          "type"
         ],
         "type": "object"
       },
-      "screenshot_query_schema": {
+      "UploadPostSchema": {
         "properties": {
-          "force": {
+          "already_exists": {
+            "default": "fail",
+            "description": "What to do if the table already exists accepts: fail, replace, append",
+            "enum": [
+              "fail",
+              "replace",
+              "append"
+            ],
+            "type": "string"
+          },
+          "column_data_types": {
+            "description": "[CSV only] A dictionary with column names and their data types if you need to change the defaults. Example: {'user_id':'int'}. Check Python Pandas library for supported data types",
+            "type": "string"
+          },
+          "column_dates": {
+            "description": "[CSV and Excel only] A list of column names that should be parsed as dates. Example: date,timestamp",
+            "items": {
+              "type": "string"
+            },
+            "type": "array"
+          },
+          "columns_read": {
+            "description": "A List of the column names that should be read",
+            "items": {
+              "type": "string"
+            },
+            "type": "array"
+          },
+          "dataframe_index": {
+            "description": "Write dataframe index as a column.",
             "type": "boolean"
           },
-          "thumb_size": {
+          "day_first": {
+            "description": "[CSV only] DD/MM format dates, international and European format",
+            "type": "boolean"
+          },
+          "decimal_character": {
+            "description": "[CSV and Excel only] Character to recognize as decimal point. Default is '.'",
+            "type": "string"
+          },
+          "delimiter": {
+            "description": "[CSV only] The character used to separate values in the CSV file (e.g., a comma, semicolon, or tab).",
+            "type": "string"
+          },
+          "file": {
+            "description": "The file to upload",
+            "format": "text/csv",
+            "type": "string"
+          },
+          "header_row": {
+            "description": "[CSV and Excel only] Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.",
+            "type": "integer"
+          },
+          "index_column": {
+            "description": "[CSV and Excel only] Column to use as the row labels of the dataframe. Leave empty if no index column",
+            "type": "string"
+          },
+          "index_label": {
+            "description": "Index label for index column.",
+            "type": "string"
+          },
+          "null_values": {
+            "description": "[CSV and Excel only] A list of strings that should be treated as null. Examples: '' for empty strings, 'None', 'N/A', Warning: Hive database supports only a single value",
             "items": {
-              "type": "integer"
+              "type": "string"
             },
             "type": "array"
           },
-          "window_size": {
-            "items": {
-              "type": "integer"
+          "rows_to_read": {
+            "description": "[CSV and Excel only] Number of rows to read from the file. If None, reads all rows.",
+            "minimum": 1,
+            "nullable": true,
+            "type": "integer"
+          },
+          "schema": {
+            "description": "The schema to upload the data file to.",
+            "type": "string"
+          },
+          "sheet_name": {
+            "description": "[Excel only]] Strings used for sheet names (default is the first sheet).",
+            "type": "string"
+          },
+          "skip_blank_lines": {
+            "description": "[CSV only] Skip blank lines in the CSV file.",
+            "type": "boolean"
+          },
+          "skip_initial_space": {
+            "description": "[CSV only] Skip spaces after delimiter.",
+            "type": "boolean"
+          },
+          "skip_rows": {
+            "description": "[CSV and Excel only] Number of rows to skip at start of file.",
+            "type": "integer"
+          },
+          "table_name": {
+            "description": "The name of the table to be created/appended",
+            "maxLength": 10000,
+            "minLength": 1,
+            "type": "string"
+          },
+          "type": {
+            "description": "File type to upload",
+            "enum": [
+              "csv",
+              "excel",
+              "columnar"
+            ]
+          }
+        },
+        "required": [
+          "file",
+          "table_name",
+          "type"
+        ],
+        "type": "object"
+      },
+      "User": {
+        "properties": {
+          "first_name": {
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_name": {
+            "type": "string"
+          }
+        },
+        "type": "object"
+      },
+      "User1": {
+        "properties": {
+          "first_name": {
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "last_name": {
+            "type": "string"
+          },
+          "username": {
+            "type": "string"
+          }
+        },
+        "type": "object"
+      },
+      "User2": {
+        "properties": {
+          "first_name": {
+            "type": "string"
+          },
+          "last_name": {
+            "type": "string"
+          },
+          "username": {
+            "type": "string"
+          }
+        },
+        "type": "object"
+      },
+      "UserResponseSchema": {
+        "properties": {
+          "email": {
+            "type": "string"
+          },
+          "first_name": {
+            "type": "string"
+          },
+          "id": {
+            "type": "integer"
+          },
+          "is_active": {
+            "type": "boolean"
+          },
+          "is_anonymous": {
+            "type": "boolean"
+          },
+          "last_name": {
+            "type": "string"
+          },
+          "username": {
+            "type": "string"
+          }
+        },
+        "type": "object"
+      },
+      "ValidateSQLRequest": {
+        "properties": {
+          "catalog": {
+            "nullable": true,
+            "type": "string"
+          },
+          "schema": {
+            "nullable": true,
+            "type": "string"
+          },
+          "sql": {
+            "description": "SQL statement to validate",
+            "type": "string"
+          },
+          "template_params": {
+            "nullable": true,
+            "type": "object"
+          }
+        },
+        "required": [
+          "sql"
+        ],
+        "type": "object"
+      },
+      "ValidateSQLResponse": {
+        "properties": {
+          "end_column": {
+            "type": "integer"
+          },
+          "line_number": {
+            "type": "integer"
+          },
+          "message": {
+            "type": "string"
+          },
+          "start_column": {
+            "type": "integer"
+          }
+        },
+        "type": "object"
+      },
+      "ValidatorConfigJSON": {
+        "properties": {
+          "op": {
+            "description": "The operation to compare with a threshold to apply to the SQL output\n",
+            "enum": [
+              "<",
+              "<=",
+              ">",
+              ">=",
+              "==",
+              "!="
+            ],
+            "type": "string"
+          },
+          "threshold": {
+            "type": "number"
+          }
+        },
+        "type": "object"
+      },
+      "ViewMenuApi.get": {
+        "properties": {
+          "id": {
+            "type": "integer"
+          },
+          "name": {
+            "maxLength": 250,
+            "type": "string"
+          }
+        },
+        "required": [
+          "name"
+        ],
+        "type": "object"
+      },
+      "ViewMenuApi.get_list": {
+        "properties": {
+          "id": {
+            "type": "integer"
+          },
+          "name": {
+            "maxLength": 250,
+            "type": "string"
+          }
+        },
+        "required": [
+          "name"
+        ],
+        "type": "object"
+      },
+      "ViewMenuApi.post": {
+        "properties": {
+          "name": {
+            "maxLength": 250,
+            "type": "string"
+          }
+        },
+        "required": [
+          "name"
+        ],
+        "type": "object"
+      },
+      "ViewMenuApi.put": {
+        "properties": {
+          "name": {
+            "maxLength": 250,
+            "type": "string"
+          }
+        },
+        "required": [
+          "name"
+        ],
+        "type": "object"
+      },
+      "advanced_data_type_convert_schema": {
+        "properties": {
+          "type": {
+            "default": "port",
+            "type": "string"
+          },
+          "values": {
+            "items": {
+              "default": "http"
+            },
+            "minItems": 1,
+            "type": "array"
+          }
+        },
+        "required": [
+          "type",
+          "values"
+        ],
+        "type": "object"
+      },
+      "database_catalogs_query_schema": {
+        "properties": {
+          "force": {
+            "type": "boolean"
+          }
+        },
+        "type": "object"
+      },
+      "database_schemas_query_schema": {
+        "properties": {
+          "catalog": {
+            "type": "string"
+          },
+          "force": {
+            "type": "boolean"
+          },
+          "upload_allowed": {
+            "type": "boolean"
+          }
+        },
+        "type": "object"
+      },
+      "database_tables_query_schema": {
+        "properties": {
+          "catalog_name": {
+            "type": "string"
+          },
+          "force": {
+            "type": "boolean"
+          },
+          "schema_name": {
+            "type": "string"
+          }
+        },
+        "required": [
+          "schema_name"
+        ],
+        "type": "object"
+      },
+      "delete_tags_schema": {
+        "items": {
+          "type": "string"
+        },
+        "type": "array"
+      },
+      "get_delete_ids_schema": {
+        "items": {
+          "type": "integer"
+        },
+        "type": "array"
+      },
+      "get_export_ids_schema": {
+        "items": {
+          "type": "integer"
+        },
+        "type": "array"
+      },
+      "get_fav_star_ids_schema": {
+        "items": {
+          "type": "integer"
+        },
+        "type": "array"
+      },
+      "get_info_schema": {
+        "properties": {
+          "add_columns": {
+            "additionalProperties": {
+              "properties": {
+                "page": {
+                  "type": "integer"
+                },
+                "page_size": {
+                  "type": "integer"
+                }
+              },
+              "type": "object"
+            },
+            "type": "object"
+          },
+          "edit_columns": {
+            "additionalProperties": {
+              "properties": {
+                "page": {
+                  "type": "integer"
+                },
+                "page_size": {
+                  "type": "integer"
+                }
+              },
+              "type": "object"
+            },
+            "type": "object"
+          },
+          "keys": {
+            "items": {
+              "enum": [
+                "add_columns",
+                "edit_columns",
+                "filters",
+                "permissions",
+                "add_title",
+                "edit_title",
+                "none"
+              ],
+              "type": "string"
+            },
+            "type": "array"
+          }
+        },
+        "type": "object"
+      },
+      "get_item_schema": {
+        "properties": {
+          "columns": {
+            "items": {
+              "type": "string"
+            },
+            "type": "array"
+          },
+          "keys": {
+            "items": {
+              "enum": [
+                "show_columns",
+                "description_columns",
+                "label_columns",
+                "show_title",
+                "none"
+              ],
+              "type": "string"
+            },
+            "type": "array"
+          }
+        },
+        "type": "object"
+      },
+      "get_list_schema": {
+        "properties": {
+          "columns": {
+            "items": {
+              "type": "string"
+            },
+            "type": "array"
+          },
+          "filters": {
+            "items": {
+              "properties": {
+                "col": {
+                  "type": "string"
+                },
+                "opr": {
+                  "type": "string"
+                },
+                "value": {
+                  "anyOf": [
+                    {
+                      "type": "number"
+                    },
+                    {
+                      "type": "string"
+                    },
+                    {
+                      "type": "boolean"
+                    },
+                    {
+                      "type": "array"
+                    }
+                  ]
+                }
+              },
+              "required": [
+                "col",
+                "opr",
+                "value"
+              ],
+              "type": "object"
+            },
+            "type": "array"
+          },
+          "keys": {
+            "items": {
+              "enum": [
+                "list_columns",
+                "order_columns",
+                "label_columns",
+                "description_columns",
+                "list_title",
+                "none"
+              ],
+              "type": "string"
+            },
+            "type": "array"
+          },
+          "order_column": {
+            "type": "string"
+          },
+          "order_direction": {
+            "enum": [
+              "asc",
+              "desc"
+            ],
+            "type": "string"
+          },
+          "page": {
+            "type": "integer"
+          },
+          "page_size": {
+            "type": "integer"
+          },
+          "select_columns": {
+            "items": {
+              "type": "string"
+            },
+            "type": "array"
+          }
+        },
+        "type": "object"
+      },
+      "get_recent_activity_schema": {
+        "properties": {
+          "actions": {
+            "items": {
+              "type": "string"
+            },
+            "type": "array"
+          },
+          "distinct": {
+            "type": "boolean"
+          },
+          "page": {
+            "type": "number"
+          },
+          "page_size": {
+            "type": "number"
+          }
+        },
+        "type": "object"
+      },
+      "get_related_schema": {
+        "properties": {
+          "filter": {
+            "type": "string"
+          },
+          "include_ids": {
+            "items": {
+              "type": "integer"
+            },
+            "type": "array"
+          },
+          "page": {
+            "type": "integer"
+          },
+          "page_size": {
+            "type": "integer"
+          }
+        },
+        "type": "object"
+      },
+      "queries_get_updated_since_schema": {
+        "properties": {
+          "last_updated_ms": {
+            "type": "number"
+          }
+        },
+        "required": [
+          "last_updated_ms"
+        ],
+        "type": "object"
+      },
+      "screenshot_query_schema": {
+        "properties": {
+          "force": {
+            "type": "boolean"
+          },
+          "thumb_size": {
+            "items": {
+              "type": "integer"
+            },
+            "type": "array"
+          },
+          "window_size": {
+            "items": {
+              "type": "integer"
+            },
+            "type": "array"
+          }
+        },
+        "type": "object"
+      },
+      "sql_lab_get_results_schema": {
+        "properties": {
+          "key": {
+            "type": "string"
+          }
+        },
+        "required": [
+          "key"
+        ],
+        "type": "object"
+      },
+      "thumbnail_query_schema": {
+        "properties": {
+          "force": {
+            "type": "boolean"
+          }
+        },
+        "type": "object"
+      }
+    },
+    "securitySchemes": {
+      "jwt": {
+        "bearerFormat": "JWT",
+        "scheme": "bearer",
+        "type": "http"
+      },
+      "jwt_refresh": {
+        "bearerFormat": "JWT",
+        "scheme": "bearer",
+        "type": "http"
+      }
+    }
+  },
+  "info": {
+    "description": "Superset",
+    "title": "Superset",
+    "version": "v1"
+  },
+  "openapi": "3.0.2",
+  "paths": {
+    "/api/v1/advanced_data_type/convert": {
+      "get": {
+        "description": "Returns an AdvancedDataTypeResponse object populated with the passed in args.",
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/advanced_data_type_convert_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/AdvancedDataTypeSchema"
+                }
+              }
+            },
+            "description": "AdvancedDataTypeResponse object has been returned."
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Return an AdvancedDataTypeResponse",
+        "tags": [
+          "Advanced Data Type"
+        ]
+      }
+    },
+    "/api/v1/advanced_data_type/types": {
+      "get": {
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "result": {
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "a successful return of the available advanced data types has taken place."
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Return a list of available advanced data types",
+        "tags": [
+          "Advanced Data Type"
+        ]
+      }
+    },
+    "/api/v1/annotation_layer/": {
+      "delete": {
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_delete_ids_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "CSS templates bulk delete"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Delete multiple annotation layers in a bulk operation",
+        "tags": [
+          "Annotation Layers"
+        ]
+      },
+      "get": {
+        "description": "Gets a list of annotation layers, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_list_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "list_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "list_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "List Items",
+                      "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/AnnotationLayerRestApi.get_list"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Items from Model"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Get a list of annotation layers",
+        "tags": [
+          "Annotation Layers"
+        ]
+      },
+      "post": {
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/AnnotationLayerRestApi.post"
+              }
+            }
+          },
+          "description": "Annotation Layer schema",
+          "required": true
+        },
+        "responses": {
+          "201": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "id": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/AnnotationLayerRestApi.post"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
             },
-            "type": "array"
+            "description": "Annotation added"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
           }
         },
-        "type": "object"
-      },
-      "sql_lab_get_results_schema": {
-        "properties": {
-          "key": {
-            "type": "string"
+        "security": [
+          {
+            "jwt": []
           }
-        },
-        "required": [
-          "key"
         ],
-        "type": "object"
-      },
-      "thumbnail_query_schema": {
-        "properties": {
-          "force": {
-            "type": "boolean"
-          }
-        },
-        "type": "object"
+        "summary": "Create an annotation layer",
+        "tags": [
+          "Annotation Layers"
+        ]
       }
     },
-    "securitySchemes": {
-      "jwt": {
-        "bearerFormat": "JWT",
-        "scheme": "bearer",
-        "type": "http"
-      },
-      "jwt_refresh": {
-        "bearerFormat": "JWT",
-        "scheme": "bearer",
-        "type": "http"
-      }
-    }
-  },
-  "info": {
-    "description": "Superset",
-    "title": "Superset",
-    "version": "v1"
-  },
-  "openapi": "3.0.2",
-  "paths": {
-    "/api/v1/advanced_data_type/convert": {
+    "/api/v1/annotation_layer/_info": {
       "get": {
-        "description": "Returns an AdvancedDataTypeResponse object populated with the passed in args.",
+        "description": "Get metadata information about this API resource",
         "parameters": [
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/advanced_data_type_convert_schema"
+                  "$ref": "#/components/schemas/get_info_schema"
                 }
               }
             },
@@ -11732,11 +12190,47 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/AdvancedDataTypeSchema"
+                  "properties": {
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "AdvancedDataTypeResponse object has been returned."
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -11744,11 +12238,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -11759,39 +12250,52 @@
             "jwt": []
           }
         ],
-        "summary": "Return an AdvancedDataTypeResponse",
+        "summary": "Get metadata information about this API resource",
         "tags": [
-          "Advanced Data Type"
+          "Annotation Layers"
         ]
       }
     },
-    "/api/v1/advanced_data_type/types": {
+    "/api/v1/annotation_layer/related/{column_name}": {
       "get": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "column_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_related_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/RelatedResponseSchema"
                 }
               }
             },
-            "description": "a successful return of the available advanced data types has taken place."
+            "description": "Related column data"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -11804,25 +12308,23 @@
             "jwt": []
           }
         ],
-        "summary": "Return a list of available advanced data types",
+        "summary": "Get related fields data",
         "tags": [
-          "Advanced Data Type"
+          "Annotation Layers"
         ]
       }
     },
-    "/api/v1/annotation_layer/": {
+    "/api/v1/annotation_layer/{pk}": {
       "delete": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_delete_ids_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "description": "The annotation layer pk for this annotation",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
         "responses": {
@@ -11839,10 +12341,7 @@
                 }
               }
             },
-            "description": "CSS templates bulk delete"
-          },
-          "401": {
-            "$ref": "#/components/responses/401"
+            "description": "Item deleted"
           },
           "404": {
             "$ref": "#/components/responses/404"
@@ -11859,19 +12358,27 @@
             "jwt": []
           }
         ],
-        "summary": "Delete multiple annotation layers in a bulk operation",
+        "summary": "Delete annotation layer",
         "tags": [
           "Annotation Layers"
         ]
       },
       "get": {
-        "description": "Gets a list of annotation layers, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
+        "description": "Get an item model",
         "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_list_schema"
+                  "$ref": "#/components/schemas/get_item_schema"
                 }
               }
             },
@@ -11885,10 +12392,6 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "count": {
-                      "description": "The total record count on the backend",
-                      "type": "number"
-                    },
                     "description_columns": {
                       "properties": {
                         "column_name": {
@@ -11899,12 +12402,9 @@
                       },
                       "type": "object"
                     },
-                    "ids": {
-                      "description": "A list of item ids, useful when you don't know the column id",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
+                    "id": {
+                      "description": "The item id",
+                      "type": "string"
                     },
                     "label_columns": {
                       "properties": {
@@ -11916,38 +12416,27 @@
                       },
                       "type": "object"
                     },
-                    "list_columns": {
-                      "description": "A list of columns",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "list_title": {
-                      "description": "A title to render. Will be translated by babel",
-                      "example": "List Items",
-                      "type": "string"
+                    "result": {
+                      "$ref": "#/components/schemas/AnnotationLayerRestApi.get"
                     },
-                    "order_columns": {
-                      "description": "A list of allowed columns to sort",
+                    "show_columns": {
+                      "description": "A list of columns",
                       "items": {
                         "type": "string"
                       },
                       "type": "array"
                     },
-                    "result": {
-                      "description": "The result from the get list query",
-                      "items": {
-                        "$ref": "#/components/schemas/AnnotationLayerRestApi.get_list"
-                      },
-                      "type": "array"
+                    "show_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "Show Item Details",
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Items from Model"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -11955,6 +12444,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -11967,25 +12459,36 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of annotation layers",
+        "summary": "Get an annotation layer",
         "tags": [
           "Annotation Layers"
         ]
       },
-      "post": {
+      "put": {
+        "parameters": [
+          {
+            "description": "The annotation layer pk for this annotation",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/AnnotationLayerRestApi.post"
+                "$ref": "#/components/schemas/AnnotationLayerRestApi.put"
               }
             }
           },
-          "description": "Annotation Layer schema",
+          "description": "Annotation schema",
           "required": true
         },
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
@@ -11994,14 +12497,14 @@
                       "type": "number"
                     },
                     "result": {
-                      "$ref": "#/components/schemas/AnnotationLayerRestApi.post"
+                      "$ref": "#/components/schemas/AnnotationLayerRestApi.put"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Annotation added"
+            "description": "Annotation changed"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -12021,21 +12524,29 @@
             "jwt": []
           }
         ],
-        "summary": "Create an annotation layer",
+        "summary": "Update an annotation layer",
         "tags": [
           "Annotation Layers"
         ]
       }
     },
-    "/api/v1/annotation_layer/_info": {
-      "get": {
-        "description": "Get metadata information about this API resource",
+    "/api/v1/annotation_layer/{pk}/annotation/": {
+      "delete": {
         "parameters": [
+          {
+            "description": "The annotation layer pk for this annotation",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_info_schema"
+                  "$ref": "#/components/schemas/get_delete_ids_schema"
                 }
               }
             },
@@ -12049,53 +12560,22 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "add_columns": {
-                      "type": "object"
-                    },
-                    "edit_columns": {
-                      "type": "object"
-                    },
-                    "filters": {
-                      "properties": {
-                        "column_name": {
-                          "items": {
-                            "properties": {
-                              "name": {
-                                "description": "The filter name. Will be translated by babel",
-                                "type": "string"
-                              },
-                              "operator": {
-                                "description": "The filter operation key to use on list filters",
-                                "type": "string"
-                              }
-                            },
-                            "type": "object"
-                          },
-                          "type": "array"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "permissions": {
-                      "description": "The user permissions for this API resource",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
+                    "message": {
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Annotations bulk delete"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -12108,28 +12588,28 @@
             "jwt": []
           }
         ],
-        "summary": "Get metadata information about this API resource",
+        "summary": "Bulk delete annotation layers",
         "tags": [
           "Annotation Layers"
         ]
-      }
-    },
-    "/api/v1/annotation_layer/related/{column_name}": {
+      },
       "get": {
+        "description": "Gets a list of annotation layers, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
         "parameters": [
           {
+            "description": "The annotation layer id for this annotation",
             "in": "path",
-            "name": "column_name",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
           },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
+                  "$ref": "#/components/schemas/get_list_schema"
                 }
               }
             },
@@ -12142,11 +12622,96 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/RelatedResponseSchema"
+                  "properties": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
+                    "ids": {
+                      "description": "A list of annotation ids",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/AnnotationRestApi.get_list"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Related column data"
+            "description": "Items from Annotations"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Get a list of annotation layers",
+        "tags": [
+          "Annotation Layers"
+        ]
+      },
+      "post": {
+        "parameters": [
+          {
+            "description": "The annotation layer pk for this annotation",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/AnnotationRestApi.post"
+              }
+            }
+          },
+          "description": "Annotation schema",
+          "required": true
+        },
+        "responses": {
+          "201": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "id": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/AnnotationRestApi.post"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Annotation added"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -12166,13 +12731,13 @@
             "jwt": []
           }
         ],
-        "summary": "Get related fields data",
+        "summary": "Create an annotation layer",
         "tags": [
           "Annotation Layers"
         ]
       }
     },
-    "/api/v1/annotation_layer/{pk}": {
+    "/api/v1/annotation_layer/{pk}/annotation/{annotation_id}": {
       "delete": {
         "parameters": [
           {
@@ -12183,6 +12748,15 @@
             "schema": {
               "type": "integer"
             }
+          },
+          {
+            "description": "The annotation pk for this annotation",
+            "in": "path",
+            "name": "annotation_id",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
         "responses": {
@@ -12222,9 +12796,9 @@
         ]
       },
       "get": {
-        "description": "Get an item model",
         "parameters": [
           {
+            "description": "The annotation layer pk for this annotation",
             "in": "path",
             "name": "pk",
             "required": true,
@@ -12232,6 +12806,15 @@
               "type": "integer"
             }
           },
+          {
+            "description": "The annotation pk",
+            "in": "path",
+            "name": "annotation_id",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
           {
             "content": {
               "application/json": {
@@ -12250,44 +12833,12 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "description_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The description for the column name. Will be translated by babel",
-                          "example": "A Nice description for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
                     "id": {
                       "description": "The item id",
                       "type": "string"
                     },
-                    "label_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The label for the column name. Will be translated by babel",
-                          "example": "A Nice label for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "result": {
-                      "$ref": "#/components/schemas/AnnotationLayerRestApi.get"
-                    },
-                    "show_columns": {
-                      "description": "A list of columns",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "show_title": {
-                      "description": "A title to render. Will be translated by babel",
-                      "example": "Show Item Details",
-                      "type": "string"
+                    "result": {
+                      "$ref": "#/components/schemas/AnnotationRestApi.get"
                     }
                   },
                   "type": "object"
@@ -12332,13 +12883,22 @@
             "schema": {
               "type": "integer"
             }
+          },
+          {
+            "description": "The annotation pk for this annotation",
+            "in": "path",
+            "name": "annotation_id",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/AnnotationLayerRestApi.put"
+                "$ref": "#/components/schemas/AnnotationRestApi.put"
               }
             }
           },
@@ -12355,7 +12915,7 @@
                       "type": "number"
                     },
                     "result": {
-                      "$ref": "#/components/schemas/AnnotationLayerRestApi.put"
+                      "$ref": "#/components/schemas/AnnotationRestApi.put"
                     }
                   },
                   "type": "object"
@@ -12388,30 +12948,81 @@
         ]
       }
     },
-    "/api/v1/annotation_layer/{pk}/annotation/": {
-      "delete": {
-        "parameters": [
-          {
-            "description": "The annotation layer pk for this annotation",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
+    "/api/v1/assets/export/": {
+      "get": {
+        "description": "Gets a ZIP file with all the Superset assets (databases, datasets, charts, dashboards, saved queries) as YAML files.",
+        "responses": {
+          "200": {
             "content": {
-              "application/json": {
+              "application/zip": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_delete_ids_schema"
+                  "format": "binary",
+                  "type": "string"
                 }
               }
             },
-            "in": "query",
-            "name": "q"
+            "description": "ZIP file"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
           }
         ],
+        "summary": "Export all assets",
+        "tags": [
+          "Import/export"
+        ]
+      }
+    },
+    "/api/v1/assets/import/": {
+      "post": {
+        "requestBody": {
+          "content": {
+            "multipart/form-data": {
+              "schema": {
+                "properties": {
+                  "bundle": {
+                    "description": "upload file (ZIP or JSON)",
+                    "format": "binary",
+                    "type": "string"
+                  },
+                  "passwords": {
+                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "sparse": {
+                    "description": "allow sparse update of resources",
+                    "type": "boolean"
+                  },
+                  "ssh_tunnel_passwords": {
+                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_key_passwords": {
+                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_keys": {
+                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
+                    "type": "string"
+                  }
+                },
+                "type": "object"
+              }
+            }
+          },
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
@@ -12426,14 +13037,14 @@
                 }
               }
             },
-            "description": "Annotations bulk delete"
+            "description": "Assets import result"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -12446,33 +13057,23 @@
             "jwt": []
           }
         ],
-        "summary": "Bulk delete annotation layers",
+        "summary": "Import multiple assets",
         "tags": [
-          "Annotation Layers"
+          "Import/export"
         ]
-      },
+      }
+    },
+    "/api/v1/async_event/": {
       "get": {
-        "description": "Gets a list of annotation layers, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
+        "description": "Reads off of the Redis events stream, using the user's JWT token and optional query params for last event received.",
         "parameters": [
           {
-            "description": "The annotation layer id for this annotation",
-            "in": "path",
-            "name": "pk",
-            "required": true,
+            "description": "Last ID received by the client",
+            "in": "query",
+            "name": "last_id",
             "schema": {
-              "type": "integer"
+              "type": "string"
             }
-          },
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_list_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
           }
         ],
         "responses": {
@@ -12481,21 +13082,35 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "count": {
-                      "description": "The total record count on the backend",
-                      "type": "number"
-                    },
-                    "ids": {
-                      "description": "A list of annotation ids",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
                     "result": {
-                      "description": "The result from the get list query",
                       "items": {
-                        "$ref": "#/components/schemas/AnnotationRestApi.get_list"
+                        "properties": {
+                          "channel_id": {
+                            "type": "string"
+                          },
+                          "errors": {
+                            "items": {
+                              "type": "object"
+                            },
+                            "type": "array"
+                          },
+                          "id": {
+                            "type": "string"
+                          },
+                          "job_id": {
+                            "type": "string"
+                          },
+                          "result_url": {
+                            "type": "string"
+                          },
+                          "status": {
+                            "type": "string"
+                          },
+                          "user_id": {
+                            "type": "integer"
+                          }
+                        },
+                        "type": "object"
                       },
                       "type": "array"
                     }
@@ -12504,17 +13119,11 @@
                 }
               }
             },
-            "description": "Items from Annotations"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Async event results"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -12524,62 +13133,69 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of annotation layers",
+        "summary": "Read off of the Redis events stream",
         "tags": [
-          "Annotation Layers"
+          "AsyncEventsRestApi"
         ]
-      },
-      "post": {
-        "parameters": [
-          {
-            "description": "The annotation layer pk for this annotation",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/AnnotationRestApi.post"
-              }
-            }
-          },
-          "description": "Annotation schema",
-          "required": true
-        },
+      }
+    },
+    "/api/v1/available_domains/": {
+      "get": {
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
-                      "type": "number"
-                    },
                     "result": {
-                      "$ref": "#/components/schemas/AnnotationRestApi.post"
+                      "$ref": "#/components/schemas/AvailableDomainsSchema"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Annotation added"
+            "description": "a list of available domains"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "403": {
+            "$ref": "#/components/responses/403"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Get all available domains",
+        "tags": [
+          "Available Domains"
+        ]
+      }
+    },
+    "/api/v1/cachekey/invalidate": {
+      "post": {
+        "description": "Takes a list of datasources, finds and invalidates the associated cache records and removes the database records.",
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/CacheInvalidationRequestSchema"
+              }
+            }
+          },
+          "description": "A list of datasources uuid or the tuples of database and datasource names",
+          "required": true
+        },
+        "responses": {
+          "201": {
+            "description": "cache was successfully invalidated"
           },
           "400": {
             "$ref": "#/components/responses/400"
           },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -12589,32 +13205,25 @@
             "jwt": []
           }
         ],
-        "summary": "Create an annotation layer",
+        "summary": "Invalidate cache records and remove the database records",
         "tags": [
-          "Annotation Layers"
+          "CacheRestApi"
         ]
       }
     },
-    "/api/v1/annotation_layer/{pk}/annotation/{annotation_id}": {
+    "/api/v1/chart/": {
       "delete": {
         "parameters": [
           {
-            "description": "The annotation layer pk for this annotation",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "description": "The annotation pk for this annotation",
-            "in": "path",
-            "name": "annotation_id",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_delete_ids_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -12631,7 +13240,13 @@
                 }
               }
             },
-            "description": "Item deleted"
+            "description": "Charts bulk delete"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "403": {
+            "$ref": "#/components/responses/403"
           },
           "404": {
             "$ref": "#/components/responses/404"
@@ -12648,36 +13263,19 @@
             "jwt": []
           }
         ],
-        "summary": "Delete annotation layer",
+        "summary": "Bulk delete charts",
         "tags": [
-          "Annotation Layers"
+          "Charts"
         ]
       },
       "get": {
+        "description": "Gets a list of charts, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
         "parameters": [
-          {
-            "description": "The annotation layer pk for this annotation",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "description": "The annotation pk",
-            "in": "path",
-            "name": "annotation_id",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_item_schema"
+                  "$ref": "#/components/schemas/get_list_schema"
                 }
               }
             },
@@ -12691,19 +13289,69 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
-                      "description": "The item id",
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "list_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "list_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "List Items",
                       "type": "string"
                     },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
                     "result": {
-                      "$ref": "#/components/schemas/AnnotationRestApi.get"
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/ChartRestApi.get_list"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "Items from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -12711,9 +13359,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -12726,45 +13371,25 @@
             "jwt": []
           }
         ],
-        "summary": "Get an annotation layer",
+        "summary": "Get a list of charts",
         "tags": [
-          "Annotation Layers"
+          "Charts"
         ]
       },
-      "put": {
-        "parameters": [
-          {
-            "description": "The annotation layer pk for this annotation",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "description": "The annotation pk for this annotation",
-            "in": "path",
-            "name": "annotation_id",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
+      "post": {
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/AnnotationRestApi.put"
+                "$ref": "#/components/schemas/ChartRestApi.post"
               }
             }
           },
-          "description": "Annotation schema",
+          "description": "Chart schema",
           "required": true
         },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
@@ -12773,14 +13398,104 @@
                       "type": "number"
                     },
                     "result": {
-                      "$ref": "#/components/schemas/AnnotationRestApi.put"
+                      "$ref": "#/components/schemas/ChartRestApi.post"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Chart added"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Create a new chart",
+        "tags": [
+          "Charts"
+        ]
+      }
+    },
+    "/api/v1/chart/_info": {
+      "get": {
+        "description": "Get metadata information about this API resource",
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_info_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Annotation changed"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -12788,8 +13503,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -12800,66 +13515,53 @@
             "jwt": []
           }
         ],
-        "summary": "Update an annotation layer",
+        "summary": "Get metadata information about this API resource",
         "tags": [
-          "Annotation Layers"
+          "Charts"
         ]
       }
     },
-    "/api/v1/apple/health": {
-      "get": {
-        "description": "Endpoint for checking the health status of the metastore and cache",
+    "/api/v1/chart/data": {
+      "post": {
+        "description": "Takes a query context constructed in the client and returns payload data response for the given query.",
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/ChartDataQueryContextSchema"
+              }
+            }
+          },
+          "description": "A query context consists of a datasource from which to fetch data and one or many query objects.",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/AppleHealthResponseSchema"
+                  "$ref": "#/components/schemas/ChartDataResponseSchema"
                 }
               }
             },
-            "description": "The"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
-          },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
-          "403": {
-            "$ref": "#/components/responses/403"
+            "description": "Query result"
           },
-          "500": {
-            "$ref": "#/components/responses/500"
-          }
-        },
-        "summary": "Get the health status of the metastore and cache",
-        "tags": [
-          "Apple"
-        ]
-      }
-    },
-    "/api/v1/assets/export/": {
-      "get": {
-        "description": "Gets a ZIP file with all the Superset assets (databases, datasets, charts, dashboards, saved queries) as YAML files.",
-        "responses": {
-          "200": {
+          "202": {
             "content": {
-              "application/zip": {
+              "application/json": {
                 "schema": {
-                  "format": "binary",
-                  "type": "string"
+                  "$ref": "#/components/schemas/ChartDataAsyncResponseSchema"
                 }
               }
             },
-            "description": "ZIP file"
+            "description": "Async job details"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -12869,62 +13571,35 @@
             "jwt": []
           }
         ],
-        "summary": "Export all assets",
+        "summary": "Return payload data response for the given query",
         "tags": [
-          "Import/export"
+          "Charts"
         ]
       }
     },
-    "/api/v1/assets/import/": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "multipart/form-data": {
-              "schema": {
-                "properties": {
-                  "bundle": {
-                    "description": "upload file (ZIP or JSON)",
-                    "format": "binary",
-                    "type": "string"
-                  },
-                  "passwords": {
-                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_passwords": {
-                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_key_passwords": {
-                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_keys": {
-                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
-                    "type": "string"
-                  }
-                },
-                "type": "object"
-              }
+    "/api/v1/chart/data/{cache_key}": {
+      "get": {
+        "description": "Takes a query context cache key and returns payload data response for the given query.",
+        "parameters": [
+          {
+            "in": "path",
+            "name": "cache_key",
+            "required": true,
+            "schema": {
+              "type": "string"
             }
-          },
-          "required": true
-        },
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "message": {
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/ChartDataResponseSchema"
                 }
               }
             },
-            "description": "Assets import result"
+            "description": "Query result"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -12932,6 +13607,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -12944,73 +13622,48 @@
             "jwt": []
           }
         ],
-        "summary": "Import multiple assets",
+        "summary": "Return payload data response for the given query",
         "tags": [
-          "Import/export"
+          "Charts"
         ]
       }
     },
-    "/api/v1/async_event/": {
+    "/api/v1/chart/export/": {
       "get": {
-        "description": "Reads off of the Redis events stream, using the user's JWT token and optional query params for last event received.",
         "parameters": [
           {
-            "description": "Last ID received by the client",
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_export_ids_schema"
+                }
+              }
+            },
             "in": "query",
-            "name": "last_id",
-            "schema": {
-              "type": "string"
-            }
+            "name": "q"
           }
         ],
         "responses": {
           "200": {
             "content": {
-              "application/json": {
+              "application/zip": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "items": {
-                        "properties": {
-                          "channel_id": {
-                            "type": "string"
-                          },
-                          "errors": {
-                            "items": {
-                              "type": "object"
-                            },
-                            "type": "array"
-                          },
-                          "id": {
-                            "type": "string"
-                          },
-                          "job_id": {
-                            "type": "string"
-                          },
-                          "result_url": {
-                            "type": "string"
-                          },
-                          "status": {
-                            "type": "string"
-                          },
-                          "user_id": {
-                            "type": "integer"
-                          }
-                        },
-                        "type": "object"
-                      },
-                      "type": "array"
-                    }
-                  },
-                  "type": "object"
+                  "format": "binary",
+                  "type": "string"
                 }
               }
             },
-            "description": "Async event results"
+            "description": "A zip file with chart(s), dataset(s) and database(s) as YAML"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -13020,35 +13673,49 @@
             "jwt": []
           }
         ],
-        "summary": "Read off of the Redis events stream",
+        "summary": "Download multiple charts as YAML files",
         "tags": [
-          "AsyncEventsRestApi"
+          "Charts"
         ]
       }
     },
-    "/api/v1/available_domains/": {
+    "/api/v1/chart/favorite_status/": {
       "get": {
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_fav_star_ids_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "$ref": "#/components/schemas/AvailableDomainsSchema"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/GetFavStarIdsSchema"
                 }
               }
             },
-            "description": "a list of available domains"
+            "description": "None"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -13056,33 +13723,76 @@
             "jwt": []
           }
         ],
-        "summary": "Get all available domains",
+        "summary": "Check favorited charts for current user",
         "tags": [
-          "Available Domains"
+          "Charts"
         ]
       }
     },
-    "/api/v1/cachekey/invalidate": {
+    "/api/v1/chart/import/": {
       "post": {
-        "description": "Takes a list of datasources, finds and invalidates the associated cache records and removes the database records.",
         "requestBody": {
           "content": {
-            "application/json": {
+            "multipart/form-data": {
               "schema": {
-                "$ref": "#/components/schemas/CacheInvalidationRequestSchema"
+                "properties": {
+                  "formData": {
+                    "description": "upload file (ZIP)",
+                    "format": "binary",
+                    "type": "string"
+                  },
+                  "overwrite": {
+                    "description": "overwrite existing charts?",
+                    "type": "boolean"
+                  },
+                  "passwords": {
+                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_passwords": {
+                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_key_passwords": {
+                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_keys": {
+                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
+                    "type": "string"
+                  }
+                },
+                "type": "object"
               }
             }
           },
-          "description": "A list of datasources uuid or the tuples of database and datasource names",
           "required": true
         },
         "responses": {
-          "201": {
-            "description": "cache was successfully invalidated"
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Chart import result"
           },
           "400": {
             "$ref": "#/components/responses/400"
           },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -13092,20 +13802,29 @@
             "jwt": []
           }
         ],
-        "summary": "Invalidate cache records and remove the database records",
+        "summary": "Import chart(s) with associated datasets and databases",
         "tags": [
-          "CacheRestApi"
+          "Charts"
         ]
       }
     },
-    "/api/v1/chart/": {
-      "delete": {
+    "/api/v1/chart/related/{column_name}": {
+      "get": {
+        "description": "Get a list of all possible owners for a chart. Use `owners` has the `column_name` parameter",
         "parameters": [
+          {
+            "in": "path",
+            "name": "column_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_delete_ids_schema"
+                  "$ref": "#/components/schemas/get_related_schema"
                 }
               }
             },
@@ -13118,29 +13837,21 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "message": {
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/RelatedResponseSchema"
                 }
               }
             },
-            "description": "Charts bulk delete"
+            "description": "Related column data"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -13150,104 +13861,42 @@
             "jwt": []
           }
         ],
-        "summary": "Bulk delete charts",
+        "summary": "Get related fields data",
         "tags": [
           "Charts"
         ]
-      },
-      "get": {
-        "description": "Gets a list of charts, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
-        "parameters": [
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_list_schema"
-                }
+      }
+    },
+    "/api/v1/chart/warm_up_cache": {
+      "put": {
+        "description": "Warms up the cache for the chart. Note for slices a force refresh occurs. In terms of the `extra_filters` these can be obtained from records in the JSON encoded `logs.json` column associated with the `explore_json` action.",
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/ChartCacheWarmUpRequestSchema"
               }
-            },
-            "in": "query",
-            "name": "q"
-          }
-        ],
+            }
+          },
+          "description": "Identifies the chart to warm up cache for, and any additional dashboard or filter context to use.",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "count": {
-                      "description": "The total record count on the backend",
-                      "type": "number"
-                    },
-                    "description_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The description for the column name. Will be translated by babel",
-                          "example": "A Nice description for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "ids": {
-                      "description": "A list of item ids, useful when you don't know the column id",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "label_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The label for the column name. Will be translated by babel",
-                          "example": "A Nice label for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "list_columns": {
-                      "description": "A list of columns",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "list_title": {
-                      "description": "A title to render. Will be translated by babel",
-                      "example": "List Items",
-                      "type": "string"
-                    },
-                    "order_columns": {
-                      "description": "A list of allowed columns to sort",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "result": {
-                      "description": "The result from the get list query",
-                      "items": {
-                        "$ref": "#/components/schemas/ChartRestApi.get_list"
-                      },
-                      "type": "array"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/ChartCacheWarmUpResponseSchema"
                 }
               }
             },
-            "description": "Items from Model"
+            "description": "Each chart's warmup status"
           },
           "400": {
             "$ref": "#/components/responses/400"
           },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "404": {
+            "$ref": "#/components/responses/404"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -13258,44 +13907,39 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of charts",
+        "summary": "Warm up the cache for the chart",
         "tags": [
           "Charts"
         ]
-      },
-      "post": {
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/ChartRestApi.post"
-              }
+      }
+    },
+    "/api/v1/chart/{pk}": {
+      "delete": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
-          },
-          "description": "Chart schema",
-          "required": true
-        },
+          }
+        ],
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
-                      "type": "number"
-                    },
-                    "result": {
-                      "$ref": "#/components/schemas/ChartRestApi.post"
+                    "message": {
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Chart added"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Chart delete"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -13303,6 +13947,9 @@
           "403": {
             "$ref": "#/components/responses/403"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -13315,21 +13962,27 @@
             "jwt": []
           }
         ],
-        "summary": "Create a new chart",
+        "summary": "Delete a chart",
         "tags": [
           "Charts"
         ]
-      }
-    },
-    "/api/v1/chart/_info": {
+      },
       "get": {
-        "description": "Get metadata information about this API resource",
+        "description": "Get an item model",
         "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_info_schema"
+                  "$ref": "#/components/schemas/get_item_schema"
                 }
               }
             },
@@ -13343,39 +13996,44 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "add_columns": {
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
                       "type": "object"
                     },
-                    "edit_columns": {
-                      "type": "object"
+                    "id": {
+                      "description": "The item id",
+                      "type": "string"
                     },
-                    "filters": {
+                    "label_columns": {
                       "properties": {
                         "column_name": {
-                          "items": {
-                            "properties": {
-                              "name": {
-                                "description": "The filter name. Will be translated by babel",
-                                "type": "string"
-                              },
-                              "operator": {
-                                "description": "The filter operation key to use on list filters",
-                                "type": "string"
-                              }
-                            },
-                            "type": "object"
-                          },
-                          "type": "array"
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
                         }
                       },
                       "type": "object"
                     },
-                    "permissions": {
-                      "description": "The user permissions for this API resource",
+                    "result": {
+                      "$ref": "#/components/schemas/ChartRestApi.get"
+                    },
+                    "show_columns": {
+                      "description": "A list of columns",
                       "items": {
                         "type": "string"
                       },
                       "type": "array"
+                    },
+                    "show_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "Show Item Details",
+                      "type": "string"
                     }
                   },
                   "type": "object"
@@ -13390,6 +14048,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -13402,24 +14063,31 @@
             "jwt": []
           }
         ],
-        "summary": "Get metadata information about this API resource",
+        "summary": "Get a chart detail information",
         "tags": [
           "Charts"
         ]
-      }
-    },
-    "/api/v1/chart/data": {
-      "post": {
-        "description": "Takes a query context constructed in the client and returns payload data response for the given query.",
+      },
+      "put": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/ChartDataQueryContextSchema"
+                "$ref": "#/components/schemas/ChartRestApi.put"
               }
             }
           },
-          "description": "A query context consists of a datasource from which to fetch data and one or many query objects.",
+          "description": "Chart schema",
           "required": true
         },
         "responses": {
@@ -13427,21 +14095,19 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/ChartDataResponseSchema"
-                }
-              }
-            },
-            "description": "Query result"
-          },
-          "202": {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/ChartDataAsyncResponseSchema"
+                  "properties": {
+                    "id": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/ChartRestApi.put"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Async job details"
+            "description": "Chart changed"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -13449,6 +14115,15 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -13458,23 +14133,33 @@
             "jwt": []
           }
         ],
-        "summary": "Return payload data response for the given query",
+        "summary": "Update a chart",
         "tags": [
           "Charts"
         ]
       }
     },
-    "/api/v1/chart/data/{cache_key}": {
+    "/api/v1/chart/{pk}/cache_screenshot/": {
       "get": {
-        "description": "Takes a query context cache key and returns payload data response for the given query.",
         "parameters": [
           {
             "in": "path",
-            "name": "cache_key",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
+          },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/screenshot_query_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -13482,11 +14167,21 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/ChartDataResponseSchema"
+                  "$ref": "#/components/schemas/ChartCacheScreenshotResponseSchema"
                 }
               }
             },
-            "description": "Query result"
+            "description": "Chart async result"
+          },
+          "202": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/ChartCacheScreenshotResponseSchema"
+                }
+              }
+            },
+            "description": "Chart screenshot task created"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -13497,9 +14192,6 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -13509,38 +14201,70 @@
             "jwt": []
           }
         ],
-        "summary": "Return payload data response for the given query",
+        "summary": "Compute and cache a screenshot",
         "tags": [
           "Charts"
         ]
       }
     },
-    "/api/v1/chart/export/": {
+    "/api/v1/chart/{pk}/data/": {
       "get": {
+        "description": "Takes a chart ID and uses the query context stored when the chart was saved to return payload data response.",
         "parameters": [
           {
+            "description": "The chart ID",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "description": "The format in which the data should be returned",
+            "in": "query",
+            "name": "format",
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "The type in which the data should be returned",
+            "in": "query",
+            "name": "type",
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "Should the queries be forced to load from the source",
+            "in": "query",
+            "name": "force",
+            "schema": {
+              "type": "boolean"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_export_ids_schema"
+                  "$ref": "#/components/schemas/ChartDataResponseSchema"
                 }
               }
             },
-            "in": "query",
-            "name": "q"
-          }
-        ],
-        "responses": {
-          "200": {
+            "description": "Query result"
+          },
+          "202": {
             "content": {
-              "application/zip": {
+              "application/json": {
                 "schema": {
-                  "format": "binary",
-                  "type": "string"
+                  "$ref": "#/components/schemas/ChartDataAsyncResponseSchema"
                 }
               }
             },
-            "description": "A zip file with chart(s), dataset(s) and database(s) as YAML"
+            "description": "Async job details"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -13548,9 +14272,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -13560,25 +14281,22 @@
             "jwt": []
           }
         ],
-        "summary": "Download multiple charts as YAML files",
+        "summary": "Return payload data response for a chart",
         "tags": [
           "Charts"
         ]
       }
     },
-    "/api/v1/chart/favorite_status/": {
-      "get": {
+    "/api/v1/chart/{pk}/favorites/": {
+      "delete": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_fav_star_ids_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
         "responses": {
@@ -13586,14 +14304,16 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/GetFavStarIdsSchema"
+                  "properties": {
+                    "result": {
+                      "type": "object"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "None"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Chart removed from favorites"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -13610,75 +14330,43 @@
             "jwt": []
           }
         ],
-        "summary": "Check favorited charts for current user",
+        "summary": "Remove the chart from the user favorite list",
         "tags": [
           "Charts"
         ]
-      }
-    },
-    "/api/v1/chart/import/": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "multipart/form-data": {
-              "schema": {
-                "properties": {
-                  "formData": {
-                    "description": "upload file (ZIP)",
-                    "format": "binary",
-                    "type": "string"
-                  },
-                  "overwrite": {
-                    "description": "overwrite existing charts?",
-                    "type": "boolean"
-                  },
-                  "passwords": {
-                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_passwords": {
-                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_key_passwords": {
-                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_keys": {
-                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
-                    "type": "string"
-                  }
-                },
-                "type": "object"
-              }
+      },
+      "post": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
-          },
-          "required": true
-        },
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "result": {
+                      "type": "object"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Chart import result"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Chart added to favorites"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "404": {
+            "$ref": "#/components/responses/404"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -13689,46 +14377,43 @@
             "jwt": []
           }
         ],
-        "summary": "Import chart(s) with associated datasets and databases",
+        "summary": "Mark the chart as favorite for the current user",
         "tags": [
           "Charts"
         ]
       }
     },
-    "/api/v1/chart/related/{column_name}": {
+    "/api/v1/chart/{pk}/screenshot/{digest}/": {
       "get": {
-        "description": "Get a list of all possible owners for a chart. Use `owners` has the `column_name` parameter",
         "parameters": [
           {
             "in": "path",
-            "name": "column_name",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
           },
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "in": "path",
+            "name": "digest",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "content": {
-              "application/json": {
+              "image/*": {
                 "schema": {
-                  "$ref": "#/components/schemas/RelatedResponseSchema"
+                  "format": "binary",
+                  "type": "string"
                 }
               }
             },
-            "description": "Related column data"
+            "description": "Chart screenshot image"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -13748,40 +14433,55 @@
             "jwt": []
           }
         ],
-        "summary": "Get related fields data",
+        "summary": "Get a computed screenshot from cache",
         "tags": [
           "Charts"
         ]
       }
     },
-    "/api/v1/chart/warm_up_cache": {
-      "put": {
-        "description": "Warms up the cache for the chart. Note for slices a force refresh occurs. In terms of the `extra_filters` these can be obtained from records in the JSON encoded `logs.json` column associated with the `explore_json` action.",
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/ChartCacheWarmUpRequestSchema"
-              }
+    "/api/v1/chart/{pk}/thumbnail/{digest}/": {
+      "get": {
+        "description": "Compute or get already computed chart thumbnail from cache.",
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
           },
-          "description": "Identifies the chart to warm up cache for, and any additional dashboard or filter context to use.",
-          "required": true
-        },
+          {
+            "description": "A hex digest that makes this chart unique",
+            "in": "path",
+            "name": "digest",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
         "responses": {
           "200": {
             "content": {
-              "application/json": {
+              "image/*": {
                 "schema": {
-                  "$ref": "#/components/schemas/ChartCacheWarmUpResponseSchema"
+                  "format": "binary",
+                  "type": "string"
                 }
               }
             },
-            "description": "Each chart's warmup status"
+            "description": "Chart thumbnail image"
+          },
+          "302": {
+            "description": "Redirects to the current digest"
           },
           "400": {
             "$ref": "#/components/responses/400"
           },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -13794,22 +14494,25 @@
             "jwt": []
           }
         ],
-        "summary": "Warm up the cache for the chart",
+        "summary": "Get chart thumbnail",
         "tags": [
           "Charts"
         ]
       }
     },
-    "/api/v1/chart/{pk}": {
+    "/api/v1/css_template/": {
       "delete": {
         "parameters": [
           {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_delete_ids_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -13826,14 +14529,11 @@
                 }
               }
             },
-            "description": "Chart delete"
+            "description": "CSS templates bulk delete"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -13849,27 +14549,19 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a chart",
+        "summary": "Bulk delete CSS templates",
         "tags": [
-          "Charts"
+          "CSS Templates"
         ]
       },
       "get": {
-        "description": "Get an item model",
+        "description": "Gets a list of CSS templates, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
         "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_item_schema"
+                  "$ref": "#/components/schemas/get_list_schema"
                 }
               }
             },
@@ -13883,6 +14575,10 @@
               "application/json": {
                 "schema": {
                   "properties": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
                     "description_columns": {
                       "properties": {
                         "column_name": {
@@ -13893,9 +14589,12 @@
                       },
                       "type": "object"
                     },
-                    "id": {
-                      "description": "The item id",
-                      "type": "string"
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
                     },
                     "label_columns": {
                       "properties": {
@@ -13907,27 +14606,38 @@
                       },
                       "type": "object"
                     },
-                    "result": {
-                      "$ref": "#/components/schemas/ChartRestApi.get"
-                    },
-                    "show_columns": {
+                    "list_columns": {
                       "description": "A list of columns",
                       "items": {
                         "type": "string"
                       },
                       "type": "array"
                     },
-                    "show_title": {
+                    "list_title": {
                       "description": "A title to render. Will be translated by babel",
-                      "example": "Show Item Details",
+                      "example": "List Items",
                       "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/CssTemplateRestApi.get_list"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "Items from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -13935,9 +14645,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -13950,51 +14657,41 @@
             "jwt": []
           }
         ],
-        "summary": "Get a chart detail information",
+        "summary": "Get a list of CSS templates",
         "tags": [
-          "Charts"
+          "CSS Templates"
         ]
       },
-      "put": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
+      "post": {
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/ChartRestApi.put"
+                "$ref": "#/components/schemas/CssTemplateRestApi.post"
               }
             }
           },
-          "description": "Chart schema",
+          "description": "Model schema",
           "required": true
         },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
                     "id": {
-                      "type": "number"
+                      "type": "string"
                     },
                     "result": {
-                      "$ref": "#/components/schemas/ChartRestApi.put"
+                      "$ref": "#/components/schemas/CssTemplateRestApi.post"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Chart changed"
+            "description": "Item inserted"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -14002,12 +14699,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -14020,28 +14711,21 @@
             "jwt": []
           }
         ],
-        "summary": "Update a chart",
+        "summary": "Create a CSS template",
         "tags": [
-          "Charts"
+          "CSS Templates"
         ]
       }
     },
-    "/api/v1/chart/{pk}/cache_screenshot/": {
+    "/api/v1/css_template/_info": {
       "get": {
+        "description": "Get metadata information about this API resource",
         "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/screenshot_query_schema"
+                  "$ref": "#/components/schemas/get_info_schema"
                 }
               }
             },
@@ -14050,15 +14734,51 @@
           }
         ],
         "responses": {
-          "202": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/ChartCacheScreenshotResponseSchema"
+                  "properties": {
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Chart async result"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -14066,8 +14786,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -14078,70 +14798,45 @@
             "jwt": []
           }
         ],
-        "summary": "Compute and cache a screenshot",
+        "summary": "Get metadata information about this API resource",
         "tags": [
-          "Charts"
+          "CSS Templates"
         ]
       }
     },
-    "/api/v1/chart/{pk}/data/": {
+    "/api/v1/css_template/related/{column_name}": {
       "get": {
-        "description": "Takes a chart ID and uses the query context stored when the chart was saved to return payload data response.",
         "parameters": [
           {
-            "description": "The chart ID",
             "in": "path",
-            "name": "pk",
+            "name": "column_name",
             "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "description": "The format in which the data should be returned",
-            "in": "query",
-            "name": "format",
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "description": "The type in which the data should be returned",
-            "in": "query",
-            "name": "type",
             "schema": {
               "type": "string"
             }
           },
           {
-            "description": "Should the queries be forced to load from the source",
-            "in": "query",
-            "name": "force",
-            "schema": {
-              "type": "boolean"
-            }
-          }
-        ],
-        "responses": {
-          "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/ChartDataResponseSchema"
+                  "$ref": "#/components/schemas/get_related_schema"
                 }
               }
             },
-            "description": "Query result"
-          },
-          "202": {
+            "in": "query",
+            "name": "q"
+          }
+        ],
+        "responses": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/ChartDataAsyncResponseSchema"
+                  "$ref": "#/components/schemas/RelatedResponseSchema"
                 }
               }
             },
-            "description": "Async job details"
+            "description": "Related column data"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -14149,6 +14844,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -14158,13 +14856,13 @@
             "jwt": []
           }
         ],
-        "summary": "Return payload data response for a chart",
+        "summary": "Get related fields data",
         "tags": [
-          "Charts"
+          "CSS Templates"
         ]
       }
     },
-    "/api/v1/chart/{pk}/favorites/": {
+    "/api/v1/css_template/{pk}": {
       "delete": {
         "parameters": [
           {
@@ -14182,22 +14880,22 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "result": {
-                      "type": "object"
+                    "message": {
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Chart removed from favorites"
-          },
-          "401": {
-            "$ref": "#/components/responses/401"
+            "description": "Item deleted"
           },
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -14207,12 +14905,13 @@
             "jwt": []
           }
         ],
-        "summary": "Remove the chart from the user favorite list",
+        "summary": "Delete a CSS template",
         "tags": [
-          "Charts"
+          "CSS Templates"
         ]
       },
-      "post": {
+      "get": {
+        "description": "Get an item model",
         "parameters": [
           {
             "in": "path",
@@ -14221,76 +14920,70 @@
             "schema": {
               "type": "integer"
             }
-          }
-        ],
-        "responses": {
-          "200": {
+          },
+          {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "type": "object"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/get_item_schema"
                 }
               }
             },
-            "description": "Chart added to favorites"
-          },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
-          "500": {
-            "$ref": "#/components/responses/500"
-          }
-        },
-        "security": [
-          {
-            "jwt": []
-          }
-        ],
-        "summary": "Mark the chart as favorite for the current user",
-        "tags": [
-          "Charts"
-        ]
-      }
-    },
-    "/api/v1/chart/{pk}/screenshot/{digest}/": {
-      "get": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "in": "path",
-            "name": "digest",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
           "200": {
             "content": {
-              "image/*": {
+              "application/json": {
                 "schema": {
-                  "format": "binary",
-                  "type": "string"
+                  "properties": {
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "id": {
+                      "description": "The item id",
+                      "type": "string"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/CssTemplateRestApi.get"
+                    },
+                    "show_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "show_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "Show Item Details",
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Chart thumbnail image"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -14301,6 +14994,9 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -14310,15 +15006,12 @@
             "jwt": []
           }
         ],
-        "summary": "Get a computed screenshot from cache",
+        "summary": "Get a CSS template",
         "tags": [
-          "Charts"
+          "CSS Templates"
         ]
-      }
-    },
-    "/api/v1/chart/{pk}/thumbnail/{digest}/": {
-      "get": {
-        "description": "Compute or get already computed chart thumbnail from cache.",
+      },
+      "put": {
         "parameters": [
           {
             "in": "path",
@@ -14327,30 +15020,34 @@
             "schema": {
               "type": "integer"
             }
-          },
-          {
-            "in": "path",
-            "name": "digest",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/CssTemplateRestApi.put"
+              }
+            }
+          },
+          "description": "Model schema",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
-              "image/*": {
+              "application/json": {
                 "schema": {
-                  "format": "binary",
-                  "type": "string"
+                  "properties": {
+                    "result": {
+                      "$ref": "#/components/schemas/CssTemplateRestApi.put"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Chart thumbnail image"
-          },
-          "302": {
-            "description": "Redirects to the current digest"
+            "description": "Item changed"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -14361,6 +15058,9 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -14370,13 +15070,13 @@
             "jwt": []
           }
         ],
-        "summary": "Get chart thumbnail",
+        "summary": "Update a CSS template",
         "tags": [
-          "Charts"
+          "CSS Templates"
         ]
       }
     },
-    "/api/v1/css_template/": {
+    "/api/v1/dashboard/": {
       "delete": {
         "parameters": [
           {
@@ -14405,11 +15105,14 @@
                 }
               }
             },
-            "description": "CSS templates bulk delete"
+            "description": "Dashboard bulk delete"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -14425,13 +15128,13 @@
             "jwt": []
           }
         ],
-        "summary": "Bulk delete CSS templates",
+        "summary": "Bulk delete dashboards",
         "tags": [
-          "CSS Templates"
+          "Dashboards"
         ]
       },
       "get": {
-        "description": "Gets a list of CSS templates, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
+        "description": "Gets a list of dashboards, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
         "parameters": [
           {
             "content": {
@@ -14504,7 +15207,148 @@
                     "result": {
                       "description": "The result from the get list query",
                       "items": {
-                        "$ref": "#/components/schemas/CssTemplateRestApi.get_list"
+                        "$ref": "#/components/schemas/DashboardRestApi.get_list"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Items from Model"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Get a list of dashboards",
+        "tags": [
+          "Dashboards"
+        ]
+      },
+      "post": {
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/DashboardRestApi.post"
+              }
+            }
+          },
+          "description": "Dashboard schema",
+          "required": true
+        },
+        "responses": {
+          "201": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "id": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/DashboardRestApi.post"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Dashboard added"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Create a new dashboard",
+        "tags": [
+          "Dashboards"
+        ]
+      }
+    },
+    "/api/v1/dashboard/_info": {
+      "get": {
+        "description": "Get metadata information about this API resource",
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_info_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
                       },
                       "type": "array"
                     }
@@ -14513,7 +15357,110 @@
                 }
               }
             },
-            "description": "Items from Model"
+            "description": "Item from Model"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Get metadata information about this API resource",
+        "tags": [
+          "Dashboards"
+        ]
+      }
+    },
+    "/api/v1/dashboard/export/": {
+      "get": {
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_export_ids_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "text/plain": {
+                "schema": {
+                  "type": "string"
+                }
+              }
+            },
+            "description": "Dashboard export"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Download multiple dashboards as YAML files",
+        "tags": [
+          "Dashboards"
+        ]
+      }
+    },
+    "/api/v1/dashboard/favorite_status/": {
+      "get": {
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_fav_star_ids_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/GetFavStarIdsSchema"
+                }
+              }
+            },
+            "description": "None"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -14521,8 +15468,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "404": {
+            "$ref": "#/components/responses/404"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -14533,41 +15480,66 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of CSS templates",
+        "summary": "Check favorited dashboards for current user",
         "tags": [
-          "CSS Templates"
+          "Dashboards"
         ]
-      },
+      }
+    },
+    "/api/v1/dashboard/import/": {
       "post": {
         "requestBody": {
           "content": {
-            "application/json": {
+            "multipart/form-data": {
               "schema": {
-                "$ref": "#/components/schemas/CssTemplateRestApi.post"
+                "properties": {
+                  "formData": {
+                    "description": "upload file (ZIP or JSON)",
+                    "format": "binary",
+                    "type": "string"
+                  },
+                  "overwrite": {
+                    "description": "overwrite existing dashboards?",
+                    "type": "boolean"
+                  },
+                  "passwords": {
+                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_passwords": {
+                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_key_passwords": {
+                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_keys": {
+                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
+                    "type": "string"
+                  }
+                },
+                "type": "object"
               }
             }
           },
-          "description": "Model schema",
           "required": true
         },
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
+                    "message": {
                       "type": "string"
-                    },
-                    "result": {
-                      "$ref": "#/components/schemas/CssTemplateRestApi.post"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item inserted"
+            "description": "Dashboard import result"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -14587,26 +15559,22 @@
             "jwt": []
           }
         ],
-        "summary": "Create a CSS template",
+        "summary": "Import dashboard(s) with associated charts/datasets/databases",
         "tags": [
-          "CSS Templates"
+          "Dashboards"
         ]
       }
     },
-    "/api/v1/css_template/_info": {
+    "/api/v1/dashboard/permalink/{key}": {
       "get": {
-        "description": "Get metadata information about this API resource",
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_info_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "in": "path",
+            "name": "key",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -14615,46 +15583,16 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "add_columns": {
-                      "type": "object"
-                    },
-                    "edit_columns": {
-                      "type": "object"
-                    },
-                    "filters": {
-                      "properties": {
-                        "column_name": {
-                          "items": {
-                            "properties": {
-                              "name": {
-                                "description": "The filter name. Will be translated by babel",
-                                "type": "string"
-                              },
-                              "operator": {
-                                "description": "The filter operation key to use on list filters",
-                                "type": "string"
-                              }
-                            },
-                            "type": "object"
-                          },
-                          "type": "array"
-                        }
-                      },
+                    "state": {
+                      "description": "The stored state",
                       "type": "object"
-                    },
-                    "permissions": {
-                      "description": "The user permissions for this API resource",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "Returns the stored state."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -14662,6 +15600,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -14674,14 +15615,15 @@
             "jwt": []
           }
         ],
-        "summary": "Get metadata information about this API resource",
+        "summary": "Get dashboard's permanent link state",
         "tags": [
-          "CSS Templates"
+          "Dashboard Permanent Link"
         ]
       }
     },
-    "/api/v1/css_template/related/{column_name}": {
+    "/api/v1/dashboard/related/{column_name}": {
       "get": {
+        "description": "Get a list of all possible owners for a dashboard.",
         "parameters": [
           {
             "in": "path",
@@ -14734,19 +15676,20 @@
         ],
         "summary": "Get related fields data",
         "tags": [
-          "CSS Templates"
+          "Dashboards"
         ]
       }
     },
-    "/api/v1/css_template/{pk}": {
-      "delete": {
+    "/api/v1/dashboard/{id_or_slug}": {
+      "get": {
         "parameters": [
           {
+            "description": "Either the id of the dashboard, or its slug",
             "in": "path",
-            "name": "pk",
+            "name": "id_or_slug",
             "required": true,
             "schema": {
-              "type": "integer"
+              "type": "string"
             }
           }
         ],
@@ -14756,24 +15699,27 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "result": {
+                      "$ref": "#/components/schemas/DashboardGetResponseSchema"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item deleted"
+            "description": "Dashboard"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "400": {
+            "$ref": "#/components/responses/400"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "401": {
+            "$ref": "#/components/responses/401"
           },
-          "500": {
-            "$ref": "#/components/responses/500"
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
           }
         },
         "security": [
@@ -14781,85 +15727,108 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a CSS template",
+        "summary": "Get a dashboard detail information",
         "tags": [
-          "CSS Templates"
+          "Dashboards"
         ]
-      },
+      }
+    },
+    "/api/v1/dashboard/{id_or_slug}/charts": {
       "get": {
-        "description": "Get an item model",
         "parameters": [
           {
             "in": "path",
-            "name": "pk",
+            "name": "id_or_slug",
             "required": true,
             "schema": {
-              "type": "integer"
+              "type": "string"
             }
-          },
-          {
+          }
+        ],
+        "responses": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_item_schema"
+                  "properties": {
+                    "result": {
+                      "items": {
+                        "$ref": "#/components/schemas/ChartEntityResponseSchema"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "in": "query",
-            "name": "q"
+            "description": "Dashboard chart definitions"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Get a dashboard's chart definitions.",
+        "tags": [
+          "Dashboards"
+        ]
+      }
+    },
+    "/api/v1/dashboard/{id_or_slug}/copy/": {
+      "post": {
+        "parameters": [
+          {
+            "description": "The dashboard id or slug",
+            "in": "path",
+            "name": "id_or_slug",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/DashboardCopySchema"
+              }
+            }
+          },
+          "required": true
+        },
         "responses": {
           "200": {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "properties": {
-                    "description_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The description for the column name. Will be translated by babel",
-                          "example": "A Nice description for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
                     "id": {
-                      "description": "The item id",
-                      "type": "string"
-                    },
-                    "label_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The label for the column name. Will be translated by babel",
-                          "example": "A Nice label for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "result": {
-                      "$ref": "#/components/schemas/CssTemplateRestApi.get"
-                    },
-                    "show_columns": {
-                      "description": "A list of columns",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
+                      "type": "number"
                     },
-                    "show_title": {
-                      "description": "A title to render. Will be translated by babel",
-                      "example": "Show Item Details",
-                      "type": "string"
+                    "last_modified_time": {
+                      "type": "number"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "Id of new dashboard and last modified time"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -14867,12 +15836,12 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -14882,33 +15851,26 @@
             "jwt": []
           }
         ],
-        "summary": "Get a CSS template",
+        "summary": "Create a copy of an existing dashboard",
         "tags": [
-          "CSS Templates"
+          "Dashboards"
         ]
-      },
-      "put": {
+      }
+    },
+    "/api/v1/dashboard/{id_or_slug}/datasets": {
+      "get": {
+        "description": "Returns a list of a dashboard's datasets. Each dataset includes only the information necessary to render the dashboard's charts.",
         "parameters": [
           {
+            "description": "Either the id of the dashboard, or its slug",
             "in": "path",
-            "name": "pk",
+            "name": "id_or_slug",
             "required": true,
             "schema": {
-              "type": "integer"
+              "type": "string"
             }
           }
         ],
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/CssTemplateRestApi.put"
-              }
-            }
-          },
-          "description": "Model schema",
-          "required": true
-        },
         "responses": {
           "200": {
             "content": {
@@ -14916,14 +15878,17 @@
                 "schema": {
                   "properties": {
                     "result": {
-                      "$ref": "#/components/schemas/CssTemplateRestApi.put"
+                      "items": {
+                        "$ref": "#/components/schemas/DashboardDatasetSchema"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item changed"
+            "description": "Dashboard dataset definitions"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -14931,14 +15896,11 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
-          },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
-          "500": {
-            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -14946,25 +15908,23 @@
             "jwt": []
           }
         ],
-        "summary": "Update a CSS template",
+        "summary": "Get dashboard's datasets",
         "tags": [
-          "CSS Templates"
+          "Dashboards"
         ]
       }
     },
-    "/api/v1/dashboard/": {
+    "/api/v1/dashboard/{id_or_slug}/embedded": {
       "delete": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_delete_ids_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "description": "The dashboard id or slug",
+            "in": "path",
+            "name": "id_or_slug",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -14981,20 +15941,11 @@
                 }
               }
             },
-            "description": "Dashboard bulk delete"
+            "description": "Successfully removed the configuration"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -15004,105 +15955,98 @@
             "jwt": []
           }
         ],
-        "summary": "Bulk delete dashboards",
+        "summary": "Delete a dashboard's embedded configuration",
         "tags": [
           "Dashboards"
         ]
       },
       "get": {
-        "description": "Gets a list of dashboards, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
         "parameters": [
           {
+            "description": "The dashboard id or slug",
+            "in": "path",
+            "name": "id_or_slug",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_list_schema"
+                  "properties": {
+                    "result": {
+                      "$ref": "#/components/schemas/EmbeddedDashboardResponseSchema"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "in": "query",
-            "name": "q"
+            "description": "Result contains the embedded dashboard config"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Get the dashboard's embedded configuration",
+        "tags": [
+          "Dashboards"
+        ]
+      },
+      "post": {
+        "parameters": [
+          {
+            "description": "The dashboard id or slug",
+            "in": "path",
+            "name": "id_or_slug",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/EmbeddedDashboardConfig"
+              }
+            }
+          },
+          "description": "The embedded configuration to set",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "count": {
-                      "description": "The total record count on the backend",
-                      "type": "number"
-                    },
-                    "description_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The description for the column name. Will be translated by babel",
-                          "example": "A Nice description for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "ids": {
-                      "description": "A list of item ids, useful when you don't know the column id",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "label_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The label for the column name. Will be translated by babel",
-                          "example": "A Nice label for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "list_columns": {
-                      "description": "A list of columns",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "list_title": {
-                      "description": "A title to render. Will be translated by babel",
-                      "example": "List Items",
-                      "type": "string"
-                    },
-                    "order_columns": {
-                      "description": "A list of allowed columns to sort",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
                     "result": {
-                      "description": "The result from the get list query",
-                      "items": {
-                        "$ref": "#/components/schemas/DashboardRestApi.get_list"
-                      },
-                      "type": "array"
+                      "$ref": "#/components/schemas/EmbeddedDashboardResponseSchema"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Items from Model"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Successfully set the configuration"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -15112,51 +16056,54 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of dashboards",
+        "summary": "Set a dashboard's embedded configuration",
         "tags": [
           "Dashboards"
         ]
       },
-      "post": {
+      "put": {
+        "description": "Sets a dashboard's embedded configuration.",
+        "parameters": [
+          {
+            "description": "The dashboard id or slug",
+            "in": "path",
+            "name": "id_or_slug",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/DashboardRestApi.post"
+                "$ref": "#/components/schemas/EmbeddedDashboardConfig"
               }
             }
           },
-          "description": "Dashboard schema",
+          "description": "The embedded configuration to set",
           "required": true
         },
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
-                      "type": "number"
-                    },
                     "result": {
-                      "$ref": "#/components/schemas/DashboardRestApi.post"
+                      "$ref": "#/components/schemas/EmbeddedDashboardResponseSchema"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dashboard added"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Successfully set the configuration"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -15166,26 +16113,23 @@
             "jwt": []
           }
         ],
-        "summary": "Create a new dashboard",
         "tags": [
           "Dashboards"
         ]
       }
     },
-    "/api/v1/dashboard/_info": {
+    "/api/v1/dashboard/{id_or_slug}/tabs": {
       "get": {
-        "description": "Get metadata information about this API resource",
+        "description": "Returns a list of a dashboard's tabs and dashboard's nested tree structure for associated tabs.",
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_info_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "description": "Either the id of the dashboard, or its slug",
+            "in": "path",
+            "name": "id_or_slug",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -15194,46 +16138,18 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "add_columns": {
-                      "type": "object"
-                    },
-                    "edit_columns": {
-                      "type": "object"
-                    },
-                    "filters": {
-                      "properties": {
-                        "column_name": {
-                          "items": {
-                            "properties": {
-                              "name": {
-                                "description": "The filter name. Will be translated by babel",
-                                "type": "string"
-                              },
-                              "operator": {
-                                "description": "The filter operation key to use on list filters",
-                                "type": "string"
-                              }
-                            },
-                            "type": "object"
-                          },
-                          "type": "array"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "permissions": {
-                      "description": "The user permissions for this API resource",
+                    "result": {
                       "items": {
-                        "type": "string"
+                        "$ref": "#/components/schemas/TabsPayloadSchema"
                       },
-                      "type": "array"
+                      "type": "object"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "Dashboard tabs"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -15241,11 +16157,11 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "403": {
+            "$ref": "#/components/responses/403"
           },
-          "500": {
-            "$ref": "#/components/responses/500"
+          "404": {
+            "$ref": "#/components/responses/404"
           }
         },
         "security": [
@@ -15253,44 +16169,46 @@
             "jwt": []
           }
         ],
-        "summary": "Get metadata information about this API resource",
+        "summary": "Get dashboard's tabs",
         "tags": [
           "Dashboards"
         ]
       }
     },
-    "/api/v1/dashboard/export/": {
-      "get": {
+    "/api/v1/dashboard/{pk}": {
+      "delete": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_export_ids_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
         "responses": {
           "200": {
             "content": {
-              "text/plain": {
+              "application/json": {
                 "schema": {
-                  "type": "string"
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Dashboard export"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Dashboard deleted"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -15306,37 +16224,54 @@
             "jwt": []
           }
         ],
-        "summary": "Download multiple dashboards as YAML files",
+        "summary": "Delete a dashboard",
         "tags": [
           "Dashboards"
         ]
-      }
-    },
-    "/api/v1/dashboard/favorite_status/": {
-      "get": {
+      },
+      "put": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_fav_star_ids_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/DashboardRestApi.put"
+              }
+            }
+          },
+          "description": "Dashboard schema",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/GetFavStarIdsSchema"
+                  "properties": {
+                    "id": {
+                      "type": "number"
+                    },
+                    "last_modified_time": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/DashboardRestApi.put"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "None"
+            "description": "Dashboard changed"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -15344,9 +16279,15 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -15356,66 +16297,43 @@
             "jwt": []
           }
         ],
-        "summary": "Check favorited dashboards for current user",
+        "summary": "Update a dashboard",
         "tags": [
           "Dashboards"
         ]
       }
     },
-    "/api/v1/dashboard/import/": {
+    "/api/v1/dashboard/{pk}/cache_dashboard_screenshot/": {
       "post": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
         "requestBody": {
           "content": {
-            "multipart/form-data": {
+            "application/json": {
               "schema": {
-                "properties": {
-                  "formData": {
-                    "description": "upload file (ZIP or JSON)",
-                    "format": "binary",
-                    "type": "string"
-                  },
-                  "overwrite": {
-                    "description": "overwrite existing dashboards?",
-                    "type": "boolean"
-                  },
-                  "passwords": {
-                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_passwords": {
-                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_key_passwords": {
-                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_keys": {
-                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
-                    "type": "string"
-                  }
-                },
-                "type": "object"
+                "$ref": "#/components/schemas/DashboardScreenshotPostSchema"
               }
             }
-          },
-          "required": true
+          }
         },
         "responses": {
-          "200": {
+          "202": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "message": {
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/DashboardCacheScreenshotResponseSchema"
                 }
               }
             },
-            "description": "Dashboard import result"
+            "description": "Dashboard async result"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -15423,8 +16341,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "404": {
+            "$ref": "#/components/responses/404"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -15435,40 +16353,58 @@
             "jwt": []
           }
         ],
-        "summary": "Import dashboard(s) with associated charts/datasets/databases",
+        "summary": "Compute and cache a screenshot",
         "tags": [
           "Dashboards"
         ]
       }
     },
-    "/api/v1/dashboard/permalink/{key}": {
-      "get": {
+    "/api/v1/dashboard/{pk}/colors": {
+      "put": {
         "parameters": [
           {
             "in": "path",
-            "name": "key",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
+            }
+          },
+          {
+            "in": "query",
+            "name": "mark_updated",
+            "schema": {
+              "description": "Whether to update the dashboard changed_on field",
+              "type": "boolean"
             }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/DashboardColorsConfigUpdateSchema"
+              }
+            }
+          },
+          "description": "Colors configuration",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "state": {
-                      "description": "The stored state",
-                      "type": "object"
+                    "result": {
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Returns the stored state."
+            "description": "Dashboard colors updated"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -15476,6 +16412,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -15491,34 +16430,22 @@
             "jwt": []
           }
         ],
-        "summary": "Get dashboard's permanent link state",
+        "summary": "Update colors configuration for a dashboard.",
         "tags": [
-          "Dashboard Permanent Link"
+          "Dashboards"
         ]
       }
     },
-    "/api/v1/dashboard/related/{column_name}": {
-      "get": {
-        "description": "Get a list of all possible owners for a dashboard.",
+    "/api/v1/dashboard/{pk}/favorites/": {
+      "delete": {
         "parameters": [
           {
             "in": "path",
-            "name": "column_name",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
-          },
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
           }
         ],
         "responses": {
@@ -15526,14 +16453,16 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/RelatedResponseSchema"
+                  "properties": {
+                    "result": {
+                      "type": "object"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Related column data"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Dashboard removed from favorites"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -15550,22 +16479,19 @@
             "jwt": []
           }
         ],
-        "summary": "Get related fields data",
+        "summary": "Remove the dashboard from the user favorite list",
         "tags": [
           "Dashboards"
         ]
-      }
-    },
-    "/api/v1/dashboard/{id_or_slug}": {
-      "get": {
+      },
+      "post": {
         "parameters": [
           {
-            "description": "Either the id of the dashboard, or its slug",
             "in": "path",
-            "name": "id_or_slug",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
           }
         ],
@@ -15576,26 +16502,23 @@
                 "schema": {
                   "properties": {
                     "result": {
-                      "$ref": "#/components/schemas/DashboardGetResponseSchema"
+                      "type": "object"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dashboard"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Dashboard added to favorites"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -15603,42 +16526,158 @@
             "jwt": []
           }
         ],
-        "summary": "Get a dashboard detail information",
+        "summary": "Mark the dashboard as favorite for the current user",
         "tags": [
           "Dashboards"
         ]
       }
     },
-    "/api/v1/dashboard/{id_or_slug}/charts": {
-      "get": {
+    "/api/v1/dashboard/{pk}/filter_state": {
+      "post": {
         "parameters": [
           {
             "in": "path",
-            "name": "id_or_slug",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
+            }
+          },
+          {
+            "in": "query",
+            "name": "tab_id",
+            "schema": {
+              "type": "integer"
             }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "examples": {
+                "numerical_range_filter": {
+                  "description": "**This body should be stringified and put into the value field.**",
+                  "summary": "Numerical Range Filter",
+                  "value": {
+                    "extraFormData": {
+                      "filters": [
+                        {
+                          "col": "tz_offset",
+                          "op": ">=",
+                          "val": [
+                            1000
+                          ]
+                        },
+                        {
+                          "col": "tz_offset",
+                          "op": "<=",
+                          "val": [
+                            2000
+                          ]
+                        }
+                      ]
+                    },
+                    "filterState": {
+                      "label": "1000 <= x <= 2000",
+                      "value": [
+                        1000,
+                        2000
+                      ]
+                    },
+                    "id": "NATIVE_FILTER_ID"
+                  }
+                },
+                "time_grain_filter": {
+                  "description": "**This body should be stringified and put into the value field.**",
+                  "summary": "Time Grain Filter",
+                  "value": {
+                    "extraFormData": {
+                      "time_grain_sqla": "P1W/1970-01-03T00:00:00Z"
+                    },
+                    "filterState": {
+                      "label": "Week ending Saturday",
+                      "value": [
+                        "P1W/1970-01-03T00:00:00Z"
+                      ]
+                    },
+                    "id": "NATIVE_FILTER_ID"
+                  }
+                },
+                "time_range_filter": {
+                  "description": "**This body should be stringified and put into the value field.**",
+                  "summary": "Time Range Filter",
+                  "value": {
+                    "extraFormData": {
+                      "time_range": "DATEADD(DATETIME('2025-01-16T00:00:00'), -7, day) : 2025-01-16T00:00:00"
+                    },
+                    "filterState": {
+                      "value": "DATEADD(DATETIME('2025-01-16T00:00:00'), -7, day) : 2025-01-16T00:00:00"
+                    },
+                    "id": "NATIVE_FILTER_ID"
+                  }
+                },
+                "timecolumn_filter": {
+                  "description": "**This body should be stringified and put into the value field.**",
+                  "summary": "Time Column Filter",
+                  "value": {
+                    "extraFormData": {
+                      "granularity_sqla": "order_date"
+                    },
+                    "filterState": {
+                      "value": [
+                        "order_date"
+                      ]
+                    },
+                    "id": "NATIVE_FILTER_ID"
+                  }
+                },
+                "value_filter": {
+                  "description": "**This body should be stringified and put into the value field.**",
+                  "summary": "Value Filter",
+                  "value": {
+                    "extraFormData": {
+                      "filters": [
+                        {
+                          "col": "real_name",
+                          "op": "IN",
+                          "val": [
+                            "John Doe"
+                          ]
+                        }
+                      ]
+                    },
+                    "filterState": {
+                      "value": [
+                        "John Doe"
+                      ]
+                    },
+                    "id": "NATIVE_FILTER_ID"
+                  }
+                }
+              },
+              "schema": {
+                "$ref": "#/components/schemas/TemporaryCachePostSchema"
+              }
+            }
+          },
+          "required": true
+        },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "result": {
-                      "items": {
-                        "$ref": "#/components/schemas/ChartEntityResponseSchema"
-                      },
-                      "type": "array"
+                    "key": {
+                      "description": "The key to retrieve the value.",
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dashboard chart definitions"
+            "description": "The value was stored successfully."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -15646,11 +16685,11 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "500": {
+            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -15658,53 +16697,49 @@
             "jwt": []
           }
         ],
-        "summary": "Get a dashboard's chart definitions.",
+        "summary": "Create a dashboard's filter state",
         "tags": [
-          "Dashboards"
+          "Dashboard Filter State"
         ]
       }
     },
-    "/api/v1/dashboard/{id_or_slug}/copy/": {
-      "post": {
+    "/api/v1/dashboard/{pk}/filter_state/{key}": {
+      "delete": {
         "parameters": [
           {
-            "description": "The dashboard id or slug",
             "in": "path",
-            "name": "id_or_slug",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "description": "The value key.",
+            "in": "path",
+            "name": "key",
             "required": true,
             "schema": {
               "type": "string"
             }
           }
         ],
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/DashboardCopySchema"
-              }
-            }
-          },
-          "required": true
-        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
-                      "type": "number"
-                    },
-                    "last_modified_time": {
-                      "type": "number"
+                    "message": {
+                      "description": "The result of the operation",
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Id of new dashboard and last modified time"
+            "description": "Deleted the stored value."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -15712,12 +16747,12 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -15727,20 +16762,24 @@
             "jwt": []
           }
         ],
-        "summary": "Create a copy of an existing dashboard",
+        "summary": "Delete a dashboard's filter state value",
         "tags": [
-          "Dashboards"
+          "Dashboard Filter State"
         ]
-      }
-    },
-    "/api/v1/dashboard/{id_or_slug}/datasets": {
+      },
       "get": {
-        "description": "Returns a list of a dashboard's datasets. Each dataset includes only the information necessary to render the dashboard's charts.",
         "parameters": [
           {
-            "description": "Either the id of the dashboard, or its slug",
             "in": "path",
-            "name": "id_or_slug",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "in": "path",
+            "name": "key",
             "required": true,
             "schema": {
               "type": "string"
@@ -15753,18 +16792,16 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "result": {
-                      "items": {
-                        "$ref": "#/components/schemas/DashboardDatasetSchema"
-                      },
-                      "type": "array"
+                    "value": {
+                      "description": "The stored value",
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dashboard dataset definitions"
+            "description": "Returns the stored value."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -15772,11 +16809,14 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -15784,32 +16824,55 @@
             "jwt": []
           }
         ],
-        "summary": "Get dashboard's datasets",
+        "summary": "Get a dashboard's filter state value",
         "tags": [
-          "Dashboards"
+          "Dashboard Filter State"
         ]
-      }
-    },
-    "/api/v1/dashboard/{id_or_slug}/embedded": {
-      "delete": {
+      },
+      "put": {
         "parameters": [
           {
-            "description": "The dashboard id or slug",
             "in": "path",
-            "name": "id_or_slug",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "in": "path",
+            "name": "key",
             "required": true,
             "schema": {
               "type": "string"
             }
+          },
+          {
+            "in": "query",
+            "name": "tab_id",
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/TemporaryCachePutSchema"
+              }
+            }
+          },
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
+                    "key": {
+                      "description": "The key to retrieve the value.",
                       "type": "string"
                     }
                   },
@@ -15817,11 +16880,20 @@
                 }
               }
             },
-            "description": "Successfully removed the configuration"
+            "description": "The value was stored successfully."
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -15831,23 +16903,35 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a dashboard's embedded configuration",
+        "summary": "Update a dashboard's filter state value",
         "tags": [
-          "Dashboards"
+          "Dashboard Filter State"
         ]
-      },
-      "get": {
+      }
+    },
+    "/api/v1/dashboard/{pk}/filters": {
+      "put": {
         "parameters": [
           {
-            "description": "The dashboard id or slug",
             "in": "path",
-            "name": "id_or_slug",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/DashboardNativeFiltersConfigUpdateSchema"
+              }
+            }
+          },
+          "description": "Native filters configuration",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
@@ -15855,18 +16939,30 @@
                 "schema": {
                   "properties": {
                     "result": {
-                      "$ref": "#/components/schemas/EmbeddedDashboardResponseSchema"
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Result contains the embedded dashboard config"
+            "description": "Dashboard native filters updated"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -15876,17 +16972,18 @@
             "jwt": []
           }
         ],
-        "summary": "Get the dashboard's embedded configuration",
+        "summary": "Update native filters configuration for a dashboard.",
         "tags": [
           "Dashboards"
         ]
-      },
+      }
+    },
+    "/api/v1/dashboard/{pk}/permalink": {
       "post": {
         "parameters": [
           {
-            "description": "The dashboard id or slug",
             "in": "path",
-            "name": "id_or_slug",
+            "name": "pk",
             "required": true,
             "schema": {
               "type": "string"
@@ -15896,33 +16993,149 @@
         "requestBody": {
           "content": {
             "application/json": {
+              "examples": {
+                "numerical_range_filter": {
+                  "summary": "Numerical Range Filter",
+                  "value": {
+                    "dataMask": {
+                      "extraFormData": {
+                        "filters": [
+                          {
+                            "col": "tz_offset",
+                            "op": ">=",
+                            "val": [
+                              1000
+                            ]
+                          },
+                          {
+                            "col": "tz_offset",
+                            "op": "<=",
+                            "val": [
+                              2000
+                            ]
+                          }
+                        ]
+                      },
+                      "filterState": {
+                        "label": "1000 <= x <= 200",
+                        "value": [
+                          1000,
+                          2000
+                        ]
+                      },
+                      "id": "NATIVE_FILTER_ID"
+                    }
+                  }
+                },
+                "time_grain_filter": {
+                  "summary": "Time Grain Filter",
+                  "value": {
+                    "dataMask": {
+                      "extraFormData": {
+                        "time_grain_sqla": "P1W/1970-01-03T00:00:00Z"
+                      },
+                      "filterState": {
+                        "label": "Week ending Saturday",
+                        "value": [
+                          "P1W/1970-01-03T00:00:00Z"
+                        ]
+                      },
+                      "id": "NATIVE_FILTER_ID"
+                    }
+                  }
+                },
+                "time_range_filter": {
+                  "summary": "Time Range Filter",
+                  "value": {
+                    "dataMask": {
+                      "extraFormData": {
+                        "time_range": "DATEADD(DATETIME(\"2025-01-16T00:00:00\"), -7, day) : 2025-01-16T00:00:00"
+                      },
+                      "filterState": {
+                        "value": "DATEADD(DATETIME(\"2025-01-16T00:00:00\"), -7, day) : 2025-01-16T00:00:00"
+                      },
+                      "id": "NATIVE_FILTER_ID"
+                    }
+                  }
+                },
+                "timecolumn_filter": {
+                  "summary": "Time Column Filter",
+                  "value": {
+                    "dataMask": {
+                      "extraFormData": {
+                        "granularity_sqla": "order_date"
+                      },
+                      "filterState": {
+                        "value": [
+                          "order_date"
+                        ]
+                      },
+                      "id": "NATIVE_FILTER_ID"
+                    }
+                  }
+                },
+                "value_filter": {
+                  "summary": "Value Filter",
+                  "value": {
+                    "dataMask": {
+                      "extraFormData": {
+                        "filters": [
+                          {
+                            "col": "real_name",
+                            "op": "IN",
+                            "val": [
+                              "John Doe"
+                            ]
+                          }
+                        ]
+                      },
+                      "filterState": {
+                        "value": [
+                          "John Doe"
+                        ]
+                      },
+                      "id": "NATIVE_FILTER_ID"
+                    }
+                  }
+                }
+              },
               "schema": {
-                "$ref": "#/components/schemas/EmbeddedDashboardConfig"
+                "$ref": "#/components/schemas/DashboardPermalinkStateSchema"
               }
             }
           },
-          "description": "The embedded configuration to set",
           "required": true
         },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "result": {
-                      "$ref": "#/components/schemas/EmbeddedDashboardResponseSchema"
+                    "key": {
+                      "description": "The key to retrieve the permanent link data.",
+                      "type": "string"
+                    },
+                    "url": {
+                      "description": "permanent link.",
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Successfully set the configuration"
+            "description": "The permanent link was stored successfully."
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -15932,54 +17145,64 @@
             "jwt": []
           }
         ],
-        "summary": "Set a dashboard's embedded configuration",
+        "summary": "Create a new dashboard's permanent link",
         "tags": [
-          "Dashboards"
+          "Dashboard Permanent Link"
         ]
-      },
-      "put": {
-        "description": "Sets a dashboard's embedded configuration.",
+      }
+    },
+    "/api/v1/dashboard/{pk}/screenshot/{digest}/": {
+      "get": {
         "parameters": [
           {
-            "description": "The dashboard id or slug",
             "in": "path",
-            "name": "id_or_slug",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "in": "path",
+            "name": "digest",
             "required": true,
             "schema": {
               "type": "string"
             }
+          },
+          {
+            "in": "query",
+            "name": "download_format",
+            "schema": {
+              "enum": [
+                "png",
+                "pdf"
+              ],
+              "type": "string"
+            }
           }
         ],
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/EmbeddedDashboardConfig"
-              }
-            }
-          },
-          "description": "The embedded configuration to set",
-          "required": true
-        },
         "responses": {
           "200": {
             "content": {
-              "application/json": {
+              "image/*": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "$ref": "#/components/schemas/EmbeddedDashboardResponseSchema"
-                    }
-                  },
-                  "type": "object"
+                  "format": "binary",
+                  "type": "string"
                 }
               }
             },
-            "description": "Successfully set the configuration"
+            "description": "Dashboard thumbnail image"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -15989,19 +17212,28 @@
             "jwt": []
           }
         ],
+        "summary": "Get a computed screenshot from cache",
         "tags": [
           "Dashboards"
         ]
       }
     },
-    "/api/v1/dashboard/{id_or_slug}/tabs": {
+    "/api/v1/dashboard/{pk}/thumbnail/{digest}/": {
       "get": {
-        "description": "Returns a list of a dashboard's tabs and dashboard's nested tree structure for associated tabs.",
+        "description": "Computes async or get already computed dashboard thumbnail from cache.",
         "parameters": [
           {
-            "description": "Either the id of the dashboard, or its slug",
             "in": "path",
-            "name": "id_or_slug",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "description": "A hex digest that makes this dashboard unique",
+            "in": "path",
+            "name": "digest",
             "required": true,
             "schema": {
               "type": "string"
@@ -16010,34 +17242,45 @@
         ],
         "responses": {
           "200": {
+            "content": {
+              "image/*": {
+                "schema": {
+                  "format": "binary",
+                  "type": "string"
+                }
+              }
+            },
+            "description": "Dashboard thumbnail image"
+          },
+          "202": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "result": {
-                      "items": {
-                        "$ref": "#/components/schemas/TabsPayloadSchema"
-                      },
-                      "type": "object"
+                    "message": {
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dashboard tabs"
+            "description": "Thumbnail does not exist on cache, fired async to compute"
           },
-          "400": {
-            "$ref": "#/components/responses/400"
+          "302": {
+            "description": "Redirects to the current digest"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -16045,22 +17288,26 @@
             "jwt": []
           }
         ],
-        "summary": "Get dashboard's tabs",
+        "summary": "Get dashboard's thumbnail",
         "tags": [
           "Dashboards"
         ]
       }
     },
-    "/api/v1/dashboard/{pk}": {
-      "delete": {
+    "/api/v1/database/": {
+      "get": {
+        "description": "Gets a list of databases, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
         "parameters": [
           {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_list_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -16069,25 +17316,76 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "list_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "list_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "List Items",
                       "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/DatabaseRestApi.get_list"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dashboard deleted"
+            "description": "Items from Model"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -16100,35 +17398,25 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a dashboard",
+        "summary": "Get a list of databases",
         "tags": [
-          "Dashboards"
+          "Database"
         ]
       },
-      "put": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
+      "post": {
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/DashboardRestApi.put"
+                "$ref": "#/components/schemas/DatabaseRestApi.post"
               }
             }
           },
-          "description": "Dashboard schema",
+          "description": "Database schema",
           "required": true
         },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
@@ -16136,18 +17424,15 @@
                     "id": {
                       "type": "number"
                     },
-                    "last_modified_time": {
-                      "type": "number"
-                    },
                     "result": {
-                      "$ref": "#/components/schemas/DashboardRestApi.put"
+                      "$ref": "#/components/schemas/DatabaseRestApi.post"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dashboard changed"
+            "description": "Database added"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -16155,15 +17440,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -16173,43 +17452,74 @@
             "jwt": []
           }
         ],
-        "summary": "Update a dashboard",
+        "summary": "Create a new database",
         "tags": [
-          "Dashboards"
+          "Database"
         ]
       }
     },
-    "/api/v1/dashboard/{pk}/cache_dashboard_screenshot/": {
-      "post": {
+    "/api/v1/database/_info": {
+      "get": {
+        "description": "Get metadata information about this API resource",
         "parameters": [
           {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/DashboardScreenshotPostSchema"
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_info_schema"
+                }
               }
-            }
+            },
+            "in": "query",
+            "name": "q"
           }
-        },
+        ],
         "responses": {
-          "202": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/DashboardCacheScreenshotResponseSchema"
+                  "properties": {
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Dashboard async result"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -16217,8 +17527,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -16229,45 +17539,77 @@
             "jwt": []
           }
         ],
-        "summary": "Compute and cache a screenshot",
+        "summary": "Get metadata information about this API resource",
         "tags": [
-          "Dashboards"
+          "Database"
         ]
       }
     },
-    "/api/v1/dashboard/{pk}/favorites/": {
-      "delete": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
+    "/api/v1/database/available/": {
+      "get": {
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "type": "object"
-                    }
+                  "items": {
+                    "properties": {
+                      "available_drivers": {
+                        "description": "Installed drivers for the engine",
+                        "items": {
+                          "type": "string"
+                        },
+                        "type": "array"
+                      },
+                      "default_driver": {
+                        "description": "Default driver for the engine",
+                        "type": "string"
+                      },
+                      "engine": {
+                        "description": "Name of the SQLAlchemy engine",
+                        "type": "string"
+                      },
+                      "engine_information": {
+                        "description": "Dict with public properties form the DB Engine",
+                        "properties": {
+                          "disable_ssh_tunneling": {
+                            "description": "Whether the engine supports SSH Tunnels",
+                            "type": "boolean"
+                          },
+                          "supports_file_upload": {
+                            "description": "Whether the engine supports file uploads",
+                            "type": "boolean"
+                          }
+                        },
+                        "type": "object"
+                      },
+                      "name": {
+                        "description": "Name of the database",
+                        "type": "string"
+                      },
+                      "parameters": {
+                        "description": "JSON schema defining the needed parameters",
+                        "type": "object"
+                      },
+                      "preferred": {
+                        "description": "Is the database preferred?",
+                        "type": "boolean"
+                      },
+                      "sqlalchemy_uri_placeholder": {
+                        "description": "Example placeholder for the SQLAlchemy URI",
+                        "type": "string"
+                      }
+                    },
+                    "type": "object"
                   },
-                  "type": "object"
+                  "type": "array"
                 }
               }
             },
-            "description": "Dashboard removed from favorites"
-          },
-          "401": {
-            "$ref": "#/components/responses/401"
+            "description": "Database names"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -16278,37 +17620,38 @@
             "jwt": []
           }
         ],
-        "summary": "Remove the dashboard from the user favorite list",
+        "summary": "Get names of databases currently available",
         "tags": [
-          "Dashboards"
+          "Database"
         ]
-      },
-      "post": {
+      }
+    },
+    "/api/v1/database/export/": {
+      "get": {
         "parameters": [
           {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_export_ids_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
           "200": {
             "content": {
-              "application/json": {
+              "application/zip": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "type": "object"
-                    }
-                  },
-                  "type": "object"
+                  "format": "binary",
+                  "type": "string"
                 }
               }
             },
-            "description": "Dashboard added to favorites"
+            "description": "A zip file with database(s) and dataset(s) as YAML"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -16325,49 +17668,58 @@
             "jwt": []
           }
         ],
-        "summary": "Mark the dashboard as favorite for the current user",
+        "summary": "Download database(s) and associated dataset(s) as a zip file",
         "tags": [
-          "Dashboards"
+          "Database"
         ]
       }
     },
-    "/api/v1/dashboard/{pk}/filter_state": {
+    "/api/v1/database/import/": {
       "post": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "in": "query",
-            "name": "tab_id",
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
         "requestBody": {
           "content": {
-            "application/json": {
+            "multipart/form-data": {
               "schema": {
-                "$ref": "#/components/schemas/TemporaryCachePostSchema"
+                "properties": {
+                  "formData": {
+                    "description": "upload file (ZIP)",
+                    "format": "binary",
+                    "type": "string"
+                  },
+                  "overwrite": {
+                    "description": "overwrite existing databases?",
+                    "type": "boolean"
+                  },
+                  "passwords": {
+                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_passwords": {
+                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_key_passwords": {
+                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_keys": {
+                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
+                    "type": "string"
+                  }
+                },
+                "type": "object"
               }
             }
           },
           "required": true
         },
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "key": {
-                      "description": "The key to retrieve the value.",
+                    "message": {
                       "type": "string"
                     }
                   },
@@ -16375,7 +17727,7 @@
                 }
               }
             },
-            "description": "The value was stored successfully."
+            "description": "Database import result"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -16395,28 +17747,40 @@
             "jwt": []
           }
         ],
-        "summary": "Create a dashboard's filter state",
+        "summary": "Import database(s) with associated datasets",
         "tags": [
-          "Dashboard Filter State"
+          "Database"
         ]
       }
     },
-    "/api/v1/dashboard/{pk}/filter_state/{key}": {
-      "delete": {
+    "/api/v1/database/oauth2/": {
+      "get": {
+        "description": "-> Receive and store personal access tokens from OAuth for user-level authorization",
         "parameters": [
           {
-            "in": "path",
-            "name": "pk",
-            "required": true,
+            "in": "query",
+            "name": "state",
             "schema": {
-              "type": "integer"
+              "type": "string"
             }
           },
           {
-            "description": "The value key.",
-            "in": "path",
-            "name": "key",
-            "required": true,
+            "in": "query",
+            "name": "code",
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "in": "query",
+            "name": "scope",
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "in": "query",
+            "name": "error",
             "schema": {
               "type": "string"
             }
@@ -16425,32 +17789,20 @@
         "responses": {
           "200": {
             "content": {
-              "application/json": {
+              "text/html": {
                 "schema": {
-                  "properties": {
-                    "message": {
-                      "description": "The result of the operation",
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
+                  "type": "string"
                 }
               }
             },
-            "description": "Deleted the stored value."
+            "description": "A dummy self-closing HTML page"
           },
           "400": {
             "$ref": "#/components/responses/400"
           },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -16460,28 +17812,33 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a dashboard's filter state value",
+        "summary": "Receive personal access tokens from OAuth2",
         "tags": [
-          "Dashboard Filter State"
+          "Database"
         ]
-      },
+      }
+    },
+    "/api/v1/database/related/{column_name}": {
       "get": {
         "parameters": [
           {
             "in": "path",
-            "name": "pk",
+            "name": "column_name",
             "required": true,
             "schema": {
-              "type": "integer"
+              "type": "string"
             }
           },
           {
-            "in": "path",
-            "name": "key",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_related_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -16489,17 +17846,11 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "value": {
-                      "description": "The stored value",
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/RelatedResponseSchema"
                 }
               }
             },
-            "description": "Returns the stored value."
+            "description": "Related column data"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -16510,9 +17861,6 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -16522,45 +17870,23 @@
             "jwt": []
           }
         ],
-        "summary": "Get a dashboard's filter state value",
+        "summary": "Get related fields data",
         "tags": [
-          "Dashboard Filter State"
+          "Database"
         ]
-      },
-      "put": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "in": "path",
-            "name": "key",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "in": "query",
-            "name": "tab_id",
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
+      }
+    },
+    "/api/v1/database/test_connection/": {
+      "post": {
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/TemporaryCachePutSchema"
+                "$ref": "#/components/schemas/DatabaseTestConnectionSchema"
               }
             }
           },
+          "description": "Database schema",
           "required": true
         },
         "responses": {
@@ -16569,8 +17895,7 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "key": {
-                      "description": "The key to retrieve the value.",
+                    "message": {
                       "type": "string"
                     }
                   },
@@ -16578,17 +17903,11 @@
                 }
               }
             },
-            "description": "The value was stored successfully."
+            "description": "Database Test Connection"
           },
           "400": {
             "$ref": "#/components/responses/400"
           },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -16601,33 +17920,22 @@
             "jwt": []
           }
         ],
-        "summary": "Update a dashboard's filter state value",
+        "summary": "Test a database connection",
         "tags": [
-          "Dashboard Filter State"
+          "Database"
         ]
       }
     },
-    "/api/v1/dashboard/{pk}/filters": {
-      "put": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
+    "/api/v1/database/upload_metadata/": {
+      "post": {
         "requestBody": {
           "content": {
-            "application/json": {
+            "multipart/form-data": {
               "schema": {
-                "$ref": "#/components/schemas/DashboardNativeFiltersConfigUpdateSchema"
+                "$ref": "#/components/schemas/UploadFileMetadataPostSchema"
               }
             }
           },
-          "description": "Native filters configuration",
           "required": true
         },
         "responses": {
@@ -16637,14 +17945,14 @@
                 "schema": {
                   "properties": {
                     "result": {
-                      "type": "array"
+                      "$ref": "#/components/schemas/UploadFileMetadata"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dashboard native filters updated"
+            "description": "Upload response"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -16652,15 +17960,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -16670,46 +17972,32 @@
             "jwt": []
           }
         ],
-        "summary": "Update native filters configuration for a dashboard.",
+        "summary": "Upload a file and returns file metadata",
         "tags": [
-          "Dashboards"
+          "Database"
         ]
       }
     },
-    "/api/v1/dashboard/{pk}/permalink": {
+    "/api/v1/database/validate_parameters/": {
       "post": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          }
-        ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/DashboardPermalinkStateSchema"
+                "$ref": "#/components/schemas/DatabaseValidateParametersSchema"
               }
             }
           },
+          "description": "DB-specific parameters",
           "required": true
         },
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "key": {
-                      "description": "The key to retrieve the permanent link data.",
-                      "type": "string"
-                    },
-                    "url": {
-                      "description": "permanent link.",
+                    "message": {
                       "type": "string"
                     }
                   },
@@ -16717,14 +18005,11 @@
                 }
               }
             },
-            "description": "The permanent link was stored successfully."
+            "description": "Database Test Connection"
           },
           "400": {
             "$ref": "#/components/responses/400"
           },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -16737,14 +18022,14 @@
             "jwt": []
           }
         ],
-        "summary": "Create a new dashboard's permanent link",
+        "summary": "Validate database connection parameters",
         "tags": [
-          "Dashboard Permanent Link"
+          "Database"
         ]
       }
     },
-    "/api/v1/dashboard/{pk}/screenshot/{digest}/": {
-      "get": {
+    "/api/v1/database/{pk}": {
+      "delete": {
         "parameters": [
           {
             "in": "path",
@@ -16753,37 +18038,36 @@
             "schema": {
               "type": "integer"
             }
-          },
-          {
-            "in": "path",
-            "name": "digest",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
           }
         ],
         "responses": {
           "200": {
             "content": {
-              "image/*": {
+              "application/json": {
                 "schema": {
-                  "format": "binary",
-                  "type": "string"
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Dashboard thumbnail image"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Database deleted"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -16793,81 +18077,40 @@
             "jwt": []
           }
         ],
-        "summary": "Get a computed screenshot from cache",
+        "summary": "Delete a database",
         "tags": [
-          "Dashboards"
+          "Database"
         ]
-      }
-    },
-    "/api/v1/dashboard/{pk}/thumbnail/{digest}/": {
+      },
       "get": {
-        "description": "Computes async or get already computed dashboard thumbnail from cache.",
         "parameters": [
           {
+            "description": "The database id",
             "in": "path",
             "name": "pk",
             "required": true,
             "schema": {
               "type": "integer"
             }
-          },
-          {
-            "description": "A hex digest that makes this dashboard unique",
-            "in": "path",
-            "name": "digest",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/thumbnail_query_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
           }
         ],
         "responses": {
           "200": {
-            "content": {
-              "image/*": {
-                "schema": {
-                  "format": "binary",
-                  "type": "string"
-                }
-              }
-            },
-            "description": "Dashboard thumbnail image"
-          },
-          "202": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "message": {
-                      "type": "string"
-                    }
-                  },
                   "type": "object"
                 }
               }
             },
-            "description": "Thumbnail does not exist on cache, fired async to compute"
+            "description": "Database"
           },
-          "302": {
-            "description": "Redirects to the current digest"
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -16880,97 +18123,51 @@
             "jwt": []
           }
         ],
-        "summary": "Get dashboard's thumbnail",
+        "summary": "Get a database",
         "tags": [
-          "Dashboards"
+          "Database"
         ]
-      }
-    },
-    "/api/v1/database/": {
-      "get": {
-        "description": "Gets a list of databases, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
+      },
+      "put": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_list_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/DatabaseRestApi.put"
+              }
+            }
+          },
+          "description": "Database schema",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "count": {
-                      "description": "The total record count on the backend",
+                    "id": {
                       "type": "number"
                     },
-                    "description_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The description for the column name. Will be translated by babel",
-                          "example": "A Nice description for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "ids": {
-                      "description": "A list of item ids, useful when you don't know the column id",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "label_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The label for the column name. Will be translated by babel",
-                          "example": "A Nice label for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "list_columns": {
-                      "description": "A list of columns",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "list_title": {
-                      "description": "A title to render. Will be translated by babel",
-                      "example": "List Items",
-                      "type": "string"
-                    },
-                    "order_columns": {
-                      "description": "A list of allowed columns to sort",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
                     "result": {
-                      "description": "The result from the get list query",
-                      "items": {
-                        "$ref": "#/components/schemas/DatabaseRestApi.get_list"
-                      },
-                      "type": "array"
+                      "$ref": "#/components/schemas/DatabaseRestApi.put"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Items from Model"
+            "description": "Database changed"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -16978,6 +18175,12 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -16990,41 +18193,46 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of databases",
+        "summary": "Change a database",
         "tags": [
           "Database"
         ]
-      },
-      "post": {
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/DatabaseRestApi.post"
-              }
+      }
+    },
+    "/api/v1/database/{pk}/catalogs/": {
+      "get": {
+        "parameters": [
+          {
+            "description": "The database id",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
           },
-          "description": "Database schema",
-          "required": true
-        },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/database_catalogs_query_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "id": {
-                      "type": "number"
-                    },
-                    "result": {
-                      "$ref": "#/components/schemas/DatabaseRestApi.post"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/CatalogsResponseSchema"
                 }
               }
             },
-            "description": "Database added"
+            "description": "A List of all catalogs from the database"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -17044,26 +18252,23 @@
             "jwt": []
           }
         ],
-        "summary": "Create a new database",
+        "summary": "Get all catalogs from a database",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/_info": {
+    "/api/v1/database/{pk}/connection": {
       "get": {
-        "description": "Get metadata information about this API resource",
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_info_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "description": "The database id",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
         "responses": {
@@ -17071,47 +18276,11 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "add_columns": {
-                      "type": "object"
-                    },
-                    "edit_columns": {
-                      "type": "object"
-                    },
-                    "filters": {
-                      "properties": {
-                        "column_name": {
-                          "items": {
-                            "properties": {
-                              "name": {
-                                "description": "The filter name. Will be translated by babel",
-                                "type": "string"
-                              },
-                              "operator": {
-                                "description": "The filter operation key to use on list filters",
-                                "type": "string"
-                              }
-                            },
-                            "type": "object"
-                          },
-                          "type": "array"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "permissions": {
-                      "description": "The user permissions for this API resource",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/DatabaseConnectionSchema"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "Database with connection info"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -17131,77 +18300,40 @@
             "jwt": []
           }
         ],
-        "summary": "Get metadata information about this API resource",
+        "summary": "Get a database connection info",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/available/": {
+    "/api/v1/database/{pk}/function_names/": {
       "get": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "items": {
-                    "properties": {
-                      "available_drivers": {
-                        "description": "Installed drivers for the engine",
-                        "items": {
-                          "type": "string"
-                        },
-                        "type": "array"
-                      },
-                      "default_driver": {
-                        "description": "Default driver for the engine",
-                        "type": "string"
-                      },
-                      "engine": {
-                        "description": "Name of the SQLAlchemy engine",
-                        "type": "string"
-                      },
-                      "engine_information": {
-                        "description": "Dict with public properties form the DB Engine",
-                        "properties": {
-                          "disable_ssh_tunneling": {
-                            "description": "Whether the engine supports SSH Tunnels",
-                            "type": "boolean"
-                          },
-                          "supports_file_upload": {
-                            "description": "Whether the engine supports file uploads",
-                            "type": "boolean"
-                          }
-                        },
-                        "type": "object"
-                      },
-                      "name": {
-                        "description": "Name of the database",
-                        "type": "string"
-                      },
-                      "parameters": {
-                        "description": "JSON schema defining the needed parameters",
-                        "type": "object"
-                      },
-                      "preferred": {
-                        "description": "Is the database preferred?",
-                        "type": "boolean"
-                      },
-                      "sqlalchemy_uri_placeholder": {
-                        "description": "Example placeholder for the SQLAlchemy URI",
-                        "type": "string"
-                      }
-                    },
-                    "type": "object"
-                  },
-                  "type": "array"
+                  "$ref": "#/components/schemas/DatabaseFunctionNamesResponse"
                 }
               }
             },
-            "description": "Database names"
+            "description": "Query result"
           },
-          "400": {
-            "$ref": "#/components/responses/400"
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -17212,39 +18344,90 @@
             "jwt": []
           }
         ],
-        "summary": "Get names of databases currently available",
+        "summary": "Get function names supported by a database",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/columnar_metadata/": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "multipart/form-data": {
-              "schema": {
-                "$ref": "#/components/schemas/ColumnarMetadataUploadFilePostSchema"
+    "/api/v1/database/{pk}/related_objects/": {
+      "get": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/DatabaseRelatedObjectsResponse"
+                }
               }
+            },
+            "description": "Query result"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Get charts and dashboards count associated to a database",
+        "tags": [
+          "Database"
+        ]
+      }
+    },
+    "/api/v1/database/{pk}/schemas/": {
+      "get": {
+        "parameters": [
+          {
+            "description": "The database id",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
           },
-          "required": true
-        },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/database_schemas_query_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "$ref": "#/components/schemas/UploadFileMetadata"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/SchemasResponseSchema"
                 }
               }
             },
-            "description": "Columnar upload response"
+            "description": "A List of all schemas from the database"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -17264,42 +18447,34 @@
             "jwt": []
           }
         ],
-        "summary": "Upload a Columnar file and returns file metadata",
+        "summary": "Get all schemas from a database",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/csv_metadata/": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "multipart/form-data": {
-              "schema": {
-                "$ref": "#/components/schemas/CSVMetadataUploadFilePostSchema"
-              }
+    "/api/v1/database/{pk}/schemas_access_for_file_upload/": {
+      "get": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
-          },
-          "required": true
-        },
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "$ref": "#/components/schemas/UploadFileMetadata"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/DatabaseSchemaAccessForFileUploadResponse"
                 }
               }
             },
-            "description": "Columnar upload response"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "The list of the database schemas where to upload information"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -17316,39 +18491,53 @@
             "jwt": []
           }
         ],
-        "summary": "Upload an CSV file and returns file metadata",
+        "summary": "The list of the database schemas where to upload information",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/excel_metadata/": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "multipart/form-data": {
-              "schema": {
-                "$ref": "#/components/schemas/ExcelMetadataUploadFilePostSchema"
-              }
+    "/api/v1/database/{pk}/select_star/{table_name}/": {
+      "get": {
+        "parameters": [
+          {
+            "description": "The database id",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
           },
-          "required": true
-        },
+          {
+            "description": "Table name",
+            "in": "path",
+            "name": "table_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "Table schema",
+            "in": "path",
+            "name": "schema_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "$ref": "#/components/schemas/UploadFileMetadata"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/SelectStarResponseSchema"
                 }
               }
             },
-            "description": "Columnar upload response"
+            "description": "SQL statement for a select star for table"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -17359,6 +18548,9 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -17368,38 +18560,56 @@
             "jwt": []
           }
         ],
-        "summary": "Upload an Excel file and returns file metadata",
+        "summary": "Get database select star for table",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/export/": {
+    "/api/v1/database/{pk}/select_star/{table_name}/{schema_name}/": {
       "get": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_export_ids_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "description": "The database id",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "description": "Table name",
+            "in": "path",
+            "name": "table_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "Table schema",
+            "in": "path",
+            "name": "schema_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
           "200": {
             "content": {
-              "application/zip": {
+              "application/json": {
                 "schema": {
-                  "format": "binary",
-                  "type": "string"
+                  "$ref": "#/components/schemas/SelectStarResponseSchema"
                 }
               }
             },
-            "description": "A zip file with database(s) and dataset(s) as YAML"
+            "description": "SQL statement for a select star for table"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -17407,6 +18617,9 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -17416,51 +18629,24 @@
             "jwt": []
           }
         ],
-        "summary": "Download database(s) and associated dataset(s) as a zip file",
+        "summary": "Get database select star for table",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/import/": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "multipart/form-data": {
-              "schema": {
-                "properties": {
-                  "formData": {
-                    "description": "upload file (ZIP)",
-                    "format": "binary",
-                    "type": "string"
-                  },
-                  "overwrite": {
-                    "description": "overwrite existing databases?",
-                    "type": "boolean"
-                  },
-                  "passwords": {
-                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_passwords": {
-                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_key_passwords": {
-                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_keys": {
-                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
-                    "type": "string"
-                  }
-                },
-                "type": "object"
-              }
+    "/api/v1/database/{pk}/ssh_tunnel/": {
+      "delete": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
-          },
-          "required": true
-        },
+          }
+        ],
         "responses": {
           "200": {
             "content": {
@@ -17475,14 +18661,17 @@
                 }
               }
             },
-            "description": "Database import result"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "SSH Tunnel deleted"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -17495,59 +18684,47 @@
             "jwt": []
           }
         ],
-        "summary": "Import database(s) with associated datasets",
+        "summary": "Delete a SSH tunnel",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/oauth2/": {
-      "get": {
-        "description": "-> Receive and store personal access tokens from OAuth for user-level authorization",
+    "/api/v1/database/{pk}/sync_permissions/": {
+      "post": {
         "parameters": [
           {
-            "in": "query",
-            "name": "state",
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "in": "query",
-            "name": "code",
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "in": "query",
-            "name": "scope",
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "in": "query",
-            "name": "error",
+            "description": "The database connection ID",
+            "in": "path",
+            "name": "pk",
+            "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
           }
         ],
         "responses": {
           "200": {
             "content": {
-              "text/html": {
+              "application/json": {
                 "schema": {
-                  "type": "string"
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "A dummy self-closing HTML page"
+            "description": "Task created to sync permissions."
           },
           "400": {
             "$ref": "#/components/responses/400"
           },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -17560,33 +18737,41 @@
             "jwt": []
           }
         ],
-        "summary": "Receive personal access tokens from OAuth2",
+        "summary": "Re-sync all permissions for a database connection",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/related/{column_name}": {
+    "/api/v1/database/{pk}/table/{table_name}/{schema_name}/": {
       "get": {
         "parameters": [
           {
+            "description": "The database id",
             "in": "path",
-            "name": "column_name",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "description": "Table name",
+            "in": "path",
+            "name": "table_name",
             "required": true,
             "schema": {
               "type": "string"
             }
           },
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "description": "Table schema",
+            "in": "path",
+            "name": "schema_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17594,11 +18779,11 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/RelatedResponseSchema"
+                  "$ref": "#/components/schemas/TableMetadataResponseSchema"
                 }
               }
             },
-            "description": "Related column data"
+            "description": "Table metadata information"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -17609,6 +18794,9 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -17618,44 +18806,64 @@
             "jwt": []
           }
         ],
-        "summary": "Get related fields data",
+        "summary": "Get database table metadata",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/test_connection/": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/DatabaseTestConnectionSchema"
-              }
+    "/api/v1/database/{pk}/table_extra/{table_name}/{schema_name}/": {
+      "get": {
+        "description": "Response depends on each DB engine spec normally focused on partitions.",
+        "parameters": [
+          {
+            "description": "The database id",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
           },
-          "description": "Database schema",
-          "required": true
-        },
+          {
+            "description": "Table name",
+            "in": "path",
+            "name": "table_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "Table schema",
+            "in": "path",
+            "name": "schema_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "message": {
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/TableExtraMetadataResponseSchema"
                 }
               }
             },
-            "description": "Database Test Connection"
+            "description": "Table extra metadata information"
           },
           "400": {
             "$ref": "#/components/responses/400"
           },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -17668,46 +18876,67 @@
             "jwt": []
           }
         ],
-        "summary": "Test a database connection",
+        "summary": "Get table extra metadata",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/validate_parameters/": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/DatabaseValidateParametersSchema"
-              }
+    "/api/v1/database/{pk}/table_metadata/": {
+      "get": {
+        "description": "Metadata associated with the table (columns, indexes, etc.)",
+        "parameters": [
+          {
+            "description": "The database id",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
           },
-          "description": "DB-specific parameters",
-          "required": true
-        },
+          {
+            "description": "Table name",
+            "in": "query",
+            "name": "name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "Optional table schema, if not passed default schema will be used",
+            "in": "query",
+            "name": "schema",
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "Optional table catalog, if not passed default catalog will be used",
+            "in": "query",
+            "name": "catalog",
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "message": {
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/TableExtraMetadataResponseSchema"
                 }
               }
             },
-            "description": "Database Test Connection"
+            "description": "Table metadata information"
           },
-          "400": {
-            "$ref": "#/components/responses/400"
+          "401": {
+            "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "404": {
+            "$ref": "#/components/responses/404"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -17718,22 +18947,49 @@
             "jwt": []
           }
         ],
-        "summary": "Validate database connection parameters",
+        "summary": "Get table metadata",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/{pk}": {
-      "delete": {
+    "/api/v1/database/{pk}/table_metadata/extra/": {
+      "get": {
+        "description": "Extra metadata associated with the table (partitions, description, etc.)",
         "parameters": [
           {
+            "description": "The database id",
             "in": "path",
             "name": "pk",
             "required": true,
             "schema": {
               "type": "integer"
             }
+          },
+          {
+            "description": "Table name",
+            "in": "query",
+            "name": "name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "Optional table schema, if not passed the schema configured in the database will be used",
+            "in": "query",
+            "name": "schema",
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "Optional table catalog, if not passed the catalog configured in the database will be used",
+            "in": "query",
+            "name": "catalog",
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -17741,29 +18997,18 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "message": {
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/TableExtraMetadataResponseSchema"
                 }
               }
             },
-            "description": "Database deleted"
+            "description": "Table extra metadata information"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -17773,11 +19018,13 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a database",
+        "summary": "Get table extra metadata",
         "tags": [
           "Database"
         ]
-      },
+      }
+    },
+    "/api/v1/database/{pk}/tables/": {
       "get": {
         "parameters": [
           {
@@ -17788,6 +19035,17 @@
             "schema": {
               "type": "integer"
             }
+          },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/database_tables_query_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -17795,11 +19053,23 @@
             "content": {
               "application/json": {
                 "schema": {
+                  "properties": {
+                    "count": {
+                      "type": "integer"
+                    },
+                    "result": {
+                      "description": "A List of tables for given database",
+                      "items": {
+                        "$ref": "#/components/schemas/DatabaseTablesResponse"
+                      },
+                      "type": "array"
+                    }
+                  },
                   "type": "object"
                 }
               }
             },
-            "description": "Database"
+            "description": "Tables list"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -17807,6 +19077,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -17819,12 +19092,14 @@
             "jwt": []
           }
         ],
-        "summary": "Get a database",
+        "summary": "Get a list of tables for given database",
         "tags": [
           "Database"
         ]
-      },
-      "put": {
+      }
+    },
+    "/api/v1/database/{pk}/upload/": {
+      "post": {
         "parameters": [
           {
             "in": "path",
@@ -17837,33 +19112,29 @@
         ],
         "requestBody": {
           "content": {
-            "application/json": {
+            "multipart/form-data": {
               "schema": {
-                "$ref": "#/components/schemas/DatabaseRestApi.put"
+                "$ref": "#/components/schemas/UploadPostSchema"
               }
             }
           },
-          "description": "Database schema",
           "required": true
         },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
-                      "type": "number"
-                    },
-                    "result": {
-                      "$ref": "#/components/schemas/DatabaseRestApi.put"
+                    "message": {
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Database changed"
+            "description": "CSV upload response"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -17871,9 +19142,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -17889,46 +19157,55 @@
             "jwt": []
           }
         ],
-        "summary": "Change a database",
+        "summary": "Upload a file to a database table",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/{pk}/catalogs/": {
-      "get": {
+    "/api/v1/database/{pk}/validate_sql/": {
+      "post": {
+        "description": "Validates that arbitrary SQL is acceptable for the given database.",
         "parameters": [
           {
-            "description": "The database id",
             "in": "path",
             "name": "pk",
             "required": true,
             "schema": {
               "type": "integer"
             }
-          },
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/database_catalogs_query_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/ValidateSQLRequest"
+              }
+            }
+          },
+          "description": "Validate SQL request",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/CatalogsResponseSchema"
+                  "properties": {
+                    "result": {
+                      "description": "A List of SQL errors found on the statement",
+                      "items": {
+                        "$ref": "#/components/schemas/ValidateSQLResponse"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "A List of all catalogs from the database"
+            "description": "Validation result"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -17948,36 +19225,29 @@
             "jwt": []
           }
         ],
-        "summary": "Get all catalogs from a database",
+        "summary": "Validate arbitrary SQL",
         "tags": [
           "Database"
         ]
       }
     },
-    "/api/v1/database/{pk}/columnar_upload/": {
-      "post": {
+    "/api/v1/dataset/": {
+      "delete": {
         "parameters": [
           {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_delete_ids_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
-        "requestBody": {
-          "content": {
-            "multipart/form-data": {
-              "schema": {
-                "$ref": "#/components/schemas/ColumnarUploadPostSchema"
-              }
-            }
-          },
-          "required": true
-        },
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
@@ -17990,7 +19260,7 @@
                 }
               }
             },
-            "description": "Columnar upload response"
+            "description": "Dataset bulk delete"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -17998,6 +19268,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -18013,23 +19286,24 @@
             "jwt": []
           }
         ],
-        "summary": "Upload a Columnar file to a database table",
+        "summary": "Bulk delete datasets",
         "tags": [
-          "Database"
+          "Datasets"
         ]
-      }
-    },
-    "/api/v1/database/{pk}/connection": {
+      },
       "get": {
+        "description": "Gets a list of datasets, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
         "parameters": [
           {
-            "description": "The database id",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_list_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -18037,11 +19311,70 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/DatabaseConnectionSchema"
+                  "properties": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "list_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "list_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "List Items",
+                      "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/DatasetRestApi.get_list"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Database with connection info"
+            "description": "Items from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -18061,32 +19394,21 @@
             "jwt": []
           }
         ],
-        "summary": "Get a database connection info",
+        "summary": "Get a list of datasets",
         "tags": [
-          "Database"
+          "Datasets"
         ]
-      }
-    },
-    "/api/v1/database/{pk}/csv_upload/": {
+      },
       "post": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
         "requestBody": {
           "content": {
-            "multipart/form-data": {
+            "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/CSVUploadPostSchema"
+                "$ref": "#/components/schemas/DatasetRestApi.post"
               }
             }
           },
+          "description": "Dataset schema",
           "required": true
         },
         "responses": {
@@ -18095,15 +19417,18 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "id": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/DatasetRestApi.post"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "CSV upload response"
+            "description": "Dataset added"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -18111,9 +19436,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -18126,49 +19448,74 @@
             "jwt": []
           }
         ],
-        "summary": "Upload a CSV file to a database table",
+        "summary": "Create a new dataset",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/excel_upload/": {
-      "post": {
+    "/api/v1/dataset/_info": {
+      "get": {
+        "description": "Get metadata information about this API resource",
         "parameters": [
           {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_info_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
-        "requestBody": {
-          "content": {
-            "multipart/form-data": {
-              "schema": {
-                "$ref": "#/components/schemas/ExcelUploadPostSchema"
-              }
-            }
-          },
-          "required": true
-        },
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Excel upload response"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -18176,9 +19523,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -18191,22 +19535,33 @@
             "jwt": []
           }
         ],
-        "summary": "Upload an Excel file to a database table",
+        "summary": "Get metadata information about this API resource",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/function_names/": {
+    "/api/v1/dataset/distinct/{column_name}": {
       "get": {
         "parameters": [
           {
             "in": "path",
-            "name": "pk",
+            "name": "column_name",
             "required": true,
             "schema": {
-              "type": "integer"
+              "type": "string"
             }
+          },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_related_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -18214,11 +19569,14 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/DatabaseFunctionNamesResponse"
+                  "$ref": "#/components/schemas/DistincResponseSchema"
                 }
               }
             },
-            "description": "Query result"
+            "description": "Distinct field data"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -18235,41 +19593,59 @@
             "jwt": []
           }
         ],
-        "summary": "Get function names supported by a database",
+        "summary": "Get distinct values from field data",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/related_objects/": {
-      "get": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
+    "/api/v1/dataset/duplicate": {
+      "post": {
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/DatasetDuplicateSchema"
+              }
             }
-          }
-        ],
+          },
+          "description": "Dataset schema",
+          "required": true
+        },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/DatabaseRelatedObjectsResponse"
+                  "properties": {
+                    "id": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/DatasetDuplicateSchema"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Query result"
+            "description": "Dataset duplicated"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -18279,29 +19655,20 @@
             "jwt": []
           }
         ],
-        "summary": "Get charts and dashboards count associated to a database",
+        "summary": "Duplicate a dataset",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/schemas/": {
+    "/api/v1/dataset/export/": {
       "get": {
         "parameters": [
-          {
-            "description": "The database id",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/database_schemas_query_schema"
+                  "$ref": "#/components/schemas/get_export_ids_schema"
                 }
               }
             },
@@ -18312,13 +19679,13 @@
         "responses": {
           "200": {
             "content": {
-              "application/json": {
+              "text/plain": {
                 "schema": {
-                  "$ref": "#/components/schemas/SchemasResponseSchema"
+                  "type": "string"
                 }
               }
             },
-            "description": "A List of all schemas from the database"
+            "description": "Dataset export"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -18338,40 +19705,53 @@
             "jwt": []
           }
         ],
-        "summary": "Get all schemas from a database",
+        "summary": "Download multiple datasets as YAML files",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/schemas_access_for_file_upload/": {
-      "get": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
+    "/api/v1/dataset/get_or_create/": {
+      "post": {
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/GetOrCreateDatasetSchema"
+              }
             }
-          }
-        ],
+          },
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/DatabaseSchemaAccessForFileUploadResponse"
+                  "properties": {
+                    "result": {
+                      "properties": {
+                        "table_id": {
+                          "type": "integer"
+                        }
+                      },
+                      "type": "object"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "The list of the database schemas where to upload information"
+            "description": "The ID of the table"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -18382,53 +19762,74 @@
             "jwt": []
           }
         ],
-        "summary": "The list of the database schemas where to upload information",
+        "summary": "Retrieve a table by name, or create it if it does not exist",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/select_star/{table_name}/": {
-      "get": {
-        "parameters": [
-          {
-            "description": "The database id",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "description": "Table name",
-            "in": "path",
-            "name": "table_name",
-            "required": true,
-            "schema": {
-              "type": "string"
+    "/api/v1/dataset/import/": {
+      "post": {
+        "requestBody": {
+          "content": {
+            "multipart/form-data": {
+              "schema": {
+                "properties": {
+                  "formData": {
+                    "description": "upload file (ZIP or YAML)",
+                    "format": "binary",
+                    "type": "string"
+                  },
+                  "overwrite": {
+                    "description": "overwrite existing datasets?",
+                    "type": "boolean"
+                  },
+                  "passwords": {
+                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_passwords": {
+                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_key_passwords": {
+                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_keys": {
+                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
+                    "type": "string"
+                  },
+                  "sync_columns": {
+                    "description": "sync columns?",
+                    "type": "boolean"
+                  },
+                  "sync_metrics": {
+                    "description": "sync metrics?",
+                    "type": "boolean"
+                  }
+                },
+                "type": "object"
+              }
             }
           },
-          {
-            "description": "Table schema",
-            "in": "path",
-            "name": "schema_name",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          }
-        ],
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/SelectStarResponseSchema"
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "SQL statement for a select star for table"
+            "description": "Dataset import result"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -18436,9 +19837,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -18451,41 +19849,33 @@
             "jwt": []
           }
         ],
-        "summary": "Get database select star for table",
+        "summary": "Import dataset(s) with associated databases",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/select_star/{table_name}/{schema_name}/": {
+    "/api/v1/dataset/related/{column_name}": {
       "get": {
         "parameters": [
           {
-            "description": "The database id",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "description": "Table name",
             "in": "path",
-            "name": "table_name",
+            "name": "column_name",
             "required": true,
             "schema": {
               "type": "string"
             }
           },
           {
-            "description": "Table schema",
-            "in": "path",
-            "name": "schema_name",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_related_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -18493,11 +19883,11 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/SelectStarResponseSchema"
+                  "$ref": "#/components/schemas/RelatedResponseSchema"
                 }
               }
             },
-            "description": "SQL statement for a select star for table"
+            "description": "Related column data"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -18508,9 +19898,6 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -18520,52 +19907,43 @@
             "jwt": []
           }
         ],
-        "summary": "Get database select star for table",
+        "summary": "Get related fields data",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/ssh_tunnel/": {
-      "delete": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
+    "/api/v1/dataset/warm_up_cache": {
+      "put": {
+        "description": "Warms up the cache for the table. Note for slices a force refresh occurs. In terms of the `extra_filters` these can be obtained from records in the JSON encoded `logs.json` column associated with the `explore_json` action.",
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/DatasetCacheWarmUpRequestSchema"
+              }
             }
-          }
-        ],
+          },
+          "description": "Identifies the database and table to warm up cache for, and any additional dashboard or filter context to use.",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "message": {
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/DatasetCacheWarmUpResponseSchema"
                 }
               }
             },
-            "description": "SSH Tunnel deleted"
-          },
-          "401": {
-            "$ref": "#/components/responses/401"
+            "description": "Each chart's warmup status"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -18575,41 +19953,22 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a SSH tunnel",
+        "summary": "Warm up the cache for each chart powered by the given table",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/table/{table_name}/{schema_name}/": {
-      "get": {
+    "/api/v1/dataset/{pk}": {
+      "delete": {
         "parameters": [
           {
-            "description": "The database id",
             "in": "path",
             "name": "pk",
             "required": true,
             "schema": {
               "type": "integer"
             }
-          },
-          {
-            "description": "Table name",
-            "in": "path",
-            "name": "table_name",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "description": "Table schema",
-            "in": "path",
-            "name": "schema_name",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
           }
         ],
         "responses": {
@@ -18617,18 +19976,23 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/TableMetadataResponseSchema"
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Table metadata information"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Dataset delete"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -18644,18 +20008,16 @@
             "jwt": []
           }
         ],
-        "summary": "Get database table metadata",
+        "summary": "Delete a dataset",
         "tags": [
-          "Database"
+          "Datasets"
         ]
-      }
-    },
-    "/api/v1/database/{pk}/table_extra/{table_name}/{schema_name}/": {
+      },
       "get": {
-        "description": "Response depends on each DB engine spec normally focused on partitions.",
+        "description": "Get a dataset by ID",
         "parameters": [
           {
-            "description": "The database id",
+            "description": "The dataset ID",
             "in": "path",
             "name": "pk",
             "required": true,
@@ -18664,21 +20026,22 @@
             }
           },
           {
-            "description": "Table name",
-            "in": "path",
-            "name": "table_name",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_item_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           },
           {
-            "description": "Table schema",
-            "in": "path",
-            "name": "schema_name",
-            "required": true,
+            "description": "Should Jinja macros from sql, metrics and columns be rendered and included in the response",
+            "in": "query",
+            "name": "include_rendered_sql",
             "schema": {
-              "type": "string"
+              "type": "boolean"
             }
           }
         ],
@@ -18687,11 +20050,20 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/TableExtraMetadataResponseSchema"
+                  "properties": {
+                    "id": {
+                      "description": "The item id",
+                      "type": "string"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/DatasetRestApi.get"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Table extra metadata information"
+            "description": "Dataset object has been returned."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -18699,9 +20071,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -18714,18 +20083,14 @@
             "jwt": []
           }
         ],
-        "summary": "Get table extra metadata",
+        "summary": "Get a dataset",
         "tags": [
-          "Database"
+          "Datasets"
         ]
-      }
-    },
-    "/api/v1/database/{pk}/table_metadata/": {
-      "get": {
-        "description": "Metadata associated with the table (columns, indexes, etc.)",
+      },
+      "put": {
         "parameters": [
           {
-            "description": "The database id",
             "in": "path",
             "name": "pk",
             "required": true,
@@ -18734,48 +20099,58 @@
             }
           },
           {
-            "description": "Table name",
-            "in": "query",
-            "name": "name",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "description": "Optional table schema, if not passed default schema will be used",
-            "in": "query",
-            "name": "schema",
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "description": "Optional table catalog, if not passed default catalog will be used",
             "in": "query",
-            "name": "catalog",
+            "name": "override_columns",
             "schema": {
-              "type": "string"
+              "type": "boolean"
             }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/DatasetRestApi.put"
+              }
+            }
+          },
+          "description": "Dataset schema",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/TableExtraMetadataResponseSchema"
+                  "properties": {
+                    "id": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/DatasetRestApi.put"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Table metadata information"
+            "description": "Dataset changed"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -18785,18 +20160,17 @@
             "jwt": []
           }
         ],
-        "summary": "Get table metadata",
+        "summary": "Update a dataset",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/table_metadata/extra/": {
-      "get": {
-        "description": "Extra metadata associated with the table (partitions, description, etc.)",
+    "/api/v1/dataset/{pk}/column/{column_id}": {
+      "delete": {
         "parameters": [
           {
-            "description": "The database id",
+            "description": "The dataset pk for this column",
             "in": "path",
             "name": "pk",
             "required": true,
@@ -18805,28 +20179,12 @@
             }
           },
           {
-            "description": "Table name",
-            "in": "query",
-            "name": "name",
+            "description": "The column id for this dataset",
+            "in": "path",
+            "name": "column_id",
             "required": true,
             "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "description": "Optional table schema, if not passed the schema configured in the database will be used",
-            "in": "query",
-            "name": "schema",
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "description": "Optional table catalog, if not passed the catalog configured in the database will be used",
-            "in": "query",
-            "name": "catalog",
-            "schema": {
-              "type": "string"
+              "type": "integer"
             }
           }
         ],
@@ -18835,18 +20193,29 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/TableExtraMetadataResponseSchema"
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Table extra metadata information"
+            "description": "Column deleted"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -18856,17 +20225,17 @@
             "jwt": []
           }
         ],
-        "summary": "Get table extra metadata",
+        "summary": "Delete a dataset column",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/tables/": {
-      "get": {
+    "/api/v1/dataset/{pk}/metric/{metric_id}": {
+      "delete": {
         "parameters": [
           {
-            "description": "The database id",
+            "description": "The dataset pk for this column",
             "in": "path",
             "name": "pk",
             "required": true,
@@ -18875,15 +20244,13 @@
             }
           },
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/database_tables_query_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "description": "The metric id for this dataset",
+            "in": "path",
+            "name": "metric_id",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
         "responses": {
@@ -18892,29 +20259,22 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "count": {
-                      "type": "integer"
-                    },
-                    "result": {
-                      "description": "A List of tables for given database",
-                      "items": {
-                        "$ref": "#/components/schemas/DatabaseTablesResponse"
-                      },
-                      "type": "array"
+                    "message": {
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Tables list"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Metric deleted"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -18930,15 +20290,14 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of tables for given database",
+        "summary": "Delete a dataset metric",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/database/{pk}/validate_sql/": {
-      "post": {
-        "description": "Validates that arbitrary SQL is acceptable for the given database.",
+    "/api/v1/dataset/{pk}/refresh": {
+      "put": {
         "parameters": [
           {
             "in": "path",
@@ -18949,46 +20308,34 @@
             }
           }
         ],
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/ValidateSQLRequest"
-              }
-            }
-          },
-          "description": "Validate SQL request",
-          "required": true
-        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "result": {
-                      "description": "A List of SQL errors found on the statement",
-                      "items": {
-                        "$ref": "#/components/schemas/ValidateSQLResponse"
-                      },
-                      "type": "array"
+                    "message": {
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Validation result"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Dataset delete"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -18998,25 +20345,22 @@
             "jwt": []
           }
         ],
-        "summary": "Validate arbitrary SQL",
+        "summary": "Refresh and update columns of a dataset",
         "tags": [
-          "Database"
+          "Datasets"
         ]
       }
     },
-    "/api/v1/dataset/": {
-      "delete": {
+    "/api/v1/dataset/{pk}/related_objects": {
+      "get": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_delete_ids_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
         "responses": {
@@ -19024,32 +20368,18 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "message": {
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/DatasetRelatedObjectsResponse"
                 }
               }
             },
-            "description": "Dataset bulk delete"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Query result"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -19059,86 +20389,68 @@
             "jwt": []
           }
         ],
-        "summary": "Bulk delete datasets",
+        "summary": "Get charts and dashboards count associated to a dataset",
         "tags": [
           "Datasets"
         ]
-      },
-      "get": {
-        "description": "Gets a list of datasets, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
-        "parameters": [
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_list_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
-          }
-        ],
-        "responses": {
-          "200": {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "properties": {
-                    "count": {
-                      "description": "The total record count on the backend",
-                      "type": "number"
-                    },
-                    "description_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The description for the column name. Will be translated by babel",
-                          "example": "A Nice description for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "ids": {
-                      "description": "A list of item ids, useful when you don't know the column id",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "label_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The label for the column name. Will be translated by babel",
-                          "example": "A Nice label for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "list_columns": {
-                      "description": "A list of columns",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "list_title": {
-                      "description": "A title to render. Will be translated by babel",
-                      "example": "List Items",
-                      "type": "string"
-                    },
-                    "order_columns": {
-                      "description": "A list of allowed columns to sort",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
+      }
+    },
+    "/api/v1/datasource/{datasource_type}/{datasource_id}/column/{column_name}/values/": {
+      "get": {
+        "parameters": [
+          {
+            "description": "The type of datasource",
+            "in": "path",
+            "name": "datasource_type",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "The id of the datasource",
+            "in": "path",
+            "name": "datasource_id",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "description": "The name of the column to get values for",
+            "in": "path",
+            "name": "column_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
                     "result": {
-                      "description": "The result from the get list query",
                       "items": {
-                        "$ref": "#/components/schemas/DatasetRestApi.get_list"
+                        "oneOf": [
+                          {
+                            "type": "string"
+                          },
+                          {
+                            "type": "integer"
+                          },
+                          {
+                            "type": "number"
+                          },
+                          {
+                            "type": "boolean"
+                          },
+                          {
+                            "type": "object"
+                          }
+                        ]
                       },
                       "type": "array"
                     }
@@ -19147,7 +20459,7 @@
                 }
               }
             },
-            "description": "Items from Model"
+            "description": "A List of distinct values for the column"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -19155,8 +20467,11 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -19167,50 +20482,91 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of datasets",
+        "summary": "Get possible values for a datasource column",
         "tags": [
-          "Datasets"
+          "Datasources"
         ]
-      },
-      "post": {
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/DatasetRestApi.post"
-              }
+      }
+    },
+    "/api/v1/embedded_dashboard/{uuid}": {
+      "get": {
+        "parameters": [
+          {
+            "description": "The embedded configuration uuid",
+            "in": "path",
+            "name": "uuid",
+            "required": true,
+            "schema": {
+              "type": "string"
             }
           },
-          "description": "Dataset schema",
-          "required": true
-        },
+          {
+            "description": "The ui config of embedded dashboard (optional).",
+            "in": "query",
+            "name": "uiConfig",
+            "schema": {
+              "type": "number"
+            }
+          },
+          {
+            "description": "Show filters (optional).",
+            "in": "query",
+            "name": "show_filters",
+            "schema": {
+              "type": "boolean"
+            }
+          },
+          {
+            "description": "Expand filters (optional).",
+            "in": "query",
+            "name": "expand_filters",
+            "schema": {
+              "type": "boolean"
+            }
+          },
+          {
+            "description": "Native filters key to apply filters. (optional).",
+            "in": "query",
+            "name": "native_filters_key",
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "description": "Permalink key to apply filters. (optional).",
+            "in": "query",
+            "name": "permalink_key",
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
-                      "type": "number"
-                    },
                     "result": {
-                      "$ref": "#/components/schemas/DatasetRestApi.post"
+                      "$ref": "#/components/schemas/EmbeddedDashboardResponseSchema"
                     }
                   },
                   "type": "object"
                 }
+              },
+              "text/html": {
+                "schema": {
+                  "type": "string"
+                }
               }
             },
-            "description": "Dataset added"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Result contains the embedded dashboard configuration"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "404": {
+            "$ref": "#/components/responses/404"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -19221,26 +20577,50 @@
             "jwt": []
           }
         ],
-        "summary": "Create a new dataset",
+        "summary": "Get a report schedule log",
         "tags": [
-          "Datasets"
+          "Embedded Dashboard"
         ]
       }
     },
-    "/api/v1/dataset/_info": {
+    "/api/v1/explore/": {
       "get": {
-        "description": "Get metadata information about this API resource",
+        "description": "Assembles Explore related information (form_data, slice, dataset) in a single endpoint.<br/><br/> The information can be assembled from:<br/> - The cache using a form_data_key<br/> - The metadata database using a permalink_key<br/> - Build from scratch using dataset or slice identifiers.",
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_info_schema"
-                }
-              }
-            },
             "in": "query",
-            "name": "q"
+            "name": "form_data_key",
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "in": "query",
+            "name": "permalink_key",
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
+            "in": "query",
+            "name": "slice_id",
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "in": "query",
+            "name": "datasource_id",
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "in": "query",
+            "name": "datasource_type",
+            "schema": {
+              "type": "string"
+            }
           }
         ],
         "responses": {
@@ -19248,47 +20628,76 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "add_columns": {
-                      "type": "object"
-                    },
-                    "edit_columns": {
-                      "type": "object"
-                    },
-                    "filters": {
-                      "properties": {
-                        "column_name": {
-                          "items": {
-                            "properties": {
-                              "name": {
-                                "description": "The filter name. Will be translated by babel",
-                                "type": "string"
-                              },
-                              "operator": {
-                                "description": "The filter operation key to use on list filters",
-                                "type": "string"
-                              }
-                            },
-                            "type": "object"
-                          },
-                          "type": "array"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "permissions": {
-                      "description": "The user permissions for this API resource",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
+                  "$ref": "#/components/schemas/ExploreContextSchema"
+                }
+              }
+            },
+            "description": "Returns the initial context."
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Assemble Explore related information in a single endpoint",
+        "tags": [
+          "Explore"
+        ]
+      }
+    },
+    "/api/v1/explore/form_data": {
+      "post": {
+        "parameters": [
+          {
+            "in": "query",
+            "name": "tab_id",
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/FormDataPostSchema"
+              }
+            }
+          },
+          "required": true
+        },
+        "responses": {
+          "201": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "key": {
+                      "description": "The key to retrieve the form_data.",
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "The form_data was stored successfully."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -19308,33 +20717,23 @@
             "jwt": []
           }
         ],
-        "summary": "Get metadata information about this API resource",
+        "summary": "Create a new form_data",
         "tags": [
-          "Datasets"
+          "Explore Form Data"
         ]
       }
     },
-    "/api/v1/dataset/distinct/{column_name}": {
-      "get": {
+    "/api/v1/explore/form_data/{key}": {
+      "delete": {
         "parameters": [
           {
+            "description": "The form_data key.",
             "in": "path",
-            "name": "column_name",
+            "name": "key",
             "required": true,
             "schema": {
               "type": "string"
             }
-          },
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
           }
         ],
         "responses": {
@@ -19342,11 +20741,17 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/DistincResponseSchema"
+                  "properties": {
+                    "message": {
+                      "description": "The result of the operation",
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Distinct field data"
+            "description": "Deleted the stored form_data."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -19357,6 +20762,9 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -19366,43 +20774,38 @@
             "jwt": []
           }
         ],
-        "summary": "Get distinct values from field data",
+        "summary": "Delete a form_data",
         "tags": [
-          "Datasets"
+          "Explore Form Data"
         ]
-      }
-    },
-    "/api/v1/dataset/duplicate": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/DatasetDuplicateSchema"
-              }
+      },
+      "get": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "key",
+            "required": true,
+            "schema": {
+              "type": "string"
             }
-          },
-          "description": "Dataset schema",
-          "required": true
-        },
+          }
+        ],
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
-                      "type": "number"
-                    },
-                    "result": {
-                      "$ref": "#/components/schemas/DatasetDuplicateSchema"
+                    "form_data": {
+                      "description": "The stored form_data",
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dataset duplicated"
+            "description": "Returns the stored form_data."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -19410,9 +20813,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -19428,37 +20828,55 @@
             "jwt": []
           }
         ],
-        "summary": "Duplicate a dataset",
+        "summary": "Get a form_data",
         "tags": [
-          "Datasets"
+          "Explore Form Data"
         ]
-      }
-    },
-    "/api/v1/dataset/export/": {
-      "get": {
+      },
+      "put": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_export_ids_schema"
-                }
-              }
-            },
+            "in": "path",
+            "name": "key",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          },
+          {
             "in": "query",
-            "name": "q"
+            "name": "tab_id",
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/FormDataPutSchema"
+              }
+            }
+          },
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
-              "text/plain": {
+              "application/json": {
                 "schema": {
-                  "type": "string"
+                  "properties": {
+                    "key": {
+                      "description": "The key to retrieve the form_data.",
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Dataset export"
+            "description": "The form_data was stored successfully."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -19469,6 +20887,9 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -19478,44 +20899,44 @@
             "jwt": []
           }
         ],
-        "summary": "Download multiple datasets as YAML files",
+        "summary": "Update an existing form_data",
         "tags": [
-          "Datasets"
+          "Explore Form Data"
         ]
       }
     },
-    "/api/v1/dataset/get_or_create/": {
+    "/api/v1/explore/permalink": {
       "post": {
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/GetOrCreateDatasetSchema"
+                "$ref": "#/components/schemas/ExplorePermalinkStateSchema"
               }
             }
           },
           "required": true
         },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "result": {
-                      "properties": {
-                        "table_id": {
-                          "type": "integer"
-                        }
-                      },
-                      "type": "object"
+                    "key": {
+                      "description": "The key to retrieve the permanent link data.",
+                      "type": "string"
+                    },
+                    "url": {
+                      "description": "permanent link.",
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "The ID of the table"
+            "description": "The permanent link was stored successfully."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -19535,74 +20956,40 @@
             "jwt": []
           }
         ],
-        "summary": "Retrieve a table by name, or create it if it does not exist",
+        "summary": "Create a new permanent link",
         "tags": [
-          "Datasets"
+          "Explore Permanent Link"
         ]
       }
     },
-    "/api/v1/dataset/import/": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "multipart/form-data": {
-              "schema": {
-                "properties": {
-                  "formData": {
-                    "description": "upload file (ZIP or YAML)",
-                    "format": "binary",
-                    "type": "string"
-                  },
-                  "overwrite": {
-                    "description": "overwrite existing datasets?",
-                    "type": "boolean"
-                  },
-                  "passwords": {
-                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_passwords": {
-                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_key_passwords": {
-                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_keys": {
-                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
-                    "type": "string"
-                  },
-                  "sync_columns": {
-                    "description": "sync columns?",
-                    "type": "boolean"
-                  },
-                  "sync_metrics": {
-                    "description": "sync metrics?",
-                    "type": "boolean"
-                  }
-                },
-                "type": "object"
-              }
-            }
-          },
-          "required": true
-        },
+    "/api/v1/explore/permalink/{key}": {
+      "get": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "key",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "state": {
+                      "description": "The stored state",
+                      "type": "object"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dataset import result"
+            "description": "Returns the stored form_data."
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -19610,6 +20997,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -19622,28 +21012,21 @@
             "jwt": []
           }
         ],
-        "summary": "Import dataset(s) with associated databases",
+        "summary": "Get chart's permanent link state",
         "tags": [
-          "Datasets"
+          "Explore Permanent Link"
         ]
       }
     },
-    "/api/v1/dataset/related/{column_name}": {
+    "/api/v1/log/": {
       "get": {
+        "description": "Gets a list of logs, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
         "parameters": [
-          {
-            "in": "path",
-            "name": "column_name",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
+                  "$ref": "#/components/schemas/get_list_schema"
                 }
               }
             },
@@ -19656,11 +21039,70 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/RelatedResponseSchema"
+                  "properties": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "list_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "list_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "List Items",
+                      "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/LogRestApi.get_list"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Related column data"
+            "description": "Items from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -19668,8 +21110,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -19680,95 +21122,48 @@
             "jwt": []
           }
         ],
-        "summary": "Get related fields data",
+        "summary": "Get a list of logs",
         "tags": [
-          "Datasets"
+          "LogRestApi"
         ]
-      }
-    },
-    "/api/v1/dataset/warm_up_cache": {
-      "put": {
-        "description": "Warms up the cache for the table. Note for slices a force refresh occurs. In terms of the `extra_filters` these can be obtained from records in the JSON encoded `logs.json` column associated with the `explore_json` action.",
+      },
+      "post": {
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/DatasetCacheWarmUpRequestSchema"
+                "$ref": "#/components/schemas/LogRestApi.post"
               }
             }
           },
-          "description": "Identifies the database and table to warm up cache for, and any additional dashboard or filter context to use.",
+          "description": "Model schema",
           "required": true
         },
         "responses": {
-          "200": {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/DatasetCacheWarmUpResponseSchema"
-                }
-              }
-            },
-            "description": "Each chart's warmup status"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
-          "500": {
-            "$ref": "#/components/responses/500"
-          }
-        },
-        "security": [
-          {
-            "jwt": []
-          }
-        ],
-        "summary": "Warm up the cache for each chart powered by the given table",
-        "tags": [
-          "Datasets"
-        ]
-      }
-    },
-    "/api/v1/dataset/{pk}": {
-      "delete": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
-        "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
+                    "id": {
                       "type": "string"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/LogRestApi.post"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dataset delete"
+            "description": "Item inserted"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -19781,18 +21176,18 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a dataset",
         "tags": [
-          "Datasets"
+          "LogRestApi"
         ]
-      },
+      }
+    },
+    "/api/v1/log/recent_activity/": {
       "get": {
-        "description": "Get a dataset by ID",
         "parameters": [
           {
-            "description": "The dataset ID",
+            "description": "The id of the user",
             "in": "path",
-            "name": "pk",
+            "name": "user_id",
             "required": true,
             "schema": {
               "type": "integer"
@@ -19802,20 +21197,12 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_item_schema"
+                  "$ref": "#/components/schemas/get_recent_activity_schema"
                 }
               }
             },
             "in": "query",
             "name": "q"
-          },
-          {
-            "description": "Should Jinja macros from sql, metrics and columns be rendered and included in the response",
-            "in": "query",
-            "name": "include_rendered_sql",
-            "schema": {
-              "type": "boolean"
-            }
           }
         ],
         "responses": {
@@ -19823,20 +21210,11 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "id": {
-                      "description": "The item id",
-                      "type": "string"
-                    },
-                    "result": {
-                      "$ref": "#/components/schemas/DatasetRestApi.get"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/RecentActivityResponseSchema"
                 }
               }
             },
-            "description": "Dataset object has been returned."
+            "description": "A List of recent activity objects"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -19844,8 +21222,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "403": {
+            "$ref": "#/components/responses/403"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -19856,12 +21234,15 @@
             "jwt": []
           }
         ],
-        "summary": "Get a dataset",
+        "summary": "Get recent activity data for a user",
         "tags": [
-          "Datasets"
+          "LogRestApi"
         ]
-      },
-      "put": {
+      }
+    },
+    "/api/v1/log/{pk}": {
+      "get": {
+        "description": "Get an item model",
         "parameters": [
           {
             "in": "path",
@@ -19872,42 +21253,68 @@
             }
           },
           {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_item_schema"
+                }
+              }
+            },
             "in": "query",
-            "name": "override_columns",
-            "schema": {
-              "type": "boolean"
-            }
+            "name": "q"
           }
         ],
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/DatasetRestApi.put"
-              }
-            }
-          },
-          "description": "Dataset schema",
-          "required": true
-        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
                     "id": {
-                      "type": "number"
+                      "description": "The item id",
+                      "type": "string"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
                     },
                     "result": {
-                      "$ref": "#/components/schemas/DatasetRestApi.put"
+                      "$ref": "#/components/schemas/LogRestApi.get"
+                    },
+                    "show_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "show_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "Show Item Details",
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dataset changed"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -19915,9 +21322,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -19933,129 +21337,119 @@
             "jwt": []
           }
         ],
-        "summary": "Update a dataset",
+        "summary": "Get a log detail information",
         "tags": [
-          "Datasets"
+          "LogRestApi"
         ]
       }
     },
-    "/api/v1/dataset/{pk}/column/{column_id}": {
-      "delete": {
-        "parameters": [
-          {
-            "description": "The dataset pk for this column",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "description": "The column id for this dataset",
-            "in": "path",
-            "name": "column_id",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
+    "/api/v1/me/": {
+      "get": {
+        "description": "Gets the user object corresponding to the agent making the request, or returns a 401 error if the user is unauthenticated.",
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "result": {
+                      "$ref": "#/components/schemas/UserResponseSchema"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Column deleted"
+            "description": "The current user"
           },
           "401": {
             "$ref": "#/components/responses/401"
-          },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
-          "500": {
-            "$ref": "#/components/responses/500"
           }
         },
-        "security": [
-          {
-            "jwt": []
-          }
-        ],
-        "summary": "Delete a dataset column",
+        "summary": "Get the user object",
         "tags": [
-          "Datasets"
+          "Current User"
         ]
       }
     },
-    "/api/v1/dataset/{pk}/metric/{metric_id}": {
-      "delete": {
-        "parameters": [
-          {
-            "description": "The dataset pk for this column",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
+    "/api/v1/me/roles/": {
+      "get": {
+        "description": "Gets the user roles corresponding to the agent making the request, or returns a 401 error if the user is unauthenticated.",
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "result": {
+                      "$ref": "#/components/schemas/UserResponseSchema"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "The current user"
           },
-          {
-            "description": "The metric id for this dataset",
-            "in": "path",
-            "name": "metric_id",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
+          "401": {
+            "$ref": "#/components/responses/401"
           }
-        ],
+        },
+        "summary": "Get the user roles",
+        "tags": [
+          "Current User"
+        ]
+      }
+    },
+    "/api/v1/menu/": {
+      "get": {
+        "description": "Get the menu data structure. Returns a forest like structure with the menu the user has access to",
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "result": {
+                      "description": "Menu items in a forest like data structure",
+                      "items": {
+                        "properties": {
+                          "childs": {
+                            "items": {
+                              "type": "object"
+                            },
+                            "type": "array"
+                          },
+                          "icon": {
+                            "description": "Icon name to show for this menu item",
+                            "type": "string"
+                          },
+                          "label": {
+                            "description": "Pretty name for the menu item",
+                            "type": "string"
+                          },
+                          "name": {
+                            "description": "The internal menu item name, maps to permission_name",
+                            "type": "string"
+                          },
+                          "url": {
+                            "description": "The URL for the menu item",
+                            "type": "string"
+                          }
+                        },
+                        "type": "object"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Metric deleted"
+            "description": "Get menu data"
           },
           "401": {
             "$ref": "#/components/responses/401"
-          },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
-          "500": {
-            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -20063,22 +21457,25 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a dataset metric",
         "tags": [
-          "Datasets"
+          "Menu"
         ]
       }
     },
-    "/api/v1/dataset/{pk}/refresh": {
-      "put": {
+    "/api/v1/query/": {
+      "get": {
+        "description": "Gets a list of queries, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
         "parameters": [
           {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_list_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -20087,25 +21484,76 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "list_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "list_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "List Items",
                       "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/QueryRestApi.get_list"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Dataset delete"
+            "description": "Items from Model"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -20118,22 +21566,33 @@
             "jwt": []
           }
         ],
-        "summary": "Refresh and update columns of a dataset",
+        "summary": "Get a list of queries",
         "tags": [
-          "Datasets"
+          "Queries"
         ]
       }
     },
-    "/api/v1/dataset/{pk}/related_objects": {
+    "/api/v1/query/distinct/{column_name}": {
       "get": {
         "parameters": [
           {
             "in": "path",
-            "name": "pk",
+            "name": "column_name",
             "required": true,
             "schema": {
-              "type": "integer"
+              "type": "string"
             }
+          },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_related_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -20141,11 +21600,14 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/DatasetRelatedObjectsResponse"
+                  "$ref": "#/components/schemas/DistincResponseSchema"
                 }
               }
             },
-            "description": "Query result"
+            "description": "Distinct field data"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -20162,41 +21624,33 @@
             "jwt": []
           }
         ],
-        "summary": "Get charts and dashboards count associated to a dataset",
+        "summary": "Get distinct values from field data",
         "tags": [
-          "Datasets"
+          "Queries"
         ]
       }
     },
-    "/api/v1/datasource/{datasource_type}/{datasource_id}/column/{column_name}/values/": {
+    "/api/v1/query/related/{column_name}": {
       "get": {
         "parameters": [
           {
-            "description": "The type of datasource",
             "in": "path",
-            "name": "datasource_type",
+            "name": "column_name",
             "required": true,
             "schema": {
               "type": "string"
             }
           },
           {
-            "description": "The id of the datasource",
-            "in": "path",
-            "name": "datasource_id",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "description": "The name of the column to get values for",
-            "in": "path",
-            "name": "column_name",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_related_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -20204,35 +21658,11 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "items": {
-                        "oneOf": [
-                          {
-                            "type": "string"
-                          },
-                          {
-                            "type": "integer"
-                          },
-                          {
-                            "type": "number"
-                          },
-                          {
-                            "type": "boolean"
-                          },
-                          {
-                            "type": "object"
-                          }
-                        ]
-                      },
-                      "type": "array"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/RelatedResponseSchema"
                 }
               }
             },
-            "description": "A List of distinct values for the column"
+            "description": "Related column data"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -20240,9 +21670,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -20255,25 +21682,25 @@
             "jwt": []
           }
         ],
-        "summary": "Get possible values for a datasource column",
+        "summary": "Get related fields data",
         "tags": [
-          "Datasources"
+          "Queries"
         ]
       }
     },
-    "/api/v1/embedded_dashboard/{uuid}": {
-      "get": {
-        "parameters": [
-          {
-            "description": "The embedded configuration uuid",
-            "in": "path",
-            "name": "uuid",
-            "required": true,
-            "schema": {
-              "type": "string"
+    "/api/v1/query/stop": {
+      "post": {
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/StopQuerySchema"
+              }
             }
-          }
-        ],
+          },
+          "description": "Stop query schema",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
@@ -20281,14 +21708,17 @@
                 "schema": {
                   "properties": {
                     "result": {
-                      "$ref": "#/components/schemas/EmbeddedDashboardResponseSchema"
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Result contains the embedded dashboard configuration"
+            "description": "Query stopped"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -20305,50 +21735,25 @@
             "jwt": []
           }
         ],
-        "summary": "Get a report schedule log",
+        "summary": "Manually stop a query with client_id",
         "tags": [
-          "Embedded Dashboard"
+          "Queries"
         ]
       }
     },
-    "/api/v1/explore/": {
+    "/api/v1/query/updated_since": {
       "get": {
-        "description": "Assembles Explore related information (form_data, slice, dataset) in a single endpoint.<br/><br/> The information can be assembled from:<br/> - The cache using a form_data_key<br/> - The metadata database using a permalink_key<br/> - Build from scratch using dataset or slice identifiers.",
         "parameters": [
           {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/queries_get_updated_since_schema"
+                }
+              }
+            },
             "in": "query",
-            "name": "form_data_key",
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "in": "query",
-            "name": "permalink_key",
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "in": "query",
-            "name": "slice_id",
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "in": "query",
-            "name": "datasource_id",
-            "schema": {
-              "type": "integer"
-            }
-          },
-          {
-            "in": "query",
-            "name": "datasource_type",
-            "schema": {
-              "type": "string"
-            }
+            "name": "q"
           }
         ],
         "responses": {
@@ -20356,11 +21761,20 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/ExploreContextSchema"
+                  "properties": {
+                    "result": {
+                      "description": "A List of queries that changed after last_updated_ms",
+                      "items": {
+                        "$ref": "#/components/schemas/QueryRestApi.get"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Returns the initial context."
+            "description": "Queries list"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -20371,9 +21785,6 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -20383,41 +21794,79 @@
             "jwt": []
           }
         ],
-        "summary": "Assemble Explore related information in a single endpoint",
+        "summary": "Get a list of queries that changed after last_updated_ms",
         "tags": [
-          "Explore"
+          "Queries"
         ]
       }
     },
-    "/api/v1/explore/form_data": {
-      "post": {
+    "/api/v1/query/{pk}": {
+      "get": {
+        "description": "Get an item model",
         "parameters": [
           {
-            "in": "query",
-            "name": "tab_id",
+            "in": "path",
+            "name": "pk",
+            "required": true,
             "schema": {
               "type": "integer"
             }
+          },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_item_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/FormDataPostSchema"
-              }
-            }
-          },
-          "required": true
-        },
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "key": {
-                      "description": "The key to retrieve the form_data.",
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "id": {
+                      "description": "The item id",
+                      "type": "string"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/QueryRestApi.get"
+                    },
+                    "show_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "show_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "Show Item Details",
                       "type": "string"
                     }
                   },
@@ -20425,7 +21874,7 @@
                 }
               }
             },
-            "description": "The form_data was stored successfully."
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -20433,6 +21882,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -20445,23 +21897,25 @@
             "jwt": []
           }
         ],
-        "summary": "Create a new form_data",
+        "summary": "Get query detail information",
         "tags": [
-          "Explore Form Data"
+          "Queries"
         ]
       }
     },
-    "/api/v1/explore/form_data/{key}": {
+    "/api/v1/report/": {
       "delete": {
         "parameters": [
           {
-            "description": "The form_data key.",
-            "in": "path",
-            "name": "key",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_delete_ids_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -20471,7 +21925,6 @@
                 "schema": {
                   "properties": {
                     "message": {
-                      "description": "The result of the operation",
                       "type": "string"
                     }
                   },
@@ -20479,14 +21932,14 @@
                 }
               }
             },
-            "description": "Deleted the stored form_data."
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Report Schedule bulk delete"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -20502,20 +21955,24 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a form_data",
+        "summary": "Bulk delete report schedules",
         "tags": [
-          "Explore Form Data"
+          "Report Schedules"
         ]
       },
       "get": {
+        "description": "Gets a list of report schedules, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
         "parameters": [
           {
-            "in": "path",
-            "name": "key",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_list_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -20524,16 +21981,69 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "form_data": {
-                      "description": "The stored form_data",
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "list_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "list_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "List Items",
                       "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/ReportScheduleRestApi.get_list"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Returns the stored form_data."
+            "description": "Items from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -20541,9 +22051,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -20556,55 +22063,41 @@
             "jwt": []
           }
         ],
-        "summary": "Get a form_data",
+        "summary": "Get a list of report schedules",
         "tags": [
-          "Explore Form Data"
+          "Report Schedules"
         ]
       },
-      "put": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "key",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "in": "query",
-            "name": "tab_id",
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
+      "post": {
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/FormDataPutSchema"
+                "$ref": "#/components/schemas/ReportScheduleRestApi.post"
               }
             }
           },
+          "description": "Report Schedule schema",
           "required": true
         },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "key": {
-                      "description": "The key to retrieve the form_data.",
-                      "type": "string"
+                    "id": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/ReportScheduleRestApi.post"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "The form_data was stored successfully."
+            "description": "Report schedule added"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -20627,44 +22120,74 @@
             "jwt": []
           }
         ],
-        "summary": "Update an existing form_data",
+        "summary": "Create a report schedule",
         "tags": [
-          "Explore Form Data"
+          "Report Schedules"
         ]
       }
     },
-    "/api/v1/explore/permalink": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/ExplorePermalinkStateSchema"
+    "/api/v1/report/_info": {
+      "get": {
+        "description": "Get metadata information about this API resource",
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_info_schema"
+                }
               }
-            }
-          },
-          "required": true
-        },
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "key": {
-                      "description": "The key to retrieve the permanent link data.",
-                      "type": "string"
+                    "add_columns": {
+                      "type": "object"
                     },
-                    "url": {
-                      "description": "permanent link.",
-                      "type": "string"
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "The permanent link was stored successfully."
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -20684,22 +22207,33 @@
             "jwt": []
           }
         ],
-        "summary": "Create a new permanent link",
+        "summary": "Get metadata information about this API resource",
         "tags": [
-          "Explore Permanent Link"
+          "Report Schedules"
         ]
       }
     },
-    "/api/v1/explore/permalink/{key}": {
+    "/api/v1/report/related/{column_name}": {
       "get": {
         "parameters": [
           {
             "in": "path",
-            "name": "key",
+            "name": "column_name",
             "required": true,
             "schema": {
               "type": "string"
             }
+          },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_related_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -20707,17 +22241,11 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "state": {
-                      "description": "The stored state",
-                      "type": "object"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/RelatedResponseSchema"
                 }
               }
             },
-            "description": "Returns the stored form_data."
+            "description": "Related column data"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -20728,9 +22256,6 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -20740,64 +22265,26 @@
             "jwt": []
           }
         ],
-        "summary": "Get chart's permanent link state",
+        "summary": "Get related fields data",
         "tags": [
-          "Explore Permanent Link"
+          "Report Schedules"
         ]
       }
     },
-    "/api/v1/ias/login_token": {
-      "post": {
-        "description": "Endpoint for exchanging IAS tokens for Superset API tokens. IAS Tokens should be requested from the `acssuperset` IAS application, typically using [client credential flow](https://docs.aci.apple.com/ias/tutorials/client_credentials/index.html). At a minimum, an `id_token` needs to be provided, but by providing a `refresh_token` Superset will be able to automatically refresh the token after the initial one expires. However, to be able to refresh the token, `client_id` and `client_secret` must be provided, as the token needs to be refreshed with the same client that was used for logging in. Unless `refresh_token`, `client_id` and `client_secret` are provided, a `refresh_token` will not be returned.\\nThe following scope should be requested in the token request: `offline openid iam:ds:groups corpds:ds:username corpds:ds:firstName corpds:ds:lastName corpds:ds:email iam:ds:explicitgroups`",
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/IASLoginTokenRequestSchema"
-              }
-            }
-          },
-          "description": "Payload containing IAS tokens.",
-          "required": true
-        },
-        "responses": {
-          "200": {
+    "/api/v1/report/slack_channels/": {
+      "get": {
+        "description": "Get slack channels",
+        "parameters": [
+          {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/IASLoginTokenResponseSchema"
+                  "$ref": "#/components/schemas/get_slack_channels_schema"
                 }
               }
             },
-            "description": "Query result"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
-          },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
-          "500": {
-            "$ref": "#/components/responses/500"
-          }
-        },
-        "tags": [
-          "IAS"
-        ]
-      }
-    },
-    "/api/v1/ias/profiles": {
-      "get": {
-        "description": "Endpoint for retrieving available IAS profiles.",
-        "parameters": [
-          {
-            "description": "The name of the IAS profile",
             "in": "query",
-            "name": "profile",
-            "required": false,
-            "schema": {
-              "type": "string"
-            }
+            "name": "q"
           }
         ],
         "responses": {
@@ -20805,11 +22292,42 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/IASProfilesResponseSchema"
+                  "properties": {
+                    "result": {
+                      "items": {
+                        "properties": {
+                          "id": {
+                            "type": "string"
+                          },
+                          "name": {
+                            "type": "string"
+                          }
+                        },
+                        "type": "object"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "IAS Tokens"
+            "description": "Slack channels"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -20817,22 +22335,22 @@
             "jwt": []
           }
         ],
+        "summary": "Get slack channels",
         "tags": [
-          "IAS"
+          "Report Schedules"
         ]
       }
     },
-    "/api/v1/ias/tokens": {
-      "get": {
-        "description": "Endpoint for retrieving IAS tokens for the logged in user. If no token is provided, all tokens are returned.",
+    "/api/v1/report/{pk}": {
+      "delete": {
         "parameters": [
           {
-            "description": "The name of the IAS profile",
-            "in": "query",
-            "name": "profile",
-            "required": false,
+            "description": "The report schedule pk",
+            "in": "path",
+            "name": "pk",
+            "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
           }
         ],
@@ -20841,14 +22359,28 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/IASTokensResponseSchema"
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "IAS Tokens"
+            "description": "Item deleted"
           },
-          "400": {
-            "$ref": "#/components/responses/400"
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -20856,31 +22388,32 @@
             "jwt": []
           }
         ],
+        "summary": "Delete a report schedule",
         "tags": [
-          "IAS"
+          "Report Schedules"
         ]
-      }
-    },
-    "/api/v1/ias/tokens/{pk}": {
+      },
       "get": {
-        "description": "Endpoint for retrieving IAS tokens for a specific user. If no token is provided, all tokens are returned. Only Admin users are able to view other users' tokens.",
+        "description": "Get an item model",
         "parameters": [
           {
             "in": "path",
             "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
           },
           {
-            "description": "The name of the IAS profile",
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_item_schema"
+                }
+              }
+            },
             "in": "query",
-            "name": "profile",
-            "required": false,
-            "schema": {
-              "type": "string"
-            }
+            "name": "q"
           }
         ],
         "responses": {
@@ -20888,14 +22421,67 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/IASTokensResponseSchema"
+                  "properties": {
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "id": {
+                      "description": "The item id",
+                      "type": "string"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/ReportScheduleRestApi.get"
+                    },
+                    "show_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "show_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "Show Item Details",
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "IAS Tokens"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -20903,24 +22489,55 @@
             "jwt": []
           }
         ],
+        "summary": "Get a report schedule",
         "tags": [
-          "IAS"
+          "Report Schedules"
         ]
-      }
-    },
-    "/api/v1/lakehouse": {
-      "get": {
-        "description": "Disconnect a Lakehouse.",
+      },
+      "put": {
+        "parameters": [
+          {
+            "description": "The Report Schedule pk",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/ReportScheduleRestApi.put"
+              }
+            }
+          },
+          "description": "Report Schedule schema",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/LakehouseGetListResponseSchema"
+                  "properties": {
+                    "id": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/ReportScheduleRestApi.put"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Lakehouse has been deleted"
+            "description": "Report Schedule changed"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -20928,6 +22545,12 @@
           "403": {
             "$ref": "#/components/responses/403"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -20937,24 +22560,35 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of all connected Lakehouses",
+        "summary": "Update a report schedule",
         "tags": [
-          "Lakehouse"
+          "Report Schedules"
         ]
       }
     },
-    "/api/v1/lakehouse/{lakehouse_id}": {
-      "delete": {
-        "description": "Disconnect a Lakehouse.",
+    "/api/v1/report/{pk}/log/": {
+      "get": {
+        "description": "Gets a list of report schedule logs, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
         "parameters": [
           {
-            "description": "The unique id of the lakehouse",
+            "description": "The report schedule id for these logs",
             "in": "path",
-            "name": "lakehouse_id",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
+          },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_list_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -20962,20 +22596,40 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/LakehouseDisconnectResponseSchema"
+                  "properties": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
+                    "ids": {
+                      "description": "A list of log ids",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/ReportExecutionLogRestApi.get_list"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Lakehouse has been deleted"
+            "description": "Items from logs"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -20986,22 +22640,43 @@
             "jwt": []
           }
         ],
-        "summary": "Disconnect a Lakehouse and all catalogs",
+        "summary": "Get a list of report schedule logs",
         "tags": [
-          "Lakehouse"
+          "Report Schedules"
         ]
-      },
+      }
+    },
+    "/api/v1/report/{pk}/log/{log_id}": {
       "get": {
-        "description": "Get information regarding a connected Lakehouse",
         "parameters": [
           {
-            "description": "The unique id of the lakehouse",
+            "description": "The report schedule pk for log",
             "in": "path",
-            "name": "lakehouse_id",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
+            }
+          },
+          {
+            "description": "The log pk",
+            "in": "path",
+            "name": "log_id",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
+          },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_item_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -21009,21 +22684,33 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/LakehouseGetResponseSchema"
+                  "properties": {
+                    "id": {
+                      "description": "The log id",
+                      "type": "string"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/ReportExecutionLogRestApi.get"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Lakehouses"
+            "description": "Item log"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -21033,48 +22720,42 @@
             "jwt": []
           }
         ],
-        "summary": "Get information about a specific Lakehouse",
+        "summary": "Get a report schedule log",
         "tags": [
-          "Lakehouse"
+          "Report Schedules"
         ]
-      },
-      "post": {
-        "description": "Endpoint for connecting a Lakehouse and associated catalogs to the ACS Superset instance.",
+      }
+    },
+    "/api/v1/rowlevelsecurity/": {
+      "delete": {
         "parameters": [
           {
-            "description": "The unique id of the lakehouse",
-            "in": "path",
-            "name": "lakehouse_id",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_delete_ids_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/LakehouseConnectRequestSchema"
-              }
-            }
-          },
-          "description": "Payload containing connection parameters.",
-          "required": true
-        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/LakehouseConnectResponseSchema"
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "The connection task has been scheduled."
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "RLS Rule bulk delete"
           },
           "401": {
             "$ref": "#/components/responses/401"
@@ -21082,6 +22763,12 @@
           "403": {
             "$ref": "#/components/responses/403"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -21091,40 +22778,24 @@
             "jwt": []
           }
         ],
-        "summary": "Schedule a task to connect a Lakehouse and catalogs",
+        "summary": "Bulk delete RLS rules",
         "tags": [
-          "Lakehouse"
+          "Row Level Security"
         ]
-      }
-    },
-    "/api/v1/lakehouse/{lakehouse_id}/dataset": {
+      },
       "get": {
-        "description": "Endpoint for listing all virtual datasets on a Lakehouse",
+        "description": "Gets a list of RLS, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
         "parameters": [
           {
-            "description": "The unique id of the lakehouse",
-            "in": "path",
-            "name": "lakehouse_id",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "description": "The catalog. Leave empty for all catalogs",
-            "in": "query",
-            "name": "catalog",
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "description": "The schema. Leave empty for all schemas",
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_list_schema"
+                }
+              }
+            },
             "in": "query",
-            "name": "schema",
-            "schema": {
-              "type": "string"
-            }
+            "name": "q"
           }
         ],
         "responses": {
@@ -21132,11 +22803,70 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/LakehouseDatasetListResponseSchema"
+                  "properties": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "list_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "list_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "List Items",
+                      "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/RLSRestApi.get_list"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "All virtual datasets satisfying the query params."
+            "description": "Items from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -21144,8 +22874,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -21156,45 +22886,41 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of virtual datasets",
+        "summary": "Get a list of RLS",
         "tags": [
-          "Lakehouse"
+          "Row Level Security"
         ]
       },
       "post": {
-        "description": "Endpoint for creating a virtual dataset from a query",
-        "parameters": [
-          {
-            "description": "The unique id of the lakehouse",
-            "in": "path",
-            "name": "lakehouse_id",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          }
-        ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/LakehouseDatasetRequestSchema"
+                "$ref": "#/components/schemas/RLSRestApi.post"
               }
             }
           },
-          "description": "Payload containing virtual dataset parameters.",
+          "description": "RLS schema",
           "required": true
         },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/LakehouseDatasetResponseSchema"
+                  "properties": {
+                    "id": {
+                      "type": "number"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/RLSRestApi.post"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "The virtual dataset has been created."
+            "description": "RLS Rule added"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -21202,8 +22928,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
+          "404": {
+            "$ref": "#/components/responses/404"
           },
           "422": {
             "$ref": "#/components/responses/422"
@@ -21217,33 +22943,26 @@
             "jwt": []
           }
         ],
-        "summary": "Create a virtual dataset out of a query",
+        "summary": "Create a new RLS rule",
         "tags": [
-          "Lakehouse"
+          "Row Level Security"
         ]
       }
     },
-    "/api/v1/lakehouse/{lakehouse_id}/task/{task_id}/cancel": {
-      "post": {
-        "description": "Endpoint for cancelling a scheduled connection request.",
+    "/api/v1/rowlevelsecurity/_info": {
+      "get": {
+        "description": "Get metadata information about this API resource",
         "parameters": [
           {
-            "description": "The unique id of the lakehouse",
-            "in": "path",
-            "name": "lakehouse_id",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "description": "The id of the connection task",
-            "in": "path",
-            "name": "task_id",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_info_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -21251,11 +22970,47 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/LakehouseConnectStatusResponseSchema"
+                  "properties": {
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "The status of the task."
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -21263,11 +23018,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -21278,33 +23030,33 @@
             "jwt": []
           }
         ],
-        "summary": "Cancel a running task",
+        "summary": "Get metadata information about this API resource",
         "tags": [
-          "Lakehouse"
+          "Row Level Security"
         ]
       }
     },
-    "/api/v1/lakehouse/{lakehouse_id}/task/{task_id}/result": {
+    "/api/v1/rowlevelsecurity/related/{column_name}": {
       "get": {
-        "description": "Endpoint for retrieving the payload of a scheduled connection request.",
         "parameters": [
           {
-            "description": "The unique id of the lakehouse",
             "in": "path",
-            "name": "lakehouse_id",
+            "name": "column_name",
             "required": true,
             "schema": {
               "type": "string"
             }
           },
           {
-            "description": "The id of the connection task",
-            "in": "path",
-            "name": "task_id",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_related_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
           }
         ],
         "responses": {
@@ -21312,11 +23064,11 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/LakehouseConnectResultResponseSchema"
+                  "$ref": "#/components/schemas/RelatedResponseSchema"
                 }
               }
             },
-            "description": "The status of the task."
+            "description": "Related column data"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -21324,7 +23076,7 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
+          "404": {
             "$ref": "#/components/responses/404"
           },
           "500": {
@@ -21336,32 +23088,21 @@
             "jwt": []
           }
         ],
-        "summary": "Get the payload of a completed connection task",
+        "summary": "Get related fields data",
         "tags": [
-          "Lakehouse"
+          "Row Level Security"
         ]
       }
     },
-    "/api/v1/lakehouse/{lakehouse_id}/task/{task_id}/status": {
-      "get": {
-        "description": "Endpoint for checking what the status of a scheduled connection request is.",
+    "/api/v1/rowlevelsecurity/{pk}": {
+      "delete": {
         "parameters": [
           {
-            "description": "The unique id of the lakehouse",
-            "in": "path",
-            "name": "lakehouse_id",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
-          {
-            "description": "The id of the connection task",
             "in": "path",
-            "name": "task_id",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
           }
         ],
@@ -21370,24 +23111,23 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/LakehouseConnectStatusResponseSchema"
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "The status of the task."
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
-          },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
-          "403": {
-            "$ref": "#/components/responses/403"
+            "description": "Item deleted"
           },
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -21397,21 +23137,27 @@
             "jwt": []
           }
         ],
-        "summary": "Check the status of a connection task",
+        "summary": "Delete an RLS",
         "tags": [
-          "Lakehouse"
+          "Row Level Security"
         ]
-      }
-    },
-    "/api/v1/log/": {
+      },
       "get": {
-        "description": "Gets a list of logs, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
+        "description": "Get an item model",
         "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_list_schema"
+                  "$ref": "#/components/schemas/get_item_schema"
                 }
               }
             },
@@ -21425,10 +23171,6 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "count": {
-                      "description": "The total record count on the backend",
-                      "type": "number"
-                    },
                     "description_columns": {
                       "properties": {
                         "column_name": {
@@ -21439,12 +23181,9 @@
                       },
                       "type": "object"
                     },
-                    "ids": {
-                      "description": "A list of item ids, useful when you don't know the column id",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
+                    "id": {
+                      "description": "The item id",
+                      "type": "string"
                     },
                     "label_columns": {
                       "properties": {
@@ -21456,38 +23195,27 @@
                       },
                       "type": "object"
                     },
-                    "list_columns": {
+                    "result": {
+                      "$ref": "#/components/schemas/RLSRestApi.get"
+                    },
+                    "show_columns": {
                       "description": "A list of columns",
                       "items": {
                         "type": "string"
                       },
                       "type": "array"
                     },
-                    "list_title": {
+                    "show_title": {
                       "description": "A title to render. Will be translated by babel",
-                      "example": "List Items",
+                      "example": "Show Item Details",
                       "type": "string"
-                    },
-                    "order_columns": {
-                      "description": "A list of allowed columns to sort",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "result": {
-                      "description": "The result from the get list query",
-                      "items": {
-                        "$ref": "#/components/schemas/LogRestApi.get_list"
-                      },
-                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Items from Model"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -21495,6 +23223,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -21507,41 +23238,52 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of logs",
+        "summary": "Get an RLS",
         "tags": [
-          "LogRestApi"
+          "Row Level Security"
         ]
       },
-      "post": {
+      "put": {
+        "parameters": [
+          {
+            "description": "The Rule pk",
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/LogRestApi.post"
+                "$ref": "#/components/schemas/RLSRestApi.put"
               }
             }
           },
-          "description": "Model schema",
+          "description": "RLS schema",
           "required": true
         },
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
                     "id": {
-                      "type": "string"
+                      "type": "number"
                     },
                     "result": {
-                      "$ref": "#/components/schemas/LogRestApi.post"
+                      "$ref": "#/components/schemas/RLSRestApi.put"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item inserted"
+            "description": "Rule changed"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -21549,6 +23291,12 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "403": {
+            "$ref": "#/components/responses/403"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -21561,28 +23309,20 @@
             "jwt": []
           }
         ],
+        "summary": "Update an RLS rule",
         "tags": [
-          "LogRestApi"
+          "Row Level Security"
         ]
       }
     },
-    "/api/v1/log/recent_activity/": {
-      "get": {
+    "/api/v1/saved_query/": {
+      "delete": {
         "parameters": [
-          {
-            "description": "The id of the user",
-            "in": "path",
-            "name": "user_id",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_recent_activity_schema"
+                  "$ref": "#/components/schemas/get_delete_ids_schema"
                 }
               }
             },
@@ -21595,20 +23335,25 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/RecentActivityResponseSchema"
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "A List of recent activity objects"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Saved queries bulk delete"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -21619,29 +23364,19 @@
             "jwt": []
           }
         ],
-        "summary": "Get recent activity data for a user",
+        "summary": "Bulk delete saved queries",
         "tags": [
-          "LogRestApi"
+          "Queries"
         ]
-      }
-    },
-    "/api/v1/log/{pk}": {
+      },
       "get": {
-        "description": "Get an item model",
+        "description": "Gets a list of saved queries, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
         "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_item_schema"
+                  "$ref": "#/components/schemas/get_list_schema"
                 }
               }
             },
@@ -21655,6 +23390,10 @@
               "application/json": {
                 "schema": {
                   "properties": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
                     "description_columns": {
                       "properties": {
                         "column_name": {
@@ -21665,9 +23404,12 @@
                       },
                       "type": "object"
                     },
-                    "id": {
-                      "description": "The item id",
-                      "type": "string"
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
                     },
                     "label_columns": {
                       "properties": {
@@ -21679,27 +23421,38 @@
                       },
                       "type": "object"
                     },
-                    "result": {
-                      "$ref": "#/components/schemas/LogRestApi.get"
-                    },
-                    "show_columns": {
+                    "list_columns": {
                       "description": "A list of columns",
                       "items": {
                         "type": "string"
                       },
                       "type": "array"
                     },
-                    "show_title": {
+                    "list_title": {
                       "description": "A title to render. Will be translated by babel",
-                      "example": "Show Item Details",
+                      "example": "List Items",
                       "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/SavedQueryRestApi.get_list"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "Items from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -21707,9 +23460,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -21722,119 +23472,53 @@
             "jwt": []
           }
         ],
-        "summary": "Get a log detail information",
+        "summary": "Get a list of saved queries",
         "tags": [
-          "LogRestApi"
+          "Queries"
         ]
-      }
-    },
-    "/api/v1/me/": {
-      "get": {
-        "description": "Gets the user object corresponding to the agent making the request, or returns a 401 error if the user is unauthenticated.",
-        "responses": {
-          "200": {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "properties": {
-                    "result": {
-                      "$ref": "#/components/schemas/UserResponseSchema"
-                    }
-                  },
-                  "type": "object"
-                }
+      },
+      "post": {
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/SavedQueryRestApi.post"
               }
-            },
-            "description": "The current user"
+            }
           },
-          "401": {
-            "$ref": "#/components/responses/401"
-          }
+          "description": "Model schema",
+          "required": true
         },
-        "summary": "Get the user object",
-        "tags": [
-          "Current User"
-        ]
-      }
-    },
-    "/api/v1/me/roles/": {
-      "get": {
-        "description": "Gets the user roles corresponding to the agent making the request, or returns a 401 error if the user is unauthenticated.",
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
+                    "id": {
+                      "type": "string"
+                    },
                     "result": {
-                      "$ref": "#/components/schemas/UserResponseSchema"
+                      "$ref": "#/components/schemas/SavedQueryRestApi.post"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "The current user"
+            "description": "Item inserted"
           },
-          "401": {
-            "$ref": "#/components/responses/401"
-          }
-        },
-        "summary": "Get the user roles",
-        "tags": [
-          "Current User"
-        ]
-      }
-    },
-    "/api/v1/menu/": {
-      "get": {
-        "description": "Get the menu data structure. Returns a forest like structure with the menu the user has access to",
-        "responses": {
-          "200": {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "properties": {
-                    "result": {
-                      "description": "Menu items in a forest like data structure",
-                      "items": {
-                        "properties": {
-                          "childs": {
-                            "items": {
-                              "type": "object"
-                            },
-                            "type": "array"
-                          },
-                          "icon": {
-                            "description": "Icon name to show for this menu item",
-                            "type": "string"
-                          },
-                          "label": {
-                            "description": "Pretty name for the menu item",
-                            "type": "string"
-                          },
-                          "name": {
-                            "description": "The internal menu item name, maps to permission_name",
-                            "type": "string"
-                          },
-                          "url": {
-                            "description": "The URL for the menu item",
-                            "type": "string"
-                          }
-                        },
-                        "type": "object"
-                      },
-                      "type": "array"
-                    }
-                  },
-                  "type": "object"
-                }
-              }
-            },
-            "description": "Get menu data"
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
           }
         },
         "security": [
@@ -21842,20 +23526,21 @@
             "jwt": []
           }
         ],
+        "summary": "Create a saved query",
         "tags": [
-          "Menu"
+          "Queries"
         ]
       }
     },
-    "/api/v1/query/": {
+    "/api/v1/saved_query/_info": {
       "get": {
-        "description": "Gets a list of queries, use Rison or JSON query parameters for filtering, sorting, pagination and  for selecting specific columns and metadata.",
+        "description": "Get metadata information about this API resource",
         "parameters": [
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_list_schema"
+                  "$ref": "#/components/schemas/get_info_schema"
                 }
               }
             },
@@ -21869,69 +23554,46 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "count": {
-                      "description": "The total record count on the backend",
-                      "type": "number"
-                    },
-                    "description_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The description for the column name. Will be translated by babel",
-                          "example": "A Nice description for the column",
-                          "type": "string"
-                        }
-                      },
+                    "add_columns": {
                       "type": "object"
                     },
-                    "ids": {
-                      "description": "A list of item ids, useful when you don't know the column id",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
+                    "edit_columns": {
+                      "type": "object"
                     },
-                    "label_columns": {
+                    "filters": {
                       "properties": {
                         "column_name": {
-                          "description": "The label for the column name. Will be translated by babel",
-                          "example": "A Nice label for the column",
-                          "type": "string"
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
                         }
                       },
                       "type": "object"
                     },
-                    "list_columns": {
-                      "description": "A list of columns",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "list_title": {
-                      "description": "A title to render. Will be translated by babel",
-                      "example": "List Items",
-                      "type": "string"
-                    },
-                    "order_columns": {
-                      "description": "A list of allowed columns to sort",
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
                       "items": {
                         "type": "string"
                       },
                       "type": "array"
-                    },
-                    "result": {
-                      "description": "The result from the get list query",
-                      "items": {
-                        "$ref": "#/components/schemas/QueryRestApi.get_list"
-                      },
-                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Items from Model"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -21951,13 +23613,13 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of queries",
+        "summary": "Get metadata information about this API resource",
         "tags": [
           "Queries"
         ]
       }
     },
-    "/api/v1/query/distinct/{column_name}": {
+    "/api/v1/saved_query/distinct/{column_name}": {
       "get": {
         "parameters": [
           {
@@ -22015,22 +23677,14 @@
         ]
       }
     },
-    "/api/v1/query/related/{column_name}": {
+    "/api/v1/saved_query/export/": {
       "get": {
         "parameters": [
-          {
-            "in": "path",
-            "name": "column_name",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
+                  "$ref": "#/components/schemas/get_export_ids_schema"
                 }
               }
             },
@@ -22041,13 +23695,14 @@
         "responses": {
           "200": {
             "content": {
-              "application/json": {
+              "application/zip": {
                 "schema": {
-                  "$ref": "#/components/schemas/RelatedResponseSchema"
+                  "format": "binary",
+                  "type": "string"
                 }
               }
             },
-            "description": "Related column data"
+            "description": "A zip file with saved query(ies) and database(s) as YAML"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -22067,23 +23722,49 @@
             "jwt": []
           }
         ],
-        "summary": "Get related fields data",
+        "summary": "Download multiple saved queries as YAML files",
         "tags": [
           "Queries"
         ]
       }
     },
-    "/api/v1/query/stop": {
+    "/api/v1/saved_query/import/": {
       "post": {
         "requestBody": {
           "content": {
-            "application/json": {
+            "multipart/form-data": {
               "schema": {
-                "$ref": "#/components/schemas/StopQuerySchema"
+                "properties": {
+                  "formData": {
+                    "description": "upload file (ZIP)",
+                    "format": "binary",
+                    "type": "string"
+                  },
+                  "overwrite": {
+                    "description": "overwrite existing saved queries?",
+                    "type": "boolean"
+                  },
+                  "passwords": {
+                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_passwords": {
+                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_key_passwords": {
+                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
+                    "type": "string"
+                  },
+                  "ssh_tunnel_private_keys": {
+                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
+                    "type": "string"
+                  }
+                },
+                "type": "object"
               }
             }
           },
-          "description": "Stop query schema",
           "required": true
         },
         "responses": {
@@ -22092,7 +23773,7 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "result": {
+                    "message": {
                       "type": "string"
                     }
                   },
@@ -22100,7 +23781,7 @@
                 }
               }
             },
-            "description": "Query stopped"
+            "description": "Saved Query import result"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -22108,8 +23789,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -22120,20 +23801,28 @@
             "jwt": []
           }
         ],
-        "summary": "Manually stop a query with client_id",
+        "summary": "Import saved queries with associated databases",
         "tags": [
           "Queries"
         ]
       }
     },
-    "/api/v1/query/updated_since": {
+    "/api/v1/saved_query/related/{column_name}": {
       "get": {
         "parameters": [
+          {
+            "in": "path",
+            "name": "column_name",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/queries_get_updated_since_schema"
+                  "$ref": "#/components/schemas/get_related_schema"
                 }
               }
             },
@@ -22146,20 +23835,11 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "properties": {
-                    "result": {
-                      "description": "A List of queries that changed after last_updated_ms",
-                      "items": {
-                        "$ref": "#/components/schemas/QueryRestApi.get"
-                      },
-                      "type": "array"
-                    }
-                  },
-                  "type": "object"
+                  "$ref": "#/components/schemas/RelatedResponseSchema"
                 }
               }
             },
-            "description": "Queries list"
+            "description": "Related column data"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -22179,13 +23859,60 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of queries that changed after last_updated_ms",
+        "summary": "Get related fields data",
         "tags": [
           "Queries"
         ]
       }
     },
-    "/api/v1/query/{pk}": {
+    "/api/v1/saved_query/{pk}": {
+      "delete": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Item deleted"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Delete a saved query",
+        "tags": [
+          "Queries"
+        ]
+      },
       "get": {
         "description": "Get an item model",
         "parameters": [
@@ -22240,7 +23967,7 @@
                       "type": "object"
                     },
                     "result": {
-                      "$ref": "#/components/schemas/QueryRestApi.get"
+                      "$ref": "#/components/schemas/SavedQueryRestApi.get"
                     },
                     "show_columns": {
                       "description": "A list of columns",
@@ -22282,54 +24009,96 @@
             "jwt": []
           }
         ],
-        "summary": "Get query detail information",
+        "summary": "Get a saved query",
         "tags": [
           "Queries"
         ]
-      }
-    },
-    "/api/v1/report/": {
-      "delete": {
+      },
+      "put": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_delete_ids_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/SavedQueryRestApi.put"
+              }
+            }
+          },
+          "description": "Model schema",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "result": {
+                      "$ref": "#/components/schemas/SavedQueryRestApi.put"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Report Schedule bulk delete"
+            "description": "Item changed"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Update a saved query",
+        "tags": [
+          "Queries"
+        ]
+      }
+    },
+    "/api/v1/security/csrf_token/": {
+      "get": {
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "result": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Result contains the CSRF token"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -22340,95 +24109,40 @@
             "jwt": []
           }
         ],
-        "summary": "Bulk delete report schedules",
+        "summary": "Get the CSRF token",
         "tags": [
-          "Report Schedules"
+          "Security"
         ]
-      },
-      "get": {
-        "description": "Gets a list of report schedules, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
-        "parameters": [
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_list_schema"
-                }
+      }
+    },
+    "/api/v1/security/guest_token/": {
+      "post": {
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/GuestTokenCreate"
               }
-            },
-            "in": "query",
-            "name": "q"
-          }
-        ],
+            }
+          },
+          "description": "Parameters for the guest token",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "count": {
-                      "description": "The total record count on the backend",
-                      "type": "number"
-                    },
-                    "description_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The description for the column name. Will be translated by babel",
-                          "example": "A Nice description for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "ids": {
-                      "description": "A list of item ids, useful when you don't know the column id",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "label_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The label for the column name. Will be translated by babel",
-                          "example": "A Nice label for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "list_columns": {
-                      "description": "A list of columns",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "list_title": {
-                      "description": "A title to render. Will be translated by babel",
-                      "example": "List Items",
+                    "token": {
                       "type": "string"
-                    },
-                    "order_columns": {
-                      "description": "A list of allowed columns to sort",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "result": {
-                      "description": "The result from the get list query",
-                      "items": {
-                        "$ref": "#/components/schemas/ReportScheduleRestApi.get_list"
-                      },
-                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Items from Model"
+            "description": "Result contains the guest token"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -22436,9 +24150,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -22448,41 +24159,69 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of report schedules",
+        "summary": "Get a guest token",
         "tags": [
-          "Report Schedules"
+          "Security"
         ]
-      },
+      }
+    },
+    "/api/v1/security/login": {
       "post": {
+        "description": "Authenticate and get a JWT access and refresh token",
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/ReportScheduleRestApi.post"
+                "properties": {
+                  "password": {
+                    "description": "The password for authentication",
+                    "example": "complex-password",
+                    "type": "string"
+                  },
+                  "provider": {
+                    "description": "Choose an authentication provider",
+                    "enum": [
+                      "db",
+                      "ldap"
+                    ],
+                    "example": "db",
+                    "type": "string"
+                  },
+                  "refresh": {
+                    "description": "If true a refresh token is provided also",
+                    "example": true,
+                    "type": "boolean"
+                  },
+                  "username": {
+                    "description": "The username for authentication",
+                    "example": "admin",
+                    "type": "string"
+                  }
+                },
+                "type": "object"
               }
             }
           },
-          "description": "Report Schedule schema",
           "required": true
         },
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
-                      "type": "number"
+                    "access_token": {
+                      "type": "string"
                     },
-                    "result": {
-                      "$ref": "#/components/schemas/ReportScheduleRestApi.post"
+                    "refresh_token": {
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Report schedule added"
+            "description": "Authentication Successful"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -22490,36 +24229,24 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
         },
-        "security": [
-          {
-            "jwt": []
-          }
-        ],
-        "summary": "Create a report schedule",
         "tags": [
-          "Report Schedules"
+          "Security"
         ]
       }
     },
-    "/api/v1/report/_info": {
+    "/api/v1/security/permissions-resources/": {
       "get": {
-        "description": "Get metadata information about this API resource",
+        "description": "Get a list of models",
         "parameters": [
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_info_schema"
+                  "$ref": "#/components/schemas/get_list_schema"
                 }
               }
             },
@@ -22533,46 +24260,69 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "add_columns": {
-                      "type": "object"
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
                     },
-                    "edit_columns": {
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
                       "type": "object"
                     },
-                    "filters": {
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "label_columns": {
                       "properties": {
                         "column_name": {
-                          "items": {
-                            "properties": {
-                              "name": {
-                                "description": "The filter name. Will be translated by babel",
-                                "type": "string"
-                              },
-                              "operator": {
-                                "description": "The filter operation key to use on list filters",
-                                "type": "string"
-                              }
-                            },
-                            "type": "object"
-                          },
-                          "type": "array"
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
                         }
                       },
                       "type": "object"
                     },
-                    "permissions": {
-                      "description": "The user permissions for this API resource",
+                    "list_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "list_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "List Items",
+                      "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
                       "items": {
                         "type": "string"
                       },
                       "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/PermissionViewMenuApi.get_list"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "Items from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -22587,50 +24337,45 @@
             "$ref": "#/components/responses/500"
           }
         },
-        "security": [
-          {
-            "jwt": []
-          }
-        ],
-        "summary": "Get metadata information about this API resource",
-        "tags": [
-          "Report Schedules"
-        ]
-      }
-    },
-    "/api/v1/report/related/{column_name}": {
-      "get": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "column_name",
-            "required": true,
-            "schema": {
-              "type": "string"
-            }
-          },
+        "security": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
+            "jwt": []
           }
         ],
+        "tags": [
+          "Security Permissions on Resources (View Menus)"
+        ]
+      },
+      "post": {
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/PermissionViewMenuApi.post"
+              }
+            }
+          },
+          "description": "Model schema",
+          "required": true
+        },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/RelatedResponseSchema"
+                  "properties": {
+                    "id": {
+                      "type": "string"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/PermissionViewMenuApi.post"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Related column data"
+            "description": "Item inserted"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -22638,8 +24383,8 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -22650,21 +24395,20 @@
             "jwt": []
           }
         ],
-        "summary": "Get related fields data",
         "tags": [
-          "Report Schedules"
+          "Security Permissions on Resources (View Menus)"
         ]
       }
     },
-    "/api/v1/report/slack_channels/": {
+    "/api/v1/security/permissions-resources/_info": {
       "get": {
-        "description": "Get slack channels",
+        "description": "Get metadata information about this API resource",
         "parameters": [
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_slack_channels_schema"
+                  "$ref": "#/components/schemas/get_info_schema"
                 }
               }
             },
@@ -22678,17 +24422,37 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "result": {
-                      "items": {
-                        "properties": {
-                          "id": {
-                            "type": "string"
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
                           },
-                          "name": {
-                            "type": "string"
-                          }
-                        },
-                        "type": "object"
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
                       },
                       "type": "array"
                     }
@@ -22697,17 +24461,14 @@
                 }
               }
             },
-            "description": "Slack channels"
+            "description": "Item from Model"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -22720,17 +24481,15 @@
             "jwt": []
           }
         ],
-        "summary": "Get slack channels",
         "tags": [
-          "Report Schedules"
+          "Security Permissions on Resources (View Menus)"
         ]
       }
     },
-    "/api/v1/report/{pk}": {
+    "/api/v1/security/permissions-resources/{pk}": {
       "delete": {
         "parameters": [
           {
-            "description": "The report schedule pk",
             "in": "path",
             "name": "pk",
             "required": true,
@@ -22755,9 +24514,6 @@
             },
             "description": "Item deleted"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -22773,9 +24529,8 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a report schedule",
         "tags": [
-          "Report Schedules"
+          "Security Permissions on Resources (View Menus)"
         ]
       },
       "get": {
@@ -22832,7 +24587,7 @@
                       "type": "object"
                     },
                     "result": {
-                      "$ref": "#/components/schemas/ReportScheduleRestApi.get"
+                      "$ref": "#/components/schemas/PermissionViewMenuApi.get"
                     },
                     "show_columns": {
                       "description": "A list of columns",
@@ -22874,15 +24629,13 @@
             "jwt": []
           }
         ],
-        "summary": "Get a report schedule",
         "tags": [
-          "Report Schedules"
+          "Security Permissions on Resources (View Menus)"
         ]
       },
       "put": {
         "parameters": [
           {
-            "description": "The Report Schedule pk",
             "in": "path",
             "name": "pk",
             "required": true,
@@ -22895,11 +24648,11 @@
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/ReportScheduleRestApi.put"
+                "$ref": "#/components/schemas/PermissionViewMenuApi.put"
               }
             }
           },
-          "description": "Report Schedule schema",
+          "description": "Model schema",
           "required": true
         },
         "responses": {
@@ -22908,18 +24661,15 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
-                      "type": "number"
-                    },
                     "result": {
-                      "$ref": "#/components/schemas/ReportScheduleRestApi.put"
+                      "$ref": "#/components/schemas/PermissionViewMenuApi.put"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Report Schedule changed"
+            "description": "Item changed"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -22927,9 +24677,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
           "404": {
             "$ref": "#/components/responses/404"
           },
@@ -22945,25 +24692,15 @@
             "jwt": []
           }
         ],
-        "summary": "Update a report schedule",
         "tags": [
-          "Report Schedules"
+          "Security Permissions on Resources (View Menus)"
         ]
       }
     },
-    "/api/v1/report/{pk}/log/": {
+    "/api/v1/security/permissions/": {
       "get": {
-        "description": "Gets a list of report schedule logs, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
+        "description": "Get a list of models",
         "parameters": [
-          {
-            "description": "The report schedule id for these logs",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
           {
             "content": {
               "application/json": {
@@ -22986,17 +24723,142 @@
                       "description": "The total record count on the backend",
                       "type": "number"
                     },
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
                     "ids": {
-                      "description": "A list of log ids",
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "list_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "list_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "List Items",
+                      "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
                       "items": {
                         "type": "string"
                       },
-                      "type": "array"
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/PermissionApi.get_list"
+                      },
+                      "type": "array"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Items from Model"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "tags": [
+          "Security Permissions"
+        ]
+      }
+    },
+    "/api/v1/security/permissions/_info": {
+      "get": {
+        "description": "Get metadata information about this API resource",
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_info_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
                     },
-                    "result": {
-                      "description": "The result from the get list query",
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
                       "items": {
-                        "$ref": "#/components/schemas/ReportExecutionLogRestApi.get_list"
+                        "type": "string"
                       },
                       "type": "array"
                     }
@@ -23005,7 +24867,7 @@
                 }
               }
             },
-            "description": "Items from logs"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -23025,17 +24887,16 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of report schedule logs",
         "tags": [
-          "Report Schedules"
+          "Security Permissions"
         ]
       }
     },
-    "/api/v1/report/{pk}/log/{log_id}": {
+    "/api/v1/security/permissions/{pk}": {
       "get": {
+        "description": "Get an item model",
         "parameters": [
           {
-            "description": "The report schedule pk for log",
             "in": "path",
             "name": "pk",
             "required": true,
@@ -23043,15 +24904,6 @@
               "type": "integer"
             }
           },
-          {
-            "description": "The log pk",
-            "in": "path",
-            "name": "log_id",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
           {
             "content": {
               "application/json": {
@@ -23070,19 +24922,51 @@
               "application/json": {
                 "schema": {
                   "properties": {
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
                     "id": {
-                      "description": "The log id",
+                      "description": "The item id",
                       "type": "string"
                     },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
                     "result": {
-                      "$ref": "#/components/schemas/ReportExecutionLogRestApi.get"
+                      "$ref": "#/components/schemas/PermissionApi.get"
+                    },
+                    "show_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "show_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "Show Item Details",
+                      "type": "string"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item log"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -23105,34 +24989,22 @@
             "jwt": []
           }
         ],
-        "summary": "Get a report schedule log",
         "tags": [
-          "Report Schedules"
+          "Security Permissions"
         ]
       }
     },
-    "/api/v1/rowlevelsecurity/": {
-      "delete": {
-        "parameters": [
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_delete_ids_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
-          }
-        ],
+    "/api/v1/security/refresh": {
+      "post": {
+        "description": "Use the refresh token to get a new JWT access token",
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
+                    "access_token": {
+                      "description": "A new refreshed access token",
                       "type": "string"
                     }
                   },
@@ -23140,36 +25012,28 @@
                 }
               }
             },
-            "description": "RLS Rule bulk delete"
+            "description": "Refresh Successful"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
-          "422": {
-            "$ref": "#/components/responses/422"
-          },
           "500": {
             "$ref": "#/components/responses/500"
           }
         },
         "security": [
           {
-            "jwt": []
+            "jwt_refresh": []
           }
         ],
-        "summary": "Bulk delete RLS rules",
         "tags": [
-          "Row Level Security"
+          "Security"
         ]
-      },
+      }
+    },
+    "/api/v1/security/resources/": {
       "get": {
-        "description": "Gets a list of RLS, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
+        "description": "Get a list of models",
         "parameters": [
           {
             "content": {
@@ -23242,7 +25106,7 @@
                     "result": {
                       "description": "The result from the get list query",
                       "items": {
-                        "$ref": "#/components/schemas/RLSRestApi.get_list"
+                        "$ref": "#/components/schemas/ViewMenuApi.get_list"
                       },
                       "type": "array"
                     }
@@ -23271,9 +25135,8 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of RLS",
         "tags": [
-          "Row Level Security"
+          "Security Resources (View Menus)"
         ]
       },
       "post": {
@@ -23281,11 +25144,11 @@
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/RLSRestApi.post"
+                "$ref": "#/components/schemas/ViewMenuApi.post"
               }
             }
           },
-          "description": "RLS schema",
+          "description": "Model schema",
           "required": true
         },
         "responses": {
@@ -23295,17 +25158,17 @@
                 "schema": {
                   "properties": {
                     "id": {
-                      "type": "number"
+                      "type": "string"
                     },
                     "result": {
-                      "$ref": "#/components/schemas/RLSRestApi.post"
+                      "$ref": "#/components/schemas/ViewMenuApi.post"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "RLS Rule added"
+            "description": "Item inserted"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -23313,9 +25176,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -23328,13 +25188,12 @@
             "jwt": []
           }
         ],
-        "summary": "Create a new RLS rule",
         "tags": [
-          "Row Level Security"
+          "Security Resources (View Menus)"
         ]
       }
     },
-    "/api/v1/rowlevelsecurity/_info": {
+    "/api/v1/security/resources/_info": {
       "get": {
         "description": "Get metadata information about this API resource",
         "parameters": [
@@ -23415,28 +25274,74 @@
             "jwt": []
           }
         ],
-        "summary": "Get metadata information about this API resource",
         "tags": [
-          "Row Level Security"
+          "Security Resources (View Menus)"
         ]
       }
     },
-    "/api/v1/rowlevelsecurity/related/{column_name}": {
+    "/api/v1/security/resources/{pk}": {
+      "delete": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Item deleted"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "tags": [
+          "Security Resources (View Menus)"
+        ]
+      },
       "get": {
+        "description": "Get an item model",
         "parameters": [
           {
             "in": "path",
-            "name": "column_name",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
           },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
+                  "$ref": "#/components/schemas/get_item_schema"
                 }
               }
             },
@@ -23449,11 +25354,52 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/RelatedResponseSchema"
+                  "properties": {
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "id": {
+                      "description": "The item id",
+                      "type": "string"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/ViewMenuApi.get"
+                    },
+                    "show_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "show_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "Show Item Details",
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Related column data"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -23464,6 +25410,9 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -23473,14 +25422,11 @@
             "jwt": []
           }
         ],
-        "summary": "Get related fields data",
         "tags": [
-          "Row Level Security"
+          "Security Resources (View Menus)"
         ]
-      }
-    },
-    "/api/v1/rowlevelsecurity/{pk}": {
-      "delete": {
+      },
+      "put": {
         "parameters": [
           {
             "in": "path",
@@ -23491,21 +25437,38 @@
             }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/ViewMenuApi.put"
+              }
+            }
+          },
+          "description": "Model schema",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "result": {
+                      "$ref": "#/components/schemas/ViewMenuApi.put"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item deleted"
+            "description": "Item changed"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
           },
           "404": {
             "$ref": "#/components/responses/404"
@@ -23522,27 +25485,20 @@
             "jwt": []
           }
         ],
-        "summary": "Delete an RLS",
         "tags": [
-          "Row Level Security"
+          "Security Resources (View Menus)"
         ]
-      },
+      }
+    },
+    "/api/v1/security/roles/": {
       "get": {
-        "description": "Get an item model",
+        "description": "Get a list of models",
         "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_item_schema"
+                  "$ref": "#/components/schemas/get_list_schema"
                 }
               }
             },
@@ -23556,6 +25512,10 @@
               "application/json": {
                 "schema": {
                   "properties": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
                     "description_columns": {
                       "properties": {
                         "column_name": {
@@ -23566,9 +25526,12 @@
                       },
                       "type": "object"
                     },
-                    "id": {
-                      "description": "The item id",
-                      "type": "string"
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
                     },
                     "label_columns": {
                       "properties": {
@@ -23580,27 +25543,38 @@
                       },
                       "type": "object"
                     },
-                    "result": {
-                      "$ref": "#/components/schemas/RLSRestApi.get"
-                    },
-                    "show_columns": {
+                    "list_columns": {
                       "description": "A list of columns",
                       "items": {
                         "type": "string"
                       },
                       "type": "array"
                     },
-                    "show_title": {
+                    "list_title": {
                       "description": "A title to render. Will be translated by babel",
-                      "example": "Show Item Details",
+                      "example": "List Items",
                       "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/SupersetRoleApi.get_list"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "Items from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -23608,9 +25582,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -23623,52 +25594,40 @@
             "jwt": []
           }
         ],
-        "summary": "Get an RLS",
         "tags": [
-          "Row Level Security"
+          "Security Roles"
         ]
       },
-      "put": {
-        "parameters": [
-          {
-            "description": "The Rule pk",
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
+      "post": {
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/RLSRestApi.put"
+                "$ref": "#/components/schemas/SupersetRoleApi.post"
               }
             }
           },
-          "description": "RLS schema",
+          "description": "Model schema",
           "required": true
         },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
                     "id": {
-                      "type": "number"
+                      "type": "string"
                     },
                     "result": {
-                      "$ref": "#/components/schemas/RLSRestApi.put"
+                      "$ref": "#/components/schemas/SupersetRoleApi.post"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Rule changed"
+            "description": "Item inserted"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -23676,12 +25635,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "403": {
-            "$ref": "#/components/responses/403"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -23694,20 +25647,20 @@
             "jwt": []
           }
         ],
-        "summary": "Update an RLS rule",
         "tags": [
-          "Row Level Security"
+          "Security Roles"
         ]
       }
     },
-    "/api/v1/saved_query/": {
-      "delete": {
+    "/api/v1/security/roles/_info": {
+      "get": {
+        "description": "Get metadata information about this API resource",
         "parameters": [
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_delete_ids_schema"
+                  "$ref": "#/components/schemas/get_info_schema"
                 }
               }
             },
@@ -23721,22 +25674,53 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Saved queries bulk delete"
+            "description": "Item from Model"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -23749,107 +25733,108 @@
             "jwt": []
           }
         ],
-        "summary": "Bulk delete saved queries",
         "tags": [
-          "Queries"
+          "Security Roles"
         ]
-      },
+      }
+    },
+    "/api/v1/security/roles/search/": {
       "get": {
-        "description": "Gets a list of saved queries, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata.",
+        "description": "Fetch a paginated list of roles with user and permission IDs.",
         "parameters": [
           {
+            "in": "query",
+            "name": "q",
+            "schema": {
+              "properties": {
+                "filters": {
+                  "items": {
+                    "properties": {
+                      "col": {
+                        "enum": [
+                          "user_ids",
+                          "permission_ids",
+                          "name"
+                        ],
+                        "type": "string"
+                      },
+                      "value": {
+                        "type": "string"
+                      }
+                    },
+                    "type": "object"
+                  },
+                  "type": "array"
+                },
+                "order_column": {
+                  "default": "id",
+                  "enum": [
+                    "id",
+                    "name"
+                  ],
+                  "type": "string"
+                },
+                "order_direction": {
+                  "default": "asc",
+                  "enum": [
+                    "asc",
+                    "desc"
+                  ],
+                  "type": "string"
+                },
+                "page": {
+                  "default": 0,
+                  "type": "integer"
+                },
+                "page_size": {
+                  "default": 10,
+                  "type": "integer"
+                }
+              },
+              "type": "object"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_list_schema"
+                  "$ref": "#/components/schemas/RolesResponseSchema"
                 }
               }
             },
-            "in": "query",
-            "name": "q"
-          }
-        ],
-        "responses": {
-          "200": {
+            "description": "Successfully retrieved roles"
+          },
+          "400": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "count": {
-                      "description": "The total record count on the backend",
-                      "type": "number"
-                    },
-                    "description_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The description for the column name. Will be translated by babel",
-                          "example": "A Nice description for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "ids": {
-                      "description": "A list of item ids, useful when you don't know the column id",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "label_columns": {
-                      "properties": {
-                        "column_name": {
-                          "description": "The label for the column name. Will be translated by babel",
-                          "example": "A Nice label for the column",
-                          "type": "string"
-                        }
-                      },
-                      "type": "object"
-                    },
-                    "list_columns": {
-                      "description": "A list of columns",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "list_title": {
-                      "description": "A title to render. Will be translated by babel",
-                      "example": "List Items",
+                    "error": {
                       "type": "string"
-                    },
-                    "order_columns": {
-                      "description": "A list of allowed columns to sort",
-                      "items": {
-                        "type": "string"
-                      },
-                      "type": "array"
-                    },
-                    "result": {
-                      "description": "The result from the get list query",
-                      "items": {
-                        "$ref": "#/components/schemas/SavedQueryRestApi.get_list"
-                      },
-                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Items from Model"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
-          },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
-          "422": {
-            "$ref": "#/components/responses/422"
+            "description": "Bad request (invalid input)"
           },
-          "500": {
-            "$ref": "#/components/responses/500"
+          "403": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "error": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Forbidden"
           }
         },
         "security": [
@@ -23857,47 +25842,42 @@
             "jwt": []
           }
         ],
-        "summary": "Get a list of saved queries",
+        "summary": "List roles",
         "tags": [
-          "Queries"
+          "Security Roles"
         ]
-      },
-      "post": {
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/SavedQueryRestApi.post"
-              }
+      }
+    },
+    "/api/v1/security/roles/{pk}": {
+      "delete": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
             }
-          },
-          "description": "Model schema",
-          "required": true
-        },
+          }
+        ],
         "responses": {
-          "201": {
+          "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "id": {
+                    "message": {
                       "type": "string"
-                    },
-                    "result": {
-                      "$ref": "#/components/schemas/SavedQueryRestApi.post"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item inserted"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
+            "description": "Item deleted"
           },
-          "401": {
-            "$ref": "#/components/responses/401"
+          "404": {
+            "$ref": "#/components/responses/404"
           },
           "422": {
             "$ref": "#/components/responses/422"
@@ -23911,21 +25891,26 @@
             "jwt": []
           }
         ],
-        "summary": "Create a saved query",
         "tags": [
-          "Queries"
+          "Security Roles"
         ]
-      }
-    },
-    "/api/v1/saved_query/_info": {
+      },
       "get": {
-        "description": "Get metadata information about this API resource",
+        "description": "Get an item model",
         "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_info_schema"
+                  "$ref": "#/components/schemas/get_item_schema"
                 }
               }
             },
@@ -23939,39 +25924,44 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "add_columns": {
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
                       "type": "object"
                     },
-                    "edit_columns": {
-                      "type": "object"
+                    "id": {
+                      "description": "The item id",
+                      "type": "string"
                     },
-                    "filters": {
+                    "label_columns": {
                       "properties": {
                         "column_name": {
-                          "items": {
-                            "properties": {
-                              "name": {
-                                "description": "The filter name. Will be translated by babel",
-                                "type": "string"
-                              },
-                              "operator": {
-                                "description": "The filter operation key to use on list filters",
-                                "type": "string"
-                              }
-                            },
-                            "type": "object"
-                          },
-                          "type": "array"
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
                         }
                       },
                       "type": "object"
                     },
-                    "permissions": {
-                      "description": "The user permissions for this API resource",
+                    "result": {
+                      "$ref": "#/components/schemas/SupersetRoleApi.get"
+                    },
+                    "show_columns": {
+                      "description": "A list of columns",
                       "items": {
                         "type": "string"
                       },
                       "type": "array"
+                    },
+                    "show_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "Show Item Details",
+                      "type": "string"
                     }
                   },
                   "type": "object"
@@ -23986,6 +25976,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -23998,45 +25991,47 @@
             "jwt": []
           }
         ],
-        "summary": "Get metadata information about this API resource",
         "tags": [
-          "Queries"
+          "Security Roles"
         ]
-      }
-    },
-    "/api/v1/saved_query/distinct/{column_name}": {
-      "get": {
+      },
+      "put": {
         "parameters": [
           {
             "in": "path",
-            "name": "column_name",
+            "name": "pk",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
-          },
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/SupersetRoleApi.put"
+              }
+            }
+          },
+          "description": "Model schema",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/DistincResponseSchema"
+                  "properties": {
+                    "result": {
+                      "$ref": "#/components/schemas/SupersetRoleApi.put"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Distinct field data"
+            "description": "Item changed"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -24047,6 +26042,9 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -24056,100 +26054,32 @@
             "jwt": []
           }
         ],
-        "summary": "Get distinct values from field data",
         "tags": [
-          "Queries"
+          "Security Roles"
         ]
       }
     },
-    "/api/v1/saved_query/export/": {
-      "get": {
+    "/api/v1/security/roles/{role_id}/permissions": {
+      "post": {
         "parameters": [
           {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_export_ids_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
-          }
-        ],
-        "responses": {
-          "200": {
-            "content": {
-              "application/zip": {
-                "schema": {
-                  "format": "binary",
-                  "type": "string"
-                }
-              }
-            },
-            "description": "A zip file with saved query(ies) and database(s) as YAML"
-          },
-          "400": {
-            "$ref": "#/components/responses/400"
-          },
-          "401": {
-            "$ref": "#/components/responses/401"
-          },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
-          "500": {
-            "$ref": "#/components/responses/500"
-          }
-        },
-        "security": [
-          {
-            "jwt": []
+            "in": "path",
+            "name": "role_id",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
           }
         ],
-        "summary": "Download multiple saved queries as YAML files",
-        "tags": [
-          "Queries"
-        ]
-      }
-    },
-    "/api/v1/saved_query/import/": {
-      "post": {
         "requestBody": {
           "content": {
-            "multipart/form-data": {
+            "application/json": {
               "schema": {
-                "properties": {
-                  "formData": {
-                    "description": "upload file (ZIP)",
-                    "format": "binary",
-                    "type": "string"
-                  },
-                  "overwrite": {
-                    "description": "overwrite existing saved queries?",
-                    "type": "boolean"
-                  },
-                  "passwords": {
-                    "description": "JSON map of passwords for each featured database in the ZIP file. If the ZIP includes a database config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_passwords": {
-                    "description": "JSON map of passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the password should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_key_passwords": {
-                    "description": "JSON map of private_key_passwords for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key_password\"}`.",
-                    "type": "string"
-                  },
-                  "ssh_tunnel_private_keys": {
-                    "description": "JSON map of private_keys for each ssh_tunnel associated to a featured database in the ZIP file. If the ZIP includes a ssh_tunnel config in the path `databases/MyDatabase.yaml`, the private_key should be provided in the following format: `{\"databases/MyDatabase.yaml\": \"my_private_key\"}`.",
-                    "type": "string"
-                  }
-                },
-                "type": "object"
+                "$ref": "#/components/schemas/RolePermissionPostSchema"
               }
             }
           },
+          "description": "Add role permissions schema",
           "required": true
         },
         "responses": {
@@ -24158,15 +26088,15 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "result": {
+                      "$ref": "#/components/schemas/RolePermissionPostSchema"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Saved Query import result"
+            "description": "Permissions added"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -24174,6 +26104,9 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -24186,33 +26119,21 @@
             "jwt": []
           }
         ],
-        "summary": "Import saved queries with associated databases",
         "tags": [
-          "Queries"
+          "Security Roles"
         ]
       }
     },
-    "/api/v1/saved_query/related/{column_name}": {
+    "/api/v1/security/roles/{role_id}/permissions/": {
       "get": {
         "parameters": [
           {
             "in": "path",
-            "name": "column_name",
+            "name": "role_id",
             "required": true,
             "schema": {
-              "type": "string"
+              "type": "integer"
             }
-          },
-          {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "$ref": "#/components/schemas/get_related_schema"
-                }
-              }
-            },
-            "in": "query",
-            "name": "q"
           }
         ],
         "responses": {
@@ -24220,11 +26141,16 @@
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/RelatedResponseSchema"
+                  "properties": {
+                    "result": {
+                      "$ref": "#/components/schemas/RolePermissionListSchema"
+                    }
+                  },
+                  "type": "object"
                 }
               }
             },
-            "description": "Related column data"
+            "description": "List of permissions"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -24235,6 +26161,9 @@
           "404": {
             "$ref": "#/components/responses/404"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -24244,39 +26173,55 @@
             "jwt": []
           }
         ],
-        "summary": "Get related fields data",
         "tags": [
-          "Queries"
+          "Security Roles"
         ]
       }
     },
-    "/api/v1/saved_query/{pk}": {
-      "delete": {
+    "/api/v1/security/roles/{role_id}/users": {
+      "put": {
         "parameters": [
           {
             "in": "path",
-            "name": "pk",
+            "name": "role_id",
             "required": true,
             "schema": {
               "type": "integer"
             }
           }
         ],
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/RoleUserPutSchema"
+              }
+            }
+          },
+          "description": "Update role users schema",
+          "required": true
+        },
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "message": {
-                      "type": "string"
+                    "result": {
+                      "$ref": "#/components/schemas/RoleUserPutSchema"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item deleted"
+            "description": "Role users updated"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
           },
           "404": {
             "$ref": "#/components/responses/404"
@@ -24293,27 +26238,20 @@
             "jwt": []
           }
         ],
-        "summary": "Delete a saved query",
         "tags": [
-          "Queries"
+          "Security Roles"
         ]
-      },
+      }
+    },
+    "/api/v1/security/users/": {
       "get": {
-        "description": "Get an item model",
+        "description": "Get a list of models",
         "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          },
           {
             "content": {
               "application/json": {
                 "schema": {
-                  "$ref": "#/components/schemas/get_item_schema"
+                  "$ref": "#/components/schemas/get_list_schema"
                 }
               }
             },
@@ -24327,6 +26265,10 @@
               "application/json": {
                 "schema": {
                   "properties": {
+                    "count": {
+                      "description": "The total record count on the backend",
+                      "type": "number"
+                    },
                     "description_columns": {
                       "properties": {
                         "column_name": {
@@ -24337,9 +26279,12 @@
                       },
                       "type": "object"
                     },
-                    "id": {
-                      "description": "The item id",
-                      "type": "string"
+                    "ids": {
+                      "description": "A list of item ids, useful when you don't know the column id",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
                     },
                     "label_columns": {
                       "properties": {
@@ -24351,27 +26296,38 @@
                       },
                       "type": "object"
                     },
-                    "result": {
-                      "$ref": "#/components/schemas/SavedQueryRestApi.get"
-                    },
-                    "show_columns": {
+                    "list_columns": {
                       "description": "A list of columns",
                       "items": {
                         "type": "string"
                       },
                       "type": "array"
                     },
-                    "show_title": {
+                    "list_title": {
                       "description": "A title to render. Will be translated by babel",
-                      "example": "Show Item Details",
+                      "example": "List Items",
                       "type": "string"
+                    },
+                    "order_columns": {
+                      "description": "A list of allowed columns to sort",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "result": {
+                      "description": "The result from the get list query",
+                      "items": {
+                        "$ref": "#/components/schemas/SupersetUserApi.get_list"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Item from Model"
+            "description": "Items from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -24379,9 +26335,6 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "404": {
-            "$ref": "#/components/responses/404"
-          },
           "422": {
             "$ref": "#/components/responses/422"
           },
@@ -24394,27 +26347,16 @@
             "jwt": []
           }
         ],
-        "summary": "Get a saved query",
         "tags": [
-          "Queries"
+          "Security Users"
         ]
       },
-      "put": {
-        "parameters": [
-          {
-            "in": "path",
-            "name": "pk",
-            "required": true,
-            "schema": {
-              "type": "integer"
-            }
-          }
-        ],
+      "post": {
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "$ref": "#/components/schemas/SavedQueryRestApi.put"
+                "$ref": "#/components/schemas/SupersetUserApi.post"
               }
             }
           },
@@ -24422,13 +26364,13 @@
           "required": true
         },
         "responses": {
-          "200": {
+          "201": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
                     "result": {
-                      "$ref": "#/components/schemas/SavedQueryRestApi.put"
+                      "$ref": "#/components/schemas/SupersetUserApi.post"
                     }
                   },
                   "type": "object"
@@ -24458,33 +26400,83 @@
             "jwt": []
           }
         ],
-        "summary": "Update a saved query",
         "tags": [
-          "Queries"
+          "Security Users"
         ]
       }
     },
-    "/api/v1/security/csrf_token/": {
+    "/api/v1/security/users/_info": {
       "get": {
+        "description": "Get metadata information about this API resource",
+        "parameters": [
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_info_schema"
+                }
+              }
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "result": {
-                      "type": "string"
+                    "add_columns": {
+                      "type": "object"
+                    },
+                    "edit_columns": {
+                      "type": "object"
+                    },
+                    "filters": {
+                      "properties": {
+                        "column_name": {
+                          "items": {
+                            "properties": {
+                              "name": {
+                                "description": "The filter name. Will be translated by babel",
+                                "type": "string"
+                              },
+                              "operator": {
+                                "description": "The filter operation key to use on list filters",
+                                "type": "string"
+                              }
+                            },
+                            "type": "object"
+                          },
+                          "type": "array"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "permissions": {
+                      "description": "The user permissions for this API resource",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Result contains the CSRF token"
+            "description": "Item from Model"
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
           },
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -24494,32 +26486,124 @@
             "jwt": []
           }
         ],
-        "summary": "Get the CSRF token",
         "tags": [
-          "Security"
+          "Security Users"
         ]
       }
     },
-    "/api/v1/security/guest_token/": {
-      "post": {
-        "requestBody": {
-          "content": {
-            "application/json": {
-              "schema": {
-                "$ref": "#/components/schemas/GuestTokenCreate"
+    "/api/v1/security/users/{pk}": {
+      "delete": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "message": {
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Item deleted"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "tags": [
+          "Security Users"
+        ]
+      },
+      "get": {
+        "description": "Get an item model",
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          },
+          {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "$ref": "#/components/schemas/get_item_schema"
+                }
               }
-            }
-          },
-          "description": "Parameters for the guest token",
-          "required": true
-        },
+            },
+            "in": "query",
+            "name": "q"
+          }
+        ],
         "responses": {
           "200": {
             "content": {
               "application/json": {
                 "schema": {
                   "properties": {
-                    "token": {
+                    "description_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The description for the column name. Will be translated by babel",
+                          "example": "A Nice description for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "id": {
+                      "description": "The item id",
+                      "type": "string"
+                    },
+                    "label_columns": {
+                      "properties": {
+                        "column_name": {
+                          "description": "The label for the column name. Will be translated by babel",
+                          "example": "A Nice label for the column",
+                          "type": "string"
+                        }
+                      },
+                      "type": "object"
+                    },
+                    "result": {
+                      "$ref": "#/components/schemas/SupersetUserApi.get"
+                    },
+                    "show_columns": {
+                      "description": "A list of columns",
+                      "items": {
+                        "type": "string"
+                      },
+                      "type": "array"
+                    },
+                    "show_title": {
+                      "description": "A title to render. Will be translated by babel",
+                      "example": "Show Item Details",
                       "type": "string"
                     }
                   },
@@ -24527,7 +26611,7 @@
                 }
               }
             },
-            "description": "Result contains the guest token"
+            "description": "Item from Model"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -24535,6 +26619,12 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
           "500": {
             "$ref": "#/components/responses/500"
           }
@@ -24544,49 +26634,30 @@
             "jwt": []
           }
         ],
-        "summary": "Get a guest token",
         "tags": [
-          "Security"
+          "Security Users"
         ]
-      }
-    },
-    "/api/v1/security/login": {
-      "post": {
-        "description": "Authenticate and get a JWT access and refresh token",
+      },
+      "put": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "pk",
+            "required": true,
+            "schema": {
+              "type": "integer"
+            }
+          }
+        ],
         "requestBody": {
           "content": {
             "application/json": {
               "schema": {
-                "properties": {
-                  "password": {
-                    "description": "The password for authentication",
-                    "example": "complex-password",
-                    "type": "string"
-                  },
-                  "provider": {
-                    "description": "Choose an authentication provider",
-                    "enum": [
-                      "db",
-                      "ldap"
-                    ],
-                    "example": "db",
-                    "type": "string"
-                  },
-                  "refresh": {
-                    "description": "If true a refresh token is provided also",
-                    "example": true,
-                    "type": "boolean"
-                  },
-                  "username": {
-                    "description": "The username for authentication",
-                    "example": "admin",
-                    "type": "string"
-                  }
-                },
-                "type": "object"
+                "$ref": "#/components/schemas/SupersetUserApi.put"
               }
             }
           },
+          "description": "Model schema",
           "required": true
         },
         "responses": {
@@ -24595,18 +26666,15 @@
               "application/json": {
                 "schema": {
                   "properties": {
-                    "access_token": {
-                      "type": "string"
-                    },
-                    "refresh_token": {
-                      "type": "string"
+                    "result": {
+                      "$ref": "#/components/schemas/SupersetUserApi.put"
                     }
                   },
                   "type": "object"
                 }
               }
             },
-            "description": "Authentication Successful"
+            "description": "Item changed"
           },
           "400": {
             "$ref": "#/components/responses/400"
@@ -24614,37 +26682,11 @@
           "401": {
             "$ref": "#/components/responses/401"
           },
-          "500": {
-            "$ref": "#/components/responses/500"
-          }
-        },
-        "tags": [
-          "Security"
-        ]
-      }
-    },
-    "/api/v1/security/refresh": {
-      "post": {
-        "description": "Use the refresh token to get a new JWT access token",
-        "responses": {
-          "200": {
-            "content": {
-              "application/json": {
-                "schema": {
-                  "properties": {
-                    "access_token": {
-                      "description": "A new refreshed access token",
-                      "type": "string"
-                    }
-                  },
-                  "type": "object"
-                }
-              }
-            },
-            "description": "Refresh Successful"
+          "404": {
+            "$ref": "#/components/responses/404"
           },
-          "401": {
-            "$ref": "#/components/responses/401"
+          "422": {
+            "$ref": "#/components/responses/422"
           },
           "500": {
             "$ref": "#/components/responses/500"
@@ -24652,11 +26694,11 @@
         },
         "security": [
           {
-            "jwt_refresh": []
+            "jwt": []
           }
         ],
         "tags": [
-          "Security"
+          "Security Users"
         ]
       }
     },
@@ -24916,6 +26958,119 @@
         ]
       }
     },
+    "/api/v1/sqllab/permalink": {
+      "post": {
+        "requestBody": {
+          "content": {
+            "application/json": {
+              "schema": {
+                "$ref": "#/components/schemas/ExplorePermalinkStateSchema"
+              }
+            }
+          },
+          "required": true
+        },
+        "responses": {
+          "201": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "key": {
+                      "description": "The key to retrieve the permanent link data.",
+                      "type": "string"
+                    },
+                    "url": {
+                      "description": "permanent link.",
+                      "type": "string"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "The permanent link was stored successfully."
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Create a new permanent link",
+        "tags": [
+          "SQL Lab Permanent Link"
+        ]
+      }
+    },
+    "/api/v1/sqllab/permalink/{key}": {
+      "get": {
+        "parameters": [
+          {
+            "in": "path",
+            "name": "key",
+            "required": true,
+            "schema": {
+              "type": "string"
+            }
+          }
+        ],
+        "responses": {
+          "200": {
+            "content": {
+              "application/json": {
+                "schema": {
+                  "properties": {
+                    "state": {
+                      "description": "The stored state",
+                      "type": "object"
+                    }
+                  },
+                  "type": "object"
+                }
+              }
+            },
+            "description": "Returns the stored form_data."
+          },
+          "400": {
+            "$ref": "#/components/responses/400"
+          },
+          "401": {
+            "$ref": "#/components/responses/401"
+          },
+          "404": {
+            "$ref": "#/components/responses/404"
+          },
+          "422": {
+            "$ref": "#/components/responses/422"
+          },
+          "500": {
+            "$ref": "#/components/responses/500"
+          }
+        },
+        "security": [
+          {
+            "jwt": []
+          }
+        ],
+        "summary": "Get permanent link state for SQLLab editor.",
+        "tags": [
+          "SQL Lab Permanent Link"
+        ]
+      }
+    },
     "/api/v1/sqllab/results/": {
       "get": {
         "parameters": [
diff --git a/docs/yarn.lock b/docs/yarn.lock
index 471ba841236e087f82f6903d7c68edf29fff7bb4..c23e15f21b3552462bd383376707848c72163051 100644
--- a/docs/yarn.lock
+++ b/docs/yarn.lock
@@ -1092,20 +1092,13 @@
     core-js-pure "^3.30.2"
     regenerator-runtime "^0.14.0"
 
-"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.25.9", "@babel/runtime@^7.8.4":
+"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.1", "@babel/runtime@^7.10.3", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.7", "@babel/runtime@^7.18.0", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.0", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.5", "@babel/runtime@^7.23.2", "@babel/runtime@^7.23.6", "@babel/runtime@^7.23.9", "@babel/runtime@^7.24.4", "@babel/runtime@^7.24.7", "@babel/runtime@^7.24.8", "@babel/runtime@^7.25.7", "@babel/runtime@^7.25.9", "@babel/runtime@^7.26.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4":
   version "7.27.0"
   resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.27.0.tgz#fbee7cf97c709518ecc1f590984481d5460d4762"
   integrity sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==
   dependencies:
     regenerator-runtime "^0.14.0"
 
-"@babel/runtime@^7.10.1", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.16.7", "@babel/runtime@^7.18.0", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.0", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.5", "@babel/runtime@^7.23.2", "@babel/runtime@^7.23.6", "@babel/runtime@^7.23.9", "@babel/runtime@^7.24.4", "@babel/runtime@^7.24.7", "@babel/runtime@^7.24.8", "@babel/runtime@^7.25.7", "@babel/runtime@^7.26.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2":
-  version "7.26.10"
-  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.10.tgz#a07b4d8fa27af131a633d7b3524db803eb4764c2"
-  integrity sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==
-  dependencies:
-    regenerator-runtime "^0.14.0"
-
 "@babel/template@^7.25.9", "@babel/template@^7.26.9", "@babel/template@^7.27.0":
   version "7.27.0"
   resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.0.tgz#b253e5406cc1df1c57dcd18f11760c2dbf40c0b4"
@@ -3616,7 +3609,7 @@
   dependencies:
     "@types/istanbul-lib-report" "*"
 
-"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
+"@types/json-schema@*", "@types/json-schema@^7.0.15", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
   version "7.0.15"
   resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
   integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
@@ -4062,16 +4055,11 @@ acorn-walk@^8.0.0:
   dependencies:
     acorn "^8.11.0"
 
-acorn@^8.0.0, acorn@^8.0.4, acorn@^8.11.0, acorn@^8.14.0, acorn@^8.8.2:
+acorn@^8.0.0, acorn@^8.0.4, acorn@^8.11.0, acorn@^8.14.0, acorn@^8.8.2, acorn@^8.9.0:
   version "8.14.1"
   resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.1.tgz#721d5dc10f7d5b5609a891773d47731796935dfb"
   integrity sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==
 
-acorn@^8.9.0:
-  version "8.14.0"
-  resolved "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz"
-  integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==
-
 address@^1.0.1, address@^1.1.2:
   version "1.2.2"
   resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e"
@@ -4191,10 +4179,10 @@ ansi-styles@^6.1.0:
   resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
   integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
 
-antd@^5.24.5:
-  version "5.24.5"
-  resolved "https://registry.yarnpkg.com/antd/-/antd-5.24.5.tgz#b0976a113163888d1477f9e666c3c23352b098e9"
-  integrity sha512-1lAv/G+9ewQanyoAo3JumQmIlVxwo5QwWGb6QCHYc40Cq0NxC/EzITcjsgq1PSaTUpLkKq8A2l7Fjtu47vqQBg==
+antd@^5.24.9:
+  version "5.24.9"
+  resolved "https://registry.yarnpkg.com/antd/-/antd-5.24.9.tgz#c5862e02ed770bd95e312961f4f0b7b158a004d9"
+  integrity sha512-liB+Y/JwD5/KSKbK1Z1EVAbWcoWYvWJ1s97AbbT+mOdigpJQuWwH7kG8IXNEljI7onvj0DdD43TXhSRLUu9AMA==
   dependencies:
     "@ant-design/colors" "^7.2.0"
     "@ant-design/cssinjs" "^1.23.0"
@@ -4218,13 +4206,13 @@ antd@^5.24.5:
     rc-drawer "~7.2.0"
     rc-dropdown "~4.2.1"
     rc-field-form "~2.7.0"
-    rc-image "~7.11.1"
-    rc-input "~1.7.3"
-    rc-input-number "~9.4.0"
-    rc-mentions "~2.19.1"
+    rc-image "~7.12.0"
+    rc-input "~1.8.0"
+    rc-input-number "~9.5.0"
+    rc-mentions "~2.20.0"
     rc-menu "~9.16.1"
     rc-motion "^2.9.5"
-    rc-notification "~5.6.3"
+    rc-notification "~5.6.4"
     rc-pagination "~5.1.0"
     rc-picker "~4.11.3"
     rc-progress "~4.0.0"
@@ -4236,8 +4224,8 @@ antd@^5.24.5:
     rc-steps "~6.0.1"
     rc-switch "~4.1.0"
     rc-table "~7.50.4"
-    rc-tabs "~15.5.1"
-    rc-textarea "~1.9.0"
+    rc-tabs "~15.6.1"
+    rc-textarea "~1.10.0"
     rc-tooltip "~6.4.0"
     rc-tree "~5.13.1"
     rc-tree-select "~5.27.0"
@@ -4658,7 +4646,7 @@ call-bind@^1.0.7, call-bind@^1.0.8:
     get-intrinsic "^1.2.4"
     set-function-length "^1.2.2"
 
-call-bound@^1.0.2, call-bound@^1.0.3:
+call-bound@^1.0.2, call-bound@^1.0.3, call-bound@^1.0.4:
   version "1.0.4"
   resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a"
   integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==
@@ -5679,12 +5667,7 @@ data-view-byte-offset@^1.0.1:
     es-errors "^1.3.0"
     is-data-view "^1.0.1"
 
-dayjs@^1.11.11:
-  version "1.11.12"
-  resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.12.tgz"
-  integrity sha512-Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg==
-
-dayjs@^1.11.13:
+dayjs@^1.11.11, dayjs@^1.11.13:
   version "1.11.13"
   resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c"
   integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==
@@ -6264,10 +6247,10 @@ escape-string-regexp@^5.0.0:
   resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8"
   integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
 
-eslint-config-prettier@^10.1.1:
-  version "10.1.1"
-  resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.1.tgz#cf0ff6e5c4e7e15f129f1f1ce2a5ecba92dec132"
-  integrity sha512-4EQQr6wXwS+ZJSzaR5ZCrYgLxqvUjdXctaEtBqHcbkW944B1NQyO4qpdHQbXBONfwxXdkAY81HH4+LUfrg+zPw==
+eslint-config-prettier@^10.1.2:
+  version "10.1.2"
+  resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.2.tgz#31a4b393c40c4180202c27e829af43323bf85276"
+  integrity sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==
 
 eslint-plugin-prettier@^4.0.0:
   version "4.2.1"
@@ -6276,10 +6259,10 @@ eslint-plugin-prettier@^4.0.0:
   dependencies:
     prettier-linter-helpers "^1.0.0"
 
-eslint-plugin-react@^7.0.0:
-  version "7.37.4"
-  resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.4.tgz"
-  integrity sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==
+eslint-plugin-react@^7.37.5:
+  version "7.37.5"
+  resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz#2975511472bdda1b272b34d779335c9b0e877065"
+  integrity sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==
   dependencies:
     array-includes "^3.1.8"
     array.prototype.findlast "^1.2.5"
@@ -6291,7 +6274,7 @@ eslint-plugin-react@^7.0.0:
     hasown "^2.0.2"
     jsx-ast-utils "^2.4.1 || ^3.0.0"
     minimatch "^3.1.2"
-    object.entries "^1.1.8"
+    object.entries "^1.1.9"
     object.fromentries "^2.0.8"
     object.values "^1.2.1"
     prop-types "^15.8.1"
@@ -8233,10 +8216,10 @@ less-loader@^11.0.0:
   resolved "https://registry.npmjs.org/less-loader/-/less-loader-11.1.4.tgz"
   integrity sha512-6/GrYaB6QcW6Vj+/9ZPgKKs6G10YZai/l/eJ4SLwbzqNTBsAqt5hSLVF47TgsiBxV1P6eAU0GYRH3YRuQU9V3A==
 
-less@^4.2.2:
-  version "4.2.2"
-  resolved "https://registry.npmjs.org/less/-/less-4.2.2.tgz"
-  integrity sha512-tkuLHQlvWUTeQ3doAqnHbNn8T6WX1KA8yvbKG9x4VtKtIjHsVKQZCH11zRgAfbDAXC2UNIg/K9BYAAcEzUIrNg==
+less@^4.3.0:
+  version "4.3.0"
+  resolved "https://registry.yarnpkg.com/less/-/less-4.3.0.tgz#ef0cfc260a9ca8079ed8d0e3512bda8a12c82f2a"
+  integrity sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==
   dependencies:
     copy-anything "^2.0.1"
     parse-node-version "^1.0.1"
@@ -9436,14 +9419,15 @@ object.assign@^4.1.0, object.assign@^4.1.4, object.assign@^4.1.7:
     has-symbols "^1.1.0"
     object-keys "^1.1.1"
 
-object.entries@^1.1.8:
-  version "1.1.8"
-  resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz"
-  integrity sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==
+object.entries@^1.1.9:
+  version "1.1.9"
+  resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.9.tgz#e4770a6a1444afb61bd39f984018b5bede25f8b3"
+  integrity sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==
   dependencies:
-    call-bind "^1.0.7"
+    call-bind "^1.0.8"
+    call-bound "^1.0.4"
     define-properties "^1.2.1"
-    es-object-atoms "^1.0.0"
+    es-object-atoms "^1.1.1"
 
 object.fromentries@^2.0.8:
   version "2.0.8"
@@ -10692,10 +10676,10 @@ rc-field-form@~2.7.0:
     "@rc-component/async-validator" "^5.0.3"
     rc-util "^5.32.2"
 
-rc-image@~7.11.1:
-  version "7.11.1"
-  resolved "https://registry.yarnpkg.com/rc-image/-/rc-image-7.11.1.tgz#3ab290708dc053d3681de94186522e4e594f6772"
-  integrity sha512-XuoWx4KUXg7hNy5mRTy1i8c8p3K8boWg6UajbHpDXS5AlRVucNfTi5YxTtPBTBzegxAZpvuLfh3emXFt6ybUdA==
+rc-image@~7.12.0:
+  version "7.12.0"
+  resolved "https://registry.yarnpkg.com/rc-image/-/rc-image-7.12.0.tgz#95e9314701e668217d113c1f29b4f01ac025cafe"
+  integrity sha512-cZ3HTyyckPnNnUb9/DRqduqzLfrQRyi+CdHjdqgsyDpI3Ln5UX1kXnAhPBSJj9pVRzwRFgqkN7p9b6HBDjmu/Q==
   dependencies:
     "@babel/runtime" "^7.11.2"
     "@rc-component/portal" "^1.0.2"
@@ -10704,37 +10688,37 @@ rc-image@~7.11.1:
     rc-motion "^2.6.2"
     rc-util "^5.34.1"
 
-rc-input-number@~9.4.0:
-  version "9.4.0"
-  resolved "https://registry.npmjs.org/rc-input-number/-/rc-input-number-9.4.0.tgz"
-  integrity sha512-Tiy4DcXcFXAf9wDhN8aUAyMeCLHJUHA/VA/t7Hj8ZEx5ETvxG7MArDOSE6psbiSCo+vJPm4E3fGN710ITVn6GA==
+rc-input-number@~9.5.0:
+  version "9.5.0"
+  resolved "https://registry.yarnpkg.com/rc-input-number/-/rc-input-number-9.5.0.tgz#b47963d0f2cbd85ab2f1badfdc089a904c073f38"
+  integrity sha512-bKaEvB5tHebUURAEXw35LDcnRZLq3x1k7GxfAqBMzmpHkDGzjAtnUL8y4y5N15rIFIg5IJgwr211jInl3cipag==
   dependencies:
     "@babel/runtime" "^7.10.1"
     "@rc-component/mini-decimal" "^1.0.1"
     classnames "^2.2.5"
-    rc-input "~1.7.1"
+    rc-input "~1.8.0"
     rc-util "^5.40.1"
 
-rc-input@~1.7.1, rc-input@~1.7.3:
-  version "1.7.3"
-  resolved "https://registry.yarnpkg.com/rc-input/-/rc-input-1.7.3.tgz#cb334a17b93ce985bceb243b4c111a5ed641e0e3"
-  integrity sha512-A5w4egJq8+4JzlQ55FfQjDnPvOaAbzwC3VLOAdOytyek3TboSOP9qxN+Gifup+shVXfvecBLBbWBpWxmk02SWQ==
+rc-input@~1.8.0:
+  version "1.8.0"
+  resolved "https://registry.yarnpkg.com/rc-input/-/rc-input-1.8.0.tgz#d2f4404befebf2fbdc28390d5494c302f74ae974"
+  integrity sha512-KXvaTbX+7ha8a/k+eg6SYRVERK0NddX8QX7a7AnRvUa/rEH0CNMlpcBzBkhI0wp2C8C4HlMoYl8TImSN+fuHKA==
   dependencies:
     "@babel/runtime" "^7.11.1"
     classnames "^2.2.1"
     rc-util "^5.18.1"
 
-rc-mentions@~2.19.1:
-  version "2.19.1"
-  resolved "https://registry.npmjs.org/rc-mentions/-/rc-mentions-2.19.1.tgz"
-  integrity sha512-KK3bAc/bPFI993J3necmaMXD2reZTzytZdlTvkeBbp50IGH1BDPDvxLdHDUrpQx2b2TGaVJsn+86BvYa03kGqA==
+rc-mentions@~2.20.0:
+  version "2.20.0"
+  resolved "https://registry.yarnpkg.com/rc-mentions/-/rc-mentions-2.20.0.tgz#3bbeac0352b02e0ce3e1244adb48701bb6903bf7"
+  integrity sha512-w8HCMZEh3f0nR8ZEd466ATqmXFCMGMN5UFCzEUL0bM/nGw/wOS2GgRzKBcm19K++jDyuWCOJOdgcKGXU3fXfbQ==
   dependencies:
     "@babel/runtime" "^7.22.5"
     "@rc-component/trigger" "^2.0.0"
     classnames "^2.2.6"
-    rc-input "~1.7.1"
+    rc-input "~1.8.0"
     rc-menu "~9.16.0"
-    rc-textarea "~1.9.0"
+    rc-textarea "~1.10.0"
     rc-util "^5.34.1"
 
 rc-menu@~9.16.0, rc-menu@~9.16.1:
@@ -10758,10 +10742,10 @@ rc-motion@^2.0.0, rc-motion@^2.0.1, rc-motion@^2.3.0, rc-motion@^2.3.4, rc-motio
     classnames "^2.2.1"
     rc-util "^5.44.0"
 
-rc-notification@~5.6.3:
-  version "5.6.3"
-  resolved "https://registry.npmjs.org/rc-notification/-/rc-notification-5.6.3.tgz"
-  integrity sha512-42szwnn8VYQoT6GnjO00i1iwqV9D1TTMvxObWsuLwgl0TsOokzhkYiufdtQBsJMFjJravS1hfDKVMHLKLcPE4g==
+rc-notification@~5.6.4:
+  version "5.6.4"
+  resolved "https://registry.yarnpkg.com/rc-notification/-/rc-notification-5.6.4.tgz#ea89c39c13cd517fdfd97fe63f03376fabb78544"
+  integrity sha512-KcS4O6B4qzM3KH7lkwOB7ooLPZ4b6J+VMmQgT51VZCeEcmghdeR4IrMcFq0LG+RPdnbe/ArT086tGM8Snimgiw==
   dependencies:
     "@babel/runtime" "^7.10.1"
     classnames "2.x"
@@ -10889,10 +10873,10 @@ rc-table@~7.50.4:
     rc-util "^5.44.3"
     rc-virtual-list "^3.14.2"
 
-rc-tabs@~15.5.1:
-  version "15.5.1"
-  resolved "https://registry.npmjs.org/rc-tabs/-/rc-tabs-15.5.1.tgz"
-  integrity sha512-yiWivLAjEo5d1v2xlseB2dQocsOhkoVSfo1krS8v8r+02K+TBUjSjXIf7dgyVSxp6wRIPv5pMi5hanNUlQMgUA==
+rc-tabs@~15.6.1:
+  version "15.6.1"
+  resolved "https://registry.yarnpkg.com/rc-tabs/-/rc-tabs-15.6.1.tgz#f0b6c65384dfa09a64eb539e86a0667c7a650708"
+  integrity sha512-/HzDV1VqOsUWyuC0c6AkxVYFjvx9+rFPKZ32ejxX0Uc7QCzcEjTA9/xMgv4HemPKwzBNX8KhGVbbumDjnj92aA==
   dependencies:
     "@babel/runtime" "^7.11.2"
     classnames "2.x"
@@ -10902,14 +10886,14 @@ rc-tabs@~15.5.1:
     rc-resize-observer "^1.0.0"
     rc-util "^5.34.1"
 
-rc-textarea@~1.9.0:
-  version "1.9.0"
-  resolved "https://registry.npmjs.org/rc-textarea/-/rc-textarea-1.9.0.tgz"
-  integrity sha512-dQW/Bc/MriPBTugj2Kx9PMS5eXCCGn2cxoIaichjbNvOiARlaHdI99j4DTxLl/V8+PIfW06uFy7kjfUIDDKyxQ==
+rc-textarea@~1.10.0:
+  version "1.10.0"
+  resolved "https://registry.yarnpkg.com/rc-textarea/-/rc-textarea-1.10.0.tgz#f8f962ef83be0b8e35db97cf03dbfb86ddd9c46c"
+  integrity sha512-ai9IkanNuyBS4x6sOL8qu/Ld40e6cEs6pgk93R+XLYg0mDSjNBGey6/ZpDs5+gNLD7urQ14po3V6Ck2dJLt9SA==
   dependencies:
     "@babel/runtime" "^7.10.1"
     classnames "^2.2.1"
-    rc-input "~1.7.1"
+    rc-input "~1.8.0"
     rc-resize-observer "^1.0.0"
     rc-util "^5.27.0"
 
@@ -11543,7 +11527,7 @@ resolve-pathname@^3.0.0:
   resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd"
   integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==
 
-resolve@^1.1.6, resolve@^1.14.2:
+resolve@^1.1.6, resolve@^1.12.0, resolve@^1.14.2:
   version "1.22.10"
   resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz#b663e83ffb09bbf2386944736baae803029b8b39"
   integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==
@@ -11552,15 +11536,6 @@ resolve@^1.1.6, resolve@^1.14.2:
     path-parse "^1.0.7"
     supports-preserve-symlinks-flag "^1.0.0"
 
-resolve@^1.12.0:
-  version "1.22.8"
-  resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz"
-  integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
-  dependencies:
-    is-core-module "^2.13.0"
-    path-parse "^1.0.7"
-    supports-preserve-symlinks-flag "^1.0.0"
-
 resolve@^2.0.0-next.5:
   version "2.0.0-next.5"
   resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz"
@@ -11709,10 +11684,10 @@ schema-utils@^3.0.0:
     ajv "^6.12.5"
     ajv-keywords "^3.5.2"
 
-schema-utils@^4.0.0, schema-utils@^4.0.1, schema-utils@^4.3.0:
-  version "4.3.0"
-  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.0.tgz#3b669f04f71ff2dfb5aba7ce2d5a9d79b35622c0"
-  integrity sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==
+schema-utils@^4.0.0, schema-utils@^4.0.1, schema-utils@^4.3.0, schema-utils@^4.3.2:
+  version "4.3.2"
+  resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.2.tgz#0c10878bf4a73fd2b1dfd14b9462b26788c806ae"
+  integrity sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==
   dependencies:
     "@types/json-schema" "^7.0.9"
     ajv "^8.9.0"
@@ -12359,10 +12334,10 @@ swagger-client@^3.34.4:
     ramda "^0.30.1"
     ramda-adjunct "^5.1.0"
 
-swagger-ui-react@^5.20.2:
-  version "5.20.2"
-  resolved "https://registry.yarnpkg.com/swagger-ui-react/-/swagger-ui-react-5.20.2.tgz#eb9f8de2e6c916661d8033d43119f6e105ab87da"
-  integrity sha512-6ifaFjT02yBv1kjEivIMWxQpI7r8O7D/oA8u1JiwhTkom0dOk85lTExao5Dj5ztS6dBg6i1zm+ILhH94fF9g8Q==
+swagger-ui-react@^5.21.0:
+  version "5.21.0"
+  resolved "https://registry.yarnpkg.com/swagger-ui-react/-/swagger-ui-react-5.21.0.tgz#a9b22a24247c23eafb39b776bee5a4d5b56c57fe"
+  integrity sha512-lS5paITM1kkcBb/BTTSMHKelh8elHfcuUP4T3R3mO80tDR0AYJL2HR5UdQD6nV1LwdvekzRM8gKjJA6hVayi0A==
   dependencies:
     "@babel/runtime-corejs3" "^7.26.10"
     "@scarf/scarf" "=1.4.0"
@@ -12540,16 +12515,11 @@ tslib@^1.8.1:
   resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
   integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
 
-tslib@^2.0.3, tslib@^2.6.0:
+tslib@^2.0.3, tslib@^2.3.0, tslib@^2.6.0:
   version "2.8.1"
   resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
   integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
 
-tslib@^2.3.0:
-  version "2.6.2"
-  resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz"
-  integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
-
 tsutils@^3.21.0:
   version "3.21.0"
   resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"
@@ -12651,10 +12621,10 @@ types-ramda@^0.30.0:
   dependencies:
     ts-toolbelt "^9.6.0"
 
-typescript@~5.8.2:
-  version "5.8.2"
-  resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.2.tgz#8170b3702f74b79db2e5a96207c15e65807999e4"
-  integrity sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==
+typescript@~5.8.3:
+  version "5.8.3"
+  resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.3.tgz#92f8a3e5e3cf497356f4178c34cd65a7f5e8440e"
+  integrity sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==
 
 ufo@^1.5.4:
   version "1.6.1"
@@ -13063,13 +13033,14 @@ webpack-sources@^3.2.3:
   resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde"
   integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
 
-webpack@^5.88.1:
-  version "5.99.5"
-  resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.99.5.tgz#86e3b3a5a03377ea5da271c929934003f5ac5dd8"
-  integrity sha512-q+vHBa6H9qwBLUlHL4Y7L0L1/LlyBKZtS9FHNCQmtayxjI5RKC9yD8gpvLeqGv5lCQp1Re04yi0MF40pf30Pvg==
+webpack@^5.88.1, webpack@^5.95.0, webpack@^5.99.7:
+  version "5.99.7"
+  resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.99.7.tgz#60201c1ca66da046b07d006c2f6e0cc5e8a7bdba"
+  integrity sha512-CNqKBRMQjwcmKR0idID5va1qlhrqVUKpovi+Ec79ksW8ux7iS1+A6VqzfZXgVYCFRKl7XL5ap3ZoMpwBJxcg0w==
   dependencies:
     "@types/eslint-scope" "^3.7.7"
     "@types/estree" "^1.0.6"
+    "@types/json-schema" "^7.0.15"
     "@webassemblyjs/ast" "^1.14.1"
     "@webassemblyjs/wasm-edit" "^1.14.1"
     "@webassemblyjs/wasm-parser" "^1.14.1"
@@ -13086,36 +13057,7 @@ webpack@^5.88.1:
     loader-runner "^4.2.0"
     mime-types "^2.1.27"
     neo-async "^2.6.2"
-    schema-utils "^4.3.0"
-    tapable "^2.1.1"
-    terser-webpack-plugin "^5.3.11"
-    watchpack "^2.4.1"
-    webpack-sources "^3.2.3"
-
-webpack@^5.95.0, webpack@^5.98.0:
-  version "5.98.0"
-  resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.98.0.tgz#44ae19a8f2ba97537978246072fb89d10d1fbd17"
-  integrity sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==
-  dependencies:
-    "@types/eslint-scope" "^3.7.7"
-    "@types/estree" "^1.0.6"
-    "@webassemblyjs/ast" "^1.14.1"
-    "@webassemblyjs/wasm-edit" "^1.14.1"
-    "@webassemblyjs/wasm-parser" "^1.14.1"
-    acorn "^8.14.0"
-    browserslist "^4.24.0"
-    chrome-trace-event "^1.0.2"
-    enhanced-resolve "^5.17.1"
-    es-module-lexer "^1.2.1"
-    eslint-scope "5.1.1"
-    events "^3.2.0"
-    glob-to-regexp "^0.4.1"
-    graceful-fs "^4.2.11"
-    json-parse-even-better-errors "^2.3.1"
-    loader-runner "^4.2.0"
-    mime-types "^2.1.27"
-    neo-async "^2.6.2"
-    schema-utils "^4.3.0"
+    schema-utils "^4.3.2"
     tapable "^2.1.1"
     terser-webpack-plugin "^5.3.11"
     watchpack "^2.4.1"
diff --git a/pyproject.toml b/pyproject.toml
index e666af99d2b76292449627a9c3f978866a9bb9d1..2f270dfc6e10f8bbba2ce7e667cc3216ba3e098a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -44,7 +44,7 @@ dependencies = [
     "cryptography>=42.0.4, <45.0.0",
     "deprecation>=2.1.0, <2.2.0",
     "flask>=2.2.5, <3.0.0",
-    "flask-appbuilder>=4.6.1, <5.0.0",
+    "flask-appbuilder>=4.6.3, <5.0.0",
     "flask-caching>=2.1.0, <3",
     "flask-compress>=1.13, <2.0",
     "flask-talisman>=1.0.0, <2.0",
@@ -81,7 +81,7 @@ dependencies = [
     "python-dateutil",
     "python-dotenv", # optional dependencies for Flask but required for Superset, see https://flask.palletsprojects.com/en/stable/installation/#optional-dependencies
     "python-geohash",
-    "pyarrow>=14.0.1, <15",
+    "pyarrow>=18.1.0, <19",
     "pyyaml>=6.0.0, <7.0.0",
     "PyJWT>=2.4.0, <3.0",
     "redis>=4.6.0, <5.0",
@@ -375,12 +375,14 @@ authorized_licenses = [
     "apache software",
     "apache software, bsd",
     "bsd",
+    "bsd-3-clause",
     "isc license (iscl)",
     "isc license",
     "mit",
     "mozilla public license 2.0 (mpl 2.0)",
     "osi approved",
     "osi approved",
+    "psf-2.0",
     "python software foundation",
     "the unlicense (unlicense)",
     "the unlicense",
diff --git a/requirements/base.txt b/requirements/base.txt
index 5d921416e35c223886f3a73a6344b71aaa5e5bec..bd6a890f31330f38f6c60d022c778519eac63191 100644
--- a/requirements/base.txt
+++ b/requirements/base.txt
@@ -40,11 +40,11 @@ cachelib==0.13.0
     #   flask-session
 cachetools==5.5.2
     # via google-auth
-cattrs==24.1.2
+cattrs==24.1.3
     # via requests-cache
-celery==5.4.0
+celery==5.5.2
     # via apache-superset (pyproject.toml)
-certifi==2025.1.31
+certifi==2025.4.26
     # via
     #   requests
     #   selenium
@@ -52,7 +52,7 @@ cffi==1.17.1
     # via
     #   cryptography
     #   pynacl
-charset-normalizer==3.4.1
+charset-normalizer==3.4.2
     # via requests
 click==8.1.8
     # via
@@ -80,7 +80,7 @@ cron-descriptor==1.4.5
     # via apache-superset (pyproject.toml)
 croniter==6.0.0
     # via apache-superset (pyproject.toml)
-cryptography==44.0.2
+cryptography==44.0.3
     # via
     #   apache-superset (pyproject.toml)
     #   paramiko
@@ -111,7 +111,7 @@ flask==2.3.3
     #   flask-session
     #   flask-sqlalchemy
     #   flask-wtf
-flask-appbuilder==4.6.1
+flask-appbuilder==4.6.3
     # via apache-superset (pyproject.toml)
 flask-babel==2.0.0
     # via flask-appbuilder
@@ -145,7 +145,7 @@ geographiclib==2.0
     # via geopy
 geopy==2.4.1
     # via apache-superset (pyproject.toml)
-google-auth==2.38.0
+google-auth==2.40.0
     # via shillelagh
 greenlet==3.1.1
     # via
@@ -154,20 +154,21 @@ greenlet==3.1.1
     #   sqlalchemy
 gunicorn==23.0.0
     # via apache-superset (pyproject.toml)
-h11==0.14.0
+h11==0.16.0
     # via wsproto
 hashids==1.3.1
     # via apache-superset (pyproject.toml)
 holidays==0.25
     # via apache-superset (pyproject.toml)
-humanize==4.12.2
+humanize==4.12.3
     # via apache-superset (pyproject.toml)
 idna==3.10
     # via
     #   email-validator
     #   requests
     #   trio
-importlib-metadata==8.6.1
+    #   url-normalize
+importlib-metadata==8.7.0
     # via apache-superset (pyproject.toml)
 isodate==0.7.2
     # via apache-superset (pyproject.toml)
@@ -185,17 +186,17 @@ jsonschema==4.23.0
     # via flask-appbuilder
 jsonschema-specifications==2024.10.1
     # via jsonschema
-kombu==5.5.0
+kombu==5.5.3
     # via celery
 korean-lunar-calendar==0.3.1
     # via holidays
-limits==4.4.1
+limits==5.1.0
     # via flask-limiter
-mako==1.3.9
+mako==1.3.10
     # via
     #   apache-superset (pyproject.toml)
     #   alembic
-markdown==3.7
+markdown==3.8
     # via apache-superset (pyproject.toml)
 markdown-it-py==3.0.0
     # via rich
@@ -229,7 +230,6 @@ numpy==1.26.4
     #   bottleneck
     #   numexpr
     #   pandas
-    #   pyarrow
 odfpy==1.4.1
     # via pandas
 openpyxl==3.1.5
@@ -238,7 +238,7 @@ ordered-set==4.1.0
     # via flask-limiter
 outcome==1.3.0.post0
     # via trio
-packaging==24.2
+packaging==25.0
     # via
     #   apache-superset (pyproject.toml)
     #   apispec
@@ -265,15 +265,15 @@ polyline==2.0.2
     # via apache-superset (pyproject.toml)
 prison==0.2.1
     # via flask-appbuilder
-prompt-toolkit==3.0.50
+prompt-toolkit==3.0.51
     # via click-repl
-pyarrow==14.0.2
+pyarrow==18.1.0
     # via apache-superset (pyproject.toml)
 pyasn1==0.6.1
     # via
     #   pyasn1-modules
     #   rsa
-pyasn1-modules==0.4.1
+pyasn1-modules==0.4.2
     # via google-auth
 pycparser==2.22
     # via cffi
@@ -288,7 +288,7 @@ pynacl==1.5.0
     # via paramiko
 pyopenssl==25.0.0
     # via shillelagh
-pyparsing==3.2.2
+pyparsing==3.2.3
     # via apache-superset (pyproject.toml)
 pysocks==1.7.1
     # via urllib3
@@ -301,11 +301,11 @@ python-dateutil==2.9.0.post0
     #   holidays
     #   pandas
     #   shillelagh
-python-dotenv==1.0.1
+python-dotenv==1.1.0
     # via apache-superset (pyproject.toml)
 python-geohash==0.8.5
     # via apache-superset (pyproject.toml)
-pytz==2025.1
+pytz==2025.2
     # via
     #   croniter
     #   flask-babel
@@ -334,7 +334,7 @@ rpds-py==0.23.1
     # via
     #   jsonschema
     #   referencing
-rsa==4.9
+rsa==4.9.1
     # via google-auth
 selenium==4.27.1
     # via apache-superset (pyproject.toml)
@@ -346,7 +346,6 @@ six==1.17.0
     # via
     #   prison
     #   python-dateutil
-    #   url-normalize
     #   wtforms-json
 slack-sdk==3.35.0
     # via apache-superset (pyproject.toml)
@@ -367,7 +366,7 @@ sqlalchemy-utils==0.38.3
     # via
     #   apache-superset (pyproject.toml)
     #   flask-appbuilder
-sqlglot==26.11.1
+sqlglot==26.16.4
     # via apache-superset (pyproject.toml)
 sqlparse==0.5.3
     # via apache-superset (pyproject.toml)
@@ -381,7 +380,7 @@ trio==0.28.0
     #   trio-websocket
 trio-websocket==0.11.1
     # via selenium
-typing-extensions==4.12.2
+typing-extensions==4.13.2
     # via
     #   apache-superset (pyproject.toml)
     #   alembic
@@ -390,12 +389,11 @@ typing-extensions==4.12.2
     #   referencing
     #   selenium
     #   shillelagh
-tzdata==2025.1
+tzdata==2025.2
     # via
-    #   celery
     #   kombu
     #   pandas
-url-normalize==1.4.3
+url-normalize==2.2.1
     # via requests-cache
 urllib3==1.26.20
     # via
diff --git a/requirements/development.txt b/requirements/development.txt
index f71a61441af94a82cd85f0fab180bc899b8d6957..646d7440eca3281de8cb82f64cfe9994e11e6f5c 100644
--- a/requirements/development.txt
+++ b/requirements/development.txt
@@ -10,8 +10,6 @@ amqp==5.3.1
     # via
     #   -c requirements/base.txt
     #   kombu
-annotated-types==0.7.0
-    # via pydantic
 apispec==6.6.1
     # via
     #   -c requirements/base.txt
@@ -20,8 +18,10 @@ apsw==3.49.1.0
     # via
     #   -c requirements/base.txt
     #   shillelagh
-argcomplete==3.6.0
-    # via datamodel-code-generator
+async-timeout==4.0.3
+    # via
+    #   -c requirements/base.txt
+    #   redis
 attrs==25.3.0
     # via
     #   -c requirements/base.txt
@@ -47,8 +47,6 @@ billiard==4.2.1
     # via
     #   -c requirements/base.txt
     #   celery
-black==25.1.0
-    # via datamodel-code-generator
 blinker==1.9.0
     # via
     #   -c requirements/base.txt
@@ -70,15 +68,15 @@ cachetools==5.5.2
     # via
     #   -c requirements/base.txt
     #   google-auth
-cattrs==24.1.2
+cattrs==24.1.3
     # via
     #   -c requirements/base.txt
     #   requests-cache
-celery==5.4.0
+celery==5.5.2
     # via
     #   -c requirements/base.txt
     #   apache-superset
-certifi==2025.1.31
+certifi==2025.4.26
     # via
     #   -c requirements/base.txt
     #   requests
@@ -90,7 +88,7 @@ cffi==1.17.1
     #   pynacl
 cfgv==3.4.0
     # via pre-commit
-charset-normalizer==3.4.1
+charset-normalizer==3.4.2
     # via
     #   -c requirements/base.txt
     #   requests
@@ -98,7 +96,6 @@ click==8.1.8
     # via
     #   -c requirements/base.txt
     #   apache-superset
-    #   black
     #   celery
     #   click-didyoumean
     #   click-option-group
@@ -122,16 +119,16 @@ click-repl==0.3.0
     # via
     #   -c requirements/base.txt
     #   celery
-cmdstanpy==1.2.5
+cmdstanpy==1.1.0
     # via prophet
 colorama==0.4.6
     # via
     #   -c requirements/base.txt
     #   apache-superset
     #   flask-appbuilder
-contourpy==1.3.1
+contourpy==1.0.7
     # via matplotlib
-coverage==7.7.0
+coverage==7.6.8
     # via pytest-cov
 cron-descriptor==1.4.5
     # via
@@ -141,7 +138,7 @@ croniter==6.0.0
     # via
     #   -c requirements/base.txt
     #   apache-superset
-cryptography==44.0.2
+cryptography==44.0.3
     # via
     #   -c requirements/base.txt
     #   apache-superset
@@ -149,12 +146,8 @@ cryptography==44.0.2
     #   pyopenssl
 cycler==0.12.1
     # via matplotlib
-datamodel-code-generator==0.28.4
-    # via -r requirements/development.in
-db-dtypes==1.4.2
+db-dtypes==1.3.1
     # via pandas-gbq
-debugpy==1.8.14
-    # via -r requirements/development.in
 defusedxml==0.7.1
     # via
     #   -c requirements/base.txt
@@ -167,13 +160,13 @@ deprecation==2.1.0
     # via
     #   -c requirements/base.txt
     #   apache-superset
-distlib==0.3.9
+distlib==0.3.8
     # via virtualenv
 dnspython==2.7.0
     # via
     #   -c requirements/base.txt
     #   email-validator
-docker==7.1.0
+docker==7.0.0
     # via apache-superset
 email-validator==2.2.0
     # via
@@ -183,7 +176,14 @@ et-xmlfile==2.0.0
     # via
     #   -c requirements/base.txt
     #   openpyxl
-filelock==3.18.0
+exceptiongroup==1.2.2
+    # via
+    #   -c requirements/base.txt
+    #   cattrs
+    #   pytest
+    #   trio
+    #   trio-websocket
+filelock==3.12.2
     # via virtualenv
 flask==2.3.3
     # via
@@ -202,7 +202,7 @@ flask==2.3.3
     #   flask-sqlalchemy
     #   flask-testing
     #   flask-wtf
-flask-appbuilder==4.6.1
+flask-appbuilder==4.6.3
     # via
     #   -c requirements/base.txt
     #   apache-superset
@@ -257,14 +257,12 @@ flask-wtf==1.2.2
     #   -c requirements/base.txt
     #   apache-superset
     #   flask-appbuilder
-fonttools==4.56.0
+fonttools==4.55.0
     # via matplotlib
 freezegun==1.5.1
     # via apache-superset
 future==1.0.0
     # via pyhive
-genson==1.3.0
-    # via datamodel-code-generator
 geographiclib==2.0
     # via
     #   -c requirements/base.txt
@@ -273,15 +271,16 @@ geopy==2.4.1
     # via
     #   -c requirements/base.txt
     #   apache-superset
-gevent==24.11.1
+gevent==24.2.1
     # via apache-superset
-google-api-core==2.24.2
+google-api-core==2.23.0
     # via
     #   google-cloud-bigquery
+    #   google-cloud-bigquery-storage
     #   google-cloud-core
     #   pandas-gbq
     #   sqlalchemy-bigquery
-google-auth==2.38.0
+google-auth==2.40.0
     # via
     #   -c requirements/base.txt
     #   google-api-core
@@ -296,18 +295,20 @@ google-auth-oauthlib==1.2.1
     # via
     #   pandas-gbq
     #   pydata-google-auth
-google-cloud-bigquery==3.30.0
+google-cloud-bigquery==3.27.0
     # via
     #   apache-superset
     #   pandas-gbq
     #   sqlalchemy-bigquery
-google-cloud-core==2.4.3
+google-cloud-bigquery-storage==2.19.1
+    # via pandas-gbq
+google-cloud-core==2.4.1
     # via google-cloud-bigquery
-google-crc32c==1.7.0
+google-crc32c==1.6.0
     # via google-resumable-media
 google-resumable-media==2.7.2
     # via google-cloud-bigquery
-googleapis-common-protos==1.69.2
+googleapis-common-protos==1.66.0
     # via
     #   google-api-core
     #   grpcio-status
@@ -323,13 +324,13 @@ grpcio==1.71.0
     #   apache-superset
     #   google-api-core
     #   grpcio-status
-grpcio-status==1.71.0
+grpcio-status==1.60.1
     # via google-api-core
 gunicorn==23.0.0
     # via
     #   -c requirements/base.txt
     #   apache-superset
-h11==0.14.0
+h11==0.16.0
     # via
     #   -c requirements/base.txt
     #   wsproto
@@ -342,11 +343,11 @@ holidays==0.25
     #   -c requirements/base.txt
     #   apache-superset
     #   prophet
-humanize==4.12.2
+humanize==4.12.3
     # via
     #   -c requirements/base.txt
     #   apache-superset
-identify==2.6.9
+identify==2.5.36
     # via pre-commit
 idna==3.10
     # via
@@ -354,22 +355,19 @@ idna==3.10
     #   email-validator
     #   requests
     #   trio
-importlib-metadata==8.6.1
+    #   url-normalize
+importlib-metadata==8.7.0
     # via
     #   -c requirements/base.txt
     #   apache-superset
 importlib-resources==6.5.2
     # via prophet
-inflect==5.6.2
-    # via datamodel-code-generator
-iniconfig==2.1.0
+iniconfig==2.0.0
     # via pytest
 isodate==0.7.2
     # via
     #   -c requirements/base.txt
     #   apache-superset
-isort==6.0.1
-    # via datamodel-code-generator
 itsdangerous==2.2.0
     # via
     #   -c requirements/base.txt
@@ -378,7 +376,6 @@ itsdangerous==2.2.0
 jinja2==3.1.6
     # via
     #   -c requirements/base.txt
-    #   datamodel-code-generator
     #   flask
     #   flask-babel
 jsonpath-ng==1.7.0
@@ -398,9 +395,9 @@ jsonschema-specifications==2024.10.1
     #   -c requirements/base.txt
     #   jsonschema
     #   openapi-schema-validator
-kiwisolver==1.4.8
+kiwisolver==1.4.7
     # via matplotlib
-kombu==5.5.0
+kombu==5.5.3
     # via
     #   -c requirements/base.txt
     #   celery
@@ -410,18 +407,16 @@ korean-lunar-calendar==0.3.1
     #   holidays
 lazy-object-proxy==1.10.0
     # via openapi-spec-validator
-limits==4.4.1
+limits==5.1.0
     # via
     #   -c requirements/base.txt
     #   flask-limiter
-lz4==4.4.3
-    # via trino
-mako==1.3.9
+mako==1.3.10
     # via
     #   -c requirements/base.txt
     #   alembic
     #   apache-superset
-markdown==3.7
+markdown==3.8
     # via
     #   -c requirements/base.txt
     #   apache-superset
@@ -445,7 +440,7 @@ marshmallow-sqlalchemy==1.4.0
     # via
     #   -c requirements/base.txt
     #   flask-appbuilder
-matplotlib==3.10.1
+matplotlib==3.9.0
     # via prophet
 mdurl==0.1.2
     # via
@@ -459,15 +454,13 @@ msgspec==0.19.0
     # via
     #   -c requirements/base.txt
     #   flask-session
-mypy-extensions==1.0.0
-    # via black
-mysqlclient==2.2.7
+mysqlclient==2.2.6
     # via apache-superset
 nh3==0.2.21
     # via
     #   -c requirements/base.txt
     #   apache-superset
-nodeenv==1.9.1
+nodeenv==1.8.0
     # via pre-commit
 numpy==1.26.4
     # via
@@ -481,8 +474,6 @@ numpy==1.26.4
     #   pandas
     #   pandas-gbq
     #   prophet
-    #   pyarrow
-    #   stanio
 oauthlib==3.2.2
     # via requests-oauthlib
 odfpy==1.4.1
@@ -505,21 +496,19 @@ outcome==1.3.0.post0
     # via
     #   -c requirements/base.txt
     #   trio
-packaging==24.2
+packaging==25.0
     # via
     #   -c requirements/base.txt
     #   apache-superset
     #   apispec
-    #   black
-    #   datamodel-code-generator
     #   db-dtypes
     #   deprecation
+    #   docker
     #   google-cloud-bigquery
     #   gunicorn
     #   limits
     #   marshmallow
     #   matplotlib
-    #   pandas-gbq
     #   pytest
     #   shillelagh
     #   sqlalchemy-bigquery
@@ -531,7 +520,7 @@ pandas==2.0.3
     #   db-dtypes
     #   pandas-gbq
     #   prophet
-pandas-gbq==0.28.0
+pandas-gbq==0.19.1
     # via apache-superset
 parameterized==0.9.0
     # via apache-superset
@@ -544,22 +533,19 @@ parsedatetime==2.6
     # via
     #   -c requirements/base.txt
     #   apache-superset
-pathable==0.4.4
+pathable==0.4.3
     # via jsonschema-path
-pathspec==0.12.1
-    # via black
 pgsanity==0.2.9
     # via
     #   -c requirements/base.txt
     #   apache-superset
-pillow==10.4.0
+pillow==10.3.0
     # via
     #   apache-superset
     #   matplotlib
 platformdirs==4.3.7
     # via
     #   -c requirements/base.txt
-    #   black
     #   requests-cache
     #   virtualenv
 pluggy==1.5.0
@@ -572,7 +558,7 @@ polyline==2.0.2
     # via
     #   -c requirements/base.txt
     #   apache-superset
-pre-commit==4.2.0
+pre-commit==4.1.0
     # via apache-superset
 prison==0.2.1
     # via
@@ -580,27 +566,28 @@ prison==0.2.1
     #   flask-appbuilder
 progress==1.6
     # via apache-superset
-prompt-toolkit==3.0.50
+prompt-toolkit==3.0.51
     # via
     #   -c requirements/base.txt
     #   click-repl
-prophet==1.1.6
+prophet==1.1.5
     # via apache-superset
-proto-plus==1.26.1
-    # via google-api-core
-protobuf==5.29.4
+proto-plus==1.25.0
+    # via
+    #   google-api-core
+    #   google-cloud-bigquery-storage
+protobuf==4.25.5
     # via
     #   google-api-core
+    #   google-cloud-bigquery-storage
     #   googleapis-common-protos
     #   grpcio-status
     #   proto-plus
-psutil==7.0.0
-    # via apache-superset
-psycopg2==2.9.10
+psutil==6.1.0
     # via apache-superset
 psycopg2-binary==2.9.6
     # via apache-superset
-pyarrow==14.0.2
+pyarrow==18.1.0
     # via
     #   -c requirements/base.txt
     #   apache-superset
@@ -612,7 +599,7 @@ pyasn1==0.6.1
     #   pyasn1-modules
     #   python-ldap
     #   rsa
-pyasn1-modules==0.4.1
+pyasn1-modules==0.4.2
     # via
     #   -c requirements/base.txt
     #   google-auth
@@ -621,17 +608,11 @@ pycparser==2.22
     # via
     #   -c requirements/base.txt
     #   cffi
-pydantic==2.10.6
-    # via
-    #   apache-superset
-    #   datamodel-code-generator
-pydantic-core==2.27.2
-    # via pydantic
-pydata-google-auth==1.9.1
+pydata-google-auth==1.9.0
     # via pandas-gbq
 pydruid==0.6.9
     # via apache-superset
-pyfakefs==5.8.0
+pyfakefs==5.3.5
     # via apache-superset
 pygments==2.19.1
     # via
@@ -639,7 +620,7 @@ pygments==2.19.1
     #   rich
 pyhive==0.7.0
     # via apache-superset
-pyinstrument==4.7.3
+pyinstrument==4.4.0
     # via apache-superset
 pyjwt==2.10.1
     # via
@@ -655,7 +636,7 @@ pyopenssl==25.0.0
     # via
     #   -c requirements/base.txt
     #   shillelagh
-pyparsing==3.2.2
+pyparsing==3.2.3
     # via
     #   -c requirements/base.txt
     #   apache-superset
@@ -671,7 +652,7 @@ pytest==7.4.4
     #   pytest-mock
 pytest-cov==6.0.0
     # via apache-superset
-pytest-mock==3.14.0
+pytest-mock==3.10.0
     # via apache-superset
 python-dateutil==2.9.0.post0
     # via
@@ -688,7 +669,7 @@ python-dateutil==2.9.0.post0
     #   pyhive
     #   shillelagh
     #   trino
-python-dotenv==1.0.1
+python-dotenv==1.1.0
     # via
     #   -c requirements/base.txt
     #   apache-superset
@@ -698,7 +679,7 @@ python-geohash==0.8.5
     #   apache-superset
 python-ldap==3.4.4
     # via apache-superset
-pytz==2025.1
+pytz==2025.2
     # via
     #   -c requirements/base.txt
     #   croniter
@@ -714,7 +695,6 @@ pyyaml==6.0.2
     #   -c requirements/base.txt
     #   apache-superset
     #   apispec
-    #   datamodel-code-generator
     #   jsonschema-path
     #   pre-commit
 redis==4.6.0
@@ -730,7 +710,6 @@ referencing==0.36.2
 requests==2.32.3
     # via
     #   -c requirements/base.txt
-    #   apache-superset
     #   docker
     #   google-api-core
     #   google-cloud-bigquery
@@ -739,7 +718,6 @@ requests==2.32.3
     #   pyhive
     #   requests-cache
     #   requests-oauthlib
-    #   requests-toolbelt
     #   shillelagh
     #   trino
 requests-cache==1.2.1
@@ -748,8 +726,6 @@ requests-cache==1.2.1
     #   shillelagh
 requests-oauthlib==2.0.0
     # via google-auth-oauthlib
-requests-toolbelt==1.0.0
-    # via apache-superset
 rfc3339-validator==0.1.4
     # via openapi-schema-validator
 rich==13.9.4
@@ -761,18 +737,19 @@ rpds-py==0.23.1
     #   -c requirements/base.txt
     #   jsonschema
     #   referencing
-rsa==4.9
+rsa==4.9.1
     # via
     #   -c requirements/base.txt
     #   google-auth
-ruff==0.11.0
+ruff==0.8.0
     # via apache-superset
 selenium==4.27.1
     # via
     #   -c requirements/base.txt
     #   apache-superset
-setuptools==77.0.1
+setuptools==75.6.0
     # via
+    #   nodeenv
     #   pandas-gbq
     #   pydata-google-auth
     #   zope-event
@@ -791,7 +768,6 @@ six==1.17.0
     #   prison
     #   python-dateutil
     #   rfc3339-validator
-    #   url-normalize
     #   wtforms-json
 slack-sdk==3.35.0
     # via
@@ -816,18 +792,18 @@ sqlalchemy==1.4.54
     #   shillelagh
     #   sqlalchemy-bigquery
     #   sqlalchemy-utils
-sqlalchemy-bigquery==1.13.0
+sqlalchemy-bigquery==1.12.0
     # via apache-superset
 sqlalchemy-utils==0.38.3
     # via
     #   -c requirements/base.txt
     #   apache-superset
     #   flask-appbuilder
-sqlglot==26.11.1
+sqlglot==26.16.4
     # via
     #   -c requirements/base.txt
     #   apache-superset
-sqloxide==0.1.54
+sqloxide==0.1.51
     # via apache-superset
 sqlparse==0.5.3
     # via
@@ -837,19 +813,21 @@ sshtunnel==0.4.0
     # via
     #   -c requirements/base.txt
     #   apache-superset
-stanio==0.5.1
-    # via cmdstanpy
 statsd==4.0.1
     # via apache-superset
 tabulate==0.8.10
     # via
     #   -c requirements/base.txt
     #   apache-superset
+tomli==2.2.1
+    # via
+    #   coverage
+    #   pytest
 tqdm==4.67.1
     # via
     #   cmdstanpy
     #   prophet
-trino==0.333.0
+trino==0.330.0
     # via apache-superset
 trio==0.28.0
     # via
@@ -860,27 +838,26 @@ trio-websocket==0.11.1
     # via
     #   -c requirements/base.txt
     #   selenium
-typing-extensions==4.12.2
+typing-extensions==4.13.2
     # via
     #   -c requirements/base.txt
     #   alembic
     #   apache-superset
+    #   cattrs
     #   limits
-    #   pydantic
-    #   pydantic-core
     #   pyopenssl
     #   referencing
+    #   rich
     #   selenium
     #   shillelagh
-tzdata==2025.1
+tzdata==2025.2
     # via
     #   -c requirements/base.txt
-    #   celery
     #   kombu
     #   pandas
-tzlocal==5.3.1
+tzlocal==5.2
     # via trino
-url-normalize==1.4.3
+url-normalize==2.2.1
     # via
     #   -c requirements/base.txt
     #   requests-cache
@@ -897,7 +874,7 @@ vine==5.1.0
     #   amqp
     #   celery
     #   kombu
-virtualenv==20.29.3
+virtualenv==20.29.2
     # via pre-commit
 wcwidth==0.2.13
     # via
@@ -948,10 +925,9 @@ zipp==3.21.0
     #   importlib-metadata
 zope-event==5.0
     # via gevent
-zope-interface==7.2
+zope-interface==5.4.0
     # via gevent
 zstandard==0.23.0
     # via
     #   -c requirements/base.txt
     #   flask-compress
-    #   trino
diff --git a/superset-frontend/cypress-base/cypress/e2e/explore/visualizations/table.test.ts b/superset-frontend/cypress-base/cypress/e2e/explore/visualizations/table.test.ts
index 603cc7f2c8d7be727e3c04665184ba601a6bb165..319938b95e712930b6793284e7f228279cc3301d 100644
--- a/superset-frontend/cypress-base/cypress/e2e/explore/visualizations/table.test.ts
+++ b/superset-frontend/cypress-base/cypress/e2e/explore/visualizations/table.test.ts
@@ -252,4 +252,215 @@ describe('Visualization > Table', () => {
     });
     cy.get('td').contains(/\d*%/);
   });
+
+  it('Test row limit with server pagination toggle', () => {
+    cy.visitChartByParams({
+      ...VIZ_DEFAULTS,
+      metrics: ['count'],
+      row_limit: 100,
+    });
+
+    // Enable server pagination
+    cy.get('[data-test="server_pagination-header"] div.pull-left').click();
+
+    // Click row limit control and select high value (200k)
+    cy.get('div[aria-label="Row limit"]').click();
+
+    // Type 200000 and press enter to select the option
+    cy.get('div[aria-label="Row limit"]')
+      .find('.ant-select-selection-search-input:visible')
+      .type('200000{enter}');
+
+    // Verify that there is no error tooltip when server pagination is enabled
+    cy.get('[data-test="error-tooltip"]').should('not.exist');
+
+    // Disable server pagination
+    cy.get('[data-test="server_pagination-header"] div.pull-left').click();
+
+    // Verify error tooltip appears
+    cy.get('[data-test="error-tooltip"]').should('be.visible');
+
+    // Trigger mouseover and verify tooltip text
+    cy.get('[data-test="error-tooltip"]').trigger('mouseover');
+
+    // Verify tooltip content
+    cy.get('.antd5-tooltip-inner').should('be.visible');
+    cy.get('.antd5-tooltip-inner').should(
+      'contain',
+      'Server pagination needs to be enabled for values over',
+    );
+
+    // Hide the tooltip by adding display:none style
+    cy.get('.antd5-tooltip').invoke('attr', 'style', 'display: none');
+
+    // Enable server pagination again
+    cy.get('[data-test="server_pagination-header"] div.pull-left').click();
+
+    cy.get('[data-test="error-tooltip"]').should('not.exist');
+
+    cy.get('div[aria-label="Row limit"]').click();
+
+    // Type 1000000
+    cy.get('div[aria-label="Row limit"]')
+      .find('.ant-select-selection-search-input:visible')
+      .type('1000000');
+
+    // Wait for 1 second
+    cy.wait(1000);
+
+    // Press enter
+    cy.get('div[aria-label="Row limit"]')
+      .find('.ant-select-selection-search-input:visible')
+      .type('{enter}');
+
+    // Wait for error tooltip to appear and verify its content
+    cy.get('[data-test="error-tooltip"]')
+      .should('be.visible')
+      .trigger('mouseover');
+
+    // Wait for tooltip content and verify
+    cy.get('.antd5-tooltip-inner').should('exist');
+    cy.get('.antd5-tooltip-inner').should('be.visible');
+
+    // Verify tooltip content separately
+    cy.get('.antd5-tooltip-inner').should('contain', 'Value cannot exceed');
+  });
+
+  it('Test sorting with server pagination enabled', () => {
+    cy.visitChartByParams({
+      ...VIZ_DEFAULTS,
+      metrics: ['count'],
+      groupby: ['name'],
+      row_limit: 100000,
+      server_pagination: true, // Enable server pagination
+    });
+
+    // Wait for the initial data load
+    cy.wait('@chartData');
+
+    // Get the first column header (name)
+    cy.get('.chart-container th').contains('name').as('nameHeader');
+
+    // Click to sort ascending
+    cy.get('@nameHeader').click();
+    cy.wait('@chartData');
+
+    // Verify first row starts with 'A'
+    cy.get('.chart-container td:first').invoke('text').should('match', /^[Aa]/);
+
+    // Click again to sort descending
+    cy.get('@nameHeader').click();
+    cy.wait('@chartData');
+
+    // Verify first row starts with 'Z'
+    cy.get('.chart-container td:first').invoke('text').should('match', /^[Zz]/);
+
+    // Test numeric sorting
+    cy.get('.chart-container th').contains('COUNT').as('countHeader');
+
+    // Click to sort ascending by count
+    cy.get('@countHeader').click();
+    cy.wait('@chartData');
+
+    // Get first two count values and verify ascending order
+    cy.get('.chart-container td:nth-child(2)').then($cells => {
+      const first = parseFloat($cells[0].textContent || '0');
+      const second = parseFloat($cells[1].textContent || '0');
+      expect(first).to.be.at.most(second);
+    });
+
+    // Click again to sort descending
+    cy.get('@countHeader').click();
+    cy.wait('@chartData');
+
+    // Get first two count values and verify descending order
+    cy.get('.chart-container td:nth-child(2)').then($cells => {
+      const first = parseFloat($cells[0].textContent || '0');
+      const second = parseFloat($cells[1].textContent || '0');
+      expect(first).to.be.at.least(second);
+    });
+  });
+
+  it('Test search with server pagination enabled', () => {
+    cy.visitChartByParams({
+      ...VIZ_DEFAULTS,
+      metrics: ['count'],
+      groupby: ['name', 'state'],
+      row_limit: 100000,
+      server_pagination: true,
+      include_search: true,
+    });
+
+    cy.wait('@chartData');
+
+    // Basic search test
+    cy.get('span.dt-global-filter input.form-control.input-sm').should(
+      'be.visible',
+    );
+
+    cy.get('span.dt-global-filter input.form-control.input-sm').type('John');
+
+    cy.wait('@chartData');
+
+    cy.get('.chart-container tbody tr').each($row => {
+      cy.wrap($row).contains(/John/i);
+    });
+
+    // Clear and test case-insensitive search
+    cy.get('span.dt-global-filter input.form-control.input-sm').clear();
+
+    cy.wait('@chartData');
+
+    cy.get('span.dt-global-filter input.form-control.input-sm').type('mary');
+
+    cy.wait('@chartData');
+
+    cy.get('.chart-container tbody tr').each($row => {
+      cy.wrap($row).contains(/Mary/i);
+    });
+
+    // Test special characters
+    cy.get('span.dt-global-filter input.form-control.input-sm').clear();
+
+    cy.get('span.dt-global-filter input.form-control.input-sm').type('Nicole');
+
+    cy.wait('@chartData');
+
+    cy.get('.chart-container tbody tr').each($row => {
+      cy.wrap($row).contains(/Nicole/i);
+    });
+
+    // Test no results
+    cy.get('span.dt-global-filter input.form-control.input-sm').clear();
+
+    cy.get('span.dt-global-filter input.form-control.input-sm').type('XYZ123');
+
+    cy.wait('@chartData');
+
+    cy.get('.chart-container').contains('No records found');
+
+    // Test column-specific search
+    cy.get('.search-select').should('be.visible');
+
+    cy.get('.search-select').click();
+
+    cy.get('.ant-select-dropdown').should('be.visible');
+
+    cy.get('.ant-select-item-option').contains('state').should('be.visible');
+
+    cy.get('.ant-select-item-option').contains('state').click();
+
+    cy.get('span.dt-global-filter input.form-control.input-sm').clear();
+
+    cy.get('span.dt-global-filter input.form-control.input-sm').type('CA');
+
+    cy.wait('@chartData');
+    cy.wait(1000);
+
+    cy.get('td[aria-labelledby="header-state"]').should('be.visible');
+
+    cy.get('td[aria-labelledby="header-state"]')
+      .first()
+      .should('contain', 'CA');
+  });
 });
diff --git a/superset-frontend/package-lock.json b/superset-frontend/package-lock.json
index b08fef83d0f0bcab05f65cdd29994dd3262830a8..4daf9106edd8f49488e0e6a0f87ac76ef65f4773 100644
--- a/superset-frontend/package-lock.json
+++ b/superset-frontend/package-lock.json
@@ -23,7 +23,7 @@
         "@reduxjs/toolkit": "^1.9.3",
         "@rjsf/core": "^5.21.1",
         "@rjsf/utils": "^5.24.3",
-        "@rjsf/validator-ajv8": "^5.22.3",
+        "@rjsf/validator-ajv8": "^5.24.9",
         "@scarf/scarf": "^1.4.0",
         "@superset-ui/chart-controls": "file:./packages/superset-ui-chart-controls",
         "@superset-ui/core": "file:./packages/superset-ui-core",
@@ -115,7 +115,7 @@
         "react-dom": "^17.0.2",
         "react-draggable": "^4.4.6",
         "react-hot-loader": "^4.13.1",
-        "react-intersection-observer": "^9.10.2",
+        "react-intersection-observer": "^9.16.0",
         "react-js-cron": "^2.1.2",
         "react-json-tree": "^0.17.0",
         "react-lines-ellipsis": "^0.15.4",
@@ -162,7 +162,7 @@
         "@babel/plugin-proposal-private-methods": "^7.18.6",
         "@babel/plugin-syntax-dynamic-import": "^7.8.3",
         "@babel/plugin-transform-modules-commonjs": "^7.26.3",
-        "@babel/plugin-transform-runtime": "^7.25.9",
+        "@babel/plugin-transform-runtime": "^7.27.1",
         "@babel/preset-env": "^7.26.7",
         "@babel/preset-react": "^7.26.3",
         "@babel/preset-typescript": "^7.26.0",
@@ -1146,14 +1146,14 @@
       }
     },
     "node_modules/@babel/code-frame": {
-      "version": "7.26.2",
-      "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
-      "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
+      "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
       "license": "MIT",
       "dependencies": {
-        "@babel/helper-validator-identifier": "^7.25.9",
+        "@babel/helper-validator-identifier": "^7.27.1",
         "js-tokens": "^4.0.0",
-        "picocolors": "^1.0.0"
+        "picocolors": "^1.1.1"
       },
       "engines": {
         "node": ">=6.9.0"
@@ -1240,13 +1240,13 @@
       }
     },
     "node_modules/@babel/generator": {
-      "version": "7.26.5",
-      "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.5.tgz",
-      "integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.1.tgz",
+      "integrity": "sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==",
       "license": "MIT",
       "dependencies": {
-        "@babel/parser": "^7.26.5",
-        "@babel/types": "^7.26.5",
+        "@babel/parser": "^7.27.1",
+        "@babel/types": "^7.27.1",
         "@jridgewell/gen-mapping": "^0.3.5",
         "@jridgewell/trace-mapping": "^0.3.25",
         "jsesc": "^3.0.2"
@@ -1387,13 +1387,13 @@
       }
     },
     "node_modules/@babel/helper-module-imports": {
-      "version": "7.25.9",
-      "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
-      "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
+      "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
       "license": "MIT",
       "dependencies": {
-        "@babel/traverse": "^7.25.9",
-        "@babel/types": "^7.25.9"
+        "@babel/traverse": "^7.27.1",
+        "@babel/types": "^7.27.1"
       },
       "engines": {
         "node": ">=6.9.0"
@@ -1431,9 +1431,9 @@
       }
     },
     "node_modules/@babel/helper-plugin-utils": {
-      "version": "7.26.5",
-      "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz",
-      "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
+      "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
       "dev": true,
       "license": "MIT",
       "engines": {
@@ -1491,18 +1491,18 @@
       }
     },
     "node_modules/@babel/helper-string-parser": {
-      "version": "7.25.9",
-      "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
-      "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
+      "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
       "license": "MIT",
       "engines": {
         "node": ">=6.9.0"
       }
     },
     "node_modules/@babel/helper-validator-identifier": {
-      "version": "7.25.9",
-      "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
-      "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
+      "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
       "license": "MIT",
       "engines": {
         "node": ">=6.9.0"
@@ -1572,12 +1572,12 @@
       }
     },
     "node_modules/@babel/parser": {
-      "version": "7.26.7",
-      "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.7.tgz",
-      "integrity": "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.1.tgz",
+      "integrity": "sha512-I0dZ3ZpCrJ1c04OqlNsQcKiZlsrXf/kkE4FXzID9rIOYICsAbA8mMDzhW/luRNAHdCNt7os/u8wenklZDlUVUQ==",
       "license": "MIT",
       "dependencies": {
-        "@babel/types": "^7.26.7"
+        "@babel/types": "^7.27.1"
       },
       "bin": {
         "parser": "bin/babel-parser.js"
@@ -2849,16 +2849,16 @@
       }
     },
     "node_modules/@babel/plugin-transform-runtime": {
-      "version": "7.25.9",
-      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz",
-      "integrity": "sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.27.1.tgz",
+      "integrity": "sha512-TqGF3desVsTcp3WrJGj4HfKokfCXCLcHpt4PJF0D8/iT6LPd9RS82Upw3KPeyr6B22Lfd3DO8MVrmp0oRkUDdw==",
       "dev": true,
       "license": "MIT",
       "dependencies": {
-        "@babel/helper-module-imports": "^7.25.9",
-        "@babel/helper-plugin-utils": "^7.25.9",
+        "@babel/helper-module-imports": "^7.27.1",
+        "@babel/helper-plugin-utils": "^7.27.1",
         "babel-plugin-polyfill-corejs2": "^0.4.10",
-        "babel-plugin-polyfill-corejs3": "^0.10.6",
+        "babel-plugin-polyfill-corejs3": "^0.11.0",
         "babel-plugin-polyfill-regenerator": "^0.6.1",
         "semver": "^6.3.1"
       },
@@ -2869,6 +2869,20 @@
         "@babel/core": "^7.0.0-0"
       }
     },
+    "node_modules/@babel/plugin-transform-runtime/node_modules/babel-plugin-polyfill-corejs3": {
+      "version": "0.11.1",
+      "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz",
+      "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==",
+      "dev": true,
+      "license": "MIT",
+      "dependencies": {
+        "@babel/helper-define-polyfill-provider": "^0.6.3",
+        "core-js-compat": "^3.40.0"
+      },
+      "peerDependencies": {
+        "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
+      }
+    },
     "node_modules/@babel/plugin-transform-runtime/node_modules/semver": {
       "version": "6.3.1",
       "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
@@ -3279,30 +3293,30 @@
       }
     },
     "node_modules/@babel/template": {
-      "version": "7.25.9",
-      "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz",
-      "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.1.tgz",
+      "integrity": "sha512-Fyo3ghWMqkHHpHQCoBs2VnYjR4iWFFjguTDEqA5WgZDOrFesVjMhMM2FSqTKSoUSDO1VQtavj8NFpdRBEvJTtg==",
       "license": "MIT",
       "dependencies": {
-        "@babel/code-frame": "^7.25.9",
-        "@babel/parser": "^7.25.9",
-        "@babel/types": "^7.25.9"
+        "@babel/code-frame": "^7.27.1",
+        "@babel/parser": "^7.27.1",
+        "@babel/types": "^7.27.1"
       },
       "engines": {
         "node": ">=6.9.0"
       }
     },
     "node_modules/@babel/traverse": {
-      "version": "7.26.7",
-      "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.7.tgz",
-      "integrity": "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.1.tgz",
+      "integrity": "sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==",
       "license": "MIT",
       "dependencies": {
-        "@babel/code-frame": "^7.26.2",
-        "@babel/generator": "^7.26.5",
-        "@babel/parser": "^7.26.7",
-        "@babel/template": "^7.25.9",
-        "@babel/types": "^7.26.7",
+        "@babel/code-frame": "^7.27.1",
+        "@babel/generator": "^7.27.1",
+        "@babel/parser": "^7.27.1",
+        "@babel/template": "^7.27.1",
+        "@babel/types": "^7.27.1",
         "debug": "^4.3.1",
         "globals": "^11.1.0"
       },
@@ -3311,13 +3325,13 @@
       }
     },
     "node_modules/@babel/types": {
-      "version": "7.26.9",
-      "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz",
-      "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==",
+      "version": "7.27.1",
+      "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.1.tgz",
+      "integrity": "sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==",
       "license": "MIT",
       "dependencies": {
-        "@babel/helper-string-parser": "^7.25.9",
-        "@babel/helper-validator-identifier": "^7.25.9"
+        "@babel/helper-string-parser": "^7.27.1",
+        "@babel/helper-validator-identifier": "^7.27.1"
       },
       "engines": {
         "node": ">=6.9.0"
@@ -8498,9 +8512,9 @@
       }
     },
     "node_modules/@rjsf/validator-ajv8": {
-      "version": "5.24.1",
-      "resolved": "https://registry.npmjs.org/@rjsf/validator-ajv8/-/validator-ajv8-5.24.1.tgz",
-      "integrity": "sha512-p6URehglU9yFUAoQXE1ryqZjLYSjc6qdbiUfCVvEFAzUuMECsIFomz2hH3CPlt10K72sAFdzwVvrKn1iWTnxDw==",
+      "version": "5.24.9",
+      "resolved": "https://registry.npmjs.org/@rjsf/validator-ajv8/-/validator-ajv8-5.24.9.tgz",
+      "integrity": "sha512-leHb39Qa612QhAfvw36qi/ubWa7LQ6hrPN4Ge93QBlWywRfV/M0Wmx9bPccCGgIL4Qnn1Wmt53EWV8kQT28xTA==",
       "license": "Apache-2.0",
       "dependencies": {
         "ajv": "^8.12.0",
@@ -26686,9 +26700,9 @@
       }
     },
     "node_modules/http-proxy-middleware": {
-      "version": "2.0.7",
-      "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz",
-      "integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==",
+      "version": "2.0.9",
+      "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.9.tgz",
+      "integrity": "sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==",
       "dev": true,
       "license": "MIT",
       "dependencies": {
@@ -39480,9 +39494,9 @@
       }
     },
     "node_modules/react-intersection-observer": {
-      "version": "9.15.1",
-      "resolved": "https://registry.npmjs.org/react-intersection-observer/-/react-intersection-observer-9.15.1.tgz",
-      "integrity": "sha512-vGrqYEVWXfH+AGu241uzfUpNK4HAdhCkSAyFdkMb9VWWXs6mxzBLpWCxEy9YcnDNY2g9eO6z7qUtTBdA9hc8pA==",
+      "version": "9.16.0",
+      "resolved": "https://registry.npmjs.org/react-intersection-observer/-/react-intersection-observer-9.16.0.tgz",
+      "integrity": "sha512-w9nJSEp+DrW9KmQmeWHQyfaP6b03v+TdXynaoA964Wxt7mdR3An11z4NNCQgL4gKSK7y1ver2Fq+JKH6CWEzUA==",
       "license": "MIT",
       "peerDependencies": {
         "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
diff --git a/superset-frontend/package.json b/superset-frontend/package.json
index bb05703032a8f4bb89b6fe8f122cb55098554d6b..cde8fad39497b6688d0ddc190e92f60274fc224b 100644
--- a/superset-frontend/package.json
+++ b/superset-frontend/package.json
@@ -90,7 +90,7 @@
     "@reduxjs/toolkit": "^1.9.3",
     "@rjsf/core": "^5.21.1",
     "@rjsf/utils": "^5.24.3",
-    "@rjsf/validator-ajv8": "^5.22.3",
+    "@rjsf/validator-ajv8": "^5.24.9",
     "@scarf/scarf": "^1.4.0",
     "@superset-ui/chart-controls": "file:./packages/superset-ui-chart-controls",
     "@superset-ui/core": "file:./packages/superset-ui-core",
@@ -182,7 +182,7 @@
     "react-dom": "^17.0.2",
     "react-draggable": "^4.4.6",
     "react-hot-loader": "^4.13.1",
-    "react-intersection-observer": "^9.10.2",
+    "react-intersection-observer": "^9.16.0",
     "react-js-cron": "^2.1.2",
     "react-json-tree": "^0.17.0",
     "react-lines-ellipsis": "^0.15.4",
@@ -229,7 +229,7 @@
     "@babel/plugin-proposal-private-methods": "^7.18.6",
     "@babel/plugin-syntax-dynamic-import": "^7.8.3",
     "@babel/plugin-transform-modules-commonjs": "^7.26.3",
-    "@babel/plugin-transform-runtime": "^7.25.9",
+    "@babel/plugin-transform-runtime": "^7.27.1",
     "@babel/preset-env": "^7.26.7",
     "@babel/preset-react": "^7.26.3",
     "@babel/preset-typescript": "^7.26.0",
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/constants.ts b/superset-frontend/packages/superset-ui-chart-controls/src/constants.ts
index c9e8bf9db7fd2c32ff30ddf9f6ab4174f2cd3935..394c2c7f309c1e8d648cbd4309bebe9cade9e774 100644
--- a/superset-frontend/packages/superset-ui-chart-controls/src/constants.ts
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/constants.ts
@@ -26,6 +26,7 @@ import {
 import { ColumnMeta, SortSeriesData, SortSeriesType } from './types';
 
 export const DEFAULT_MAX_ROW = 100000;
+export const DEFAULT_MAX_ROW_TABLE_SERVER = 500000;
 
 // eslint-disable-next-line import/prefer-default-export
 export const TIME_FILTER_LABELS = {
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/fixtures.ts b/superset-frontend/packages/superset-ui-chart-controls/src/fixtures.ts
index 05b4d4df3dcbcf1c079220de4ff83d6d66ebca1f..ead279c0e789a0ffbf8d1ef77f0e23c47fb38fa4 100644
--- a/superset-frontend/packages/superset-ui-chart-controls/src/fixtures.ts
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/fixtures.ts
@@ -21,7 +21,6 @@ import { Dataset } from './types';
 
 export const TestDataset: Dataset = {
   column_formats: {},
-  currency_formats: {},
   columns: [
     {
       advanced_data_type: undefined,
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/operators/renameOperator.ts b/superset-frontend/packages/superset-ui-chart-controls/src/operators/renameOperator.ts
index 04f3b7ac327fd02614177203a691567526f49312..d6f496c5993cb2ddcfc7723e3e1a664a6903640b 100644
--- a/superset-frontend/packages/superset-ui-chart-controls/src/operators/renameOperator.ts
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/operators/renameOperator.ts
@@ -26,6 +26,7 @@ import {
 } from '@superset-ui/core';
 import { PostProcessingFactory } from './types';
 import { getMetricOffsetsMap, isTimeComparison } from './utils';
+import { TIME_COMPARISON_SEPARATOR } from './utils/constants';
 
 export const renameOperator: PostProcessingFactory<PostProcessingRename> = (
   formData,
@@ -37,50 +38,60 @@ export const renameOperator: PostProcessingFactory<PostProcessingRename> = (
   );
   const { truncate_metric } = formData;
   const xAxisLabel = getXAxisLabel(formData);
+  const isTimeComparisonValue = isTimeComparison(formData, queryObject);
+
   // remove or rename top level of column name(metric name) in the MultiIndex when
-  // 1) only 1 metric
+  // 1) at least 1 metric
   // 2) dimension exist
   // 3) xAxis exist
-  // 4) time comparison exist, and comparison type is "actual values"
-  // 5) truncate_metric in form_data and truncate_metric is true
+  // 4) truncate_metric in form_data and truncate_metric is true
   if (
-    metrics.length === 1 &&
+    metrics.length > 0 &&
     columns.length > 0 &&
     xAxisLabel &&
-    !(
-      // todo: we should provide an approach to handle derived metrics
-      (
-        isTimeComparison(formData, queryObject) &&
-        [
-          ComparisonType.Difference,
-          ComparisonType.Ratio,
-          ComparisonType.Percentage,
-        ].includes(formData.comparison_type)
-      )
-    ) &&
     truncate_metric !== undefined &&
     !!truncate_metric
   ) {
     const renamePairs: [string, string | null][] = [];
-
     if (
       // "actual values" will add derived metric.
       // we will rename the "metric" from the metricWithOffset label
       // for example: "count__1 year ago" =>	"1 year ago"
-      isTimeComparison(formData, queryObject) &&
-      formData.comparison_type === ComparisonType.Values
+      isTimeComparisonValue
     ) {
       const metricOffsetMap = getMetricOffsetsMap(formData, queryObject);
       const timeOffsets = ensureIsArray(formData.time_compare);
-      [...metricOffsetMap.keys()].forEach(metricWithOffset => {
-        const offsetLabel = timeOffsets.find(offset =>
-          metricWithOffset.includes(offset),
-        );
-        renamePairs.push([metricWithOffset, offsetLabel]);
-      });
+      [...metricOffsetMap.entries()].forEach(
+        ([metricWithOffset, metricOnly]) => {
+          const offsetLabel = timeOffsets.find(offset =>
+            metricWithOffset.includes(offset),
+          );
+          renamePairs.push([
+            formData.comparison_type === ComparisonType.Values
+              ? metricWithOffset
+              : [formData.comparison_type, metricOnly, metricWithOffset].join(
+                  TIME_COMPARISON_SEPARATOR,
+                ),
+            metrics.length > 1 ? `${metricOnly}, ${offsetLabel}` : offsetLabel,
+          ]);
+        },
+      );
     }
 
-    renamePairs.push([getMetricLabel(metrics[0]), null]);
+    if (
+      ![
+        ComparisonType.Difference,
+        ComparisonType.Percentage,
+        ComparisonType.Ratio,
+      ].includes(formData.comparison_type) &&
+      metrics.length === 1
+    ) {
+      renamePairs.push([getMetricLabel(metrics[0]), null]);
+    }
+
+    if (renamePairs.length === 0) {
+      return undefined;
+    }
 
     return {
       operation: 'rename',
diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/types.ts b/superset-frontend/packages/superset-ui-chart-controls/src/types.ts
index 62ac94468857afc574147cf2248de71dd1eb7ba6..71517884daa68f92bc52495e5eecba5c76e955f4 100644
--- a/superset-frontend/packages/superset-ui-chart-controls/src/types.ts
+++ b/superset-frontend/packages/superset-ui-chart-controls/src/types.ts
@@ -69,7 +69,6 @@ export interface Dataset {
   columns: ColumnMeta[];
   metrics: Metric[];
   column_formats: Record<string, string>;
-  currency_formats: Record<string, Currency>;
   verbose_map: Record<string, string>;
   main_dttm_col: string;
   // eg. ['["ds", true]', 'ds [asc]']
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/operators/renameOperator.test.ts b/superset-frontend/packages/superset-ui-chart-controls/test/operators/renameOperator.test.ts
index c6b899d5134b3cf3989c068f08fac00f970bd76c..c3a7faacff369efe9c8ea54d794449793300101f 100644
--- a/superset-frontend/packages/superset-ui-chart-controls/test/operators/renameOperator.test.ts
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/operators/renameOperator.test.ts
@@ -43,12 +43,12 @@ const queryObject: QueryObject = {
   post_processing: [],
 };
 
-test('should skip renameOperator if exists multiple metrics', () => {
+test('should skip renameOperator for empty metrics', () => {
   expect(
     renameOperator(formData, {
       ...queryObject,
       ...{
-        metrics: ['count(*)', 'sum(sales)'],
+        metrics: [],
       },
     }),
   ).toEqual(undefined);
@@ -77,7 +77,23 @@ test('should skip renameOperator if does not exist x_axis and is_timeseries', ()
   ).toEqual(undefined);
 });
 
-test('should skip renameOperator if exists derived metrics', () => {
+test('should skip renameOperator if not is_timeseries and multi metrics', () => {
+  expect(
+    renameOperator(formData, {
+      ...queryObject,
+      ...{ is_timeseries: false, metrics: ['count(*)', 'sum(val)'] },
+    }),
+  ).toEqual(undefined);
+});
+
+test('should add renameOperator', () => {
+  expect(renameOperator(formData, queryObject)).toEqual({
+    operation: 'rename',
+    options: { columns: { 'count(*)': null }, inplace: true, level: 0 },
+  });
+});
+
+test('should add renameOperator if exists derived metrics', () => {
   [
     ComparisonType.Difference,
     ComparisonType.Ratio,
@@ -99,14 +115,14 @@ test('should skip renameOperator if exists derived metrics', () => {
           },
         },
       ),
-    ).toEqual(undefined);
-  });
-});
-
-test('should add renameOperator', () => {
-  expect(renameOperator(formData, queryObject)).toEqual({
-    operation: 'rename',
-    options: { columns: { 'count(*)': null }, inplace: true, level: 0 },
+    ).toEqual({
+      operation: 'rename',
+      options: {
+        columns: { [`${type}__count(*)__count(*)__1 year ago`]: '1 year ago' },
+        inplace: true,
+        level: 0,
+      },
+    });
   });
 });
 
@@ -170,6 +186,61 @@ test('should add renameOperator if exist "actual value" time comparison', () =>
   });
 });
 
+test('should add renameOperator if derived time comparison exists', () => {
+  expect(
+    renameOperator(
+      {
+        ...formData,
+        ...{
+          comparison_type: ComparisonType.Ratio,
+          time_compare: ['1 year ago', '1 year later'],
+        },
+      },
+      queryObject,
+    ),
+  ).toEqual({
+    operation: 'rename',
+    options: {
+      columns: {
+        'ratio__count(*)__count(*)__1 year ago': '1 year ago',
+        'ratio__count(*)__count(*)__1 year later': '1 year later',
+      },
+      inplace: true,
+      level: 0,
+    },
+  });
+});
+
+test('should add renameOperator if multiple metrics exist', () => {
+  expect(
+    renameOperator(
+      {
+        ...formData,
+        ...{
+          comparison_type: ComparisonType.Values,
+          time_compare: ['1 year ago'],
+        },
+      },
+      {
+        ...queryObject,
+        ...{
+          metrics: ['count(*)', 'sum(sales)'],
+        },
+      },
+    ),
+  ).toEqual({
+    operation: 'rename',
+    options: {
+      columns: {
+        'count(*)__1 year ago': 'count(*), 1 year ago',
+        'sum(sales)__1 year ago': 'sum(sales), 1 year ago',
+      },
+      inplace: true,
+      level: 0,
+    },
+  });
+});
+
 test('should remove renameOperator', () => {
   expect(
     renameOperator(
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/utils/columnChoices.test.tsx b/superset-frontend/packages/superset-ui-chart-controls/test/utils/columnChoices.test.tsx
index f27365e95633f9a360748ed75705a9e32bd0a050..646ae093fbb94c902586614e84f34bb0f0e9b84b 100644
--- a/superset-frontend/packages/superset-ui-chart-controls/test/utils/columnChoices.test.tsx
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/utils/columnChoices.test.tsx
@@ -53,7 +53,6 @@ describe('columnChoices()', () => {
         ],
         verbose_map: {},
         column_formats: { fiz: 'NUMERIC', about: 'STRING', foo: 'DATE' },
-        currency_formats: {},
         datasource_name: 'my_datasource',
         description: 'this is my datasource',
       }),
@@ -105,7 +104,6 @@ describe('columnChoices()', () => {
         ],
         verbose_map: {},
         column_formats: { fiz: 'NUMERIC', about: 'STRING', foo: 'DATE' },
-        currency_formats: {},
         datasource_name: 'my_datasource',
         description: 'this is my datasource',
       }),
diff --git a/superset-frontend/packages/superset-ui-chart-controls/test/utils/defineSavedMetrics.test.tsx b/superset-frontend/packages/superset-ui-chart-controls/test/utils/defineSavedMetrics.test.tsx
index 682075b5c1cceddbb78a31262548d988f5374290..f1c64ad4a71c91603b0238cef36450a57c7fd257 100644
--- a/superset-frontend/packages/superset-ui-chart-controls/test/utils/defineSavedMetrics.test.tsx
+++ b/superset-frontend/packages/superset-ui-chart-controls/test/utils/defineSavedMetrics.test.tsx
@@ -41,7 +41,6 @@ describe('defineSavedMetrics', () => {
       columns: [],
       verbose_map: {},
       column_formats: {},
-      currency_formats: {},
       datasource_name: 'my_datasource',
       description: 'this is my datasource',
     };
diff --git a/superset-frontend/packages/superset-ui-core/src/connection/callApi/parseResponse.ts b/superset-frontend/packages/superset-ui-core/src/connection/callApi/parseResponse.ts
index 931aeecbdd8016afdee7d4a6b671c7467fb239e1..4ee81b80b3aa0bce7f5a6d73a4319719b90cf2c2 100644
--- a/superset-frontend/packages/superset-ui-core/src/connection/callApi/parseResponse.ts
+++ b/superset-frontend/packages/superset-ui-core/src/connection/callApi/parseResponse.ts
@@ -58,17 +58,18 @@ export default async function parseResponse<T extends ParseMethod = 'json'>(
     const result: JsonResponse = {
       response,
       json: cloneDeepWith(json, (value: any) => {
-        // `json-bigint` could not handle floats well, see sidorares/json-bigint#62
-        // TODO: clean up after json-bigint>1.0.1 is released
-        if (value?.isInteger?.() === false) {
-          return Number(value);
-        }
         if (
-          value?.isGreaterThan?.(Number.MAX_SAFE_INTEGER) ||
-          value?.isLessThan?.(Number.MIN_SAFE_INTEGER)
+          value?.isInteger?.() === true &&
+          (value?.isGreaterThan?.(Number.MAX_SAFE_INTEGER) ||
+            value?.isLessThan?.(Number.MIN_SAFE_INTEGER))
         ) {
           return BigInt(value);
         }
+        // // `json-bigint` could not handle floats well, see sidorares/json-bigint#62
+        // // TODO: clean up after json-bigint>1.0.1 is released
+        if (value?.isNaN?.() === false) {
+          return value?.toNumber?.();
+        }
         return undefined;
       }),
     };
diff --git a/superset-frontend/packages/superset-ui-core/src/translation/types/index.ts b/superset-frontend/packages/superset-ui-core/src/translation/types/index.ts
index 7850d1a3b5ca84b290e7ae54c90c821973eb3e8f..e4fa77734ec800fbccb2c45e4e9169af1d3cbc42 100644
--- a/superset-frontend/packages/superset-ui-core/src/translation/types/index.ts
+++ b/superset-frontend/packages/superset-ui-core/src/translation/types/index.ts
@@ -35,7 +35,8 @@ export type Locale =
   | 'pt'
   | 'pt_BR'
   | 'ru'
-  | 'zh'; // supported locales in Superset
+  | 'zh'
+  | 'zh_TW'; // supported locales in Superset
 
 /**
  * Language pack provided to `jed`.
diff --git a/superset-frontend/packages/superset-ui-core/src/validator/index.ts b/superset-frontend/packages/superset-ui-core/src/validator/index.ts
index 1198c4e0a5b4d859c292bd069f725a3b959294d9..df8dc10a70f973727195d2266f9e210db7ad10ae 100644
--- a/superset-frontend/packages/superset-ui-core/src/validator/index.ts
+++ b/superset-frontend/packages/superset-ui-core/src/validator/index.ts
@@ -25,3 +25,4 @@ export { default as validateNonEmpty } from './validateNonEmpty';
 export { default as validateMaxValue } from './validateMaxValue';
 export { default as validateMapboxStylesUrl } from './validateMapboxStylesUrl';
 export { default as validateTimeComparisonRangeValues } from './validateTimeComparisonRangeValues';
+export { default as validateServerPagination } from './validateServerPagination';
diff --git a/superset-frontend/packages/superset-ui-core/src/validator/validateServerPagination.ts b/superset-frontend/packages/superset-ui-core/src/validator/validateServerPagination.ts
new file mode 100644
index 0000000000000000000000000000000000000000..02db3585a1ac9c4cd93ff135013638f8c4410739
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/src/validator/validateServerPagination.ts
@@ -0,0 +1,30 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { t } from '../translation';
+
+export default function validateServerPagination(
+  v: unknown,
+  serverPagination: boolean,
+  max: number,
+) {
+  if (Number(v) > +max && !serverPagination) {
+    return t('Server pagination needs to be enabled for values over %s', max);
+  }
+  return false;
+}
diff --git a/superset-frontend/packages/superset-ui-core/test/connection/callApi/parseResponse.test.ts b/superset-frontend/packages/superset-ui-core/test/connection/callApi/parseResponse.test.ts
index 789910c977be459469ad6fa935fa978f20d62d1a..4b6192e65ac00f1e4cb40408003758b7ff613e6e 100644
--- a/superset-frontend/packages/superset-ui-core/test/connection/callApi/parseResponse.test.ts
+++ b/superset-frontend/packages/superset-ui-core/test/connection/callApi/parseResponse.test.ts
@@ -143,7 +143,7 @@ describe('parseResponse()', () => {
     const mockBigIntUrl = '/mock/get/bigInt';
     const mockGetBigIntPayload = `{
       "value": 9223372036854775807, "minus": { "value": -483729382918228373892, "str": "something" },
-      "number": 1234, "floatValue": { "plus": 0.3452211361231223, "minus": -0.3452211361231223 },
+      "number": 1234, "floatValue": { "plus": 0.3452211361231223, "minus": -0.3452211361231223, "even": 1234567890123456.0000000 },
       "string.constructor": "data.constructor",
       "constructor": "constructor"
     }`;
@@ -161,6 +161,7 @@ describe('parseResponse()', () => {
     expect(responseBigNumber.json.floatValue.minus).toEqual(
       -0.3452211361231223,
     );
+    expect(responseBigNumber.json.floatValue.even).toEqual(1234567890123456);
     expect(
       responseBigNumber.json.floatValue.plus +
         responseBigNumber.json.floatValue.minus,
diff --git a/superset-frontend/packages/superset-ui-core/test/validator/validateServerPagination.test.ts b/superset-frontend/packages/superset-ui-core/test/validator/validateServerPagination.test.ts
new file mode 100644
index 0000000000000000000000000000000000000000..5a638e5142f4b974b2914bc2e48bae51b6c8e2c0
--- /dev/null
+++ b/superset-frontend/packages/superset-ui-core/test/validator/validateServerPagination.test.ts
@@ -0,0 +1,46 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import { validateServerPagination } from '@superset-ui/core';
+import './setup';
+
+test('validateServerPagination returns warning message when server pagination is disabled and value exceeds max', () => {
+  expect(validateServerPagination(100001, false, 100000)).toBeTruthy();
+  expect(validateServerPagination('150000', false, 100000)).toBeTruthy();
+  expect(validateServerPagination(200000, false, 100000)).toBeTruthy();
+});
+
+test('validateServerPagination returns false when server pagination is enabled', () => {
+  expect(validateServerPagination(100001, true, 100000)).toBeFalsy();
+  expect(validateServerPagination(150000, true, 100000)).toBeFalsy();
+  expect(validateServerPagination('200000', true, 100000)).toBeFalsy();
+});
+
+test('validateServerPagination returns false when value is below max', () => {
+  expect(validateServerPagination(50000, false, 100000)).toBeFalsy();
+  expect(validateServerPagination('75000', false, 100000)).toBeFalsy();
+  expect(validateServerPagination(99999, false, 100000)).toBeFalsy();
+});
+
+test('validateServerPagination handles edge cases', () => {
+  expect(validateServerPagination(undefined, false, 100000)).toBeFalsy();
+  expect(validateServerPagination(null, false, 100000)).toBeFalsy();
+  expect(validateServerPagination(NaN, false, 100000)).toBeFalsy();
+  expect(validateServerPagination('invalid', false, 100000)).toBeFalsy();
+});
diff --git a/superset-frontend/packages/superset-ui-demo/package.json b/superset-frontend/packages/superset-ui-demo/package.json
index d5fb624135316a12f00f2efd0120a9c0b53b8eae..45c14a8696a293ad4852a9b1caf93135976dfc05 100644
--- a/superset-frontend/packages/superset-ui-demo/package.json
+++ b/superset-frontend/packages/superset-ui-demo/package.json
@@ -60,7 +60,7 @@
     "@storybook/react-webpack5": "8.2.9",
     "babel-loader": "^9.1.3",
     "fork-ts-checker-webpack-plugin": "^9.0.2",
-    "ts-loader": "^9.5.1",
+    "ts-loader": "^9.5.2",
     "typescript": "^5.7.2"
   },
   "peerDependencies": {
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb b/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb
index ad68bd41d2293c60894ec6cd2fb3f72853b1e9df..303a97c3d40bd0323f15f1a68cc7685ebfadde11 100644
Binary files a/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb and b/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb differ
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts
index e3f35fc1ae7ac661ad48ed662cb63f743579aed7..9661eea942c7a2b02f14f57268b5cf62389010b5 100755
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts
@@ -103,6 +103,7 @@ import iran from './countries/iran.geojson';
 import israel from './countries/israel.geojson';
 import italy from './countries/italy.geojson';
 import italy_regions from './countries/italy_regions.geojson';
+import ivory_coast from './countries/ivory_coast.geojson';
 import japan from './countries/japan.geojson';
 import jordan from './countries/jordan.geojson';
 import kazakhstan from './countries/kazakhstan.geojson';
@@ -160,6 +161,7 @@ import philippines_regions from './countries/philippines_regions.geojson';
 import poland from './countries/poland.geojson';
 import portugal from './countries/portugal.geojson';
 import qatar from './countries/qatar.geojson';
+import republic_of_serbia from './countries/republic_of_serbia.geojson';
 import romania from './countries/romania.geojson';
 import russia from './countries/russia.geojson';
 import rwanda from './countries/rwanda.geojson';
@@ -304,6 +306,7 @@ export const countries = {
   israel,
   italy,
   italy_regions,
+  ivory_coast,
   japan,
   jordan,
   kazakhstan,
@@ -361,6 +364,7 @@ export const countries = {
   poland,
   portugal,
   qatar,
+  republic_of_serbia,
   romania,
   russia,
   rwanda,
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ivory_coast.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ivory_coast.geojson
new file mode 100644
index 0000000000000000000000000000000000000000..885bc2133851301ffb096cc2522891f88b12b2c2
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ivory_coast.geojson
@@ -0,0 +1,26 @@
+{
+"type": "FeatureCollection",
+"name": "ivory_coast",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+"features": [
+{ "type": "Feature", "properties": { "ISO": "CI-10", "NAME_1": "Denguélé" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.146862344999903, 9.864696146000085 ], [ -8.150996459999931, 9.866143087000083 ], [ -8.155078898999932, 9.875238139000146 ], [ -8.152133341999928, 9.878829651000032 ], [ -8.14732743299993, 9.88012156200007 ], [ -8.145673787999954, 9.882498678000033 ], [ -8.147224079999887, 9.887924703000095 ], [ -8.149549519999937, 9.905339661000127 ], [ -8.153218546999909, 9.910920716000049 ], [ -8.158954629999897, 9.912367656000043 ], [ -8.16453568499989, 9.912677714000026 ], [ -8.167894652999905, 9.914693095000075 ], [ -8.17151200299989, 9.922832133000085 ], [ -8.174715942999882, 9.933038229000147 ], [ -8.173837442999911, 9.941874899000055 ], [ -8.152391723399319, 9.949988098372046 ], [ -8.14009273299996, 9.959703268000098 ], [ -8.136268676999919, 9.969444275000043 ], [ -8.148877726999928, 9.973888449000057 ], [ -8.15848954299986, 9.984921367000055 ], [ -8.14774084499993, 10.010036113000069 ], [ -8.127535359999854, 10.037114563000031 ], [ -8.108776814999942, 10.054193624000078 ], [ -8.057875529999905, 10.073081360000103 ], [ -8.034879516999865, 10.085793763000055 ], [ -8.015707560999942, 10.110365906000126 ], [ -8.012348591999853, 10.124861145000068 ], [ -8.007232625999961, 10.13832285600003 ], [ -7.999842895999933, 10.150699361000093 ], [ -7.989662638999988, 10.161990662000065 ], [ -7.970904093999877, 10.155066020000078 ], [ -7.94987178599996, 10.155427755000076 ], [ -7.929046182999912, 10.160957133000082 ], [ -7.910959431999913, 10.169406230000078 ], [ -7.892252563999904, 10.18483164400007 ], [ -7.882847452999954, 10.190826111000092 ], [ -7.857215942999886, 10.194417623000078 ], [ -7.847423257999935, 10.197931621000123 ], [ -7.838664103999861, 10.203719381000099 ], [ -7.829000609999923, 10.211651713000052 ], [ -7.805074421999933, 10.241830749000059 ], [ -7.801250366999881, 10.249453024000033 ], [ -7.797736368999921, 10.260279236000073 ], [ -7.791225137999959, 10.265782776000066 ], [ -7.783835408999948, 10.270433655000119 ], [ -7.778254353999927, 10.278340149000073 ], [ -7.776342325999934, 10.292732036000089 ], [ -7.764405069999981, 10.312911682000063 ], [ -7.777582559999871, 10.329861552000068 ], [ -7.757428750999878, 10.334047343000108 ], [ -7.735337076999883, 10.347095642000056 ], [ -7.723994099999913, 10.363606262000047 ], [ -7.736034708999881, 10.378282369000118 ], [ -7.726784626999859, 10.382881571000084 ], [ -7.722288777999921, 10.384483541000108 ], [ -7.722288777999921, 10.39133066900007 ], [ -7.708646199999919, 10.402466939000092 ], [ -7.699809529999925, 10.404533997000058 ], [ -7.687923949999913, 10.403087057000064 ], [ -7.679035603999893, 10.40592926100004 ], [ -7.673971313999914, 10.416393738000082 ], [ -7.670043903999925, 10.428770244000049 ], [ -7.664411172999905, 10.437141825000111 ], [ -7.643688924999879, 10.440474955000127 ], [ -7.607773803999919, 10.418719177000114 ], [ -7.584416056999885, 10.416522929000024 ], [ -7.574339151999936, 10.417530620000093 ], [ -7.556381591999866, 10.41727223700012 ], [ -7.547415730999916, 10.420502015000096 ], [ -7.539612588999915, 10.427633362000037 ], [ -7.515841430999927, 10.457812399000133 ], [ -7.501475382999928, 10.45863922100007 ], [ -7.489848184999886, 10.45610707600008 ], [ -7.480236368999954, 10.450293477000088 ], [ -7.471606404999932, 10.441095072000095 ], [ -7.466180379999855, 10.429493713000042 ], [ -7.465353555999911, 10.41799570800012 ], [ -7.466180379999855, 10.407479554000062 ], [ -7.465456908999954, 10.398617045000051 ], [ -7.461477823999871, 10.388643493000046 ], [ -7.444682983999911, 10.360815735000088 ], [ -7.443287719999915, 10.349963685000134 ], [ -7.445768187999903, 10.340377706000126 ], [ -7.444424600999923, 10.33420237200005 ], [ -7.431402140999893, 10.333737284000037 ], [ -7.422203735999915, 10.336088562000072 ], [ -7.395021931999906, 10.346217143000018 ], [ -7.372335977999853, 10.344770203000024 ], [ -7.366341511999934, 10.329448141000057 ], [ -7.372697713999855, 10.288597921000061 ], [ -7.371819213999913, 10.264516704000116 ], [ -7.36339595499993, 10.252191875000065 ], [ -7.346962850999944, 10.247902731000096 ], [ -7.28402095499996, 10.246559143000042 ], [ -7.204749308999908, 10.234492696000061 ], [ -7.106357380999896, 10.207259216000068 ], [ -7.089459187999893, 10.197569886000039 ], [ -7.073129434999942, 10.178527120000055 ], [ -7.058246622999917, 10.155970358000033 ], [ -7.040521605999885, 10.140054017000097 ], [ -7.015768594999884, 10.140880839000118 ], [ -6.992410847999935, 10.149097392000058 ], [ -6.971636922999892, 10.164419454000026 ], [ -6.959389607999867, 10.185503439000058 ], [ -6.961611693999942, 10.211031596000083 ], [ -6.97117183499995, 10.222064514000081 ], [ -6.984297648999927, 10.23038442000005 ], [ -6.994891316999912, 10.239401958000087 ], [ -6.997113402999901, 10.252760316000121 ], [ -6.973135537999894, 10.332290344000043 ], [ -6.961249959999861, 10.344873556000053 ], [ -6.938719034999849, 10.348335877000096 ], [ -6.882029987999942, 10.341256206000068 ], [ -6.86275467999991, 10.34384002700007 ], [ -6.803895222999898, 10.370866801000105 ], [ -6.782087768999872, 10.373037212000014 ], [ -6.760228637999944, 10.366112570000027 ], [ -6.722556518999909, 10.344046733000127 ], [ -6.700335652999883, 10.341669617000079 ], [ -6.677391316999916, 10.34903350900008 ], [ -6.668916381999935, 10.361022441000046 ], [ -6.668270003999908, 10.365839977000036 ], [ -6.656203171938841, 10.354148668026596 ], [ -6.639098272567253, 10.318466090937306 ], [ -6.632225308151476, 10.308079128149245 ], [ -6.628194545841609, 10.291852728820345 ], [ -6.627936164322534, 10.284023749096718 ], [ -6.630623337696875, 10.271207994453391 ], [ -6.63114010343304, 10.265084337072494 ], [ -6.63015824970347, 10.258728135694867 ], [ -6.627832810635709, 10.25206187595478 ], [ -6.619306199821267, 10.243664456349563 ], [ -6.613260056806212, 10.239013577314722 ], [ -6.581840786023463, 10.229789334510144 ], [ -6.580497198886633, 10.223588161864143 ], [ -6.585044725133969, 10.201858221879434 ], [ -6.585561489071495, 10.18943003996435 ], [ -6.582874314797778, 10.172299303070361 ], [ -6.583494432422128, 10.167183336042115 ], [ -6.586698370633314, 10.163772691356598 ], [ -6.590419073681289, 10.160723781877039 ], [ -6.671861131386095, 10.116902166701607 ], [ -6.71165198425166, 10.104241440789849 ], [ -6.722814093395698, 10.102381089715493 ], [ -6.728963589198315, 10.102148545718819 ], [ -6.736508348081827, 10.103388780068144 ], [ -6.744518194958744, 10.10602427839774 ], [ -6.755421921684331, 10.111786200572681 ], [ -6.767152471609279, 10.122250677726583 ], [ -6.777487759352596, 10.140957545754134 ], [ -6.814901496307016, 10.134265448491647 ], [ -6.82828569173131, 10.135350654109402 ], [ -6.855312465897612, 10.130932319071235 ], [ -6.873192510725801, 10.122095648995014 ], [ -6.884923062449388, 10.107290351168785 ], [ -6.877119920248106, 10.098117784308272 ], [ -6.876189744261296, 10.093234361276757 ], [ -6.876758185042206, 10.08540538245245 ], [ -6.880013800096833, 10.077162991578803 ], [ -6.888488734967154, 10.064063015195984 ], [ -6.892674526008591, 10.054451198763786 ], [ -6.894689906713836, 10.041635444120459 ], [ -6.894586553926331, 10.033728949131671 ], [ -6.897325405043432, 10.025124823052124 ], [ -6.899650845010513, 10.019517931407393 ], [ -6.920889857680777, 10.000061754546323 ], [ -6.928641323038619, 9.991044216417436 ], [ -6.945952927985275, 9.964973455760344 ], [ -6.947503220697058, 9.960245063259038 ], [ -6.947089810446414, 9.955516668959092 ], [ -6.942128872149738, 9.951098333920982 ], [ -6.936134405978066, 9.949082953215679 ], [ -6.929829881443879, 9.947842718866355 ], [ -6.802757534332727, 9.951873481176222 ], [ -6.796711392216991, 9.951485907548602 ], [ -6.790820277933506, 9.95024567319922 ], [ -6.785911017379533, 9.947842718866355 ], [ -6.781880255969043, 9.944587103811784 ], [ -6.778417935339462, 9.939135239999302 ], [ -6.77066646998162, 9.920144151131637 ], [ -6.7664290020968, 9.913917140963292 ], [ -6.762139858267858, 9.909576321190229 ], [ -6.758160772801432, 9.90694082286069 ], [ -6.754491745697521, 9.903917751802794 ], [ -6.751339484329719, 9.899111843137064 ], [ -6.74885901473175, 9.89283315702454 ], [ -6.742709519828509, 9.867925116351046 ], [ -6.740177375185738, 9.863506781312879 ], [ -6.734492967376525, 9.855677802488572 ], [ -6.733201056183816, 9.850458481773501 ], [ -6.733562791389716, 9.844257310026819 ], [ -6.739453904773882, 9.834800523225567 ], [ -6.744208135696908, 9.829684557096641 ], [ -6.748342250794224, 9.822992458934834 ], [ -6.75195960105475, 9.812993068875016 ], [ -6.754853480903421, 9.793666083223172 ], [ -6.759711066412592, 9.777853095044293 ], [ -6.760537888712577, 9.768603013817994 ], [ -6.756610480089591, 9.762866930064774 ], [ -6.746998663657394, 9.756820787049662 ], [ -6.742864548560078, 9.753487656729988 ], [ -6.740280727973243, 9.749146836956925 ], [ -6.740074022398233, 9.743333237938543 ], [ -6.741934372573269, 9.736641139776793 ], [ -6.747205369232404, 9.728114528962351 ], [ -6.75040930834291, 9.721293240490638 ], [ -6.749892544405384, 9.711500556005831 ], [ -6.747412074807414, 9.70591950098418 ], [ -6.744363166227174, 9.701036077952608 ], [ -6.742864548560078, 9.696850286911172 ], [ -6.743794725446207, 9.692044379144761 ], [ -6.750460985186351, 9.686540839388215 ], [ -6.755111864221192, 9.681088975575733 ], [ -6.758367479275762, 9.674112657473131 ], [ -6.759814419200097, 9.662485460335688 ], [ -6.761778123061958, 9.654398098193667 ], [ -6.776970993616487, 9.635639553322733 ], [ -6.779709844733532, 9.631350409493791 ], [ -6.785911017379533, 9.614142157334697 ], [ -6.797744920091986, 9.565333767239565 ], [ -6.779503140057898, 9.554714260454716 ], [ -6.773250290568456, 9.548719794283045 ], [ -6.764516974179003, 9.536782537883823 ], [ -6.75077104264949, 9.525387884743054 ], [ -6.744828254220579, 9.521589667329295 ], [ -6.742141079047542, 9.518850816212193 ], [ -6.740849167854833, 9.512339586102996 ], [ -6.741469284579807, 9.50396800402018 ], [ -6.745448370945553, 9.490790514170897 ], [ -6.74947913325542, 9.484253444740659 ], [ -6.754233364178447, 9.480067653699223 ], [ -6.759142624732362, 9.478129788259082 ], [ -6.763535122248129, 9.475649319560432 ], [ -6.766687383615874, 9.471851101247296 ], [ -6.768496059645429, 9.466425075856534 ], [ -6.77082149871319, 9.454461981934912 ], [ -6.772836880317755, 9.44919098617504 ], [ -6.775524053692152, 9.44500519513366 ], [ -6.778676316858537, 9.442059638441549 ], [ -6.781001755926297, 9.438493964125144 ], [ -6.781260138344692, 9.434463201815277 ], [ -6.780071579939488, 9.427926134183735 ], [ -6.775730760166482, 9.416531480143703 ], [ -6.773818732248685, 9.40909007404764 ], [ -6.775317349016461, 9.400692654442423 ], [ -6.783998988562473, 9.387592678059605 ], [ -6.783585578311772, 9.374854437782062 ], [ -6.780019903995367, 9.356095892911128 ], [ -6.768186001282913, 9.314806423277787 ], [ -6.753819953028426, 9.288890693150961 ], [ -6.750202602767899, 9.285557562831229 ], [ -6.747515427594919, 9.281604315786524 ], [ -6.740900844698217, 9.273620307331328 ], [ -6.736921759231791, 9.270597236273431 ], [ -6.734906379425865, 9.260416978161004 ], [ -6.735939907300917, 9.244061388522255 ], [ -6.747412074807414, 9.187191473807445 ], [ -6.748342250794224, 9.173523057543036 ], [ -6.740384079861428, 9.159492906072728 ], [ -6.738678758417961, 9.151793118457647 ], [ -6.738317023212062, 9.145902004174161 ], [ -6.74658525160811, 9.117815862811824 ], [ -6.783120490318368, 9.096163438092162 ], [ -6.807718471730084, 9.089497179251396 ], [ -6.816761847381372, 9.08515635857907 ], [ -6.829215867718119, 9.076784776496197 ], [ -6.841359828793088, 9.072573147033097 ], [ -6.881047328871148, 9.063271388963415 ], [ -6.891382615715145, 9.058232937200273 ], [ -6.897325405043432, 9.052264309450322 ], [ -6.898824021811151, 9.045908108072695 ], [ -6.901666225715758, 9.038595893185914 ], [ -6.907970750249945, 9.028984075854396 ], [ -6.910141159686759, 9.021620185023494 ], [ -6.910864630997935, 9.014850572495902 ], [ -6.910089483742695, 9.000510361763759 ], [ -6.90998613095519, 9.000122789035458 ], [ -6.90998613095519, 8.999890245038785 ], [ -6.905231899132843, 8.954957586723253 ], [ -6.905541958394679, 8.948911445506781 ], [ -6.907402310368354, 8.942710272860779 ], [ -6.91076127821043, 8.942632758494995 ], [ -6.914481981258461, 8.944260566471939 ], [ -6.921665004936017, 8.951159369309437 ], [ -6.926574266389309, 8.953872382004818 ], [ -6.932878790923496, 8.955577704347547 ], [ -6.944092576910919, 8.954957586723253 ], [ -6.95163733579443, 8.955655218713332 ], [ -6.957270066760202, 8.958058173046254 ], [ -6.961042445752298, 8.961339626522545 ], [ -6.966520147986444, 8.963820095221195 ], [ -6.973289761413355, 8.96529287446657 ], [ -7.001660121817167, 8.959608465758095 ], [ -7.017989874832892, 8.958006497102133 ], [ -7.024294399367022, 8.958316555464648 ], [ -7.029927131232114, 8.959298407395579 ], [ -7.03524980293605, 8.961029568160029 ], [ -7.039900681970892, 8.963510036858679 ], [ -7.043931444280759, 8.966688137547521 ], [ -7.047238735279393, 8.970486354961281 ], [ -7.058297491635926, 8.98684194639867 ], [ -7.061553106690553, 8.990510973502637 ], [ -7.065945604206263, 8.992758897305237 ], [ -7.07152665922797, 8.993456529295372 ], [ -7.08904496885026, 8.992138780580262 ], [ -7.094936082234426, 8.993146470932857 ], [ -7.099586961269267, 8.995394394735513 ], [ -7.103152634686353, 8.997719834702593 ], [ -7.105426397809993, 8.999967760303889 ], [ -7.105581427440939, 9.000122789035458 ], [ -7.105684780228444, 9.000355333032189 ], [ -7.106304896953418, 9.001052965022325 ], [ -7.108992072126455, 9.002913316096624 ], [ -7.114108039154701, 9.00554881442622 ], [ -7.123254766694117, 9.007796739128196 ], [ -7.12950761618356, 9.007254136769006 ], [ -7.134468552681597, 9.005083726432815 ], [ -7.137310756586146, 9.00268077209995 ], [ -7.139171107660502, 9.000355333032189 ], [ -7.139222785403206, 9.000200304300563 ], [ -7.140876430902551, 8.996479600353268 ], [ -7.150023159341345, 8.985395006474334 ], [ -7.162270474103082, 8.977695217060614 ], [ -7.178290167856971, 8.963122463231059 ], [ -7.192087775330549, 8.952709662021277 ], [ -7.21735755031068, 8.94542328555616 ], [ -7.230793422578415, 8.944958197562755 ], [ -7.232705451395475, 8.943020331223295 ], [ -7.233583949639581, 8.93870534897269 ], [ -7.231103480940874, 8.934519557931253 ], [ -7.226866013955373, 8.932323310072661 ], [ -7.219114548597531, 8.931703193347687 ], [ -7.20950273306471, 8.92922272374966 ], [ -7.209399380277205, 8.923383287208935 ], [ -7.215703904811392, 8.911833604437277 ], [ -7.215858934442281, 8.898449408113663 ], [ -7.217977667935031, 8.887881578172255 ], [ -7.222576870126488, 8.878889879364408 ], [ -7.229966600278374, 8.870234076441477 ], [ -7.215858934442281, 8.86449799178888 ], [ -7.207332322728519, 8.852974148338262 ], [ -7.203146531687082, 8.837264512946888 ], [ -7.202009650125262, 8.819048570435143 ], [ -7.199890915733192, 8.813338324204267 ], [ -7.190847540981224, 8.796000880835948 ], [ -7.188987189007548, 8.788301093220866 ], [ -7.191312628974629, 8.780988878334028 ], [ -7.200097622207522, 8.772643133773613 ], [ -7.202009650125262, 8.764116522959171 ], [ -7.203818325255497, 8.74690827080002 ], [ -7.215703904811392, 8.698926703004929 ], [ -7.21678911042909, 8.661642157259735 ], [ -7.220251431058728, 8.64226349476445 ], [ -7.229966600278374, 8.623815009155351 ], [ -7.216324022435685, 8.623453273949394 ], [ -7.209089321015369, 8.61955170284881 ], [ -7.210381232208135, 8.614409898298163 ], [ -7.222525194182367, 8.610172431312662 ], [ -7.209657761796279, 8.600560613981145 ], [ -7.198960740645646, 8.5819570987411 ], [ -7.191726040124649, 8.561209010687264 ], [ -7.186455044364834, 8.523614407478931 ], [ -7.218907843022521, 8.552992459134657 ], [ -7.227486130680404, 8.567952785692512 ], [ -7.23125851057182, 8.577900498908889 ], [ -7.233894008901416, 8.58293895157135 ], [ -7.239630092654636, 8.589295152049601 ], [ -7.248725145149365, 8.597460029456784 ], [ -7.273891567341991, 8.614203192723153 ], [ -7.281229620650493, 8.617768866140239 ], [ -7.291874965857005, 8.620869452463239 ], [ -7.301486782289203, 8.625003567560555 ], [ -7.310168422734534, 8.630119533689538 ], [ -7.323500942214707, 8.64345205316971 ], [ -7.35016598117511, 8.679935614137264 ], [ -7.360139532813207, 8.697531439923978 ], [ -7.365100470210564, 8.702879950049635 ], [ -7.37192175868222, 8.708874417120626 ], [ -7.394039272294606, 8.72267202369494 ], [ -7.405511439801103, 8.728408108347537 ], [ -7.414038052414185, 8.733782456894858 ], [ -7.45806637226525, 8.784812934169565 ], [ -7.494601610076245, 8.805612698167465 ], [ -7.49796057791832, 8.808248196497061 ], [ -7.501577928178847, 8.812356472273336 ], [ -7.529173143126059, 8.855351264249407 ], [ -7.536614549222065, 8.863412787070445 ], [ -7.594802211752665, 8.914004014773468 ], [ -7.625911424172898, 8.924390977561529 ], [ -7.644566616256327, 8.933175970794423 ], [ -7.652783168708254, 8.938679511450289 ], [ -7.660121222016812, 8.945345771190375 ], [ -7.666374070606878, 8.954570013994953 ], [ -7.711280889601369, 9.038208320457613 ], [ -7.736292283961745, 9.072573147033097 ], [ -7.748202715383002, 9.075403104869395 ], [ -7.746783406999896, 9.076449687000107 ], [ -7.759392455999915, 9.091668396000046 ], [ -7.801043660999937, 9.114793599000038 ], [ -7.823367878999903, 9.131976013000099 ], [ -7.834219929999932, 9.142983093000083 ], [ -7.847914184999865, 9.168562928000128 ], [ -7.85623408999993, 9.17021657300009 ], [ -7.866310993999974, 9.16603078200005 ], [ -7.878713337999926, 9.163912049000075 ], [ -7.929562947999955, 9.183884990000095 ], [ -7.930648152999936, 9.220291036000091 ], [ -7.894939737999948, 9.307133281000091 ], [ -7.891735798999889, 9.330232645000066 ], [ -7.86538081799992, 9.409917705000026 ], [ -7.870600137999929, 9.418599345000075 ], [ -7.911889607999854, 9.418651021000088 ], [ -7.933025268999899, 9.414258525 ], [ -7.971059122999918, 9.392967835000107 ], [ -7.991574665999906, 9.385319723000038 ], [ -8.009868122999876, 9.38361440000007 ], [ -8.032295694999959, 9.384647929000053 ], [ -8.054051472999959, 9.389092102000063 ], [ -8.070432901999936, 9.397541199000059 ], [ -8.08717606599987, 9.415395406000101 ], [ -8.145363728999882, 9.49714752200012 ], [ -8.152856810999936, 9.513115540000058 ], [ -8.157611042999918, 9.530866395000075 ], [ -8.161021687999948, 9.553604024000066 ], [ -8.161590128999904, 9.575644023000052 ], [ -8.160292859999856, 9.584813799000074 ], [ -8.123504597999954, 9.844852397000096 ], [ -8.128103799999906, 9.866246440000097 ], [ -8.146862344999903, 9.864696146000085 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-17", "NAME_1": "Bafing" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.831015990999958, 8.747658386000083 ], [ -7.890960652999865, 8.765693462000073 ], [ -7.913129841999904, 8.768225606000073 ], [ -7.958915160999936, 8.781997375000103 ], [ -7.968940388999954, 8.812848205000094 ], [ -7.950698608999886, 8.899535421000053 ], [ -7.946461140999929, 8.94860219300007 ], [ -7.941603555999933, 8.972218323000092 ], [ -7.931888386999987, 8.996454570000083 ], [ -7.93183671099996, 8.996557922000108 ], [ -7.916747192999878, 9.012345073000091 ], [ -7.827036905999904, 9.057820333000052 ], [ -7.807813273999955, 9.060042420000059 ], [ -7.788072875999916, 9.060042420000059 ], [ -7.764198364999913, 9.063608093000113 ], [ -7.748202715383002, 9.075403104869395 ], [ -7.736292283961745, 9.072573147033097 ], [ -7.711280889601369, 9.038208320457613 ], [ -7.666374070606878, 8.954570013994953 ], [ -7.660121222016812, 8.945345771190375 ], [ -7.652783168708254, 8.938679511450289 ], [ -7.644566616256327, 8.933175970794423 ], [ -7.625911424172898, 8.924390977561529 ], [ -7.594802211752665, 8.914004014773468 ], [ -7.536614549222065, 8.863412787070445 ], [ -7.529173143126059, 8.855351264249407 ], [ -7.501577928178847, 8.812356472273336 ], [ -7.49796057791832, 8.808248196497061 ], [ -7.494601610076245, 8.805612698167465 ], [ -7.45806637226525, 8.784812934169565 ], [ -7.414038052414185, 8.733782456894858 ], [ -7.405511439801103, 8.728408108347537 ], [ -7.394039272294606, 8.72267202369494 ], [ -7.37192175868222, 8.708874417120626 ], [ -7.365100470210564, 8.702879950049635 ], [ -7.360139532813207, 8.697531439923978 ], [ -7.35016598117511, 8.679935614137264 ], [ -7.323500942214707, 8.64345205316971 ], [ -7.310168422734534, 8.630119533689538 ], [ -7.301486782289203, 8.625003567560555 ], [ -7.291874965857005, 8.620869452463239 ], [ -7.281229620650493, 8.617768866140239 ], [ -7.273891567341991, 8.614203192723153 ], [ -7.248725145149365, 8.597460029456784 ], [ -7.239630092654636, 8.589295152049601 ], [ -7.233894008901416, 8.58293895157135 ], [ -7.23125851057182, 8.577900498908889 ], [ -7.227486130680404, 8.567952785692512 ], [ -7.218907843022521, 8.552992459134657 ], [ -7.186455044364834, 8.523614407478931 ], [ -7.173329229560295, 8.495760810113268 ], [ -7.167231410601119, 8.472997341354187 ], [ -7.167231410601119, 8.432043769404402 ], [ -7.157412888593967, 8.370548814076471 ], [ -7.147284308224243, 8.350885932539768 ], [ -7.13198808398289, 8.335021267517448 ], [ -7.112661099230365, 8.322799791177431 ], [ -7.124133266736862, 8.314944973032084 ], [ -7.127285529003984, 8.309415594853817 ], [ -7.126510382648064, 8.303601995835436 ], [ -7.126355353017118, 8.25918610325607 ], [ -7.136793992648677, 8.24275299745284 ], [ -7.130437791271049, 8.217870795201009 ], [ -7.117828742202676, 8.192058416962368 ], [ -7.105839809859333, 8.178183295122949 ], [ -7.11214433439352, 8.159243883098725 ], [ -7.107390102571173, 8.145446274725771 ], [ -7.098605109338337, 8.132475491350817 ], [ -7.092765671898235, 8.116094062391028 ], [ -7.094264288666011, 8.108161728980576 ], [ -7.103566046735693, 8.094880886343844 ], [ -7.105839809859333, 8.086302597786641 ], [ -7.105839809859333, 8.051550198482857 ], [ -7.100982225249481, 8.031112168791537 ], [ -7.083825649034509, 7.989254259276606 ], [ -7.209916144214674, 7.988634140752993 ], [ -7.239475063023747, 7.994835313398994 ], [ -7.248466762730914, 8.013077094332402 ], [ -7.282263149424807, 8.067544053815027 ], [ -7.285467087635993, 8.071652330490622 ], [ -7.28929114437085, 8.074830431179464 ], [ -7.325981410913414, 8.098343206973425 ], [ -7.342827927866608, 8.106404730693725 ], [ -7.377812872965706, 8.114621283145709 ], [ -7.385616014267669, 8.117592678259484 ], [ -7.390990362814989, 8.121313381307516 ], [ -7.39409094913799, 8.125344142718006 ], [ -7.398948533747841, 8.134258328059389 ], [ -7.402875942370827, 8.139064235825799 ], [ -7.408043586242513, 8.144206041275766 ], [ -7.418637253706322, 8.151492417740883 ], [ -7.433881802003555, 8.164747422855271 ], [ -7.441013148837783, 8.167072861923032 ], [ -7.449694790182434, 8.166762804459836 ], [ -7.454914109998185, 8.16373973250262 ], [ -7.458789841777786, 8.16009654382043 ], [ -7.464784307949458, 8.152500108093477 ], [ -7.471657274163874, 8.145911362719175 ], [ -7.487418586398633, 8.134258328059389 ], [ -7.494601610076245, 8.127902125782441 ], [ -7.497443813081532, 8.124646510727871 ], [ -7.499562546574282, 8.12154592530419 ], [ -7.503128220890687, 8.114931342407488 ], [ -7.512223273385359, 8.081031602026826 ], [ -7.51356685962287, 8.055813502990759 ], [ -7.5126366854347, 8.049767360874966 ], [ -7.510776332561704, 8.044651393846721 ], [ -7.507985806399859, 8.04062063243623 ], [ -7.501991340228187, 8.034083563905313 ], [ -7.500492722561091, 8.031680610471767 ], [ -7.499924281780181, 8.029665228867202 ], [ -7.500854457767048, 8.027882392158631 ], [ -7.505505336801832, 8.02113861715344 ], [ -7.507365687876188, 8.016487738118599 ], [ -7.508295863863054, 8.011139227992942 ], [ -7.508037482343923, 8.005713201702861 ], [ -7.507107306357113, 8.00204417639759 ], [ -7.506332160001193, 8.000183824423971 ], [ -7.500027634567687, 7.989409288008233 ], [ -7.498890753905187, 7.986386216950336 ], [ -7.497702196399246, 7.981890367546384 ], [ -7.49661699078149, 7.950832831070272 ], [ -7.495376756432165, 7.945561835310457 ], [ -7.49527340274534, 7.94021332428548 ], [ -7.496875373199941, 7.93501984289145 ], [ -7.503955044090048, 7.929206243873068 ], [ -7.509122687062359, 7.925795600086872 ], [ -7.512585007691939, 7.92246246976714 ], [ -7.513256802159674, 7.918560899565875 ], [ -7.511706509447833, 7.914375108524439 ], [ -7.50974280378739, 7.910421861479733 ], [ -7.508605923124833, 7.906701158431702 ], [ -7.510621303830135, 7.903600572108701 ], [ -7.514135301303099, 7.90143016177251 ], [ -7.51723588672678, 7.89894969307386 ], [ -7.520594854568913, 7.895306505290989 ], [ -7.523695440891913, 7.890939846196943 ], [ -7.527932908776734, 7.886133938430476 ], [ -7.534237433310921, 7.885823879168697 ], [ -7.53940507718255, 7.884041043359446 ], [ -7.543642544168108, 7.881560573761476 ], [ -7.553357713387754, 7.872568874953629 ], [ -7.563072882607457, 7.866806951879312 ], [ -7.570100876654124, 7.865204983223407 ], [ -7.577438930862002, 7.864739895229945 ], [ -7.586017217620508, 7.865670071216812 ], [ -7.59490556543949, 7.862078559378006 ], [ -7.602140265061166, 7.861458441753655 ], [ -7.606636115364438, 7.86254364737141 ], [ -7.609426642425603, 7.866910305566137 ], [ -7.611545375918354, 7.871948757329278 ], [ -7.615111050234816, 7.875281886749633 ], [ -7.618056606027551, 7.875126858018064 ], [ -7.621363897925562, 7.872103786960167 ], [ -7.624671189823573, 7.868150539915462 ], [ -7.629838832795883, 7.864274807236541 ], [ -7.640794237264231, 7.853396918033354 ], [ -7.656038783762881, 7.845335395212317 ], [ -7.663118454652988, 7.842932440879451 ], [ -7.668492804099628, 7.842777411248505 ], [ -7.671335008004235, 7.845800483205721 ], [ -7.674177211908784, 7.849676214985323 ], [ -7.677277798231785, 7.852931830039893 ], [ -7.681308559642332, 7.854094550023433 ], [ -7.688646612950834, 7.846653143927426 ], [ -7.692677375260644, 7.845800483205721 ], [ -7.69629472462185, 7.847738349545182 ], [ -7.699136929425777, 7.857272650712275 ], [ -7.702134162061952, 7.861613471384601 ], [ -7.707766893027724, 7.865101630435902 ], [ -7.712004360013225, 7.868538113543082 ], [ -7.716086799166476, 7.873809109302954 ], [ -7.723631558049988, 7.879390164324604 ], [ -7.740529750947246, 7.884816188816046 ], [ -7.761200323735977, 7.888149319135778 ], [ -7.771483933736533, 7.891249905458778 ], [ -7.776703253552341, 7.895539049287663 ], [ -7.778977016675981, 7.89995738432583 ], [ -7.787038540396338, 7.912514757450083 ], [ -7.790087449875898, 7.91631297396458 ], [ -7.797373827240335, 7.922824204973097 ], [ -7.799750942252217, 7.927500922429601 ], [ -7.801559618281772, 7.932771918189474 ], [ -7.803988410137038, 7.937655341220989 ], [ -7.809311081840974, 7.940523383547315 ], [ -7.813600225669859, 7.943623968970996 ], [ -7.820989955821801, 7.950212714345298 ], [ -7.825279099650743, 7.953029079828184 ], [ -7.830498420365814, 7.955044460533429 ], [ -7.835356004076345, 7.957912501960379 ], [ -7.842332323078267, 7.95985036919916 ], [ -7.845949673338737, 7.962253323532025 ], [ -7.846466437276263, 7.96620657057673 ], [ -7.844657762146028, 7.970159816722173 ], [ -7.843365850953262, 7.974345607763553 ], [ -7.844347702884193, 7.978634752491814 ], [ -7.850238817167678, 7.985921128956932 ], [ -7.852357549761109, 7.990572007991773 ], [ -7.853701137797259, 7.995300401392399 ], [ -7.855509812927551, 7.999718736430509 ], [ -7.855768195345945, 8.000183824423971 ], [ -7.855819871290009, 8.000261338789755 ], [ -7.856284959283471, 8.000493882786429 ], [ -7.870651008437278, 8.013774726322538 ], [ -7.883725144599737, 8.01865814935411 ], [ -7.890701462702339, 8.017805486833765 ], [ -7.895145636162169, 8.013929755054164 ], [ -7.898556280847686, 8.008503730562722 ], [ -7.905274217431213, 8.007160142526516 ], [ -7.928528611706099, 8.010906683996268 ], [ -7.946873745427013, 8.01865814935411 ], [ -7.965637542338698, 8.026927368803001 ], [ -7.968216918999872, 8.037029928000095 ], [ -7.98041255699988, 8.058992411000062 ], [ -7.997052368999903, 8.077337545000134 ], [ -8.015707560999942, 8.088473816000075 ], [ -8.021288614999889, 8.102658997000034 ], [ -8.02170202699989, 8.117722677000117 ], [ -8.015707560999942, 8.148160095000094 ], [ -8.008266153999926, 8.160433248000032 ], [ -8.002426716999935, 8.174308370000091 ], [ -8.003305215999887, 8.18404937800004 ], [ -8.015707560999942, 8.183894348000095 ], [ -8.075962280999931, 8.163378805000121 ], [ -8.085522419999933, 8.162035218000057 ], [ -8.182932494999903, 8.19167165200011 ], [ -8.26597652199996, 8.245983582000065 ], [ -8.264581257999879, 8.256499736000123 ], [ -8.248251504999928, 8.27357879700007 ], [ -8.245305949999931, 8.285076803000095 ], [ -8.247631388999878, 8.303835347000089 ], [ -8.247631388999878, 8.322568055000076 ], [ -8.235280720999924, 8.379515483000148 ], [ -8.236882690999948, 8.400082703000038 ], [ -8.242102009999883, 8.412769267000087 ], [ -8.249078328999872, 8.423776347000071 ], [ -8.254297647999891, 8.434499206000083 ], [ -8.254401000999906, 8.446513977000052 ], [ -8.2488716229999, 8.45356781100007 ], [ -8.200295776999923, 8.491834208000071 ], [ -8.186343139999934, 8.49369456000008 ], [ -8.150531371999904, 8.486485698000109 ], [ -8.130119180999941, 8.488604432000088 ], [ -8.09689123499993, 8.501704407000148 ], [ -8.076634073999912, 8.50325470000007 ], [ -8.068107462999905, 8.500464173000111 ], [ -8.057203735999849, 8.490852356000104 ], [ -8.050666666999859, 8.487674256000048 ], [ -8.042475952999922, 8.487157492000094 ], [ -8.024905964999959, 8.488604432000088 ], [ -8.015707560999942, 8.487209168000021 ], [ -7.985890258999859, 8.494934795000106 ], [ -7.970542357999904, 8.496950175000066 ], [ -7.956279662999918, 8.494366354000064 ], [ -7.943877318999853, 8.484625346000101 ], [ -7.93695267699988, 8.471422018000027 ], [ -7.931578328999905, 8.45703013100011 ], [ -7.923826862999903, 8.44377512600002 ], [ -7.912871459999906, 8.434189148000101 ], [ -7.898582926999921, 8.426282654000062 ], [ -7.882330687999911, 8.421450908000054 ], [ -7.865587524999881, 8.420882467000084 ], [ -7.84858597799996, 8.428633931000093 ], [ -7.846777302999953, 8.44268992100011 ], [ -7.849412801999961, 8.459200541000101 ], [ -7.845743773999885, 8.474315898000015 ], [ -7.82383296699993, 8.477855734000073 ], [ -7.802438923999915, 8.449201151000082 ], [ -7.771019652999883, 8.386517639000147 ], [ -7.748333699999904, 8.372306621000092 ], [ -7.720738484999913, 8.368534241000063 ], [ -7.662447469999961, 8.374864604000081 ], [ -7.683221394999919, 8.417316793000026 ], [ -7.689577596999953, 8.438659160000029 ], [ -7.686477009999919, 8.462585348000118 ], [ -7.679293986999937, 8.48772593200006 ], [ -7.67924230999995, 8.505089213000076 ], [ -7.691696329999928, 8.546662903000069 ], [ -7.693970092999848, 8.567772725000097 ], [ -7.691592976999885, 8.606142477000034 ], [ -7.696812296999923, 8.624849346000104 ], [ -7.703943644999868, 8.633479309000052 ], [ -7.731823079999913, 8.652082825000107 ], [ -7.741202351999959, 8.662909038000052 ], [ -7.765128539999893, 8.70608469700008 ], [ -7.772053181999866, 8.714533793000072 ], [ -7.790915079999877, 8.730941061000038 ], [ -7.795695149999887, 8.736470439000044 ], [ -7.803679157999852, 8.749053650000064 ], [ -7.810190388999928, 8.753368633000122 ], [ -7.816055663999919, 8.753523661000074 ], [ -7.826571817999877, 8.748226827000039 ], [ -7.831015990999958, 8.747658386000083 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-06", "NAME_1": "Dix-Huit Montagnes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.962635863999935, 8.015170797000053 ], [ -7.965637542338698, 8.026927368803001 ], [ -7.946873745427013, 8.01865814935411 ], [ -7.928528611706099, 8.010906683996268 ], [ -7.905274217431213, 8.007160142526516 ], [ -7.898556280847686, 8.008503730562722 ], [ -7.895145636162169, 8.013929755054164 ], [ -7.890701462702339, 8.017805486833765 ], [ -7.883725144599737, 8.01865814935411 ], [ -7.870651008437278, 8.013774726322538 ], [ -7.856284959283471, 8.000493882786429 ], [ -7.855819871290009, 8.000261338789755 ], [ -7.855768195345945, 8.000183824423971 ], [ -7.855509812927551, 7.999718736430509 ], [ -7.853701137797259, 7.995300401392399 ], [ -7.852357549761109, 7.990572007991773 ], [ -7.850238817167678, 7.985921128956932 ], [ -7.844347702884193, 7.978634752491814 ], [ -7.843365850953262, 7.974345607763553 ], [ -7.844657762146028, 7.970159816722173 ], [ -7.846466437276263, 7.96620657057673 ], [ -7.845949673338737, 7.962253323532025 ], [ -7.842332323078267, 7.95985036919916 ], [ -7.835356004076345, 7.957912501960379 ], [ -7.830498420365814, 7.955044460533429 ], [ -7.825279099650743, 7.953029079828184 ], [ -7.820989955821801, 7.950212714345298 ], [ -7.813600225669859, 7.943623968970996 ], [ -7.809311081840974, 7.940523383547315 ], [ -7.803988410137038, 7.937655341220989 ], [ -7.801559618281772, 7.932771918189474 ], [ -7.799750942252217, 7.927500922429601 ], [ -7.797373827240335, 7.922824204973097 ], [ -7.790087449875898, 7.91631297396458 ], [ -7.787038540396338, 7.912514757450083 ], [ -7.778977016675981, 7.89995738432583 ], [ -7.776703253552341, 7.895539049287663 ], [ -7.771483933736533, 7.891249905458778 ], [ -7.761200323735977, 7.888149319135778 ], [ -7.740529750947246, 7.884816188816046 ], [ -7.723631558049988, 7.879390164324604 ], [ -7.716086799166476, 7.873809109302954 ], [ -7.712004360013225, 7.868538113543082 ], [ -7.707766893027724, 7.865101630435902 ], [ -7.702134162061952, 7.861613471384601 ], [ -7.699136929425777, 7.857272650712275 ], [ -7.69629472462185, 7.847738349545182 ], [ -7.692677375260644, 7.845800483205721 ], [ -7.688646612950834, 7.846653143927426 ], [ -7.681308559642332, 7.854094550023433 ], [ -7.677277798231785, 7.852931830039893 ], [ -7.674177211908784, 7.849676214985323 ], [ -7.671335008004235, 7.845800483205721 ], [ -7.668492804099628, 7.842777411248505 ], [ -7.663118454652988, 7.842932440879451 ], [ -7.656038783762881, 7.845335395212317 ], [ -7.640794237264231, 7.853396918033354 ], [ -7.629838832795883, 7.864274807236541 ], [ -7.624671189823573, 7.868150539915462 ], [ -7.621363897925562, 7.872103786960167 ], [ -7.618056606027551, 7.875126858018064 ], [ -7.615111050234816, 7.875281886749633 ], [ -7.611545375918354, 7.871948757329278 ], [ -7.609426642425603, 7.866910305566137 ], [ -7.606636115364438, 7.86254364737141 ], [ -7.602140265061166, 7.861458441753655 ], [ -7.59490556543949, 7.862078559378006 ], [ -7.586017217620508, 7.865670071216812 ], [ -7.577438930862002, 7.864739895229945 ], [ -7.570100876654124, 7.865204983223407 ], [ -7.563072882607457, 7.866806951879312 ], [ -7.553357713387754, 7.872568874953629 ], [ -7.543642544168108, 7.881560573761476 ], [ -7.53940507718255, 7.884041043359446 ], [ -7.534237433310921, 7.885823879168697 ], [ -7.527932908776734, 7.886133938430476 ], [ -7.523695440891913, 7.890939846196943 ], [ -7.520594854568913, 7.895306505290989 ], [ -7.51723588672678, 7.89894969307386 ], [ -7.514135301303099, 7.90143016177251 ], [ -7.510621303830135, 7.903600572108701 ], [ -7.508605923124833, 7.906701158431702 ], [ -7.50974280378739, 7.910421861479733 ], [ -7.511706509447833, 7.914375108524439 ], [ -7.513256802159674, 7.918560899565875 ], [ -7.512585007691939, 7.92246246976714 ], [ -7.509122687062359, 7.925795600086872 ], [ -7.503955044090048, 7.929206243873068 ], [ -7.496875373199941, 7.93501984289145 ], [ -7.49527340274534, 7.94021332428548 ], [ -7.495376756432165, 7.945561835310457 ], [ -7.49661699078149, 7.950832831070272 ], [ -7.497702196399246, 7.981890367546384 ], [ -7.498890753905187, 7.986386216950336 ], [ -7.500027634567687, 7.989409288008233 ], [ -7.506332160001193, 8.000183824423971 ], [ -7.507107306357113, 8.00204417639759 ], [ -7.508037482343923, 8.005713201702861 ], [ -7.508295863863054, 8.011139227992942 ], [ -7.507365687876188, 8.016487738118599 ], [ -7.505505336801832, 8.02113861715344 ], [ -7.500854457767048, 8.027882392158631 ], [ -7.499924281780181, 8.029665228867202 ], [ -7.500492722561091, 8.031680610471767 ], [ -7.501991340228187, 8.034083563905313 ], [ -7.507985806399859, 8.04062063243623 ], [ -7.510776332561704, 8.044651393846721 ], [ -7.5126366854347, 8.049767360874966 ], [ -7.51356685962287, 8.055813502990759 ], [ -7.512223273385359, 8.081031602026826 ], [ -7.503128220890687, 8.114931342407488 ], [ -7.499562546574282, 8.12154592530419 ], [ -7.497443813081532, 8.124646510727871 ], [ -7.494601610076245, 8.127902125782441 ], [ -7.487418586398633, 8.134258328059389 ], [ -7.471657274163874, 8.145911362719175 ], [ -7.464784307949458, 8.152500108093477 ], [ -7.458789841777786, 8.16009654382043 ], [ -7.454914109998185, 8.16373973250262 ], [ -7.449694790182434, 8.166762804459836 ], [ -7.441013148837783, 8.167072861923032 ], [ -7.433881802003555, 8.164747422855271 ], [ -7.418637253706322, 8.151492417740883 ], [ -7.408043586242513, 8.144206041275766 ], [ -7.402875942370827, 8.139064235825799 ], [ -7.398948533747841, 8.134258328059389 ], [ -7.39409094913799, 8.125344142718006 ], [ -7.390990362814989, 8.121313381307516 ], [ -7.385616014267669, 8.117592678259484 ], [ -7.377812872965706, 8.114621283145709 ], [ -7.342827927866608, 8.106404730693725 ], [ -7.325981410913414, 8.098343206973425 ], [ -7.28929114437085, 8.074830431179464 ], [ -7.285467087635993, 8.071652330490622 ], [ -7.282263149424807, 8.067544053815027 ], [ -7.248466762730914, 8.013077094332402 ], [ -7.239475063023747, 7.994835313398994 ], [ -7.209916144214674, 7.988634140752993 ], [ -7.083825649034509, 7.989254259276606 ], [ -7.071630011116156, 7.958455105218945 ], [ -7.071733363903604, 7.937965400482824 ], [ -7.078554653274637, 7.926105658449387 ], [ -7.088683233644304, 7.916700548491519 ], [ -7.098966843644916, 7.903833116105432 ], [ -7.102739224435652, 7.896391710009425 ], [ -7.104702928297513, 7.889854641478507 ], [ -7.105839809859333, 7.873731594037849 ], [ -7.103772752310704, 7.863551336824742 ], [ -7.094832730346241, 7.852854316573428 ], [ -7.092765671898235, 7.845800483205721 ], [ -7.08904496885026, 7.78045563451991 ], [ -7.082637090629248, 7.745780747783272 ], [ -7.071630011116156, 7.719477444028826 ], [ -7.070803187916795, 7.708082790888056 ], [ -7.07131995275364, 7.69720490258419 ], [ -7.073955451083236, 7.687102158837547 ], [ -7.079123094055547, 7.67790375445469 ], [ -7.072560187102965, 7.661832383857416 ], [ -7.061604784433257, 7.61801076958136 ], [ -7.05488684695041, 7.608993232351793 ], [ -7.032976039812411, 7.615762843980065 ], [ -7.021813930668372, 7.615762843980065 ], [ -7.012615526285515, 7.59814118157027 ], [ -6.99091142382315, 7.59542816797557 ], [ -6.982901576946233, 7.589149481863103 ], [ -6.982591518583718, 7.569279892952693 ], [ -6.997422654831666, 7.55881541579879 ], [ -7.015251023715791, 7.550573024925143 ], [ -7.023880988217059, 7.53762807907259 ], [ -7.018093227620341, 7.513727728751689 ], [ -7.017059698846026, 7.503495794695141 ], [ -7.018093227620341, 7.500343533327396 ], [ -7.020470342632223, 7.498509018876121 ], [ -7.022847459442687, 7.495770167759019 ], [ -7.023880988217059, 7.489827379330052 ], [ -7.020987108368388, 7.486158352226141 ], [ -7.007499559257269, 7.478355210924235 ], [ -7.003417121003338, 7.472464098439389 ], [ -7.005897589701988, 7.445540676161272 ], [ -7.023105840961819, 7.434559434170524 ], [ -7.042587856244552, 7.427919012852158 ], [ -7.051786260627409, 7.41409556695686 ], [ -7.05488684695041, 7.402959296234542 ], [ -7.061708136321442, 7.393192450171398 ], [ -7.068529424793155, 7.385363471347091 ], [ -7.07380042235161, 7.376604316535975 ], [ -7.078502977330572, 7.3747698020847 ], [ -7.083205532309478, 7.372056790288639 ], [ -7.085324265802228, 7.366010647273527 ], [ -7.084445766658803, 7.359396064376881 ], [ -7.080311651561487, 7.348854071058497 ], [ -7.07111324717863, 7.298960476244986 ], [ -7.069252896104274, 7.274440009199054 ], [ -7.075402391007572, 7.257076728308334 ], [ -7.080466681192377, 7.246483059045943 ], [ -7.078554653274637, 7.23542430268941 ], [ -7.07416215665819, 7.224804795904618 ], [ -7.071630011116156, 7.215477200312534 ], [ -7.078554653274637, 7.181396592778526 ], [ -7.079123094055547, 7.170802924415398 ], [ -7.040675828326812, 7.079051418288316 ], [ -7.039280565245917, 7.063884386155507 ], [ -7.042587856244552, 7.049750880998374 ], [ -7.060106166766218, 6.9928034528171 ], [ -7.064808721745123, 6.961229153302781 ], [ -7.064757045801059, 6.950067043259423 ], [ -7.062741665095757, 6.929499823258197 ], [ -7.069666307254295, 6.929809882520033 ], [ -7.116691859741536, 6.93787140534107 ], [ -7.131367967257916, 6.943943385878526 ], [ -7.155914271826191, 6.960454006047541 ], [ -7.160616827704416, 6.962779446014622 ], [ -7.171055467335975, 6.963167018742922 ], [ -7.247743293218434, 6.955105495921885 ], [ -7.281643031800513, 6.963322048373811 ], [ -7.28774085075969, 6.963942165998162 ], [ -7.301331752658257, 6.964252224360678 ], [ -7.39522782980049, 6.948749294544314 ], [ -7.423649867947063, 6.941075344451576 ], [ -7.433881802003555, 6.939525050840416 ], [ -7.53940507718255, 6.939059962847011 ], [ -7.603793910560512, 6.929267279261524 ], [ -7.6162996077407, 6.906142076195863 ], [ -7.618056606027551, 6.899165758093261 ], [ -7.622139045180802, 6.847024236779077 ], [ -7.635626593392601, 6.844233709717912 ], [ -7.802696498944272, 6.841908271549471 ], [ -7.819129604747445, 6.843226020264638 ], [ -7.833495653001989, 6.846249091322477 ], [ -7.842745734228288, 6.855034084555371 ], [ -7.847034878057173, 6.861545315563831 ], [ -7.858403692776221, 6.893274643809775 ], [ -7.863002895866941, 6.902576401879458 ], [ -7.868015509208419, 6.906994736917568 ], [ -7.87550859214781, 6.911103014492539 ], [ -7.899744839252946, 6.917950141385916 ], [ -7.913749152301534, 6.920275580453676 ], [ -7.921190558397541, 6.923531195508247 ], [ -7.929768846055424, 6.928879706533223 ], [ -7.950904506837503, 6.948284207450229 ], [ -7.959017707401301, 6.954330349565964 ], [ -7.963875291111776, 6.957353419724541 ], [ -7.989661830928753, 6.968360501036273 ], [ -8.012089402903655, 6.960686550044215 ], [ -8.051518520563263, 6.923066108414162 ], [ -8.062887336181632, 6.917097479764891 ], [ -8.071103887734239, 6.915237127791215 ], [ -8.076219854762485, 6.916632391771429 ], [ -8.079268765141421, 6.91358348229187 ], [ -8.081800909784192, 6.908467515263624 ], [ -8.086245083244023, 6.902188829151157 ], [ -8.09177446142229, 6.898700670099856 ], [ -8.099370897149186, 6.895445055045229 ], [ -8.100611130599191, 6.892266954356444 ], [ -8.09751054517551, 6.885368149720307 ], [ -8.101851365847835, 6.872087307083518 ], [ -8.110016242355698, 6.85518911418626 ], [ -8.111773240642549, 6.848884588752753 ], [ -8.111928270273438, 6.843846136989612 ], [ -8.110326299818894, 6.840125433941637 ], [ -8.107122361607708, 6.839195257954771 ], [ -8.103505011347181, 6.838575141229796 ], [ -8.100921189861026, 6.835242010910065 ], [ -8.091412726216333, 6.810876573495079 ], [ -8.092084519784748, 6.804752916114182 ], [ -8.096218633982801, 6.802272447415476 ], [ -8.102264776997856, 6.799998684291836 ], [ -8.110222947930708, 6.79565786451883 ], [ -8.11947302915695, 6.788216458422824 ], [ -8.131151903137834, 6.781395168152471 ], [ -8.136991339678616, 6.77868215635641 ], [ -8.142520717856826, 6.770904853476168 ], [ -8.154044562206764, 6.762378240863086 ], [ -8.156163295699571, 6.758192449821706 ], [ -8.156473354961349, 6.748270575026993 ], [ -8.160039028378492, 6.727935899022498 ], [ -8.164276496263312, 6.71700633387519 ], [ -8.172079636665899, 6.709151515729843 ], [ -8.178125779681011, 6.705275783950242 ], [ -8.183861864333608, 6.704733180691733 ], [ -8.187530889638879, 6.706981106293028 ], [ -8.189597948086828, 6.710779323706788 ], [ -8.190063036080232, 6.715042629114009 ], [ -8.192388475147993, 6.718091539492946 ], [ -8.198382941319721, 6.717858995496215 ], [ -8.218433397383365, 6.705585842312757 ], [ -8.221637335594551, 6.699849758559481 ], [ -8.220603806820236, 6.695896511514775 ], [ -8.213989223923534, 6.681995551253692 ], [ -8.21357581187425, 6.675096747516875 ], [ -8.217089810246534, 6.672461249187279 ], [ -8.227218389716938, 6.670833442109654 ], [ -8.231972622438605, 6.669438178129383 ], [ -8.237191942254356, 6.668585517407678 ], [ -8.247682257829922, 6.670135810119518 ], [ -8.250111049685188, 6.667965399783384 ], [ -8.247992316192438, 6.659800523275521 ], [ -8.247682257829922, 6.65421946915319 ], [ -8.249749315378608, 6.647708238144673 ], [ -8.250369432103639, 6.642204698388127 ], [ -8.249542608904278, 6.636933701728935 ], [ -8.249335903329268, 6.632101956440124 ], [ -8.250162725629309, 6.625978298159907 ], [ -8.25750077983713, 6.622335110377037 ], [ -8.281788702886331, 6.603318183087652 ], [ -8.288506638570539, 6.602232978369216 ], [ -8.30121904132568, 6.597814643331105 ], [ -8.309280565046038, 6.5938613962864 ], [ -8.320339321402571, 6.585954902196988 ], [ -8.327677374711072, 6.586187445294343 ], [ -8.336979132780755, 6.589985662708159 ], [ -8.434957648176919, 6.652591661176189 ], [ -8.44164567420853, 6.655310175024567 ], [ -8.351759399999878, 6.755351054000059 ], [ -8.337496703999904, 6.777261862000017 ], [ -8.324991007999898, 6.806252340000086 ], [ -8.316619425999932, 6.836276347000137 ], [ -8.314965779999881, 6.850280660000053 ], [ -8.315715087999877, 6.863819885000026 ], [ -8.320598510999901, 6.869659322000103 ], [ -8.328763386999924, 6.875085347000081 ], [ -8.333672647999947, 6.882578430000123 ], [ -8.320908569999887, 6.910173645000029 ], [ -8.319978393999918, 6.925831604000081 ], [ -8.321218627999883, 6.942264710000046 ], [ -8.319978393999918, 6.95998972600006 ], [ -8.314552367999852, 6.96856801300008 ], [ -8.294140177999907, 6.984381002000077 ], [ -8.286647094999893, 6.993786112000038 ], [ -8.284114949999889, 7.017867330000087 ], [ -8.301219848999921, 7.113210348000081 ], [ -8.302615112999916, 7.137601624000112 ], [ -8.305353962999959, 7.146903382000048 ], [ -8.311503458999937, 7.15729034400006 ], [ -8.32623124199992, 7.172069804000074 ], [ -8.32974523999988, 7.178322652000077 ], [ -8.330572061999902, 7.18473053000011 ], [ -8.328453328999927, 7.19739125600006 ], [ -8.328970092999981, 7.204005839000061 ], [ -8.333000854999881, 7.211860657000088 ], [ -8.344989786999918, 7.226795146000143 ], [ -8.349692341999912, 7.234701640000097 ], [ -8.357547159999854, 7.265707500000119 ], [ -8.364006713999885, 7.278884989000105 ], [ -8.381059936999918, 7.303017884000056 ], [ -8.387674519999933, 7.314955139000105 ], [ -8.393048868999898, 7.334333802000074 ], [ -8.405141154999882, 7.431278788000014 ], [ -8.425605021999928, 7.501920471000105 ], [ -8.443640095999939, 7.537112122000067 ], [ -8.485446329999888, 7.557989400000039 ], [ -8.440022745999954, 7.599898987000117 ], [ -8.414804646999897, 7.612921448000066 ], [ -8.390878458999907, 7.585791321000087 ], [ -8.372274942999951, 7.587289937 ], [ -8.336773233999907, 7.597831930000069 ], [ -8.303235229999899, 7.589305318000044 ], [ -8.265356404999892, 7.560056458000091 ], [ -8.228976195999905, 7.54429514600011 ], [ -8.200244099999907, 7.576334534000111 ], [ -8.19977901199988, 7.583362529000041 ], [ -8.203034626999852, 7.599588928000045 ], [ -8.202621215999955, 7.607185364000102 ], [ -8.197866983999859, 7.618554179000085 ], [ -8.177868204999925, 7.643875630000068 ], [ -8.173424030999911, 7.647803040000042 ], [ -8.162106893999947, 7.65415924000007 ], [ -8.158024454999918, 7.658241679000071 ], [ -8.157404337999964, 7.662375794000098 ], [ -8.160194864999909, 7.672194316000073 ], [ -8.159523070999853, 7.676328430000083 ], [ -8.127380330999898, 7.713018697000066 ], [ -8.122626098999916, 7.727488098000094 ], [ -8.119008748999931, 7.760819397000134 ], [ -8.115133015999959, 7.776890768000015 ], [ -8.110482136999906, 7.782420146000021 ], [ -8.103919229999917, 7.786347555000077 ], [ -8.098260660999898, 7.791876933000083 ], [ -8.096322793999946, 7.801902161000015 ], [ -8.10143876099994, 7.812805888000071 ], [ -8.123762980999913, 7.832029521000095 ], [ -8.131204386999855, 7.842416484000111 ], [ -8.128878946999919, 7.882569072000123 ], [ -8.079114542999889, 7.957654928000125 ], [ -8.0688826089999, 7.996567281000097 ], [ -8.067228964445178, 8.02075185201636 ], [ -8.069089314999871, 8.029278463000082 ], [ -8.05384476699993, 8.028761699000142 ], [ -8.011986857999943, 8.035557150000088 ], [ -8.00216833499988, 8.032430725000054 ], [ -7.99250484199996, 8.024162496000102 ], [ -7.980360879999864, 8.016566061000034 ], [ -7.962635863999935, 8.015170797000053 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-08", "NAME_1": "Zanzan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.68921097799992, 9.488724263000037 ], [ -2.675671752999932, 9.471722718000109 ], [ -2.674586547999951, 9.457485861000052 ], [ -2.678668986999867, 9.425549825000061 ], [ -2.677377074999896, 9.41777252200005 ], [ -2.67241613799996, 9.401003519000099 ], [ -2.67241613799996, 9.374028422000066 ], [ -2.677532104999926, 9.357001038000135 ], [ -2.689417683999864, 9.349533794000109 ], [ -2.70306026199998, 9.343255107000104 ], [ -2.713343871999882, 9.329922587000084 ], [ -2.714997517999933, 9.311060689000058 ], [ -2.707142700999896, 9.295635275000066 ], [ -2.692983357999935, 9.285325826000062 ], [ -2.675516722999902, 9.281501771000123 ], [ -2.659807087999923, 9.272897645000086 ], [ -2.661150674999902, 9.253906556000032 ], [ -2.67308793199993, 9.234889628000062 ], [ -2.70481726099996, 9.218404847000087 ], [ -2.716496134999915, 9.200266418000055 ], [ -2.733911091999857, 9.164842225000129 ], [ -2.755201781999858, 9.143138123000128 ], [ -2.759387572999884, 9.134818217000074 ], [ -2.761299601999895, 9.084795431000074 ], [ -2.765433715999933, 9.069111633000119 ], [ -2.774838826999883, 9.054978129000077 ], [ -2.76507198099992, 9.049474589000084 ], [ -2.758664102999887, 9.042860006000083 ], [ -2.750809284999946, 9.037408142000103 ], [ -2.736960001999904, 9.035134379000084 ], [ -2.711328491999922, 9.033894145000147 ], [ -2.686058715999962, 9.028261414000028 ], [ -2.660788940999907, 9.014903056000094 ], [ -2.654329386999933, 8.998831685000113 ], [ -2.653295857999865, 8.978393657000069 ], [ -2.637689574999911, 8.931471456000025 ], [ -2.631746785999894, 8.926975607000102 ], [ -2.625028848999875, 8.925993754000032 ], [ -2.619447793999967, 8.923616639000088 ], [ -2.617174031999951, 8.91501251300005 ], [ -2.615933796999911, 8.897830099000075 ], [ -2.595573282999879, 8.828066915000122 ], [ -2.596658487999974, 8.814398499000021 ], [ -2.60725215599993, 8.808559062000114 ], [ -2.614641886999948, 8.801918640000025 ], [ -2.617225707999864, 8.789180400000063 ], [ -2.612381685999907, 8.781321221000027 ], [ -2.612161417999886, 8.780963847000123 ], [ -2.603118042263873, 8.785149638544965 ], [ -2.598363809999938, 8.769465841000098 ], [ -2.552345946999935, 8.489366659000098 ], [ -2.506328083999932, 8.209267477000097 ], [ -2.513201049999907, 8.194022929000056 ], [ -2.558107869999901, 8.16769378700009 ], [ -2.571750446999914, 8.163120422000063 ], [ -2.583274291999942, 8.164334818000086 ], [ -2.59598669499988, 8.17027760900001 ], [ -2.604254923999918, 8.170794373000135 ], [ -2.610662800999876, 8.164851583000114 ], [ -2.617639118999875, 8.151493225000095 ], [ -2.621876586999917, 8.135731913000114 ], [ -2.619447793999967, 8.123097026000082 ], [ -2.60621862799988, 8.094313253000067 ], [ -2.599759073999905, 8.070387064000059 ], [ -2.600689249999959, 8.052946269000117 ], [ -2.610559447999947, 8.040001322000094 ], [ -2.631178344999853, 8.029588521000079 ], [ -2.690864624999961, 8.009744772000076 ], [ -2.70926143399987, 7.996722310000052 ], [ -2.754891723999947, 7.944374084000117 ], [ -2.771221476999898, 7.930731507000104 ], [ -2.772616739999876, 7.933935446000078 ], [ -2.777681030999958, 7.939619853000124 ], [ -2.784347289999857, 7.944012349000033 ], [ -2.790625976999877, 7.943288880000125 ], [ -2.793545694999864, 7.935950826000038 ], [ -2.797886515999949, 7.861278381000133 ], [ -2.801193806999947, 7.850219625000136 ], [ -2.809151976999914, 7.841693014000029 ], [ -2.831398680999939, 7.828360494 ], [ -2.840002806999877, 7.820247294000097 ], [ -2.840829630999906, 7.815234681000035 ], [ -2.83790991199993, 7.802263896000099 ], [ -2.838168294999889, 7.796837870000033 ], [ -2.84201818799994, 7.790274963000059 ], [ -2.852069254999947, 7.778131002000052 ], [ -2.85594498699993, 7.771568095000063 ], [ -2.928162800999928, 7.617675679000058 ], [ -2.941521158999876, 7.577161357000051 ], [ -2.990458739999951, 7.270668437000069 ], [ -2.989528564999915, 7.258937887000087 ], [ -2.983224039999897, 7.244985250000084 ], [ -2.976531941999895, 7.236717021000047 ], [ -2.97208776899987, 7.228603821000135 ], [ -2.972811237999878, 7.214961243000033 ], [ -2.981699584999888, 7.195530905000055 ], [ -3.027536579999946, 7.138428447000138 ], [ -3.032600870999914, 7.128351542000104 ], [ -3.040869099999952, 7.078328755000101 ], [ -3.045933390999949, 7.07124908500009 ], [ -3.095465249999904, 7.055177714000109 ], [ -3.096592622999907, 7.054476971000042 ], [ -3.09662716281332, 7.054970200814125 ], [ -3.097919074006086, 7.073418687322544 ], [ -3.139466925158501, 7.152483629116205 ], [ -3.151145799139329, 7.165661118965431 ], [ -3.166958787318208, 7.179639594491675 ], [ -3.200548468437091, 7.20012929922774 ], [ -3.223079393199441, 7.21749258101778 ], [ -3.235068324643464, 7.224649766273672 ], [ -3.307570360383806, 7.246999822983412 ], [ -3.328912725841633, 7.250100409306413 ], [ -3.341728481384337, 7.249480292581438 ], [ -3.349945033836264, 7.23619944904533 ], [ -3.355887824063814, 7.228370470221023 ], [ -3.359608527111845, 7.225192369532238 ], [ -3.364569465408522, 7.224494737542102 ], [ -3.370563930680873, 7.226897690975647 ], [ -3.386842006853158, 7.245811265477528 ], [ -3.396815557591935, 7.254828802707038 ], [ -3.400432908751725, 7.259014593748475 ], [ -3.403326788600396, 7.263510444051747 ], [ -3.405342170205017, 7.267773749458968 ], [ -3.42058671670361, 7.318752549890235 ], [ -3.424617479013477, 7.323868516019161 ], [ -3.430715297972654, 7.328984483047464 ], [ -3.442962611835071, 7.33528900848097 ], [ -3.449318813212642, 7.339397284257245 ], [ -3.454899868234349, 7.341257636230921 ], [ -3.459757452844201, 7.339629828253976 ], [ -3.463788215154011, 7.339319769891461 ], [ -3.472573208386848, 7.344745795282222 ], [ -3.478877732921035, 7.343040472939435 ], [ -3.494897426674925, 7.348233954333523 ], [ -3.498359748203825, 7.348776556692712 ], [ -3.503165655970236, 7.347846380705903 ], [ -3.535050014746389, 7.337924505911189 ], [ -3.520270555341881, 7.360765489036055 ], [ -3.521975876785291, 7.383683987426082 ], [ -3.505646124668942, 7.392081407031299 ], [ -3.502752243920952, 7.407946072053562 ], [ -3.508901739723512, 7.448873806480947 ], [ -3.511898973259008, 7.449519762527018 ], [ -3.533809780397064, 7.48171417876631 ], [ -3.537117072295075, 7.489517320068273 ], [ -3.54140621612396, 7.49561513902745 ], [ -3.549881150994338, 7.499749254124765 ], [ -3.561146612925882, 7.501583766777401 ], [ -3.574065721256034, 7.505614529087211 ], [ -3.585951299912551, 7.510963040112188 ], [ -3.593909470845404, 7.51682831507469 ], [ -3.595459763557244, 7.526414293085168 ], [ -3.575822720442204, 7.545457057896897 ], [ -3.570345018208059, 7.55747182956128 ], [ -3.578716600290875, 7.587134101157858 ], [ -3.598353644305234, 7.591810817715043 ], [ -3.638041144383294, 7.581682237345376 ], [ -3.646826137616188, 7.587289129889427 ], [ -3.651890427800993, 7.596513372694005 ], [ -3.657884893972664, 7.605169176516256 ], [ -3.669667120741053, 7.608993232351793 ], [ -3.673181118214018, 7.615530299983334 ], [ -3.674214646988389, 7.629792996349693 ], [ -3.67809037876799, 7.644081529339076 ], [ -3.689820928692939, 7.650592760347593 ], [ -3.714728970265753, 7.654881904176534 ], [ -3.725891079409791, 7.666095689264637 ], [ -3.734831102273574, 7.699013576815105 ], [ -3.727131312859797, 7.72203542709326 ], [ -3.740050422089325, 7.732835801930719 ], [ -3.762167934802335, 7.735238756263584 ], [ -3.782011685291025, 7.733145860293178 ], [ -3.788316208925892, 7.740277208026725 ], [ -3.796326055802865, 7.744669705542492 ], [ -3.805886196290942, 7.744979763005631 ], [ -3.816738247072465, 7.73996714876489 ], [ -3.823456182756615, 7.76022431130292 ], [ -3.83399817517568, 7.770301214829203 ], [ -3.849759487410438, 7.773763536358103 ], [ -3.872032029754394, 7.774099433142339 ], [ -3.872032029754394, 7.780920722513315 ], [ -3.861386685447201, 7.785674954335661 ], [ -3.85962968626103, 7.792754625225768 ], [ -3.865830858007712, 7.812365830818408 ], [ -3.868207973918857, 7.816706651490733 ], [ -3.875132616077394, 7.825310777570337 ], [ -3.876527879158289, 7.831511949317019 ], [ -3.872342088116909, 7.8377131210637 ], [ -3.866967738670212, 7.843707587235372 ], [ -3.864590622759067, 7.849211126991918 ], [ -3.869551561055687, 7.866290187941786 ], [ -3.875701055958984, 7.87740062114176 ], [ -3.879938523843805, 7.885048732812777 ], [ -3.893012660905583, 7.894402166826524 ], [ -3.906138474810746, 7.88334341136931 ], [ -3.91647376075548, 7.891663315709422 ], [ -3.946136034150641, 7.898665473133065 ], [ -3.96076046392426, 7.903833116105432 ], [ -3.976573452103139, 7.912954006122447 ], [ -3.977348599358379, 7.916235460498115 ], [ -3.968253546863707, 7.91863841393166 ], [ -3.954559292177578, 7.924942939365167 ], [ -3.936937628868463, 7.939567369138786 ], [ -3.929031133879732, 7.949282538358432 ], [ -3.926602342024466, 7.958455105218945 ], [ -3.934198777751419, 7.977756252449069 ], [ -3.943862271027001, 7.976516018099744 ], [ -3.954300909759183, 7.968971259216232 ], [ -3.964222784553897, 7.969307156000411 ], [ -3.978278774445869, 7.972071845539233 ], [ -3.995435349761578, 7.967136746563597 ], [ -4.009904750803628, 7.966826687301761 ], [ -4.016002569762804, 7.983285631526655 ], [ -4.010111457277958, 8.028321640831052 ], [ -4.005305548612171, 8.065166937903825 ], [ -3.994298468199759, 8.089687404949757 ], [ -3.977141892884049, 8.10283905727664 ], [ -3.954559292177578, 8.095630195177364 ], [ -3.950580206711152, 8.09997101495037 ], [ -3.942777065409246, 8.110978095362782 ], [ -3.940296596710596, 8.116094062391028 ], [ -3.953577440246704, 8.127824612315976 ], [ -3.991818000400428, 8.174746812015769 ], [ -4.002463344707621, 8.179914455887399 ], [ -4.012488573189103, 8.18074127908676 ], [ -4.019929979285109, 8.183764350144656 ], [ -4.02282385913378, 8.195546576013669 ], [ -4.019309861660815, 8.207742213932022 ], [ -4.00432369578192, 8.228386949198352 ], [ -4.001739875195085, 8.240246690332469 ], [ -4.007734341366756, 8.250065212339678 ], [ -4.031247118060037, 8.264172878175771 ], [ -4.036466436976468, 8.270968329125083 ], [ -4.03749996575084, 8.281019395128965 ], [ -4.04173743273634, 8.295127060965058 ], [ -4.04266760872315, 8.304790554240697 ], [ -4.031970587572573, 8.306263333486015 ], [ -3.982257859912295, 8.305849921436732 ], [ -3.967633429239356, 8.308511257288671 ], [ -3.95983028793745, 8.318846544132668 ], [ -3.9573498192388, 8.329362698130012 ], [ -3.959158494369035, 8.339000352084554 ], [ -3.964222784553897, 8.346700141498332 ], [ -3.974558071397894, 8.357939765008155 ], [ -3.974609748241278, 8.361402086537055 ], [ -3.970320604412393, 8.364115098333116 ], [ -3.967633429239356, 8.373080960517882 ], [ -3.966083135628196, 8.376491604304078 ], [ -3.962982550204515, 8.379385484152749 ], [ -3.960502082405185, 8.38362295203757 ], [ -3.96076046392426, 8.391064358133633 ], [ -3.963706020616371, 8.395611884380969 ], [ -3.968046841288697, 8.396438707580273 ], [ -3.972077602699187, 8.396102809896774 ], [ -3.974454717711069, 8.397265529880315 ], [ -3.979622361582756, 8.404913642450651 ], [ -3.985720181441252, 8.411011461409828 ], [ -3.987838914034683, 8.418917955499239 ], [ -3.981276007082045, 8.432043769404402 ], [ -3.978278774445869, 8.428736477506391 ], [ -3.964636195703861, 8.431346137414323 ], [ -3.943707241396055, 8.438244941151083 ], [ -3.93729936407442, 8.456719265181903 ], [ -3.932855189715269, 8.469586697568047 ], [ -3.94210527184083, 8.489404608735697 ], [ -3.97874386243933, 8.509765123161912 ], [ -3.981276007082045, 8.527619330467701 ], [ -3.975436571440639, 8.533097031802583 ], [ -3.958176642438104, 8.538497218771624 ], [ -3.950786912286162, 8.551752223886012 ], [ -3.922881638976492, 8.572629503149017 ], [ -3.921021287002816, 8.586633816197661 ], [ -3.927067430017871, 8.608725491388327 ], [ -3.931718309052712, 8.613893134360637 ], [ -3.937144334443474, 8.629034328971102 ], [ -3.947117886081571, 8.637483425419759 ], [ -3.93652421681918, 8.673372708084003 ], [ -3.926602342024466, 8.68717031555758 ], [ -3.909549118596942, 8.692725531258247 ], [ -3.8794734358504, 8.693319810460878 ], [ -3.866140916370227, 8.697040514408172 ], [ -3.857769334287354, 8.705773830797625 ], [ -3.873582323365554, 8.710295517723978 ], [ -3.870430060199112, 8.718951321546228 ], [ -3.851568161641353, 8.733679104107352 ], [ -3.825936652354642, 8.774115912119612 ], [ -3.820200567702045, 8.78085968712486 ], [ -3.807694871421177, 8.777216498442613 ], [ -3.7977729957272, 8.772513943463707 ], [ -3.791210089673882, 8.776363836821588 ], [ -3.788832973762737, 8.798248806437243 ], [ -3.793483852797578, 8.811581325917416 ], [ -3.804645961941617, 8.823415229529189 ], [ -3.818495246258635, 8.830391546732471 ], [ -3.831052619382888, 8.829280504491692 ], [ -3.832706264882233, 8.832923692274562 ], [ -3.832551235251287, 8.834163927523207 ], [ -3.833223028819759, 8.834629015516612 ], [ -3.837253791129569, 8.836101792963348 ], [ -3.831621060163798, 8.842664699915929 ], [ -3.829243944252653, 8.84654043169553 ], [ -3.825729945880312, 8.848685004509321 ], [ -3.816738247072465, 8.849770209227756 ], [ -3.816738247072465, 8.857211615323763 ], [ -3.835858527149298, 8.872947089136858 ], [ -3.865830858007712, 8.907983710180076 ], [ -3.88195390544837, 8.922065538493769 ], [ -3.897663539940424, 8.946275946277865 ], [ -3.889912074582583, 8.96374258085541 ], [ -3.868673061912261, 8.976584173920457 ], [ -3.844075079601225, 8.986945299186175 ], [ -3.830690884176988, 8.989064031779606 ], [ -3.816118130347434, 8.989503282250666 ], [ -3.805369432353416, 8.993766588557207 ], [ -3.803095669229776, 9.007409166399896 ], [ -3.810743780900793, 9.018287054703819 ], [ -3.825729945880312, 9.02714956320176 ], [ -3.84226640537031, 9.033169866895832 ], [ -3.877871466295119, 9.04182566981882 ], [ -3.885312873290502, 9.058362128409499 ], [ -3.881798874918161, 9.080427965178444 ], [ -3.872032029754394, 9.103630683509209 ], [ -3.862420213322196, 9.088541164842866 ], [ -3.851309780122278, 9.076474718133738 ], [ -3.843609991607821, 9.078025010845579 ], [ -3.844075079601225, 9.103630683509209 ], [ -3.850793016184753, 9.119133612426253 ], [ -3.862523566109701, 9.119211126792038 ], [ -3.878801642281985, 9.113164985575622 ], [ -3.89931718633909, 9.110451971980922 ], [ -3.897353480678589, 9.114095159763792 ], [ -3.89683671674112, 9.114689438966423 ], [ -3.895699836078563, 9.114715278287463 ], [ -3.891875780243083, 9.116653143727603 ], [ -3.905880093291671, 9.132026882334742 ], [ -3.893632777630614, 9.165487372244399 ], [ -3.909549118596942, 9.171895250465411 ], [ -3.939624803142181, 9.170138251279241 ], [ -3.947117886081571, 9.171895250465411 ], [ -3.951303677123008, 9.179543362136428 ], [ -3.953319057828253, 9.191015530542302 ], [ -3.956471320095375, 9.201454169274484 ], [ -3.964222784553897, 9.206027533044221 ], [ -3.975023159391299, 9.20827545774614 ], [ -3.995435349761578, 9.218068142230948 ], [ -4.036466436976468, 9.226517239578925 ], [ -4.063183152780312, 9.244087226044655 ], [ -4.090519985309072, 9.267496649950431 ], [ -4.095997686643955, 9.26287160933731 ], [ -4.101888800028121, 9.261941433350444 ], [ -4.109020147761612, 9.262199814869575 ], [ -4.118425258618799, 9.261269639782029 ], [ -4.133928188435164, 9.256541246381403 ], [ -4.152531703675209, 9.24700694431499 ], [ -4.15873287632121, 9.239229641434804 ], [ -4.159404669889625, 9.232072455279592 ], [ -4.161936815431716, 9.22892019301247 ], [ -4.173667365356607, 9.233338528050638 ], [ -4.177129685986245, 9.237291775095343 ], [ -4.18162553539014, 9.245017402031465 ], [ -4.185552944013182, 9.253854071208423 ], [ -4.187361619143417, 9.261269639782029 ], [ -4.185242885650666, 9.277341010379303 ], [ -4.180385301040815, 9.287960517164095 ], [ -4.177129685986245, 9.298915919833803 ], [ -4.179868537103289, 9.315891627996223 ], [ -4.182710741007895, 9.319896551884369 ], [ -4.186896532049332, 9.322893785419865 ], [ -4.190927292560502, 9.327492988510585 ], [ -4.193562790890098, 9.336381334530927 ], [ -4.193149379740078, 9.34459788698291 ], [ -4.190927292560502, 9.351315823566381 ], [ -4.188498500705236, 9.356560980904533 ], [ -4.187361619143417, 9.360281683952564 ], [ -4.186173061637476, 9.370022690694611 ], [ -4.18105709460923, 9.380332140016208 ], [ -4.179868537103289, 9.388212794784636 ], [ -4.181987270596096, 9.395628363358242 ], [ -4.191392380553907, 9.411828925164741 ], [ -4.196404994794705, 9.444565945561919 ], [ -4.204311488884116, 9.458389390557898 ], [ -4.231389939893802, 9.483788356747255 ], [ -4.237797817215494, 9.492030748520222 ], [ -4.240898402639175, 9.499239609720178 ], [ -4.241931932312809, 9.507275295018815 ], [ -4.241931932312809, 9.517920640225327 ], [ -4.244360724168075, 9.528953559059516 ], [ -4.250303514395682, 9.534870509966026 ], [ -4.258054978854204, 9.539082140328503 ], [ -4.265806444212046, 9.544921575969965 ], [ -4.310248175213133, 9.603910224177469 ], [ -4.322476993999885, 9.608980710000097 ], [ -4.315933390999902, 9.616623434000076 ], [ -4.30298844399988, 9.641712341000101 ], [ -4.300482137999921, 9.654295553000026 ], [ -4.303453531999907, 9.677911682000044 ], [ -4.303298502999979, 9.686722514000039 ], [ -4.297794961999983, 9.695843404000101 ], [ -4.267512572999863, 9.727262675000048 ], [ -4.279191446999931, 9.731138408000092 ], [ -4.283635620999917, 9.732016907000045 ], [ -4.27032893899991, 9.74392832500007 ], [ -4.253094848999922, 9.750051982000045 ], [ -4.215422729999887, 9.754857890000039 ], [ -4.196974242999886, 9.764960633000086 ], [ -4.168293823999903, 9.804829 ], [ -4.150258747999885, 9.818290711000074 ], [ -4.133050496999914, 9.820409444000049 ], [ -4.07615474499994, 9.803795471000043 ], [ -4.065716104999922, 9.798085226000083 ], [ -4.05987666799993, 9.796276551000091 ], [ -4.053675496999858, 9.797620138000056 ], [ -4.051711791999907, 9.80234853100005 ], [ -4.051350056999922, 9.807567851000059 ], [ -4.050316528999929, 9.810306702000105 ], [ -4.034968627999973, 9.81761891700009 ], [ -4.026674560999908, 9.82030609100012 ], [ -3.994609333999904, 9.820771179000047 ], [ -3.988253133999876, 9.834801331000065 ], [ -3.984041503999919, 9.851156921000012 ], [ -3.969184529999893, 9.85898590100004 ], [ -3.947738809999862, 9.86436025000009 ], [ -3.91009252899994, 9.888493144000051 ], [ -3.891624633999925, 9.893900095000049 ], [ -3.889706176999908, 9.894461772000071 ], [ -3.823482828999914, 9.895702006000107 ], [ -3.80425919599989, 9.901386414000058 ], [ -3.795758422999882, 9.90766510000006 ], [ -3.779738728999916, 9.92469248500008 ], [ -3.769610147999884, 9.931332906000094 ], [ -3.755037394999903, 9.935880433000122 ], [ -3.706461547999908, 9.941823222000039 ], [ -3.698994302999893, 9.940789693000056 ], [ -3.68594600499992, 9.933451640000072 ], [ -3.67964147999993, 9.932211405000118 ], [ -3.674318806999878, 9.935260315000065 ], [ -3.665042887999959, 9.946603292000134 ], [ -3.661658080999928, 9.948928731000066 ], [ -3.648170531999881, 9.944587911000085 ], [ -3.64054825799991, 9.937379048000125 ], [ -3.63401118999991, 9.929240010000029 ], [ -3.623340006999911, 9.92174692800009 ], [ -3.606260945999878, 9.918181254000018 ], [ -3.546471313999945, 9.926139425000073 ], [ -3.389168253999912, 9.913246155000081 ], [ -3.376559203999875, 9.908491923000085 ], [ -3.359015055999919, 9.892498068000037 ], [ -3.348343871999901, 9.886994527000041 ], [ -3.339248819999852, 9.890095113000086 ], [ -3.327518269999956, 9.897303976000046 ], [ -3.317182983999942, 9.901334737000042 ], [ -3.312738809999928, 9.894513449000087 ], [ -3.313565632999939, 9.874566345000062 ], [ -3.311808634999892, 9.854128316000114 ], [ -3.301731730999933, 9.841131694000083 ], [ -3.277857218999941, 9.843457133000115 ], [ -3.264059610999908, 9.857073873000019 ], [ -3.230237385999914, 9.904719543000056 ], [ -3.214760294999905, 9.915623271000115 ], [ -3.202564656999897, 9.908233541000115 ], [ -3.202228759999912, 9.888958232000078 ], [ -3.204399169999903, 9.865367941000073 ], [ -3.200006673999894, 9.845369161000036 ], [ -3.182565877999878, 9.835163066000064 ], [ -3.16011246799988, 9.834697978000037 ], [ -3.136935587999858, 9.829530335000129 ], [ -3.116910969999935, 9.805294088000053 ], [ -3.104379435999931, 9.757131653000059 ], [ -3.094560912999953, 9.733851420000036 ], [ -3.077094278999908, 9.71940785800011 ], [ -3.059059203999908, 9.718555196000082 ], [ -3.024642699999958, 9.728606262000099 ], [ -3.005677449999894, 9.724162090000092 ], [ -2.989993651999924, 9.708426616000025 ], [ -2.977823852999933, 9.685172221000101 ], [ -2.959892130999947, 9.638611755000056 ], [ -2.91015356499986, 9.542726136000098 ], [ -2.810418049999953, 9.411106262000132 ], [ -2.787602905999933, 9.393717143000117 ], [ -2.763676717999942, 9.391882629000108 ], [ -2.744918171999956, 9.408109030000034 ], [ -2.720475219999912, 9.459217020000025 ], [ -2.68921097799992, 9.488724263000037 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-05", "NAME_1": "Comoe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.096592622999907, 7.054476971000042 ], [ -3.09727411440889, 7.054053375263038 ], [ -3.109598754999922, 7.046392721000132 ], [ -3.224940551999879, 6.8494021610001 ], [ -3.241683715999926, 6.810903219000053 ], [ -3.243078979999893, 6.774755554000123 ], [ -3.238738158999922, 6.76462697400008 ], [ -3.226232462999917, 6.748581441000113 ], [ -3.21274491399987, 6.722665711000076 ], [ -3.210419474999924, 6.715999451000059 ], [ -3.230056518999959, 6.661119080000049 ], [ -3.23548254399995, 6.654582011000073 ], [ -3.253905191999934, 6.644427592000113 ], [ -3.261114053999904, 6.633937277000072 ], [ -3.262509317999985, 6.617142436000094 ], [ -3.183599405999928, 6.263908183000126 ], [ -3.171721890999947, 6.249584688000084 ], [ -3.17181637192806, 6.249412135861348 ], [ -3.211090460856099, 6.177685248275566 ], [ -3.220753953232361, 6.15254466450466 ], [ -3.220702277288297, 6.146498521489548 ], [ -3.217136602971834, 6.126344713537662 ], [ -3.216258103828466, 6.11453664834761 ], [ -3.218273485433031, 6.105312405543089 ], [ -3.220598923601472, 6.098697820847747 ], [ -3.223441128405341, 6.094357001074741 ], [ -3.230004035357979, 6.087380682972139 ], [ -3.23940914621511, 6.079319159251781 ], [ -3.248917608960483, 6.063635362282128 ], [ -3.308965622565438, 5.918786322230972 ], [ -3.38182939261236, 5.799465440477661 ], [ -3.385033331722866, 5.795667223063901 ], [ -3.388805710714962, 5.79272166637179 ], [ -3.393766649011638, 5.790757960711289 ], [ -3.434125941758793, 5.780293484456706 ], [ -3.446890021357433, 5.789827786523119 ], [ -3.457897100870525, 5.796132310157986 ], [ -3.465235155078346, 5.806906847473044 ], [ -3.467922329352007, 5.831039739991979 ], [ -3.467663946933612, 5.837550971000496 ], [ -3.466785447790187, 5.857730618273422 ], [ -3.462651332692872, 5.87537811910488 ], [ -3.430301885923313, 5.937338162426215 ], [ -3.427821418123983, 5.948345241939364 ], [ -3.426994594924622, 5.961393541478742 ], [ -3.423532274295042, 5.971237901008294 ], [ -3.41521236815629, 5.974958604056326 ], [ -3.404877082211556, 5.976973984761571 ], [ -3.395627000085994, 5.981857407793143 ], [ -3.384619919673582, 6.001701158281833 ], [ -3.386066859597918, 6.021829127811998 ], [ -3.396557176072804, 6.038339748880276 ], [ -3.412731898558263, 6.047357286109843 ], [ -3.410664841908954, 6.052085680409789 ], [ -3.407357550010943, 6.063221951132107 ], [ -3.405290493361576, 6.067821153323564 ], [ -3.421103480641136, 6.063687039125568 ], [ -3.426994594924622, 6.060999863952532 ], [ -3.424204066964137, 6.080404363970217 ], [ -3.411956753101663, 6.091385605960909 ], [ -3.398572556778106, 6.099989732040513 ], [ -3.392216356299798, 6.112211209279849 ], [ -3.395627000085994, 6.162802436083552 ], [ -3.403585171018847, 6.17086395890459 ], [ -3.420276659240415, 6.205306300745178 ], [ -3.433195766671304, 6.211817531753695 ], [ -3.444151170240332, 6.205823066481344 ], [ -3.449163783581753, 6.189415798200514 ], [ -3.460480923256, 6.190733546915624 ], [ -3.45893062964484, 6.194454250862975 ], [ -3.464408331879042, 6.205771388738583 ], [ -3.471332974037523, 6.216416733945096 ], [ -3.47650061700989, 6.219543157790497 ], [ -3.481358201619742, 6.227010403207544 ], [ -3.483528611955876, 6.23522695655879 ], [ -3.47784420414672, 6.239154364282456 ], [ -3.458207160132361, 6.240885525046906 ], [ -3.456760220208025, 6.246311550437667 ], [ -3.463478155892176, 6.255794176560016 ], [ -3.477947556934225, 6.296437690147286 ], [ -3.50073686411497, 6.329768987948398 ], [ -3.542439743999012, 6.376303615819211 ], [ -3.555358853228483, 6.353462632694345 ], [ -3.571378546982373, 6.352997544700941 ], [ -3.590137090953988, 6.359095364559437 ], [ -3.611324428579508, 6.35583974950481 ], [ -3.621866420998515, 6.404234727550602 ], [ -3.628429327951153, 6.408343004226253 ], [ -3.648169724753018, 6.427902532975509 ], [ -3.652303839850333, 6.434336248718864 ], [ -3.653440721412153, 6.437307643832696 ], [ -3.656024542898365, 6.441493434874133 ], [ -3.65860836438452, 6.447229519526672 ], [ -3.65974524594634, 6.454825955253625 ], [ -3.657523158766764, 6.458314114304926 ], [ -3.652613898212849, 6.462913316496326 ], [ -3.647652960815492, 6.468597724305539 ], [ -3.645482549579981, 6.47531565998969 ], [ -3.651425339807588, 6.520584215089457 ], [ -3.656024542898365, 6.530247708365039 ], [ -3.660778773821391, 6.537120672780816 ], [ -3.663569301781877, 6.553682969793215 ], [ -3.665946417693021, 6.561279405520111 ], [ -3.670080531891017, 6.565465196561547 ], [ -3.682586229071205, 6.575128688937809 ], [ -3.686410284906742, 6.581769111155552 ], [ -3.685790168181711, 6.59445567548903 ], [ -3.678038702823869, 6.623471991039537 ], [ -3.68020911316006, 6.636391099369746 ], [ -3.690441047216552, 6.644685167086777 ], [ -3.699949509961925, 6.639414171326905 ], [ -3.714367235059854, 6.622722683105337 ], [ -3.719483202088099, 6.622257595111932 ], [ -3.741704066689351, 6.622722683105337 ], [ -3.756070115843158, 6.620164700040846 ], [ -3.768989224173367, 6.615901393734305 ], [ -3.774880336658214, 6.627141018143448 ], [ -3.777567510931874, 6.632360337959199 ], [ -3.78232174275422, 6.646984767732818 ], [ -3.788884649706802, 6.659852200118905 ], [ -3.803095669229776, 6.671143500472169 ], [ -3.772038132753607, 6.684243475955611 ], [ -3.770436164097703, 6.705818386309488 ], [ -3.796274379858744, 6.759897773063756 ], [ -3.753899704607704, 6.801083889010272 ], [ -3.751625942383328, 6.808318590430588 ], [ -3.740153773977511, 6.815036526114795 ], [ -3.750075648772167, 6.829609279944293 ], [ -3.766715461049671, 6.843820299467211 ], [ -3.775190395920049, 6.849272162380373 ], [ -3.772554896691133, 6.865266017712543 ], [ -3.761444465289856, 6.883223577805836 ], [ -3.748008592122858, 6.897848009378095 ], [ -3.738293422903155, 6.903894151493887 ], [ -3.729715135245328, 6.912007351158309 ], [ -3.731678840006452, 6.930119940882548 ], [ -3.741238978695947, 6.948930161697604 ], [ -3.755346646330679, 6.959136257332375 ], [ -3.761651169965546, 6.93632111172991 ], [ -3.771262987297007, 6.937225450194376 ], [ -3.78077145004238, 6.953400173579155 ], [ -3.775190395920049, 6.979005846242785 ], [ -3.751625942383328, 7.000115667703881 ], [ -3.714367235059854, 7.006316840349882 ], [ -3.702843389810596, 7.017143052709685 ], [ -3.694626838257989, 7.028925279478074 ], [ -3.684188197727167, 7.03962230152797 ], [ -3.665946417693021, 7.047270413198987 ], [ -3.634320441335319, 7.051146144978588 ], [ -3.621297980217605, 7.060473741469991 ], [ -3.618765834675514, 7.082048651823811 ], [ -3.583057420063881, 7.070783188992948 ], [ -3.569983283002102, 7.071842556188983 ], [ -3.577166306679715, 7.088249823570493 ], [ -3.571481898870559, 7.090601101059974 ], [ -3.567141079097553, 7.094063421689555 ], [ -3.564453904823836, 7.099101874352016 ], [ -3.563523728837026, 7.106233222085507 ], [ -3.567554491146836, 7.111607571532204 ], [ -3.575822720442204, 7.110005601077603 ], [ -3.582902391332311, 7.105587266039493 ], [ -3.583367479325716, 7.102512519037532 ], [ -3.612202927722933, 7.107602646744738 ], [ -3.623106655347897, 7.112692776250583 ], [ -3.631839971737293, 7.123002223773597 ], [ -3.636025762778729, 7.13292409946763 ], [ -3.645275844904347, 7.165351059703653 ], [ -3.645482549579981, 7.17762421288711 ], [ -3.637162645239869, 7.190982570789004 ], [ -3.624915329578812, 7.197752183316595 ], [ -3.614476690846629, 7.194470729840305 ], [ -3.611324428579508, 7.17762421288711 ], [ -3.599283820292101, 7.182972723912087 ], [ -3.593134325388803, 7.186615911694958 ], [ -3.589103563078993, 7.192739569975174 ], [ -3.583367479325716, 7.205555325517821 ], [ -3.57995683374088, 7.218112697742811 ], [ -3.580576952264551, 7.228628851740098 ], [ -3.582644008913917, 7.239532579365061 ], [ -3.583470832113221, 7.268755601389898 ], [ -3.582333949652082, 7.274750068460889 ], [ -3.55608232274102, 7.280046901743106 ], [ -3.535928513889814, 7.280847887420066 ], [ -3.528280402218797, 7.285886339183207 ], [ -3.521975876785291, 7.30113088658112 ], [ -3.526316698356936, 7.300975856950231 ], [ -3.527350226231988, 7.302190252877836 ], [ -3.527298550287867, 7.304593207210758 ], [ -3.528177049431292, 7.307978014373873 ], [ -3.535308397164783, 7.303947252064006 ], [ -3.542439743999012, 7.30113088658112 ], [ -3.544610155234466, 7.323145046506681 ], [ -3.535050014746389, 7.337924505911189 ], [ -3.503165655970236, 7.347846380705903 ], [ -3.498359748203825, 7.348776556692712 ], [ -3.494897426674925, 7.348233954333523 ], [ -3.478877732921035, 7.343040472939435 ], [ -3.472573208386848, 7.344745795282222 ], [ -3.463788215154011, 7.339319769891461 ], [ -3.459757452844201, 7.339629828253976 ], [ -3.454899868234349, 7.341257636230921 ], [ -3.449318813212642, 7.339397284257245 ], [ -3.442962611835071, 7.33528900848097 ], [ -3.430715297972654, 7.328984483047464 ], [ -3.424617479013477, 7.323868516019161 ], [ -3.42058671670361, 7.318752549890235 ], [ -3.405342170205017, 7.267773749458968 ], [ -3.403326788600396, 7.263510444051747 ], [ -3.400432908751725, 7.259014593748475 ], [ -3.396815557591935, 7.254828802707038 ], [ -3.386842006853158, 7.245811265477528 ], [ -3.370563930680873, 7.226897690975647 ], [ -3.364569465408522, 7.224494737542102 ], [ -3.359608527111845, 7.225192369532238 ], [ -3.355887824063814, 7.228370470221023 ], [ -3.349945033836264, 7.23619944904533 ], [ -3.341728481384337, 7.249480292581438 ], [ -3.328912725841633, 7.250100409306413 ], [ -3.307570360383806, 7.246999822983412 ], [ -3.235068324643464, 7.224649766273672 ], [ -3.223079393199441, 7.21749258101778 ], [ -3.200548468437091, 7.20012929922774 ], [ -3.166958787318208, 7.179639594491675 ], [ -3.151145799139329, 7.165661118965431 ], [ -3.139466925158501, 7.152483629116205 ], [ -3.097919074006086, 7.073418687322544 ], [ -3.09662716281332, 7.054970200814125 ], [ -3.096592622999907, 7.054476971000042 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-13", "NAME_1": "Sud-Comoé" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.171721890999947, 6.249584688000084 ], [ -3.168794107999929, 6.24605397600007 ], [ -3.139364379999932, 6.219285584000104 ], [ -3.118073689999932, 6.16347503700004 ], [ -3.087765462999897, 5.996689352000118 ], [ -3.073244384999953, 5.960955099000017 ], [ -3.034719604999907, 5.890700989000024 ], [ -3.02252396699987, 5.854501648000081 ], [ -3.019965982999878, 5.818353984000069 ], [ -3.029758666999953, 5.704252421000064 ], [ -2.964801390999895, 5.709781799000069 ], [ -2.974904133999928, 5.647279155000078 ], [ -2.969503946999879, 5.621440938000063 ], [ -2.945861978999858, 5.60828928700009 ], [ -2.926302449999923, 5.610718078000048 ], [ -2.893746296999893, 5.630355123000086 ], [ -2.877494059999975, 5.636814677000046 ], [ -2.806258097999915, 5.618495382000063 ], [ -2.793442341999935, 5.608134257000046 ], [ -2.785587524999897, 5.595034282000086 ], [ -2.781815144999882, 5.578885397000093 ], [ -2.77943802899992, 5.52648549400007 ], [ -2.761713012999905, 5.454913636000114 ], [ -2.734427855999911, 5.391144918000094 ], [ -2.730138712999945, 5.373161520000096 ], [ -2.732670857999921, 5.355720724000065 ], [ -2.742592732999924, 5.343137512000055 ], [ -2.755873575999914, 5.34070872000008 ], [ -2.789566608999877, 5.346858216000058 ], [ -2.796129515999951, 5.284975688000131 ], [ -2.793287312999894, 5.271100566000072 ], [ -2.779334675999905, 5.251075948000036 ], [ -2.774890502999909, 5.239577942000011 ], [ -2.775407267999924, 5.231025492000086 ], [ -2.779644734999891, 5.210122376000101 ], [ -2.77881791199988, 5.201001486000038 ], [ -2.775665648999905, 5.197539164000091 ], [ -2.762488158999929, 5.186299540000036 ], [ -2.757010456999922, 5.179865825000078 ], [ -2.766622272999939, 5.161029765000066 ], [ -2.780884968999914, 5.150875346000106 ], [ -2.803855142999879, 5.147568054000104 ], [ -2.843698696999923, 5.149115302000041 ], [ -2.846180792999917, 5.176988023000092 ], [ -2.879383917999917, 5.181341864000046 ], [ -2.920399542999917, 5.17649974200009 ], [ -2.946685350999928, 5.177069403000075 ], [ -2.938465949999909, 5.156927802000041 ], [ -2.943511522999927, 5.136786200000074 ], [ -2.957997199999909, 5.121161200000074 ], [ -2.977772589999915, 5.114976304000038 ], [ -2.993397589999915, 5.119533596000053 ], [ -3.046294725999928, 5.144110419000071 ], [ -3.06281490799995, 5.156642971000053 ], [ -3.082753058999913, 5.151068427000041 ], [ -3.122385219999956, 5.149969794000071 ], [ -3.139149542999917, 5.142320054000038 ], [ -3.146839972999942, 5.161322333000044 ], [ -3.162464972999942, 5.184149481000077 ], [ -3.180897589999915, 5.203192450000074 ], [ -3.196888800999943, 5.211167710000041 ], [ -3.205067511999914, 5.218654690000051 ], [ -3.194325324999909, 5.234442450000074 ], [ -3.178822394999941, 5.248846747000073 ], [ -3.172718878999945, 5.252183335000041 ], [ -3.167958136999914, 5.266302802000041 ], [ -3.165028449999909, 5.295884507000039 ], [ -3.159087693999936, 5.307440497000073 ], [ -3.145375128999945, 5.315985419000071 ], [ -3.134755011999914, 5.318589585000041 ], [ -3.127919074999909, 5.324896552000041 ], [ -3.125477667999917, 5.344631252000056 ], [ -3.127756313999953, 5.359605210000041 ], [ -3.134429490999935, 5.366766669000071 ], [ -3.146066860999952, 5.368841864000046 ], [ -3.16274980399993, 5.368841864000046 ], [ -3.167388475999928, 5.36664459800005 ], [ -3.173329230999911, 5.361761786000045 ], [ -3.180734829999949, 5.356838283000059 ], [ -3.18976803299995, 5.354641018000052 ], [ -3.198109503999945, 5.355902411000045 ], [ -3.211822068999936, 5.361476955000057 ], [ -3.220529751999948, 5.36204661700009 ], [ -3.230213995999918, 5.358628648000092 ], [ -3.249419725999928, 5.345363674000055 ], [ -3.262074347999942, 5.340887762000079 ], [ -3.252064581999946, 5.318101304000038 ], [ -3.246937628999945, 5.29759349200009 ], [ -3.254302537999934, 5.283596096000053 ], [ -3.282622850999928, 5.280178127000056 ], [ -3.278187628999945, 5.272528387000079 ], [ -3.278187628999945, 5.265448309000078 ], [ -3.282134568999936, 5.258734442000048 ], [ -3.289418097999942, 5.252183335000041 ], [ -3.280262824999909, 5.246161200000074 ], [ -3.275786912999934, 5.24477773600006 ], [ -3.282622850999928, 5.24477773600006 ], [ -3.273060675999943, 5.241156317000048 ], [ -3.262806769999941, 5.238836981000077 ], [ -3.252023891999954, 5.237860419000071 ], [ -3.240956183999913, 5.238511460000041 ], [ -3.240956183999913, 5.231675523000092 ], [ -3.250396287999934, 5.227362372000073 ], [ -3.265695766999954, 5.228705145000049 ], [ -3.275786912999934, 5.225490627000056 ], [ -3.284291144999941, 5.21906159100007 ], [ -3.291981574999909, 5.210516669000071 ], [ -3.298329230999911, 5.200669664000088 ], [ -3.30304928299995, 5.190130927000041 ], [ -3.313588019999941, 5.197251695000091 ], [ -3.320708787999934, 5.193508205000057 ], [ -3.31899980399993, 5.184800523000092 ], [ -3.30304928299995, 5.177069403000075 ], [ -3.308990037999934, 5.163763739000046 ], [ -3.303089972999942, 5.15570709800005 ], [ -3.290516730999911, 5.151353257000039 ], [ -3.275786912999934, 5.149115302000041 ], [ -3.312163865999935, 5.119940497000073 ], [ -3.378041144999941, 5.123195705000057 ], [ -3.538751071154717, 5.157289591019191 ], [ -3.538615688163475, 5.157359930816142 ], [ -3.427666387593717, 5.215004990987552 ], [ -3.402293259826081, 5.237200018965666 ], [ -3.402706671875421, 5.242936102718943 ], [ -3.404101934956316, 5.247819525750515 ], [ -3.406013962874113, 5.25231537515441 ], [ -3.408856166778662, 5.256216946255051 ], [ -3.412163458676673, 5.259860134037922 ], [ -3.431128709122618, 5.275595607851017 ], [ -3.434280972289059, 5.279161282167422 ], [ -3.43701982340616, 5.283192043577913 ], [ -3.438776820793635, 5.287868761034474 ], [ -3.440017056042336, 5.2929847271634 ], [ -3.440585495923926, 5.298643297450212 ], [ -3.440585495923926, 5.304379381203489 ], [ -3.432575649046953, 5.348924464992081 ], [ -3.439603643992996, 5.420289618271227 ], [ -3.4389318513239, 5.444034938961238 ], [ -3.435986293732469, 5.454912828164481 ], [ -3.417434455335865, 5.496641547369506 ], [ -3.408236050053688, 5.523487454382519 ], [ -3.406892462916858, 5.533409329177175 ], [ -3.406892462916858, 5.541341660788987 ], [ -3.408597785259587, 5.546535142183075 ], [ -3.410664841908954, 5.550953477221185 ], [ -3.413145310607604, 5.558782456944812 ], [ -3.418209600792466, 5.603327542532043 ], [ -3.419966599978636, 5.611854153346485 ], [ -3.422137010314771, 5.616350001851117 ], [ -3.425185919794387, 5.620380764160927 ], [ -3.429165005260813, 5.623016262490523 ], [ -3.434125941758793, 5.625600083976678 ], [ -3.43815670406866, 5.629940903749684 ], [ -3.439190232842975, 5.640250352172018 ], [ -3.433815884295655, 5.719082749968948 ], [ -3.430818650760159, 5.726524156064954 ], [ -3.419294806410221, 5.739107366711607 ], [ -3.415160692212169, 5.747323920062854 ], [ -3.414540574587875, 5.752284858359531 ], [ -3.418726365629254, 5.760578925177242 ], [ -3.434125941758793, 5.780293484456706 ], [ -3.393766649011638, 5.790757960711289 ], [ -3.388805710714962, 5.79272166637179 ], [ -3.385033331722866, 5.795667223063901 ], [ -3.38182939261236, 5.799465440477661 ], [ -3.308965622565438, 5.918786322230972 ], [ -3.248917608960483, 6.063635362282128 ], [ -3.23940914621511, 6.079319159251781 ], [ -3.230004035357979, 6.087380682972139 ], [ -3.223441128405341, 6.094357001074741 ], [ -3.220598923601472, 6.098697820847747 ], [ -3.218273485433031, 6.105312405543089 ], [ -3.216258103828466, 6.11453664834761 ], [ -3.217136602971834, 6.126344713537662 ], [ -3.220702277288297, 6.146498521489548 ], [ -3.220753953232361, 6.15254466450466 ], [ -3.211090460856099, 6.177685248275566 ], [ -3.17181637192806, 6.249412135861348 ], [ -3.171721890999947, 6.249584688000084 ] ] ], [ [ [ -3.115305141999954, 5.107814846000053 ], [ -3.119618292999917, 5.09133535400008 ], [ -3.120228644999941, 5.091498114000046 ], [ -3.163807745999918, 5.101548570000091 ], [ -3.262074347999942, 5.110988674000055 ], [ -3.276356574999909, 5.118109442000048 ], [ -3.272328253999945, 5.132391669000071 ], [ -3.253285285999937, 5.149603583000044 ], [ -3.234120245999918, 5.163478908000059 ], [ -3.207386847999942, 5.156642971000053 ], [ -3.200306769999941, 5.15180084800005 ], [ -3.197417772999927, 5.145900783000059 ], [ -3.19595292899993, 5.140204169000071 ], [ -3.193186001999948, 5.136135158000059 ], [ -3.184966600999928, 5.13226959800005 ], [ -3.163400844999956, 5.125474351000094 ], [ -3.159087693999936, 5.125555731000077 ], [ -3.155140753999945, 5.127875067000048 ], [ -3.146351691999939, 5.121568101000094 ], [ -3.131703253999945, 5.10814036700009 ], [ -3.118316209999932, 5.107001044000071 ], [ -3.115305141999954, 5.107814846000053 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-03", "NAME_1": "Savanes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.522578084999878, 10.42548879000006 ], [ -5.505111449999902, 10.415566915000056 ], [ -5.48748978699993, 10.392932638000019 ], [ -5.475294148999922, 10.367714539000062 ], [ -5.474157267999914, 10.350325419000043 ], [ -5.459946248999927, 10.345157776000036 ], [ -5.453021606999869, 10.343943380000098 ], [ -5.443771525999864, 10.343529969000087 ], [ -5.437828734999925, 10.340015971000128 ], [ -5.433487915999962, 10.331876933000032 ], [ -5.430077270999931, 10.322936910000095 ], [ -5.426976684999886, 10.316864929000047 ], [ -5.416227986999957, 10.307537333000099 ], [ -5.402533731999938, 10.300561015000113 ], [ -5.385738891999893, 10.296478577000101 ], [ -5.365533406999901, 10.295703431000092 ], [ -5.360830850999918, 10.298752340000121 ], [ -5.357058471999892, 10.304385071000056 ], [ -5.353337768999978, 10.308260804000014 ], [ -5.348170124999882, 10.30598704100008 ], [ -5.343777628999874, 10.303093160000103 ], [ -5.338506632999952, 10.302214661000065 ], [ -5.327086140999938, 10.302576396000063 ], [ -5.315510619999912, 10.305263570000093 ], [ -5.309206094999894, 10.311490580000083 ], [ -5.304141804999915, 10.318415223000059 ], [ -5.296648721999873, 10.323040263000024 ], [ -5.279802204999896, 10.322420146000056 ], [ -5.233551797999922, 10.315676371000023 ], [ -5.217583780999888, 10.319939677000079 ], [ -5.168439493999927, 10.291336772000108 ], [ -5.159499470999918, 10.292318624000075 ], [ -5.152058064999892, 10.305625305000092 ], [ -5.135676635999943, 10.304281718000112 ], [ -5.119882392158672, 10.293983276706854 ], [ -5.119191853999951, 10.293533020000012 ], [ -5.111802123999951, 10.278650208000059 ], [ -5.111802123999951, 10.223718160000132 ], [ -5.114411783999856, 10.218292134000066 ], [ -5.118210001999898, 10.212478536000077 ], [ -5.117073120999891, 10.208034363000067 ], [ -5.104903319999977, 10.206949158000072 ], [ -5.097849487999952, 10.209274597000018 ], [ -5.091906696999928, 10.214338887000082 ], [ -5.087333333999908, 10.220824280000045 ], [ -5.084413614999903, 10.22743886400005 ], [ -5.08159724999993, 10.20689748100007 ], [ -5.09014969899988, 10.188810730000057 ], [ -5.090718139999922, 10.177932841000086 ], [ -5.063949747999857, 10.179043885000098 ], [ -5.070719360999902, 10.161008809000094 ], [ -5.06472489499987, 10.150802714000122 ], [ -5.039455118999882, 10.134343770000058 ], [ -5.037594767999877, 10.126488953000106 ], [ -5.061030028999937, 10.118453268000039 ], [ -5.07009924299993, 10.110159200000084 ], [ -5.061701822999851, 10.110055847000055 ], [ -5.055138916999852, 10.108040467000095 ], [ -5.049376993999886, 10.105353292000075 ], [ -5.042865762999924, 10.103337911000025 ], [ -5.056482503999916, 10.097110901000036 ], [ -5.04834346599992, 10.085354512000038 ], [ -5.037233031999989, 10.083752544000106 ], [ -5.025528320999911, 10.088739319000055 ], [ -5.015580607999908, 10.097110901000036 ], [ -5.01051631699994, 10.079049988000122 ], [ -4.999793456999925, 10.069464010000033 ], [ -4.986641805999852, 10.063262838000043 ], [ -4.974523681999955, 10.055537211000043 ], [ -4.963335733999912, 10.040318502000105 ], [ -4.956411091999939, 10.021999207000121 ], [ -4.960209309999868, 10.008485819000057 ], [ -4.981396646999912, 10.007736511000047 ], [ -4.976926634999899, 9.99760793100009 ], [ -4.96571284999996, 9.983112691000059 ], [ -4.954809122999905, 9.959703268000098 ], [ -4.9529487719999, 9.95337290500008 ], [ -4.967314819999899, 9.912367656000043 ], [ -4.966074584999944, 9.901024679000059 ], [ -4.936670694999862, 9.873997904000106 ], [ -4.928014892999926, 9.870948995000077 ], [ -4.922356322999889, 9.877460226000053 ], [ -4.917085326999938, 9.886477763000102 ], [ -4.909385538999857, 9.891051127000139 ], [ -4.898016723999945, 9.888906555000062 ], [ -4.893495035999933, 9.884204 ], [ -4.890058552999903, 9.879501445000102 ], [ -4.881738647999924, 9.877408549000037 ], [ -4.858329223999874, 9.875703227000074 ], [ -4.838459634999879, 9.869450378000082 ], [ -4.824274454999937, 9.85697052000009 ], [ -4.81755651799989, 9.836454976000113 ], [ -4.798462076999925, 9.842526958000064 ], [ -4.790323038999901, 9.827514953000076 ], [ -4.785413777999878, 9.804829 ], [ -4.775905313999885, 9.788008321000049 ], [ -4.791899169999937, 9.782349752000101 ], [ -4.800399942999945, 9.781109518000079 ], [ -4.810115111999892, 9.78178131100006 ], [ -4.810115111999892, 9.774339905000133 ], [ -4.801226765999957, 9.766459249000093 ], [ -4.79931473799985, 9.762531840000122 ], [ -4.796446695999862, 9.75449615500014 ], [ -4.783191690999956, 9.758371887000095 ], [ -4.76996252399988, 9.737365418000081 ], [ -4.754769653999858, 9.740207622000057 ], [ -4.760454061, 9.745323588000048 ], [ -4.762133544999926, 9.749948629000102 ], [ -4.758593709999985, 9.753307597000116 ], [ -4.74864599599988, 9.75449615500014 ], [ -4.738336547999978, 9.753152568000075 ], [ -4.733323933999912, 9.74963857000003 ], [ -4.730016642999914, 9.744238383000052 ], [ -4.724383911999894, 9.737107035000108 ], [ -4.71280838999985, 9.726849264000037 ], [ -4.709087686999936, 9.720312195000062 ], [ -4.707640747999932, 9.70977020300009 ], [ -4.705470336999952, 9.702096253000107 ], [ -4.700095987999902, 9.697910462000067 ], [ -4.686608439999929, 9.692406922000075 ], [ -4.681544148999933, 9.686722514000039 ], [ -4.681802530999903, 9.68284678100008 ], [ -4.681079060999906, 9.682071635000071 ], [ -4.672914184999911, 9.685585633000116 ], [ -4.664826822999913, 9.690856628000049 ], [ -4.658263915999925, 9.697600403000081 ], [ -4.65472408099987, 9.703543193000101 ], [ -4.655809284999862, 9.70607533800009 ], [ -4.641107339999877, 9.706023661000074 ], [ -4.628730834999885, 9.707703145000039 ], [ -4.616948608999905, 9.713852641000102 ], [ -4.604029499999882, 9.727159322000105 ], [ -4.592712360999911, 9.717831727000075 ], [ -4.578320475999902, 9.696515198000085 ], [ -4.566719115999945, 9.692406922000075 ], [ -4.552198038999904, 9.696463522000073 ], [ -4.548425658999889, 9.706798808000087 ], [ -4.547960570999862, 9.720260518000131 ], [ -4.543051310999914, 9.734006450000081 ], [ -4.539899047999967, 9.740776062000108 ], [ -4.539098063999859, 9.744703471000079 ], [ -4.535945800999883, 9.7466154990001 ], [ -4.517781534999955, 9.7466154990001 ], [ -4.509952554999927, 9.745065206000078 ], [ -4.503958089999884, 9.742016297000049 ], [ -4.501606810999959, 9.737107035000108 ], [ -4.50382889899987, 9.719898783000048 ], [ -4.513647420999916, 9.694008891000109 ], [ -4.51592118399995, 9.675689595000037 ], [ -4.501710163999888, 9.655019023000108 ], [ -4.469205688999864, 9.651763407000118 ], [ -4.43336808299992, 9.653468730000085 ], [ -4.409105997999916, 9.647732646000037 ], [ -4.400165974999908, 9.633134054000067 ], [ -4.391587687999959, 9.600293681000053 ], [ -4.38486975099994, 9.589415792000082 ], [ -4.371175495999921, 9.582956238000037 ], [ -4.367816528999896, 9.591973775000085 ], [ -4.368023233999878, 9.608381043000051 ], [ -4.365026001999951, 9.624168193000031 ], [ -4.349678099999977, 9.620034078000103 ], [ -4.322547973999917, 9.608897807000076 ], [ -4.322476993999885, 9.608980710000097 ], [ -4.310248175213133, 9.603910224177469 ], [ -4.265806444212046, 9.544921575969965 ], [ -4.258054978854204, 9.539082140328503 ], [ -4.250303514395682, 9.534870509966026 ], [ -4.244360724168075, 9.528953559059516 ], [ -4.241931932312809, 9.517920640225327 ], [ -4.241931932312809, 9.507275295018815 ], [ -4.240898402639175, 9.499239609720178 ], [ -4.237797817215494, 9.492030748520222 ], [ -4.231389939893802, 9.483788356747255 ], [ -4.204311488884116, 9.458389390557898 ], [ -4.196404994794705, 9.444565945561919 ], [ -4.191392380553907, 9.411828925164741 ], [ -4.181987270596096, 9.395628363358242 ], [ -4.179868537103289, 9.388212794784636 ], [ -4.18105709460923, 9.380332140016208 ], [ -4.186173061637476, 9.370022690694611 ], [ -4.187361619143417, 9.360281683952564 ], [ -4.188498500705236, 9.356560980904533 ], [ -4.190927292560502, 9.351315823566381 ], [ -4.193149379740078, 9.34459788698291 ], [ -4.193562790890098, 9.336381334530927 ], [ -4.190927292560502, 9.327492988510585 ], [ -4.186896532049332, 9.322893785419865 ], [ -4.182710741007895, 9.319896551884369 ], [ -4.179868537103289, 9.315891627996223 ], [ -4.177129685986245, 9.298915919833803 ], [ -4.180385301040815, 9.287960517164095 ], [ -4.185242885650666, 9.277341010379303 ], [ -4.187361619143417, 9.261269639782029 ], [ -4.185552944013182, 9.253854071208423 ], [ -4.18162553539014, 9.245017402031465 ], [ -4.177129685986245, 9.237291775095343 ], [ -4.173667365356607, 9.233338528050638 ], [ -4.161936815431716, 9.22892019301247 ], [ -4.159404669889625, 9.232072455279592 ], [ -4.15873287632121, 9.239229641434804 ], [ -4.152531703675209, 9.24700694431499 ], [ -4.133928188435164, 9.256541246381403 ], [ -4.118425258618799, 9.261269639782029 ], [ -4.109020147761612, 9.262199814869575 ], [ -4.101888800028121, 9.261941433350444 ], [ -4.095997686643955, 9.26287160933731 ], [ -4.090519985309072, 9.267496649950431 ], [ -4.063183152780312, 9.244087226044655 ], [ -4.036466436976468, 9.226517239578925 ], [ -3.995435349761578, 9.218068142230948 ], [ -3.975023159391299, 9.20827545774614 ], [ -3.964222784553897, 9.206027533044221 ], [ -3.956471320095375, 9.201454169274484 ], [ -3.953319057828253, 9.191015530542302 ], [ -3.951303677123008, 9.179543362136428 ], [ -3.947117886081571, 9.171895250465411 ], [ -3.939624803142181, 9.170138251279241 ], [ -3.909549118596942, 9.171895250465411 ], [ -3.893632777630614, 9.165487372244399 ], [ -3.905880093291671, 9.132026882334742 ], [ -3.891875780243083, 9.116653143727603 ], [ -3.895699836078563, 9.114715278287463 ], [ -3.89683671674112, 9.114689438966423 ], [ -3.897353480678589, 9.114095159763792 ], [ -3.89931718633909, 9.110451971980922 ], [ -3.878801642281985, 9.113164985575622 ], [ -3.862523566109701, 9.119211126792038 ], [ -3.850793016184753, 9.119133612426253 ], [ -3.844075079601225, 9.103630683509209 ], [ -3.843609991607821, 9.078025010845579 ], [ -3.851309780122278, 9.076474718133738 ], [ -3.862420213322196, 9.088541164842866 ], [ -3.872032029754394, 9.103630683509209 ], [ -3.881798874918161, 9.080427965178444 ], [ -3.885312873290502, 9.058362128409499 ], [ -3.877871466295119, 9.04182566981882 ], [ -3.84226640537031, 9.033169866895832 ], [ -3.825729945880312, 9.02714956320176 ], [ -3.810743780900793, 9.018287054703819 ], [ -3.803095669229776, 9.007409166399896 ], [ -3.805369432353416, 8.993766588557207 ], [ -3.816118130347434, 8.989503282250666 ], [ -3.830690884176988, 8.989064031779606 ], [ -3.844075079601225, 8.986945299186175 ], [ -3.868673061912261, 8.976584173920457 ], [ -3.889912074582583, 8.96374258085541 ], [ -3.897663539940424, 8.946275946277865 ], [ -3.88195390544837, 8.922065538493769 ], [ -3.865830858007712, 8.907983710180076 ], [ -3.835858527149298, 8.872947089136858 ], [ -3.816738247072465, 8.857211615323763 ], [ -3.816738247072465, 8.849770209227756 ], [ -3.825729945880312, 8.848685004509321 ], [ -3.829243944252653, 8.84654043169553 ], [ -3.831621060163798, 8.842664699915929 ], [ -3.837253791129569, 8.836101792963348 ], [ -3.833223028819759, 8.834629015516612 ], [ -3.832551235251287, 8.834163927523207 ], [ -3.832706264882233, 8.832923692274562 ], [ -3.831052619382888, 8.829280504491692 ], [ -3.818495246258635, 8.830391546732471 ], [ -3.804645961941617, 8.823415229529189 ], [ -3.793483852797578, 8.811581325917416 ], [ -3.788832973762737, 8.798248806437243 ], [ -3.791210089673882, 8.776363836821588 ], [ -3.7977729957272, 8.772513943463707 ], [ -3.807694871421177, 8.777216498442613 ], [ -3.820200567702045, 8.78085968712486 ], [ -3.825936652354642, 8.774115912119612 ], [ -3.851568161641353, 8.733679104107352 ], [ -3.870430060199112, 8.718951321546228 ], [ -3.873582323365554, 8.710295517723978 ], [ -3.857769334287354, 8.705773830797625 ], [ -3.866140916370227, 8.697040514408172 ], [ -3.8794734358504, 8.693319810460878 ], [ -3.909549118596942, 8.692725531258247 ], [ -3.926602342024466, 8.68717031555758 ], [ -3.93652421681918, 8.673372708084003 ], [ -3.947117886081571, 8.637483425419759 ], [ -3.937144334443474, 8.629034328971102 ], [ -3.931718309052712, 8.613893134360637 ], [ -3.946446091613836, 8.611412664762668 ], [ -3.956057908945354, 8.608777167332391 ], [ -3.971715868392607, 8.602653509951494 ], [ -3.976986864152479, 8.60203339322652 ], [ -3.982464564587985, 8.603506171572519 ], [ -3.987683885303056, 8.608157049708041 ], [ -3.997554084153649, 8.61955170284881 ], [ -4.00008622879642, 8.621592921975775 ], [ -4.003600226269441, 8.623453273949394 ], [ -4.019516567235826, 8.627251492262531 ], [ -4.032073940360078, 8.627406520994157 ], [ -4.0401871400245, 8.626631375537556 ], [ -4.057653773702725, 8.622109686812564 ], [ -4.066645474309212, 8.62205800996918 ], [ -4.078479377021665, 8.623143214687616 ], [ -4.100648565678796, 8.628026637719131 ], [ -4.111914027610283, 8.628569240977697 ], [ -4.120699021742496, 8.628336696980966 ], [ -4.126021694345752, 8.626631375537556 ], [ -4.131964483673983, 8.625623684285586 ], [ -4.138165656319984, 8.62570119955069 ], [ -4.144986944791697, 8.627561549725726 ], [ -4.152324998100198, 8.633452664009212 ], [ -4.160593228294886, 8.642599392448005 ], [ -4.165295783273791, 8.64554494914006 ], [ -4.171341925389527, 8.647172756217685 ], [ -4.181367152971745, 8.646165065865091 ], [ -4.188085089555273, 8.644304713891415 ], [ -4.198937140336739, 8.639963894118409 ], [ -4.204414841671621, 8.638878689399974 ], [ -4.210719367105128, 8.639188747762489 ], [ -4.217023891639315, 8.641669216461139 ], [ -4.224155239372806, 8.647715359476251 ], [ -4.227824265577397, 8.653244736755198 ], [ -4.232526820556359, 8.663786729174205 ], [ -4.237384406065473, 8.668592637839936 ], [ -4.257383185285789, 8.679832262249079 ], [ -4.263222621826571, 8.685749213155646 ], [ -4.266633267411351, 8.691872870536542 ], [ -4.268648647217276, 8.70357758203977 ], [ -4.271077439971862, 8.707995917077881 ], [ -4.275728319006703, 8.711354884920013 ], [ -4.282291225959341, 8.713370266524578 ], [ -4.293505011047444, 8.713370266524578 ], [ -4.301049770830275, 8.712440090537712 ], [ -4.324407517892666, 8.707169093878576 ], [ -4.330712043326173, 8.70778921150287 ], [ -4.336189743761679, 8.710114651469951 ], [ -4.34104732927085, 8.715463162494927 ], [ -4.3435277979695, 8.720966702251474 ], [ -4.345181444368166, 8.726780300370535 ], [ -4.353656379238544, 8.786983344505757 ], [ -4.356860316550353, 8.797396144816219 ], [ -4.35934078614838, 8.801736965488544 ], [ -4.362338018784556, 8.805767726899091 ], [ -4.369882777668067, 8.812201443541767 ], [ -4.387814500239017, 8.82191661186215 ], [ -4.391535203286992, 8.825094713450255 ], [ -4.394842495185003, 8.828815416498287 ], [ -4.404505987561265, 8.846592109438291 ], [ -4.413497687268489, 8.851553045936328 ], [ -4.427605353104582, 8.856901556961247 ], [ -4.461143358279344, 8.86488556631582 ], [ -4.474889288909537, 8.870544134803993 ], [ -4.483467576567421, 8.875840968985528 ], [ -4.488583542696347, 8.88452261033018 ], [ -4.491684129019347, 8.888320827743996 ], [ -4.495146449648928, 8.891111354805162 ], [ -4.531733364303307, 8.905012315066301 ], [ -4.540001592699355, 8.90726023976822 ], [ -4.547236294119671, 8.90726023976822 ], [ -4.558966844044619, 8.903539536720245 ], [ -4.571110806018908, 8.897312527451163 ], [ -4.936049771180024, 8.908965562111007 ], [ -4.936049771180024, 8.94581085918378 ], [ -4.928349981766246, 8.950926825312706 ], [ -4.921166958088634, 8.953872382004818 ], [ -4.913415492730792, 8.961572170519219 ], [ -4.900393031613135, 8.980563259386884 ], [ -4.896362271101964, 8.990821030965776 ], [ -4.895122035853262, 8.997642320336809 ], [ -4.895690476634172, 8.999425157045323 ], [ -4.895948859052623, 9.000045273770354 ], [ -4.896052211840129, 9.000587877028863 ], [ -4.882823045147404, 9.092055162315887 ], [ -4.883133104409239, 9.103553168244105 ], [ -4.88468339712108, 9.111692206330247 ], [ -4.887473924182245, 9.115877997371683 ], [ -4.890884568867762, 9.119133612426253 ], [ -4.894915330278252, 9.121536566759119 ], [ -4.904630500397275, 9.123164373836744 ], [ -4.912743700061696, 9.127815252871585 ], [ -4.917342902253154, 9.129701443266981 ], [ -4.932432420020177, 9.132026882334742 ], [ -4.937083299055018, 9.134197293570253 ], [ -4.948142056310871, 9.143809109103074 ], [ -4.957598843112123, 9.148227444141241 ], [ -4.962818162028555, 9.150010280849756 ], [ -4.968192510575932, 9.154273586256977 ], [ -4.973308477604178, 9.160733140422053 ], [ -4.9848839987975, 9.190059516133772 ], [ -4.987467821183031, 9.194322821540993 ], [ -4.990568406606712, 9.198276069485019 ], [ -5.00054195824481, 9.207577825756061 ], [ -5.00400427887439, 9.212254543212566 ], [ -5.009533657052657, 9.222331448537489 ], [ -5.011704067388791, 9.229927883365121 ], [ -5.012427536901328, 9.237214259830239 ], [ -5.012375860957206, 9.251037705725537 ], [ -5.016096564005238, 9.281681830152309 ], [ -5.019145474384118, 9.293309028189071 ], [ -5.030565965047231, 9.298915919833803 ], [ -5.04560380687019, 9.30333425487197 ], [ -5.14812984941301, 9.320542507031064 ], [ -5.156088019446543, 9.318682155956708 ], [ -5.160790575324825, 9.315659084898812 ], [ -5.16663001096623, 9.308527737165321 ], [ -5.174226446693183, 9.300931301438425 ], [ -5.177792121009588, 9.298063259112098 ], [ -5.182339647256924, 9.295815335309442 ], [ -5.187558966173356, 9.294316718541722 ], [ -5.194328578700947, 9.295040188054202 ], [ -5.201304896803549, 9.297210598390393 ], [ -5.209418097367291, 9.302869167777885 ], [ -5.213552211565343, 9.307830105175185 ], [ -5.216342738626508, 9.313101100935057 ], [ -5.240527309787524, 9.370901190737357 ], [ -5.246676804690765, 9.379996243232029 ], [ -5.252516242130866, 9.38542226772347 ], [ -5.258252325884143, 9.386662502072795 ], [ -5.270499639746561, 9.386662502072795 ], [ -5.316181605996348, 9.379531155238624 ], [ -5.338092414033667, 9.384802150998439 ], [ -5.371682095152551, 9.344494534195405 ], [ -5.386564907344621, 9.317984523966572 ], [ -5.392714403147181, 9.291681220212126 ], [ -5.395504930208347, 9.259538479017579 ], [ -5.405271776271491, 9.229902044943401 ], [ -5.424288702661499, 9.211634426487592 ], [ -5.454777798356702, 9.213494778461268 ], [ -5.441031866827188, 9.198586126948214 ], [ -5.434985723812133, 9.183522446703535 ], [ -5.435244106230527, 9.166417548231266 ], [ -5.447543096936386, 9.12254425711177 ], [ -5.457878383780383, 9.100065009192804 ], [ -5.473277960809241, 9.086267401719226 ], [ -5.495705531884823, 9.089962266345481 ], [ -5.497204148652543, 9.063348904228519 ], [ -5.437207810991708, 9.024565740816286 ], [ -5.420671353300349, 8.994386705282238 ], [ -5.429766404895702, 8.997900701855883 ], [ -5.439688279690358, 9.000277817767085 ], [ -5.450230272109366, 9.001259669697959 ], [ -5.460978970103383, 9.000587877028863 ], [ -5.460978970103383, 8.994386705282238 ], [ -5.455087855819897, 8.991673691687481 ], [ -5.440515102889719, 8.980098171393479 ], [ -5.465216437088884, 8.965060330469839 ], [ -5.459635382067233, 8.926406358266831 ], [ -5.485473598727594, 8.918654892908989 ], [ -5.491984828836792, 8.913461412414222 ], [ -5.481546190104609, 8.902506007945874 ], [ -5.466973436275055, 8.892635809994601 ], [ -5.460978970103383, 8.890723782076861 ], [ -5.459273646861334, 8.878192247374329 ], [ -5.466663377013219, 8.867986151739501 ], [ -5.473588019171757, 8.865944931713216 ], [ -5.48366492359736, 8.862327582352009 ], [ -5.493173387242052, 8.862715155080309 ], [ -5.499064499726899, 8.858994452032334 ], [ -5.50449052601698, 8.858684394569138 ], [ -5.515290899955062, 8.85969208402247 ], [ -5.524644333968865, 8.864808051050716 ], [ -5.532757533633287, 8.866435859027661 ], [ -5.539320440585868, 8.866900946121746 ], [ -5.556993780738424, 8.865505683040851 ], [ -5.56789750836333, 8.863180243073771 ], [ -5.573065151335697, 8.861474920730984 ], [ -5.577561000739593, 8.859459540025739 ], [ -5.581436733418514, 8.856436468967843 ], [ -5.595544399254607, 8.842768052703434 ], [ -5.599368455090143, 8.839822496011379 ], [ -5.603605922974964, 8.837264512946888 ], [ -5.612804328257141, 8.833078721905451 ], [ -5.617971971229508, 8.831450913928506 ], [ -5.623087938257754, 8.830288193944966 ], [ -5.628720669223526, 8.830288193944966 ], [ -5.639727748736618, 8.832768663542993 ], [ -5.658331264875983, 8.834473984986403 ], [ -5.663550583792414, 8.836179307329132 ], [ -5.671612108412091, 8.841450303988324 ], [ -5.677399868109433, 8.84307811106595 ], [ -5.683704392643619, 8.84307811106595 ], [ -5.691610886733031, 8.841140244726489 ], [ -5.696933560235607, 8.834008896992998 ], [ -5.710989549228316, 8.79917898242411 ], [ -5.721118129597983, 8.763393053446634 ], [ -5.721583217591444, 8.754866440833553 ], [ -5.720187953611173, 8.749130357080276 ], [ -5.717087368187492, 8.748975328348706 ], [ -5.712281460421082, 8.753471177752658 ], [ -5.709025845366455, 8.760912583848665 ], [ -5.704633347850745, 8.76481415404993 ], [ -5.699414028034994, 8.76597687403347 ], [ -5.694659797111967, 8.76427155169074 ], [ -5.6906290348021, 8.761325994998685 ], [ -5.687838507740935, 8.757114366434848 ], [ -5.68468624457455, 8.746417345284272 ], [ -5.682050747144274, 8.7423090677093 ], [ -5.672645636287086, 8.737580675207994 ], [ -5.669338345288395, 8.734092515257373 ], [ -5.66902828602656, 8.728098049085702 ], [ -5.672335577924571, 8.724997462762701 ], [ -5.677089809746917, 8.723524685315965 ], [ -5.688045213315945, 8.723292141319234 ], [ -5.694039678588297, 8.719261379009424 ], [ -5.694866501787658, 8.714688015239688 ], [ -5.693522914650771, 8.710269680201577 ], [ -5.6906290348021, 8.706290594735151 ], [ -5.688561978152791, 8.70109711334112 ], [ -5.687528449378419, 8.694740911963493 ], [ -5.690784064433046, 8.676111558301784 ], [ -5.691094122795562, 8.668902696202451 ], [ -5.692954473869861, 8.660531114119635 ], [ -5.696933560235607, 8.658050645420929 ], [ -5.701429408740239, 8.656810411071604 ], [ -5.702979702351399, 8.653322252020303 ], [ -5.7026179671455, 8.637173367057244 ], [ -5.701687791158633, 8.631747340767163 ], [ -5.698845588153404, 8.627871608987562 ], [ -5.688665330040976, 8.617536322143565 ], [ -5.684841274205439, 8.615753486334313 ], [ -5.680293747958103, 8.616451117425129 ], [ -5.672232225137066, 8.621747952505984 ], [ -5.667736374833851, 8.623918361942856 ], [ -5.662310350342409, 8.624693508298776 ], [ -5.656884324951648, 8.62397003788692 ], [ -5.651613328292456, 8.622574774806026 ], [ -5.646652390895156, 8.620559394100724 ], [ -5.642259894278709, 8.617923895771185 ], [ -5.638745896805688, 8.614125678357368 ], [ -5.636265428107038, 8.608854681698176 ], [ -5.636678840156378, 8.58123362922862 ], [ -5.637609015243868, 8.575420030210239 ], [ -5.637815720818878, 8.569606432091177 ], [ -5.636937221675453, 8.564464625741891 ], [ -5.634508428920867, 8.560821437958964 ], [ -5.631511196284691, 8.557953396532014 ], [ -5.62779049323666, 8.555317898202418 ], [ -5.623759730926849, 8.553225002232068 ], [ -5.618592087954482, 8.553225002232068 ], [ -5.613786180188072, 8.554155178218878 ], [ -5.608618537215705, 8.554155178218878 ], [ -5.604639451749335, 8.551054591895877 ], [ -5.602882452563165, 8.54570608177022 ], [ -5.602365687726319, 8.537308661265683 ], [ -5.610427212345996, 8.529247138444646 ], [ -5.742305467223559, 8.560898953224125 ], [ -5.948391079284875, 8.636010647073704 ], [ -5.956349250217727, 8.64058401084344 ], [ -6.108691372309011, 8.877003688969069 ], [ -6.126364711562189, 8.913151353152386 ], [ -6.127811652385844, 8.918422348912259 ], [ -6.129310269153621, 8.931393134085852 ], [ -6.131532355433876, 8.940152288897025 ], [ -6.135149704795026, 8.945190741559486 ], [ -6.139903936617372, 8.948756414976572 ], [ -6.159334275956098, 8.958213201777824 ], [ -6.2244982565893, 8.999967760303889 ], [ -6.224653286220189, 9.000200304300563 ], [ -6.224859991795199, 9.000432848297294 ], [ -6.227133754918839, 9.003533432821655 ], [ -6.2290974587807, 9.007254136769006 ], [ -6.234575161014902, 9.022472845745199 ], [ -6.237365688076068, 9.027821356770175 ], [ -6.247700974920065, 9.042859197693815 ], [ -6.252248501167401, 9.052186794185218 ], [ -6.253953822610811, 9.057380276478568 ], [ -6.254832322653556, 9.062496243506814 ], [ -6.254987352284502, 9.068464871256765 ], [ -6.254212205029262, 9.074226793431762 ], [ -6.252661912317421, 9.079962877185039 ], [ -6.237985805700362, 9.107428900923026 ], [ -6.231836309897801, 9.115102851015763 ], [ -6.220829230384709, 9.125102240176204 ], [ -6.217625291274203, 9.129236355273576 ], [ -6.215299852206442, 9.134042263039987 ], [ -6.214214646588687, 9.139700833326799 ], [ -6.214266323432071, 9.145591945811645 ], [ -6.215041469787991, 9.151483059195812 ], [ -6.219227260829427, 9.159957994066133 ], [ -6.243256802359554, 9.189982000868611 ], [ -6.264444139085754, 9.20253937399292 ], [ -6.276174689010702, 9.204942328325785 ], [ -6.283771124737598, 9.20579498904749 ], [ -6.289455531647491, 9.20579498904749 ], [ -6.30909257656117, 9.210910956075736 ], [ -6.336532761877493, 9.205639960315921 ], [ -6.346609666303038, 9.198276069485019 ], [ -6.34919348778925, 9.194090278443582 ], [ -6.353482631618135, 9.183987534696939 ], [ -6.359115362583907, 9.161818346039809 ], [ -6.365006475968073, 9.151017971202407 ], [ -6.370587530989781, 9.147064724157701 ], [ -6.377718878723272, 9.145591945811645 ], [ -6.385263637606784, 9.145049343452399 ], [ -6.396529100437647, 9.140398464417558 ], [ -6.402110154559978, 9.135902615013663 ], [ -6.420248581806618, 9.110994574340111 ], [ -6.440350714713702, 9.088101915271181 ], [ -6.451357795126171, 9.079497789191578 ], [ -6.460246141146513, 9.075467026881768 ], [ -6.465672165637955, 9.076862290862039 ], [ -6.470374722415499, 9.079187729929799 ], [ -6.474560512557616, 9.082210801886959 ], [ -6.481691860291107, 9.089497179251396 ], [ -6.48737626810032, 9.097429510863208 ], [ -6.4923372045983, 9.106033636942755 ], [ -6.500502082005482, 9.127505195408446 ], [ -6.504016078579184, 9.134662379765018 ], [ -6.50970048728766, 9.143033961847834 ], [ -6.520242478807347, 9.152878323176083 ], [ -6.526133592191513, 9.155513821505622 ], [ -6.53398841033686, 9.157012437374078 ], [ -6.547837693754559, 9.157012437374078 ], [ -6.555537482269017, 9.155358791874733 ], [ -6.561531948440688, 9.152955837541867 ], [ -6.565200974645279, 9.150010280849756 ], [ -6.568198208180775, 9.146289577801781 ], [ -6.570471971304414, 9.14163869876694 ], [ -6.571815558441301, 9.136522731738694 ], [ -6.571608852866291, 9.131019191982091 ], [ -6.570316941673525, 9.125903224953845 ], [ -6.561583625284072, 9.107273871292136 ], [ -6.563237270783418, 9.100116685136925 ], [ -6.569128384167584, 9.091047471963236 ], [ -6.586698370633314, 9.076164658871903 ], [ -6.596981980633927, 9.070351059853522 ], [ -6.606025356285159, 9.067302151273225 ], [ -6.691136440194555, 9.073374131810738 ], [ -6.696769172059646, 9.075234482885037 ], [ -6.700593227895183, 9.077404893221228 ], [ -6.70803463399119, 9.084226181692941 ], [ -6.719661831128633, 9.097093614079029 ], [ -6.718576626410197, 9.106653754567105 ], [ -6.71072180826485, 9.113087470310518 ], [ -6.74658525160811, 9.117815862811824 ], [ -6.738317023212062, 9.145902004174161 ], [ -6.738678758417961, 9.151793118457647 ], [ -6.740384079861428, 9.159492906072728 ], [ -6.748342250794224, 9.173523057543036 ], [ -6.747412074807414, 9.187191473807445 ], [ -6.735939907300917, 9.244061388522255 ], [ -6.734906379425865, 9.260416978161004 ], [ -6.736921759231791, 9.270597236273431 ], [ -6.740900844698217, 9.273620307331328 ], [ -6.747515427594919, 9.281604315786524 ], [ -6.750202602767899, 9.285557562831229 ], [ -6.753819953028426, 9.288890693150961 ], [ -6.768186001282913, 9.314806423277787 ], [ -6.780019903995367, 9.356095892911128 ], [ -6.783585578311772, 9.374854437782062 ], [ -6.783998988562473, 9.387592678059605 ], [ -6.775317349016461, 9.400692654442423 ], [ -6.773818732248685, 9.40909007404764 ], [ -6.775730760166482, 9.416531480143703 ], [ -6.780071579939488, 9.427926134183735 ], [ -6.781260138344692, 9.434463201815277 ], [ -6.781001755926297, 9.438493964125144 ], [ -6.778676316858537, 9.442059638441549 ], [ -6.775524053692152, 9.44500519513366 ], [ -6.772836880317755, 9.44919098617504 ], [ -6.77082149871319, 9.454461981934912 ], [ -6.768496059645429, 9.466425075856534 ], [ -6.766687383615874, 9.471851101247296 ], [ -6.763535122248129, 9.475649319560432 ], [ -6.759142624732362, 9.478129788259082 ], [ -6.754233364178447, 9.480067653699223 ], [ -6.74947913325542, 9.484253444740659 ], [ -6.745448370945553, 9.490790514170897 ], [ -6.741469284579807, 9.50396800402018 ], [ -6.740849167854833, 9.512339586102996 ], [ -6.742141079047542, 9.518850816212193 ], [ -6.744828254220579, 9.521589667329295 ], [ -6.75077104264949, 9.525387884743054 ], [ -6.764516974179003, 9.536782537883823 ], [ -6.773250290568456, 9.548719794283045 ], [ -6.779503140057898, 9.554714260454716 ], [ -6.797744920091986, 9.565333767239565 ], [ -6.785911017379533, 9.614142157334697 ], [ -6.779709844733532, 9.631350409493791 ], [ -6.776970993616487, 9.635639553322733 ], [ -6.761778123061958, 9.654398098193667 ], [ -6.759814419200097, 9.662485460335688 ], [ -6.758367479275762, 9.674112657473131 ], [ -6.755111864221192, 9.681088975575733 ], [ -6.750460985186351, 9.686540839388215 ], [ -6.743794725446207, 9.692044379144761 ], [ -6.742864548560078, 9.696850286911172 ], [ -6.744363166227174, 9.701036077952608 ], [ -6.747412074807414, 9.70591950098418 ], [ -6.749892544405384, 9.711500556005831 ], [ -6.75040930834291, 9.721293240490638 ], [ -6.747205369232404, 9.728114528962351 ], [ -6.741934372573269, 9.736641139776793 ], [ -6.740074022398233, 9.743333237938543 ], [ -6.740280727973243, 9.749146836956925 ], [ -6.742864548560078, 9.753487656729988 ], [ -6.746998663657394, 9.756820787049662 ], [ -6.756610480089591, 9.762866930064774 ], [ -6.760537888712577, 9.768603013817994 ], [ -6.759711066412592, 9.777853095044293 ], [ -6.754853480903421, 9.793666083223172 ], [ -6.75195960105475, 9.812993068875016 ], [ -6.748342250794224, 9.822992458934834 ], [ -6.744208135696908, 9.829684557096641 ], [ -6.739453904773882, 9.834800523225567 ], [ -6.733562791389716, 9.844257310026819 ], [ -6.733201056183816, 9.850458481773501 ], [ -6.734492967376525, 9.855677802488572 ], [ -6.740177375185738, 9.863506781312879 ], [ -6.742709519828509, 9.867925116351046 ], [ -6.74885901473175, 9.89283315702454 ], [ -6.751339484329719, 9.899111843137064 ], [ -6.754491745697521, 9.903917751802794 ], [ -6.758160772801432, 9.90694082286069 ], [ -6.762139858267858, 9.909576321190229 ], [ -6.7664290020968, 9.913917140963292 ], [ -6.77066646998162, 9.920144151131637 ], [ -6.778417935339462, 9.939135239999302 ], [ -6.781880255969043, 9.944587103811784 ], [ -6.785911017379533, 9.947842718866355 ], [ -6.790820277933506, 9.95024567319922 ], [ -6.796711392216991, 9.951485907548602 ], [ -6.802757534332727, 9.951873481176222 ], [ -6.929829881443879, 9.947842718866355 ], [ -6.936134405978066, 9.949082953215679 ], [ -6.942128872149738, 9.951098333920982 ], [ -6.947089810446414, 9.955516668959092 ], [ -6.947503220697058, 9.960245063259038 ], [ -6.945952927985275, 9.964973455760344 ], [ -6.928641323038619, 9.991044216417436 ], [ -6.920889857680777, 10.000061754546323 ], [ -6.899650845010513, 10.019517931407393 ], [ -6.897325405043432, 10.025124823052124 ], [ -6.894586553926331, 10.033728949131671 ], [ -6.894689906713836, 10.041635444120459 ], [ -6.892674526008591, 10.054451198763786 ], [ -6.888488734967154, 10.064063015195984 ], [ -6.880013800096833, 10.077162991578803 ], [ -6.876758185042206, 10.08540538245245 ], [ -6.876189744261296, 10.093234361276757 ], [ -6.877119920248106, 10.098117784308272 ], [ -6.884923062449388, 10.107290351168785 ], [ -6.873192510725801, 10.122095648995014 ], [ -6.855312465897612, 10.130932319071235 ], [ -6.82828569173131, 10.135350654109402 ], [ -6.814901496307016, 10.134265448491647 ], [ -6.777487759352596, 10.140957545754134 ], [ -6.767152471609279, 10.122250677726583 ], [ -6.755421921684331, 10.111786200572681 ], [ -6.744518194958744, 10.10602427839774 ], [ -6.736508348081827, 10.103388780068144 ], [ -6.728963589198315, 10.102148545718819 ], [ -6.722814093395698, 10.102381089715493 ], [ -6.71165198425166, 10.104241440789849 ], [ -6.671861131386095, 10.116902166701607 ], [ -6.590419073681289, 10.160723781877039 ], [ -6.586698370633314, 10.163772691356598 ], [ -6.583494432422128, 10.167183336042115 ], [ -6.582874314797778, 10.172299303070361 ], [ -6.585561489071495, 10.18943003996435 ], [ -6.585044725133969, 10.201858221879434 ], [ -6.580497198886633, 10.223588161864143 ], [ -6.581840786023463, 10.229789334510144 ], [ -6.613260056806212, 10.239013577314722 ], [ -6.619306199821267, 10.243664456349563 ], [ -6.627832810635709, 10.25206187595478 ], [ -6.63015824970347, 10.258728135694867 ], [ -6.63114010343304, 10.265084337072494 ], [ -6.630623337696875, 10.271207994453391 ], [ -6.627936164322534, 10.284023749096718 ], [ -6.628194545841609, 10.291852728820345 ], [ -6.632225308151476, 10.308079128149245 ], [ -6.639098272567253, 10.318466090937306 ], [ -6.656203171938841, 10.354148668026596 ], [ -6.668270003999908, 10.365839977000036 ], [ -6.663955444999885, 10.397996928000083 ], [ -6.659614623999914, 10.405360820000084 ], [ -6.653051716999926, 10.41306060800008 ], [ -6.647935749999931, 10.421871440000075 ], [ -6.647780721999879, 10.432697653000019 ], [ -6.653981892999866, 10.440035706000103 ], [ -6.664627237999866, 10.444557394000043 ], [ -6.675634317999936, 10.447864686000045 ], [ -6.683075723999877, 10.451688741000069 ], [ -6.695788126999929, 10.471196594000077 ], [ -6.69754512499992, 10.488301494000027 ], [ -6.687778279999861, 10.520470072000066 ], [ -6.682817342999897, 10.565971171000029 ], [ -6.685607869999956, 10.5740068570001 ], [ -6.689225219999855, 10.580931498000083 ], [ -6.691085571999849, 10.589432271000092 ], [ -6.688966836999981, 10.607854919000104 ], [ -6.684212605999988, 10.626561788000089 ], [ -6.681938842999955, 10.627388611000114 ], [ -6.667882853999856, 10.650901387000104 ], [ -6.669174763999905, 10.65415700300008 ], [ -6.647108927999909, 10.661340027000037 ], [ -6.633983113999932, 10.653020122000072 ], [ -6.6136225999999, 10.618474426000091 ], [ -6.59858475799993, 10.604909363000104 ], [ -6.578069213999953, 10.59113759400006 ], [ -6.537554890999928, 10.569691874000043 ], [ -6.521380167999951, 10.56421417200005 ], [ -6.466964883999964, 10.553542990000054 ], [ -6.445984252999949, 10.552251078000097 ], [ -6.421489623999889, 10.556591899000082 ], [ -6.402782755999908, 10.569123434000076 ], [ -6.39921708199995, 10.592481181000039 ], [ -6.406658487999977, 10.601860453000072 ], [ -6.419060831999928, 10.607699891000067 ], [ -6.430688028999896, 10.614960429000035 ], [ -6.435855671999917, 10.628706360000066 ], [ -6.433995320999912, 10.667928772000039 ], [ -6.427019002999913, 10.686093038000067 ], [ -6.409810750999924, 10.694387106000107 ], [ -6.388054971999907, 10.69552398700003 ], [ -6.367539428999947, 10.692268372000044 ], [ -6.341701211999919, 10.691441549000018 ], [ -6.322219197999914, 10.700484925000069 ], [ -6.303564005999874, 10.713171489000032 ], [ -6.279999551999964, 10.723274231000062 ], [ -6.255970011999921, 10.726478170000036 ], [ -6.245841430999889, 10.720742086000072 ], [ -6.244446166999893, 10.706866964000099 ], [ -6.249458780999873, 10.665603332000089 ], [ -6.246616576999884, 10.657619324000038 ], [ -6.227754678999872, 10.650849711000092 ], [ -6.2169026279999, 10.64508778900003 ], [ -6.207807576999926, 10.637543030000074 ], [ -6.204448607999922, 10.629610698000107 ], [ -6.209771280999888, 10.617750957000098 ], [ -6.219796508999906, 10.61185984300009 ], [ -6.230700235999961, 10.606924744000054 ], [ -6.238658406999917, 10.597984721000032 ], [ -6.232870645999867, 10.584109599000058 ], [ -6.230028441999877, 10.572043152000077 ], [ -6.231372028999942, 10.56023508800007 ], [ -6.237934935999931, 10.551941020000115 ], [ -6.256228392999901, 10.537239075000116 ], [ -6.260930948999885, 10.529151714000122 ], [ -6.261292683999955, 10.514088033000036 ], [ -6.256021687999947, 10.511607565000062 ], [ -6.247650105999867, 10.513829651000066 ], [ -6.238658406999917, 10.51274444600007 ], [ -6.233490763999924, 10.50757680200006 ], [ -6.228168090999873, 10.500574646000061 ], [ -6.222432006999924, 10.494631857000044 ], [ -6.215662393999878, 10.492616476000094 ], [ -6.204190226999856, 10.494373474000071 ], [ -6.196128702999971, 10.494683533000057 ], [ -6.190289265999894, 10.491143698000087 ], [ -6.185793416999957, 10.481325176000027 ], [ -6.187498737999931, 10.47540822400012 ], [ -6.198195759999919, 10.457398987000118 ], [ -6.200366170999928, 10.448769023000082 ], [ -6.196903848999881, 10.439157207000065 ], [ -6.180574096999948, 10.420217794000024 ], [ -6.195663614999944, 10.389211934000102 ], [ -6.198764200999989, 10.370815125000092 ], [ -6.183933064999849, 10.358852031000055 ], [ -6.208324340999894, 10.331980286000146 ], [ -6.207807576999926, 10.328517965000103 ], [ -6.20537878399989, 10.322626851000109 ], [ -6.203983520999913, 10.316038107000026 ], [ -6.206153929999886, 10.310818787000102 ], [ -6.214370483999915, 10.307795716000072 ], [ -6.221140095999971, 10.310353699000075 ], [ -6.225894327999868, 10.314487813000099 ], [ -6.228323119999914, 10.316089783000038 ], [ -6.240673787999867, 10.302576396000063 ], [ -6.243309285999885, 10.289011333000076 ], [ -6.240001993999897, 10.251933492000092 ], [ -6.224809122999943, 10.255034078000051 ], [ -6.21400874899993, 10.247851054000094 ], [ -6.194320027999879, 10.22418324800006 ], [ -6.180884154999916, 10.215837504000092 ], [ -6.105333210999902, 10.18927581800007 ], [ -6.015932982999914, 10.189870097000039 ], [ -5.997122762999908, 10.208189392000108 ], [ -5.985237182999867, 10.227283834000104 ], [ -5.978312540999895, 10.248626200000103 ], [ -5.974746866999908, 10.273637594000093 ], [ -5.963016316999926, 10.282732645000067 ], [ -5.916404174999883, 10.26663543700009 ], [ -5.9047253009999, 10.275291239000055 ], [ -5.908962767999952, 10.33006825800004 ], [ -5.904828653999914, 10.348284201000084 ], [ -5.893304809999989, 10.365027364000127 ], [ -5.878060261999849, 10.376060283000115 ], [ -5.80628169799985, 10.413474020000095 ], [ -5.677555704999861, 10.44150848400011 ], [ -5.621796834999913, 10.446934510000077 ], [ -5.594046589999891, 10.453936666000089 ], [ -5.584383097999961, 10.454246725000075 ], [ -5.571722371999925, 10.449880066000077 ], [ -5.549708211999928, 10.435643209000105 ], [ -5.522578084999878, 10.42548879000006 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-19", "NAME_1": "Cavally" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.547147989999871, 6.560039978000091 ], [ -8.53355708899997, 6.576343892000111 ], [ -8.461313435999926, 6.633420512000029 ], [ -8.44164567420853, 6.655310175024567 ], [ -8.434957648176919, 6.652591661176189 ], [ -8.336979132780755, 6.589985662708159 ], [ -8.327677374711072, 6.586187445294343 ], [ -8.320339321402571, 6.585954902196988 ], [ -8.309280565046038, 6.5938613962864 ], [ -8.30121904132568, 6.597814643331105 ], [ -8.288506638570539, 6.602232978369216 ], [ -8.281788702886331, 6.603318183087652 ], [ -8.25750077983713, 6.622335110377037 ], [ -8.250162725629309, 6.625978298159907 ], [ -8.249335903329268, 6.632101956440124 ], [ -8.249542608904278, 6.636933701728935 ], [ -8.250369432103639, 6.642204698388127 ], [ -8.249749315378608, 6.647708238144673 ], [ -8.247682257829922, 6.65421946915319 ], [ -8.247992316192438, 6.659800523275521 ], [ -8.250111049685188, 6.667965399783384 ], [ -8.247682257829922, 6.670135810119518 ], [ -8.237191942254356, 6.668585517407678 ], [ -8.231972622438605, 6.669438178129383 ], [ -8.227218389716938, 6.670833442109654 ], [ -8.217089810246534, 6.672461249187279 ], [ -8.21357581187425, 6.675096747516875 ], [ -8.213989223923534, 6.681995551253692 ], [ -8.220603806820236, 6.695896511514775 ], [ -8.221637335594551, 6.699849758559481 ], [ -8.218433397383365, 6.705585842312757 ], [ -8.198382941319721, 6.717858995496215 ], [ -8.192388475147993, 6.718091539492946 ], [ -8.190063036080232, 6.715042629114009 ], [ -8.189597948086828, 6.710779323706788 ], [ -8.187530889638879, 6.706981106293028 ], [ -8.183861864333608, 6.704733180691733 ], [ -8.178125779681011, 6.705275783950242 ], [ -8.172079636665899, 6.709151515729843 ], [ -8.164276496263312, 6.71700633387519 ], [ -8.160039028378492, 6.727935899022498 ], [ -8.156473354961349, 6.748270575026993 ], [ -8.156163295699571, 6.758192449821706 ], [ -8.154044562206764, 6.762378240863086 ], [ -8.142520717856826, 6.770904853476168 ], [ -8.136991339678616, 6.77868215635641 ], [ -8.131151903137834, 6.781395168152471 ], [ -8.11947302915695, 6.788216458422824 ], [ -8.110222947930708, 6.79565786451883 ], [ -8.102264776997856, 6.799998684291836 ], [ -8.096218633982801, 6.802272447415476 ], [ -8.092084519784748, 6.804752916114182 ], [ -8.091412726216333, 6.810876573495079 ], [ -8.100921189861026, 6.835242010910065 ], [ -8.103505011347181, 6.838575141229796 ], [ -8.107122361607708, 6.839195257954771 ], [ -8.110326299818894, 6.840125433941637 ], [ -8.111928270273438, 6.843846136989612 ], [ -8.111773240642549, 6.848884588752753 ], [ -8.110016242355698, 6.85518911418626 ], [ -8.101851365847835, 6.872087307083518 ], [ -8.09751054517551, 6.885368149720307 ], [ -8.100611130599191, 6.892266954356444 ], [ -8.099370897149186, 6.895445055045229 ], [ -8.09177446142229, 6.898700670099856 ], [ -8.086245083244023, 6.902188829151157 ], [ -8.081800909784192, 6.908467515263624 ], [ -8.079268765141421, 6.91358348229187 ], [ -8.076219854762485, 6.916632391771429 ], [ -8.071103887734239, 6.915237127791215 ], [ -8.062887336181632, 6.917097479764891 ], [ -8.051518520563263, 6.923066108414162 ], [ -8.012089402903655, 6.960686550044215 ], [ -7.989661830928753, 6.968360501036273 ], [ -7.963875291111776, 6.957353419724541 ], [ -7.959017707401301, 6.954330349565964 ], [ -7.950904506837503, 6.948284207450229 ], [ -7.929768846055424, 6.928879706533223 ], [ -7.921190558397541, 6.923531195508247 ], [ -7.913749152301534, 6.920275580453676 ], [ -7.899744839252946, 6.917950141385916 ], [ -7.87550859214781, 6.911103014492539 ], [ -7.868015509208419, 6.906994736917568 ], [ -7.863002895866941, 6.902576401879458 ], [ -7.858403692776221, 6.893274643809775 ], [ -7.847034878057173, 6.861545315563831 ], [ -7.842745734228288, 6.855034084555371 ], [ -7.833495653001989, 6.846249091322477 ], [ -7.819129604747445, 6.843226020264638 ], [ -7.802696498944272, 6.841908271549471 ], [ -7.635626593392601, 6.844233709717912 ], [ -7.622139045180802, 6.847024236779077 ], [ -7.618056606027551, 6.899165758093261 ], [ -7.6162996077407, 6.906142076195863 ], [ -7.603793910560512, 6.929267279261524 ], [ -7.53940507718255, 6.939059962847011 ], [ -7.433881802003555, 6.939525050840416 ], [ -7.423649867947063, 6.941075344451576 ], [ -7.39522782980049, 6.948749294544314 ], [ -7.301331752658257, 6.964252224360678 ], [ -7.28774085075969, 6.963942165998162 ], [ -7.281643031800513, 6.963322048373811 ], [ -7.247743293218434, 6.955105495921885 ], [ -7.171055467335975, 6.963167018742922 ], [ -7.160616827704416, 6.962779446014622 ], [ -7.155914271826191, 6.960454006047541 ], [ -7.131367967257916, 6.943943385878526 ], [ -7.116691859741536, 6.93787140534107 ], [ -7.069666307254295, 6.929809882520033 ], [ -7.062741665095757, 6.929499823258197 ], [ -7.047962204791929, 6.907459824910973 ], [ -7.049822556765605, 6.897305406119585 ], [ -7.053646612601085, 6.892344468722229 ], [ -7.057470669335942, 6.886220811341332 ], [ -7.062018194683958, 6.875265407772361 ], [ -7.061914841896453, 6.867281399317108 ], [ -7.060157842710282, 6.859452418694161 ], [ -7.055713670149771, 6.850667426360644 ], [ -7.051992967101739, 6.845163885704721 ], [ -7.047962204791929, 6.840978095562662 ], [ -7.043414679443913, 6.838652654696261 ], [ -7.023260870592708, 6.831443793496248 ], [ -7.016956346058521, 6.826301988046282 ], [ -7.009669968694084, 6.81932566994368 ], [ -6.997009242782326, 6.803745224862212 ], [ -6.991428187760675, 6.794030056541885 ], [ -6.986984015200164, 6.782247829773496 ], [ -6.96993079267196, 6.69674917223648 ], [ -6.970550910296254, 6.690935574117418 ], [ -6.971739467802195, 6.685483710304993 ], [ -6.973599818876551, 6.680522772907636 ], [ -6.975925258843631, 6.675871893872795 ], [ -6.978147345123887, 6.662539374392622 ], [ -6.975201789331095, 6.633988145036824 ], [ -7.006466029583635, 6.586264960559447 ], [ -7.009876675168414, 6.569030869978633 ], [ -7.006517707326338, 6.565155138199032 ], [ -6.997422654831666, 6.557868760834651 ], [ -7.005174119290189, 6.557093614478731 ], [ -7.032097540668985, 6.550814928366265 ], [ -7.036903449334716, 6.548799546761643 ], [ -7.052716436614276, 6.539626979901186 ], [ -7.05509355342474, 6.537224026467641 ], [ -7.068012660855629, 6.51831045196576 ], [ -7.071423306440465, 6.514718940126954 ], [ -7.07535071506345, 6.5117733834349 ], [ -7.079691534836456, 6.509602973098708 ], [ -7.084135708296287, 6.508517768380273 ], [ -7.091060349555505, 6.505649726054003 ], [ -7.099018521387677, 6.500456243760652 ], [ -7.110283983319164, 6.490973619437 ], [ -7.115451626291531, 6.459554347754931 ], [ -7.11080074725669, 6.327288520149068 ], [ -7.097416550933076, 6.13115062130413 ], [ -7.086254441789038, 6.088465887690575 ], [ -7.081551885910812, 5.999246528004846 ], [ -7.094057583091001, 5.69060903587831 ], [ -7.399620327316256, 5.631491197360845 ], [ -7.417962620999901, 5.627756685000122 ], [ -7.431040405999909, 5.653971253000094 ], [ -7.44948889199992, 5.732364400000094 ], [ -7.448558715999866, 5.769054668000066 ], [ -7.442047484999904, 5.811274312000137 ], [ -7.446543335999905, 5.845949198000071 ], [ -7.478582722999931, 5.859875997000046 ], [ -7.481683308999948, 5.830213725000092 ], [ -7.486644246999901, 5.81380645800003 ], [ -7.494395710999925, 5.80618418400006 ], [ -7.503904174999889, 5.812101136000067 ], [ -7.50881343599994, 5.826182963000093 ], [ -7.515583048999872, 5.839231263000045 ], [ -7.531085978999897, 5.842021790000089 ], [ -7.527778686999881, 5.858842468000063 ], [ -7.53519425399989, 5.855845235000061 ], [ -7.547570759999871, 5.845432434000116 ], [ -7.559146280999897, 5.83985137900001 ], [ -7.566277627999852, 5.843727112000067 ], [ -7.579506794999929, 5.860341085000073 ], [ -7.587206583999944, 5.866774801000119 ], [ -7.579093383999918, 5.877187602000049 ], [ -7.584157673999897, 5.883698832000022 ], [ -7.605758422999884, 5.893129781000084 ], [ -7.608497273999916, 5.89369822200004 ], [ -7.629116169999918, 5.904937846000095 ], [ -7.630614786999928, 5.908606873000082 ], [ -7.648339802999942, 5.911294047000112 ], [ -7.663119262999942, 5.923102112000038 ], [ -7.674022989999912, 5.935737 ], [ -7.680482543999887, 5.940930481000066 ], [ -7.691541299999898, 5.927727153000077 ], [ -7.703220173999853, 5.907883403000085 ], [ -7.717172810999955, 5.900752055000055 ], [ -7.734949503999871, 5.925634258000116 ], [ -7.747145140999891, 5.937597352000068 ], [ -7.786625935999922, 5.958164572000058 ], [ -7.799648396999942, 5.974468486000077 ], [ -7.800681925999925, 5.98172902400006 ], [ -7.799958454999853, 6.010151062000077 ], [ -7.797736368999921, 6.014750265000117 ], [ -7.788589640999959, 6.019788717000097 ], [ -7.786470905999892, 6.025111390000049 ], [ -7.788744668999897, 6.031493429000079 ], [ -7.793860635999891, 6.034077250000081 ], [ -7.799234985999931, 6.035679220000105 ], [ -7.802438923999915, 6.039244893000088 ], [ -7.805694538999887, 6.06203420000007 ], [ -7.809673624999959, 6.071206767000064 ], [ -7.819388793999906, 6.080095113000084 ], [ -7.828380493999873, 6.080715231000056 ], [ -7.840886189999964, 6.077356262000137 ], [ -7.850498005999953, 6.072240296000047 ], [ -7.850911416999878, 6.067563578000076 ], [ -7.861815144999952, 6.081490377000065 ], [ -7.864502318999882, 6.101695862000057 ], [ -7.862021850999895, 6.124381815000021 ], [ -7.857370971999927, 6.145388286000113 ], [ -7.844141804999936, 6.1839647420001 ], [ -7.846622273999913, 6.197478130000079 ], [ -7.86212520299992, 6.216391703000113 ], [ -7.906566934999915, 6.251996765000086 ], [ -7.910029255999859, 6.256776835000082 ], [ -7.912664753999877, 6.268429871000052 ], [ -7.914370076999916, 6.271737163000054 ], [ -7.920545409999903, 6.273804219000112 ], [ -7.92522212699987, 6.272512309000064 ], [ -7.929511270999853, 6.270755310000084 ], [ -7.934885620999893, 6.271427104000068 ], [ -7.999377807999934, 6.286697489000119 ], [ -8.015707560999942, 6.297782084000033 ], [ -8.033019164999871, 6.301761169000102 ], [ -8.060097615999922, 6.301141053000052 ], [ -8.106606403999962, 6.294681499000092 ], [ -8.118285277999917, 6.289901428000093 ], [ -8.14060949799989, 6.277576599000042 ], [ -8.154355427999917, 6.274217631000027 ], [ -8.170581827999854, 6.274010926000074 ], [ -8.179056762999949, 6.276853130000049 ], [ -8.185723022999866, 6.281839905000098 ], [ -8.196575073999895, 6.288144430000017 ], [ -8.208486490999945, 6.2925369270001 ], [ -8.285975301999883, 6.310055237000071 ], [ -8.295070352999858, 6.313362529000059 ], [ -8.296568969999953, 6.317496643000084 ], [ -8.296568969999953, 6.324395447000057 ], [ -8.297705850999876, 6.33258616100008 ], [ -8.302718465999931, 6.340647685000079 ], [ -8.310004841999927, 6.344626770000062 ], [ -8.314190632999953, 6.341526184000116 ], [ -8.317497924999941, 6.336978659000081 ], [ -8.32235550999988, 6.336461894000138 ], [ -8.332949177999865, 6.345970357000027 ], [ -8.342612670999898, 6.356951599000098 ], [ -8.352947956999884, 6.361059876000112 ], [ -8.365970417999932, 6.350078634000042 ], [ -8.376564086999906, 6.354729513000095 ], [ -8.388811401999931, 6.355091247000104 ], [ -8.401058715999881, 6.35044036900004 ], [ -8.411807413999895, 6.340027568000011 ], [ -8.423692992999918, 6.351990662000063 ], [ -8.420153157999948, 6.358088481000024 ], [ -8.410980590999941, 6.363178610000091 ], [ -8.405967976999904, 6.37224782400007 ], [ -8.408241739999909, 6.379921774000053 ], [ -8.417233439999961, 6.398189392000106 ], [ -8.419042114999854, 6.407646179000082 ], [ -8.413874470999929, 6.424182638000076 ], [ -8.406484741999947, 6.430538839000093 ], [ -8.405089477999866, 6.436326599000068 ], [ -8.418266967999926, 6.451209412000111 ], [ -8.449634561999858, 6.467926737000056 ], [ -8.461210083999902, 6.482887065000028 ], [ -8.467514607999931, 6.487072856000069 ], [ -8.472372192999927, 6.478649597000071 ], [ -8.476919718999881, 6.460149435000048 ], [ -8.484774535999918, 6.441571757000091 ], [ -8.497228556999886, 6.431365662000118 ], [ -8.515625365999881, 6.437592672000022 ], [ -8.545339314999865, 6.477202657000078 ], [ -8.556501424999908, 6.487021179000052 ], [ -8.568076944999859, 6.490405985000066 ], [ -8.592106486999882, 6.489682516000073 ], [ -8.601847492999923, 6.491749572000032 ], [ -8.618719848999916, 6.492834778000116 ], [ -8.594121866999927, 6.523892314000065 ], [ -8.589367634999917, 6.526062724000056 ], [ -8.577327025999864, 6.528026429000093 ], [ -8.572727823999912, 6.530842794000051 ], [ -8.570609090999938, 6.53513193800012 ], [ -8.566113240999897, 6.549058737000095 ], [ -8.567198445999907, 6.550609029000029 ], [ -8.566113240999897, 6.5509190880001 ], [ -8.549473429999892, 6.560143331000106 ], [ -8.547147989999871, 6.560039978000091 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-09", "NAME_1": "Bas-Sassandra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.384118204999936, 5.568963522000104 ], [ -7.396675577999872, 5.585086568000079 ], [ -7.417962620999901, 5.627756685000122 ], [ -7.399620327316256, 5.631491197360845 ], [ -7.094057583091001, 5.69060903587831 ], [ -7.081551885910812, 5.999246528004846 ], [ -7.086254441789038, 6.088465887690575 ], [ -7.097416550933076, 6.13115062130413 ], [ -7.11080074725669, 6.327288520149068 ], [ -7.115451626291531, 6.459554347754931 ], [ -7.110283983319164, 6.490973619437 ], [ -7.099018521387677, 6.500456243760652 ], [ -7.091060349555505, 6.505649726054003 ], [ -7.084135708296287, 6.508517768380273 ], [ -7.079691534836456, 6.509602973098708 ], [ -7.07535071506345, 6.5117733834349 ], [ -7.071423306440465, 6.514718940126954 ], [ -7.068012660855629, 6.51831045196576 ], [ -7.05509355342474, 6.537224026467641 ], [ -7.052716436614276, 6.539626979901186 ], [ -7.036903449334716, 6.548799546761643 ], [ -7.032097540668985, 6.550814928366265 ], [ -7.005174119290189, 6.557093614478731 ], [ -6.997422654831666, 6.557868760834651 ], [ -6.963626268137773, 6.529007473116394 ], [ -6.955358038842405, 6.510998237078979 ], [ -6.95354936371217, 6.499681098304052 ], [ -6.953187629405591, 6.491438707430405 ], [ -6.95354936371217, 6.484539902794268 ], [ -6.954944626793122, 6.479501451031126 ], [ -6.957218389916761, 6.47609080634561 ], [ -6.960939092964793, 6.47361033854628 ], [ -6.970809291815385, 6.470664780954849 ], [ -6.976131965317961, 6.469657091501574 ], [ -6.981402961077777, 6.466944077906874 ], [ -6.985950487325113, 6.463275050802963 ], [ -6.990446335829745, 6.455523586344441 ], [ -6.990239631154054, 6.450020045688518 ], [ -6.969827439884455, 6.39803355580392 ], [ -6.854175584335735, 6.259540717130392 ], [ -6.839809536081248, 6.249773871067305 ], [ -6.828440721362199, 6.246673284744304 ], [ -6.684780238816984, 6.247525946365329 ], [ -6.675065069597281, 6.249618842335678 ], [ -6.664523078077593, 6.255587470085686 ], [ -6.590005661632006, 6.310984605555063 ], [ -6.581840786023463, 6.315635483690585 ], [ -6.570575324091919, 6.311372179182683 ], [ -6.520810919588257, 6.281270657115101 ], [ -6.503034226648253, 6.275689602093451 ], [ -6.485929328175985, 6.27584463082502 ], [ -6.42453772563556, 6.300752672397891 ], [ -6.399939744223843, 6.304783432909062 ], [ -6.38733069515547, 6.150839342161873 ], [ -6.374566615556887, 6.103374539203628 ], [ -6.354981248385911, 6.050070298805224 ], [ -6.335344204371552, 6.015240383337016 ], [ -6.329091355781429, 6.007773138819289 ], [ -6.323251919240704, 6.002192083797638 ], [ -6.320978156117008, 6.000331732723282 ], [ -6.320771449642677, 6.000176703092336 ], [ -6.320668096855172, 6.000099188726551 ], [ -6.307593959793394, 5.988471990689789 ], [ -6.299687465703983, 5.979144395097762 ], [ -6.294829881094131, 5.971547960270129 ], [ -6.287026739792225, 5.956639308757076 ], [ -6.283874478424423, 5.94788015394596 ], [ -6.282065802394868, 5.939896145490707 ], [ -6.277104864997511, 5.883878892396979 ], [ -6.274055954618632, 5.874473782439111 ], [ -6.2706969867765, 5.868350125058214 ], [ -6.262893846373913, 5.861916409314802 ], [ -6.258708055332477, 5.859125881354316 ], [ -6.253953822610811, 5.85323476797015 ], [ -6.248631150906874, 5.844372260371529 ], [ -6.218555467261012, 5.778123074120572 ], [ -6.160884568667939, 5.794349473449415 ], [ -6.137526820706228, 5.794892075808662 ], [ -6.1300337386661, 5.791791490384981 ], [ -6.106262579554425, 5.777037869402136 ], [ -6.102335170931383, 5.771456814380485 ], [ -6.093860236061062, 5.7528274598194 ], [ -6.072001104867127, 5.734844062203706 ], [ -6.068797165756621, 5.731097519834634 ], [ -6.066781785051376, 5.726524156064954 ], [ -6.06590328590795, 5.721485704301813 ], [ -6.067660285094064, 5.710478623889344 ], [ -6.06797034255726, 5.704509996139393 ], [ -6.066213345169729, 5.697895413242691 ], [ -6.062337611591488, 5.694562282923016 ], [ -6.057118292675057, 5.69246938695261 ], [ -6.054534471188902, 5.689368801528929 ], [ -6.051640591340231, 5.678206692384947 ], [ -6.045129360331714, 5.667328803181704 ], [ -6.039703334940953, 5.661360175431753 ], [ -6.035775926317967, 5.655701606044261 ], [ -6.032003547325871, 5.65143829973772 ], [ -6.021668259582498, 5.634824326781256 ], [ -6.022185024419343, 5.624747423254973 ], [ -6.02368364118712, 5.619683132170792 ], [ -6.025905728366695, 5.615419826763571 ], [ -6.02735266829103, 5.610536403732056 ], [ -6.027249314604205, 5.605265407972183 ], [ -6.025957404310759, 5.594077460406481 ], [ -6.023942022706194, 5.589504095737425 ], [ -6.021668259582498, 5.585395819961093 ], [ -6.019807909407518, 5.580899970557198 ], [ -6.015363735048368, 5.560565294552703 ], [ -6.012883267248981, 5.556224472981057 ], [ -6.009886033713485, 5.552426256466561 ], [ -6.003529832335914, 5.545682481461313 ], [ -5.999344041294478, 5.540023912073877 ], [ -5.995623338246446, 5.536819972963372 ], [ -5.989628872074775, 5.533409329177175 ], [ -5.979396938018283, 5.529146022870634 ], [ -5.975056118245277, 5.523952542375923 ], [ -5.972162238396606, 5.518449000820738 ], [ -5.969578416011075, 5.51480581303781 ], [ -5.953868780619757, 5.516976223374002 ], [ -5.82881181511317, 5.559480088934947 ], [ -5.743959112722905, 5.275905667112852 ], [ -5.752744105955742, 5.211981919929656 ], [ -5.833152634886176, 5.191724758290945 ], [ -5.842816128161815, 5.187538967249509 ], [ -5.851136034300566, 5.182112941858747 ], [ -5.861161260983408, 5.171725979070686 ], [ -5.864675259355749, 5.165731512899015 ], [ -5.86813757998533, 5.157902533175331 ], [ -5.872530076601777, 5.141986192209004 ], [ -5.873046841438565, 5.129738878346529 ], [ -5.859404262696557, 5.030649318910946 ], [ -5.858684318526514, 5.027692403781373 ], [ -5.971424933999913, 4.992621161000045 ], [ -5.988433397999927, 4.983872789000088 ], [ -5.995594855999911, 4.974758205000057 ], [ -6.007435675999943, 4.97524648600006 ], [ -6.059722459999932, 4.95579661700009 ], [ -6.138579881999931, 4.915228583000044 ], [ -6.412220831999946, 4.823879299000055 ], [ -6.420765753999945, 4.81712474200009 ], [ -6.426625128999945, 4.801988023000092 ], [ -6.441517706999946, 4.793931382000039 ], [ -6.54718990799995, 4.768011786000045 ], [ -6.567860480999911, 4.765570380000042 ], [ -6.583851691999939, 4.76040273600006 ], [ -6.610747850999928, 4.734767971000053 ], [ -6.626820441999939, 4.724595445000091 ], [ -6.753325975999928, 4.687323309000078 ], [ -6.853667772999927, 4.680609442000048 ], [ -6.879505988999938, 4.667914130000042 ], [ -6.903146938999953, 4.662014065000051 ], [ -6.914173956999946, 4.65570709800005 ], [ -6.942128058999913, 4.621568101000094 ], [ -6.996001756999931, 4.57648346600007 ], [ -7.058216925999943, 4.539007880000042 ], [ -7.099191860999952, 4.526516018000052 ], [ -7.173451300999943, 4.518784898000092 ], [ -7.232818162999934, 4.493312893000052 ], [ -7.245228644999941, 4.484930731000077 ], [ -7.255238410999937, 4.465521552000041 ], [ -7.266021287999934, 4.46360911700009 ], [ -7.278472459999932, 4.463771877000056 ], [ -7.288156704999949, 4.460516669000071 ], [ -7.306019660999937, 4.445461330000057 ], [ -7.359852667999917, 4.416083075000074 ], [ -7.438710089999915, 4.350978908000059 ], [ -7.456776495999918, 4.34406159100007 ], [ -7.480865037999934, 4.346136786000045 ], [ -7.524322068999936, 4.354681708000044 ], [ -7.540666124213715, 4.352844581897472 ], [ -7.573770710999895, 4.375392965000103 ], [ -7.579196736999961, 4.387149353000098 ], [ -7.577853149999896, 4.397277934000059 ], [ -7.567414509999963, 4.415933126000112 ], [ -7.564313924999908, 4.425829163000103 ], [ -7.565709187999886, 4.435208435000064 ], [ -7.572840534999926, 4.455388082000042 ], [ -7.570928506999905, 4.480709534000113 ], [ -7.572737182999902, 4.491122335000057 ], [ -7.575424356999918, 4.500346578000062 ], [ -7.576871297999929, 4.509338277000097 ], [ -7.572478800999932, 4.723356222000049 ], [ -7.576871297999929, 4.775291036000056 ], [ -7.57955847199986, 4.784282735000104 ], [ -7.585552937999893, 4.791543274000077 ], [ -7.59340775499993, 4.797434387000081 ], [ -7.601004190999987, 4.804643250000126 ], [ -7.606016804999854, 4.816192932000078 ], [ -7.605996506999958, 4.81736342500011 ], [ -7.605861775999898, 4.8251329550001 ], [ -7.600229044999878, 4.845803528000118 ], [ -7.598833780999882, 4.857094828000086 ], [ -7.605965127999923, 4.88799733500008 ], [ -7.605500039999896, 4.897428284000043 ], [ -7.574959269999908, 4.921561178000104 ], [ -7.561781778999915, 4.920165914000023 ], [ -7.553461873999879, 4.914248963000105 ], [ -7.54953446399989, 4.913887228000107 ], [ -7.549586140999907, 4.929054261000132 ], [ -7.555322224999884, 4.948432922000094 ], [ -7.564623982999905, 4.961584575000074 ], [ -7.571600300999904, 4.975382182000118 ], [ -7.570205037999926, 4.996879578000062 ], [ -7.570360066999854, 4.996879578000062 ], [ -7.578163207999893, 5.054731344000089 ], [ -7.57578609199993, 5.072068786000088 ], [ -7.563228718999909, 5.090155538000104 ], [ -7.54684728999996, 5.097700298000063 ], [ -7.529923258999872, 5.097390238000074 ], [ -7.515841430999927, 5.091809184000056 ], [ -7.488918009999935, 5.140669251000133 ], [ -7.483026895999927, 5.158239238000107 ], [ -7.482251749999904, 5.17505991600008 ], [ -7.490468302999943, 5.222188822000078 ], [ -7.479926309999883, 5.255158387000051 ], [ -7.475688842999944, 5.264227600000098 ], [ -7.468247436999917, 5.273451844000107 ], [ -7.442409219999888, 5.287378642000093 ], [ -7.439928751999929, 5.290169169000052 ], [ -7.428508259999916, 5.288153789000106 ], [ -7.430110229999855, 5.284252217000045 ], [ -7.435174519999919, 5.279291280000095 ], [ -7.434089314999937, 5.274071960000086 ], [ -7.430885375999964, 5.2675348920001 ], [ -7.430833699999937, 5.259990133000059 ], [ -7.428508259999916, 5.256140239000018 ], [ -7.418793090999884, 5.260455221000086 ], [ -7.413780476999904, 5.266708069000074 ], [ -7.410111449999903, 5.283167013000053 ], [ -7.407682657999942, 5.289859111000069 ], [ -7.395590372999976, 5.306783142000072 ], [ -7.389750935999899, 5.317144267000089 ], [ -7.38882075999993, 5.328383891000044 ], [ -7.391456257999948, 5.34768503800008 ], [ -7.396933959999927, 5.366443583000077 ], [ -7.404375366999943, 5.367993877000103 ], [ -7.414865681999913, 5.365978495000149 ], [ -7.429696818999929, 5.374298401000104 ], [ -7.439101928999889, 5.387811788000079 ], [ -7.446026570999976, 5.404916687000124 ], [ -7.449953978999929, 5.422770895000085 ], [ -7.450212361999917, 5.438713074000106 ], [ -7.436208048999902, 5.431323344000106 ], [ -7.43171219899989, 5.441917013000079 ], [ -7.43238399299986, 5.479563294000116 ], [ -7.425149291999901, 5.494161885000082 ], [ -7.413470417999918, 5.503489482000106 ], [ -7.408147745999884, 5.511783550000075 ], [ -7.409851860275126, 5.513416970217008 ], [ -7.419981648999908, 5.523126526000055 ], [ -7.413470417999918, 5.522816468000073 ], [ -7.393626668999929, 5.52397918700008 ], [ -7.407114216999901, 5.541394145000112 ], [ -7.411920125999899, 5.560359396000067 ], [ -7.405098835999866, 5.57240000400013 ], [ -7.384118204999936, 5.568963522000104 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-15", "NAME_1": "Sud-Bandama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.428316042366843, 5.098875563415594 ], [ -5.495676235999952, 5.095282294000071 ], [ -5.524810350999928, 5.099798895000049 ], [ -5.550526495999918, 5.114976304000038 ], [ -5.57843990799995, 5.094549872000073 ], [ -5.557687954999949, 5.088446356000077 ], [ -5.550526495999918, 5.087713934000078 ], [ -5.630238410999937, 5.06321849200009 ], [ -5.851307745999918, 5.029974677000041 ], [ -5.858684318526514, 5.027692403781373 ], [ -5.859404262696557, 5.030649318910946 ], [ -5.873046841438565, 5.129738878346529 ], [ -5.872530076601777, 5.141986192209004 ], [ -5.86813757998533, 5.157902533175331 ], [ -5.864675259355749, 5.165731512899015 ], [ -5.861161260983408, 5.171725979070686 ], [ -5.851136034300566, 5.182112941858747 ], [ -5.842816128161815, 5.187538967249509 ], [ -5.833152634886176, 5.191724758290945 ], [ -5.752744105955742, 5.211981919929656 ], [ -5.743959112722905, 5.275905667112852 ], [ -5.82881181511317, 5.559480088934947 ], [ -5.953868780619757, 5.516976223374002 ], [ -5.969578416011075, 5.51480581303781 ], [ -5.972162238396606, 5.518449000820738 ], [ -5.975056118245277, 5.523952542375923 ], [ -5.979396938018283, 5.529146022870634 ], [ -5.989628872074775, 5.533409329177175 ], [ -5.995623338246446, 5.536819972963372 ], [ -5.999344041294478, 5.540023912073877 ], [ -6.003529832335914, 5.545682481461313 ], [ -6.009886033713485, 5.552426256466561 ], [ -6.012883267248981, 5.556224472981057 ], [ -6.015363735048368, 5.560565294552703 ], [ -6.019807909407518, 5.580899970557198 ], [ -6.021668259582498, 5.585395819961093 ], [ -6.023942022706194, 5.589504095737425 ], [ -6.025957404310759, 5.594077460406481 ], [ -6.027249314604205, 5.605265407972183 ], [ -6.02735266829103, 5.610536403732056 ], [ -6.025905728366695, 5.615419826763571 ], [ -6.02368364118712, 5.619683132170792 ], [ -6.022185024419343, 5.624747423254973 ], [ -6.021668259582498, 5.634824326781256 ], [ -6.032003547325871, 5.65143829973772 ], [ -6.035775926317967, 5.655701606044261 ], [ -6.039703334940953, 5.661360175431753 ], [ -6.045129360331714, 5.667328803181704 ], [ -6.051640591340231, 5.678206692384947 ], [ -5.867052375266894, 5.894963487175175 ], [ -5.821163703442153, 5.936795559167706 ], [ -5.813308885296806, 5.937725735154515 ], [ -5.804110480014629, 5.940826321477516 ], [ -5.79046790217194, 5.950050564282094 ], [ -5.784835171206169, 5.95689769117547 ], [ -5.781372849677268, 5.963641466180718 ], [ -5.779925909752933, 5.982244981420763 ], [ -5.781372849677268, 6.000331732723282 ], [ -5.753777634730056, 6.05138804841971 ], [ -5.753777634730056, 6.060612291224231 ], [ -5.758738573026733, 6.081877143215593 ], [ -5.762872687224728, 6.118257351395641 ], [ -5.756878221053057, 6.139754747383677 ], [ -5.728817918112441, 6.196159573205705 ], [ -5.505213996428779, 6.166755683128258 ], [ -5.312564255735822, 6.233935045366024 ], [ -5.290653448597766, 6.23060191504635 ], [ -5.244351365623061, 6.218122056287882 ], [ -5.176086798666859, 6.153474840491469 ], [ -5.135624152232822, 6.137196764319185 ], [ -5.033098109690002, 6.125104478289018 ], [ -5.018111944710483, 6.119962672839051 ], [ -5.007776658765806, 6.110815945299635 ], [ -5.003952602930269, 6.089783637305004 ], [ -4.999250047052044, 5.966819565970184 ], [ -4.987157761921196, 5.88930491778774 ], [ -4.937703415780049, 5.795667223063901 ], [ -4.993100552148746, 5.653221137345611 ], [ -4.995167608798113, 5.644978746471963 ], [ -4.994289109654687, 5.639940293809502 ], [ -4.992273728949442, 5.635599473137177 ], [ -4.98700273318957, 5.627460435051034 ], [ -4.977804327907393, 5.609993801372809 ], [ -4.976047328721279, 5.604800319978779 ], [ -4.971603156160711, 5.583612983252578 ], [ -4.971809861735721, 5.571133124494111 ], [ -4.974186977646923, 5.557387192964597 ], [ -4.985039028428446, 5.520696926421977 ], [ -5.04829098114385, 5.369388333105064 ], [ -5.051598273041861, 5.358613795790006 ], [ -5.052683477760297, 5.35101736096243 ], [ -5.053045212966197, 5.343963528494044 ], [ -5.051288214679346, 5.320295722169817 ], [ -5.051701625829367, 5.314249579154762 ], [ -5.052735154603738, 5.308565172244869 ], [ -5.088081834009415, 5.231463935212446 ], [ -5.092681037100192, 5.225081895413155 ], [ -5.096660121667298, 5.220973618737503 ], [ -5.100690883977109, 5.217795518048717 ], [ -5.10647864367445, 5.216090195705931 ], [ -5.113713345094823, 5.216167710971092 ], [ -5.124875454238804, 5.220120958015798 ], [ -5.139138148806524, 5.231050523163105 ], [ -5.148439906876206, 5.232704169561771 ], [ -5.16203080877483, 5.232704169561771 ], [ -5.224507616033634, 5.2274848488467 ], [ -5.233964402834943, 5.223221544338799 ], [ -5.234050636127961, 5.223065271844803 ], [ -5.235829230999911, 5.225490627000056 ], [ -5.242054816999939, 5.225490627000056 ], [ -5.253041144999941, 5.214097398000092 ], [ -5.270863410999937, 5.21938711100006 ], [ -5.289906378999945, 5.227728583000044 ], [ -5.304798956999946, 5.225490627000056 ], [ -5.310943162999934, 5.225490627000056 ], [ -5.321522589999915, 5.230210679000038 ], [ -5.327259894999941, 5.226060289000088 ], [ -5.328195766999954, 5.216457424000055 ], [ -5.323963995999918, 5.204413153000075 ], [ -5.327056443999936, 5.205511786000045 ], [ -5.338286912999934, 5.211167710000041 ], [ -5.337757941999939, 5.200669664000088 ], [ -5.338286912999934, 5.19757721600007 ], [ -5.330067511999914, 5.199896552000041 ], [ -5.328521287999934, 5.196844794000071 ], [ -5.324482582305336, 5.190827121574387 ], [ -5.32600012890282, 5.191259670297541 ], [ -5.340159470683034, 5.197770901306058 ], [ -5.351321579827072, 5.205315660189569 ], [ -5.403204717823485, 5.249369819361675 ], [ -5.412196418429971, 5.254253241493871 ], [ -5.422945116423989, 5.257818914910956 ], [ -5.435657518279868, 5.259860134037922 ], [ -5.442943894744928, 5.233401801551906 ], [ -5.428316042366843, 5.098875563415594 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-01", "NAME_1": "Lagunes" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.324482582305336, 5.190827121574387 ], [ -5.323963995999918, 5.190130927000041 ], [ -5.316965298999946, 5.194159247000073 ], [ -5.311512824999909, 5.195786851000094 ], [ -5.297352667999917, 5.19757721600007 ], [ -5.297352667999917, 5.190130927000041 ], [ -5.30500240799995, 5.181626695000091 ], [ -5.32843990799995, 5.170070705000057 ], [ -5.338286912999934, 5.163478908000059 ], [ -5.338286912999934, 5.183294989000046 ], [ -5.352528449999909, 5.141831773000092 ], [ -5.359364386999914, 5.128648179000038 ], [ -5.39289303299995, 5.177069403000075 ], [ -5.400380011999914, 5.177069403000075 ], [ -5.400786912999934, 5.173976955000057 ], [ -5.400380011999914, 5.163478908000059 ], [ -5.413929816999939, 5.170314846000053 ], [ -5.398996548999946, 5.141994533000059 ], [ -5.357899542999917, 5.123521226000094 ], [ -5.30882727799991, 5.118150132000039 ], [ -5.269398566999939, 5.128648179000038 ], [ -5.28547115799995, 5.140773830000057 ], [ -5.302357550999943, 5.140448309000078 ], [ -5.320139126999948, 5.137640692000048 ], [ -5.338286912999934, 5.142320054000038 ], [ -5.338286912999934, 5.149115302000041 ], [ -5.328114386999914, 5.148504950000074 ], [ -5.319935675999943, 5.149807033000059 ], [ -5.312570766999954, 5.152573960000041 ], [ -5.304798956999946, 5.156642971000053 ], [ -5.29946855399993, 5.160956122000073 ], [ -5.286854620999918, 5.174058335000041 ], [ -5.283070441999939, 5.177069403000075 ], [ -5.268137173999946, 5.173732815000051 ], [ -5.251616990999935, 5.165432033000059 ], [ -5.235463019999941, 5.161322333000044 ], [ -5.221587693999936, 5.170314846000053 ], [ -5.209339972999942, 5.16282786700009 ], [ -5.197132941999939, 5.160142320000091 ], [ -5.186919725999928, 5.164252020000049 ], [ -5.180653449999909, 5.177069403000075 ], [ -5.198963995999918, 5.174383856000077 ], [ -5.207020636999914, 5.182440497000073 ], [ -5.213775193999936, 5.193019924000055 ], [ -5.228423631999931, 5.19757721600007 ], [ -5.228423631999931, 5.204413153000075 ], [ -5.214751756999931, 5.19757721600007 ], [ -5.181385870999918, 5.202337958000044 ], [ -5.120757615999935, 5.166978257000039 ], [ -5.094960089999915, 5.173732815000051 ], [ -5.080922003999945, 5.184759833000044 ], [ -5.067738410999937, 5.18695709800005 ], [ -5.033192511999914, 5.183294989000046 ], [ -5.029123501999948, 5.175726630000042 ], [ -5.023426886999914, 5.15851471600007 ], [ -5.014881964999915, 5.14008209800005 ], [ -5.002430792999917, 5.128648179000038 ], [ -5.255360480999911, 5.121039130000042 ], [ -5.294300910999937, 5.106024481000077 ], [ -5.428316042366843, 5.098875563415594 ], [ -5.442943894744928, 5.233401801551906 ], [ -5.435657518279868, 5.259860134037922 ], [ -5.422945116423989, 5.257818914910956 ], [ -5.412196418429971, 5.254253241493871 ], [ -5.403204717823485, 5.249369819361675 ], [ -5.351321579827072, 5.205315660189569 ], [ -5.340159470683034, 5.197770901306058 ], [ -5.32600012890282, 5.191259670297541 ], [ -5.324482582305336, 5.190827121574387 ] ] ], [ [ [ -3.538751071154717, 5.157289591019191 ], [ -3.631988084999932, 5.177069403000075 ], [ -3.678537563999953, 5.179836330000057 ], [ -3.710113084999932, 5.186102606000077 ], [ -3.718006964999915, 5.188706773000092 ], [ -3.721424933999913, 5.193833726000094 ], [ -3.719634568999936, 5.203111070000091 ], [ -3.717274542999917, 5.210191148000092 ], [ -3.718902147999927, 5.217027085000041 ], [ -3.728871222999942, 5.225490627000056 ], [ -3.721424933999913, 5.238511460000041 ], [ -3.731678839999915, 5.230047919000071 ], [ -3.739654100999928, 5.21710846600007 ], [ -3.745228644999941, 5.202704169000071 ], [ -3.748036261999914, 5.190130927000041 ], [ -3.755523240999935, 5.190130927000041 ], [ -3.767486131999931, 5.197007554000038 ], [ -3.786854620999918, 5.198960679000038 ], [ -3.827504035999937, 5.19757721600007 ], [ -3.840891079999949, 5.201157945000091 ], [ -3.885853644999941, 5.225490627000056 ], [ -3.955799933999913, 5.234564520000049 ], [ -3.987049933999913, 5.243963934000078 ], [ -4.001942511999914, 5.266506252000056 ], [ -3.983387824999909, 5.260321356000077 ], [ -3.962310350999928, 5.26243724200009 ], [ -3.943837042999917, 5.27179596600007 ], [ -3.932972785999937, 5.286932684000078 ], [ -3.918446417999917, 5.26898834800005 ], [ -3.911284959999932, 5.261867580000057 ], [ -3.902902798999946, 5.258978583000044 ], [ -3.896351691999939, 5.261542059000078 ], [ -3.893666144999941, 5.267482815000051 ], [ -3.89484615799995, 5.274481512000079 ], [ -3.899525519999941, 5.280178127000056 ], [ -3.899525519999941, 5.286932684000078 ], [ -3.885731574999909, 5.283880927000041 ], [ -3.851185675999943, 5.269761460000041 ], [ -3.844309048999946, 5.269598700000074 ], [ -3.834136522999927, 5.272853908000059 ], [ -3.811634894999941, 5.264105536000045 ], [ -3.775380011999914, 5.24477773600006 ], [ -3.777740037999934, 5.251206773000092 ], [ -3.779449022999927, 5.26117584800005 ], [ -3.782215949999909, 5.266506252000056 ], [ -3.766672329999949, 5.266058661000045 ], [ -3.739816860999952, 5.262396552000041 ], [ -3.728871222999942, 5.266506252000056 ], [ -3.715687628999945, 5.282294012000079 ], [ -3.721913214999915, 5.291001695000091 ], [ -3.734771287999934, 5.298529364000046 ], [ -3.741851365999935, 5.310532945000091 ], [ -3.753325975999928, 5.343817450000074 ], [ -3.755523240999935, 5.358343817000048 ], [ -3.758900519999941, 5.366197007000039 ], [ -3.767241990999935, 5.371527411000045 ], [ -3.778146938999953, 5.372788804000038 ], [ -3.788970506999931, 5.368841864000046 ], [ -3.795521613999938, 5.373195705000057 ], [ -3.80492102799991, 5.375962632000039 ], [ -3.813303188999953, 5.374416408000059 ], [ -3.816965298999946, 5.365464585000041 ], [ -3.814035610999952, 5.359808661000045 ], [ -3.792713995999918, 5.344631252000056 ], [ -3.767404751999948, 5.310614325000074 ], [ -3.752349412999934, 5.294582424000055 ], [ -3.73501542899993, 5.286932684000078 ], [ -3.743967251999948, 5.273993231000077 ], [ -3.759429490999935, 5.275376695000091 ], [ -3.776275193999936, 5.279038804000038 ], [ -3.788970506999931, 5.272691148000092 ], [ -3.796498175999943, 5.272691148000092 ], [ -3.808990037999934, 5.287787177000041 ], [ -3.818348761999914, 5.291693427000041 ], [ -3.828684048999946, 5.291205145000049 ], [ -3.844309048999946, 5.293158270000049 ], [ -3.854888475999928, 5.296861070000091 ], [ -3.866688605999911, 5.303615627000056 ], [ -3.875884568999936, 5.313421942000048 ], [ -3.878407355999911, 5.326646226000094 ], [ -3.883168097999942, 5.322211005000042 ], [ -3.889149542999917, 5.317775783000059 ], [ -3.891997850999928, 5.313625393000052 ], [ -3.896148240999935, 5.321844794000071 ], [ -3.898833787999934, 5.329657294000071 ], [ -3.900054490999935, 5.338039455000057 ], [ -3.899525519999941, 5.34837474200009 ], [ -3.906320766999954, 5.34837474200009 ], [ -3.907704230999911, 5.33429596600007 ], [ -3.912587042999917, 5.322211005000042 ], [ -3.920969204999949, 5.316229559000078 ], [ -3.932972785999937, 5.320461330000057 ], [ -3.940744594999956, 5.314601955000057 ], [ -3.951649542999917, 5.312933661000045 ], [ -3.96353105399993, 5.314927476000094 ], [ -3.974598761999914, 5.320461330000057 ], [ -3.997954881999931, 5.316839911000045 ], [ -4.009348110999952, 5.313625393000052 ], [ -3.999623175999943, 5.304632880000042 ], [ -3.983998175999943, 5.300930080000057 ], [ -3.96743730399993, 5.301947333000044 ], [ -3.954741990999935, 5.307440497000073 ], [ -3.940541144999941, 5.293158270000049 ], [ -3.953846808999913, 5.282904364000046 ], [ -3.97101803299995, 5.273016669000071 ], [ -3.989084438999953, 5.269110419000071 ], [ -4.005604620999918, 5.276434637000079 ], [ -4.018137173999946, 5.283636786000045 ], [ -4.040028449999909, 5.293402411000045 ], [ -4.060902472999942, 5.29954661700009 ], [ -4.070220506999931, 5.296576239000046 ], [ -4.078521287999934, 5.287787177000041 ], [ -4.096913214999915, 5.292669989000046 ], [ -4.125477667999917, 5.307440497000073 ], [ -4.138742641999954, 5.303412177000041 ], [ -4.149403449999909, 5.296576239000046 ], [ -4.160145636999914, 5.293402411000045 ], [ -4.173898891999954, 5.299994208000044 ], [ -4.179676886999914, 5.294175523000092 ], [ -4.18618730399993, 5.294094143000052 ], [ -4.193267381999931, 5.298814195000091 ], [ -4.200550910999937, 5.307440497000073 ], [ -4.227772589999915, 5.289048570000091 ], [ -4.241037563999953, 5.28392161700009 ], [ -4.255767381999931, 5.286932684000078 ], [ -4.253773566999939, 5.291489976000094 ], [ -4.250884568999936, 5.302964585000041 ], [ -4.248931443999936, 5.307440497000073 ], [ -4.274566209999932, 5.312404690000051 ], [ -4.285633917999917, 5.310532945000091 ], [ -4.297352667999917, 5.299994208000044 ], [ -4.304798956999946, 5.306830145000049 ], [ -4.313832160999937, 5.311224677000041 ], [ -4.321441209999932, 5.310980536000045 ], [ -4.327626105999911, 5.29523346600007 ], [ -4.343495245999918, 5.282619533000059 ], [ -4.351307745999918, 5.272691148000092 ], [ -4.358469204999949, 5.28001536700009 ], [ -4.370472785999937, 5.289211330000057 ], [ -4.383290167999917, 5.297023830000057 ], [ -4.392404751999948, 5.299994208000044 ], [ -4.402902798999946, 5.294338283000059 ], [ -4.413400844999956, 5.285060940000051 ], [ -4.423817511999914, 5.28156159100007 ], [ -4.43390865799995, 5.293158270000049 ], [ -4.430897589999915, 5.295396226000094 ], [ -4.429676886999914, 5.29564036700009 ], [ -4.428700324999909, 5.296372789000088 ], [ -4.426503058999913, 5.299994208000044 ], [ -4.46353105399993, 5.298244533000059 ], [ -4.477691209999932, 5.29132721600007 ], [ -4.481678839999915, 5.272691148000092 ], [ -4.472157355999911, 5.277492580000057 ], [ -4.463775193999936, 5.27610911700009 ], [ -4.457386847999942, 5.269598700000074 ], [ -4.453724738999938, 5.258978583000044 ], [ -4.472767706999946, 5.263373114000046 ], [ -4.543771938999953, 5.266506252000056 ], [ -4.547678188999953, 5.27602773600006 ], [ -4.552479620999918, 5.284491278000075 ], [ -4.563628709999932, 5.299994208000044 ], [ -4.569325324999909, 5.290432033000059 ], [ -4.569691535999937, 5.282538153000075 ], [ -4.565541144999941, 5.276516018000052 ], [ -4.557484503999945, 5.272691148000092 ], [ -4.557484503999945, 5.266506252000056 ], [ -4.575510219999956, 5.263006903000075 ], [ -4.589182094999956, 5.25657786700009 ], [ -4.612131313999953, 5.238511460000041 ], [ -4.630604620999918, 5.250555731000077 ], [ -4.651966925999943, 5.249172268000052 ], [ -4.67056230399993, 5.240708726000094 ], [ -4.680287238999938, 5.231675523000092 ], [ -4.687163865999935, 5.231675523000092 ], [ -4.693837042999917, 5.234605210000041 ], [ -4.702463344999956, 5.239894924000055 ], [ -4.710194464999915, 5.246161200000074 ], [ -4.714466925999943, 5.252183335000041 ], [ -4.702788865999935, 5.257391669000071 ], [ -4.693023240999935, 5.256252346000053 ], [ -4.682118292999917, 5.252997137000079 ], [ -4.667307094999956, 5.252183335000041 ], [ -4.669422980999911, 5.261867580000057 ], [ -4.672596808999913, 5.268052476000094 ], [ -4.678130662999934, 5.271389065000051 ], [ -4.687163865999935, 5.272691148000092 ], [ -4.687163865999935, 5.280178127000056 ], [ -4.676909959999932, 5.284816799000055 ], [ -4.670399542999917, 5.291896877000056 ], [ -4.667307094999956, 5.301459052000041 ], [ -4.667307094999956, 5.313625393000052 ], [ -4.673451300999943, 5.313625393000052 ], [ -4.68578040299991, 5.290594794000071 ], [ -4.702504035999937, 5.278306382000039 ], [ -4.723622199999909, 5.273504950000074 ], [ -4.749256964999915, 5.272691148000092 ], [ -4.722157355999911, 5.25226471600007 ], [ -4.742176886999914, 5.234564520000049 ], [ -4.779367641999954, 5.218898830000057 ], [ -4.803822394999941, 5.204413153000075 ], [ -4.810047980999911, 5.189927476000094 ], [ -4.808583136999914, 5.180487372000073 ], [ -4.799549933999913, 5.174505927000041 ], [ -4.783355272999927, 5.170314846000053 ], [ -4.765451626999948, 5.169338283000059 ], [ -4.747670050999943, 5.172349351000094 ], [ -4.737456834999932, 5.179348049000055 ], [ -4.74242102799991, 5.190130927000041 ], [ -4.74242102799991, 5.19757721600007 ], [ -4.717152472999942, 5.204413153000075 ], [ -4.704741990999935, 5.211330471000053 ], [ -4.700306769999941, 5.206732489000046 ], [ -4.695383266999954, 5.200181382000039 ], [ -4.687163865999935, 5.19757721600007 ], [ -4.674794074999909, 5.200669664000088 ], [ -4.65453040299991, 5.209418036000045 ], [ -4.639393683999913, 5.211167710000041 ], [ -4.608306443999936, 5.211167710000041 ], [ -4.598866339999915, 5.209173895000049 ], [ -4.592518683999913, 5.204779364000046 ], [ -4.58820553299995, 5.200140692000048 ], [ -4.584787563999953, 5.19757721600007 ], [ -4.569935675999943, 5.195502020000049 ], [ -4.559559699999909, 5.196966864000046 ], [ -4.536366339999915, 5.204413153000075 ], [ -4.546701626999948, 5.203192450000074 ], [ -4.55882727799991, 5.204169012000079 ], [ -4.568348761999914, 5.208726304000038 ], [ -4.571034308999913, 5.218003648000092 ], [ -4.564930792999917, 5.223211981000077 ], [ -4.530140753999945, 5.231675523000092 ], [ -4.530140753999945, 5.218003648000092 ], [ -4.522694464999915, 5.218003648000092 ], [ -4.500599738999938, 5.228705145000049 ], [ -4.44163977799991, 5.225043036000045 ], [ -4.412831183999913, 5.238511460000041 ], [ -4.408070441999939, 5.223618882000039 ], [ -4.400298631999931, 5.229681708000044 ], [ -4.392079230999911, 5.243557033000059 ], [ -4.385568813999953, 5.252183335000041 ], [ -4.367258266999954, 5.251695054000038 ], [ -4.351673956999946, 5.244370835000041 ], [ -4.337757941999939, 5.24087148600006 ], [ -4.324696417999917, 5.252183335000041 ], [ -4.305816209999932, 5.244574286000045 ], [ -4.286284959999932, 5.247870184000078 ], [ -4.26626542899993, 5.255031643000052 ], [ -4.225209113999938, 5.26235586100006 ], [ -4.199574347999942, 5.276841539000088 ], [ -4.18382727799991, 5.280178127000056 ], [ -4.060454881999931, 5.283351955000057 ], [ -4.029204881999931, 5.272691148000092 ], [ -4.038563605999911, 5.268377997000073 ], [ -4.048573370999918, 5.266180731000077 ], [ -4.059193488999938, 5.265692450000074 ], [ -4.070220506999931, 5.266506252000056 ], [ -3.995757615999935, 5.231675523000092 ], [ -4.308135545999932, 5.206203517500086 ], [ -4.620513475999928, 5.180731512000079 ], [ -4.784657355999911, 5.143947658000059 ], [ -4.875355597999942, 5.136216539000088 ], [ -4.892648891999954, 5.128648179000038 ], [ -4.903472459999932, 5.134344794000071 ], [ -4.915191209999932, 5.136379299000055 ], [ -4.969105597999942, 5.137396552000041 ], [ -4.982004360999952, 5.136135158000059 ], [ -4.982004360999952, 5.142320054000038 ], [ -4.97874915299991, 5.142564195000091 ], [ -4.972157355999911, 5.14203522300005 ], [ -4.96898352799991, 5.142320054000038 ], [ -4.96898352799991, 5.149115302000041 ], [ -4.997059699999909, 5.14874909100007 ], [ -5.003773566999939, 5.160589911000045 ], [ -5.003285285999937, 5.178778387000079 ], [ -5.009917772999927, 5.19757721600007 ], [ -4.997059699999909, 5.212795315000051 ], [ -5.009755011999914, 5.216050523000092 ], [ -5.064279751999948, 5.209214585000041 ], [ -5.082142706999946, 5.203599351000094 ], [ -5.098703579999949, 5.19476959800005 ], [ -5.112294074999909, 5.183294989000046 ], [ -5.129017706999946, 5.197699286000045 ], [ -5.157866990999935, 5.212225653000075 ], [ -5.191395636999914, 5.219224351000094 ], [ -5.221587693999936, 5.211167710000041 ], [ -5.225453253999945, 5.21548086100006 ], [ -5.232329881999931, 5.220770575000074 ], [ -5.234050636127961, 5.223065271844803 ], [ -5.233964402834943, 5.223221544338799 ], [ -5.224507616033634, 5.2274848488467 ], [ -5.16203080877483, 5.232704169561771 ], [ -5.148439906876206, 5.232704169561771 ], [ -5.139138148806524, 5.231050523163105 ], [ -5.124875454238804, 5.220120958015798 ], [ -5.113713345094823, 5.216167710971092 ], [ -5.10647864367445, 5.216090195705931 ], [ -5.100690883977109, 5.217795518048717 ], [ -5.096660121667298, 5.220973618737503 ], [ -5.092681037100192, 5.225081895413155 ], [ -5.088081834009415, 5.231463935212446 ], [ -5.052735154603738, 5.308565172244869 ], [ -5.051701625829367, 5.314249579154762 ], [ -5.051288214679346, 5.320295722169817 ], [ -5.053045212966197, 5.343963528494044 ], [ -5.052683477760297, 5.35101736096243 ], [ -5.051598273041861, 5.358613795790006 ], [ -5.04829098114385, 5.369388333105064 ], [ -4.985039028428446, 5.520696926421977 ], [ -4.974186977646923, 5.557387192964597 ], [ -4.971809861735721, 5.571133124494111 ], [ -4.971603156160711, 5.583612983252578 ], [ -4.976047328721279, 5.604800319978779 ], [ -4.977804327907393, 5.609993801372809 ], [ -4.98700273318957, 5.627460435051034 ], [ -4.992273728949442, 5.635599473137177 ], [ -4.994289109654687, 5.639940293809502 ], [ -4.995167608798113, 5.644978746471963 ], [ -4.993100552148746, 5.653221137345611 ], [ -4.937703415780049, 5.795667223063901 ], [ -4.987157761921196, 5.88930491778774 ], [ -4.999250047052044, 5.966819565970184 ], [ -5.003952602930269, 6.089783637305004 ], [ -5.007776658765806, 6.110815945299635 ], [ -5.018111944710483, 6.119962672839051 ], [ -5.033098109690002, 6.125104478289018 ], [ -5.135624152232822, 6.137196764319185 ], [ -5.176086798666859, 6.153474840491469 ], [ -5.244351365623061, 6.218122056287882 ], [ -5.214947476444877, 6.299279893152516 ], [ -5.212673713321237, 6.325660712172123 ], [ -5.214327357921263, 6.331939399183909 ], [ -5.215309210751457, 6.366769313752798 ], [ -5.197894253017353, 6.378629054886972 ], [ -5.193295049926633, 6.380747789279042 ], [ -5.187197230967456, 6.380747789279042 ], [ -5.178722296996398, 6.377001247809346 ], [ -5.02498491002558, 6.251866767037654 ], [ -5.00684648277894, 6.241557319514698 ], [ -4.973308477604178, 6.236260484433785 ], [ -4.946488409912206, 6.235640366809491 ], [ -4.936979946267513, 6.236958116423921 ], [ -4.875795050201418, 6.255122382092225 ], [ -4.867423468118545, 6.255742498817256 ], [ -4.853160772651563, 6.25450226536725 ], [ -4.837761195622704, 6.251014106315949 ], [ -4.833006964699678, 6.249231268708058 ], [ -4.824221970567521, 6.246905828740978 ], [ -4.818847622020144, 6.246053168019273 ], [ -4.809339159274771, 6.242720037699542 ], [ -4.777919887592759, 6.241092231521236 ], [ -4.749136115139606, 6.243030096961377 ], [ -4.725933396808841, 6.253262030118606 ], [ -4.701542120972135, 6.282045803471021 ], [ -4.4630037093537, 6.224013170571368 ], [ -4.659115769776975, 5.858118191001722 ], [ -4.46166012221687, 5.731097519834634 ], [ -4.437268846380164, 5.679756985096788 ], [ -4.441713018940675, 5.664460760855434 ], [ -4.432101203407797, 5.652833563717991 ], [ -4.416391567117159, 5.641800644883858 ], [ -4.369314337786477, 5.615497341129355 ], [ -4.339807094921525, 5.602552395276803 ], [ -4.307509324995351, 5.601157131296588 ], [ -3.931253221059308, 5.621620999409572 ], [ -3.920607875852795, 5.63180125572336 ], [ -3.91879920072256, 5.638855089091066 ], [ -3.918127407154145, 5.645443834465368 ], [ -3.924638638162605, 5.757865912481861 ], [ -3.904226446893006, 5.787502346556039 ], [ -3.889291957857552, 5.79427195908363 ], [ -3.881230435036571, 5.796132310157986 ], [ -3.869654913843192, 5.800783189192828 ], [ -3.857149216663004, 5.81140269597762 ], [ -3.815136278416503, 5.855250149574715 ], [ -3.741807420376176, 5.902430731692903 ], [ -3.732815720669009, 5.905686346747473 ], [ -3.724909226579541, 5.907081610727744 ], [ -3.718449673313785, 5.906151434740934 ], [ -3.467663946933612, 5.837550971000496 ], [ -3.467922329352007, 5.831039739991979 ], [ -3.465235155078346, 5.806906847473044 ], [ -3.457897100870525, 5.796132310157986 ], [ -3.446890021357433, 5.789827786523119 ], [ -3.434125941758793, 5.780293484456706 ], [ -3.418726365629254, 5.760578925177242 ], [ -3.414540574587875, 5.752284858359531 ], [ -3.415160692212169, 5.747323920062854 ], [ -3.419294806410221, 5.739107366711607 ], [ -3.430818650760159, 5.726524156064954 ], [ -3.433815884295655, 5.719082749968948 ], [ -3.439190232842975, 5.640250352172018 ], [ -3.43815670406866, 5.629940903749684 ], [ -3.434125941758793, 5.625600083976678 ], [ -3.429165005260813, 5.623016262490523 ], [ -3.425185919794387, 5.620380764160927 ], [ -3.422137010314771, 5.616350001851117 ], [ -3.419966599978636, 5.611854153346485 ], [ -3.418209600792466, 5.603327542532043 ], [ -3.413145310607604, 5.558782456944812 ], [ -3.410664841908954, 5.550953477221185 ], [ -3.408597785259587, 5.546535142183075 ], [ -3.406892462916858, 5.541341660788987 ], [ -3.406892462916858, 5.533409329177175 ], [ -3.408236050053688, 5.523487454382519 ], [ -3.417434455335865, 5.496641547369506 ], [ -3.435986293732469, 5.454912828164481 ], [ -3.4389318513239, 5.444034938961238 ], [ -3.439603643992996, 5.420289618271227 ], [ -3.432575649046953, 5.348924464992081 ], [ -3.440585495923926, 5.304379381203489 ], [ -3.440585495923926, 5.298643297450212 ], [ -3.440017056042336, 5.2929847271634 ], [ -3.438776820793635, 5.287868761034474 ], [ -3.43701982340616, 5.283192043577913 ], [ -3.434280972289059, 5.279161282167422 ], [ -3.431128709122618, 5.275595607851017 ], [ -3.412163458676673, 5.259860134037922 ], [ -3.408856166778662, 5.256216946255051 ], [ -3.406013962874113, 5.25231537515441 ], [ -3.404101934956316, 5.247819525750515 ], [ -3.402706671875421, 5.242936102718943 ], [ -3.402293259826081, 5.237200018965666 ], [ -3.427666387593717, 5.215004990987552 ], [ -3.538615688163475, 5.157359930816142 ], [ -3.538751071154717, 5.157289591019191 ] ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-02", "NAME_1": "Haut-Sassandra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.05488684695041, 7.608993232351793 ], [ -7.061604784433257, 7.61801076958136 ], [ -7.072560187102965, 7.661832383857416 ], [ -7.079123094055547, 7.67790375445469 ], [ -7.073955451083236, 7.687102158837547 ], [ -7.07131995275364, 7.69720490258419 ], [ -7.070803187916795, 7.708082790888056 ], [ -7.071630011116156, 7.719477444028826 ], [ -7.047652147328733, 7.744462999068162 ], [ -7.025637987403229, 7.757666327339109 ], [ -6.997215949256656, 7.764100043082522 ], [ -6.630416633021184, 7.785597439070557 ], [ -6.481691860291107, 7.742680162359591 ], [ -6.458850877166242, 7.740974840016861 ], [ -6.428723516676939, 7.742370103097755 ], [ -6.279585333696218, 7.777975164921884 ], [ -6.248837855582565, 7.776734931471879 ], [ -6.236745571351037, 7.750199082821382 ], [ -6.225376755732725, 7.731285509218878 ], [ -6.223413051870864, 7.726453762131428 ], [ -6.221914435103088, 7.721027736740666 ], [ -6.218348760786682, 7.690151069216483 ], [ -6.213904588226171, 7.684414985463206 ], [ -6.204809535731499, 7.678213812817205 ], [ -6.166930710783674, 7.662530014948231 ], [ -6.140369024610777, 7.654313463395624 ], [ -6.123574185400344, 7.643461411714782 ], [ -6.105745814717579, 7.618398342309661 ], [ -6.300772671321738, 7.511247260052983 ], [ -6.314415249164426, 7.50021434211817 ], [ -6.325163947158444, 7.477967638195935 ], [ -6.332346970836056, 7.452672023894763 ], [ -6.344852668016244, 7.429469306463318 ], [ -6.397976040361982, 7.349629218313737 ], [ -6.445776740104463, 7.254828802707038 ], [ -6.443554652924888, 7.233951524343354 ], [ -6.420713669800023, 7.242710680053847 ], [ -6.409758267130314, 7.248705146225518 ], [ -6.397200894006062, 7.252503362739958 ], [ -6.387847459092995, 7.251263129289953 ], [ -6.378390672291687, 7.243330796778821 ], [ -6.371000942139801, 7.235191758692679 ], [ -6.364851447236504, 7.226897690975647 ], [ -6.358340216227987, 7.221833400790786 ], [ -6.349296840576756, 7.217957668111865 ], [ -6.334414028384685, 7.217260037021106 ], [ -6.300772671321738, 7.211136378740889 ], [ -6.273694220312052, 7.210826321277693 ], [ -6.25317867715421, 7.212919216348723 ], [ -6.232869838672116, 7.217957668111865 ], [ -6.226668666925434, 7.232091173268998 ], [ -6.224446579745859, 7.247361558189368 ], [ -6.224653286220189, 7.275783596335884 ], [ -6.223568080602433, 7.281287136092431 ], [ -6.220519172022193, 7.285085354405567 ], [ -6.211010708377501, 7.288883571819383 ], [ -6.204912889418324, 7.289813747806193 ], [ -6.191373664363141, 7.290123806168708 ], [ -6.17183997223691, 7.288108425463463 ], [ -6.127243210705615, 7.276920477897704 ], [ -6.119440070303028, 7.266688543841212 ], [ -6.114582484793857, 7.253200994730093 ], [ -6.112205368882655, 7.249015203688714 ], [ -6.108691372309011, 7.245733751111686 ], [ -6.102386846875504, 7.242478136057116 ], [ -6.076031867176937, 7.232866318725598 ], [ -6.030349900927206, 7.208500881310613 ], [ -6.018464321371368, 7.203694973544202 ], [ -5.999654099656993, 7.189096381292927 ], [ -5.996346807758982, 7.187623602946928 ], [ -5.97143876798475, 7.184212958261412 ], [ -5.931854620694196, 7.165351059703653 ], [ -5.94255164184483, 7.153103745841179 ], [ -5.945187140174369, 7.148917954799742 ], [ -5.947202520879671, 7.141244004707062 ], [ -5.954695603819061, 7.138143419283381 ], [ -5.967924771411106, 7.13558543531957 ], [ -5.996398484602366, 7.133156643464304 ], [ -6.018360967684544, 7.129358425151167 ], [ -6.198401659309127, 7.013758246445889 ], [ -6.211114061165006, 7.000425726965716 ], [ -6.216436732868942, 6.983424181280952 ], [ -6.218658820048518, 6.966293443487587 ], [ -6.219899054397843, 6.931825263225278 ], [ -6.217780320905092, 6.911826484005019 ], [ -6.212044237151815, 6.889476427295278 ], [ -6.175560675284942, 6.815139878902301 ], [ -6.173441941792191, 6.798396714736612 ], [ -6.173028529742851, 6.764471136833492 ], [ -6.165070359709318, 6.727625841559302 ], [ -6.126313034718805, 6.676181952235311 ], [ -6.091586472937365, 6.628381252492773 ], [ -6.095410528772902, 6.604041653499507 ], [ -6.0887959458762, 6.569728501968768 ], [ -6.040788539659388, 6.519757391890096 ], [ -6.051123827402705, 6.459476834288466 ], [ -6.059908819736222, 6.434749660768205 ], [ -6.083990037210469, 6.388576768103349 ], [ -6.092154913718275, 6.377957262217876 ], [ -6.098562791039967, 6.373668118388935 ], [ -6.106314256397809, 6.378887437305366 ], [ -6.124711066062844, 6.388576768103349 ], [ -6.129568650672695, 6.390592148808594 ], [ -6.134581264913436, 6.391677354426349 ], [ -6.139387172679903, 6.391212266432944 ], [ -6.143572963721283, 6.388964341730968 ], [ -6.201812303095323, 6.340466009998352 ], [ -6.210804001903171, 6.33558258696678 ], [ -6.221604376740629, 6.333412177529965 ], [ -6.27188554518176, 6.336977850947051 ], [ -6.286096563805359, 6.33503998550691 ], [ -6.303408168752014, 6.3310092231971 ], [ -6.333793910760392, 6.318348497285285 ], [ -6.370432502258154, 6.308581651222198 ], [ -6.399939744223843, 6.304783432909062 ], [ -6.42453772563556, 6.300752672397891 ], [ -6.485929328175985, 6.27584463082502 ], [ -6.503034226648253, 6.275689602093451 ], [ -6.520810919588257, 6.281270657115101 ], [ -6.570575324091919, 6.311372179182683 ], [ -6.581840786023463, 6.315635483690585 ], [ -6.590005661632006, 6.310984605555063 ], [ -6.664523078077593, 6.255587470085686 ], [ -6.675065069597281, 6.249618842335678 ], [ -6.684780238816984, 6.247525946365329 ], [ -6.828440721362199, 6.246673284744304 ], [ -6.839809536081248, 6.249773871067305 ], [ -6.854175584335735, 6.259540717130392 ], [ -6.969827439884455, 6.39803355580392 ], [ -6.990239631154054, 6.450020045688518 ], [ -6.990446335829745, 6.455523586344441 ], [ -6.985950487325113, 6.463275050802963 ], [ -6.981402961077777, 6.466944077906874 ], [ -6.976131965317961, 6.469657091501574 ], [ -6.970809291815385, 6.470664780954849 ], [ -6.960939092964793, 6.47361033854628 ], [ -6.957218389916761, 6.47609080634561 ], [ -6.954944626793122, 6.479501451031126 ], [ -6.95354936371217, 6.484539902794268 ], [ -6.953187629405591, 6.491438707430405 ], [ -6.95354936371217, 6.499681098304052 ], [ -6.955358038842405, 6.510998237078979 ], [ -6.963626268137773, 6.529007473116394 ], [ -6.997422654831666, 6.557868760834651 ], [ -7.006517707326338, 6.565155138199032 ], [ -7.009876675168414, 6.569030869978633 ], [ -7.006466029583635, 6.586264960559447 ], [ -6.975201789331095, 6.633988145036824 ], [ -6.978147345123887, 6.662539374392622 ], [ -6.975925258843631, 6.675871893872795 ], [ -6.973599818876551, 6.680522772907636 ], [ -6.971739467802195, 6.685483710304993 ], [ -6.970550910296254, 6.690935574117418 ], [ -6.96993079267196, 6.69674917223648 ], [ -6.986984015200164, 6.782247829773496 ], [ -6.991428187760675, 6.794030056541885 ], [ -6.997009242782326, 6.803745224862212 ], [ -7.009669968694084, 6.81932566994368 ], [ -7.016956346058521, 6.826301988046282 ], [ -7.023260870592708, 6.831443793496248 ], [ -7.043414679443913, 6.838652654696261 ], [ -7.047962204791929, 6.840978095562662 ], [ -7.051992967101739, 6.845163885704721 ], [ -7.055713670149771, 6.850667426360644 ], [ -7.060157842710282, 6.859452418694161 ], [ -7.061914841896453, 6.867281399317108 ], [ -7.062018194683958, 6.875265407772361 ], [ -7.057470669335942, 6.886220811341332 ], [ -7.053646612601085, 6.892344468722229 ], [ -7.049822556765605, 6.897305406119585 ], [ -7.047962204791929, 6.907459824910973 ], [ -7.062741665095757, 6.929499823258197 ], [ -7.064757045801059, 6.950067043259423 ], [ -7.064808721745123, 6.961229153302781 ], [ -7.060106166766218, 6.9928034528171 ], [ -7.042587856244552, 7.049750880998374 ], [ -7.039280565245917, 7.063884386155507 ], [ -7.040675828326812, 7.079051418288316 ], [ -7.079123094055547, 7.170802924415398 ], [ -7.078554653274637, 7.181396592778526 ], [ -7.071630011116156, 7.215477200312534 ], [ -7.07416215665819, 7.224804795904618 ], [ -7.078554653274637, 7.23542430268941 ], [ -7.080466681192377, 7.246483059045943 ], [ -7.075402391007572, 7.257076728308334 ], [ -7.069252896104274, 7.274440009199054 ], [ -7.07111324717863, 7.298960476244986 ], [ -7.080311651561487, 7.348854071058497 ], [ -7.084445766658803, 7.359396064376881 ], [ -7.085324265802228, 7.366010647273527 ], [ -7.083205532309478, 7.372056790288639 ], [ -7.078502977330572, 7.3747698020847 ], [ -7.07380042235161, 7.376604316535975 ], [ -7.068529424793155, 7.385363471347091 ], [ -7.061708136321442, 7.393192450171398 ], [ -7.05488684695041, 7.402959296234542 ], [ -7.051786260627409, 7.41409556695686 ], [ -7.042587856244552, 7.427919012852158 ], [ -7.023105840961819, 7.434559434170524 ], [ -7.005897589701988, 7.445540676161272 ], [ -7.003417121003338, 7.472464098439389 ], [ -7.007499559257269, 7.478355210924235 ], [ -7.020987108368388, 7.486158352226141 ], [ -7.023880988217059, 7.489827379330052 ], [ -7.022847459442687, 7.495770167759019 ], [ -7.020470342632223, 7.498509018876121 ], [ -7.018093227620341, 7.500343533327396 ], [ -7.017059698846026, 7.503495794695141 ], [ -7.018093227620341, 7.513727728751689 ], [ -7.023880988217059, 7.53762807907259 ], [ -7.015251023715791, 7.550573024925143 ], [ -6.997422654831666, 7.55881541579879 ], [ -6.982591518583718, 7.569279892952693 ], [ -6.982901576946233, 7.589149481863103 ], [ -6.99091142382315, 7.59542816797557 ], [ -7.012615526285515, 7.59814118157027 ], [ -7.021813930668372, 7.615762843980065 ], [ -7.032976039812411, 7.615762843980065 ], [ -7.05488684695041, 7.608993232351793 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-16", "NAME_1": "Agnéby" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.146588914346921, 6.23424510282922 ], [ -4.144780239216686, 6.248456122352138 ], [ -4.144986944791697, 6.261323553838906 ], [ -4.146433884716032, 6.266852932017173 ], [ -4.150567999813347, 6.276387234083586 ], [ -4.155322230736374, 6.297807114806517 ], [ -4.154185350073874, 6.308194078493898 ], [ -4.154340378805443, 6.319356186738617 ], [ -4.153048467612678, 6.330699163935265 ], [ -4.153048467612678, 6.33674530695032 ], [ -4.15583899557322, 6.35413442626276 ], [ -4.156149053935678, 6.360490626741012 ], [ -4.155425584423199, 6.373125515130425 ], [ -4.150567999813347, 6.39570811583684 ], [ -4.142248093674596, 6.414880071857795 ], [ -4.136718716395649, 6.423019110843256 ], [ -4.111397263672814, 6.450485134581299 ], [ -4.107108119843872, 6.458391627771391 ], [ -4.104420945570212, 6.465626329191707 ], [ -4.103232388064271, 6.470819809686475 ], [ -4.09765133304262, 6.476943467966635 ], [ -4.088659634234716, 6.483454698075832 ], [ -4.034399380327159, 6.501541449378351 ], [ -3.774880336658214, 6.627141018143448 ], [ -3.768989224173367, 6.615901393734305 ], [ -3.756070115843158, 6.620164700040846 ], [ -3.741704066689351, 6.622722683105337 ], [ -3.719483202088099, 6.622257595111932 ], [ -3.714367235059854, 6.622722683105337 ], [ -3.699949509961925, 6.639414171326905 ], [ -3.690441047216552, 6.644685167086777 ], [ -3.68020911316006, 6.636391099369746 ], [ -3.678038702823869, 6.623471991039537 ], [ -3.685790168181711, 6.59445567548903 ], [ -3.686410284906742, 6.581769111155552 ], [ -3.682586229071205, 6.575128688937809 ], [ -3.670080531891017, 6.565465196561547 ], [ -3.665946417693021, 6.561279405520111 ], [ -3.663569301781877, 6.553682969793215 ], [ -3.660778773821391, 6.537120672780816 ], [ -3.656024542898365, 6.530247708365039 ], [ -3.651425339807588, 6.520584215089457 ], [ -3.645482549579981, 6.47531565998969 ], [ -3.647652960815492, 6.468597724305539 ], [ -3.652613898212849, 6.462913316496326 ], [ -3.657523158766764, 6.458314114304926 ], [ -3.65974524594634, 6.454825955253625 ], [ -3.65860836438452, 6.447229519526672 ], [ -3.656024542898365, 6.441493434874133 ], [ -3.653440721412153, 6.437307643832696 ], [ -3.652303839850333, 6.434336248718864 ], [ -3.648169724753018, 6.427902532975509 ], [ -3.628429327951153, 6.408343004226253 ], [ -3.621866420998515, 6.404234727550602 ], [ -3.611324428579508, 6.35583974950481 ], [ -3.590137090953988, 6.359095364559437 ], [ -3.571378546982373, 6.352997544700941 ], [ -3.555358853228483, 6.353462632694345 ], [ -3.542439743999012, 6.376303615819211 ], [ -3.50073686411497, 6.329768987948398 ], [ -3.477947556934225, 6.296437690147286 ], [ -3.463478155892176, 6.255794176560016 ], [ -3.456760220208025, 6.246311550437667 ], [ -3.458207160132361, 6.240885525046906 ], [ -3.47784420414672, 6.239154364282456 ], [ -3.483528611955876, 6.23522695655879 ], [ -3.481358201619742, 6.227010403207544 ], [ -3.47650061700989, 6.219543157790497 ], [ -3.471332974037523, 6.216416733945096 ], [ -3.464408331879042, 6.205771388738583 ], [ -3.45893062964484, 6.194454250862975 ], [ -3.460480923256, 6.190733546915624 ], [ -3.449163783581753, 6.189415798200514 ], [ -3.444151170240332, 6.205823066481344 ], [ -3.433195766671304, 6.211817531753695 ], [ -3.420276659240415, 6.205306300745178 ], [ -3.403585171018847, 6.17086395890459 ], [ -3.395627000085994, 6.162802436083552 ], [ -3.392216356299798, 6.112211209279849 ], [ -3.398572556778106, 6.099989732040513 ], [ -3.411956753101663, 6.091385605960909 ], [ -3.424204066964137, 6.080404363970217 ], [ -3.426994594924622, 6.060999863952532 ], [ -3.421103480641136, 6.063687039125568 ], [ -3.405290493361576, 6.067821153323564 ], [ -3.407357550010943, 6.063221951132107 ], [ -3.410664841908954, 6.052085680409789 ], [ -3.412731898558263, 6.047357286109843 ], [ -3.396557176072804, 6.038339748880276 ], [ -3.386066859597918, 6.021829127811998 ], [ -3.384619919673582, 6.001701158281833 ], [ -3.395627000085994, 5.981857407793143 ], [ -3.404877082211556, 5.976973984761571 ], [ -3.41521236815629, 5.974958604056326 ], [ -3.423532274295042, 5.971237901008294 ], [ -3.426994594924622, 5.961393541478742 ], [ -3.427821418123983, 5.948345241939364 ], [ -3.430301885923313, 5.937338162426215 ], [ -3.462651332692872, 5.87537811910488 ], [ -3.466785447790187, 5.857730618273422 ], [ -3.467663946933612, 5.837550971000496 ], [ -3.718449673313785, 5.906151434740934 ], [ -3.724909226579541, 5.907081610727744 ], [ -3.732815720669009, 5.905686346747473 ], [ -3.741807420376176, 5.902430731692903 ], [ -3.815136278416503, 5.855250149574715 ], [ -3.857149216663004, 5.81140269597762 ], [ -3.869654913843192, 5.800783189192828 ], [ -3.881230435036571, 5.796132310157986 ], [ -3.889291957857552, 5.79427195908363 ], [ -3.904226446893006, 5.787502346556039 ], [ -3.924638638162605, 5.757865912481861 ], [ -3.918127407154145, 5.645443834465368 ], [ -3.91879920072256, 5.638855089091066 ], [ -3.920607875852795, 5.63180125572336 ], [ -3.931253221059308, 5.621620999409572 ], [ -4.307509324995351, 5.601157131296588 ], [ -4.339807094921525, 5.602552395276803 ], [ -4.369314337786477, 5.615497341129355 ], [ -4.416391567117159, 5.641800644883858 ], [ -4.432101203407797, 5.652833563717991 ], [ -4.441713018940675, 5.664460760855434 ], [ -4.437268846380164, 5.679756985096788 ], [ -4.46166012221687, 5.731097519834634 ], [ -4.659115769776975, 5.858118191001722 ], [ -4.4630037093537, 6.224013170571368 ], [ -4.432101203407797, 6.276077174821751 ], [ -4.427760381836151, 6.278867702782236 ], [ -4.42217932771382, 6.279487820406587 ], [ -4.415047979980272, 6.274371853378341 ], [ -4.411120571357287, 6.2697209743435 ], [ -4.408278368352001, 6.264424140161907 ], [ -4.40424760604219, 6.254734809363924 ], [ -4.401095342875806, 6.251169135047519 ], [ -4.397374639827774, 6.247836004727844 ], [ -4.38378373882847, 6.240859687524562 ], [ -4.359185757416753, 6.224555772031238 ], [ -4.351692673578043, 6.217967027556256 ], [ -4.347610236223431, 6.215098985229986 ], [ -4.341254034845861, 6.212127590116154 ], [ -4.307767707413802, 6.204221096026743 ], [ -4.274591437444883, 6.192671414154404 ], [ -4.253094040557528, 6.188098049485404 ], [ -4.248236456846996, 6.185385036790024 ], [ -4.22653235528395, 6.190190945455754 ], [ -4.146588914346921, 6.23424510282922 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-11", "NAME_1": "N'zi-Comoé" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.774880336658214, 6.627141018143448 ], [ -4.034399380327159, 6.501541449378351 ], [ -4.088659634234716, 6.483454698075832 ], [ -4.09765133304262, 6.476943467966635 ], [ -4.103232388064271, 6.470819809686475 ], [ -4.104420945570212, 6.465626329191707 ], [ -4.107108119843872, 6.458391627771391 ], [ -4.111397263672814, 6.450485134581299 ], [ -4.136718716395649, 6.423019110843256 ], [ -4.142248093674596, 6.414880071857795 ], [ -4.150567999813347, 6.39570811583684 ], [ -4.155425584423199, 6.373125515130425 ], [ -4.156149053935678, 6.360490626741012 ], [ -4.15583899557322, 6.35413442626276 ], [ -4.153048467612678, 6.33674530695032 ], [ -4.153048467612678, 6.330699163935265 ], [ -4.154340378805443, 6.319356186738617 ], [ -4.154185350073874, 6.308194078493898 ], [ -4.155322230736374, 6.297807114806517 ], [ -4.150567999813347, 6.276387234083586 ], [ -4.146433884716032, 6.266852932017173 ], [ -4.144986944791697, 6.261323553838906 ], [ -4.144780239216686, 6.248456122352138 ], [ -4.146588914346921, 6.23424510282922 ], [ -4.22653235528395, 6.190190945455754 ], [ -4.248236456846996, 6.185385036790024 ], [ -4.253094040557528, 6.188098049485404 ], [ -4.274591437444883, 6.192671414154404 ], [ -4.307767707413802, 6.204221096026743 ], [ -4.341254034845861, 6.212127590116154 ], [ -4.347610236223431, 6.215098985229986 ], [ -4.351692673578043, 6.217967027556256 ], [ -4.359185757416753, 6.224555772031238 ], [ -4.38378373882847, 6.240859687524562 ], [ -4.397374639827774, 6.247836004727844 ], [ -4.401095342875806, 6.251169135047519 ], [ -4.40424760604219, 6.254734809363924 ], [ -4.408278368352001, 6.264424140161907 ], [ -4.411120571357287, 6.2697209743435 ], [ -4.415047979980272, 6.274371853378341 ], [ -4.42217932771382, 6.279487820406587 ], [ -4.427760381836151, 6.278867702782236 ], [ -4.432101203407797, 6.276077174821751 ], [ -4.4630037093537, 6.224013170571368 ], [ -4.701542120972135, 6.282045803471021 ], [ -4.695030889963618, 6.284138699441428 ], [ -4.694204066764257, 6.288169459952599 ], [ -4.696994594724799, 6.296153469307171 ], [ -4.699733445841844, 6.301837877116327 ], [ -4.703815884095775, 6.305326036167628 ], [ -4.708880174280637, 6.305713608895928 ], [ -4.719215461124634, 6.304163316184088 ], [ -4.723349575322629, 6.305326036167628 ], [ -4.724589809672011, 6.308581651222198 ], [ -4.715443081233218, 6.328218695236558 ], [ -4.711877406916813, 6.331319281559558 ], [ -4.707743292718817, 6.336047674960241 ], [ -4.704746060082641, 6.343954169049653 ], [ -4.702058884909604, 6.359017849294275 ], [ -4.699061652273429, 6.366691799387013 ], [ -4.698028122599794, 6.373513087858726 ], [ -4.699630093054338, 6.378784084517861 ], [ -4.709862026211567, 6.388344224106618 ], [ -4.710533819779982, 6.391677354426349 ], [ -4.705469529595121, 6.394545395853299 ], [ -4.701955532122099, 6.397258409448 ], [ -4.70164547375964, 6.400669054133516 ], [ -4.705366176807615, 6.402296861211141 ], [ -4.716528285951654, 6.402839464469707 ], [ -4.72107581219899, 6.405087389171683 ], [ -4.722729457698335, 6.409919135359814 ], [ -4.722109340973304, 6.419220893429497 ], [ -4.722936164172665, 6.425267035545232 ], [ -4.728000454357471, 6.429375312220884 ], [ -4.733374802904848, 6.43084809056694 ], [ -4.737405565214658, 6.433664456049769 ], [ -4.738232388414019, 6.437772731826101 ], [ -4.735028449303513, 6.442966213220132 ], [ -4.731514451830492, 6.443896389206998 ], [ -4.728517218294996, 6.447694607520134 ], [ -4.728982306288401, 6.455601100710226 ], [ -4.734304978891657, 6.471749986572604 ], [ -4.739679328338354, 6.478881334306095 ], [ -4.745777147297531, 6.482989610082427 ], [ -4.76117672432639, 6.486942857127133 ], [ -4.766189337667811, 6.486167710771213 ], [ -4.775749478155888, 6.482291978092292 ], [ -4.780813768340749, 6.480741685380451 ], [ -4.786291469675575, 6.480431627017936 ], [ -4.790787319079527, 6.483144639713316 ], [ -4.793836228559087, 6.488803209100809 ], [ -4.793112759046608, 6.502704169361891 ], [ -4.791355759860437, 6.513943792871714 ], [ -4.786911587299926, 6.529240017113068 ], [ -4.785568000163096, 6.544200344570243 ], [ -4.78391435376443, 6.548489488399184 ], [ -4.778074917223648, 6.550814928366265 ], [ -4.762468633720459, 6.548231105980733 ], [ -4.758179490790894, 6.550194809842594 ], [ -4.755957403611319, 6.554070543420835 ], [ -4.757869432428379, 6.561666978248411 ], [ -4.76060828264616, 6.566550401279983 ], [ -4.76272701703823, 6.571666368308229 ], [ -4.763553840237535, 6.581071479165416 ], [ -4.765930955249416, 6.584714666948287 ], [ -4.769341599934876, 6.587660224539718 ], [ -4.768514776735572, 6.59138092668843 ], [ -4.76613766082437, 6.594791571373889 ], [ -4.740196092275824, 6.601147772751517 ], [ -4.809029100012992, 6.626210842156638 ], [ -4.813369919785998, 6.626443386153312 ], [ -4.818124151608345, 6.625358181434933 ], [ -4.823085089904964, 6.625048123072418 ], [ -4.837037726110168, 6.627993678865153 ], [ -4.84189531072002, 6.627528590871748 ], [ -4.84711463143509, 6.626520901418473 ], [ -4.851817186414053, 6.624428005448067 ], [ -4.856158006187059, 6.621792507118471 ], [ -4.863754441913954, 6.615591335371846 ], [ -4.867940232955391, 6.613188381038924 ], [ -4.873159551871822, 6.611870632323814 ], [ -4.885406866633616, 6.611173001232999 ], [ -4.890884568867762, 6.610320338712654 ], [ -4.894450243184167, 6.607684841282378 ], [ -4.895483771059219, 6.603783271081056 ], [ -4.895328742327592, 6.599132392046272 ], [ -4.896465622990092, 6.594636541743 ], [ -4.899979621362434, 6.59215607304435 ], [ -4.905043910647976, 6.59176850031605 ], [ -4.910418260094616, 6.592621161037755 ], [ -4.916309372579462, 6.595101629736405 ], [ -4.921477017350469, 6.599985052767977 ], [ -4.927109748316241, 6.607839870913324 ], [ -4.92705807057348, 6.617451687345465 ], [ -4.924939337980049, 6.620319728772472 ], [ -4.921838751657049, 6.622567654373711 ], [ -4.920856898826855, 6.626365871787527 ], [ -4.921373663663644, 6.631430161972389 ], [ -4.923078986006431, 6.636158556272335 ], [ -4.926024542698485, 6.639646715323636 ], [ -4.932122361657662, 6.641119492770372 ], [ -4.938633591766859, 6.644297594358477 ], [ -4.951345993622738, 6.658560288926196 ], [ -4.954033168795718, 6.665329902353108 ], [ -4.953206345596357, 6.67749970095042 ], [ -4.947418585899015, 6.689385281405578 ], [ -4.94462805793853, 6.701012478543021 ], [ -4.94194088366487, 6.705430813581188 ], [ -4.941217414152334, 6.710081691716709 ], [ -4.943697881951721, 6.715921129156754 ], [ -4.953826463220707, 6.722819931994252 ], [ -4.961629605421933, 6.729951279727743 ], [ -4.96715898270088, 6.733749498040879 ], [ -4.971603156160711, 6.748193061560528 ], [ -4.959149135823964, 6.788604031151124 ], [ -4.955273403145043, 6.81203929347862 ], [ -4.955170050357538, 6.816380113251626 ], [ -4.954033168795718, 6.821418565014767 ], [ -4.931398892145182, 6.832916570942984 ], [ -4.923337368424825, 6.828937486375878 ], [ -4.918789842177489, 6.827955634444947 ], [ -4.911141729607152, 6.827955634444947 ], [ -4.819674445219505, 6.869296780022353 ], [ -4.810889451986611, 6.874257717419709 ], [ -4.807168748039317, 6.877823390836795 ], [ -4.803603074622231, 6.882422593927572 ], [ -4.80107092908014, 6.889631456026848 ], [ -4.801484341129424, 6.89699534775707 ], [ -4.807633836032721, 6.911361396011614 ], [ -4.808719040751157, 6.918105170117485 ], [ -4.808202276813631, 6.925003973854302 ], [ -4.801587693916929, 6.940196845308151 ], [ -4.800037401205088, 6.947509060194932 ], [ -4.799417283580794, 6.953245143948209 ], [ -4.808408983287961, 6.977067979004005 ], [ -4.817504034883314, 6.999185491717071 ], [ -4.817865770089213, 7.000580755697285 ], [ -4.81822750529517, 7.005154120366342 ], [ -4.817400682095808, 7.010347601760373 ], [ -4.814816859710334, 7.015231024791944 ], [ -4.80143266428604, 7.027504177076082 ], [ -4.770581834284258, 7.076131700017925 ], [ -4.767894660010541, 7.085846869237628 ], [ -4.759523077927724, 7.104527899742777 ], [ -4.708363410343111, 7.269169013439182 ], [ -4.708931851124021, 7.280667019367456 ], [ -4.731617803718677, 7.406111558501607 ], [ -4.730480923056177, 7.416653550920614 ], [ -4.725830044021336, 7.426833808133722 ], [ -4.709396938218106, 7.436368110200135 ], [ -4.696581182675459, 7.442336737050766 ], [ -4.670639614126912, 7.449106350477678 ], [ -4.632088995610673, 7.448951320846788 ], [ -4.634621141152763, 7.464066677035532 ], [ -4.636946580220524, 7.470267848782157 ], [ -4.661027797694715, 7.516208197450339 ], [ -4.639685431337568, 7.5420464141107 ], [ -4.614208949883164, 7.55997813578233 ], [ -4.608627895760776, 7.564861557914526 ], [ -4.598292608916779, 7.57617869668951 ], [ -4.588784146171406, 7.589382025859777 ], [ -4.583564826355655, 7.595195623978839 ], [ -4.577932095389883, 7.599381415020275 ], [ -4.572196010737287, 7.601551825356466 ], [ -4.566046514934726, 7.60217194298076 ], [ -4.559845343188044, 7.601706854987356 ], [ -4.528012661255332, 7.593257758538698 ], [ -4.52181148860933, 7.593025214542024 ], [ -4.516902228055415, 7.598993842291975 ], [ -4.514111700994192, 7.610078437070229 ], [ -4.529407925235546, 7.728184922895878 ], [ -4.532353481028338, 7.738726915314885 ], [ -4.534937303413813, 7.744462999068162 ], [ -4.536384243338148, 7.761464544752926 ], [ -4.527185838055971, 7.799782620171754 ], [ -4.488428513964777, 7.808464259717823 ], [ -4.481090460656219, 7.808567613404648 ], [ -4.470755173812222, 7.807379054999387 ], [ -4.450032925079427, 7.799782620171754 ], [ -4.437062139905834, 7.79931753217835 ], [ -4.425176561249316, 7.800402736896785 ], [ -4.408795132289526, 7.80451101357238 ], [ -4.394067348829083, 7.811048082103298 ], [ -4.368229132168722, 7.833604845287368 ], [ -4.289577603323721, 7.871948757329278 ], [ -4.271129115915983, 7.886288967162102 ], [ -4.213871629372193, 7.947732244747272 ], [ -4.191702439815742, 7.981502793918764 ], [ -4.186741502418386, 7.986463731316121 ], [ -4.17857662591058, 7.992819931794429 ], [ -4.157130906765929, 7.999098618806215 ], [ -4.010111457277958, 8.028321640831052 ], [ -4.016002569762804, 7.983285631526655 ], [ -4.009904750803628, 7.966826687301761 ], [ -3.995435349761578, 7.967136746563597 ], [ -3.978278774445869, 7.972071845539233 ], [ -3.964222784553897, 7.969307156000411 ], [ -3.954300909759183, 7.968971259216232 ], [ -3.943862271027001, 7.976516018099744 ], [ -3.934198777751419, 7.977756252449069 ], [ -3.926602342024466, 7.958455105218945 ], [ -3.929031133879732, 7.949282538358432 ], [ -3.936937628868463, 7.939567369138786 ], [ -3.954559292177578, 7.924942939365167 ], [ -3.968253546863707, 7.91863841393166 ], [ -3.977348599358379, 7.916235460498115 ], [ -3.976573452103139, 7.912954006122447 ], [ -3.96076046392426, 7.903833116105432 ], [ -3.946136034150641, 7.898665473133065 ], [ -3.91647376075548, 7.891663315709422 ], [ -3.906138474810746, 7.88334341136931 ], [ -3.893012660905583, 7.894402166826524 ], [ -3.879938523843805, 7.885048732812777 ], [ -3.875701055958984, 7.87740062114176 ], [ -3.869551561055687, 7.866290187941786 ], [ -3.864590622759067, 7.849211126991918 ], [ -3.866967738670212, 7.843707587235372 ], [ -3.872342088116909, 7.8377131210637 ], [ -3.876527879158289, 7.831511949317019 ], [ -3.875132616077394, 7.825310777570337 ], [ -3.868207973918857, 7.816706651490733 ], [ -3.865830858007712, 7.812365830818408 ], [ -3.85962968626103, 7.792754625225768 ], [ -3.861386685447201, 7.785674954335661 ], [ -3.872032029754394, 7.780920722513315 ], [ -3.872032029754394, 7.774099433142339 ], [ -3.849759487410438, 7.773763536358103 ], [ -3.83399817517568, 7.770301214829203 ], [ -3.823456182756615, 7.76022431130292 ], [ -3.816738247072465, 7.73996714876489 ], [ -3.805886196290942, 7.744979763005631 ], [ -3.796326055802865, 7.744669705542492 ], [ -3.788316208925892, 7.740277208026725 ], [ -3.782011685291025, 7.733145860293178 ], [ -3.762167934802335, 7.735238756263584 ], [ -3.740050422089325, 7.732835801930719 ], [ -3.727131312859797, 7.72203542709326 ], [ -3.734831102273574, 7.699013576815105 ], [ -3.725891079409791, 7.666095689264637 ], [ -3.714728970265753, 7.654881904176534 ], [ -3.689820928692939, 7.650592760347593 ], [ -3.67809037876799, 7.644081529339076 ], [ -3.674214646988389, 7.629792996349693 ], [ -3.673181118214018, 7.615530299983334 ], [ -3.669667120741053, 7.608993232351793 ], [ -3.657884893972664, 7.605169176516256 ], [ -3.651890427800993, 7.596513372694005 ], [ -3.646826137616188, 7.587289129889427 ], [ -3.638041144383294, 7.581682237345376 ], [ -3.598353644305234, 7.591810817715043 ], [ -3.578716600290875, 7.587134101157858 ], [ -3.570345018208059, 7.55747182956128 ], [ -3.575822720442204, 7.545457057896897 ], [ -3.595459763557244, 7.526414293085168 ], [ -3.593909470845404, 7.51682831507469 ], [ -3.585951299912551, 7.510963040112188 ], [ -3.574065721256034, 7.505614529087211 ], [ -3.561146612925882, 7.501583766777401 ], [ -3.549881150994338, 7.499749254124765 ], [ -3.54140621612396, 7.49561513902745 ], [ -3.537117072295075, 7.489517320068273 ], [ -3.533809780397064, 7.48171417876631 ], [ -3.511898973259008, 7.449519762527018 ], [ -3.508901739723512, 7.448873806480947 ], [ -3.502752243920952, 7.407946072053562 ], [ -3.505646124668942, 7.392081407031299 ], [ -3.521975876785291, 7.383683987426082 ], [ -3.520270555341881, 7.360765489036055 ], [ -3.535050014746389, 7.337924505911189 ], [ -3.544610155234466, 7.323145046506681 ], [ -3.542439743999012, 7.30113088658112 ], [ -3.535308397164783, 7.303947252064006 ], [ -3.528177049431292, 7.307978014373873 ], [ -3.527298550287867, 7.304593207210758 ], [ -3.527350226231988, 7.302190252877836 ], [ -3.526316698356936, 7.300975856950231 ], [ -3.521975876785291, 7.30113088658112 ], [ -3.528280402218797, 7.285886339183207 ], [ -3.535928513889814, 7.280847887420066 ], [ -3.55608232274102, 7.280046901743106 ], [ -3.582333949652082, 7.274750068460889 ], [ -3.583470832113221, 7.268755601389898 ], [ -3.582644008913917, 7.239532579365061 ], [ -3.580576952264551, 7.228628851740098 ], [ -3.57995683374088, 7.218112697742811 ], [ -3.583367479325716, 7.205555325517821 ], [ -3.589103563078993, 7.192739569975174 ], [ -3.593134325388803, 7.186615911694958 ], [ -3.599283820292101, 7.182972723912087 ], [ -3.611324428579508, 7.17762421288711 ], [ -3.614476690846629, 7.194470729840305 ], [ -3.624915329578812, 7.197752183316595 ], [ -3.637162645239869, 7.190982570789004 ], [ -3.645482549579981, 7.17762421288711 ], [ -3.645275844904347, 7.165351059703653 ], [ -3.636025762778729, 7.13292409946763 ], [ -3.631839971737293, 7.123002223773597 ], [ -3.623106655347897, 7.112692776250583 ], [ -3.612202927722933, 7.107602646744738 ], [ -3.583367479325716, 7.102512519037532 ], [ -3.582902391332311, 7.105587266039493 ], [ -3.575822720442204, 7.110005601077603 ], [ -3.567554491146836, 7.111607571532204 ], [ -3.563523728837026, 7.106233222085507 ], [ -3.564453904823836, 7.099101874352016 ], [ -3.567141079097553, 7.094063421689555 ], [ -3.571481898870559, 7.090601101059974 ], [ -3.577166306679715, 7.088249823570493 ], [ -3.569983283002102, 7.071842556188983 ], [ -3.583057420063881, 7.070783188992948 ], [ -3.618765834675514, 7.082048651823811 ], [ -3.621297980217605, 7.060473741469991 ], [ -3.634320441335319, 7.051146144978588 ], [ -3.665946417693021, 7.047270413198987 ], [ -3.684188197727167, 7.03962230152797 ], [ -3.694626838257989, 7.028925279478074 ], [ -3.702843389810596, 7.017143052709685 ], [ -3.714367235059854, 7.006316840349882 ], [ -3.751625942383328, 7.000115667703881 ], [ -3.775190395920049, 6.979005846242785 ], [ -3.78077145004238, 6.953400173579155 ], [ -3.771262987297007, 6.937225450194376 ], [ -3.761651169965546, 6.93632111172991 ], [ -3.755346646330679, 6.959136257332375 ], [ -3.741238978695947, 6.948930161697604 ], [ -3.731678840006452, 6.930119940882548 ], [ -3.729715135245328, 6.912007351158309 ], [ -3.738293422903155, 6.903894151493887 ], [ -3.748008592122858, 6.897848009378095 ], [ -3.761444465289856, 6.883223577805836 ], [ -3.772554896691133, 6.865266017712543 ], [ -3.775190395920049, 6.849272162380373 ], [ -3.766715461049671, 6.843820299467211 ], [ -3.750075648772167, 6.829609279944293 ], [ -3.740153773977511, 6.815036526114795 ], [ -3.751625942383328, 6.808318590430588 ], [ -3.753899704607704, 6.801083889010272 ], [ -3.796274379858744, 6.759897773063756 ], [ -3.770436164097703, 6.705818386309488 ], [ -3.772038132753607, 6.684243475955611 ], [ -3.803095669229776, 6.671143500472169 ], [ -3.788884649706802, 6.659852200118905 ], [ -3.78232174275422, 6.646984767732818 ], [ -3.777567510931874, 6.632360337959199 ], [ -3.774880336658214, 6.627141018143448 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-12", "NAME_1": "Marahoué" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.413402002800183, 6.640095098410029 ], [ -5.415193651066147, 6.640111803317041 ], [ -5.481701218836179, 6.640731920042072 ], [ -5.512138637687997, 6.629233914113854 ], [ -5.710369431604022, 6.495030219269211 ], [ -5.739928351312358, 6.488648180369239 ], [ -6.040788539659388, 6.519757391890096 ], [ -6.0887959458762, 6.569728501968768 ], [ -6.095410528772902, 6.604041653499507 ], [ -6.091586472937365, 6.628381252492773 ], [ -6.126313034718805, 6.676181952235311 ], [ -6.165070359709318, 6.727625841559302 ], [ -6.173028529742851, 6.764471136833492 ], [ -6.173441941792191, 6.798396714736612 ], [ -6.175560675284942, 6.815139878902301 ], [ -6.212044237151815, 6.889476427295278 ], [ -6.217780320905092, 6.911826484005019 ], [ -6.219899054397843, 6.931825263225278 ], [ -6.218658820048518, 6.966293443487587 ], [ -6.216436732868942, 6.983424181280952 ], [ -6.211114061165006, 7.000425726965716 ], [ -6.198401659309127, 7.013758246445889 ], [ -6.018360967684544, 7.129358425151167 ], [ -5.996398484602366, 7.133156643464304 ], [ -5.967924771411106, 7.13558543531957 ], [ -5.954695603819061, 7.138143419283381 ], [ -5.947202520879671, 7.141244004707062 ], [ -5.945187140174369, 7.148917954799742 ], [ -5.94255164184483, 7.153103745841179 ], [ -5.931854620694196, 7.165351059703653 ], [ -5.97143876798475, 7.184212958261412 ], [ -5.996346807758982, 7.187623602946928 ], [ -5.999654099656993, 7.189096381292927 ], [ -6.018464321371368, 7.203694973544202 ], [ -6.030349900927206, 7.208500881310613 ], [ -6.076031867176937, 7.232866318725598 ], [ -6.102386846875504, 7.242478136057116 ], [ -6.108691372309011, 7.245733751111686 ], [ -6.112205368882655, 7.249015203688714 ], [ -6.114582484793857, 7.253200994730093 ], [ -6.119440070303028, 7.266688543841212 ], [ -6.127243210705615, 7.276920477897704 ], [ -6.17183997223691, 7.288108425463463 ], [ -6.191373664363141, 7.290123806168708 ], [ -6.204912889418324, 7.289813747806193 ], [ -6.211010708377501, 7.288883571819383 ], [ -6.220519172022193, 7.285085354405567 ], [ -6.223568080602433, 7.281287136092431 ], [ -6.224653286220189, 7.275783596335884 ], [ -6.224446579745859, 7.247361558189368 ], [ -6.226668666925434, 7.232091173268998 ], [ -6.232869838672116, 7.217957668111865 ], [ -6.25317867715421, 7.212919216348723 ], [ -6.273694220312052, 7.210826321277693 ], [ -6.300772671321738, 7.211136378740889 ], [ -6.334414028384685, 7.217260037021106 ], [ -6.349296840576756, 7.217957668111865 ], [ -6.358340216227987, 7.221833400790786 ], [ -6.364851447236504, 7.226897690975647 ], [ -6.371000942139801, 7.235191758692679 ], [ -6.378390672291687, 7.243330796778821 ], [ -6.387847459092995, 7.251263129289953 ], [ -6.397200894006062, 7.252503362739958 ], [ -6.409758267130314, 7.248705146225518 ], [ -6.420713669800023, 7.242710680053847 ], [ -6.443554652924888, 7.233951524343354 ], [ -6.445776740104463, 7.254828802707038 ], [ -6.397976040361982, 7.349629218313737 ], [ -6.344852668016244, 7.429469306463318 ], [ -6.332346970836056, 7.452672023894763 ], [ -6.325163947158444, 7.477967638195935 ], [ -6.314415249164426, 7.50021434211817 ], [ -6.300772671321738, 7.511247260052983 ], [ -6.105745814717579, 7.618398342309661 ], [ -6.076548631114463, 7.636071682462159 ], [ -6.073344692003957, 7.64087759022857 ], [ -6.069830695430255, 7.647337144393703 ], [ -6.06993404821776, 7.651677965066028 ], [ -6.07241451691641, 7.669609686737658 ], [ -6.071742723347995, 7.67751618082707 ], [ -6.068280401819095, 7.688445745974377 ], [ -6.040271775721862, 7.714361477000523 ], [ -6.00787065300824, 7.737719224062914 ], [ -5.997173630958287, 7.739734604768159 ], [ -5.983376024384029, 7.73671153371032 ], [ -5.90632646329567, 7.706687526907842 ], [ -5.887929652731316, 7.713276272282144 ], [ -5.869171107860325, 7.723120631811696 ], [ -5.84999915183937, 7.736013901720185 ], [ -5.835736457271707, 7.740819810385915 ], [ -5.825297816740886, 7.742757676725375 ], [ -5.795738897931813, 7.743920395809596 ], [ -5.783439907225954, 7.707152614901247 ], [ -5.780546027377284, 7.690306097948053 ], [ -5.786127082398934, 7.623979397331311 ], [ -5.78488684715029, 7.613954168849773 ], [ -5.782768113657539, 7.607210394743902 ], [ -5.779305793027959, 7.603877265323547 ], [ -5.774809942724687, 7.60139679572552 ], [ -5.769487271020751, 7.599613959017006 ], [ -5.763389452061574, 7.598296210301839 ], [ -5.753984341204387, 7.590002143484128 ], [ -5.742770555216964, 7.575326035967748 ], [ -5.723753627927579, 7.536930447082455 ], [ -5.716932338556603, 7.51930878287402 ], [ -5.714038458707932, 7.506983953746442 ], [ -5.716053840312497, 7.502229722823415 ], [ -5.719154424836859, 7.499129137399734 ], [ -5.723391892721679, 7.496726182167549 ], [ -5.733262090672952, 7.494710802361624 ], [ -5.742150437592613, 7.494788315828089 ], [ -5.738119676182123, 7.476107286222259 ], [ -5.735690884326857, 7.472360744752564 ], [ -5.722151659271674, 7.455617581486194 ], [ -5.72974809409925, 7.391616319037894 ], [ -5.727732713394005, 7.371436671764968 ], [ -5.721789924065774, 7.363685208205766 ], [ -5.718120896961807, 7.361411445082126 ], [ -5.708302374954656, 7.358310858759125 ], [ -5.700654263283639, 7.349939277575572 ], [ -5.698897264097468, 7.343583075298682 ], [ -5.699620733610004, 7.337846991545405 ], [ -5.7026179671455, 7.333661200503968 ], [ -5.7106794908658, 7.326659043979703 ], [ -5.714038458707932, 7.3215430769514 ], [ -5.713263312352012, 7.31712474191329 ], [ -5.711041226071757, 7.313016466137015 ], [ -5.703651495919814, 7.306505235128498 ], [ -5.700395880865244, 7.302758694558122 ], [ -5.696933560235607, 7.299425564238391 ], [ -5.692902797925797, 7.296635037177225 ], [ -5.678019984834464, 7.291209010887144 ], [ -5.672232225137066, 7.287255763842438 ], [ -5.667167934952261, 7.280977077729915 ], [ -5.660449998368733, 7.269246527805024 ], [ -5.659003058444398, 7.263122870424127 ], [ -5.662155320711463, 7.25699921304323 ], [ -5.664894171828564, 7.248085029500487 ], [ -5.662930467067383, 7.243098252782147 ], [ -5.665565965396979, 7.238757432109765 ], [ -5.6694416980759, 7.235734361051925 ], [ -5.675022752198288, 7.232711289994029 ], [ -5.676159633760108, 7.228525498952592 ], [ -5.674712693835772, 7.223642075921077 ], [ -5.668304815614761, 7.211756497264503 ], [ -5.664480759779224, 7.207493190957962 ], [ -5.659726527956934, 7.205012722259312 ], [ -5.654662237772072, 7.204160061537607 ], [ -5.648874478074731, 7.204392605534281 ], [ -5.642363247066214, 7.203772487909987 ], [ -5.634818488182702, 7.201136990479711 ], [ -5.617661911967673, 7.187236029319308 ], [ -5.605776333311155, 7.179407050494945 ], [ -5.60432939338682, 7.173438421845674 ], [ -5.603967658180864, 7.167159735733208 ], [ -5.600867071857863, 7.156669420157584 ], [ -5.595751104829617, 7.151010849870829 ], [ -5.587224494015175, 7.144964707755037 ], [ -5.581074998212614, 7.142251695059656 ], [ -5.574770473678427, 7.141011460710331 ], [ -5.569447801075171, 7.140933946344546 ], [ -5.564125129371234, 7.14232921032476 ], [ -5.559577603123898, 7.144499619761632 ], [ -5.555391812082462, 7.147135118091228 ], [ -5.552291225759461, 7.149615586789878 ], [ -5.547020229999646, 7.151630968394443 ], [ -5.537666795086523, 7.153181261106283 ], [ -5.531207240921447, 7.152483629116205 ], [ -5.524282598762909, 7.150700792407633 ], [ -5.497255824596664, 7.140313828720195 ], [ -5.493948533597973, 7.135327052901175 ], [ -5.492811652036096, 7.129358425151167 ], [ -5.500459763707113, 7.100652167063856 ], [ -5.505989141885379, 7.087552192479677 ], [ -5.50717770029064, 7.081428534199461 ], [ -5.506609258610411, 7.073806260950164 ], [ -5.503508674086049, 7.063031724534426 ], [ -5.498599411733494, 7.055667832804204 ], [ -5.494103563228862, 7.050784409772689 ], [ -5.48981441939992, 7.047502957195718 ], [ -5.485576952414419, 7.045022488497011 ], [ -5.480719366905248, 7.042929592526662 ], [ -5.461082322890888, 7.037193507874065 ], [ -5.458705206979744, 7.033162747362894 ], [ -5.459221970917213, 7.028976956321458 ], [ -5.462322557240213, 7.025152900485978 ], [ -5.466404994594825, 7.022052314162977 ], [ -5.478548956569114, 7.016083686412969 ], [ -5.488780889726286, 7.012285468099833 ], [ -5.495808884672272, 7.000606594119006 ], [ -5.498961146939394, 6.992855128761164 ], [ -5.507694465127486, 6.964484768357352 ], [ -5.509399786570896, 6.948284207450229 ], [ -5.514619106386647, 6.93133433681021 ], [ -5.535496384750388, 6.914849555062915 ], [ -5.537356736724007, 6.89645274539788 ], [ -5.528778449066181, 6.8779009061019 ], [ -5.501493293380804, 6.846559150584312 ], [ -5.495705531884823, 6.824751695334442 ], [ -5.486042038609185, 6.813124498196999 ], [ -5.437104458204203, 6.766719062434788 ], [ -5.434882371024628, 6.758140773877585 ], [ -5.424081997086489, 6.734602158762584 ], [ -5.413798387085876, 6.712097073321274 ], [ -5.409922655306332, 6.691478176476664 ], [ -5.413333299092471, 6.641274522401261 ], [ -5.413402002800183, 6.640095098410029 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-18", "NAME_1": "Fromager" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.481701218836179, 6.640731920042072 ], [ -5.415193651066147, 6.640111803317041 ], [ -5.413402002800183, 6.640095098410029 ], [ -5.413798387085876, 6.633290513946065 ], [ -5.409405889570166, 6.613989365816565 ], [ -5.398088751694559, 6.607142238923188 ], [ -5.343621792211934, 6.608098253331718 ], [ -5.32083248503119, 6.602077947839007 ], [ -5.308533494325332, 6.589158840408174 ], [ -5.317628546820004, 6.567480577266792 ], [ -5.314011195660157, 6.551745103453754 ], [ -5.324036424141696, 6.537456570464371 ], [ -5.336852178785023, 6.518982245534175 ], [ -5.320729132243684, 6.512858588153335 ], [ -5.308171759119375, 6.51138580980728 ], [ -5.305639613577341, 6.507277533131628 ], [ -5.310807257448971, 6.492368883417214 ], [ -5.312719285366711, 6.47955312697519 ], [ -5.315354783696307, 6.474773056731181 ], [ -5.320729132243684, 6.468804429880549 ], [ -5.324398159347595, 6.461001288578586 ], [ -5.320264045149599, 6.455420234456255 ], [ -5.313907842872652, 6.450485134581299 ], [ -5.310807257448971, 6.444594021197133 ], [ -5.312150844585801, 6.41769643824 ], [ -5.310910610236476, 6.398576158163166 ], [ -5.30346920414047, 6.382711493140903 ], [ -5.286571011243211, 6.365761624299523 ], [ -5.269982875809092, 6.360723170737742 ], [ -5.234946254765873, 6.372789618346189 ], [ -5.215309210751457, 6.366769313752798 ], [ -5.214327357921263, 6.331939399183909 ], [ -5.212673713321237, 6.325660712172123 ], [ -5.214947476444877, 6.299279893152516 ], [ -5.244351365623061, 6.218122056287882 ], [ -5.290653448597766, 6.23060191504635 ], [ -5.312564255735822, 6.233935045366024 ], [ -5.505213996428779, 6.166755683128258 ], [ -5.728817918112441, 6.196159573205705 ], [ -5.756878221053057, 6.139754747383677 ], [ -5.762872687224728, 6.118257351395641 ], [ -5.758738573026733, 6.081877143215593 ], [ -5.753777634730056, 6.060612291224231 ], [ -5.753777634730056, 6.05138804841971 ], [ -5.781372849677268, 6.000331732723282 ], [ -5.779925909752933, 5.982244981420763 ], [ -5.781372849677268, 5.963641466180718 ], [ -5.784835171206169, 5.95689769117547 ], [ -5.79046790217194, 5.950050564282094 ], [ -5.804110480014629, 5.940826321477516 ], [ -5.813308885296806, 5.937725735154515 ], [ -5.821163703442153, 5.936795559167706 ], [ -5.867052375266894, 5.894963487175175 ], [ -6.051640591340231, 5.678206692384947 ], [ -6.054534471188902, 5.689368801528929 ], [ -6.057118292675057, 5.69246938695261 ], [ -6.062337611591488, 5.694562282923016 ], [ -6.066213345169729, 5.697895413242691 ], [ -6.06797034255726, 5.704509996139393 ], [ -6.067660285094064, 5.710478623889344 ], [ -6.06590328590795, 5.721485704301813 ], [ -6.066781785051376, 5.726524156064954 ], [ -6.068797165756621, 5.731097519834634 ], [ -6.072001104867127, 5.734844062203706 ], [ -6.093860236061062, 5.7528274598194 ], [ -6.102335170931383, 5.771456814380485 ], [ -6.106262579554425, 5.777037869402136 ], [ -6.1300337386661, 5.791791490384981 ], [ -6.137526820706228, 5.794892075808662 ], [ -6.160884568667939, 5.794349473449415 ], [ -6.218555467261012, 5.778123074120572 ], [ -6.248631150906874, 5.844372260371529 ], [ -6.253953822610811, 5.85323476797015 ], [ -6.258708055332477, 5.859125881354316 ], [ -6.262893846373913, 5.861916409314802 ], [ -6.2706969867765, 5.868350125058214 ], [ -6.274055954618632, 5.874473782439111 ], [ -6.277104864997511, 5.883878892396979 ], [ -6.282065802394868, 5.939896145490707 ], [ -6.283874478424423, 5.94788015394596 ], [ -6.287026739792225, 5.956639308757076 ], [ -6.294829881094131, 5.971547960270129 ], [ -6.299687465703983, 5.979144395097762 ], [ -6.307593959793394, 5.988471990689789 ], [ -6.320668096855172, 6.000099188726551 ], [ -6.320771449642677, 6.000176703092336 ], [ -6.320978156117008, 6.000331732723282 ], [ -6.323251919240704, 6.002192083797638 ], [ -6.329091355781429, 6.007773138819289 ], [ -6.335344204371552, 6.015240383337016 ], [ -6.354981248385911, 6.050070298805224 ], [ -6.374566615556887, 6.103374539203628 ], [ -6.38733069515547, 6.150839342161873 ], [ -6.399939744223843, 6.304783432909062 ], [ -6.370432502258154, 6.308581651222198 ], [ -6.333793910760392, 6.318348497285285 ], [ -6.303408168752014, 6.3310092231971 ], [ -6.286096563805359, 6.33503998550691 ], [ -6.27188554518176, 6.336977850947051 ], [ -6.221604376740629, 6.333412177529965 ], [ -6.210804001903171, 6.33558258696678 ], [ -6.201812303095323, 6.340466009998352 ], [ -6.143572963721283, 6.388964341730968 ], [ -6.139387172679903, 6.391212266432944 ], [ -6.134581264913436, 6.391677354426349 ], [ -6.129568650672695, 6.390592148808594 ], [ -6.124711066062844, 6.388576768103349 ], [ -6.106314256397809, 6.378887437305366 ], [ -6.098562791039967, 6.373668118388935 ], [ -6.092154913718275, 6.377957262217876 ], [ -6.083990037210469, 6.388576768103349 ], [ -6.059908819736222, 6.434749660768205 ], [ -6.051123827402705, 6.459476834288466 ], [ -6.040788539659388, 6.519757391890096 ], [ -5.739928351312358, 6.488648180369239 ], [ -5.710369431604022, 6.495030219269211 ], [ -5.512138637687997, 6.629233914113854 ], [ -5.481701218836179, 6.640731920042072 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-04", "NAME_1": "Vallée du Bandama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.010111457277958, 8.028321640831052 ], [ -4.157130906765929, 7.999098618806215 ], [ -4.17857662591058, 7.992819931794429 ], [ -4.186741502418386, 7.986463731316121 ], [ -4.191702439815742, 7.981502793918764 ], [ -4.213871629372193, 7.947732244747272 ], [ -4.271129115915983, 7.886288967162102 ], [ -4.289577603323721, 7.871948757329278 ], [ -4.368229132168722, 7.833604845287368 ], [ -4.394067348829083, 7.811048082103298 ], [ -4.408795132289526, 7.80451101357238 ], [ -4.425176561249316, 7.800402736896785 ], [ -4.437062139905834, 7.79931753217835 ], [ -4.450032925079427, 7.799782620171754 ], [ -4.470755173812222, 7.807379054999387 ], [ -4.481090460656219, 7.808567613404648 ], [ -4.488428513964777, 7.808464259717823 ], [ -4.527185838055971, 7.799782620171754 ], [ -4.536384243338148, 7.761464544752926 ], [ -4.534937303413813, 7.744462999068162 ], [ -4.532353481028338, 7.738726915314885 ], [ -4.529407925235546, 7.728184922895878 ], [ -4.514111700994192, 7.610078437070229 ], [ -4.516902228055415, 7.598993842291975 ], [ -4.52181148860933, 7.593025214542024 ], [ -4.528012661255332, 7.593257758538698 ], [ -4.559845343188044, 7.601706854987356 ], [ -4.566046514934726, 7.60217194298076 ], [ -4.572196010737287, 7.601551825356466 ], [ -4.577932095389883, 7.599381415020275 ], [ -4.583564826355655, 7.595195623978839 ], [ -4.588784146171406, 7.589382025859777 ], [ -4.598292608916779, 7.57617869668951 ], [ -4.608627895760776, 7.564861557914526 ], [ -4.614208949883164, 7.55997813578233 ], [ -4.639685431337568, 7.5420464141107 ], [ -4.661027797694715, 7.516208197450339 ], [ -4.741229621050195, 7.513262640758228 ], [ -4.766706101605337, 7.51605316781945 ], [ -4.772390509414492, 7.519773870867425 ], [ -4.790735643135406, 7.53801565180089 ], [ -4.803654750566295, 7.545922145890302 ], [ -4.811974656705047, 7.548712672951467 ], [ -4.819674445219505, 7.549255276210033 ], [ -4.878792283736914, 7.545612087527786 ], [ -4.894295212653958, 7.54165884048308 ], [ -4.905974086634785, 7.535767727098914 ], [ -4.923337368424825, 7.514347846375983 ], [ -4.938220180616838, 7.486726793007051 ], [ -4.946178350650371, 7.47920787254526 ], [ -4.958529019098933, 7.471688951184149 ], [ -5.014908005599978, 7.450734158454623 ], [ -5.028860642704501, 7.442336737050766 ], [ -5.035371872813698, 7.437298285287625 ], [ -5.04100460467879, 7.431794745531079 ], [ -5.045707159657695, 7.426058660878482 ], [ -5.049686245124121, 7.4198574891318 ], [ -5.055939092814867, 7.407119248854258 ], [ -5.058161179994443, 7.400840561842415 ], [ -5.064362351741124, 7.393399155746408 ], [ -5.074749315428562, 7.384924220876087 ], [ -5.186887172604941, 7.330922349386924 ], [ -5.205025600750901, 7.310535997438308 ], [ -5.215722621901477, 7.287023219845707 ], [ -5.221303676923185, 7.280356960105621 ], [ -5.227194790307351, 7.278496609031265 ], [ -5.234532842716533, 7.278729153027996 ], [ -5.24259436733621, 7.27785065388457 ], [ -5.254790005254563, 7.272347113228705 ], [ -5.262541469713085, 7.264595648770182 ], [ -5.280989956221504, 7.241237900808471 ], [ -5.288586391948456, 7.236276964310434 ], [ -5.295614385995123, 7.2344941267026 ], [ -5.314424607709498, 7.23751719776044 ], [ -5.321039190606143, 7.23736216902887 ], [ -5.352510138232276, 7.228913072580212 ], [ -5.361811896301958, 7.227595322965783 ], [ -5.369408332028911, 7.227905382227618 ], [ -5.375712855663778, 7.230075792563753 ], [ -5.381810674622955, 7.23333140671906 ], [ -5.38770178890644, 7.23774974175717 ], [ -5.40522009942805, 7.256921697778125 ], [ -5.425425584223319, 7.286093043858898 ], [ -5.430283168833171, 7.291674098880549 ], [ -5.436484340579852, 7.29671255154301 ], [ -5.445424364342955, 7.300433253691665 ], [ -5.452865770438962, 7.3007433129535 ], [ -5.459893765384948, 7.299503079503495 ], [ -5.501441615638043, 7.282217312079297 ], [ -5.616473355361052, 7.253666082723498 ], [ -5.632803106578137, 7.253356025260359 ], [ -5.662155320711463, 7.25699921304323 ], [ -5.659003058444398, 7.263122870424127 ], [ -5.660449998368733, 7.269246527805024 ], [ -5.667167934952261, 7.280977077729915 ], [ -5.672232225137066, 7.287255763842438 ], [ -5.678019984834464, 7.291209010887144 ], [ -5.692902797925797, 7.296635037177225 ], [ -5.696933560235607, 7.299425564238391 ], [ -5.700395880865244, 7.302758694558122 ], [ -5.703651495919814, 7.306505235128498 ], [ -5.711041226071757, 7.313016466137015 ], [ -5.713263312352012, 7.31712474191329 ], [ -5.714038458707932, 7.3215430769514 ], [ -5.7106794908658, 7.326659043979703 ], [ -5.7026179671455, 7.333661200503968 ], [ -5.699620733610004, 7.337846991545405 ], [ -5.698897264097468, 7.343583075298682 ], [ -5.700654263283639, 7.349939277575572 ], [ -5.708302374954656, 7.358310858759125 ], [ -5.718120896961807, 7.361411445082126 ], [ -5.721789924065774, 7.363685208205766 ], [ -5.727732713394005, 7.371436671764968 ], [ -5.72974809409925, 7.391616319037894 ], [ -5.722151659271674, 7.455617581486194 ], [ -5.735690884326857, 7.472360744752564 ], [ -5.738119676182123, 7.476107286222259 ], [ -5.742150437592613, 7.494788315828089 ], [ -5.733262090672952, 7.494710802361624 ], [ -5.723391892721679, 7.496726182167549 ], [ -5.719154424836859, 7.499129137399734 ], [ -5.716053840312497, 7.502229722823415 ], [ -5.714038458707932, 7.506983953746442 ], [ -5.716932338556603, 7.51930878287402 ], [ -5.723753627927579, 7.536930447082455 ], [ -5.742770555216964, 7.575326035967748 ], [ -5.753984341204387, 7.590002143484128 ], [ -5.763389452061574, 7.598296210301839 ], [ -5.769487271020751, 7.599613959017006 ], [ -5.774809942724687, 7.60139679572552 ], [ -5.779305793027959, 7.603877265323547 ], [ -5.782768113657539, 7.607210394743902 ], [ -5.78488684715029, 7.613954168849773 ], [ -5.786127082398934, 7.623979397331311 ], [ -5.780546027377284, 7.690306097948053 ], [ -5.783439907225954, 7.707152614901247 ], [ -5.795738897931813, 7.743920395809596 ], [ -5.779099086553629, 7.753842271503629 ], [ -5.773621385218746, 7.760301824769385 ], [ -5.763802863211595, 7.77487457949826 ], [ -5.760857305620164, 7.783814602361986 ], [ -5.760082160163563, 7.791488552454723 ], [ -5.765353155923435, 7.806836453539461 ], [ -5.76793697830891, 7.817714341843384 ], [ -5.768712123765511, 7.830194199702532 ], [ -5.76829871261549, 7.836266181139308 ], [ -5.7639062159991, 7.852931830039893 ], [ -5.761839159349734, 7.857582709074734 ], [ -5.747369758307684, 7.877297268354255 ], [ -5.74328731915449, 7.886986599152237 ], [ -5.740290085618938, 7.897786973090319 ], [ -5.739514940162394, 7.903523056843596 ], [ -5.739721645737347, 7.909646715123813 ], [ -5.740961880086729, 7.915305284511248 ], [ -5.744475876660374, 7.925485540825036 ], [ -5.748816698232019, 7.94346894023937 ], [ -5.749126755695215, 7.953029079828184 ], [ -5.740135056887368, 8.000028794793025 ], [ -5.740031704099863, 8.000183824423971 ], [ -5.739928351312358, 8.000493882786429 ], [ -5.730936651605191, 8.003439439478541 ], [ -5.715847133838167, 8.005248113709456 ], [ -5.706390347036916, 8.005558172971291 ], [ -5.672800665918032, 8.003129381116025 ], [ -5.629857549886026, 8.009976508009402 ], [ -5.603915981337479, 8.02113861715344 ], [ -5.54572831880688, 8.05914663331049 ], [ -5.539888882266098, 8.065528673109782 ], [ -5.536788295943097, 8.071264756863002 ], [ -5.536219855162187, 8.07955882458009 ], [ -5.537460090410832, 8.095010077553013 ], [ -5.531879035389181, 8.097258002254989 ], [ -5.520716925345823, 8.100436102943775 ], [ -5.490899624118356, 8.099738470953639 ], [ -5.474621547946072, 8.095630195177364 ], [ -5.466456672337586, 8.110874742575277 ], [ -5.451935593552832, 8.113665268737122 ], [ -5.435244106230527, 8.109324448964117 ], [ -5.421394822812829, 8.10245148454834 ], [ -5.413798387085876, 8.116094062391028 ], [ -5.401189338017559, 8.112838446437138 ], [ -5.393282843028771, 8.121855984566025 ], [ -5.391215786379462, 8.135731106405444 ], [ -5.402377896422763, 8.159243883098725 ], [ -5.388786993624876, 8.163791409346061 ], [ -5.374162562951938, 8.16451487885854 ], [ -5.359176397972419, 8.16451487885854 ], [ -5.345533820129731, 8.185934760480791 ], [ -5.34739417210335, 8.211488756301037 ], [ -5.365997687343395, 8.26011627924288 ], [ -5.345533820129731, 8.26011627924288 ], [ -5.354060430944116, 8.2774795601336 ], [ -5.367341273580905, 8.28536021580129 ], [ -5.381500617159759, 8.289287625323652 ], [ -5.392714403147181, 8.294868679445983 ], [ -5.396745163658409, 8.300888984039375 ], [ -5.406977097714901, 8.322799791177431 ], [ -5.411162888756337, 8.327295640581326 ], [ -5.416123827052957, 8.330473741270112 ], [ -5.427492641772005, 8.335822252295088 ], [ -5.447956508985726, 8.350110785284528 ], [ -5.454364386307418, 8.352513738718073 ], [ -5.50257849809924, 8.363753363127216 ], [ -5.504593878804485, 8.367784125437026 ], [ -5.505679084422241, 8.374553737964618 ], [ -5.507642788284045, 8.380832424077084 ], [ -5.512500372893896, 8.38362295203757 ], [ -5.546968553156205, 8.38362295203757 ], [ -5.554926724089057, 8.385741685530377 ], [ -5.559474250336393, 8.390444241408602 ], [ -5.563039923753479, 8.395146796387507 ], [ -5.567742478732441, 8.397265529880315 ], [ -5.578697882301412, 8.40483612718549 ], [ -5.606758185242086, 8.438115749941915 ], [ -5.615853236837438, 8.44568634724709 ], [ -5.619057175947944, 8.447830919161561 ], [ -5.613734504244007, 8.452507635718803 ], [ -5.60432939338682, 8.457210190697708 ], [ -5.595337693679653, 8.459354763511499 ], [ -5.586345993972429, 8.458192043527959 ], [ -5.567742478732441, 8.451887518993772 ], [ -5.543092821376604, 8.450078843863537 ], [ -5.534152797613501, 8.453877061277353 ], [ -5.523042365312904, 8.466176051983211 ], [ -5.605052862899299, 8.512762355798088 ], [ -5.610427212345996, 8.529247138444646 ], [ -5.602365687726319, 8.537308661265683 ], [ -5.602882452563165, 8.54570608177022 ], [ -5.604639451749335, 8.551054591895877 ], [ -5.608618537215705, 8.554155178218878 ], [ -5.613786180188072, 8.554155178218878 ], [ -5.618592087954482, 8.553225002232068 ], [ -5.623759730926849, 8.553225002232068 ], [ -5.62779049323666, 8.555317898202418 ], [ -5.631511196284691, 8.557953396532014 ], [ -5.634508428920867, 8.560821437958964 ], [ -5.636937221675453, 8.564464625741891 ], [ -5.637815720818878, 8.569606432091177 ], [ -5.637609015243868, 8.575420030210239 ], [ -5.636678840156378, 8.58123362922862 ], [ -5.636265428107038, 8.608854681698176 ], [ -5.638745896805688, 8.614125678357368 ], [ -5.642259894278709, 8.617923895771185 ], [ -5.646652390895156, 8.620559394100724 ], [ -5.651613328292456, 8.622574774806026 ], [ -5.656884324951648, 8.62397003788692 ], [ -5.662310350342409, 8.624693508298776 ], [ -5.667736374833851, 8.623918361942856 ], [ -5.672232225137066, 8.621747952505984 ], [ -5.680293747958103, 8.616451117425129 ], [ -5.684841274205439, 8.615753486334313 ], [ -5.688665330040976, 8.617536322143565 ], [ -5.698845588153404, 8.627871608987562 ], [ -5.701687791158633, 8.631747340767163 ], [ -5.7026179671455, 8.637173367057244 ], [ -5.702979702351399, 8.653322252020303 ], [ -5.701429408740239, 8.656810411071604 ], [ -5.696933560235607, 8.658050645420929 ], [ -5.692954473869861, 8.660531114119635 ], [ -5.691094122795562, 8.668902696202451 ], [ -5.690784064433046, 8.676111558301784 ], [ -5.687528449378419, 8.694740911963493 ], [ -5.688561978152791, 8.70109711334112 ], [ -5.6906290348021, 8.706290594735151 ], [ -5.693522914650771, 8.710269680201577 ], [ -5.694866501787658, 8.714688015239688 ], [ -5.694039678588297, 8.719261379009424 ], [ -5.688045213315945, 8.723292141319234 ], [ -5.677089809746917, 8.723524685315965 ], [ -5.672335577924571, 8.724997462762701 ], [ -5.66902828602656, 8.728098049085702 ], [ -5.669338345288395, 8.734092515257373 ], [ -5.672645636287086, 8.737580675207994 ], [ -5.682050747144274, 8.7423090677093 ], [ -5.68468624457455, 8.746417345284272 ], [ -5.687838507740935, 8.757114366434848 ], [ -5.6906290348021, 8.761325994998685 ], [ -5.694659797111967, 8.76427155169074 ], [ -5.699414028034994, 8.76597687403347 ], [ -5.704633347850745, 8.76481415404993 ], [ -5.709025845366455, 8.760912583848665 ], [ -5.712281460421082, 8.753471177752658 ], [ -5.717087368187492, 8.748975328348706 ], [ -5.720187953611173, 8.749130357080276 ], [ -5.721583217591444, 8.754866440833553 ], [ -5.721118129597983, 8.763393053446634 ], [ -5.710989549228316, 8.79917898242411 ], [ -5.696933560235607, 8.834008896992998 ], [ -5.691610886733031, 8.841140244726489 ], [ -5.683704392643619, 8.84307811106595 ], [ -5.677399868109433, 8.84307811106595 ], [ -5.671612108412091, 8.841450303988324 ], [ -5.663550583792414, 8.836179307329132 ], [ -5.658331264875983, 8.834473984986403 ], [ -5.639727748736618, 8.832768663542993 ], [ -5.628720669223526, 8.830288193944966 ], [ -5.623087938257754, 8.830288193944966 ], [ -5.617971971229508, 8.831450913928506 ], [ -5.612804328257141, 8.833078721905451 ], [ -5.603605922974964, 8.837264512946888 ], [ -5.599368455090143, 8.839822496011379 ], [ -5.595544399254607, 8.842768052703434 ], [ -5.581436733418514, 8.856436468967843 ], [ -5.577561000739593, 8.859459540025739 ], [ -5.573065151335697, 8.861474920730984 ], [ -5.56789750836333, 8.863180243073771 ], [ -5.556993780738424, 8.865505683040851 ], [ -5.539320440585868, 8.866900946121746 ], [ -5.532757533633287, 8.866435859027661 ], [ -5.524644333968865, 8.864808051050716 ], [ -5.515290899955062, 8.85969208402247 ], [ -5.50449052601698, 8.858684394569138 ], [ -5.499064499726899, 8.858994452032334 ], [ -5.493173387242052, 8.862715155080309 ], [ -5.48366492359736, 8.862327582352009 ], [ -5.473588019171757, 8.865944931713216 ], [ -5.466663377013219, 8.867986151739501 ], [ -5.459273646861334, 8.878192247374329 ], [ -5.460978970103383, 8.890723782076861 ], [ -5.466973436275055, 8.892635809994601 ], [ -5.481546190104609, 8.902506007945874 ], [ -5.491984828836792, 8.913461412414222 ], [ -5.485473598727594, 8.918654892908989 ], [ -5.459635382067233, 8.926406358266831 ], [ -5.465216437088884, 8.965060330469839 ], [ -5.440515102889719, 8.980098171393479 ], [ -5.455087855819897, 8.991673691687481 ], [ -5.460978970103383, 8.994386705282238 ], [ -5.460978970103383, 9.000587877028863 ], [ -5.450230272109366, 9.001259669697959 ], [ -5.439688279690358, 9.000277817767085 ], [ -5.429766404895702, 8.997900701855883 ], [ -5.420671353300349, 8.994386705282238 ], [ -5.437207810991708, 9.024565740816286 ], [ -5.497204148652543, 9.063348904228519 ], [ -5.495705531884823, 9.089962266345481 ], [ -5.473277960809241, 9.086267401719226 ], [ -5.457878383780383, 9.100065009192804 ], [ -5.447543096936386, 9.12254425711177 ], [ -5.435244106230527, 9.166417548231266 ], [ -5.434985723812133, 9.183522446703535 ], [ -5.441031866827188, 9.198586126948214 ], [ -5.454777798356702, 9.213494778461268 ], [ -5.424288702661499, 9.211634426487592 ], [ -5.405271776271491, 9.229902044943401 ], [ -5.395504930208347, 9.259538479017579 ], [ -5.392714403147181, 9.291681220212126 ], [ -5.386564907344621, 9.317984523966572 ], [ -5.371682095152551, 9.344494534195405 ], [ -5.338092414033667, 9.384802150998439 ], [ -5.316181605996348, 9.379531155238624 ], [ -5.270499639746561, 9.386662502072795 ], [ -5.258252325884143, 9.386662502072795 ], [ -5.252516242130866, 9.38542226772347 ], [ -5.246676804690765, 9.379996243232029 ], [ -5.240527309787524, 9.370901190737357 ], [ -5.216342738626508, 9.313101100935057 ], [ -5.213552211565343, 9.307830105175185 ], [ -5.209418097367291, 9.302869167777885 ], [ -5.201304896803549, 9.297210598390393 ], [ -5.194328578700947, 9.295040188054202 ], [ -5.187558966173356, 9.294316718541722 ], [ -5.182339647256924, 9.295815335309442 ], [ -5.177792121009588, 9.298063259112098 ], [ -5.174226446693183, 9.300931301438425 ], [ -5.16663001096623, 9.308527737165321 ], [ -5.160790575324825, 9.315659084898812 ], [ -5.156088019446543, 9.318682155956708 ], [ -5.14812984941301, 9.320542507031064 ], [ -5.04560380687019, 9.30333425487197 ], [ -5.030565965047231, 9.298915919833803 ], [ -5.019145474384118, 9.293309028189071 ], [ -5.016096564005238, 9.281681830152309 ], [ -5.012375860957206, 9.251037705725537 ], [ -5.012427536901328, 9.237214259830239 ], [ -5.011704067388791, 9.229927883365121 ], [ -5.009533657052657, 9.222331448537489 ], [ -5.00400427887439, 9.212254543212566 ], [ -5.00054195824481, 9.207577825756061 ], [ -4.990568406606712, 9.198276069485019 ], [ -4.987467821183031, 9.194322821540993 ], [ -4.9848839987975, 9.190059516133772 ], [ -4.973308477604178, 9.160733140422053 ], [ -4.968192510575932, 9.154273586256977 ], [ -4.962818162028555, 9.150010280849756 ], [ -4.957598843112123, 9.148227444141241 ], [ -4.948142056310871, 9.143809109103074 ], [ -4.937083299055018, 9.134197293570253 ], [ -4.932432420020177, 9.132026882334742 ], [ -4.917342902253154, 9.129701443266981 ], [ -4.912743700061696, 9.127815252871585 ], [ -4.904630500397275, 9.123164373836744 ], [ -4.894915330278252, 9.121536566759119 ], [ -4.890884568867762, 9.119133612426253 ], [ -4.887473924182245, 9.115877997371683 ], [ -4.88468339712108, 9.111692206330247 ], [ -4.883133104409239, 9.103553168244105 ], [ -4.882823045147404, 9.092055162315887 ], [ -4.896052211840129, 9.000587877028863 ], [ -4.895948859052623, 9.000045273770354 ], [ -4.895690476634172, 8.999425157045323 ], [ -4.895122035853262, 8.997642320336809 ], [ -4.896362271101964, 8.990821030965776 ], [ -4.900393031613135, 8.980563259386884 ], [ -4.913415492730792, 8.961572170519219 ], [ -4.921166958088634, 8.953872382004818 ], [ -4.928349981766246, 8.950926825312706 ], [ -4.936049771180024, 8.94581085918378 ], [ -4.936049771180024, 8.908965562111007 ], [ -4.571110806018908, 8.897312527451163 ], [ -4.558966844044619, 8.903539536720245 ], [ -4.547236294119671, 8.90726023976822 ], [ -4.540001592699355, 8.90726023976822 ], [ -4.531733364303307, 8.905012315066301 ], [ -4.495146449648928, 8.891111354805162 ], [ -4.491684129019347, 8.888320827743996 ], [ -4.488583542696347, 8.88452261033018 ], [ -4.483467576567421, 8.875840968985528 ], [ -4.474889288909537, 8.870544134803993 ], [ -4.461143358279344, 8.86488556631582 ], [ -4.427605353104582, 8.856901556961247 ], [ -4.413497687268489, 8.851553045936328 ], [ -4.404505987561265, 8.846592109438291 ], [ -4.394842495185003, 8.828815416498287 ], [ -4.391535203286992, 8.825094713450255 ], [ -4.387814500239017, 8.82191661186215 ], [ -4.369882777668067, 8.812201443541767 ], [ -4.362338018784556, 8.805767726899091 ], [ -4.35934078614838, 8.801736965488544 ], [ -4.356860316550353, 8.797396144816219 ], [ -4.353656379238544, 8.786983344505757 ], [ -4.345181444368166, 8.726780300370535 ], [ -4.3435277979695, 8.720966702251474 ], [ -4.34104732927085, 8.715463162494927 ], [ -4.336189743761679, 8.710114651469951 ], [ -4.330712043326173, 8.70778921150287 ], [ -4.324407517892666, 8.707169093878576 ], [ -4.301049770830275, 8.712440090537712 ], [ -4.293505011047444, 8.713370266524578 ], [ -4.282291225959341, 8.713370266524578 ], [ -4.275728319006703, 8.711354884920013 ], [ -4.271077439971862, 8.707995917077881 ], [ -4.268648647217276, 8.70357758203977 ], [ -4.266633267411351, 8.691872870536542 ], [ -4.263222621826571, 8.685749213155646 ], [ -4.257383185285789, 8.679832262249079 ], [ -4.237384406065473, 8.668592637839936 ], [ -4.232526820556359, 8.663786729174205 ], [ -4.227824265577397, 8.653244736755198 ], [ -4.224155239372806, 8.647715359476251 ], [ -4.217023891639315, 8.641669216461139 ], [ -4.210719367105128, 8.639188747762489 ], [ -4.204414841671621, 8.638878689399974 ], [ -4.198937140336739, 8.639963894118409 ], [ -4.188085089555273, 8.644304713891415 ], [ -4.181367152971745, 8.646165065865091 ], [ -4.171341925389527, 8.647172756217685 ], [ -4.165295783273791, 8.64554494914006 ], [ -4.160593228294886, 8.642599392448005 ], [ -4.152324998100198, 8.633452664009212 ], [ -4.144986944791697, 8.627561549725726 ], [ -4.138165656319984, 8.62570119955069 ], [ -4.131964483673983, 8.625623684285586 ], [ -4.126021694345752, 8.626631375537556 ], [ -4.120699021742496, 8.628336696980966 ], [ -4.111914027610283, 8.628569240977697 ], [ -4.100648565678796, 8.628026637719131 ], [ -4.078479377021665, 8.623143214687616 ], [ -4.066645474309212, 8.62205800996918 ], [ -4.057653773702725, 8.622109686812564 ], [ -4.0401871400245, 8.626631375537556 ], [ -4.032073940360078, 8.627406520994157 ], [ -4.019516567235826, 8.627251492262531 ], [ -4.003600226269441, 8.623453273949394 ], [ -4.00008622879642, 8.621592921975775 ], [ -3.997554084153649, 8.61955170284881 ], [ -3.987683885303056, 8.608157049708041 ], [ -3.982464564587985, 8.603506171572519 ], [ -3.976986864152479, 8.60203339322652 ], [ -3.971715868392607, 8.602653509951494 ], [ -3.956057908945354, 8.608777167332391 ], [ -3.946446091613836, 8.611412664762668 ], [ -3.931718309052712, 8.613893134360637 ], [ -3.927067430017871, 8.608725491388327 ], [ -3.921021287002816, 8.586633816197661 ], [ -3.922881638976492, 8.572629503149017 ], [ -3.950786912286162, 8.551752223886012 ], [ -3.958176642438104, 8.538497218771624 ], [ -3.975436571440639, 8.533097031802583 ], [ -3.981276007082045, 8.527619330467701 ], [ -3.97874386243933, 8.509765123161912 ], [ -3.94210527184083, 8.489404608735697 ], [ -3.932855189715269, 8.469586697568047 ], [ -3.93729936407442, 8.456719265181903 ], [ -3.943707241396055, 8.438244941151083 ], [ -3.964636195703861, 8.431346137414323 ], [ -3.978278774445869, 8.428736477506391 ], [ -3.981276007082045, 8.432043769404402 ], [ -3.987838914034683, 8.418917955499239 ], [ -3.985720181441252, 8.411011461409828 ], [ -3.979622361582756, 8.404913642450651 ], [ -3.974454717711069, 8.397265529880315 ], [ -3.972077602699187, 8.396102809896774 ], [ -3.968046841288697, 8.396438707580273 ], [ -3.963706020616371, 8.395611884380969 ], [ -3.96076046392426, 8.391064358133633 ], [ -3.960502082405185, 8.38362295203757 ], [ -3.962982550204515, 8.379385484152749 ], [ -3.966083135628196, 8.376491604304078 ], [ -3.967633429239356, 8.373080960517882 ], [ -3.970320604412393, 8.364115098333116 ], [ -3.974609748241278, 8.361402086537055 ], [ -3.974558071397894, 8.357939765008155 ], [ -3.964222784553897, 8.346700141498332 ], [ -3.959158494369035, 8.339000352084554 ], [ -3.9573498192388, 8.329362698130012 ], [ -3.95983028793745, 8.318846544132668 ], [ -3.967633429239356, 8.308511257288671 ], [ -3.982257859912295, 8.305849921436732 ], [ -4.031970587572573, 8.306263333486015 ], [ -4.04266760872315, 8.304790554240697 ], [ -4.04173743273634, 8.295127060965058 ], [ -4.03749996575084, 8.281019395128965 ], [ -4.036466436976468, 8.270968329125083 ], [ -4.031247118060037, 8.264172878175771 ], [ -4.007734341366756, 8.250065212339678 ], [ -4.001739875195085, 8.240246690332469 ], [ -4.00432369578192, 8.228386949198352 ], [ -4.019309861660815, 8.207742213932022 ], [ -4.02282385913378, 8.195546576013669 ], [ -4.019929979285109, 8.183764350144656 ], [ -4.012488573189103, 8.18074127908676 ], [ -4.002463344707621, 8.179914455887399 ], [ -3.991818000400428, 8.174746812015769 ], [ -3.953577440246704, 8.127824612315976 ], [ -3.940296596710596, 8.116094062391028 ], [ -3.942777065409246, 8.110978095362782 ], [ -3.950580206711152, 8.09997101495037 ], [ -3.954559292177578, 8.095630195177364 ], [ -3.977141892884049, 8.10283905727664 ], [ -3.994298468199759, 8.089687404949757 ], [ -4.005305548612171, 8.065166937903825 ], [ -4.010111457277958, 8.028321640831052 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-07", "NAME_1": "Lacs" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.740196092275824, 6.601147772751517 ], [ -4.76613766082437, 6.594791571373889 ], [ -4.768514776735572, 6.59138092668843 ], [ -4.769341599934876, 6.587660224539718 ], [ -4.765930955249416, 6.584714666948287 ], [ -4.763553840237535, 6.581071479165416 ], [ -4.76272701703823, 6.571666368308229 ], [ -4.76060828264616, 6.566550401279983 ], [ -4.757869432428379, 6.561666978248411 ], [ -4.755957403611319, 6.554070543420835 ], [ -4.758179490790894, 6.550194809842594 ], [ -4.762468633720459, 6.548231105980733 ], [ -4.778074917223648, 6.550814928366265 ], [ -4.78391435376443, 6.548489488399184 ], [ -4.785568000163096, 6.544200344570243 ], [ -4.786911587299926, 6.529240017113068 ], [ -4.791355759860437, 6.513943792871714 ], [ -4.793112759046608, 6.502704169361891 ], [ -4.793836228559087, 6.488803209100809 ], [ -4.790787319079527, 6.483144639713316 ], [ -4.786291469675575, 6.480431627017936 ], [ -4.780813768340749, 6.480741685380451 ], [ -4.775749478155888, 6.482291978092292 ], [ -4.766189337667811, 6.486167710771213 ], [ -4.76117672432639, 6.486942857127133 ], [ -4.745777147297531, 6.482989610082427 ], [ -4.739679328338354, 6.478881334306095 ], [ -4.734304978891657, 6.471749986572604 ], [ -4.728982306288401, 6.455601100710226 ], [ -4.728517218294996, 6.447694607520134 ], [ -4.731514451830492, 6.443896389206998 ], [ -4.735028449303513, 6.442966213220132 ], [ -4.738232388414019, 6.437772731826101 ], [ -4.737405565214658, 6.433664456049769 ], [ -4.733374802904848, 6.43084809056694 ], [ -4.728000454357471, 6.429375312220884 ], [ -4.722936164172665, 6.425267035545232 ], [ -4.722109340973304, 6.419220893429497 ], [ -4.722729457698335, 6.409919135359814 ], [ -4.72107581219899, 6.405087389171683 ], [ -4.716528285951654, 6.402839464469707 ], [ -4.705366176807615, 6.402296861211141 ], [ -4.70164547375964, 6.400669054133516 ], [ -4.701955532122099, 6.397258409448 ], [ -4.705469529595121, 6.394545395853299 ], [ -4.710533819779982, 6.391677354426349 ], [ -4.709862026211567, 6.388344224106618 ], [ -4.699630093054338, 6.378784084517861 ], [ -4.698028122599794, 6.373513087858726 ], [ -4.699061652273429, 6.366691799387013 ], [ -4.702058884909604, 6.359017849294275 ], [ -4.704746060082641, 6.343954169049653 ], [ -4.707743292718817, 6.336047674960241 ], [ -4.711877406916813, 6.331319281559558 ], [ -4.715443081233218, 6.328218695236558 ], [ -4.724589809672011, 6.308581651222198 ], [ -4.723349575322629, 6.305326036167628 ], [ -4.719215461124634, 6.304163316184088 ], [ -4.708880174280637, 6.305713608895928 ], [ -4.703815884095775, 6.305326036167628 ], [ -4.699733445841844, 6.301837877116327 ], [ -4.696994594724799, 6.296153469307171 ], [ -4.694204066764257, 6.288169459952599 ], [ -4.695030889963618, 6.284138699441428 ], [ -4.701542120972135, 6.282045803471021 ], [ -4.725933396808841, 6.253262030118606 ], [ -4.749136115139606, 6.243030096961377 ], [ -4.777919887592759, 6.241092231521236 ], [ -4.809339159274771, 6.242720037699542 ], [ -4.818847622020144, 6.246053168019273 ], [ -4.824221970567521, 6.246905828740978 ], [ -4.833006964699678, 6.249231268708058 ], [ -4.837761195622704, 6.251014106315949 ], [ -4.853160772651563, 6.25450226536725 ], [ -4.867423468118545, 6.255742498817256 ], [ -4.875795050201418, 6.255122382092225 ], [ -4.936979946267513, 6.236958116423921 ], [ -4.946488409912206, 6.235640366809491 ], [ -4.973308477604178, 6.236260484433785 ], [ -5.00684648277894, 6.241557319514698 ], [ -5.02498491002558, 6.251866767037654 ], [ -5.178722296996398, 6.377001247809346 ], [ -5.187197230967456, 6.380747789279042 ], [ -5.193295049926633, 6.380747789279042 ], [ -5.197894253017353, 6.378629054886972 ], [ -5.215309210751457, 6.366769313752798 ], [ -5.234946254765873, 6.372789618346189 ], [ -5.269982875809092, 6.360723170737742 ], [ -5.286571011243211, 6.365761624299523 ], [ -5.30346920414047, 6.382711493140903 ], [ -5.310910610236476, 6.398576158163166 ], [ -5.312150844585801, 6.41769643824 ], [ -5.310807257448971, 6.444594021197133 ], [ -5.313907842872652, 6.450485134581299 ], [ -5.320264045149599, 6.455420234456255 ], [ -5.324398159347595, 6.461001288578586 ], [ -5.320729132243684, 6.468804429880549 ], [ -5.315354783696307, 6.474773056731181 ], [ -5.312719285366711, 6.47955312697519 ], [ -5.310807257448971, 6.492368883417214 ], [ -5.305639613577341, 6.507277533131628 ], [ -5.308171759119375, 6.51138580980728 ], [ -5.320729132243684, 6.512858588153335 ], [ -5.336852178785023, 6.518982245534175 ], [ -5.324036424141696, 6.537456570464371 ], [ -5.314011195660157, 6.551745103453754 ], [ -5.317628546820004, 6.567480577266792 ], [ -5.308533494325332, 6.589158840408174 ], [ -5.32083248503119, 6.602077947839007 ], [ -5.343621792211934, 6.608098253331718 ], [ -5.398088751694559, 6.607142238923188 ], [ -5.409405889570166, 6.613989365816565 ], [ -5.413798387085876, 6.633290513946065 ], [ -5.413402002800183, 6.640095098410029 ], [ -5.413333299092471, 6.641274522401261 ], [ -5.409922655306332, 6.691478176476664 ], [ -5.413798387085876, 6.712097073321274 ], [ -5.424081997086489, 6.734602158762584 ], [ -5.434882371024628, 6.758140773877585 ], [ -5.437104458204203, 6.766719062434788 ], [ -5.486042038609185, 6.813124498196999 ], [ -5.495705531884823, 6.824751695334442 ], [ -5.501493293380804, 6.846559150584312 ], [ -5.528778449066181, 6.8779009061019 ], [ -5.537356736724007, 6.89645274539788 ], [ -5.535496384750388, 6.914849555062915 ], [ -5.514619106386647, 6.93133433681021 ], [ -5.509399786570896, 6.948284207450229 ], [ -5.507694465127486, 6.964484768357352 ], [ -5.498961146939394, 6.992855128761164 ], [ -5.495808884672272, 7.000606594119006 ], [ -5.488780889726286, 7.012285468099833 ], [ -5.478548956569114, 7.016083686412969 ], [ -5.466404994594825, 7.022052314162977 ], [ -5.462322557240213, 7.025152900485978 ], [ -5.459221970917213, 7.028976956321458 ], [ -5.458705206979744, 7.033162747362894 ], [ -5.461082322890888, 7.037193507874065 ], [ -5.480719366905248, 7.042929592526662 ], [ -5.485576952414419, 7.045022488497011 ], [ -5.48981441939992, 7.047502957195718 ], [ -5.494103563228862, 7.050784409772689 ], [ -5.498599411733494, 7.055667832804204 ], [ -5.503508674086049, 7.063031724534426 ], [ -5.506609258610411, 7.073806260950164 ], [ -5.50717770029064, 7.081428534199461 ], [ -5.505989141885379, 7.087552192479677 ], [ -5.500459763707113, 7.100652167063856 ], [ -5.492811652036096, 7.129358425151167 ], [ -5.493948533597973, 7.135327052901175 ], [ -5.497255824596664, 7.140313828720195 ], [ -5.524282598762909, 7.150700792407633 ], [ -5.531207240921447, 7.152483629116205 ], [ -5.537666795086523, 7.153181261106283 ], [ -5.547020229999646, 7.151630968394443 ], [ -5.552291225759461, 7.149615586789878 ], [ -5.555391812082462, 7.147135118091228 ], [ -5.559577603123898, 7.144499619761632 ], [ -5.564125129371234, 7.14232921032476 ], [ -5.569447801075171, 7.140933946344546 ], [ -5.574770473678427, 7.141011460710331 ], [ -5.581074998212614, 7.142251695059656 ], [ -5.587224494015175, 7.144964707755037 ], [ -5.595751104829617, 7.151010849870829 ], [ -5.600867071857863, 7.156669420157584 ], [ -5.603967658180864, 7.167159735733208 ], [ -5.60432939338682, 7.173438421845674 ], [ -5.605776333311155, 7.179407050494945 ], [ -5.617661911967673, 7.187236029319308 ], [ -5.634818488182702, 7.201136990479711 ], [ -5.642363247066214, 7.203772487909987 ], [ -5.648874478074731, 7.204392605534281 ], [ -5.654662237772072, 7.204160061537607 ], [ -5.659726527956934, 7.205012722259312 ], [ -5.664480759779224, 7.207493190957962 ], [ -5.668304815614761, 7.211756497264503 ], [ -5.674712693835772, 7.223642075921077 ], [ -5.676159633760108, 7.228525498952592 ], [ -5.675022752198288, 7.232711289994029 ], [ -5.6694416980759, 7.235734361051925 ], [ -5.665565965396979, 7.238757432109765 ], [ -5.662930467067383, 7.243098252782147 ], [ -5.664894171828564, 7.248085029500487 ], [ -5.662155320711463, 7.25699921304323 ], [ -5.632803106578137, 7.253356025260359 ], [ -5.616473355361052, 7.253666082723498 ], [ -5.501441615638043, 7.282217312079297 ], [ -5.459893765384948, 7.299503079503495 ], [ -5.452865770438962, 7.3007433129535 ], [ -5.445424364342955, 7.300433253691665 ], [ -5.436484340579852, 7.29671255154301 ], [ -5.430283168833171, 7.291674098880549 ], [ -5.425425584223319, 7.286093043858898 ], [ -5.40522009942805, 7.256921697778125 ], [ -5.38770178890644, 7.23774974175717 ], [ -5.381810674622955, 7.23333140671906 ], [ -5.375712855663778, 7.230075792563753 ], [ -5.369408332028911, 7.227905382227618 ], [ -5.361811896301958, 7.227595322965783 ], [ -5.352510138232276, 7.228913072580212 ], [ -5.321039190606143, 7.23736216902887 ], [ -5.314424607709498, 7.23751719776044 ], [ -5.295614385995123, 7.2344941267026 ], [ -5.288586391948456, 7.236276964310434 ], [ -5.280989956221504, 7.241237900808471 ], [ -5.262541469713085, 7.264595648770182 ], [ -5.254790005254563, 7.272347113228705 ], [ -5.24259436733621, 7.27785065388457 ], [ -5.234532842716533, 7.278729153027996 ], [ -5.227194790307351, 7.278496609031265 ], [ -5.221303676923185, 7.280356960105621 ], [ -5.215722621901477, 7.287023219845707 ], [ -5.205025600750901, 7.310535997438308 ], [ -5.186887172604941, 7.330922349386924 ], [ -5.074749315428562, 7.384924220876087 ], [ -5.064362351741124, 7.393399155746408 ], [ -5.058161179994443, 7.400840561842415 ], [ -5.055939092814867, 7.407119248854258 ], [ -5.049686245124121, 7.4198574891318 ], [ -5.045707159657695, 7.426058660878482 ], [ -5.04100460467879, 7.431794745531079 ], [ -5.035371872813698, 7.437298285287625 ], [ -5.028860642704501, 7.442336737050766 ], [ -5.014908005599978, 7.450734158454623 ], [ -4.958529019098933, 7.471688951184149 ], [ -4.946178350650371, 7.47920787254526 ], [ -4.938220180616838, 7.486726793007051 ], [ -4.923337368424825, 7.514347846375983 ], [ -4.905974086634785, 7.535767727098914 ], [ -4.894295212653958, 7.54165884048308 ], [ -4.878792283736914, 7.545612087527786 ], [ -4.819674445219505, 7.549255276210033 ], [ -4.811974656705047, 7.548712672951467 ], [ -4.803654750566295, 7.545922145890302 ], [ -4.790735643135406, 7.53801565180089 ], [ -4.772390509414492, 7.519773870867425 ], [ -4.766706101605337, 7.51605316781945 ], [ -4.741229621050195, 7.513262640758228 ], [ -4.661027797694715, 7.516208197450339 ], [ -4.636946580220524, 7.470267848782157 ], [ -4.634621141152763, 7.464066677035532 ], [ -4.632088995610673, 7.448951320846788 ], [ -4.670639614126912, 7.449106350477678 ], [ -4.696581182675459, 7.442336737050766 ], [ -4.709396938218106, 7.436368110200135 ], [ -4.725830044021336, 7.426833808133722 ], [ -4.730480923056177, 7.416653550920614 ], [ -4.731617803718677, 7.406111558501607 ], [ -4.708931851124021, 7.280667019367456 ], [ -4.708363410343111, 7.269169013439182 ], [ -4.759523077927724, 7.104527899742777 ], [ -4.767894660010541, 7.085846869237628 ], [ -4.770581834284258, 7.076131700017925 ], [ -4.80143266428604, 7.027504177076082 ], [ -4.814816859710334, 7.015231024791944 ], [ -4.817400682095808, 7.010347601760373 ], [ -4.81822750529517, 7.005154120366342 ], [ -4.817865770089213, 7.000580755697285 ], [ -4.817504034883314, 6.999185491717071 ], [ -4.808408983287961, 6.977067979004005 ], [ -4.799417283580794, 6.953245143948209 ], [ -4.800037401205088, 6.947509060194932 ], [ -4.801587693916929, 6.940196845308151 ], [ -4.808202276813631, 6.925003973854302 ], [ -4.808719040751157, 6.918105170117485 ], [ -4.807633836032721, 6.911361396011614 ], [ -4.801484341129424, 6.89699534775707 ], [ -4.80107092908014, 6.889631456026848 ], [ -4.803603074622231, 6.882422593927572 ], [ -4.807168748039317, 6.877823390836795 ], [ -4.810889451986611, 6.874257717419709 ], [ -4.819674445219505, 6.869296780022353 ], [ -4.911141729607152, 6.827955634444947 ], [ -4.918789842177489, 6.827955634444947 ], [ -4.923337368424825, 6.828937486375878 ], [ -4.931398892145182, 6.832916570942984 ], [ -4.954033168795718, 6.821418565014767 ], [ -4.955170050357538, 6.816380113251626 ], [ -4.955273403145043, 6.81203929347862 ], [ -4.959149135823964, 6.788604031151124 ], [ -4.971603156160711, 6.748193061560528 ], [ -4.96715898270088, 6.733749498040879 ], [ -4.961629605421933, 6.729951279727743 ], [ -4.953826463220707, 6.722819931994252 ], [ -4.943697881951721, 6.715921129156754 ], [ -4.941217414152334, 6.710081691716709 ], [ -4.94194088366487, 6.705430813581188 ], [ -4.94462805793853, 6.701012478543021 ], [ -4.947418585899015, 6.689385281405578 ], [ -4.953206345596357, 6.67749970095042 ], [ -4.954033168795718, 6.665329902353108 ], [ -4.951345993622738, 6.658560288926196 ], [ -4.938633591766859, 6.644297594358477 ], [ -4.932122361657662, 6.641119492770372 ], [ -4.926024542698485, 6.639646715323636 ], [ -4.923078986006431, 6.636158556272335 ], [ -4.921373663663644, 6.631430161972389 ], [ -4.920856898826855, 6.626365871787527 ], [ -4.921838751657049, 6.622567654373711 ], [ -4.924939337980049, 6.620319728772472 ], [ -4.92705807057348, 6.617451687345465 ], [ -4.927109748316241, 6.607839870913324 ], [ -4.921477017350469, 6.599985052767977 ], [ -4.916309372579462, 6.595101629736405 ], [ -4.910418260094616, 6.592621161037755 ], [ -4.905043910647976, 6.59176850031605 ], [ -4.899979621362434, 6.59215607304435 ], [ -4.896465622990092, 6.594636541743 ], [ -4.895328742327592, 6.599132392046272 ], [ -4.895483771059219, 6.603783271081056 ], [ -4.894450243184167, 6.607684841282378 ], [ -4.890884568867762, 6.610320338712654 ], [ -4.885406866633616, 6.611173001232999 ], [ -4.873159551871822, 6.611870632323814 ], [ -4.867940232955391, 6.613188381038924 ], [ -4.863754441913954, 6.615591335371846 ], [ -4.856158006187059, 6.621792507118471 ], [ -4.851817186414053, 6.624428005448067 ], [ -4.84711463143509, 6.626520901418473 ], [ -4.84189531072002, 6.627528590871748 ], [ -4.837037726110168, 6.627993678865153 ], [ -4.823085089904964, 6.625048123072418 ], [ -4.818124151608345, 6.625358181434933 ], [ -4.813369919785998, 6.626443386153312 ], [ -4.809029100012992, 6.626210842156638 ], [ -4.740196092275824, 6.601147772751517 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "CI-14", "NAME_1": "Worodougou" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.105745814717579, 7.618398342309661 ], [ -6.123574185400344, 7.643461411714782 ], [ -6.140369024610777, 7.654313463395624 ], [ -6.166930710783674, 7.662530014948231 ], [ -6.204809535731499, 7.678213812817205 ], [ -6.213904588226171, 7.684414985463206 ], [ -6.218348760786682, 7.690151069216483 ], [ -6.221914435103088, 7.721027736740666 ], [ -6.223413051870864, 7.726453762131428 ], [ -6.225376755732725, 7.731285509218878 ], [ -6.236745571351037, 7.750199082821382 ], [ -6.248837855582565, 7.776734931471879 ], [ -6.279585333696218, 7.777975164921884 ], [ -6.428723516676939, 7.742370103097755 ], [ -6.458850877166242, 7.740974840016861 ], [ -6.481691860291107, 7.742680162359591 ], [ -6.630416633021184, 7.785597439070557 ], [ -6.997215949256656, 7.764100043082522 ], [ -7.025637987403229, 7.757666327339109 ], [ -7.047652147328733, 7.744462999068162 ], [ -7.071630011116156, 7.719477444028826 ], [ -7.082637090629248, 7.745780747783272 ], [ -7.08904496885026, 7.78045563451991 ], [ -7.092765671898235, 7.845800483205721 ], [ -7.094832730346241, 7.852854316573428 ], [ -7.103772752310704, 7.863551336824742 ], [ -7.105839809859333, 7.873731594037849 ], [ -7.104702928297513, 7.889854641478507 ], [ -7.102739224435652, 7.896391710009425 ], [ -7.098966843644916, 7.903833116105432 ], [ -7.088683233644304, 7.916700548491519 ], [ -7.078554653274637, 7.926105658449387 ], [ -7.071733363903604, 7.937965400482824 ], [ -7.071630011116156, 7.958455105218945 ], [ -7.083825649034509, 7.989254259276606 ], [ -7.100982225249481, 8.031112168791537 ], [ -7.105839809859333, 8.051550198482857 ], [ -7.105839809859333, 8.086302597786641 ], [ -7.103566046735693, 8.094880886343844 ], [ -7.094264288666011, 8.108161728980576 ], [ -7.092765671898235, 8.116094062391028 ], [ -7.098605109338337, 8.132475491350817 ], [ -7.107390102571173, 8.145446274725771 ], [ -7.11214433439352, 8.159243883098725 ], [ -7.105839809859333, 8.178183295122949 ], [ -7.117828742202676, 8.192058416962368 ], [ -7.130437791271049, 8.217870795201009 ], [ -7.136793992648677, 8.24275299745284 ], [ -7.126355353017118, 8.25918610325607 ], [ -7.126510382648064, 8.303601995835436 ], [ -7.127285529003984, 8.309415594853817 ], [ -7.124133266736862, 8.314944973032084 ], [ -7.112661099230365, 8.322799791177431 ], [ -7.13198808398289, 8.335021267517448 ], [ -7.147284308224243, 8.350885932539768 ], [ -7.157412888593967, 8.370548814076471 ], [ -7.167231410601119, 8.432043769404402 ], [ -7.167231410601119, 8.472997341354187 ], [ -7.173329229560295, 8.495760810113268 ], [ -7.186455044364834, 8.523614407478931 ], [ -7.191726040124649, 8.561209010687264 ], [ -7.198960740645646, 8.5819570987411 ], [ -7.209657761796279, 8.600560613981145 ], [ -7.222525194182367, 8.610172431312662 ], [ -7.210381232208135, 8.614409898298163 ], [ -7.209089321015369, 8.61955170284881 ], [ -7.216324022435685, 8.623453273949394 ], [ -7.229966600278374, 8.623815009155351 ], [ -7.220251431058728, 8.64226349476445 ], [ -7.21678911042909, 8.661642157259735 ], [ -7.215703904811392, 8.698926703004929 ], [ -7.203818325255497, 8.74690827080002 ], [ -7.202009650125262, 8.764116522959171 ], [ -7.200097622207522, 8.772643133773613 ], [ -7.191312628974629, 8.780988878334028 ], [ -7.188987189007548, 8.788301093220866 ], [ -7.190847540981224, 8.796000880835948 ], [ -7.199890915733192, 8.813338324204267 ], [ -7.202009650125262, 8.819048570435143 ], [ -7.203146531687082, 8.837264512946888 ], [ -7.207332322728519, 8.852974148338262 ], [ -7.215858934442281, 8.86449799178888 ], [ -7.229966600278374, 8.870234076441477 ], [ -7.222576870126488, 8.878889879364408 ], [ -7.217977667935031, 8.887881578172255 ], [ -7.215858934442281, 8.898449408113663 ], [ -7.215703904811392, 8.911833604437277 ], [ -7.209399380277205, 8.923383287208935 ], [ -7.20950273306471, 8.92922272374966 ], [ -7.219114548597531, 8.931703193347687 ], [ -7.226866013955373, 8.932323310072661 ], [ -7.231103480940874, 8.934519557931253 ], [ -7.233583949639581, 8.93870534897269 ], [ -7.232705451395475, 8.943020331223295 ], [ -7.230793422578415, 8.944958197562755 ], [ -7.21735755031068, 8.94542328555616 ], [ -7.192087775330549, 8.952709662021277 ], [ -7.178290167856971, 8.963122463231059 ], [ -7.162270474103082, 8.977695217060614 ], [ -7.150023159341345, 8.985395006474334 ], [ -7.140876430902551, 8.996479600353268 ], [ -7.139222785403206, 9.000200304300563 ], [ -7.139171107660502, 9.000355333032189 ], [ -7.137310756586146, 9.00268077209995 ], [ -7.134468552681597, 9.005083726432815 ], [ -7.12950761618356, 9.007254136769006 ], [ -7.123254766694117, 9.007796739128196 ], [ -7.114108039154701, 9.00554881442622 ], [ -7.108992072126455, 9.002913316096624 ], [ -7.106304896953418, 9.001052965022325 ], [ -7.105684780228444, 9.000355333032189 ], [ -7.105581427440939, 9.000122789035458 ], [ -7.105426397809993, 8.999967760303889 ], [ -7.103152634686353, 8.997719834702593 ], [ -7.099586961269267, 8.995394394735513 ], [ -7.094936082234426, 8.993146470932857 ], [ -7.08904496885026, 8.992138780580262 ], [ -7.07152665922797, 8.993456529295372 ], [ -7.065945604206263, 8.992758897305237 ], [ -7.061553106690553, 8.990510973502637 ], [ -7.058297491635926, 8.98684194639867 ], [ -7.047238735279393, 8.970486354961281 ], [ -7.043931444280759, 8.966688137547521 ], [ -7.039900681970892, 8.963510036858679 ], [ -7.03524980293605, 8.961029568160029 ], [ -7.029927131232114, 8.959298407395579 ], [ -7.024294399367022, 8.958316555464648 ], [ -7.017989874832892, 8.958006497102133 ], [ -7.001660121817167, 8.959608465758095 ], [ -6.973289761413355, 8.96529287446657 ], [ -6.966520147986444, 8.963820095221195 ], [ -6.961042445752298, 8.961339626522545 ], [ -6.957270066760202, 8.958058173046254 ], [ -6.95163733579443, 8.955655218713332 ], [ -6.944092576910919, 8.954957586723253 ], [ -6.932878790923496, 8.955577704347547 ], [ -6.926574266389309, 8.953872382004818 ], [ -6.921665004936017, 8.951159369309437 ], [ -6.914481981258461, 8.944260566471939 ], [ -6.91076127821043, 8.942632758494995 ], [ -6.907402310368354, 8.942710272860779 ], [ -6.905541958394679, 8.948911445506781 ], [ -6.905231899132843, 8.954957586723253 ], [ -6.90998613095519, 8.999890245038785 ], [ -6.90998613095519, 9.000122789035458 ], [ -6.910089483742695, 9.000510361763759 ], [ -6.910864630997935, 9.014850572495902 ], [ -6.910141159686759, 9.021620185023494 ], [ -6.907970750249945, 9.028984075854396 ], [ -6.901666225715758, 9.038595893185914 ], [ -6.898824021811151, 9.045908108072695 ], [ -6.897325405043432, 9.052264309450322 ], [ -6.891382615715145, 9.058232937200273 ], [ -6.881047328871148, 9.063271388963415 ], [ -6.841359828793088, 9.072573147033097 ], [ -6.829215867718119, 9.076784776496197 ], [ -6.816761847381372, 9.08515635857907 ], [ -6.807718471730084, 9.089497179251396 ], [ -6.783120490318368, 9.096163438092162 ], [ -6.74658525160811, 9.117815862811824 ], [ -6.71072180826485, 9.113087470310518 ], [ -6.718576626410197, 9.106653754567105 ], [ -6.719661831128633, 9.097093614079029 ], [ -6.70803463399119, 9.084226181692941 ], [ -6.700593227895183, 9.077404893221228 ], [ -6.696769172059646, 9.075234482885037 ], [ -6.691136440194555, 9.073374131810738 ], [ -6.606025356285159, 9.067302151273225 ], [ -6.596981980633927, 9.070351059853522 ], [ -6.586698370633314, 9.076164658871903 ], [ -6.569128384167584, 9.091047471963236 ], [ -6.563237270783418, 9.100116685136925 ], [ -6.561583625284072, 9.107273871292136 ], [ -6.570316941673525, 9.125903224953845 ], [ -6.571608852866291, 9.131019191982091 ], [ -6.571815558441301, 9.136522731738694 ], [ -6.570471971304414, 9.14163869876694 ], [ -6.568198208180775, 9.146289577801781 ], [ -6.565200974645279, 9.150010280849756 ], [ -6.561531948440688, 9.152955837541867 ], [ -6.555537482269017, 9.155358791874733 ], [ -6.547837693754559, 9.157012437374078 ], [ -6.53398841033686, 9.157012437374078 ], [ -6.526133592191513, 9.155513821505622 ], [ -6.520242478807347, 9.152878323176083 ], [ -6.50970048728766, 9.143033961847834 ], [ -6.504016078579184, 9.134662379765018 ], [ -6.500502082005482, 9.127505195408446 ], [ -6.4923372045983, 9.106033636942755 ], [ -6.48737626810032, 9.097429510863208 ], [ -6.481691860291107, 9.089497179251396 ], [ -6.474560512557616, 9.082210801886959 ], [ -6.470374722415499, 9.079187729929799 ], [ -6.465672165637955, 9.076862290862039 ], [ -6.460246141146513, 9.075467026881768 ], [ -6.451357795126171, 9.079497789191578 ], [ -6.440350714713702, 9.088101915271181 ], [ -6.420248581806618, 9.110994574340111 ], [ -6.402110154559978, 9.135902615013663 ], [ -6.396529100437647, 9.140398464417558 ], [ -6.385263637606784, 9.145049343452399 ], [ -6.377718878723272, 9.145591945811645 ], [ -6.370587530989781, 9.147064724157701 ], [ -6.365006475968073, 9.151017971202407 ], [ -6.359115362583907, 9.161818346039809 ], [ -6.353482631618135, 9.183987534696939 ], [ -6.34919348778925, 9.194090278443582 ], [ -6.346609666303038, 9.198276069485019 ], [ -6.336532761877493, 9.205639960315921 ], [ -6.30909257656117, 9.210910956075736 ], [ -6.289455531647491, 9.20579498904749 ], [ -6.283771124737598, 9.20579498904749 ], [ -6.276174689010702, 9.204942328325785 ], [ -6.264444139085754, 9.20253937399292 ], [ -6.243256802359554, 9.189982000868611 ], [ -6.219227260829427, 9.159957994066133 ], [ -6.215041469787991, 9.151483059195812 ], [ -6.214266323432071, 9.145591945811645 ], [ -6.214214646588687, 9.139700833326799 ], [ -6.215299852206442, 9.134042263039987 ], [ -6.217625291274203, 9.129236355273576 ], [ -6.220829230384709, 9.125102240176204 ], [ -6.231836309897801, 9.115102851015763 ], [ -6.237985805700362, 9.107428900923026 ], [ -6.252661912317421, 9.079962877185039 ], [ -6.254212205029262, 9.074226793431762 ], [ -6.254987352284502, 9.068464871256765 ], [ -6.254832322653556, 9.062496243506814 ], [ -6.253953822610811, 9.057380276478568 ], [ -6.252248501167401, 9.052186794185218 ], [ -6.247700974920065, 9.042859197693815 ], [ -6.237365688076068, 9.027821356770175 ], [ -6.234575161014902, 9.022472845745199 ], [ -6.2290974587807, 9.007254136769006 ], [ -6.227133754918839, 9.003533432821655 ], [ -6.224859991795199, 9.000432848297294 ], [ -6.224653286220189, 9.000200304300563 ], [ -6.2244982565893, 8.999967760303889 ], [ -6.159334275956098, 8.958213201777824 ], [ -6.139903936617372, 8.948756414976572 ], [ -6.135149704795026, 8.945190741559486 ], [ -6.131532355433876, 8.940152288897025 ], [ -6.129310269153621, 8.931393134085852 ], [ -6.127811652385844, 8.918422348912259 ], [ -6.126364711562189, 8.913151353152386 ], [ -6.108691372309011, 8.877003688969069 ], [ -5.956349250217727, 8.64058401084344 ], [ -5.948391079284875, 8.636010647073704 ], [ -5.742305467223559, 8.560898953224125 ], [ -5.610427212345996, 8.529247138444646 ], [ -5.605052862899299, 8.512762355798088 ], [ -5.523042365312904, 8.466176051983211 ], [ -5.534152797613501, 8.453877061277353 ], [ -5.543092821376604, 8.450078843863537 ], [ -5.567742478732441, 8.451887518993772 ], [ -5.586345993972429, 8.458192043527959 ], [ -5.595337693679653, 8.459354763511499 ], [ -5.60432939338682, 8.457210190697708 ], [ -5.613734504244007, 8.452507635718803 ], [ -5.619057175947944, 8.447830919161561 ], [ -5.615853236837438, 8.44568634724709 ], [ -5.606758185242086, 8.438115749941915 ], [ -5.578697882301412, 8.40483612718549 ], [ -5.567742478732441, 8.397265529880315 ], [ -5.563039923753479, 8.395146796387507 ], [ -5.559474250336393, 8.390444241408602 ], [ -5.554926724089057, 8.385741685530377 ], [ -5.546968553156205, 8.38362295203757 ], [ -5.512500372893896, 8.38362295203757 ], [ -5.507642788284045, 8.380832424077084 ], [ -5.505679084422241, 8.374553737964618 ], [ -5.504593878804485, 8.367784125437026 ], [ -5.50257849809924, 8.363753363127216 ], [ -5.454364386307418, 8.352513738718073 ], [ -5.447956508985726, 8.350110785284528 ], [ -5.427492641772005, 8.335822252295088 ], [ -5.416123827052957, 8.330473741270112 ], [ -5.411162888756337, 8.327295640581326 ], [ -5.406977097714901, 8.322799791177431 ], [ -5.396745163658409, 8.300888984039375 ], [ -5.392714403147181, 8.294868679445983 ], [ -5.381500617159759, 8.289287625323652 ], [ -5.367341273580905, 8.28536021580129 ], [ -5.354060430944116, 8.2774795601336 ], [ -5.345533820129731, 8.26011627924288 ], [ -5.365997687343395, 8.26011627924288 ], [ -5.34739417210335, 8.211488756301037 ], [ -5.345533820129731, 8.185934760480791 ], [ -5.359176397972419, 8.16451487885854 ], [ -5.374162562951938, 8.16451487885854 ], [ -5.388786993624876, 8.163791409346061 ], [ -5.402377896422763, 8.159243883098725 ], [ -5.391215786379462, 8.135731106405444 ], [ -5.393282843028771, 8.121855984566025 ], [ -5.401189338017559, 8.112838446437138 ], [ -5.413798387085876, 8.116094062391028 ], [ -5.421394822812829, 8.10245148454834 ], [ -5.435244106230527, 8.109324448964117 ], [ -5.451935593552832, 8.113665268737122 ], [ -5.466456672337586, 8.110874742575277 ], [ -5.474621547946072, 8.095630195177364 ], [ -5.490899624118356, 8.099738470953639 ], [ -5.520716925345823, 8.100436102943775 ], [ -5.531879035389181, 8.097258002254989 ], [ -5.537460090410832, 8.095010077553013 ], [ -5.536219855162187, 8.07955882458009 ], [ -5.536788295943097, 8.071264756863002 ], [ -5.539888882266098, 8.065528673109782 ], [ -5.54572831880688, 8.05914663331049 ], [ -5.603915981337479, 8.02113861715344 ], [ -5.629857549886026, 8.009976508009402 ], [ -5.672800665918032, 8.003129381116025 ], [ -5.706390347036916, 8.005558172971291 ], [ -5.715847133838167, 8.005248113709456 ], [ -5.730936651605191, 8.003439439478541 ], [ -5.739928351312358, 8.000493882786429 ], [ -5.740031704099863, 8.000183824423971 ], [ -5.740135056887368, 8.000028794793025 ], [ -5.749126755695215, 7.953029079828184 ], [ -5.748816698232019, 7.94346894023937 ], [ -5.744475876660374, 7.925485540825036 ], [ -5.740961880086729, 7.915305284511248 ], [ -5.739721645737347, 7.909646715123813 ], [ -5.739514940162394, 7.903523056843596 ], [ -5.740290085618938, 7.897786973090319 ], [ -5.74328731915449, 7.886986599152237 ], [ -5.747369758307684, 7.877297268354255 ], [ -5.761839159349734, 7.857582709074734 ], [ -5.7639062159991, 7.852931830039893 ], [ -5.76829871261549, 7.836266181139308 ], [ -5.768712123765511, 7.830194199702532 ], [ -5.76793697830891, 7.817714341843384 ], [ -5.765353155923435, 7.806836453539461 ], [ -5.760082160163563, 7.791488552454723 ], [ -5.760857305620164, 7.783814602361986 ], [ -5.763802863211595, 7.77487457949826 ], [ -5.773621385218746, 7.760301824769385 ], [ -5.779099086553629, 7.753842271503629 ], [ -5.795738897931813, 7.743920395809596 ], [ -5.825297816740886, 7.742757676725375 ], [ -5.835736457271707, 7.740819810385915 ], [ -5.84999915183937, 7.736013901720185 ], [ -5.869171107860325, 7.723120631811696 ], [ -5.887929652731316, 7.713276272282144 ], [ -5.90632646329567, 7.706687526907842 ], [ -5.983376024384029, 7.73671153371032 ], [ -5.997173630958287, 7.739734604768159 ], [ -6.00787065300824, 7.737719224062914 ], [ -6.040271775721862, 7.714361477000523 ], [ -6.068280401819095, 7.688445745974377 ], [ -6.071742723347995, 7.67751618082707 ], [ -6.07241451691641, 7.669609686737658 ], [ -6.06993404821776, 7.651677965066028 ], [ -6.069830695430255, 7.647337144393703 ], [ -6.073344692003957, 7.64087759022857 ], [ -6.076548631114463, 7.636071682462159 ], [ -6.105745814717579, 7.618398342309661 ] ] ] } }
+]
+}
diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/republic_of_serbia.geojson b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/republic_of_serbia.geojson
new file mode 100644
index 0000000000000000000000000000000000000000..d4c6f8b1fca01f9cea9a62836778e4cc66c615c5
--- /dev/null
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/republic_of_serbia.geojson
@@ -0,0 +1,32 @@
+{
+"type": "FeatureCollection",
+"name": "republic_of_serbia",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+"features": [
+{ "type": "Feature", "properties": { "ISO": "RS-01", "NAME_1": "Severno-Backi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.711888678000065, 46.158709866000081 ], [ 19.772983846000102, 46.131552226000039 ], [ 19.790450480000061, 46.129071758000052 ], [ 19.87364887199783, 46.152992385789958 ], [ 19.875097284112371, 46.152170315507647 ], [ 19.876699252768276, 46.150826728370816 ], [ 19.879128044623542, 46.14798452446621 ], [ 19.879903191878782, 46.146537584541875 ], [ 19.880368279872187, 46.144418850149805 ], [ 19.880161574297176, 46.142300117556374 ], [ 19.877732782441967, 46.137287503315576 ], [ 19.875097284112371, 46.134316108201801 ], [ 19.868947788309754, 46.130517889888665 ], [ 19.859542676553247, 46.125608629334749 ], [ 19.856907179123027, 46.124006659779525 ], [ 19.854581740055266, 46.122197983749913 ], [ 19.85230797693157, 46.119510810375573 ], [ 19.85153282967633, 46.117392075983503 ], [ 19.851429477788145, 46.115169989703247 ], [ 19.85173953615066, 46.112947903422992 ], [ 19.854891799317045, 46.102922674941453 ], [ 19.855873651247975, 46.100726427082918 ], [ 19.859335971877556, 46.094912828064537 ], [ 19.859801059871018, 46.092794094571786 ], [ 19.859697707083512, 46.090675361079036 ], [ 19.858199090315736, 46.08633454040671 ], [ 19.857889031953221, 46.084164130070519 ], [ 19.858044060684847, 46.076981106392907 ], [ 19.857475619903937, 46.071348375427135 ], [ 19.856493767973006, 46.068687039575195 ], [ 19.849879185076304, 46.060212103805497 ], [ 19.848845656301989, 46.057447415166052 ], [ 19.847502069165159, 46.051711331412776 ], [ 19.846365186703963, 46.049024156239796 ], [ 19.843988070792818, 46.0463886579102 ], [ 19.841662631725058, 46.044631660522668 ], [ 19.839027134294781, 46.043184718799694 ], [ 19.830500522581019, 46.039980781487827 ], [ 19.8278650251508, 46.038430487876667 ], [ 19.824971144402753, 46.036105047909587 ], [ 19.821198765410657, 46.032384344861612 ], [ 19.818253207819282, 46.028715317757701 ], [ 19.815772739120575, 46.024607041981369 ], [ 19.814222446408735, 46.022798366851134 ], [ 19.808796421017973, 46.017579047035383 ], [ 19.807917921874605, 46.016312975163657 ], [ 19.807556186668648, 46.015382799176791 ], [ 19.806626010681839, 46.009750068211076 ], [ 19.802905307633807, 46.003936469192695 ], [ 19.802491895584524, 46.002050278797299 ], [ 19.802595249271349, 45.997166855765784 ], [ 19.802130161277887, 45.995073960694697 ], [ 19.799391310160843, 45.989492906572366 ], [ 19.799184604585832, 45.98742584902368 ], [ 19.801303338078583, 45.975695299098732 ], [ 19.803215365996323, 45.969623318561275 ], [ 19.803938836408179, 45.964946601104714 ], [ 19.803783806777233, 45.962517809249448 ], [ 19.803267042839764, 45.960192369282368 ], [ 19.799753045366742, 45.951252346418642 ], [ 19.799546339791732, 45.948461819357476 ], [ 19.800321486147652, 45.941743882773949 ], [ 19.802336866852897, 45.938591620506884 ], [ 19.803628778045663, 45.936007799020672 ], [ 19.806160922688434, 45.928721422555554 ], [ 19.807504509825264, 45.925517483445105 ], [ 19.8078145690871, 45.92329539716485 ], [ 19.807297804250254, 45.921280016459548 ], [ 19.806574333838398, 45.920349840472738 ], [ 19.805592481907524, 45.919574693217498 ], [ 19.803163690052259, 45.918644518130009 ], [ 19.797582635030551, 45.917145901362233 ], [ 19.794895460756891, 45.915698961437897 ], [ 19.788797641797714, 45.911952419968202 ], [ 19.784560173912894, 45.910272936047136 ], [ 19.778203973434586, 45.907327379355024 ], [ 19.77195112484452, 45.904872748178775 ], [ 19.764923129898534, 45.902443956323509 ], [ 19.785800409161538, 45.880817369126248 ], [ 19.792414992058241, 45.873169257455231 ], [ 19.793758579195071, 45.87120555269405 ], [ 19.796239047893721, 45.864539292953964 ], [ 19.797272576668036, 45.862368883517149 ], [ 19.799081251798327, 45.860095120393453 ], [ 19.805592481907524, 45.853764757437602 ], [ 19.806987745887739, 45.851568507780371 ], [ 19.807349481093638, 45.849553127974445 ], [ 19.806367629162764, 45.84195669224755 ], [ 19.806626010681839, 45.837228298846867 ], [ 19.807246128306133, 45.834954534823908 ], [ 19.807969597818669, 45.833430081433107 ], [ 19.809778272948904, 45.830536201584437 ], [ 19.8109151554101, 45.82919261354823 ], [ 19.81318891763442, 45.827745672724575 ], [ 19.815359327970612, 45.827228908787106 ], [ 19.817839796669261, 45.82707388005548 ], [ 19.823937615628438, 45.82707388005548 ], [ 19.83458296083495, 45.827900702355521 ], [ 19.845176629198079, 45.807850247191141 ], [ 19.848845656301989, 45.803380235309589 ], [ 19.855046828048671, 45.798135077072118 ], [ 19.856132032767107, 45.796610622781998 ], [ 19.856752150391401, 45.794982814805053 ], [ 19.856803827234842, 45.792812405368181 ], [ 19.85556359198614, 45.78738637997742 ], [ 19.855615268829581, 45.784983424745235 ], [ 19.856183708711171, 45.782528795367568 ], [ 19.859594354296007, 45.775707505996593 ], [ 19.860627883070322, 45.772219346945292 ], [ 19.859025912615778, 45.771625067742661 ], [ 19.855718621617086, 45.769816393511746 ], [ 19.846158482028329, 45.763356839346613 ], [ 19.842902866074382, 45.762039089732184 ], [ 19.831844109717849, 45.759791165030208 ], [ 19.823627557265922, 45.757103989857228 ], [ 19.820113559792958, 45.756535549076318 ], [ 19.812723829641016, 45.756199653191402 ], [ 19.797582635030551, 45.756070461982233 ], [ 19.793965284770081, 45.755812079563782 ], [ 19.79045128819638, 45.755243638782872 ], [ 19.782234734845133, 45.752582302031612 ], [ 19.772571241569551, 45.750799466222361 ], [ 19.767403598597184, 45.749352525398706 ], [ 19.749833612131454, 45.741497708152679 ], [ 19.754691195841986, 45.732661038076401 ], [ 19.758618605364347, 45.72687327747974 ], [ 19.759445427664332, 45.723772691156739 ], [ 19.759445427664332, 45.720594591367274 ], [ 19.758721958151853, 45.717519843465993 ], [ 19.755414666253841, 45.712507229225253 ], [ 19.751745640049251, 45.7083731150272 ], [ 19.750970492794011, 45.706926174203545 ], [ 19.75112552332422, 45.705169175916694 ], [ 19.752210728042655, 45.703463854473284 ], [ 19.753916050385385, 45.701836046496339 ], [ 19.756551547815661, 45.699846503313438 ], [ 19.755621371828852, 45.693593654723372 ], [ 19.754691195841986, 45.690854804505591 ], [ 19.753347608705155, 45.688374334907621 ], [ 19.747456496220309, 45.682534898366839 ], [ 19.743684116328893, 45.678090724907008 ], [ 19.740428501274323, 45.673078111565587 ], [ 19.737224562163817, 45.665636705469581 ], [ 19.736604445438786, 45.662949531195864 ], [ 19.736397738964456, 45.660210680078819 ], [ 19.736604445438786, 45.654552109792007 ], [ 19.737689650157222, 45.649048570035461 ], [ 19.738878207663163, 45.64592214619006 ], [ 19.739343295656568, 45.643674221488084 ], [ 19.739394971600632, 45.641400458364444 ], [ 19.738929885405867, 45.639230048028253 ], [ 19.738154738150627, 45.637628079372348 ], [ 19.736966179745366, 45.636206976970414 ], [ 19.735364211089461, 45.634992581042752 ], [ 19.731643508041429, 45.633028876281571 ], [ 19.724873894614518, 45.630445054795416 ], [ 19.717587518149401, 45.628067938884271 ], [ 19.715417107813266, 45.627137762897405 ], [ 19.709629347216605, 45.624037177473724 ], [ 19.707303908148845, 45.623158678330299 ], [ 19.704771762606754, 45.6224352079185 ], [ 19.699087354797541, 45.62129832635668 ], [ 19.684204542605528, 45.618921210445478 ], [ 19.676453078147006, 45.623365383005989 ], [ 19.661570265055673, 45.630703437213811 ], [ 19.658262974056981, 45.632150377138146 ], [ 19.654077183015545, 45.633752345794107 ], [ 19.651028272636665, 45.634553331471068 ], [ 19.643638543384043, 45.636387844123703 ], [ 19.634285109370296, 45.638196520153258 ], [ 19.63009931832886, 45.639643460077593 ], [ 19.625551792081524, 45.641555487995333 ], [ 19.622709588176917, 45.64307994228551 ], [ 19.613769566212511, 45.648686834829562 ], [ 19.608446892709935, 45.651451524368326 ], [ 19.599971957839557, 45.654552109792007 ], [ 19.586536085571879, 45.660003974503809 ], [ 19.599300164271142, 45.66615346940705 ], [ 19.608498568653999, 45.669874173354401 ], [ 19.610720655833575, 45.671476142010306 ], [ 19.6119608901829, 45.673801581078067 ], [ 19.612064242970405, 45.676385403463598 ], [ 19.611444126245431, 45.678478299433948 ], [ 19.61061730304607, 45.679873562514899 ], [ 19.605036248024419, 45.685687161533281 ], [ 19.601573927394838, 45.691216538812171 ], [ 19.598990105908626, 45.694110419560218 ], [ 19.595217726017211, 45.696280828997033 ], [ 19.591290317394225, 45.697779445764809 ], [ 19.579249709106762, 45.700156562575273 ], [ 19.574082066134451, 45.702068590493013 ], [ 19.562816603303588, 45.708011379821301 ], [ 19.560387811448322, 45.709768378108151 ], [ 19.558424106687141, 45.711732082869332 ], [ 19.557132196393752, 45.713799140417962 ], [ 19.555685255570097, 45.717364813835047 ], [ 19.555375197207582, 45.718811753759383 ], [ 19.555633578726656, 45.720878811308069 ], [ 19.557028842706927, 45.723100898487644 ], [ 19.559199253043062, 45.725271307924515 ], [ 19.561834751372658, 45.727415879838986 ], [ 19.57361697814099, 45.736485093911938 ], [ 19.577596062708096, 45.740515855322428 ], [ 19.573927035604186, 45.742427883240168 ], [ 19.567312452707483, 45.745321763988215 ], [ 19.557907341850353, 45.748370673467775 ], [ 19.553359815603017, 45.750360215751357 ], [ 19.542042676828032, 45.758809313099277 ], [ 19.536616652336647, 45.762271632829595 ], [ 19.533619418801095, 45.763666896809809 ], [ 19.531293979733334, 45.764390367221665 ], [ 19.528865186978805, 45.764907132058454 ], [ 19.5256612478683, 45.765113836734145 ], [ 19.522508985601178, 45.764907132058454 ], [ 19.520080193745912, 45.764442044065049 ], [ 19.517754753778831, 45.76371857455257 ], [ 19.514912550773602, 45.762374986516363 ], [ 19.512225375600565, 45.760695501696034 ], [ 19.507987908615064, 45.757362372275622 ], [ 19.502458530436797, 45.751781318153292 ], [ 19.500443149731552, 45.750101834232225 ], [ 19.495688917909206, 45.746975410386881 ], [ 19.492898389948721, 45.745838527925685 ], [ 19.49077965735529, 45.74537343993228 ], [ 19.488557570175715, 45.745295925566495 ], [ 19.486645542257975, 45.74558014640661 ], [ 19.482614779948108, 45.746949571065841 ], [ 19.480599400142182, 45.747905585474371 ], [ 19.475173373852101, 45.751238714894725 ], [ 19.465096470325818, 45.755812079563782 ], [ 19.456569857712736, 45.760566311386128 ], [ 19.442203810357569, 45.767697659119676 ], [ 19.439878371289808, 45.769351305518285 ], [ 19.438431431365473, 45.771366686223587 ], [ 19.438018019316132, 45.773330390085391 ], [ 19.438018019316132, 45.778239651538684 ], [ 19.437294548904276, 45.780306708187993 ], [ 19.435950961767446, 45.782115383318285 ], [ 19.434297316268101, 45.783820706560334 ], [ 19.429336378870744, 45.78795481985901 ], [ 19.428302850096429, 45.789401759783345 ], [ 19.42778608615896, 45.790952053394506 ], [ 19.427889438946409, 45.792941596577407 ], [ 19.43140343641943, 45.799866237836568 ], [ 19.431300082732605, 45.801933295385254 ], [ 19.429904818752391, 45.80436208813984 ], [ 19.427631055628694, 45.806816718416769 ], [ 19.421378207937948, 45.812604479013487 ], [ 19.419414504076087, 45.814852402816086 ], [ 19.418794385552417, 45.815963446855562 ], [ 19.408769158869575, 45.822733059383154 ], [ 19.405616895703133, 45.825213528081804 ], [ 19.399157342437377, 45.831052965521906 ], [ 19.394868197709116, 45.834179389367307 ], [ 19.38980390842363, 45.836840725219247 ], [ 19.378383415961878, 45.841439928310024 ], [ 19.374559360126341, 45.843713691433663 ], [ 19.365826042837568, 45.85079336232377 ], [ 19.359469842359317, 45.856891181282947 ], [ 19.354663933693587, 45.861076972324383 ], [ 19.352545200200836, 45.863195705817134 ], [ 19.350994906589676, 45.865417792097389 ], [ 19.350323113920581, 45.867536526489459 ], [ 19.350323113920581, 45.86965525998221 ], [ 19.351201613063949, 45.874900418219681 ], [ 19.35104658433238, 45.877148342022338 ], [ 19.350581496338975, 45.879318753257849 ], [ 19.3487211443653, 45.88378876424008 ], [ 19.348307733215279, 45.885933336154494 ], [ 19.349031202727815, 45.893271389463052 ], [ 19.348514438790289, 45.903167425835989 ], [ 19.347842645221874, 45.908722643335295 ], [ 19.346292351610714, 45.912934271899132 ], [ 19.342571648562739, 45.919600532538539 ], [ 19.339419386295617, 45.92613760017008 ], [ 19.333838332173286, 45.932467963125987 ], [ 19.332288038562126, 45.934638373462121 ], [ 19.331409539418701, 45.936834622220033 ], [ 19.331047804212801, 45.939108385343673 ], [ 19.331099481056185, 45.941433824411433 ], [ 19.331667921837095, 45.943655910691689 ], [ 19.333218215448255, 45.9466014673838 ], [ 19.335491977672632, 45.949495348131791 ], [ 19.337920770427218, 45.951252346418642 ], [ 19.341589796631808, 45.953396918333112 ], [ 19.343966913442273, 45.955386461515957 ], [ 19.345207146892278, 45.956781725496228 ], [ 19.346085646035704, 45.958228665420563 ], [ 19.346499058085044, 45.959572252557393 ], [ 19.346550734029108, 45.961019192481729 ], [ 19.346137322879144, 45.961742661994208 ], [ 19.339109327933102, 45.975617783833627 ], [ 19.338747592727202, 45.978020738166492 ], [ 19.338954299201532, 45.980346178133573 ], [ 19.341124708638404, 45.98685740824277 ], [ 19.341228062325172, 45.988123481013815 ], [ 19.340814650275888, 45.989441229728925 ], [ 19.339781122400836, 45.990526435346681 ], [ 19.338282504733797, 45.991327420124321 ], [ 19.336370476816057, 45.991818346539446 ], [ 19.328205601207515, 45.992231756790147 ], [ 19.326500277965465, 45.992748522526256 ], [ 19.324639926891109, 45.994092108763766 ], [ 19.317715284732571, 46.002282822794029 ], [ 19.316061639233226, 46.00460826276111 ], [ 19.313684523322081, 46.010034288151871 ], [ 19.311979200979351, 46.011972154491332 ], [ 19.309705437855655, 46.013677476834062 ], [ 19.302987502171447, 46.017811591032057 ], [ 19.300558709416862, 46.019878648580743 ], [ 19.298314567000062, 46.022122790000068 ], [ 19.30696577900008, 46.026649069000129 ], [ 19.325155884000139, 46.02949127300009 ], [ 19.362156209000091, 46.029646301000056 ], [ 19.378899373000138, 46.033677064000031 ], [ 19.389131307000127, 46.041531881000068 ], [ 19.396572713000126, 46.051557108000097 ], [ 19.404737590000053, 46.060238750000067 ], [ 19.417243286000144, 46.064321188000079 ], [ 19.428302043000144, 46.065509746000075 ], [ 19.436880330000093, 46.067990214000062 ], [ 19.45372684700007, 46.077550355000071 ], [ 19.4608581950001, 46.084474996000054 ], [ 19.465922485000078, 46.091968079000068 ], [ 19.472950480000094, 46.098686016 ], [ 19.499305461000063, 46.108607890000101 ], [ 19.496721639000043, 46.116876120000043 ], [ 19.489280233000045, 46.126022848000034 ], [ 19.487523234000065, 46.134239401000073 ], [ 19.501992635000079, 46.145608215000053 ], [ 19.525247029000099, 46.156408590000083 ], [ 19.549948364000102, 46.164160055000096 ], [ 19.568448527000044, 46.166433818000101 ], [ 19.589739217000044, 46.165968730000074 ], [ 19.647823527000099, 46.173875224000128 ], [ 19.669320923000043, 46.173100077000029 ], [ 19.690094848000086, 46.168397522000035 ], [ 19.711888678000065, 46.158709866000081 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-05", "NAME_1": "Zapadno-Backi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.235652303000109, 45.977711487000036 ], [ 19.263454223000082, 45.981432190000035 ], [ 19.274823039000069, 45.991612448000112 ], [ 19.279473918000122, 46.003808086000035 ], [ 19.286915324000063, 46.016158753000084 ], [ 19.298314567000062, 46.022122790000068 ], [ 19.300558709416862, 46.019878648580743 ], [ 19.302987502171447, 46.017811591032057 ], [ 19.309705437855655, 46.013677476834062 ], [ 19.311979200979351, 46.011972154491332 ], [ 19.313684523322081, 46.010034288151871 ], [ 19.316061639233226, 46.00460826276111 ], [ 19.317715284732571, 46.002282822794029 ], [ 19.324639926891109, 45.994092108763766 ], [ 19.326500277965465, 45.992748522526256 ], [ 19.328205601207515, 45.992231756790147 ], [ 19.336370476816057, 45.991818346539446 ], [ 19.338282504733797, 45.991327420124321 ], [ 19.339781122400836, 45.990526435346681 ], [ 19.340814650275888, 45.989441229728925 ], [ 19.341228062325172, 45.988123481013815 ], [ 19.341124708638404, 45.98685740824277 ], [ 19.338954299201532, 45.980346178133573 ], [ 19.338747592727202, 45.978020738166492 ], [ 19.339109327933102, 45.975617783833627 ], [ 19.346137322879144, 45.961742661994208 ], [ 19.346550734029108, 45.961019192481729 ], [ 19.346499058085044, 45.959572252557393 ], [ 19.346085646035704, 45.958228665420563 ], [ 19.345207146892278, 45.956781725496228 ], [ 19.343966913442273, 45.955386461515957 ], [ 19.341589796631808, 45.953396918333112 ], [ 19.337920770427218, 45.951252346418642 ], [ 19.335491977672632, 45.949495348131791 ], [ 19.333218215448255, 45.9466014673838 ], [ 19.331667921837095, 45.943655910691689 ], [ 19.331099481056185, 45.941433824411433 ], [ 19.331047804212801, 45.939108385343673 ], [ 19.331409539418701, 45.936834622220033 ], [ 19.332288038562126, 45.934638373462121 ], [ 19.333838332173286, 45.932467963125987 ], [ 19.339419386295617, 45.92613760017008 ], [ 19.342571648562739, 45.919600532538539 ], [ 19.346292351610714, 45.912934271899132 ], [ 19.347842645221874, 45.908722643335295 ], [ 19.348514438790289, 45.903167425835989 ], [ 19.349031202727815, 45.893271389463052 ], [ 19.348307733215279, 45.885933336154494 ], [ 19.3487211443653, 45.88378876424008 ], [ 19.350581496338975, 45.879318753257849 ], [ 19.35104658433238, 45.877148342022338 ], [ 19.351201613063949, 45.874900418219681 ], [ 19.350323113920581, 45.86965525998221 ], [ 19.350323113920581, 45.867536526489459 ], [ 19.350994906589676, 45.865417792097389 ], [ 19.352545200200836, 45.863195705817134 ], [ 19.354663933693587, 45.861076972324383 ], [ 19.359469842359317, 45.856891181282947 ], [ 19.365826042837568, 45.85079336232377 ], [ 19.374559360126341, 45.843713691433663 ], [ 19.378383415961878, 45.841439928310024 ], [ 19.38980390842363, 45.836840725219247 ], [ 19.394868197709116, 45.834179389367307 ], [ 19.399157342437377, 45.831052965521906 ], [ 19.405616895703133, 45.825213528081804 ], [ 19.408769158869575, 45.822733059383154 ], [ 19.418794385552417, 45.815963446855562 ], [ 19.419414504076087, 45.814852402816086 ], [ 19.421378207937948, 45.812604479013487 ], [ 19.427631055628694, 45.806816718416769 ], [ 19.429904818752391, 45.80436208813984 ], [ 19.431300082732605, 45.801933295385254 ], [ 19.43140343641943, 45.799866237836568 ], [ 19.427889438946409, 45.792941596577407 ], [ 19.42778608615896, 45.790952053394506 ], [ 19.428302850096429, 45.789401759783345 ], [ 19.429336378870744, 45.78795481985901 ], [ 19.434297316268101, 45.783820706560334 ], [ 19.435950961767446, 45.782115383318285 ], [ 19.437294548904276, 45.780306708187993 ], [ 19.438018019316132, 45.778239651538684 ], [ 19.438018019316132, 45.773330390085391 ], [ 19.438431431365473, 45.771366686223587 ], [ 19.439878371289808, 45.769351305518285 ], [ 19.442203810357569, 45.767697659119676 ], [ 19.456569857712736, 45.760566311386128 ], [ 19.465096470325818, 45.755812079563782 ], [ 19.475173373852101, 45.751238714894725 ], [ 19.480599400142182, 45.747905585474371 ], [ 19.482614779948108, 45.746949571065841 ], [ 19.486645542257975, 45.74558014640661 ], [ 19.488557570175715, 45.745295925566495 ], [ 19.49077965735529, 45.74537343993228 ], [ 19.492898389948721, 45.745838527925685 ], [ 19.495688917909206, 45.746975410386881 ], [ 19.500443149731552, 45.750101834232225 ], [ 19.502458530436797, 45.751781318153292 ], [ 19.507987908615064, 45.757362372275622 ], [ 19.512225375600565, 45.760695501696034 ], [ 19.514912550773602, 45.762374986516363 ], [ 19.517754753778831, 45.76371857455257 ], [ 19.520080193745912, 45.764442044065049 ], [ 19.522508985601178, 45.764907132058454 ], [ 19.5256612478683, 45.765113836734145 ], [ 19.528865186978805, 45.764907132058454 ], [ 19.531293979733334, 45.764390367221665 ], [ 19.533619418801095, 45.763666896809809 ], [ 19.536616652336647, 45.762271632829595 ], [ 19.542042676828032, 45.758809313099277 ], [ 19.553359815603017, 45.750360215751357 ], [ 19.557907341850353, 45.748370673467775 ], [ 19.567312452707483, 45.745321763988215 ], [ 19.573927035604186, 45.742427883240168 ], [ 19.577596062708096, 45.740515855322428 ], [ 19.57361697814099, 45.736485093911938 ], [ 19.561834751372658, 45.727415879838986 ], [ 19.559199253043062, 45.725271307924515 ], [ 19.557028842706927, 45.723100898487644 ], [ 19.555633578726656, 45.720878811308069 ], [ 19.555375197207582, 45.718811753759383 ], [ 19.555685255570097, 45.717364813835047 ], [ 19.557132196393752, 45.713799140417962 ], [ 19.558424106687141, 45.711732082869332 ], [ 19.560387811448322, 45.709768378108151 ], [ 19.562816603303588, 45.708011379821301 ], [ 19.574082066134451, 45.702068590493013 ], [ 19.579249709106762, 45.700156562575273 ], [ 19.591290317394225, 45.697779445764809 ], [ 19.595217726017211, 45.696280828997033 ], [ 19.598990105908626, 45.694110419560218 ], [ 19.601573927394838, 45.691216538812171 ], [ 19.605036248024419, 45.685687161533281 ], [ 19.61061730304607, 45.679873562514899 ], [ 19.611444126245431, 45.678478299433948 ], [ 19.612064242970405, 45.676385403463598 ], [ 19.6119608901829, 45.673801581078067 ], [ 19.610720655833575, 45.671476142010306 ], [ 19.608498568653999, 45.669874173354401 ], [ 19.599300164271142, 45.66615346940705 ], [ 19.586536085571879, 45.660003974503809 ], [ 19.577441033976527, 45.647601630111126 ], [ 19.57459883007192, 45.640625312008524 ], [ 19.573565301297606, 45.638919990565114 ], [ 19.57227339010484, 45.637421372898018 ], [ 19.564625278433823, 45.632150377138146 ], [ 19.562454868097689, 45.630134996432901 ], [ 19.557907341850353, 45.624605618254634 ], [ 19.556822137131917, 45.622745266281015 ], [ 19.556357049138512, 45.620626532788208 ], [ 19.556615430657587, 45.618507799295458 ], [ 19.557183872337816, 45.617035020949459 ], [ 19.560077752186487, 45.611479804349472 ], [ 19.563230015352929, 45.607035630889641 ], [ 19.563798455234519, 45.60564036690937 ], [ 19.564056837652913, 45.60357331026006 ], [ 19.563178337610168, 45.597811388085063 ], [ 19.562506544941073, 45.589207262005516 ], [ 19.561938104160163, 45.5865459252542 ], [ 19.560904575385848, 45.584504706127234 ], [ 19.559250928987183, 45.582851061527265 ], [ 19.557597284387157, 45.582024238327904 ], [ 19.555633578726656, 45.581429959125273 ], [ 19.54860558378067, 45.579879666413433 ], [ 19.542146029615537, 45.579492091886493 ], [ 19.531552362151785, 45.580163886354228 ], [ 19.529278599028089, 45.579957179879898 ], [ 19.52721154058014, 45.579388739998308 ], [ 19.524679395937369, 45.578148504749663 ], [ 19.522664015232124, 45.576469020828597 ], [ 19.521165399363667, 45.574582831332577 ], [ 19.519511752965002, 45.571688951483907 ], [ 19.518839959396587, 45.569466865203651 ], [ 19.517806430622272, 45.562361354992504 ], [ 19.517237989841362, 45.560061754346464 ], [ 19.516462844384762, 45.558356432003734 ], [ 19.515429314711071, 45.556806139291893 ], [ 19.510158318951255, 45.55130259953529 ], [ 19.506644320578914, 45.54610911724194 ], [ 19.505249058397283, 45.544713854160989 ], [ 19.503543735155233, 45.543525295755785 ], [ 19.497962681032902, 45.540579739063674 ], [ 19.487575718244784, 45.535928860028832 ], [ 19.482769809579054, 45.534481920104497 ], [ 19.480702752030368, 45.534120184898597 ], [ 19.477808872181697, 45.534094347376197 ], [ 19.475483433113936, 45.534481920104497 ], [ 19.473313022777745, 45.535153714572232 ], [ 19.471452670804126, 45.536032212816338 ], [ 19.464528028645589, 45.540683091851179 ], [ 19.462460971996222, 45.541768297468934 ], [ 19.449696893296959, 45.547375190012986 ], [ 19.444890984631229, 45.548847968359041 ], [ 19.442875603925984, 45.549209703564941 ], [ 19.440085076864762, 45.549261380408382 ], [ 19.436157668241776, 45.548486233153085 ], [ 19.432126905931966, 45.547142646016255 ], [ 19.425977411028668, 45.54362864854329 ], [ 19.423135207124119, 45.542207547040618 ], [ 19.420964796787928, 45.54150991505054 ], [ 19.411973097080761, 45.539752915864369 ], [ 19.394506463402536, 45.535670478509758 ], [ 19.395901727382807, 45.524870104571619 ], [ 19.396263461689387, 45.524043281372315 ], [ 19.398485548868962, 45.521201077467708 ], [ 19.399053988750552, 45.519495755124979 ], [ 19.399415723956452, 45.507868557088216 ], [ 19.394248080984141, 45.50735179315069 ], [ 19.387995233293339, 45.50621491068955 ], [ 19.370735304290861, 45.500323798204704 ], [ 19.358384636741562, 45.494432684820538 ], [ 19.356989372761348, 45.493450832889607 ], [ 19.355800816154726, 45.491719672125157 ], [ 19.355232375373816, 45.489678452998191 ], [ 19.355129021686992, 45.485130926750855 ], [ 19.355387404105386, 45.482805488582414 ], [ 19.356989372761348, 45.477431139135717 ], [ 19.357351107967247, 45.475260728799583 ], [ 19.357144403291557, 45.470196437715401 ], [ 19.357609491284961, 45.468181057010156 ], [ 19.358901400679088, 45.46611400036079 ], [ 19.364637485331684, 45.459990342979893 ], [ 19.366136102099404, 45.457897447009543 ], [ 19.36784142444219, 45.454796860686542 ], [ 19.368358189278979, 45.452419744775398 ], [ 19.368254835592154, 45.449939276976011 ], [ 19.36784142444219, 45.447923896270765 ], [ 19.364999219638264, 45.441128445321453 ], [ 19.364275750125728, 45.438415431726753 ], [ 19.346033970091639, 45.441903590778054 ], [ 19.339109327933102, 45.44301463481753 ], [ 19.335078565623292, 45.443428045967551 ], [ 19.327017042802254, 45.443660589964225 ], [ 19.319213900601028, 45.443479722810935 ], [ 19.315441521608932, 45.443117988504355 ], [ 19.31192752503523, 45.442420356514219 ], [ 19.305364618082649, 45.440017402181354 ], [ 19.302160678972143, 45.439164741459649 ], [ 19.299318475067537, 45.439035549351104 ], [ 19.297354771205733, 45.439345607713619 ], [ 19.293065627376791, 45.440689194850449 ], [ 19.290430129047195, 45.442213650039889 ], [ 19.288311394655125, 45.444203193222791 ], [ 19.284125603613688, 45.449319160251036 ], [ 19.274410435293362, 45.457122301552943 ], [ 19.270999789708526, 45.458879298940474 ], [ 19.268105909859855, 45.459344386933878 ], [ 19.265315382798633, 45.458879298940474 ], [ 19.262989942831553, 45.457690742333853 ], [ 19.261077914913812, 45.456011258412843 ], [ 19.259682650933598, 45.454125068017447 ], [ 19.258287387852647, 45.451334540056962 ], [ 19.257718947071737, 45.446631985078 ], [ 19.257150506290827, 45.445288397941169 ], [ 19.256116978415832, 45.444099840435285 ], [ 19.254515007961231, 45.443273017235924 ], [ 19.252602980043491, 45.442704576455014 ], [ 19.249812452982326, 45.44244619403662 ], [ 19.246866896290214, 45.442549546824125 ], [ 19.242681105248778, 45.44301463481753 ], [ 19.239683871713282, 45.443066310761594 ], [ 19.236686639077107, 45.442756253298398 ], [ 19.233999464803446, 45.442006944464879 ], [ 19.228780144987695, 45.440069078125418 ], [ 19.221752150041652, 45.437950343733348 ], [ 19.217979771049556, 45.437330227008317 ], [ 19.206042514650335, 45.436374213499107 ], [ 19.202321811602303, 45.435779934296534 ], [ 19.197102491786552, 45.434410508737983 ], [ 19.194673699931286, 45.434074611953747 ], [ 19.192761672013546, 45.434255480006357 ], [ 19.191004672827376, 45.434901435153108 ], [ 19.189506056059599, 45.435883287083982 ], [ 19.187335645723465, 45.438415431726753 ], [ 19.18666385305437, 45.439759019762903 ], [ 19.186250441005029, 45.441774400468205 ], [ 19.18630211784847, 45.444642441895155 ], [ 19.18588870579913, 45.446683661022121 ], [ 19.184235060299784, 45.449422512139222 ], [ 19.181392857294497, 45.452135524834603 ], [ 19.177465447772192, 45.454125068017447 ], [ 19.159637078888068, 45.460894680545039 ], [ 19.156949903715088, 45.461514798169389 ], [ 19.154986199853226, 45.461747341266744 ], [ 19.152195671892741, 45.461566474113454 ], [ 19.149043409625619, 45.460687974970028 ], [ 19.142532178617159, 45.458285021536483 ], [ 19.139018182043458, 45.457587389546347 ], [ 19.135349154939547, 45.457225654340448 ], [ 19.123825310589609, 45.457018947866118 ], [ 19.116332227650162, 45.457484035859522 ], [ 19.112869907020581, 45.458155829427938 ], [ 19.110854526315336, 45.458827622996353 ], [ 19.107030469580479, 45.460687974970028 ], [ 19.105325148137069, 45.461928209319353 ], [ 19.104033236944304, 45.463375149243745 ], [ 19.103051385013373, 45.46497711879897 ], [ 19.100622593158107, 45.471514187329831 ], [ 19.099640741227233, 45.472986966575206 ], [ 19.098297153191027, 45.474227200025211 ], [ 19.096591830848297, 45.475105699168637 ], [ 19.094576450143052, 45.475622464005482 ], [ 19.091837599025951, 45.475829169580493 ], [ 19.084809604979284, 45.475622464005482 ], [ 19.081864048287173, 45.476035875155503 ], [ 19.079176873114193, 45.476888535877208 ], [ 19.069720086312941, 45.481436062124544 ], [ 19.060935093080047, 45.48714630835542 ], [ 19.058816358687977, 45.487973131554782 ], [ 19.056542595564338, 45.488489895492251 ], [ 19.053493686984041, 45.488722439488981 ], [ 19.050496454347865, 45.48846405707053 ], [ 19.04827436716829, 45.487921453812021 ], [ 19.04615563277622, 45.487094632411356 ], [ 19.038869256311102, 45.48234039968969 ], [ 19.036130405194001, 45.481616930177154 ], [ 19.034115023589436, 45.481720282964659 ], [ 19.032202996571016, 45.482237046902185 ], [ 19.029722527872366, 45.483632310882399 ], [ 19.024916620105898, 45.487249661142926 ], [ 19.019180536352678, 45.490918688246836 ], [ 19.017836948316472, 45.492882392108697 ], [ 19.017578565898077, 45.494536038507363 ], [ 19.017836948316472, 45.496603095156672 ], [ 19.017926146674313, 45.497807280181803 ], [ 19.077212362000068, 45.491642965000054 ], [ 19.106254517000053, 45.511641745000091 ], [ 19.095092407000038, 45.526059469000117 ], [ 19.082276652000132, 45.531175436000112 ], [ 19.067807251000119, 45.533397522000101 ], [ 19.050960734000029, 45.538926900000021 ], [ 19.040935506000011, 45.545024719000068 ], [ 19.0364913330001, 45.549468893000082 ], [ 19.033390747000055, 45.554636536 ], [ 19.027189575000079, 45.562594707000059 ], [ 19.018094523000116, 45.56740061400005 ], [ 19.009206177000095, 45.565488586000029 ], [ 19.000627889000071, 45.561199443000064 ], [ 18.983161255000113, 45.5547398880001 ], [ 18.973136027000095, 45.546264954000023 ], [ 18.960216919000089, 45.539133607000068 ], [ 18.941716757000052, 45.538926900000021 ], [ 18.932001586000098, 45.545541484000111 ], [ 18.912054484000095, 45.568227438000079 ], [ 18.903579549000085, 45.573085022 ], [ 18.906990194000116, 45.581663310000025 ], [ 18.908230428000138, 45.600421855000022 ], [ 18.912364542000091, 45.619232076000046 ], [ 18.924456828000075, 45.627707011000027 ], [ 18.935412231000043, 45.633391419000091 ], [ 18.962904093000105, 45.660108134000055 ], [ 18.968485148000127, 45.668738098000077 ], [ 18.962697388000066, 45.683052470000078 ], [ 18.948124634000095, 45.692044170000102 ], [ 18.931071411000062, 45.698917135000087 ], [ 18.917325480000045, 45.706565247000057 ], [ 18.90895389800005, 45.719432679000064 ], [ 18.90481978400004, 45.749766744000098 ], [ 18.900168904000054, 45.764907939000111 ], [ 18.871126750000087, 45.789971009000041 ], [ 18.863995402000029, 45.798549297000065 ], [ 18.848699178000089, 45.80955637600006 ], [ 18.844978475000062, 45.815705872000123 ], [ 18.846735474000042, 45.819995016000078 ], [ 18.850352824000112, 45.824232483000046 ], [ 18.852419881000088, 45.830071920000123 ], [ 18.855313761000076, 45.857357076000127 ], [ 18.88714644300012, 45.85947581 ], [ 18.899755493000043, 45.861387838000027 ], [ 18.906990194000116, 45.867950745000101 ], [ 18.903992960000096, 45.875702210000028 ], [ 18.893450969000128, 45.883867086000052 ], [ 18.872883748000049, 45.895235901000021 ], [ 18.881978800000127, 45.902625631000049 ], [ 18.889833619000058, 45.907896627000056 ], [ 18.906990194000116, 45.915699768000096 ], [ 18.90130578600008, 45.931202698 ], [ 18.962697388000066, 45.927947083 ], [ 18.981817668000133, 45.921849264000045 ], [ 18.987502076000084, 45.923812969 ], [ 18.988742310000134, 45.927016907000066 ], [ 18.986468547000101, 45.931254375000023 ], [ 18.978820434000028, 45.939780986000031 ], [ 18.977683553000134, 45.94350168900003 ], [ 18.978717081000099, 45.947170716000031 ], [ 18.981817668000133, 45.950788066000101 ], [ 19.005588827000111, 45.962570293000013 ], [ 19.030910279000096, 45.960038147000049 ], [ 19.048583618000094, 45.963448792000051 ], [ 19.049720500000092, 45.993111064000018 ], [ 19.065430135000071, 46.012024638000057 ], [ 19.088477824000023, 46.0188459270001 ], [ 19.111008748000046, 46.012954814000111 ], [ 19.125788208000074, 45.993266093000059 ], [ 19.125788208000074, 45.993111064000018 ], [ 19.1480090740001, 45.984067688000053 ], [ 19.235652303000109, 45.977711487000036 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-03", "NAME_1": "Severno-Banatski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.929150024000137, 46.163539938000028 ], [ 19.993125447000125, 46.159405823 ], [ 20.034983357000101, 46.142972718000053 ], [ 20.063405396000121, 46.145298157000056 ], [ 20.088623495000064, 46.154134827000078 ], [ 20.098442017000139, 46.154961650000089 ], [ 20.114771768802086, 46.152222799042931 ], [ 20.120146118000036, 46.149225566000027 ], [ 20.130378051000037, 46.139355368000068 ], [ 20.138026164000109, 46.136461487000062 ], [ 20.145364217000093, 46.137081604000045 ], [ 20.170478964000012, 46.145504862000038 ], [ 20.188462361000092, 46.140388896000033 ], [ 20.24282596900008, 46.108091126000048 ], [ 20.305664510000042, 46.053572490000036 ], [ 20.317653443000097, 46.038586324000065 ], [ 20.338634074000112, 45.992801005000032 ], [ 20.353930298000051, 45.976677959000043 ], [ 20.370983521000085, 45.967789612000033 ], [ 20.41025760900007, 45.955593974000024 ], [ 20.429067830000065, 45.946705628000117 ], [ 20.481674439000074, 45.912702535000065 ], [ 20.499864543000115, 45.906656392000045 ], [ 20.538001749000074, 45.90371083600003 ], [ 20.556708618000073, 45.89843984 ], [ 20.572108195000055, 45.887691142000065 ], [ 20.60528446400005, 45.846143291 ], [ 20.612312459000066, 45.841492412000022 ], [ 20.629675740000096, 45.833275858 ], [ 20.636703735000083, 45.827023011000094 ], [ 20.640114380000114, 45.81870310500004 ], [ 20.642284790000105, 45.798342590000104 ], [ 20.643489559695411, 45.795141345496688 ], [ 20.643215772789688, 45.794879462017548 ], [ 20.642027215283747, 45.793742581355048 ], [ 20.640011833679182, 45.792295641430655 ], [ 20.637789748298246, 45.791107083025452 ], [ 20.632880486844954, 45.789246731051776 ], [ 20.631175163602904, 45.788187363855741 ], [ 20.630658399665379, 45.787127997559026 ], [ 20.630710077408139, 45.785887763209701 ], [ 20.631743605283134, 45.78394989687024 ], [ 20.634275749925905, 45.781546943436638 ], [ 20.639081658591635, 45.777774563545222 ], [ 20.641510451346221, 45.774622301278157 ], [ 20.644042595988992, 45.768782863838055 ], [ 20.644456008038333, 45.76733592391372 ], [ 20.644507683982397, 45.76526886726441 ], [ 20.643835890413982, 45.763253486559108 ], [ 20.642388949590327, 45.761574001738779 ], [ 20.63189863491408, 45.755657049932893 ], [ 20.628849725434463, 45.752918198815792 ], [ 20.626627638254888, 45.75017934769869 ], [ 20.622958612050297, 45.74289297123363 ], [ 20.61970299699567, 45.733048610804701 ], [ 20.619082879371376, 45.730128893433687 ], [ 20.618772821008861, 45.724108587940975 ], [ 20.61892784974043, 45.717933255515334 ], [ 20.619444613677956, 45.711912950022622 ], [ 20.620323113720701, 45.70625438153445 ], [ 20.619858025727297, 45.704445706404215 ], [ 20.618514438590466, 45.703024604002223 ], [ 20.616912469035185, 45.702326972012145 ], [ 20.615000441117445, 45.701887722440404 ], [ 20.611279738069413, 45.701448472868719 ], [ 20.603114861561608, 45.700983384875315 ], [ 20.594588249847845, 45.699949856100943 ], [ 20.588128695682769, 45.699639797738428 ], [ 20.584924758370903, 45.699872340835839 ], [ 20.581824172047902, 45.700363268150284 ], [ 20.577586704163025, 45.701551826555544 ], [ 20.567664829368368, 45.704807440710795 ], [ 20.563530715170373, 45.70589264632855 ], [ 20.560533481634877, 45.706306057478571 ], [ 20.557536248099382, 45.70625438153445 ], [ 20.555417514606575, 45.705995999116055 ], [ 20.553505486688834, 45.705427558335145 ], [ 20.550973342046063, 45.704032294354874 ], [ 20.544565463825052, 45.699123032901639 ], [ 20.536400588216566, 45.694162096403602 ], [ 20.53149132676333, 45.689924628518781 ], [ 20.52916588679625, 45.688658555747736 ], [ 20.523843215092313, 45.68661733752009 ], [ 20.512164341111429, 45.681604723279349 ], [ 20.508340285275949, 45.678814195318807 ], [ 20.506273227727263, 45.676282049776773 ], [ 20.503844434972677, 45.669512438148502 ], [ 20.500692172705612, 45.66480988227022 ], [ 20.499761996718746, 45.662846178408358 ], [ 20.4981083512194, 45.657213447442643 ], [ 20.49790164564439, 45.655792345040652 ], [ 20.498211704006906, 45.653776964335407 ], [ 20.499400262412166, 45.651684068365057 ], [ 20.504412875753587, 45.645482897517695 ], [ 20.506996698139119, 45.638919990565114 ], [ 20.508960402000923, 45.635457669036157 ], [ 20.515936720103525, 45.62935985007698 ], [ 20.51697024887784, 45.62801626204083 ], [ 20.519088983269967, 45.623830470999394 ], [ 20.520949334344266, 45.621246650412559 ], [ 20.523326450255468, 45.618611152082963 ], [ 20.529114210852129, 45.613107612326417 ], [ 20.516453484940371, 45.610394598731716 ], [ 20.510975782706169, 45.609722805163301 ], [ 20.503792759028613, 45.609567776431732 ], [ 20.500382114343097, 45.609826157950806 ], [ 20.497178176131911, 45.610342922787652 ], [ 20.485602654938532, 45.613443508211333 ], [ 20.482036980622127, 45.614011948992243 ], [ 20.478264600730711, 45.614322008254078 ], [ 20.470616489059694, 45.614528713829031 ], [ 20.443434686161822, 45.614761257825762 ], [ 20.431910841811884, 45.614528713829031 ], [ 20.428241814707974, 45.614115301779748 ], [ 20.423384230098122, 45.612875068329743 ], [ 20.415374383221206, 45.609541938010011 ], [ 20.41294559136594, 45.608792630075811 ], [ 20.407157829869959, 45.60775910130144 ], [ 20.396822543925225, 45.606518866952115 ], [ 20.39041466570427, 45.60491689739689 ], [ 20.378167351841796, 45.601351223080428 ], [ 20.37150109210171, 45.599955959999534 ], [ 20.366798537122747, 45.598664048806768 ], [ 20.364576449943172, 45.598405667287693 ], [ 20.362354363662917, 45.598405667287693 ], [ 20.360235630170166, 45.598664048806768 ], [ 20.351347284149824, 45.601170355927138 ], [ 20.348453403401834, 45.602462267119904 ], [ 20.346903109790674, 45.60372833899163 ], [ 20.342510614073547, 45.60874095323237 ], [ 20.341373731612407, 45.60951610048761 ], [ 20.339513381437371, 45.610187893156706 ], [ 20.329539828899954, 45.611893216398812 ], [ 20.323597038672403, 45.613701891529047 ], [ 20.325095656339442, 45.616492417690893 ], [ 20.327059360201304, 45.621324163879024 ], [ 20.329023064962485, 45.629824938070385 ], [ 20.330108269680863, 45.631943671563192 ], [ 20.331865268867034, 45.633545641118417 ], [ 20.333673943997326, 45.634217433787512 ], [ 20.335896030277581, 45.634579168993412 ], [ 20.345662876340668, 45.635199285718443 ], [ 20.348039992251813, 45.635509344980278 ], [ 20.350107048901179, 45.636077785761188 ], [ 20.352587517599829, 45.637524725685523 ], [ 20.353879428792595, 45.638739122512447 ], [ 20.354757927936021, 45.640056871227614 ], [ 20.35527469187349, 45.642175604720364 ], [ 20.354809604779405, 45.644371853478219 ], [ 20.35279422407416, 45.647420762957836 ], [ 20.349176872914313, 45.650857245165696 ], [ 20.343440789161093, 45.654629625057112 ], [ 20.33620608864004, 45.655818183462372 ], [ 20.330986768824289, 45.662226060784064 ], [ 20.33181359202365, 45.670494290079375 ], [ 20.336257764584161, 45.674990139483327 ], [ 20.346954786634058, 45.680235296821479 ], [ 20.348453403401834, 45.680416164874089 ], [ 20.349383579388643, 45.679408474521438 ], [ 20.349486932176148, 45.677522285025418 ], [ 20.348556756189339, 45.673284817140598 ], [ 20.345611200396547, 45.670545966023496 ], [ 20.343905877154498, 45.66806549732479 ], [ 20.343699171579487, 45.665119941532055 ], [ 20.344732700353802, 45.662226060784064 ], [ 20.348763461764349, 45.659848944872863 ], [ 20.350468784107079, 45.659228827248569 ], [ 20.354861280723526, 45.660236518500483 ], [ 20.362871127600442, 45.662381090414954 ], [ 20.365661654661608, 45.663776354395225 ], [ 20.370777621689854, 45.667600410230705 ], [ 20.375428500724695, 45.669538276570165 ], [ 20.377443882329317, 45.670623481288601 ], [ 20.381629673370696, 45.675093492270832 ], [ 20.383851759650952, 45.676178696989268 ], [ 20.386538933924669, 45.676488756251103 ], [ 20.388967725779878, 45.676152859466868 ], [ 20.394135369651565, 45.674860948274102 ], [ 20.397080926343676, 45.674525051489923 ], [ 20.400129835823236, 45.674576728333307 ], [ 20.402403598946933, 45.674938463539263 ], [ 20.404470655596242, 45.675558580264237 ], [ 20.406847772406763, 45.676902167401067 ], [ 20.408243036386978, 45.678762519374743 ], [ 20.408656446637679, 45.680674547292483 ], [ 20.408553093850173, 45.685687161533281 ], [ 20.409276564262029, 45.68775421818259 ], [ 20.410775181029749, 45.689821274831957 ], [ 20.415167677646195, 45.693567817200972 ], [ 20.421833937386282, 45.697986152239082 ], [ 20.423642611617197, 45.699639797738428 ], [ 20.424107699610659, 45.700699164035143 ], [ 20.423590935673133, 45.702456163221314 ], [ 20.421833937386282, 45.704083971198315 ], [ 20.416666294413915, 45.70739126219695 ], [ 20.411550327385669, 45.711163642088366 ], [ 20.407932977125199, 45.713204861215331 ], [ 20.405710889945624, 45.714057521937036 ], [ 20.401318394228497, 45.715194404398233 ], [ 20.398321160693001, 45.715452785917307 ], [ 20.39134484169108, 45.715504461861428 ], [ 20.390052931397634, 45.715711168335702 ], [ 20.387417433068038, 45.716744697110073 ], [ 20.385350376418728, 45.718424181031082 ], [ 20.383903435595073, 45.720568752945553 ], [ 20.381836378945707, 45.727183335842255 ], [ 20.380906202958897, 45.729302070234326 ], [ 20.377805616635897, 45.733281154801432 ], [ 20.372017856938555, 45.738655504248072 ], [ 20.370570916114843, 45.740515855322428 ], [ 20.366591830648474, 45.748370673467775 ], [ 20.363026157231332, 45.752814846028286 ], [ 20.359822219020202, 45.757672431537458 ], [ 20.35703169105966, 45.766715807188746 ], [ 20.35300092874985, 45.775035712428178 ], [ 20.352174107349185, 45.777929592276848 ], [ 20.351347284149824, 45.783820706560334 ], [ 20.350623813738025, 45.786559556778116 ], [ 20.349590284963654, 45.788471584695856 ], [ 20.347988316307749, 45.789815171832686 ], [ 20.346438022696589, 45.790331935770212 ], [ 20.344629346666977, 45.790435289457037 ], [ 20.340805290831497, 45.789841010254406 ], [ 20.33506920707822, 45.788419907852415 ], [ 20.328764683443353, 45.78606863126231 ], [ 20.325715773064474, 45.785422675216239 ], [ 20.324423861871708, 45.785422675216239 ], [ 20.321685010754607, 45.785991115997206 ], [ 20.316207310319101, 45.78816152633334 ], [ 20.313365106414494, 45.78893667268926 ], [ 20.305355258638258, 45.790435289457037 ], [ 20.303288201988892, 45.790745347819495 ], [ 20.300290969352716, 45.790797023763616 ], [ 20.286596713767324, 45.789350083839281 ], [ 20.279051954883812, 45.788109850389276 ], [ 20.266907992909523, 45.786972967928079 ], [ 20.254764031834611, 45.78526764648467 ], [ 20.246960889633328, 45.785009264066275 ], [ 20.230992872722879, 45.785060940010339 ], [ 20.223034701790027, 45.785164292797845 ], [ 20.215231561387441, 45.785577703947865 ], [ 20.203035922569768, 45.78738637997742 ], [ 20.181383497850106, 45.788419907852415 ], [ 20.176784294759386, 45.78893667268926 ], [ 20.172856886136344, 45.789660143101116 ], [ 20.164795363315363, 45.791778875694547 ], [ 20.159317661081161, 45.788316555064966 ], [ 20.157353957219357, 45.786947130405736 ], [ 20.145261672088452, 45.780100003512302 ], [ 20.146656935169403, 45.765165514476905 ], [ 20.15373660695883, 45.755295314726993 ], [ 20.161694776992363, 45.749094142980312 ], [ 20.162159864985767, 45.742531236027673 ], [ 20.146656935169403, 45.731627509302086 ], [ 20.134926385244455, 45.728113511829065 ], [ 20.114152458768956, 45.724289455993585 ], [ 20.112550490112994, 45.726201483911325 ], [ 20.111051873345275, 45.727545071048155 ], [ 20.104282260817683, 45.731162421308682 ], [ 20.098856235426922, 45.734624741938262 ], [ 20.094515414754596, 45.738035387523098 ], [ 20.089347771782229, 45.743048000864519 ], [ 20.085265334427618, 45.746096910344136 ], [ 20.082526483310517, 45.74769887989936 ], [ 20.078082309850686, 45.7496109078171 ], [ 20.07394819475337, 45.751057847741436 ], [ 20.07089928617313, 45.751755479731571 ], [ 20.060253940966561, 45.753745022015153 ], [ 20.05255415155284, 45.754442654005231 ], [ 20.004133335085328, 45.754726873946026 ], [ 19.996175164152476, 45.755062770730262 ], [ 19.992351108316996, 45.755553697145388 ], [ 19.987545199651208, 45.756923122703938 ], [ 19.975969679357206, 45.762736720823 ], [ 19.97121544843418, 45.764183660747335 ], [ 19.961706983890167, 45.765914822411105 ], [ 19.950286493227054, 45.768989570312385 ], [ 19.946617466123143, 45.769558010193975 ], [ 19.931062860362715, 45.770514023703186 ], [ 19.927393833258805, 45.771082465383472 ], [ 19.915921664852931, 45.774157213284752 ], [ 19.912355991435845, 45.774725654065662 ], [ 19.904862909395717, 45.775190742059067 ], [ 19.89318403541489, 45.775164902738027 ], [ 19.885535922844554, 45.774518948490652 ], [ 19.878921339947851, 45.773330390085391 ], [ 19.874735548906415, 45.772916978935427 ], [ 19.860627883070322, 45.772219346945292 ], [ 19.859594354296007, 45.775707505996593 ], [ 19.856183708711171, 45.782528795367568 ], [ 19.855615268829581, 45.784983424745235 ], [ 19.85556359198614, 45.78738637997742 ], [ 19.856803827234842, 45.792812405368181 ], [ 19.856752150391401, 45.794982814805053 ], [ 19.856132032767107, 45.796610622781998 ], [ 19.855046828048671, 45.798135077072118 ], [ 19.848845656301989, 45.803380235309589 ], [ 19.845176629198079, 45.807850247191141 ], [ 19.83458296083495, 45.827900702355521 ], [ 19.823937615628438, 45.82707388005548 ], [ 19.817839796669261, 45.82707388005548 ], [ 19.815359327970612, 45.827228908787106 ], [ 19.81318891763442, 45.827745672724575 ], [ 19.8109151554101, 45.82919261354823 ], [ 19.809778272948904, 45.830536201584437 ], [ 19.807969597818669, 45.833430081433107 ], [ 19.807246128306133, 45.834954534823908 ], [ 19.806626010681839, 45.837228298846867 ], [ 19.806367629162764, 45.84195669224755 ], [ 19.807349481093638, 45.849553127974445 ], [ 19.806987745887739, 45.851568507780371 ], [ 19.805592481907524, 45.853764757437602 ], [ 19.799081251798327, 45.860095120393453 ], [ 19.797272576668036, 45.862368883517149 ], [ 19.796239047893721, 45.864539292953964 ], [ 19.793758579195071, 45.87120555269405 ], [ 19.792414992058241, 45.873169257455231 ], [ 19.785800409161538, 45.880817369126248 ], [ 19.764923129898534, 45.902443956323509 ], [ 19.77195112484452, 45.904872748178775 ], [ 19.778203973434586, 45.907327379355024 ], [ 19.784560173912894, 45.910272936047136 ], [ 19.788797641797714, 45.911952419968202 ], [ 19.794895460756891, 45.915698961437897 ], [ 19.797582635030551, 45.917145901362233 ], [ 19.803163690052259, 45.918644518130009 ], [ 19.805592481907524, 45.919574693217498 ], [ 19.806574333838398, 45.920349840472738 ], [ 19.807297804250254, 45.921280016459548 ], [ 19.8078145690871, 45.92329539716485 ], [ 19.807504509825264, 45.925517483445105 ], [ 19.806160922688434, 45.928721422555554 ], [ 19.803628778045663, 45.936007799020672 ], [ 19.802336866852897, 45.938591620506884 ], [ 19.800321486147652, 45.941743882773949 ], [ 19.799546339791732, 45.948461819357476 ], [ 19.799753045366742, 45.951252346418642 ], [ 19.803267042839764, 45.960192369282368 ], [ 19.803783806777233, 45.962517809249448 ], [ 19.803938836408179, 45.964946601104714 ], [ 19.803215365996323, 45.969623318561275 ], [ 19.801303338078583, 45.975695299098732 ], [ 19.799184604585832, 45.98742584902368 ], [ 19.799391310160843, 45.989492906572366 ], [ 19.802130161277887, 45.995073960694697 ], [ 19.802595249271349, 45.997166855765784 ], [ 19.802491895584524, 46.002050278797299 ], [ 19.802905307633807, 46.003936469192695 ], [ 19.806626010681839, 46.009750068211076 ], [ 19.807556186668648, 46.015382799176791 ], [ 19.807917921874605, 46.016312975163657 ], [ 19.808796421017973, 46.017579047035383 ], [ 19.814222446408735, 46.022798366851134 ], [ 19.815772739120575, 46.024607041981369 ], [ 19.818253207819282, 46.028715317757701 ], [ 19.821198765410657, 46.032384344861612 ], [ 19.824971144402753, 46.036105047909587 ], [ 19.8278650251508, 46.038430487876667 ], [ 19.830500522581019, 46.039980781487827 ], [ 19.839027134294781, 46.043184718799694 ], [ 19.841662631725058, 46.044631660522668 ], [ 19.843988070792818, 46.0463886579102 ], [ 19.846365186703963, 46.049024156239796 ], [ 19.847502069165159, 46.051711331412776 ], [ 19.848845656301989, 46.057447415166052 ], [ 19.849879185076304, 46.060212103805497 ], [ 19.856493767973006, 46.068687039575195 ], [ 19.857475619903937, 46.071348375427135 ], [ 19.858044060684847, 46.076981106392907 ], [ 19.857889031953221, 46.084164130070519 ], [ 19.858199090315736, 46.08633454040671 ], [ 19.859697707083512, 46.090675361079036 ], [ 19.859801059871018, 46.092794094571786 ], [ 19.859335971877556, 46.094912828064537 ], [ 19.855873651247975, 46.100726427082918 ], [ 19.854891799317045, 46.102922674941453 ], [ 19.85173953615066, 46.112947903422992 ], [ 19.851429477788145, 46.115169989703247 ], [ 19.85153282967633, 46.117392075983503 ], [ 19.85230797693157, 46.119510810375573 ], [ 19.854581740055266, 46.122197983749913 ], [ 19.856907179123027, 46.124006659779525 ], [ 19.859542676553247, 46.125608629334749 ], [ 19.868947788309754, 46.130517889888665 ], [ 19.875097284112371, 46.134316108201801 ], [ 19.877732782441967, 46.137287503315576 ], [ 19.880161574297176, 46.142300117556374 ], [ 19.880368279872187, 46.144418850149805 ], [ 19.879903191878782, 46.146537584541875 ], [ 19.879128044623542, 46.14798452446621 ], [ 19.876699252768276, 46.150826728370816 ], [ 19.875097284112371, 46.152170315507647 ], [ 19.87364887199783, 46.152992385789958 ], [ 19.888945760000126, 46.15739044200005 ], [ 19.929150024000137, 46.163539938000028 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-24", "NAME_1": "Pcinjski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.345023234000053, 42.313439026000125 ], [ 22.325282837000088, 42.314317525000078 ], [ 22.307609497000101, 42.319330140000019 ], [ 22.291589803000136, 42.328399354000098 ], [ 22.276913696000065, 42.341240947000088 ], [ 22.274019816000077, 42.348475647000058 ], [ 22.27329634600008, 42.365477194000064 ], [ 22.268852173000141, 42.370334779000089 ], [ 22.259757120000074, 42.369094544000049 ], [ 22.233402140000123, 42.348889058000069 ], [ 22.138113324150517, 42.319120232050444 ], [ 22.095529419000059, 42.305816752000069 ], [ 22.060906209000052, 42.301088359000076 ], [ 22.04540748166994, 42.302424040836797 ], [ 22.027626587000015, 42.303956401000065 ], [ 21.99496708200013, 42.312612203000086 ], [ 21.94153365000011, 42.333101909000064 ], [ 21.92902795400002, 42.335117289000024 ], [ 21.918279256000091, 42.33134491 ], [ 21.884379517000099, 42.309511618000059 ], [ 21.877351522000083, 42.308219706 ], [ 21.837353963000112, 42.308555603000102 ], [ 21.817200154000147, 42.30514495900006 ], [ 21.719520700000089, 42.260956635000113 ], [ 21.706509236000073, 42.255070496000073 ], [ 21.692039835000031, 42.242022197000026 ], [ 21.676886452000076, 42.234944820000109 ], [ 21.659690389000048, 42.23556264300008 ], [ 21.624653768000115, 42.242771505000022 ], [ 21.575044392000052, 42.242022197000026 ], [ 21.564065710000108, 42.246289302000051 ], [ 21.553857056000084, 42.273984070000026 ], [ 21.514893026000095, 42.317831523000038 ], [ 21.516029907000103, 42.341938579000058 ], [ 21.537320597000104, 42.358630066 ], [ 21.596645141000124, 42.372091777000051 ], [ 21.617419068000061, 42.386638692000119 ], [ 21.621863240000067, 42.40216746000003 ], [ 21.616902303000103, 42.433922628000076 ], [ 21.618969360000079, 42.449244691000033 ], [ 21.6278577060001, 42.460380961000041 ], [ 21.667855265000071, 42.490094910000025 ], [ 21.717671346000088, 42.551150615000026 ], [ 21.727696574000021, 42.574146627000076 ], [ 21.72676639800008, 42.577944845 ], [ 21.719738403000065, 42.586678162000069 ], [ 21.718291463000071, 42.591018982000051 ], [ 21.720151815000065, 42.593887024000125 ], [ 21.72697310300012, 42.596393331000016 ], [ 21.728833455000114, 42.598305359000037 ], [ 21.730073690000069, 42.60101837200007 ], [ 21.735551392000048, 42.621275534000077 ], [ 21.734724569000036, 42.624246928000062 ], [ 21.744543091000111, 42.629647116000044 ], [ 21.756532023000148, 42.633626200000023 ], [ 21.767074016000038, 42.638716329000019 ], [ 21.772758422000067, 42.6475013230001 ], [ 21.7643868400001, 42.669618836 ], [ 21.744249787697527, 42.679424528019524 ], [ 21.7546724787519, 42.688454088285539 ], [ 21.757618036343274, 42.690288600938175 ], [ 21.760666944923571, 42.691606350552604 ], [ 21.768986851062323, 42.694526068822995 ], [ 21.772242466116893, 42.696024684691395 ], [ 21.78200931217998, 42.702122504549948 ], [ 21.785058220760277, 42.704473782039372 ], [ 21.785936719903702, 42.705843206698603 ], [ 21.786350131952986, 42.707290147522258 ], [ 21.785419955966177, 42.714964098514315 ], [ 21.785006544816156, 42.722818914861023 ], [ 21.784903192028651, 42.730363673744534 ], [ 21.785316603178671, 42.732740790554999 ], [ 21.786608514371437, 42.73470449531618 ], [ 21.787848747821442, 42.735763862512215 ], [ 21.789399041432603, 42.736668199178041 ], [ 21.796065301172689, 42.739407050295085 ], [ 21.798649122658844, 42.740905667062862 ], [ 21.80071618020753, 42.742714342193096 ], [ 21.803713412843706, 42.746202501244397 ], [ 21.805573764817382, 42.747675278691133 ], [ 21.807227411216047, 42.748424588423973 ], [ 21.813221877387718, 42.750491645073339 ], [ 21.814565463625229, 42.751344305795044 ], [ 21.815392286824533, 42.752894599406204 ], [ 21.814823846043623, 42.754599920849671 ], [ 21.811723259720623, 42.758062242378571 ], [ 21.810896437420638, 42.759483343881186 ], [ 21.810483026270617, 42.760981961548282 ], [ 21.810689731845628, 42.762893989466022 ], [ 21.811723259720623, 42.764599310909432 ], [ 21.813273553331783, 42.766227117987057 ], [ 21.817769402735735, 42.769327704310058 ], [ 21.8205599297969, 42.770671292346265 ], [ 21.822782016976475, 42.771446437802865 ], [ 21.840145297867195, 42.77555471537778 ], [ 21.842109001729057, 42.775890611262696 ], [ 21.844899529689542, 42.776045640893585 ], [ 21.848826939211847, 42.775916450583679 ], [ 21.851617466273012, 42.776045640893585 ], [ 21.8621594577927, 42.778086860020551 ], [ 21.864898308909801, 42.778267727173841 ], [ 21.868774040689402, 42.778138535964615 ], [ 21.871564568649887, 42.778345242438945 ], [ 21.875440301328808, 42.779197903160707 ], [ 21.884897088130117, 42.781833401490246 ], [ 21.888824496753102, 42.782608547846166 ], [ 21.891615024713587, 42.782711899734352 ], [ 21.901743605083311, 42.781626695015916 ], [ 21.906911248055621, 42.781290799131057 ], [ 21.909081659291132, 42.781316637552777 ], [ 21.911252068727947, 42.781575019071852 ], [ 21.91926191560492, 42.783487046989592 ], [ 21.930372348804838, 42.785269883698163 ], [ 21.936676873339024, 42.785554104538278 ], [ 21.940139193968605, 42.785347398063948 ], [ 21.94427330906592, 42.784830634126422 ], [ 21.963910353080337, 42.788344632498763 ], [ 21.967062616246722, 42.789042262690259 ], [ 21.972902052787504, 42.791160997082329 ], [ 21.979619989370974, 42.79446828898034 ], [ 21.981945428438735, 42.79614777290135 ], [ 21.983495721150575, 42.798188992028315 ], [ 21.984425897137442, 42.800695299148686 ], [ 21.985614454643326, 42.808911852499989 ], [ 21.986389600999246, 42.811495673086824 ], [ 21.987216424198607, 42.812916775488759 ], [ 21.989696892897257, 42.81601736091244 ], [ 21.991660596759118, 42.817386786470991 ], [ 21.993417595945289, 42.818006904095341 ], [ 21.995484652594598, 42.8183169624578 ], [ 21.998326857398524, 42.818420315245305 ], [ 22.001272414090636, 42.818110256882846 ], [ 22.003546177214275, 42.817593492046001 ], [ 22.005716586651147, 42.816818345690081 ], [ 22.008300409036622, 42.815397244187466 ], [ 22.016361931857659, 42.808601793238154 ], [ 22.021064486836565, 42.805501206915153 ], [ 22.023803337953666, 42.804209295722387 ], [ 22.025973748289857, 42.803589178997413 ], [ 22.028247511413497, 42.803227443791457 ], [ 22.031141392161487, 42.803201606269113 ], [ 22.041114942900265, 42.805061957343412 ], [ 22.054654167955448, 42.809506130803243 ], [ 22.063490838031726, 42.812658393070365 ], [ 22.065557895580412, 42.813588569057174 ], [ 22.072792596101408, 42.817671007311105 ], [ 22.078890415060584, 42.81986725516964 ], [ 22.082352735690165, 42.820487371894671 ], [ 22.086021762794076, 42.820823269578227 ], [ 22.09733890066974, 42.820952459888076 ], [ 22.104470249302551, 42.820384020006486 ], [ 22.106485630007796, 42.819944770434802 ], [ 22.108242629193967, 42.819272975967067 ], [ 22.110154657111707, 42.817851874464395 ], [ 22.116200799227499, 42.810281277159163 ], [ 22.117441033576824, 42.808446764506527 ], [ 22.117647739151835, 42.807103176470378 ], [ 22.117337680789319, 42.805733750911827 ], [ 22.115994093652489, 42.803718370206582 ], [ 22.110051304324202, 42.797827256822416 ], [ 22.109017774650567, 42.795889391382275 ], [ 22.108966098706446, 42.795062568182971 ], [ 22.109586216330797, 42.793615628258635 ], [ 22.110981480311068, 42.792375393009934 ], [ 22.112738477698542, 42.791548569810629 ], [ 22.114857212090669, 42.790928453085598 ], [ 22.118577915138644, 42.790360012304689 ], [ 22.122608677448511, 42.790049953942173 ], [ 22.132685580974737, 42.789765733102058 ], [ 22.136096225660253, 42.790153306729678 ], [ 22.137904900790545, 42.790721747510588 ], [ 22.139971958339174, 42.792194525856644 ], [ 22.146018101354287, 42.799067491171741 ], [ 22.148033482059532, 42.800488593573732 ], [ 22.149842157189767, 42.801160387142147 ], [ 22.151909213839133, 42.801625475135552 ], [ 22.155733269674613, 42.802013047863852 ], [ 22.159712355141039, 42.802116401550677 ], [ 22.163691440607465, 42.801987210341451 ], [ 22.167463819599561, 42.801522122348047 ], [ 22.169582553991631, 42.801005357511201 ], [ 22.171391229121923, 42.800256049577001 ], [ 22.173096550565333, 42.798834947175067 ], [ 22.173561638558738, 42.796974596100711 ], [ 22.172838169046258, 42.791548569810629 ], [ 22.172993197777828, 42.789998277098789 ], [ 22.173509962614673, 42.788525498752733 ], [ 22.174491815444924, 42.787207750037624 ], [ 22.177592400868605, 42.784778958182358 ], [ 22.195989211432959, 42.774572862547529 ], [ 22.204929233397365, 42.771136380339669 ], [ 22.212784050643393, 42.769224352421929 ], [ 22.214851108192079, 42.768604233898259 ], [ 22.216608107378249, 42.767751573176554 ], [ 22.218520135295989, 42.766175442042993 ], [ 22.22239586797491, 42.760930283805521 ], [ 22.223791131055862, 42.759560859146291 ], [ 22.227253451685442, 42.757261256701611 ], [ 22.232007684407108, 42.754832464846345 ], [ 22.234591505893263, 42.753850612915414 ], [ 22.245856967824807, 42.75129262985098 ], [ 22.249836053291233, 42.749742337139139 ], [ 22.253918490645788, 42.747520249959564 ], [ 22.256347284299693, 42.746538398028633 ], [ 22.25805260574316, 42.746305854031903 ], [ 22.259757928085889, 42.746435045241128 ], [ 22.265855747045066, 42.748347073158868 ], [ 22.267612746231237, 42.748657132420703 ], [ 22.270196566818072, 42.748657132420703 ], [ 22.273348829984513, 42.748088690740474 ], [ 22.277999709019355, 42.746667589237802 ], [ 22.280686883293015, 42.746124985979293 ], [ 22.2834774112535, 42.745840766038498 ], [ 22.286784702252191, 42.745918281303602 ], [ 22.289730258944303, 42.746615912394418 ], [ 22.291435581287033, 42.747365221227938 ], [ 22.302132603336929, 42.75382477539307 ], [ 22.308643833446126, 42.760258491136426 ], [ 22.313914829205999, 42.764108385393627 ], [ 22.316550326636275, 42.765607001262083 ], [ 22.319392531440144, 42.766898912454849 ], [ 22.324043409575665, 42.768139145904854 ], [ 22.333551873220358, 42.769250189944273 ], [ 22.336652458644039, 42.769741116359398 ], [ 22.339908074597929, 42.770542101137039 ], [ 22.342853631290041, 42.771653144277138 ], [ 22.345385775932812, 42.773048408257409 ], [ 22.350295038285367, 42.776820787249505 ], [ 22.361043735380065, 42.781549181549451 ], [ 22.36342085129121, 42.783125311783692 ], [ 22.366108025564927, 42.785450750851453 ], [ 22.371482375011567, 42.791729437863239 ], [ 22.375306430847104, 42.795450140911271 ], [ 22.380680780293744, 42.799739284740156 ], [ 22.384918247279245, 42.804002590147377 ], [ 22.387036980772052, 42.805268662918422 ], [ 22.388897331846351, 42.805759589333547 ], [ 22.39990441315814, 42.806999824582192 ], [ 22.406932407204806, 42.808756821969723 ], [ 22.411376580664637, 42.810358792424324 ], [ 22.417112664417914, 42.813278509795396 ], [ 22.41933475069817, 42.814157008938764 ], [ 22.429463331967156, 42.816818345690081 ], [ 22.430446174000025, 42.817076593000067 ], [ 22.427395467000053, 42.813615214000023 ], [ 22.425845174000102, 42.809842835 ], [ 22.429359172000062, 42.806122131000095 ], [ 22.453130331000125, 42.763592428000052 ], [ 22.46656620300007, 42.748528748000055 ], [ 22.481449015000123, 42.739821269000075 ], [ 22.482585897000035, 42.736824036000073 ], [ 22.482895955000117, 42.733775126000026 ], [ 22.482585897000035, 42.730674541 ], [ 22.481449015000123, 42.727677307000064 ], [ 22.468116496000107, 42.718323873000131 ], [ 22.442071573000106, 42.681685282000089 ], [ 22.449202921000051, 42.667965190000061 ], [ 22.444552042000083, 42.643289694000046 ], [ 22.441318218560923, 42.632891463170438 ], [ 22.428842407000047, 42.592775981000031 ], [ 22.425328410000077, 42.572854716 ], [ 22.429669230000059, 42.571407776000015 ], [ 22.481449015000123, 42.535621846000097 ], [ 22.512144816000074, 42.519188742000026 ], [ 22.524857218000108, 42.507664897 ], [ 22.532505330000106, 42.493557231000054 ], [ 22.532505330000106, 42.493402202000127 ], [ 22.536536092000091, 42.478390198000042 ], [ 22.533125448000078, 42.457590434000096 ], [ 22.519482870000047, 42.420926005000027 ], [ 22.508837525000075, 42.40493215 ], [ 22.497572062000103, 42.399196065000027 ], [ 22.485066365000108, 42.397154846000078 ], [ 22.46977014100014, 42.391702983000087 ], [ 22.454370565000147, 42.376768494000132 ], [ 22.438454223000036, 42.340052388000046 ], [ 22.423984822000108, 42.325893047000093 ], [ 22.405794718000067, 42.321552226000037 ], [ 22.364143514000148, 42.320983785000081 ], [ 22.345023234000053, 42.313439026000125 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-14", "NAME_1": "Borski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.691640373000098, 44.228434539 ], [ 22.648777303000088, 44.213994853000102 ], [ 22.63999231000011, 44.207328593000014 ], [ 22.624799438000082, 44.189396872000131 ], [ 22.608573039000078, 44.175857646000068 ], [ 22.606195923000115, 44.174565735 ], [ 22.604852335000146, 44.16846791600004 ], [ 22.605989217000058, 44.163145244000091 ], [ 22.607952921000106, 44.159992981000059 ], [ 22.609399861000099, 44.159941305000032 ], [ 22.599064575000085, 44.130330709000091 ], [ 22.597100871000038, 44.119065247000023 ], [ 22.598134399000116, 44.109298401000061 ], [ 22.604645630000107, 44.088162740000129 ], [ 22.604748982000018, 44.079377747000038 ], [ 22.592966757000113, 44.063926494000057 ], [ 22.575190064000083, 44.061394348000064 ], [ 22.554622844000107, 44.062427877000047 ], [ 22.534158976000128, 44.057156881000097 ], [ 22.522583455000103, 44.044702861000118 ], [ 22.514935343000019, 44.030285136000103 ], [ 22.503669882000054, 44.019898173000072 ], [ 22.481449015000123, 44.019433085000045 ], [ 22.465885256999002, 44.017624140341752 ], [ 22.466101921666336, 44.017933660909705 ], [ 22.466463656872236, 44.018450425746551 ], [ 22.464965041003836, 44.02263621678793 ], [ 22.464189893748596, 44.024238186343212 ], [ 22.463053013086096, 44.025685126267547 ], [ 22.460675897174895, 44.027287095822771 ], [ 22.455818311665723, 44.029276638106353 ], [ 22.453906283747983, 44.030439358089893 ], [ 22.452872755872988, 44.032041326745798 ], [ 22.452511020667032, 44.033953355562858 ], [ 22.452666050297978, 44.03596873626816 ], [ 22.453337843866393, 44.03886261701615 ], [ 22.453389519810457, 44.040981350508901 ], [ 22.452976107761174, 44.043100084001651 ], [ 22.449978875124998, 44.049559638166727 ], [ 22.448893670406562, 44.053151150005533 ], [ 22.448635287988111, 44.055192369132499 ], [ 22.448738640775616, 44.056690985900275 ], [ 22.449307081556526, 44.057982896193664 ], [ 22.450443963118403, 44.059119777755541 ], [ 22.452045932673627, 44.060101629686415 ], [ 22.455456577359143, 44.061626084875911 ], [ 22.462174513043351, 44.063770656790382 ], [ 22.464706658585385, 44.065269273558101 ], [ 22.46615359940904, 44.066380316698258 ], [ 22.471734652632108, 44.072348945347528 ], [ 22.476385531666949, 44.076017971552119 ], [ 22.479279413314259, 44.078911852300109 ], [ 22.481501498695195, 44.08159902657377 ], [ 22.48331017382543, 44.084906318471781 ], [ 22.483775261818835, 44.086301581552732 ], [ 22.483671909031386, 44.088265286313913 ], [ 22.482793409887961, 44.090048123022427 ], [ 22.477935825278109, 44.09707611796847 ], [ 22.473905063867562, 44.104026598548671 ], [ 22.471166212750518, 44.107101345550632 ], [ 22.469150832045273, 44.108522447053247 ], [ 22.467342156914981, 44.109194241520981 ], [ 22.465275099366352, 44.109659329514443 ], [ 22.452821079029547, 44.111002915751953 ], [ 22.44248579308487, 44.113069973300583 ], [ 22.432305535871762, 44.115395413267663 ], [ 22.425742628919181, 44.117514145861094 ], [ 22.423778924158, 44.11844432184796 ], [ 22.42202192587115, 44.119529527465716 ], [ 22.420678337835, 44.120873115501865 ], [ 22.416285842117929, 44.127797756761026 ], [ 22.412823520588972, 44.131053371815653 ], [ 22.410188023158753, 44.132758694158383 ], [ 22.399232618690405, 44.138391425124155 ], [ 22.396597121260129, 44.139476629842591 ], [ 22.391842889437783, 44.1407685410353 ], [ 22.384504836129281, 44.141440335503034 ], [ 22.376908400402328, 44.141595364234661 ], [ 22.369415316563618, 44.141440335503034 ], [ 22.365797967202411, 44.14118195218532 ], [ 22.362335645673511, 44.14061351230373 ], [ 22.358356561106405, 44.139476629842591 ], [ 22.354429151584043, 44.13792633713075 ], [ 22.351948682885393, 44.13637604441891 ], [ 22.346470981550567, 44.131931870959079 ], [ 22.344042188795981, 44.130872503762987 ], [ 22.341199984891375, 44.130226549515612 ], [ 22.338202752255199, 44.130019843041282 ], [ 22.335153842775583, 44.130071519884723 ], [ 22.332156610139407, 44.130484931034744 ], [ 22.320942824151984, 44.133378810883414 ], [ 22.317428826678963, 44.133947252563644 ], [ 22.29872195775215, 44.13503245728208 ], [ 22.295207961178448, 44.135600898062989 ], [ 22.287456495820607, 44.137771308399124 ], [ 22.284665968759441, 44.138003852395855 ], [ 22.280686883293015, 44.137874661186629 ], [ 22.277793003444344, 44.138029689918255 ], [ 22.275519240320648, 44.138443101967539 ], [ 22.273297153141073, 44.139114895535954 ], [ 22.270506626079907, 44.140355129885336 ], [ 22.267819451806247, 44.141879584175456 ], [ 22.253350050764197, 44.151775621447769 ], [ 22.244048292694515, 44.157460029256924 ], [ 22.238363884885359, 44.162524319441786 ], [ 22.232731153919588, 44.168596299979242 ], [ 22.229888950015038, 44.165211492816127 ], [ 22.227770217421607, 44.162110908291766 ], [ 22.22544477655515, 44.15699494126352 ], [ 22.22389448384331, 44.152137355754348 ], [ 22.222809279124931, 44.149915270373413 ], [ 22.221155632726266, 44.147744859137902 ], [ 22.215522901760494, 44.141698717022166 ], [ 22.212732374699328, 44.137797145921525 ], [ 22.211543817193387, 44.136531074049799 ], [ 22.207874790089477, 44.133740546089314 ], [ 22.204412468560577, 44.131931870959079 ], [ 22.202035352649375, 44.130433255090622 ], [ 22.200743442355986, 44.129193019841978 ], [ 22.192888625109958, 44.11978790988411 ], [ 22.191803420391523, 44.118005073175539 ], [ 22.191390008342182, 44.115498766055168 ], [ 22.192165154698102, 44.113121650144024 ], [ 22.193818801096768, 44.111261298170348 ], [ 22.195265741021103, 44.110150255030248 ], [ 22.199399855219099, 44.107592271066437 ], [ 22.206841261315162, 44.104801744005272 ], [ 22.209838494850658, 44.103458156868442 ], [ 22.212060581130913, 44.102062892888171 ], [ 22.213972609048653, 44.10051260017633 ], [ 22.215419548972989, 44.098755601889479 ], [ 22.216556431434128, 44.096120104459203 ], [ 22.217124872215038, 44.090358181384943 ], [ 22.216763136109819, 44.08144399694288 ], [ 22.215884636966393, 44.074441840418558 ], [ 22.215832961022329, 44.073072414860007 ], [ 22.216246372172293, 44.071573798092288 ], [ 22.217124872215038, 44.070230210955458 ], [ 22.223584426380171, 44.065010891139707 ], [ 22.225186395036076, 44.062943834490341 ], [ 22.226064894179501, 44.060876776941654 ], [ 22.228131951728187, 44.054365545933194 ], [ 22.229062126815677, 44.052815253221354 ], [ 22.230250685220938, 44.051368313297019 ], [ 22.237330357010364, 44.045735582331247 ], [ 22.238880649722205, 44.04403025998846 ], [ 22.23996585533996, 44.041885688074046 ], [ 22.24012088407153, 44.03943105689774 ], [ 22.239862501653135, 44.03731232430431 ], [ 22.238363884885359, 44.032222194798408 ], [ 22.237950473735339, 44.030025946939872 ], [ 22.237898796891955, 44.027829698182018 ], [ 22.238260532097854, 44.025633450323426 ], [ 22.239087355297215, 44.022610379265586 ], [ 22.239397413659674, 44.020414130507675 ], [ 22.239294060872169, 44.01824372017154 ], [ 22.238673944147195, 44.016176663522174 ], [ 22.236968621804408, 44.013489488349194 ], [ 22.235366652249184, 44.011732490062343 ], [ 22.233402948387322, 44.010337226082072 ], [ 22.231542596413703, 44.009665432513657 ], [ 22.229475538865017, 44.009226182941973 ], [ 22.223429395849905, 44.008425198164332 ], [ 22.218468459351925, 44.007391669390017 ], [ 22.214799432247958, 44.006048082253187 ], [ 22.213197462692733, 44.005143743788722 ], [ 22.211595493137509, 44.003515936711096 ], [ 22.210561965262457, 44.001500556005851 ], [ 22.208753289232902, 43.994989325896654 ], [ 22.207771437301972, 43.992870592403904 ], [ 22.205962762171737, 43.990596829280207 ], [ 22.20368899904804, 43.988452257365736 ], [ 22.196092564220464, 43.982276923141455 ], [ 22.193922152984953, 43.980106512805321 ], [ 22.190614861986262, 43.975352280982975 ], [ 22.187979363656666, 43.968996080504667 ], [ 22.186170689425751, 43.966153875700797 ], [ 22.184723747702776, 43.964190171838936 ], [ 22.18265669105341, 43.96212311518957 ], [ 22.175783725738313, 43.956102809696858 ], [ 22.173923373764694, 43.953958237782444 ], [ 22.170822788341013, 43.947963772510093 ], [ 22.167153761237103, 43.941969306338365 ], [ 22.166585321355456, 43.9399539247338 ], [ 22.166481967668631, 43.93786103056209 ], [ 22.168393995586428, 43.929954535573358 ], [ 22.168393995586428, 43.924244290241802 ], [ 22.167825554805518, 43.92147960070298 ], [ 22.16570682131271, 43.916337796152334 ], [ 22.164776646225221, 43.914219061760264 ], [ 22.161934442320614, 43.909413153993853 ], [ 22.1605391783404, 43.907552802020177 ], [ 22.15878217915423, 43.906002509308337 ], [ 22.1570768568115, 43.905175686108976 ], [ 22.144622837374015, 43.900989895067596 ], [ 22.136612989597779, 43.899439602355756 ], [ 22.134700961680039, 43.898871161574846 ], [ 22.132530552243168, 43.897682604068905 ], [ 22.131548700312237, 43.896494046562964 ], [ 22.129843377070188, 43.893264269030794 ], [ 22.125657586028751, 43.886830553287382 ], [ 22.124469027623491, 43.884556790163685 ], [ 22.123228794173485, 43.88119782232161 ], [ 22.121730178305086, 43.875642604822303 ], [ 22.11754438636433, 43.877683823949269 ], [ 22.111033156255132, 43.881301174209796 ], [ 22.103591750159126, 43.886572170868988 ], [ 22.101059604617035, 43.887554022799861 ], [ 22.095375196807879, 43.889052639567637 ], [ 22.07765018071126, 43.894685370533409 ], [ 22.072017449745488, 43.89623566324525 ], [ 22.066746453985672, 43.898354396738 ], [ 22.0626123388883, 43.900524807074191 ], [ 22.061217074908086, 43.901506659904385 ], [ 22.059770134983751, 43.903263658191236 ], [ 22.05878828305282, 43.905279038896481 ], [ 22.057393019072549, 43.911945299535944 ], [ 22.056049431935719, 43.915769355371424 ], [ 22.055015903161404, 43.917319648083264 ], [ 22.051605259375208, 43.921143703918801 ], [ 22.050778436175847, 43.922590643843137 ], [ 22.050365025025883, 43.924063422189136 ], [ 22.050209995394937, 43.928791816489138 ], [ 22.049486524983138, 43.930807197194383 ], [ 22.047987909114681, 43.932977607530518 ], [ 22.041735059625296, 43.93923045522132 ], [ 22.040029738181829, 43.941452542400896 ], [ 22.037445915796354, 43.947808742879147 ], [ 22.036257358290413, 43.949720770796887 ], [ 22.034552035947684, 43.951271064408047 ], [ 22.032846713604954, 43.951994533920583 ], [ 22.030883009743093, 43.952459621913988 ], [ 22.027989128995102, 43.952821357119888 ], [ 22.024991896358927, 43.952976385851514 ], [ 22.019927606174065, 43.952666327488998 ], [ 22.018015578256325, 43.952149563551473 ], [ 22.015948520707639, 43.950805976414642 ], [ 22.010315788842547, 43.943493761527861 ], [ 22.008507113712312, 43.94150421834496 ], [ 22.005096469926116, 43.938377794499615 ], [ 22.003546177214275, 43.937370104146964 ], [ 22.000910678884679, 43.93654328094766 ], [ 21.997913446248504, 43.93654328094766 ], [ 21.988146600185416, 43.938972072802869 ], [ 21.985924513005841, 43.939695543214725 ], [ 21.983857456356532, 43.940574042358151 ], [ 21.978379754122329, 43.943442083785101 ], [ 21.973883904718434, 43.944811510242971 ], [ 21.970008172039513, 43.945379951023881 ], [ 21.961894972375035, 43.946051743692976 ], [ 21.95796756375205, 43.946568508529822 ], [ 21.955590447840905, 43.947085273366667 ], [ 21.953316684717208, 43.947808742879147 ], [ 21.950422803969218, 43.949152330015977 ], [ 21.942206252416611, 43.953234768269908 ], [ 21.940500929174505, 43.954190781779118 ], [ 21.938588901256765, 43.955818589756063 ], [ 21.931767611885789, 43.962226467077755 ], [ 21.926238233707522, 43.966386419697471 ], [ 21.922517530659491, 43.968324286036932 ], [ 21.913784214270038, 43.970856432478342 ], [ 21.911717156721409, 43.972200018715853 ], [ 21.910786980734542, 43.973388577121113 ], [ 21.909029982447692, 43.976644192175684 ], [ 21.905567660918791, 43.980545763276325 ], [ 21.899624871590561, 43.985997626189487 ], [ 21.897506138097754, 43.987392890169701 ], [ 21.895645786124135, 43.988116360581557 ], [ 21.893578728575449, 43.988607286097363 ], [ 21.884587029767602, 43.990080064443418 ], [ 21.87761071076568, 43.991759549263747 ], [ 21.873631626198573, 43.992483018776284 ], [ 21.870789422293967, 43.992508857198004 ], [ 21.863813104191365, 43.991320298792743 ], [ 21.849757114299393, 43.987599595744712 ], [ 21.845881381620472, 43.987031154963802 ], [ 21.841850620209925, 43.986876126232232 ], [ 21.837819857900115, 43.987005317441401 ], [ 21.833840773333009, 43.987496242957207 ], [ 21.831360303735039, 43.988013006894732 ], [ 21.829034864667278, 43.988736477306531 ], [ 21.821180047421251, 43.991940416417037 ], [ 21.81652916838641, 43.993025621135473 ], [ 21.813480258906793, 43.993180649867099 ], [ 21.810483026270617, 43.992870592403904 ], [ 21.806400588016686, 43.991785386786148 ], [ 21.798907505077295, 43.989227402822337 ], [ 21.795600213179284, 43.988607286097363 ], [ 21.793171421324018, 43.988581448574962 ], [ 21.790639275781928, 43.988839830094037 ], [ 21.778236932288564, 43.991061917273612 ], [ 21.772449171691903, 43.991837062730212 ], [ 21.772914259685308, 44.00356761355448 ], [ 21.773792758828733, 44.007908434226806 ], [ 21.774619582028095, 44.009820462144603 ], [ 21.776376581214208, 44.011939194738034 ], [ 21.778702020281969, 44.013618679558419 ], [ 21.782887811323405, 44.0159441195255 ], [ 21.784231397560916, 44.016951808978774 ], [ 21.785368280022112, 44.018657132220824 ], [ 21.785988396747086, 44.020672512026806 ], [ 21.786350131952986, 44.02341136314385 ], [ 21.787125278308906, 44.031860460491828 ], [ 21.788313835814847, 44.034676825974714 ], [ 21.790070835001018, 44.036123765899049 ], [ 21.791827834187188, 44.0367438835234 ], [ 21.796633741953599, 44.037674059510209 ], [ 21.801129592256871, 44.038991808225319 ], [ 21.803920119318036, 44.040283718518765 ], [ 21.806348911173302, 44.041834011230605 ], [ 21.808467644666052, 44.043616847939177 ], [ 21.809966261433829, 44.045528875856917 ], [ 21.810586379058122, 44.047518419039761 ], [ 21.810741407789749, 44.050438137310152 ], [ 21.811154818939713, 44.052660224489728 ], [ 21.811826613407447, 44.054313869989073 ], [ 21.817769402735735, 44.065553494398216 ], [ 21.819268018604134, 44.065475979133112 ], [ 21.82226525213963, 44.065760199973226 ], [ 21.824332309688316, 44.066147772701527 ], [ 21.833375685339604, 44.068524889511991 ], [ 21.83657962355079, 44.068834946975187 ], [ 21.839783562661296, 44.068679918243618 ], [ 21.847276645600687, 44.067904770988378 ], [ 21.850377231923687, 44.067982286253482 ], [ 21.852599318203943, 44.068266507093597 ], [ 21.854614698909188, 44.068809109452843 ], [ 21.857301873182905, 44.070126858167953 ], [ 21.86045413634929, 44.072297268504087 ], [ 21.867327100765067, 44.078395087463264 ], [ 21.869755894418972, 44.08010040980605 ], [ 21.88050459241299, 44.085965684768496 ], [ 21.885207147391895, 44.088213609470472 ], [ 21.891304966351072, 44.090745755012563 ], [ 21.89807457887872, 44.093122870024388 ], [ 21.902983840331956, 44.094569810848043 ], [ 21.905050896981265, 44.095034897942185 ], [ 21.908771600029297, 44.095551662778973 ], [ 21.912699008652282, 44.095758368353984 ], [ 21.932956170290993, 44.095655016465798 ], [ 21.940914341223845, 44.095887560462529 ], [ 21.944635044271877, 44.096378485978335 ], [ 21.946908807395516, 44.096998602703309 ], [ 21.948975864044883, 44.09785126432439 ], [ 21.950681187286932, 44.09896230746449 ], [ 21.953575067135603, 44.101546128950645 ], [ 21.958794386052034, 44.107101345550632 ], [ 21.96029300281981, 44.108935859102587 ], [ 21.960758090813215, 44.110124417507848 ], [ 21.960344678763875, 44.112088121369709 ], [ 21.958897738839539, 44.113948473343328 ], [ 21.951818067949432, 44.119090277893974 ], [ 21.950577833600107, 44.12056305624003 ], [ 21.949647657613298, 44.122190864216975 ], [ 21.948820835313256, 44.124826362546571 ], [ 21.947528924120547, 44.133120429364283 ], [ 21.946702100921186, 44.135704250850495 ], [ 21.944790073003446, 44.139373277055086 ], [ 21.944324985010041, 44.141078600297135 ], [ 21.944531690585052, 44.14252554022147 ], [ 21.945358513784356, 44.143843288936637 ], [ 21.947425571333042, 44.145522772857646 ], [ 21.952541538361288, 44.148726711968152 ], [ 21.954815300585665, 44.150638739885892 ], [ 21.956985710921799, 44.153325914159609 ], [ 21.957760858177039, 44.155444648551679 ], [ 21.958019239696114, 44.157666733932615 ], [ 21.957760858177039, 44.159940497056255 ], [ 21.956727329402725, 44.163196113010201 ], [ 21.955900506203363, 44.168260403195006 ], [ 21.955435418209959, 44.177872218727885 ], [ 21.956055535834309, 44.182652288971951 ], [ 21.957709181333655, 44.187845771265302 ], [ 21.95817426932706, 44.190326239963952 ], [ 21.958329298957949, 44.192806707763339 ], [ 21.958070915640235, 44.195183824573803 ], [ 21.956727329402725, 44.199033717931741 ], [ 21.952903272667868, 44.205519111417857 ], [ 21.951249627168522, 44.208981432047437 ], [ 21.950836216018558, 44.210376695128332 ], [ 21.950836216018558, 44.212392075833634 ], [ 21.951404656799468, 44.213942369444794 ], [ 21.952386508730399, 44.215337633425008 ], [ 21.956107211778374, 44.219110012417104 ], [ 21.95683068219023, 44.22037608518815 ], [ 21.957140740552745, 44.221745509847381 ], [ 21.956985710921799, 44.223114936305251 ], [ 21.955745476572474, 44.224949448957886 ], [ 21.954246859804698, 44.225982977732201 ], [ 21.952489862417224, 44.226861476875627 ], [ 21.948872511257377, 44.227895006549261 ], [ 21.946081984196212, 44.227895006549261 ], [ 21.944169956278415, 44.227533271343361 ], [ 21.940087518024541, 44.226163844885491 ], [ 21.937968783632414, 44.225207831376281 ], [ 21.9354366389897, 44.22363170024272 ], [ 21.933162875866003, 44.221797186690765 ], [ 21.926238233707522, 44.215079251006614 ], [ 21.922414177871985, 44.212133694314502 ], [ 21.920088738804225, 44.210531724759278 ], [ 21.917659946049639, 44.209498195984906 ], [ 21.916006301449613, 44.209291490409953 ], [ 21.914249302263499, 44.209498195984906 ], [ 21.911923862296419, 44.210583400703342 ], [ 21.909236688022702, 44.212650458252028 ], [ 21.905360956243101, 44.216216132568434 ], [ 21.898539665972805, 44.220143541191476 ], [ 21.897196078835975, 44.22112539312235 ], [ 21.896059198173418, 44.222830716364456 ], [ 21.89554243333663, 44.224820257748661 ], [ 21.895594110180014, 44.229186916842707 ], [ 21.897144402891854, 44.234406235759138 ], [ 21.897764519616885, 44.237222602141344 ], [ 21.897919549247774, 44.24003896672491 ], [ 21.897712843672764, 44.242829494685395 ], [ 21.896989373260965, 44.245413316171607 ], [ 21.895439081448444, 44.248927314543891 ], [ 21.895129022186609, 44.250451768834068 ], [ 21.895387403705683, 44.253371487104403 ], [ 21.896679314898449, 44.258229071714254 ], [ 21.896627638055008, 44.260244452419499 ], [ 21.893992139725469, 44.267840888146452 ], [ 21.893888787837284, 44.269856268851697 ], [ 21.894353874931369, 44.274868883092438 ], [ 21.893992139725469, 44.276935939741804 ], [ 21.891615024713587, 44.281896878038481 ], [ 21.889237908802443, 44.284945787518041 ], [ 21.87972944515775, 44.292387192714727 ], [ 21.876215447684729, 44.294350898375228 ], [ 21.871667922336712, 44.295797838299563 ], [ 21.865673456165041, 44.296934718962063 ], [ 21.861694369799295, 44.29807160142326 ], [ 21.856475050882864, 44.301430569265335 ], [ 21.853994582184214, 44.302412421196266 ], [ 21.851100702335543, 44.30305837724228 ], [ 21.848051791956607, 44.303316758761412 ], [ 21.844899529689542, 44.303290921239011 ], [ 21.841695590579036, 44.302929186033111 ], [ 21.827277866380427, 44.29980276128839 ], [ 21.815650669242984, 44.298123277367324 ], [ 21.812911818125883, 44.303342597183075 ], [ 21.807847527941021, 44.310939032910028 ], [ 21.807072380685781, 44.313109443246162 ], [ 21.807227411216047, 44.315228175839593 ], [ 21.808364291878547, 44.317295234287599 ], [ 21.811671583776558, 44.321274318854705 ], [ 21.812911818125883, 44.323341376403391 ], [ 21.813376906119288, 44.325356757108636 ], [ 21.813015170913388, 44.327372137813882 ], [ 21.811361525414043, 44.330059312986862 ], [ 21.808519320610117, 44.332849840048084 ], [ 21.7993725930707, 44.338250027017125 ], [ 21.797718946672035, 44.33949026136645 ], [ 21.796427036378589, 44.340911362869065 ], [ 21.795496860391779, 44.342513333323666 ], [ 21.794721714035859, 44.345045477966437 ], [ 21.794256626042454, 44.350523180200582 ], [ 21.794773389979923, 44.355949204692024 ], [ 21.795600213179284, 44.358481350234115 ], [ 21.797357212365455, 44.36124603887356 ], [ 21.799682651433216, 44.363804022837371 ], [ 21.802163120131866, 44.365199285918266 ], [ 21.809087762290403, 44.367938137035367 ], [ 21.811568230989053, 44.369436753803143 ], [ 21.813686965381123, 44.371193752989313 ], [ 21.81518558124958, 44.373079942485333 ], [ 21.81689090269299, 44.375922146389939 ], [ 21.817717725892294, 44.378480130353694 ], [ 21.81864790187916, 44.389538885810907 ], [ 21.819371372290959, 44.392071031352998 ], [ 21.820249872333704, 44.393673000908223 ], [ 21.82149010578371, 44.395068263989174 ], [ 21.823143752182375, 44.396205146450313 ], [ 21.826916131174471, 44.397884630371379 ], [ 21.828879835935652, 44.398427231831249 ], [ 21.831825391728444, 44.398788967037149 ], [ 21.834874302107323, 44.398763129514805 ], [ 21.83792321068762, 44.398323879943064 ], [ 21.847431675231633, 44.395378323251009 ], [ 21.849188674417746, 44.395042426466773 ], [ 21.852134230210538, 44.395223294519383 ], [ 21.854046258128278, 44.395791734400973 ], [ 21.855751581370384, 44.396670234443718 ], [ 21.857095167607895, 44.39791046789378 ], [ 21.858232049169715, 44.399305731873994 ], [ 21.863192986567071, 44.407522285225241 ], [ 21.864226515341386, 44.408814195518687 ], [ 21.866345248834136, 44.410416165073912 ], [ 21.869600863888763, 44.412302355469308 ], [ 21.871874627012403, 44.414033515334438 ], [ 21.874251742923605, 44.416513984033088 ], [ 21.87704227088409, 44.42041555423441 ], [ 21.87823082928935, 44.421707465427176 ], [ 21.882003208281446, 44.424523830910061 ], [ 21.884742059398491, 44.425764065259386 ], [ 21.886912468835362, 44.426384181984361 ], [ 21.889237908802443, 44.426745917190317 ], [ 21.892235142337938, 44.426720078768597 ], [ 21.899676548433945, 44.425712389315265 ], [ 21.902983840331956, 44.425505682840992 ], [ 21.909443393597712, 44.425454006896871 ], [ 21.912492303077329, 44.425686549994282 ], [ 21.914559359726638, 44.426099962043565 ], [ 21.916316358912809, 44.426771756511357 ], [ 21.918176710886485, 44.428218696435692 ], [ 21.919571973967436, 44.430053209088328 ], [ 21.923757765008816, 44.437623806393503 ], [ 21.924636265051561, 44.43971670236391 ], [ 21.924687940995682, 44.441757921490876 ], [ 21.923809441852256, 44.444625962917826 ], [ 21.922052442666086, 44.448863429903327 ], [ 21.917608270105575, 44.456795763313778 ], [ 21.916988153380544, 44.45899201117237 ], [ 21.916729770962149, 44.461214098351945 ], [ 21.916884799693719, 44.463487861475585 ], [ 21.917453241373948, 44.465658270912456 ], [ 21.918228386830549, 44.467311917311122 ], [ 21.919313592448304, 44.468810533179521 ], [ 21.923292677914731, 44.472737941802563 ], [ 21.924429558577231, 44.474236559469603 ], [ 21.925308057720656, 44.475890204069628 ], [ 21.927116732850948, 44.482608141552475 ], [ 21.928615349618667, 44.486432197387956 ], [ 21.929752232079807, 44.487982490099796 ], [ 21.933472935127838, 44.491806545935333 ], [ 21.934351434271264, 44.493253485859668 ], [ 21.934816522264668, 44.494777940149788 ], [ 21.934919875052174, 44.499764715968865 ], [ 21.935384963045578, 44.502865302291866 ], [ 21.934971550996238, 44.506146755768157 ], [ 21.933782992591034, 44.508808092519416 ], [ 21.932181023935073, 44.511340237162187 ], [ 21.929803908023928, 44.514414985063468 ], [ 21.932749464715982, 44.516766262552949 ], [ 21.935591667721269, 44.518419908052294 ], [ 21.93833051883837, 44.519608466457555 ], [ 21.94370486828501, 44.52105540638189 ], [ 21.950009392819197, 44.5216238471628 ], [ 21.951818067949432, 44.5219855823687 ], [ 21.953368360661273, 44.522605699093731 ], [ 21.954763624641544, 44.524000963073945 ], [ 21.955538770997464, 44.525783799782516 ], [ 21.955693800628353, 44.530434678817358 ], [ 21.956107211778374, 44.532346706735098 ], [ 21.957864210964544, 44.534878852277188 ], [ 21.96142988528095, 44.538470364115994 ], [ 21.970163201670402, 44.546170151731076 ], [ 21.978379754122329, 44.551673692386998 ], [ 21.987888217767022, 44.55921845216983 ], [ 22.001375766878141, 44.569372870061898 ], [ 22.016982048582634, 44.58115509683023 ], [ 22.035843947140449, 44.589345811759756 ], [ 22.036173617000117, 44.589488970000062 ], [ 22.039822225000137, 44.576866761000119 ], [ 22.045196574000101, 44.569218649000035 ], [ 22.055738566000059, 44.562138977000117 ], [ 22.067107381000142, 44.557229717000084 ], [ 22.076305786000148, 44.550718486 ], [ 22.08695113100012, 44.521779683000048 ], [ 22.104314412000065, 44.509635722000056 ], [ 22.126638631000105, 44.502659403000067 ], [ 22.148239380000092, 44.500902405000076 ], [ 22.172113892000084, 44.50534657900009 ], [ 22.185136352000114, 44.515113424000035 ], [ 22.299031209000049, 44.661667786000052 ], [ 22.304922323000142, 44.677377422000021 ], [ 22.319701782000067, 44.685335592000072 ], [ 22.361146281000032, 44.692053528000102 ], [ 22.380679973000042, 44.700528463000111 ], [ 22.415509887000098, 44.72781362000002 ], [ 22.426051880000074, 44.733653056000023 ], [ 22.450546508000116, 44.732981263000042 ], [ 22.468943319000118, 44.730190736000068 ], [ 22.483722778000129, 44.723989563000075 ], [ 22.553279256000053, 44.669160869000095 ], [ 22.587489054000031, 44.649368795000029 ], [ 22.621182088000097, 44.637431539000076 ], [ 22.700143676000039, 44.630610251000022 ], [ 22.714716431000113, 44.623065491000077 ], [ 22.765152628000095, 44.582809550000022 ], [ 22.759261515000105, 44.564671123 ], [ 22.741691528000047, 44.551855367000101 ], [ 22.719367309000063, 44.544362285 ], [ 22.700143676000039, 44.541830140000101 ], [ 22.67854292800007, 44.545550843000015 ], [ 22.642162719000083, 44.563120830000074 ], [ 22.621182088000097, 44.569218649000035 ], [ 22.600304810000125, 44.56978709 ], [ 22.580461059000129, 44.565497946000036 ], [ 22.565578247000076, 44.555421041000088 ], [ 22.5597904870001, 44.538781230000055 ], [ 22.556689900000066, 44.521469625000051 ], [ 22.548421672000103, 44.511702779000117 ], [ 22.535502563000108, 44.507516988000063 ], [ 22.500362590000066, 44.506380107000055 ], [ 22.49106083200013, 44.504209697000064 ], [ 22.484136189000139, 44.499765524000068 ], [ 22.479795370000062, 44.490412090000021 ], [ 22.477211548000071, 44.476976217000086 ], [ 22.477004842000014, 44.463953756000038 ], [ 22.480002075000129, 44.455788880000014 ], [ 22.500982706000116, 44.441939596000068 ], [ 22.50542688000013, 44.435014954000067 ], [ 22.506357056000098, 44.427521871000053 ], [ 22.503979940000136, 44.411708883000031 ], [ 22.505116821000058, 44.404060771000061 ], [ 22.522686808000117, 44.375070292000075 ], [ 22.549351847000082, 44.348973694000094 ], [ 22.582838175000063, 44.32840647400009 ], [ 22.621182088000097, 44.315900778000113 ], [ 22.66252323400002, 44.311663310000071 ], [ 22.6815401610001, 44.305307109000026 ], [ 22.689498332000142, 44.29171620800004 ], [ 22.685364217000114, 44.24365712500007 ], [ 22.690738566000078, 44.22887766500007 ], [ 22.691640373000098, 44.228434539 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-15", "NAME_1": "Zajecarski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.465885256999002, 44.017624140341752 ], [ 22.434320109000112, 44.013955384000056 ], [ 22.411789184000099, 44.006927389000069 ], [ 22.399593546000091, 43.993336487000064 ], [ 22.397319783000057, 43.980934144000102 ], [ 22.396803019000117, 43.95194366500003 ], [ 22.394529256000112, 43.936337382 ], [ 22.39194543500011, 43.931867371000052 ], [ 22.382023560000107, 43.918560690000064 ], [ 22.379026326000087, 43.913496399000067 ], [ 22.377062622000068, 43.883524068000028 ], [ 22.367554159000065, 43.85275075300008 ], [ 22.354738403000084, 43.829703065 ], [ 22.349467407000077, 43.807921448000073 ], [ 22.362593221000026, 43.780842998000125 ], [ 22.38853479000008, 43.758286235000085 ], [ 22.389568319000148, 43.750508932000074 ], [ 22.385847616000063, 43.733817444000053 ], [ 22.386054321000103, 43.725497538000084 ], [ 22.390498495000116, 43.712449240000055 ], [ 22.396906372000046, 43.699400940000103 ], [ 22.404864543000116, 43.687179464000067 ], [ 22.41395959500008, 43.676663310000023 ], [ 22.426465291000085, 43.668214213000041 ], [ 22.455920858000098, 43.656406149000119 ], [ 22.466256144000084, 43.649119772000049 ], [ 22.472870728000089, 43.635942282000073 ], [ 22.47380090300004, 43.612997946000021 ], [ 22.481449015000123, 43.600647278000068 ], [ 22.481759074000109, 43.599975485000087 ], [ 22.481965780000053, 43.599458720000044 ], [ 22.481759074000109, 43.598941956000019 ], [ 22.481449015000123, 43.598528545000093 ], [ 22.478141723000107, 43.594911194000119 ], [ 22.477108194000039, 43.59129384400002 ], [ 22.478141723000107, 43.587573141000021 ], [ 22.481449015000123, 43.584136658 ], [ 22.48268925000005, 43.58173370400003 ], [ 22.483102661000061, 43.579279073000052 ], [ 22.48268925000005, 43.57669525200005 ], [ 22.481449015000123, 43.574111430000059 ], [ 22.478658488000065, 43.569176331000037 ], [ 22.477624959000082, 43.564163717000056 ], [ 22.478451783000111, 43.559228617000102 ], [ 22.49064742000013, 43.540883485000037 ], [ 22.509354288000111, 43.493341166 ], [ 22.518862752000075, 43.474246725000043 ], [ 22.53260868400011, 43.464841614000065 ], [ 22.565784953000048, 43.453343608000054 ], [ 22.572709595000106, 43.448150127000034 ], [ 22.586765584000119, 43.434430033000112 ], [ 22.596274048000112, 43.429159038000066 ], [ 22.606919393000112, 43.427402038000096 ], [ 22.628520141000081, 43.428254700000124 ], [ 22.63782190000012, 43.426368511000121 ], [ 22.645366658000057, 43.420296529000055 ], [ 22.656528768000101, 43.403191631000126 ], [ 22.658926066000106, 43.401295034000029 ], [ 22.658855015146798, 43.401227118336806 ], [ 22.651827020200813, 43.394509181753335 ], [ 22.650845168269882, 43.393889065028304 ], [ 22.643507114062061, 43.387532864550053 ], [ 22.638546176664704, 43.383837999024422 ], [ 22.634308708779884, 43.379626370460585 ], [ 22.629864536219372, 43.374665432163965 ], [ 22.62459353956018, 43.369523626713999 ], [ 22.622371454179245, 43.367844142792933 ], [ 22.61978763179377, 43.366397202868598 ], [ 22.617668898301019, 43.365544542146893 ], [ 22.605783318745125, 43.36179800157646 ], [ 22.60164920364781, 43.360041002390346 ], [ 22.586714714612356, 43.349343980340393 ], [ 22.581185337333409, 43.345184027720677 ], [ 22.578963250153834, 43.343013618283805 ], [ 22.577567987072939, 43.340739854260846 ], [ 22.577361280598609, 43.338801987921386 ], [ 22.577723015804509, 43.337406724840434 ], [ 22.580616895653179, 43.331283067459594 ], [ 22.581081983646584, 43.329396877963518 ], [ 22.581133661389345, 43.328001613983247 ], [ 22.58066857339594, 43.326838893999707 ], [ 22.578911574209769, 43.325727850859607 ], [ 22.577154575023599, 43.325366116553027 ], [ 22.575190871161738, 43.325236925343802 ], [ 22.572400344100572, 43.325417792497092 ], [ 22.554727003948074, 43.328415025133268 ], [ 22.551678093569137, 43.328776760339167 ], [ 22.541394483568524, 43.329319362698413 ], [ 22.53943077970672, 43.329758613169417 ], [ 22.532919548698203, 43.332574977752984 ], [ 22.524599644358091, 43.33544302007931 ], [ 22.520827263567355, 43.33807851840885 ], [ 22.515349562232473, 43.343866279005567 ], [ 22.505117629075301, 43.350584214689718 ], [ 22.502533806689826, 43.353478095437708 ], [ 22.497831251710863, 43.3602477079653 ], [ 22.495557488587224, 43.362934882239017 ], [ 22.492818638369442, 43.365492866202771 ], [ 22.491423374389171, 43.366345526924476 ], [ 22.489873080778011, 43.366862290862002 ], [ 22.487340936135297, 43.366913966806123 ], [ 22.485687289736632, 43.366603909342928 ], [ 22.484292025756361, 43.365983791718577 ], [ 22.48294843861953, 43.364588527738363 ], [ 22.477935825278109, 43.355906887292974 ], [ 22.474266799073519, 43.351204332314069 ], [ 22.471527947956417, 43.348853053925268 ], [ 22.468892449626821, 43.347431952422653 ], [ 22.466825392078192, 43.346811834798302 ], [ 22.464551628954496, 43.346475938014123 ], [ 22.461296013899926, 43.346295070860833 ], [ 22.451684198367047, 43.346553453279228 ], [ 22.448583612044047, 43.346062526864102 ], [ 22.446051467401276, 43.345339057351566 ], [ 22.4449662608842, 43.344744778148993 ], [ 22.421608513821866, 43.357612210535081 ], [ 22.416285842117929, 43.360790310324546 ], [ 22.414270461412627, 43.361591295102187 ], [ 22.410188023158753, 43.362573147033061 ], [ 22.407449172041652, 43.362624823876502 ], [ 22.401558057758166, 43.361849677520581 ], [ 22.398715854752879, 43.36179800157646 ], [ 22.394220005348927, 43.362650662298222 ], [ 22.384143100923325, 43.366345526924476 ], [ 22.375616489209619, 43.368257554842273 ], [ 22.371068962962227, 43.369756170710673 ], [ 22.367451612701757, 43.37166819952779 ], [ 22.36212894099782, 43.375027167369865 ], [ 22.359906853818245, 43.375957343356674 ], [ 22.33727257716771, 43.382365221577686 ], [ 22.33649742991247, 43.382881985515212 ], [ 22.336445753968349, 43.384768175011232 ], [ 22.337014193849939, 43.385982570938893 ], [ 22.339908074597929, 43.389961656405319 ], [ 22.340838249685476, 43.392054552375669 ], [ 22.340838249685476, 43.394483344230935 ], [ 22.33995975144137, 43.39843659127564 ], [ 22.33975304496704, 43.400581163190111 ], [ 22.340011428284754, 43.402725735104582 ], [ 22.340683220953849, 43.404741115809827 ], [ 22.34151004415321, 43.406084702946657 ], [ 22.346057570400546, 43.410735581981498 ], [ 22.347711215899892, 43.412983507582794 ], [ 22.348744744674207, 43.414998888288039 ], [ 22.350811802222893, 43.420657456776212 ], [ 22.351535271735372, 43.424223131092617 ], [ 22.350863478166957, 43.427788805409023 ], [ 22.348486362255812, 43.433421536374794 ], [ 22.345024040726855, 43.438072415409636 ], [ 22.34228519140845, 43.440501207264901 ], [ 22.339856397754545, 43.442103175920806 ], [ 22.33706587069338, 43.443446763956956 ], [ 22.332570021289428, 43.444945379825413 ], [ 22.326575555117756, 43.446366482227347 ], [ 22.32223473534475, 43.447994290204292 ], [ 22.315361769130334, 43.452438462764803 ], [ 22.311641066082302, 43.454557197156873 ], [ 22.30352786641788, 43.45853628172398 ], [ 22.300478956938321, 43.459414780867405 ], [ 22.297843458608725, 43.45949229613251 ], [ 22.296034784377753, 43.459156399348331 ], [ 22.294019402773188, 43.4585621201457 ], [ 22.292210727642953, 43.457657783479874 ], [ 22.290608758087672, 43.456520901018735 ], [ 22.286836379095575, 43.452490138708924 ], [ 22.28306399920416, 43.447012438273362 ], [ 22.278258091437749, 43.441483059195775 ], [ 22.276914504300919, 43.440191148003066 ], [ 22.274795769908849, 43.438795884922115 ], [ 22.272418653997647, 43.438227444141205 ], [ 22.270868361285807, 43.43833079692871 ], [ 22.268336215743773, 43.439312648859641 ], [ 22.257329136230624, 43.447477525367503 ], [ 22.254383578639249, 43.448976142135223 ], [ 22.250921258009612, 43.449957994066153 ], [ 22.247252231805021, 43.450423082059558 ], [ 22.242497999982675, 43.450474758003679 ], [ 22.242497999982675, 43.452851873914824 ], [ 22.242653028714301, 43.45375621237929 ], [ 22.242291294407721, 43.455590725031925 ], [ 22.241206088789966, 43.457528591371386 ], [ 22.239707472022189, 43.458898016929936 ], [ 22.237795444104449, 43.46008657533514 ], [ 22.234643181837328, 43.461585191203596 ], [ 22.231232538051188, 43.462851263974642 ], [ 22.220018752063766, 43.465822659088417 ], [ 22.211957228343408, 43.468509833362077 ], [ 22.208959994807913, 43.468974921355539 ], [ 22.205911086227616, 43.469129950986428 ], [ 22.200691766411865, 43.468664862993023 ], [ 22.1986763848073, 43.468148098156178 ], [ 22.189684685999453, 43.463807278383172 ], [ 22.187669305294207, 43.463187160758821 ], [ 22.175318637744908, 43.460887560112781 ], [ 22.172269728265348, 43.460603339272666 ], [ 22.169220818785732, 43.460629176795067 ], [ 22.166120233362051, 43.460913398534501 ], [ 22.152787712982558, 43.463135483915437 ], [ 22.142710808556956, 43.465667630356847 ], [ 22.140695427851711, 43.466339423025943 ], [ 22.134390903317524, 43.468871568568034 ], [ 22.131600376256358, 43.470421861279874 ], [ 22.122815383023465, 43.47708812101996 ], [ 22.118939650344544, 43.479103501725206 ], [ 22.115063917665623, 43.480550442548861 ], [ 22.106175570745961, 43.482436632044937 ], [ 22.103953485365025, 43.483082587191632 ], [ 22.101834750972955, 43.483909410390936 ], [ 22.094496697664454, 43.487888494958042 ], [ 22.088450554649341, 43.490213934925123 ], [ 22.085504997957287, 43.490885729392858 ], [ 22.077340122348744, 43.492280992473809 ], [ 22.072172479376377, 43.492797757310655 ], [ 22.069123568997497, 43.492642726780389 ], [ 22.066178013204706, 43.492177638786984 ], [ 22.05971845903963, 43.490033066872513 ], [ 22.056514519929124, 43.489206244572529 ], [ 22.053723992867958, 43.489077053363303 ], [ 22.051760288106777, 43.489309597360034 ], [ 22.047419468333771, 43.490523993287638 ], [ 22.044732293160791, 43.491867581323788 ], [ 22.042510206880536, 43.493572902767198 ], [ 22.040546502119355, 43.49595001957772 ], [ 22.03987470855094, 43.49770701786457 ], [ 22.039771355763435, 43.498895576269831 ], [ 22.039926385394381, 43.499670721726375 ], [ 22.04199344204369, 43.503391424774406 ], [ 22.041373325318716, 43.504941718385567 ], [ 22.03966800297593, 43.506492011097407 ], [ 22.034913771153583, 43.509618434942809 ], [ 22.030056187443051, 43.513339137990783 ], [ 22.024578485208906, 43.517085680359855 ], [ 22.022873162866176, 43.518739325859201 ], [ 22.022253045241825, 43.519798692155916 ], [ 22.022253045241825, 43.520573839411156 ], [ 22.022614780447725, 43.521659044129535 ], [ 22.025250277878001, 43.525147203180836 ], [ 22.025818718658911, 43.526464951896003 ], [ 22.026077101077362, 43.527886054297937 ], [ 22.025870396401672, 43.531141669352508 ], [ 22.025612013083901, 43.5325886092769 ], [ 22.024940220414805, 43.533880520469609 ], [ 22.023183221228635, 43.535430813181449 ], [ 22.018222283831335, 43.538040473089325 ], [ 22.013157992747153, 43.541347764987336 ], [ 22.003546177214275, 43.545740260704463 ], [ 21.998740269447865, 43.548866686348447 ], [ 21.996001418330763, 43.551140449472143 ], [ 21.993779331151188, 43.553491726062305 ], [ 21.992539096801863, 43.555791326708345 ], [ 21.992487419958422, 43.55723826843132 ], [ 21.992952507951884, 43.557910061100415 ], [ 21.977346226247334, 43.570002346231263 ], [ 21.973677199143424, 43.571966050992444 ], [ 21.970421584088797, 43.572741197348364 ], [ 21.967062616246722, 43.572844550135869 ], [ 21.959104445313869, 43.571966050992444 ], [ 21.955073683004059, 43.570984199061513 ], [ 21.952954950410628, 43.569692287868747 ], [ 21.952024774423762, 43.568477891941143 ], [ 21.948872511257377, 43.561088161789201 ], [ 21.948820835313256, 43.55915029634906 ], [ 21.950112745606702, 43.555067857195809 ], [ 21.950629510443548, 43.550520330948473 ], [ 21.951249627168522, 43.549073391024137 ], [ 21.952231479998773, 43.547781479831428 ], [ 21.953678419923108, 43.546541246381366 ], [ 21.964065382711226, 43.53930654586037 ], [ 21.972023552744758, 43.532717800486068 ], [ 21.974245639924334, 43.531322537405174 ], [ 21.9766744317796, 43.530159817421634 ], [ 21.983702426725586, 43.527524319092038 ], [ 21.985407749068372, 43.526645819948612 ], [ 21.986596306574256, 43.525612291174298 ], [ 21.987113071411102, 43.524475410511741 ], [ 21.987061394567661, 43.523286852106537 ], [ 21.985872837061777, 43.52155569134203 ], [ 21.984374220294001, 43.520548000989436 ], [ 21.982513869219645, 43.519617825002626 ], [ 21.978741489328229, 43.518325913809861 ], [ 21.975692579848669, 43.517860825816456 ], [ 21.972540316682228, 43.51770579708483 ], [ 21.967165969034227, 43.518222561022355 ], [ 21.965047234642157, 43.518739325859201 ], [ 21.957450798915204, 43.522046616857835 ], [ 21.955022007059938, 43.522615058538122 ], [ 21.952903272667868, 43.522666734482186 ], [ 21.950732863231053, 43.52233083769795 ], [ 21.948200717688962, 43.521529852920366 ], [ 21.94081098843634, 43.518429267496685 ], [ 21.933989699065364, 43.51618134189539 ], [ 21.927581820844352, 43.515121974699355 ], [ 21.912699008652282, 43.513571681987514 ], [ 21.910115187166127, 43.516284695582215 ], [ 21.904534133043796, 43.523441880838106 ], [ 21.903087192220141, 43.524811306396657 ], [ 21.89941816601555, 43.527240099151243 ], [ 21.887274204041262, 43.53431977004135 ], [ 21.884845412185996, 43.536102606749864 ], [ 21.883501825049166, 43.537549547573519 ], [ 21.879626092370245, 43.544009100839332 ], [ 21.877404006089989, 43.550468655004408 ], [ 21.871151156600604, 43.562509264191192 ], [ 21.867843865601913, 43.567211819170097 ], [ 21.865776808053226, 43.569072171143773 ], [ 21.86314130972363, 43.570544949489829 ], [ 21.85874881400656, 43.572017726936508 ], [ 21.851824171848023, 43.573309638129274 ], [ 21.848981967943473, 43.57325796218521 ], [ 21.847018263182292, 43.572896226979253 ], [ 21.838181594005334, 43.570622463855614 ], [ 21.835391066044849, 43.570157375862209 ], [ 21.833375685339604, 43.569950670287199 ], [ 21.830585158278438, 43.570157375862209 ], [ 21.827742954373832, 43.570958359740473 ], [ 21.822988721652166, 43.57305125571088 ], [ 21.815909050762059, 43.5769269883898 ], [ 21.813893670056814, 43.577521266693054 ], [ 21.811826613407447, 43.577805488432546 ], [ 21.792551303699668, 43.576668605971349 ], [ 21.784438104035246, 43.575454210043745 ], [ 21.781389193656366, 43.57516999010295 ], [ 21.778288608232685, 43.57516999010295 ], [ 21.775239698753069, 43.575531725308849 ], [ 21.773017611573493, 43.576100165190439 ], [ 21.770950554924127, 43.57690114996808 ], [ 21.768418410281413, 43.578477281101641 ], [ 21.763560824772242, 43.581939601731222 ], [ 21.754775832438725, 43.586409614512093 ], [ 21.751520217384098, 43.588683376736412 ], [ 21.750486687710463, 43.590052802294963 ], [ 21.749918246929553, 43.591551419062739 ], [ 21.749814894142048, 43.593515122924543 ], [ 21.750641717341352, 43.598527737165341 ], [ 21.750538363654528, 43.600698147501475 ], [ 21.749918246929553, 43.602765204150842 ], [ 21.747334426342661, 43.606434231254752 ], [ 21.744130487232155, 43.610103258358663 ], [ 21.742373488046042, 43.611808579802073 ], [ 21.738187697004605, 43.615012518912579 ], [ 21.733588494813148, 43.61795807650401 ], [ 21.72418338395596, 43.622919013002047 ], [ 21.72185794398888, 43.624753526554002 ], [ 21.71937747618955, 43.627311510517757 ], [ 21.716638625072449, 43.631238919140799 ], [ 21.714623244367203, 43.633435166999334 ], [ 21.704908075147557, 43.641780911559806 ], [ 21.703151075961387, 43.644054673784126 ], [ 21.70222089997452, 43.646173408176196 ], [ 21.70087731283769, 43.652891343860404 ], [ 21.700205519269275, 43.655010077353154 ], [ 21.69932702012585, 43.656612046908435 ], [ 21.698138461720589, 43.658058986832771 ], [ 21.691213819562108, 43.663329983491906 ], [ 21.689560174062763, 43.665397040141272 ], [ 21.688629998075953, 43.667825832895858 ], [ 21.688164910981811, 43.670409654382013 ], [ 21.687441440570012, 43.686429348135903 ], [ 21.685994499746357, 43.692320462419389 ], [ 21.683875767152927, 43.698030706851625 ], [ 21.683255650427895, 43.698624986054256 ], [ 21.682842238378555, 43.70002025003447 ], [ 21.683048943953565, 43.7013638371713 ], [ 21.683824090309486, 43.702604072420002 ], [ 21.685684442283161, 43.703947659556832 ], [ 21.690593702837077, 43.706479804199603 ], [ 21.695399610603545, 43.709270331260768 ], [ 21.69875857934494, 43.711699124015354 ], [ 21.699843784063376, 43.713146063939689 ], [ 21.70046390078835, 43.714670519129129 ], [ 21.70046390078835, 43.716711738256095 ], [ 21.699947136850881, 43.718262030967935 ], [ 21.69896528491995, 43.719760646836335 ], [ 21.694831169822635, 43.723584703571191 ], [ 21.690697055624582, 43.728390611337602 ], [ 21.688526646187768, 43.730250963311278 ], [ 21.685736118227283, 43.731749579179734 ], [ 21.678501417706229, 43.734152534411919 ], [ 21.676537712945105, 43.73495351829024 ], [ 21.674987420233265, 43.735935370221114 ], [ 21.674005568302334, 43.737123927727055 ], [ 21.673643833096378, 43.738415838919821 ], [ 21.673850538671388, 43.739656074168465 ], [ 21.675607537857559, 43.742756660491466 ], [ 21.676744419419379, 43.743945217098087 ], [ 21.67813968339965, 43.745082099559227 ], [ 21.680775180829926, 43.746554877005963 ], [ 21.682790562434491, 43.747252508996041 ], [ 21.691265497304812, 43.748906155394707 ], [ 21.694004346623274, 43.749888007325637 ], [ 21.703874546373186, 43.75634756149077 ], [ 21.692764113173268, 43.766062729811097 ], [ 21.686562941426587, 43.772418932088044 ], [ 21.683927443096991, 43.7746410183683 ], [ 21.679741652055554, 43.777069811122885 ], [ 21.667029250199732, 43.782521674035991 ], [ 21.664238722239247, 43.784097805169552 ], [ 21.662068311903056, 43.786061509930732 ], [ 21.645996942205102, 43.80293386530559 ], [ 21.647443882129437, 43.805595201157587 ], [ 21.650182733246538, 43.808463243483857 ], [ 21.652094761164278, 43.809858507464128 ], [ 21.662016635958992, 43.815827135214079 ], [ 21.675297478595724, 43.827867743501542 ], [ 21.676279331425974, 43.829314684325198 ], [ 21.676899448151005, 43.830864977037038 ], [ 21.677261183356904, 43.835567532015943 ], [ 21.677881300981255, 43.837427883090299 ], [ 21.67906985758782, 43.839081529488965 ], [ 21.680775180829926, 43.840631822200805 ], [ 21.686407911795698, 43.844275010882996 ], [ 21.688319939713438, 43.845902817960678 ], [ 21.689508498118698, 43.847659817146848 ], [ 21.689560174062763, 43.849416816332962 ], [ 21.688371615657502, 43.851483872982328 ], [ 21.686252883064071, 43.853499253687573 ], [ 21.683720736622661, 43.855514635292138 ], [ 21.672817009897074, 43.863214422907276 ], [ 21.671473422760243, 43.864454658155921 ], [ 21.669819777260898, 43.866831773167746 ], [ 21.668889601274088, 43.869415595553278 ], [ 21.668476190124068, 43.872102769826938 ], [ 21.668837925329967, 43.877477118374316 ], [ 21.669664747630009, 43.879957587072965 ], [ 21.672817009897074, 43.885486966150552 ], [ 21.675090773020713, 43.888122464480148 ], [ 21.676692742575995, 43.889233506720927 ], [ 21.680361768780585, 43.891068020272883 ], [ 21.685012647815427, 43.892825019459053 ], [ 21.694831169822635, 43.895770576151165 ], [ 21.702634312023861, 43.898664455999835 ], [ 21.705476515029147, 43.899465439878099 ], [ 21.709403923652133, 43.900343939920845 ], [ 21.718085564996784, 43.900602322339296 ], [ 21.719997592914581, 43.900989895067596 ], [ 21.722529737557352, 43.902230130316241 ], [ 21.723976678381007, 43.90316030540373 ], [ 21.728834262990802, 43.907862861282013 ], [ 21.730281202915194, 43.910033270718827 ], [ 21.730694614065158, 43.911428534699098 ], [ 21.730487909389467, 43.913366401038559 ], [ 21.729816114921732, 43.91473582569779 ], [ 21.725061883099386, 43.92013601356615 ], [ 21.723976678381007, 43.9222289095365 ], [ 21.724080031168512, 43.924554347704941 ], [ 21.725268588674396, 43.926414700577936 ], [ 21.726043735030316, 43.926776434884516 ], [ 21.73674075708027, 43.935096341023268 ], [ 21.739324578566425, 43.937240912038419 ], [ 21.741443312059175, 43.939514675162116 ], [ 21.742993604771016, 43.941865953550916 ], [ 21.744027134444707, 43.944243069462061 ], [ 21.744750603957186, 43.949048977228472 ], [ 21.745319044738096, 43.950495917152807 ], [ 21.746300896669027, 43.951839505189014 ], [ 21.748367954217713, 43.953518989110023 ], [ 21.754259066702559, 43.95716217689295 ], [ 21.7592716809433, 43.961296291990266 ], [ 21.770795526192558, 43.967445786893506 ], [ 21.773172642103759, 43.969099433292172 ], [ 21.775032993178058, 43.970908108422464 ], [ 21.776169874739935, 43.972845973862604 ], [ 21.776686638677404, 43.974267076264539 ], [ 21.776789992364229, 43.976308295391505 ], [ 21.776479933102394, 43.97778107373756 ], [ 21.774774610759664, 43.981295071210525 ], [ 21.770382114143217, 43.987237861438132 ], [ 21.769917026149813, 43.989356594031563 ], [ 21.770692173405052, 43.991061917273612 ], [ 21.771157261398457, 43.991475328423633 ], [ 21.772449171691903, 43.991837062730212 ], [ 21.778236932288564, 43.991061917273612 ], [ 21.790639275781928, 43.988839830094037 ], [ 21.793171421324018, 43.988581448574962 ], [ 21.795600213179284, 43.988607286097363 ], [ 21.798907505077295, 43.989227402822337 ], [ 21.806400588016686, 43.991785386786148 ], [ 21.810483026270617, 43.992870592403904 ], [ 21.813480258906793, 43.993180649867099 ], [ 21.81652916838641, 43.993025621135473 ], [ 21.821180047421251, 43.991940416417037 ], [ 21.829034864667278, 43.988736477306531 ], [ 21.831360303735039, 43.988013006894732 ], [ 21.833840773333009, 43.987496242957207 ], [ 21.837819857900115, 43.987005317441401 ], [ 21.841850620209925, 43.986876126232232 ], [ 21.845881381620472, 43.987031154963802 ], [ 21.849757114299393, 43.987599595744712 ], [ 21.863813104191365, 43.991320298792743 ], [ 21.870789422293967, 43.992508857198004 ], [ 21.873631626198573, 43.992483018776284 ], [ 21.87761071076568, 43.991759549263747 ], [ 21.884587029767602, 43.990080064443418 ], [ 21.893578728575449, 43.988607286097363 ], [ 21.895645786124135, 43.988116360581557 ], [ 21.897506138097754, 43.987392890169701 ], [ 21.899624871590561, 43.985997626189487 ], [ 21.905567660918791, 43.980545763276325 ], [ 21.909029982447692, 43.976644192175684 ], [ 21.910786980734542, 43.973388577121113 ], [ 21.911717156721409, 43.972200018715853 ], [ 21.913784214270038, 43.970856432478342 ], [ 21.922517530659491, 43.968324286036932 ], [ 21.926238233707522, 43.966386419697471 ], [ 21.931767611885789, 43.962226467077755 ], [ 21.938588901256765, 43.955818589756063 ], [ 21.940500929174505, 43.954190781779118 ], [ 21.942206252416611, 43.953234768269908 ], [ 21.950422803969218, 43.949152330015977 ], [ 21.953316684717208, 43.947808742879147 ], [ 21.955590447840905, 43.947085273366667 ], [ 21.95796756375205, 43.946568508529822 ], [ 21.961894972375035, 43.946051743692976 ], [ 21.970008172039513, 43.945379951023881 ], [ 21.973883904718434, 43.944811510242971 ], [ 21.978379754122329, 43.943442083785101 ], [ 21.983857456356532, 43.940574042358151 ], [ 21.985924513005841, 43.939695543214725 ], [ 21.988146600185416, 43.938972072802869 ], [ 21.997913446248504, 43.93654328094766 ], [ 22.000910678884679, 43.93654328094766 ], [ 22.003546177214275, 43.937370104146964 ], [ 22.005096469926116, 43.938377794499615 ], [ 22.008507113712312, 43.94150421834496 ], [ 22.010315788842547, 43.943493761527861 ], [ 22.015948520707639, 43.950805976414642 ], [ 22.018015578256325, 43.952149563551473 ], [ 22.019927606174065, 43.952666327488998 ], [ 22.024991896358927, 43.952976385851514 ], [ 22.027989128995102, 43.952821357119888 ], [ 22.030883009743093, 43.952459621913988 ], [ 22.032846713604954, 43.951994533920583 ], [ 22.034552035947684, 43.951271064408047 ], [ 22.036257358290413, 43.949720770796887 ], [ 22.037445915796354, 43.947808742879147 ], [ 22.040029738181829, 43.941452542400896 ], [ 22.041735059625296, 43.93923045522132 ], [ 22.047987909114681, 43.932977607530518 ], [ 22.049486524983138, 43.930807197194383 ], [ 22.050209995394937, 43.928791816489138 ], [ 22.050365025025883, 43.924063422189136 ], [ 22.050778436175847, 43.922590643843137 ], [ 22.051605259375208, 43.921143703918801 ], [ 22.055015903161404, 43.917319648083264 ], [ 22.056049431935719, 43.915769355371424 ], [ 22.057393019072549, 43.911945299535944 ], [ 22.05878828305282, 43.905279038896481 ], [ 22.059770134983751, 43.903263658191236 ], [ 22.061217074908086, 43.901506659904385 ], [ 22.0626123388883, 43.900524807074191 ], [ 22.066746453985672, 43.898354396738 ], [ 22.072017449745488, 43.89623566324525 ], [ 22.07765018071126, 43.894685370533409 ], [ 22.095375196807879, 43.889052639567637 ], [ 22.101059604617035, 43.887554022799861 ], [ 22.103591750159126, 43.886572170868988 ], [ 22.111033156255132, 43.881301174209796 ], [ 22.11754438636433, 43.877683823949269 ], [ 22.121730178305086, 43.875642604822303 ], [ 22.123228794173485, 43.88119782232161 ], [ 22.124469027623491, 43.884556790163685 ], [ 22.125657586028751, 43.886830553287382 ], [ 22.129843377070188, 43.893264269030794 ], [ 22.131548700312237, 43.896494046562964 ], [ 22.132530552243168, 43.897682604068905 ], [ 22.134700961680039, 43.898871161574846 ], [ 22.136612989597779, 43.899439602355756 ], [ 22.144622837374015, 43.900989895067596 ], [ 22.1570768568115, 43.905175686108976 ], [ 22.15878217915423, 43.906002509308337 ], [ 22.1605391783404, 43.907552802020177 ], [ 22.161934442320614, 43.909413153993853 ], [ 22.164776646225221, 43.914219061760264 ], [ 22.16570682131271, 43.916337796152334 ], [ 22.167825554805518, 43.92147960070298 ], [ 22.168393995586428, 43.924244290241802 ], [ 22.168393995586428, 43.929954535573358 ], [ 22.166481967668631, 43.93786103056209 ], [ 22.166585321355456, 43.9399539247338 ], [ 22.167153761237103, 43.941969306338365 ], [ 22.170822788341013, 43.947963772510093 ], [ 22.173923373764694, 43.953958237782444 ], [ 22.175783725738313, 43.956102809696858 ], [ 22.18265669105341, 43.96212311518957 ], [ 22.184723747702776, 43.964190171838936 ], [ 22.186170689425751, 43.966153875700797 ], [ 22.187979363656666, 43.968996080504667 ], [ 22.190614861986262, 43.975352280982975 ], [ 22.193922152984953, 43.980106512805321 ], [ 22.196092564220464, 43.982276923141455 ], [ 22.20368899904804, 43.988452257365736 ], [ 22.205962762171737, 43.990596829280207 ], [ 22.207771437301972, 43.992870592403904 ], [ 22.208753289232902, 43.994989325896654 ], [ 22.210561965262457, 44.001500556005851 ], [ 22.211595493137509, 44.003515936711096 ], [ 22.213197462692733, 44.005143743788722 ], [ 22.214799432247958, 44.006048082253187 ], [ 22.218468459351925, 44.007391669390017 ], [ 22.223429395849905, 44.008425198164332 ], [ 22.229475538865017, 44.009226182941973 ], [ 22.231542596413703, 44.009665432513657 ], [ 22.233402948387322, 44.010337226082072 ], [ 22.235366652249184, 44.011732490062343 ], [ 22.236968621804408, 44.013489488349194 ], [ 22.238673944147195, 44.016176663522174 ], [ 22.239294060872169, 44.01824372017154 ], [ 22.239397413659674, 44.020414130507675 ], [ 22.239087355297215, 44.022610379265586 ], [ 22.238260532097854, 44.025633450323426 ], [ 22.237898796891955, 44.027829698182018 ], [ 22.237950473735339, 44.030025946939872 ], [ 22.238363884885359, 44.032222194798408 ], [ 22.239862501653135, 44.03731232430431 ], [ 22.24012088407153, 44.03943105689774 ], [ 22.23996585533996, 44.041885688074046 ], [ 22.238880649722205, 44.04403025998846 ], [ 22.237330357010364, 44.045735582331247 ], [ 22.230250685220938, 44.051368313297019 ], [ 22.229062126815677, 44.052815253221354 ], [ 22.228131951728187, 44.054365545933194 ], [ 22.226064894179501, 44.060876776941654 ], [ 22.225186395036076, 44.062943834490341 ], [ 22.223584426380171, 44.065010891139707 ], [ 22.217124872215038, 44.070230210955458 ], [ 22.216246372172293, 44.071573798092288 ], [ 22.215832961022329, 44.073072414860007 ], [ 22.215884636966393, 44.074441840418558 ], [ 22.216763136109819, 44.08144399694288 ], [ 22.217124872215038, 44.090358181384943 ], [ 22.216556431434128, 44.096120104459203 ], [ 22.215419548972989, 44.098755601889479 ], [ 22.213972609048653, 44.10051260017633 ], [ 22.212060581130913, 44.102062892888171 ], [ 22.209838494850658, 44.103458156868442 ], [ 22.206841261315162, 44.104801744005272 ], [ 22.199399855219099, 44.107592271066437 ], [ 22.195265741021103, 44.110150255030248 ], [ 22.193818801096768, 44.111261298170348 ], [ 22.192165154698102, 44.113121650144024 ], [ 22.191390008342182, 44.115498766055168 ], [ 22.191803420391523, 44.118005073175539 ], [ 22.192888625109958, 44.11978790988411 ], [ 22.200743442355986, 44.129193019841978 ], [ 22.202035352649375, 44.130433255090622 ], [ 22.204412468560577, 44.131931870959079 ], [ 22.207874790089477, 44.133740546089314 ], [ 22.211543817193387, 44.136531074049799 ], [ 22.212732374699328, 44.137797145921525 ], [ 22.215522901760494, 44.141698717022166 ], [ 22.221155632726266, 44.147744859137902 ], [ 22.222809279124931, 44.149915270373413 ], [ 22.22389448384331, 44.152137355754348 ], [ 22.22544477655515, 44.15699494126352 ], [ 22.227770217421607, 44.162110908291766 ], [ 22.229888950015038, 44.165211492816127 ], [ 22.232731153919588, 44.168596299979242 ], [ 22.238363884885359, 44.162524319441786 ], [ 22.244048292694515, 44.157460029256924 ], [ 22.253350050764197, 44.151775621447769 ], [ 22.267819451806247, 44.141879584175456 ], [ 22.270506626079907, 44.140355129885336 ], [ 22.273297153141073, 44.139114895535954 ], [ 22.275519240320648, 44.138443101967539 ], [ 22.277793003444344, 44.138029689918255 ], [ 22.280686883293015, 44.137874661186629 ], [ 22.284665968759441, 44.138003852395855 ], [ 22.287456495820607, 44.137771308399124 ], [ 22.295207961178448, 44.135600898062989 ], [ 22.29872195775215, 44.13503245728208 ], [ 22.317428826678963, 44.133947252563644 ], [ 22.320942824151984, 44.133378810883414 ], [ 22.332156610139407, 44.130484931034744 ], [ 22.335153842775583, 44.130071519884723 ], [ 22.338202752255199, 44.130019843041282 ], [ 22.341199984891375, 44.130226549515612 ], [ 22.344042188795981, 44.130872503762987 ], [ 22.346470981550567, 44.131931870959079 ], [ 22.351948682885393, 44.13637604441891 ], [ 22.354429151584043, 44.13792633713075 ], [ 22.358356561106405, 44.139476629842591 ], [ 22.362335645673511, 44.14061351230373 ], [ 22.365797967202411, 44.14118195218532 ], [ 22.369415316563618, 44.141440335503034 ], [ 22.376908400402328, 44.141595364234661 ], [ 22.384504836129281, 44.141440335503034 ], [ 22.391842889437783, 44.1407685410353 ], [ 22.396597121260129, 44.139476629842591 ], [ 22.399232618690405, 44.138391425124155 ], [ 22.410188023158753, 44.132758694158383 ], [ 22.412823520588972, 44.131053371815653 ], [ 22.416285842117929, 44.127797756761026 ], [ 22.420678337835, 44.120873115501865 ], [ 22.42202192587115, 44.119529527465716 ], [ 22.423778924158, 44.11844432184796 ], [ 22.425742628919181, 44.117514145861094 ], [ 22.432305535871762, 44.115395413267663 ], [ 22.44248579308487, 44.113069973300583 ], [ 22.452821079029547, 44.111002915751953 ], [ 22.465275099366352, 44.109659329514443 ], [ 22.467342156914981, 44.109194241520981 ], [ 22.469150832045273, 44.108522447053247 ], [ 22.471166212750518, 44.107101345550632 ], [ 22.473905063867562, 44.104026598548671 ], [ 22.477935825278109, 44.09707611796847 ], [ 22.482793409887961, 44.090048123022427 ], [ 22.483671909031386, 44.088265286313913 ], [ 22.483775261818835, 44.086301581552732 ], [ 22.48331017382543, 44.084906318471781 ], [ 22.481501498695195, 44.08159902657377 ], [ 22.479279413314259, 44.078911852300109 ], [ 22.476385531666949, 44.076017971552119 ], [ 22.471734652632108, 44.072348945347528 ], [ 22.46615359940904, 44.066380316698258 ], [ 22.464706658585385, 44.065269273558101 ], [ 22.462174513043351, 44.063770656790382 ], [ 22.455456577359143, 44.061626084875911 ], [ 22.452045932673627, 44.060101629686415 ], [ 22.450443963118403, 44.059119777755541 ], [ 22.449307081556526, 44.057982896193664 ], [ 22.448738640775616, 44.056690985900275 ], [ 22.448635287988111, 44.055192369132499 ], [ 22.448893670406562, 44.053151150005533 ], [ 22.449978875124998, 44.049559638166727 ], [ 22.452976107761174, 44.043100084001651 ], [ 22.453389519810457, 44.040981350508901 ], [ 22.453337843866393, 44.03886261701615 ], [ 22.452666050297978, 44.03596873626816 ], [ 22.452511020667032, 44.033953355562858 ], [ 22.452872755872988, 44.032041326745798 ], [ 22.453906283747983, 44.030439358089893 ], [ 22.455818311665723, 44.029276638106353 ], [ 22.460675897174895, 44.027287095822771 ], [ 22.463053013086096, 44.025685126267547 ], [ 22.464189893748596, 44.024238186343212 ], [ 22.464965041003836, 44.02263621678793 ], [ 22.466463656872236, 44.018450425746551 ], [ 22.466101921666336, 44.017933660909705 ], [ 22.465885256999002, 44.017624140341752 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-22", "NAME_1": "Pirotski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.658926066000106, 43.401295034000029 ], [ 22.664693644000096, 43.396732077000067 ], [ 22.674202108000088, 43.394148255000076 ], [ 22.693219035000055, 43.394871725000073 ], [ 22.702934204000087, 43.394044902000033 ], [ 22.719367309000063, 43.388670553000068 ], [ 22.724343132000087, 43.386060131000093 ], [ 22.733009888000083, 43.381513367000125 ], [ 22.804530070000112, 43.328984274000064 ], [ 22.817139119000046, 43.315496724000084 ], [ 22.820756469000116, 43.307538554000033 ], [ 22.823857056000065, 43.289296773000061 ], [ 22.82695764200011, 43.281390279000036 ], [ 22.833158814000086, 43.274646505000092 ], [ 22.857343384000046, 43.256947327 ], [ 22.88380171700004, 43.230592347000126 ], [ 22.897754353000039, 43.220334574000034 ], [ 22.915531046000069, 43.212247213000055 ], [ 22.964727010000047, 43.204418234000016 ], [ 22.981366822000069, 43.198992208000035 ], [ 22.982901934576603, 43.187317918886833 ], [ 22.984570760000111, 43.174626771000121 ], [ 22.974028768000068, 43.141192118000035 ], [ 22.955631958000055, 43.108274232 ], [ 22.935271443000119, 43.085562439000014 ], [ 22.927106568000113, 43.081144105000121 ], [ 22.910156698000094, 43.075278829000027 ], [ 22.901681763000113, 43.069749451000021 ], [ 22.896720825000045, 43.062721457000109 ], [ 22.889486124000086, 43.044376323000037 ], [ 22.884215128000051, 43.036650696000024 ], [ 22.842253865000146, 43.007505188000025 ], [ 22.829024699000058, 42.99365590500004 ], [ 22.829024699000058, 42.993500875 ], [ 22.828921346000129, 42.993449198000079 ], [ 22.828817993000115, 42.993449198000079 ], [ 22.815795532000067, 42.98970265700008 ], [ 22.788096964000147, 42.984896749000072 ], [ 22.776418091000068, 42.97972910600005 ], [ 22.769390096000052, 42.971280009000068 ], [ 22.763188924000076, 42.958645121000032 ], [ 22.74551558400006, 42.910069275000026 ], [ 22.739578617958841, 42.89885754334091 ], [ 22.738797648000059, 42.897382711 ], [ 22.727015422000136, 42.886892395000032 ], [ 22.696629680000086, 42.877409770000057 ], [ 22.666243937000047, 42.871932068000078 ], [ 22.590899699000147, 42.886892395000032 ], [ 22.563614542000039, 42.884282735000042 ], [ 22.549971965000054, 42.877358093000041 ], [ 22.544785162000068, 42.871706438000061 ], [ 22.544081658741561, 42.871802070009494 ], [ 22.527545200150826, 42.87404999381215 ], [ 22.52299767390349, 42.874644273014781 ], [ 22.515556267807483, 42.87598786105093 ], [ 22.511938918446333, 42.8768921977167 ], [ 22.504084100300986, 42.879295152049622 ], [ 22.500208367622065, 42.879915270573235 ], [ 22.496280958999023, 42.880147812771327 ], [ 22.488477816797797, 42.879966946517357 ], [ 22.476747266872849, 42.878313300118691 ], [ 22.472974887880753, 42.878106594543681 ], [ 22.465430128997241, 42.878132432965401 ], [ 22.461709425949209, 42.878416652906196 ], [ 22.458195427576925, 42.879010932108827 ], [ 22.450237258442712, 42.881543076751541 ], [ 22.447291700851281, 42.882137355954171 ], [ 22.438041619625039, 42.883455105568657 ], [ 22.435767857400663, 42.884049383871968 ], [ 22.433700798952714, 42.884824531127208 ], [ 22.428326450405336, 42.887692573453478 ], [ 22.426311068800771, 42.888596910119304 ], [ 22.419438104384994, 42.890948188508048 ], [ 22.413805373419223, 42.893196113210024 ], [ 22.409981316684423, 42.89583161153962 ], [ 22.406312289580455, 42.899397284956706 ], [ 22.401196322552209, 42.902807928742902 ], [ 22.39969770668381, 42.904513251085632 ], [ 22.396390414785799, 42.91030101258167 ], [ 22.394736769286453, 42.911928818759975 ], [ 22.393186475675293, 42.912833157224384 ], [ 22.389569126314086, 42.914383449936224 ], [ 22.383367953668085, 42.916372993119126 ], [ 22.38006066266945, 42.91758738904673 ], [ 22.377425164339854, 42.918827623396055 ], [ 22.366831495976726, 42.924537868727612 ], [ 22.35923506024983, 42.929550482968409 ], [ 22.377011753189834, 42.932237657242069 ], [ 22.388328891964761, 42.93453725788811 ], [ 22.393134799731229, 42.935984198711765 ], [ 22.395925326792394, 42.937353624270315 ], [ 22.398354120446299, 42.938955592926277 ], [ 22.400214470621279, 42.940712592112391 ], [ 22.40140302902654, 42.942598782507787 ], [ 22.401558057758166, 42.944459133582143 ], [ 22.400731234558805, 42.946422838343267 ], [ 22.399387648321294, 42.948386542205128 ], [ 22.397837354710134, 42.950246894178804 ], [ 22.395098503593033, 42.952727362877454 ], [ 22.390034214307548, 42.955982977932081 ], [ 22.379130486682584, 42.961305650535337 ], [ 22.376288282778034, 42.962649238571487 ], [ 22.363937616128055, 42.967351793550392 ], [ 22.36135379374258, 42.968152778328033 ], [ 22.358408237050469, 42.968643703843838 ], [ 22.355359327570909, 42.968798733474728 ], [ 22.347452834380761, 42.968540351056333 ], [ 22.345540805563701, 42.968592027000398 ], [ 22.342698601659094, 42.969160467781364 ], [ 22.34016645701638, 42.970271510921464 ], [ 22.334688754782178, 42.973656318084579 ], [ 22.326007114336846, 42.97714447713588 ], [ 22.318462354554015, 42.980503444977955 ], [ 22.298670281808029, 42.987841498286514 ], [ 22.289161818163336, 42.990967923031178 ], [ 22.285079379909462, 42.992027289327893 ], [ 22.281255324073925, 42.992518215743019 ], [ 22.27732791455162, 42.992621568530524 ], [ 22.273348829984513, 42.992466538899635 ], [ 22.269576450093098, 42.99200145090623 ], [ 22.263685336708932, 42.990967923031178 ], [ 22.260998163334534, 42.991071274919364 ], [ 22.25825931221749, 42.991794745331219 ], [ 22.255623813887894, 42.992879950948975 ], [ 22.252006462728048, 42.994921170075941 ], [ 22.247458937380031, 42.999210313005506 ], [ 22.245081820569567, 43.000812283460107 ], [ 22.242342970351785, 43.002181708119338 ], [ 22.238467237672864, 43.003576972099552 ], [ 22.234746534624833, 43.004300442511408 ], [ 22.222654250393305, 43.005489000017292 ], [ 22.217848341727574, 43.006703395944953 ], [ 22.215212844297298, 43.007762763140988 ], [ 22.207151319677621, 43.011716010185694 ], [ 22.204360792616455, 43.013240465375134 ], [ 22.2021387063362, 43.0149199492962 ], [ 22.20079511919937, 43.016857814736341 ], [ 22.200536736780975, 43.018718166710016 ], [ 22.201053500718444, 43.020578517784372 ], [ 22.202397087855331, 43.022232164182981 ], [ 22.21603966569802, 43.030216173537553 ], [ 22.218106724145969, 43.03207652371259 ], [ 22.220380487269665, 43.034660346098065 ], [ 22.222447543918975, 43.036339830019131 ], [ 22.224152866261761, 43.03727000600594 ], [ 22.230819126001848, 43.040215562698052 ], [ 22.233402948387322, 43.041094061841477 ], [ 22.241154412845844, 43.042954412915776 ], [ 22.242963087976136, 43.043677883327632 ], [ 22.245185174256392, 43.045176500095351 ], [ 22.249629346816903, 43.049517319868414 ], [ 22.256760695449714, 43.054168198903255 ], [ 22.257794224224028, 43.055150050834129 ], [ 22.25825931221749, 43.05618358050782 ], [ 22.258207635374049, 43.0569070500203 ], [ 22.257019076968788, 43.05845734273214 ], [ 22.246890496599121, 43.065252794580772 ], [ 22.240534295221551, 43.069051011994588 ], [ 22.234023065112353, 43.073986110970225 ], [ 22.233919712324848, 43.075691433312954 ], [ 22.236658563441949, 43.083520413036581 ], [ 22.237692092216264, 43.085225735379368 ], [ 22.239087355297215, 43.086698512826104 ], [ 22.240844353584009, 43.087912910552348 ], [ 22.246632114180727, 43.090651759870809 ], [ 22.253453402652383, 43.09297719983789 ], [ 22.261049839278655, 43.095199286118145 ], [ 22.26399539597071, 43.096517034833255 ], [ 22.269214714887141, 43.099617621156256 ], [ 22.285647820690372, 43.105844632223977 ], [ 22.295621372328469, 43.109927070477909 ], [ 22.281823764854835, 43.130080878429794 ], [ 22.2800150897246, 43.131889553560029 ], [ 22.276501092251578, 43.134680081520514 ], [ 22.275467564376584, 43.13612702144485 ], [ 22.275364210689759, 43.136798814113945 ], [ 22.277482944182509, 43.140984605155381 ], [ 22.277431268238445, 43.142586574710606 ], [ 22.276449416307514, 43.144085191478382 ], [ 22.275209181058869, 43.145041204987592 ], [ 22.268852979681242, 43.148736070513223 ], [ 22.266217482250966, 43.150027980806669 ], [ 22.263478631133921, 43.151035672058583 ], [ 22.260481397598426, 43.151500759152668 ], [ 22.259137811360915, 43.151449083208604 ], [ 22.256037225037915, 43.150751451218468 ], [ 22.249577670872782, 43.148632716826398 ], [ 22.245805290981366, 43.147986762579023 ], [ 22.24182620641426, 43.147754218582293 ], [ 22.237847120947833, 43.147857571369798 ], [ 22.234074741056418, 43.148426012150708 ], [ 22.230043979645927, 43.149666246500033 ], [ 22.225858188604491, 43.151423244786884 ], [ 22.223274367118336, 43.152973538398044 ], [ 22.221155632726266, 43.154885566315784 ], [ 22.215626255447319, 43.160725002856566 ], [ 22.213765902574323, 43.161965237205891 ], [ 22.212060581130913, 43.162456162721696 ], [ 22.210251906000622, 43.162688706718427 ], [ 22.206531202952647, 43.162637030774306 ], [ 22.203740675891481, 43.162817897927596 ], [ 22.201466912767785, 43.163205471555273 ], [ 22.19929650243165, 43.163851426701967 ], [ 22.196505975370428, 43.165039985107228 ], [ 22.191545037973128, 43.167908027433498 ], [ 22.18441369023958, 43.172610582412403 ], [ 22.1774890480811, 43.178191637434111 ], [ 22.174130080238967, 43.180517076501872 ], [ 22.172114698634402, 43.181343898801856 ], [ 22.169944289197588, 43.182015693269591 ], [ 22.160849236702916, 43.183462633193926 ], [ 22.15785200406674, 43.184108588340678 ], [ 22.155216505737144, 43.185012925905767 ], [ 22.145966423611526, 43.189353746578092 ], [ 22.13723310722213, 43.195012315066265 ], [ 22.135062696885939, 43.196020006318236 ], [ 22.113616977741287, 43.202944648476716 ], [ 22.119198031863675, 43.212453111222089 ], [ 22.125502557297182, 43.222271633229241 ], [ 22.130670200269492, 43.228214423456848 ], [ 22.131703729043863, 43.230178128218029 ], [ 22.131910434618874, 43.232115994557489 ], [ 22.129636672394497, 43.239454046966671 ], [ 22.129946729857693, 43.241288561417946 ], [ 22.130980258632007, 43.242993882861356 ], [ 22.132530552243168, 43.244518338050852 ], [ 22.137749872058919, 43.248316555464612 ], [ 22.13935184071488, 43.249763495389004 ], [ 22.140540399120084, 43.251365464944229 ], [ 22.14219404461943, 43.25487946241725 ], [ 22.143124219706976, 43.256093858344855 ], [ 22.145139601311541, 43.257618313534294 ], [ 22.148446893209552, 43.258961899771862 ], [ 22.151185744326597, 43.259375311821145 ], [ 22.157696974435794, 43.25927195903364 ], [ 22.15955732640947, 43.259426987765266 ], [ 22.161210971908815, 43.259892075758671 ], [ 22.16301964703905, 43.261132311007316 ], [ 22.16436323417588, 43.262785956506661 ], [ 22.166430290825247, 43.266403306767188 ], [ 22.166998731606157, 43.268211981897423 ], [ 22.166947055662092, 43.269090481040848 ], [ 22.165086703688416, 43.272759508144759 ], [ 22.164673293437716, 43.27412893280399 ], [ 22.16436323417588, 43.278805650260551 ], [ 22.164053175813422, 43.280252591084206 ], [ 22.163433058189071, 43.281492825433531 ], [ 22.161521030271331, 43.282939765357867 ], [ 22.154338005694399, 43.286014513259147 ], [ 22.150358921127292, 43.287952378699288 ], [ 22.148136833947717, 43.289528509832849 ], [ 22.146586541235877, 43.291363023384804 ], [ 22.145966423611526, 43.293275051302544 ], [ 22.145914747667462, 43.295290432007789 ], [ 22.146896599598392, 43.300303046248587 ], [ 22.146844923654271, 43.302447618163001 ], [ 22.146379835660866, 43.304592190077472 ], [ 22.142659132612835, 43.312524521689284 ], [ 22.14183231031285, 43.31521169686232 ], [ 22.140126987070801, 43.326968085208932 ], [ 22.137388135953699, 43.33694163684703 ], [ 22.149790480346383, 43.339861355117421 ], [ 22.16069420707197, 43.342832750231196 ], [ 22.164879998113406, 43.343659573430557 ], [ 22.167773878861396, 43.343711249374621 ], [ 22.169840936410083, 43.343504543799611 ], [ 22.178057488862009, 43.342367662237791 ], [ 22.188496127594192, 43.340636502372661 ], [ 22.198159620869774, 43.3398355166957 ], [ 22.201311883136896, 43.339370428702296 ], [ 22.205962762171737, 43.33807851840885 ], [ 22.208804966076286, 43.336734931272019 ], [ 22.217693312096685, 43.331567288299709 ], [ 22.220587191945356, 43.330275377106943 ], [ 22.225186395036076, 43.328983465914177 ], [ 22.234539829049879, 43.327691554721468 ], [ 22.2387772969347, 43.326709702790538 ], [ 22.24146447120836, 43.325417792497092 ], [ 22.247458937380031, 43.322058823755697 ], [ 22.249370965297771, 43.321309515821497 ], [ 22.255365430570123, 43.319526679112926 ], [ 22.258414340949059, 43.319061591119521 ], [ 22.26151492727206, 43.318854885544511 ], [ 22.267922803694432, 43.318984076753736 ], [ 22.275312533846318, 43.320095119893836 ], [ 22.283115676047601, 43.32074107504053 ], [ 22.303476189574496, 43.320921943093197 ], [ 22.307506951884307, 43.321076971824766 ], [ 22.311331007719787, 43.321490382974787 ], [ 22.32145958808951, 43.323609117366857 ], [ 22.323629998425645, 43.324280910935272 ], [ 22.325438673555936, 43.325211086922081 ], [ 22.327143995898666, 43.326502997215528 ], [ 22.328280876561166, 43.328053289927368 ], [ 22.330089552590778, 43.33446116814838 ], [ 22.333758578795369, 43.342264309450286 ], [ 22.334275343632214, 43.344383042943036 ], [ 22.334327019576278, 43.346553453279228 ], [ 22.333345167645348, 43.351566067519968 ], [ 22.333241814857843, 43.353633124169335 ], [ 22.333655226007863, 43.35564850487458 ], [ 22.334947137200629, 43.357870592054155 ], [ 22.338099400367014, 43.361694647889692 ], [ 22.338719517092045, 43.363141587814027 ], [ 22.33897789861112, 43.364691881425188 ], [ 22.338719517092045, 43.370221258704078 ], [ 22.33727257716771, 43.382365221577686 ], [ 22.359906853818245, 43.375957343356674 ], [ 22.36212894099782, 43.375027167369865 ], [ 22.367451612701757, 43.37166819952779 ], [ 22.371068962962227, 43.369756170710673 ], [ 22.375616489209619, 43.368257554842273 ], [ 22.384143100923325, 43.366345526924476 ], [ 22.394220005348927, 43.362650662298222 ], [ 22.398715854752879, 43.36179800157646 ], [ 22.401558057758166, 43.361849677520581 ], [ 22.407449172041652, 43.362624823876502 ], [ 22.410188023158753, 43.362573147033061 ], [ 22.414270461412627, 43.361591295102187 ], [ 22.416285842117929, 43.360790310324546 ], [ 22.421608513821866, 43.357612210535081 ], [ 22.4449662608842, 43.344744778148993 ], [ 22.446051467401276, 43.345339057351566 ], [ 22.448583612044047, 43.346062526864102 ], [ 22.451684198367047, 43.346553453279228 ], [ 22.461296013899926, 43.346295070860833 ], [ 22.464551628954496, 43.346475938014123 ], [ 22.466825392078192, 43.346811834798302 ], [ 22.468892449626821, 43.347431952422653 ], [ 22.471527947956417, 43.348853053925268 ], [ 22.474266799073519, 43.351204332314069 ], [ 22.477935825278109, 43.355906887292974 ], [ 22.48294843861953, 43.364588527738363 ], [ 22.484292025756361, 43.365983791718577 ], [ 22.485687289736632, 43.366603909342928 ], [ 22.487340936135297, 43.366913966806123 ], [ 22.489873080778011, 43.366862290862002 ], [ 22.491423374389171, 43.366345526924476 ], [ 22.492818638369442, 43.365492866202771 ], [ 22.495557488587224, 43.362934882239017 ], [ 22.497831251710863, 43.3602477079653 ], [ 22.502533806689826, 43.353478095437708 ], [ 22.505117629075301, 43.350584214689718 ], [ 22.515349562232473, 43.343866279005567 ], [ 22.520827263567355, 43.33807851840885 ], [ 22.524599644358091, 43.33544302007931 ], [ 22.532919548698203, 43.332574977752984 ], [ 22.53943077970672, 43.329758613169417 ], [ 22.541394483568524, 43.329319362698413 ], [ 22.551678093569137, 43.328776760339167 ], [ 22.554727003948074, 43.328415025133268 ], [ 22.572400344100572, 43.325417792497092 ], [ 22.575190871161738, 43.325236925343802 ], [ 22.577154575023599, 43.325366116553027 ], [ 22.578911574209769, 43.325727850859607 ], [ 22.58066857339594, 43.326838893999707 ], [ 22.581133661389345, 43.328001613983247 ], [ 22.581081983646584, 43.329396877963518 ], [ 22.580616895653179, 43.331283067459594 ], [ 22.577723015804509, 43.337406724840434 ], [ 22.577361280598609, 43.338801987921386 ], [ 22.577567987072939, 43.340739854260846 ], [ 22.578963250153834, 43.343013618283805 ], [ 22.581185337333409, 43.345184027720677 ], [ 22.586714714612356, 43.349343980340393 ], [ 22.60164920364781, 43.360041002390346 ], [ 22.605783318745125, 43.36179800157646 ], [ 22.617668898301019, 43.365544542146893 ], [ 22.61978763179377, 43.366397202868598 ], [ 22.622371454179245, 43.367844142792933 ], [ 22.62459353956018, 43.369523626713999 ], [ 22.629864536219372, 43.374665432163965 ], [ 22.634308708779884, 43.379626370460585 ], [ 22.638546176664704, 43.383837999024422 ], [ 22.643507114062061, 43.387532864550053 ], [ 22.650845168269882, 43.393889065028304 ], [ 22.651827020200813, 43.394509181753335 ], [ 22.658855015146798, 43.401227118336806 ], [ 22.658926066000106, 43.401295034000029 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-23", "NAME_1": "Jablanicki" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.544785162000068, 42.871706438000061 ], [ 22.544494262000057, 42.871389466000025 ], [ 22.537569621000074, 42.868340556000092 ], [ 22.519792928000129, 42.870355937000042 ], [ 22.506046997000112, 42.870123393000071 ], [ 22.497055298000078, 42.864413147000036 ], [ 22.481449015000123, 42.84673980700002 ], [ 22.470907023000052, 42.840125224000033 ], [ 22.445482218000052, 42.830177511000031 ], [ 22.436800578000089, 42.824286398000126 ], [ 22.430446174000025, 42.817076593000067 ], [ 22.429463331967156, 42.816818345690081 ], [ 22.41933475069817, 42.814157008938764 ], [ 22.417112664417914, 42.813278509795396 ], [ 22.411376580664637, 42.810358792424324 ], [ 22.406932407204806, 42.808756821969723 ], [ 22.39990441315814, 42.806999824582192 ], [ 22.388897331846351, 42.805759589333547 ], [ 22.387036980772052, 42.805268662918422 ], [ 22.384918247279245, 42.804002590147377 ], [ 22.380680780293744, 42.799739284740156 ], [ 22.375306430847104, 42.795450140911271 ], [ 22.371482375011567, 42.791729437863239 ], [ 22.366108025564927, 42.785450750851453 ], [ 22.36342085129121, 42.783125311783692 ], [ 22.361043735380065, 42.781549181549451 ], [ 22.350295038285367, 42.776820787249505 ], [ 22.345385775932812, 42.773048408257409 ], [ 22.342853631290041, 42.771653144277138 ], [ 22.339908074597929, 42.770542101137039 ], [ 22.336652458644039, 42.769741116359398 ], [ 22.333551873220358, 42.769250189944273 ], [ 22.324043409575665, 42.768139145904854 ], [ 22.319392531440144, 42.766898912454849 ], [ 22.316550326636275, 42.765607001262083 ], [ 22.313914829205999, 42.764108385393627 ], [ 22.308643833446126, 42.760258491136426 ], [ 22.302132603336929, 42.75382477539307 ], [ 22.291435581287033, 42.747365221227938 ], [ 22.289730258944303, 42.746615912394418 ], [ 22.286784702252191, 42.745918281303602 ], [ 22.2834774112535, 42.745840766038498 ], [ 22.280686883293015, 42.746124985979293 ], [ 22.277999709019355, 42.746667589237802 ], [ 22.273348829984513, 42.748088690740474 ], [ 22.270196566818072, 42.748657132420703 ], [ 22.267612746231237, 42.748657132420703 ], [ 22.265855747045066, 42.748347073158868 ], [ 22.259757928085889, 42.746435045241128 ], [ 22.25805260574316, 42.746305854031903 ], [ 22.256347284299693, 42.746538398028633 ], [ 22.253918490645788, 42.747520249959564 ], [ 22.249836053291233, 42.749742337139139 ], [ 22.245856967824807, 42.75129262985098 ], [ 22.234591505893263, 42.753850612915414 ], [ 22.232007684407108, 42.754832464846345 ], [ 22.227253451685442, 42.757261256701611 ], [ 22.223791131055862, 42.759560859146291 ], [ 22.22239586797491, 42.760930283805521 ], [ 22.218520135295989, 42.766175442042993 ], [ 22.216608107378249, 42.767751573176554 ], [ 22.214851108192079, 42.768604233898259 ], [ 22.212784050643393, 42.769224352421929 ], [ 22.204929233397365, 42.771136380339669 ], [ 22.195989211432959, 42.774572862547529 ], [ 22.177592400868605, 42.784778958182358 ], [ 22.174491815444924, 42.787207750037624 ], [ 22.173509962614673, 42.788525498752733 ], [ 22.172993197777828, 42.789998277098789 ], [ 22.172838169046258, 42.791548569810629 ], [ 22.173561638558738, 42.796974596100711 ], [ 22.173096550565333, 42.798834947175067 ], [ 22.171391229121923, 42.800256049577001 ], [ 22.169582553991631, 42.801005357511201 ], [ 22.167463819599561, 42.801522122348047 ], [ 22.163691440607465, 42.801987210341451 ], [ 22.159712355141039, 42.802116401550677 ], [ 22.155733269674613, 42.802013047863852 ], [ 22.151909213839133, 42.801625475135552 ], [ 22.149842157189767, 42.801160387142147 ], [ 22.148033482059532, 42.800488593573732 ], [ 22.146018101354287, 42.799067491171741 ], [ 22.139971958339174, 42.792194525856644 ], [ 22.137904900790545, 42.790721747510588 ], [ 22.136096225660253, 42.790153306729678 ], [ 22.132685580974737, 42.789765733102058 ], [ 22.122608677448511, 42.790049953942173 ], [ 22.118577915138644, 42.790360012304689 ], [ 22.114857212090669, 42.790928453085598 ], [ 22.112738477698542, 42.791548569810629 ], [ 22.110981480311068, 42.792375393009934 ], [ 22.109586216330797, 42.793615628258635 ], [ 22.108966098706446, 42.795062568182971 ], [ 22.109017774650567, 42.795889391382275 ], [ 22.110051304324202, 42.797827256822416 ], [ 22.115994093652489, 42.803718370206582 ], [ 22.117337680789319, 42.805733750911827 ], [ 22.117647739151835, 42.807103176470378 ], [ 22.117441033576824, 42.808446764506527 ], [ 22.116200799227499, 42.810281277159163 ], [ 22.110154657111707, 42.817851874464395 ], [ 22.108242629193967, 42.819272975967067 ], [ 22.106485630007796, 42.819944770434802 ], [ 22.104470249302551, 42.820384020006486 ], [ 22.09733890066974, 42.820952459888076 ], [ 22.086021762794076, 42.820823269578227 ], [ 22.082352735690165, 42.820487371894671 ], [ 22.078890415060584, 42.81986725516964 ], [ 22.072792596101408, 42.817671007311105 ], [ 22.065557895580412, 42.813588569057174 ], [ 22.063490838031726, 42.812658393070365 ], [ 22.054654167955448, 42.809506130803243 ], [ 22.041114942900265, 42.805061957343412 ], [ 22.031141392161487, 42.803201606269113 ], [ 22.028247511413497, 42.803227443791457 ], [ 22.025973748289857, 42.803589178997413 ], [ 22.023803337953666, 42.804209295722387 ], [ 22.021064486836565, 42.805501206915153 ], [ 22.016361931857659, 42.808601793238154 ], [ 22.008300409036622, 42.815397244187466 ], [ 22.005716586651147, 42.816818345690081 ], [ 22.003546177214275, 42.817593492046001 ], [ 22.001272414090636, 42.818110256882846 ], [ 21.998326857398524, 42.818420315245305 ], [ 21.995484652594598, 42.8183169624578 ], [ 21.993417595945289, 42.818006904095341 ], [ 21.991660596759118, 42.817386786470991 ], [ 21.989696892897257, 42.81601736091244 ], [ 21.987216424198607, 42.812916775488759 ], [ 21.986389600999246, 42.811495673086824 ], [ 21.985614454643326, 42.808911852499989 ], [ 21.984425897137442, 42.800695299148686 ], [ 21.983495721150575, 42.798188992028315 ], [ 21.981945428438735, 42.79614777290135 ], [ 21.979619989370974, 42.79446828898034 ], [ 21.972902052787504, 42.791160997082329 ], [ 21.967062616246722, 42.789042262690259 ], [ 21.963910353080337, 42.788344632498763 ], [ 21.94427330906592, 42.784830634126422 ], [ 21.940139193968605, 42.785347398063948 ], [ 21.936676873339024, 42.785554104538278 ], [ 21.930372348804838, 42.785269883698163 ], [ 21.91926191560492, 42.783487046989592 ], [ 21.911252068727947, 42.781575019071852 ], [ 21.909081659291132, 42.781316637552777 ], [ 21.906911248055621, 42.781290799131057 ], [ 21.901743605083311, 42.781626695015916 ], [ 21.891615024713587, 42.782711899734352 ], [ 21.888824496753102, 42.782608547846166 ], [ 21.884897088130117, 42.781833401490246 ], [ 21.875440301328808, 42.779197903160707 ], [ 21.871564568649887, 42.778345242438945 ], [ 21.868774040689402, 42.778138535964615 ], [ 21.864898308909801, 42.778267727173841 ], [ 21.8621594577927, 42.778086860020551 ], [ 21.851617466273012, 42.776045640893585 ], [ 21.848826939211847, 42.775916450583679 ], [ 21.844899529689542, 42.776045640893585 ], [ 21.842109001729057, 42.775890611262696 ], [ 21.840145297867195, 42.77555471537778 ], [ 21.822782016976475, 42.771446437802865 ], [ 21.8205599297969, 42.770671292346265 ], [ 21.817769402735735, 42.769327704310058 ], [ 21.813273553331783, 42.766227117987057 ], [ 21.811723259720623, 42.764599310909432 ], [ 21.810689731845628, 42.762893989466022 ], [ 21.810483026270617, 42.760981961548282 ], [ 21.810896437420638, 42.759483343881186 ], [ 21.811723259720623, 42.758062242378571 ], [ 21.814823846043623, 42.754599920849671 ], [ 21.815392286824533, 42.752894599406204 ], [ 21.814565463625229, 42.751344305795044 ], [ 21.813221877387718, 42.750491645073339 ], [ 21.807227411216047, 42.748424588423973 ], [ 21.805573764817382, 42.747675278691133 ], [ 21.803713412843706, 42.746202501244397 ], [ 21.80071618020753, 42.742714342193096 ], [ 21.798649122658844, 42.740905667062862 ], [ 21.796065301172689, 42.739407050295085 ], [ 21.789399041432603, 42.736668199178041 ], [ 21.787848747821442, 42.735763862512215 ], [ 21.786608514371437, 42.73470449531618 ], [ 21.785316603178671, 42.732740790554999 ], [ 21.784903192028651, 42.730363673744534 ], [ 21.785006544816156, 42.722818914861023 ], [ 21.785419955966177, 42.714964098514315 ], [ 21.786350131952986, 42.707290147522258 ], [ 21.785936719903702, 42.705843206698603 ], [ 21.785058220760277, 42.704473782039372 ], [ 21.78200931217998, 42.702122504549948 ], [ 21.772242466116893, 42.696024684691395 ], [ 21.768986851062323, 42.694526068822995 ], [ 21.760666944923571, 42.691606350552604 ], [ 21.757618036343274, 42.690288600938175 ], [ 21.7546724787519, 42.688454088285539 ], [ 21.744249787697527, 42.679424528019524 ], [ 21.738651977000103, 42.68215037 ], [ 21.708886352, 42.687188823000085 ], [ 21.687388957000081, 42.686827088000072 ], [ 21.644084107000111, 42.672306010000042 ], [ 21.629407999000108, 42.672202657000113 ], [ 21.612664836000079, 42.680393372000125 ], [ 21.580522095000049, 42.710210673000049 ], [ 21.565225870000091, 42.72018422500004 ], [ 21.542488240000097, 42.72581695600006 ], [ 21.479513751564848, 42.732250181451732 ], [ 21.44182255000004, 42.736100566000076 ], [ 21.417800406000111, 42.735570162000059 ], [ 21.405545695000086, 42.735299581000064 ], [ 21.38869917800011, 42.73904612300008 ], [ 21.378673951000081, 42.744136251000057 ], [ 21.379190714000117, 42.747004293000131 ], [ 21.383944946000042, 42.749975688000049 ], [ 21.387148885000101, 42.754962464000087 ], [ 21.390559529000114, 42.770413717000096 ], [ 21.404098755000092, 42.803977559000103 ], [ 21.408336222000059, 42.820746562000053 ], [ 21.408418886000049, 42.841743208000068 ], [ 21.432418247204339, 42.85803030005826 ], [ 21.432728305566854, 42.859632270512861 ], [ 21.43727583181419, 42.868598130898988 ], [ 21.437740919807595, 42.870846056500284 ], [ 21.437740919807595, 42.87596202172989 ], [ 21.438257683745064, 42.877925727390391 ], [ 21.439963006087851, 42.880277004879872 ], [ 21.447042677877278, 42.886917426198238 ], [ 21.448541293745677, 42.889217026844278 ], [ 21.448851353007512, 42.891077378817954 ], [ 21.448024529808208, 42.89503062586266 ], [ 21.447972852964767, 42.89696849220212 ], [ 21.449161411370028, 42.903066311161297 ], [ 21.448954704895698, 42.905030015922478 ], [ 21.447921177020703, 42.909009101388904 ], [ 21.447972852964767, 42.910352688525734 ], [ 21.448489617801613, 42.911670437240844 ], [ 21.450091587356837, 42.913453273949415 ], [ 21.452985467205508, 42.915520331498101 ], [ 21.45634443504764, 42.917329007527655 ], [ 21.460840285350855, 42.919292711389517 ], [ 21.462493930850201, 42.92027456332039 ], [ 21.463889193931152, 42.921463120826331 ], [ 21.466421340372563, 42.924796251146063 ], [ 21.468126661815973, 42.926579087854577 ], [ 21.47329430478834, 42.93128164283354 ], [ 21.47406945204358, 42.932547716503905 ], [ 21.474586215981049, 42.934433905999924 ], [ 21.474276156719213, 42.936371772339385 ], [ 21.473139276056713, 42.938361313723647 ], [ 21.468178337760037, 42.944484972003806 ], [ 21.467093133041658, 42.946422838343267 ], [ 21.464871046761402, 42.951900540577469 ], [ 21.463940870774536, 42.953218289292579 ], [ 21.459238315795631, 42.956861477075506 ], [ 21.45768802308379, 42.958566799418236 ], [ 21.454432407129843, 42.964612942433348 ], [ 21.451331820806843, 42.969651394196489 ], [ 21.450453321663474, 42.971795966110903 ], [ 21.450349968875969, 42.973242906035239 ], [ 21.450763380925252, 42.974508978806284 ], [ 21.451951939330513, 42.975516669158935 ], [ 21.453708936718044, 42.97636932988064 ], [ 21.466731397835702, 42.980270900981282 ], [ 21.475516391967915, 42.983138943307551 ], [ 21.501768018878977, 42.995567125222635 ], [ 21.507090692381553, 42.998461005071306 ], [ 21.512723423347268, 43.002543443325237 ], [ 21.515048862415028, 43.004765530504812 ], [ 21.520578240593295, 43.011121730983064 ], [ 21.522645298141981, 43.012956244535019 ], [ 21.525022414053126, 43.014635729355405 ], [ 21.535616082416254, 43.020371813108682 ], [ 21.538148227958345, 43.021586209036286 ], [ 21.542592401418176, 43.023317368901417 ], [ 21.546623162828666, 43.024557604150061 ], [ 21.550498894608268, 43.025126044031708 ], [ 21.554529656918135, 43.025384426450103 ], [ 21.587964308406072, 43.025281074561917 ], [ 21.592046746660003, 43.025461940815887 ], [ 21.596025832126429, 43.025901191286948 ], [ 21.598402948037631, 43.026443792746818 ], [ 21.600728387105391, 43.027141424736953 ], [ 21.603570591009941, 43.028433335929662 ], [ 21.612458937030283, 43.03362681732375 ], [ 21.621192254319055, 43.038148505149366 ], [ 21.624757927736141, 43.040267239541436 ], [ 21.626359898190742, 43.041455797047377 ], [ 21.627651807584812, 43.042876899449311 ], [ 21.630649041120307, 43.048483791993363 ], [ 21.631682569894679, 43.049956570339418 ], [ 21.632974481087388, 43.051274319054585 ], [ 21.634576449743349, 43.052359523772964 ], [ 21.638142124059755, 43.05385814144006 ], [ 21.63995079918999, 43.05424571416836 ], [ 21.642586296620266, 43.054271551690761 ], [ 21.644394971750501, 43.053909817384124 ], [ 21.648735793322203, 43.052411201515724 ], [ 21.655350376218848, 43.048871364721663 ], [ 21.657004021718194, 43.048406276728258 ], [ 21.658244256067519, 43.048328762362473 ], [ 21.66000125525369, 43.048535467937484 ], [ 21.661809930383981, 43.049026394352609 ], [ 21.665944044581977, 43.050447495855224 ], [ 21.673953892358213, 43.052643743713759 ], [ 21.683359002316081, 43.054788316527549 ], [ 21.684805942240416, 43.056958726863741 ], [ 21.688216586925932, 43.060421048392641 ], [ 21.692660760385763, 43.063624985704507 ], [ 21.698603549714051, 43.067319851230138 ], [ 21.704804722360052, 43.072771715042563 ], [ 21.708887159714607, 43.07582062452218 ], [ 21.711677686775829, 43.07737091723402 ], [ 21.723459914443481, 43.082900296311607 ], [ 21.73482872916253, 43.087034410509602 ], [ 21.74175337132101, 43.089101467158969 ], [ 21.746972691136762, 43.090160834355004 ], [ 21.757049594663044, 43.09106517192015 ], [ 21.760460239348561, 43.091556098335275 ], [ 21.771570671649158, 43.094217434187215 ], [ 21.774929640390553, 43.095638535689829 ], [ 21.794049919568124, 43.106981512886478 ], [ 21.800922885782541, 43.112045803071339 ], [ 21.807227411216047, 43.117549342827886 ], [ 21.813893670056814, 43.122484442702842 ], [ 21.814875522887064, 43.124525661829807 ], [ 21.814823846043623, 43.125636704969907 ], [ 21.813997022844319, 43.127497056943582 ], [ 21.811051467051527, 43.131450303988288 ], [ 21.805522087973941, 43.137780666944195 ], [ 21.82226525213963, 43.138969225349456 ], [ 21.830326775859987, 43.139227606868531 ], [ 21.849292026305932, 43.139330960555355 ], [ 21.852857699723074, 43.13958934207443 ], [ 21.856320021251975, 43.140054430067892 ], [ 21.863296340253896, 43.142018133929696 ], [ 21.870065951882168, 43.144343573896776 ], [ 21.878282505233415, 43.147960924157303 ], [ 21.892596876644518, 43.153645331067139 ], [ 21.904534133043796, 43.163412177130226 ], [ 21.936831902969914, 43.133052273543569 ], [ 21.947838983382383, 43.138555813300115 ], [ 21.955797153415858, 43.139279282812652 ], [ 21.9597245620389, 43.139873562015225 ], [ 21.963238560411241, 43.140803738002091 ], [ 21.966390821778987, 43.141992296407352 ], [ 21.968871291376956, 43.143258368279021 ], [ 21.9797750181026, 43.149872952075043 ], [ 21.982565545163766, 43.151113186424368 ], [ 21.984787632343341, 43.151784979992783 ], [ 21.987009718623597, 43.152198391142804 ], [ 21.989851921628883, 43.152250067986245 ], [ 21.991815627289327, 43.151991686467113 ], [ 21.993624302419619, 43.151449083208604 ], [ 21.995691359068928, 43.149976304862548 ], [ 21.99998050289787, 43.145583808246158 ], [ 22.0016858252406, 43.144395249840898 ], [ 22.005871616282036, 43.142121486717201 ], [ 22.008248732193238, 43.141087957942887 ], [ 22.010729200891888, 43.140416165273791 ], [ 22.013468052008989, 43.140261134743525 ], [ 22.015586786401059, 43.140571194005361 ], [ 22.017602166206984, 43.141139634786271 ], [ 22.022614780447725, 43.143568427540856 ], [ 22.025095249146432, 43.144214381788288 ], [ 22.026697218701656, 43.144214381788288 ], [ 22.027989128995102, 43.143775133115867 ], [ 22.029229364243747, 43.142586574710606 ], [ 22.031761508886518, 43.137057197431716 ], [ 22.033983595166774, 43.134473375046184 ], [ 22.036205682346349, 43.132664699915949 ], [ 22.038892856620009, 43.131166083148173 ], [ 22.045972528409436, 43.128375556087008 ], [ 22.048349644320638, 43.127186998581124 ], [ 22.050468376914068, 43.125791733701533 ], [ 22.052328728887687, 43.124241440989692 ], [ 22.056101107879783, 43.120365709210091 ], [ 22.06106204617646, 43.11612824222459 ], [ 22.066126336361322, 43.111063951140409 ], [ 22.075273064800058, 43.103829251518732 ], [ 22.07765018071126, 43.102227281064131 ], [ 22.084058058032952, 43.099152534062171 ], [ 22.089225701904581, 43.096129462104955 ], [ 22.091292758553948, 43.095199286118145 ], [ 22.098372430343375, 43.092770494262879 ], [ 22.10038781104862, 43.09184031827607 ], [ 22.105503778076866, 43.088584703221443 ], [ 22.109017774650567, 43.086724352147087 ], [ 22.113513624953839, 43.085303249745152 ], [ 22.12198855982416, 43.083417060249133 ], [ 22.124262322947857, 43.082641912993893 ], [ 22.127156202796527, 43.081324164278726 ], [ 22.132633905030673, 43.077991034858371 ], [ 22.13800825357805, 43.07408946375773 ], [ 22.140540399120084, 43.071996567787323 ], [ 22.149583774771372, 43.063314928241311 ], [ 22.155216505737144, 43.05866404920647 ], [ 22.161366000640385, 43.059077460356491 ], [ 22.168704053948886, 43.060136827552526 ], [ 22.172011345846897, 43.060266017862432 ], [ 22.175215284957403, 43.059955960399236 ], [ 22.18229495584751, 43.05791474127227 ], [ 22.187410922875756, 43.055873521245985 ], [ 22.190046421205352, 43.055072537367664 ], [ 22.192940301054023, 43.054684963740044 ], [ 22.195937533690199, 43.054736640583485 ], [ 22.212732374699328, 43.056829534755195 ], [ 22.215006137822968, 43.05747549080121 ], [ 22.217176548159159, 43.058353989944635 ], [ 22.219812045589435, 43.060110989130806 ], [ 22.226426629385401, 43.066208808089982 ], [ 22.234023065112353, 43.073986110970225 ], [ 22.240534295221551, 43.069051011994588 ], [ 22.246890496599121, 43.065252794580772 ], [ 22.257019076968788, 43.05845734273214 ], [ 22.258207635374049, 43.0569070500203 ], [ 22.25825931221749, 43.05618358050782 ], [ 22.257794224224028, 43.055150050834129 ], [ 22.256760695449714, 43.054168198903255 ], [ 22.249629346816903, 43.049517319868414 ], [ 22.245185174256392, 43.045176500095351 ], [ 22.242963087976136, 43.043677883327632 ], [ 22.241154412845844, 43.042954412915776 ], [ 22.233402948387322, 43.041094061841477 ], [ 22.230819126001848, 43.040215562698052 ], [ 22.224152866261761, 43.03727000600594 ], [ 22.222447543918975, 43.036339830019131 ], [ 22.220380487269665, 43.034660346098065 ], [ 22.218106724145969, 43.03207652371259 ], [ 22.21603966569802, 43.030216173537553 ], [ 22.202397087855331, 43.022232164182981 ], [ 22.201053500718444, 43.020578517784372 ], [ 22.200536736780975, 43.018718166710016 ], [ 22.20079511919937, 43.016857814736341 ], [ 22.2021387063362, 43.0149199492962 ], [ 22.204360792616455, 43.013240465375134 ], [ 22.207151319677621, 43.011716010185694 ], [ 22.215212844297298, 43.007762763140988 ], [ 22.217848341727574, 43.006703395944953 ], [ 22.222654250393305, 43.005489000017292 ], [ 22.234746534624833, 43.004300442511408 ], [ 22.238467237672864, 43.003576972099552 ], [ 22.242342970351785, 43.002181708119338 ], [ 22.245081820569567, 43.000812283460107 ], [ 22.247458937380031, 42.999210313005506 ], [ 22.252006462728048, 42.994921170075941 ], [ 22.255623813887894, 42.992879950948975 ], [ 22.25825931221749, 42.991794745331219 ], [ 22.260998163334534, 42.991071274919364 ], [ 22.263685336708932, 42.990967923031178 ], [ 22.269576450093098, 42.99200145090623 ], [ 22.273348829984513, 42.992466538899635 ], [ 22.27732791455162, 42.992621568530524 ], [ 22.281255324073925, 42.992518215743019 ], [ 22.285079379909462, 42.992027289327893 ], [ 22.289161818163336, 42.990967923031178 ], [ 22.298670281808029, 42.987841498286514 ], [ 22.318462354554015, 42.980503444977955 ], [ 22.326007114336846, 42.97714447713588 ], [ 22.334688754782178, 42.973656318084579 ], [ 22.34016645701638, 42.970271510921464 ], [ 22.342698601659094, 42.969160467781364 ], [ 22.345540805563701, 42.968592027000398 ], [ 22.347452834380761, 42.968540351056333 ], [ 22.355359327570909, 42.968798733474728 ], [ 22.358408237050469, 42.968643703843838 ], [ 22.36135379374258, 42.968152778328033 ], [ 22.363937616128055, 42.967351793550392 ], [ 22.376288282778034, 42.962649238571487 ], [ 22.379130486682584, 42.961305650535337 ], [ 22.390034214307548, 42.955982977932081 ], [ 22.395098503593033, 42.952727362877454 ], [ 22.397837354710134, 42.950246894178804 ], [ 22.399387648321294, 42.948386542205128 ], [ 22.400731234558805, 42.946422838343267 ], [ 22.401558057758166, 42.944459133582143 ], [ 22.40140302902654, 42.942598782507787 ], [ 22.400214470621279, 42.940712592112391 ], [ 22.398354120446299, 42.938955592926277 ], [ 22.395925326792394, 42.937353624270315 ], [ 22.393134799731229, 42.935984198711765 ], [ 22.388328891964761, 42.93453725788811 ], [ 22.377011753189834, 42.932237657242069 ], [ 22.35923506024983, 42.929550482968409 ], [ 22.366831495976726, 42.924537868727612 ], [ 22.377425164339854, 42.918827623396055 ], [ 22.38006066266945, 42.91758738904673 ], [ 22.383367953668085, 42.916372993119126 ], [ 22.389569126314086, 42.914383449936224 ], [ 22.393186475675293, 42.912833157224384 ], [ 22.394736769286453, 42.911928818759975 ], [ 22.396390414785799, 42.91030101258167 ], [ 22.39969770668381, 42.904513251085632 ], [ 22.401196322552209, 42.902807928742902 ], [ 22.406312289580455, 42.899397284956706 ], [ 22.409981316684423, 42.89583161153962 ], [ 22.413805373419223, 42.893196113210024 ], [ 22.419438104384994, 42.890948188508048 ], [ 22.426311068800771, 42.888596910119304 ], [ 22.428326450405336, 42.887692573453478 ], [ 22.433700798952714, 42.884824531127208 ], [ 22.435767857400663, 42.884049383871968 ], [ 22.438041619625039, 42.883455105568657 ], [ 22.447291700851281, 42.882137355954171 ], [ 22.450237258442712, 42.881543076751541 ], [ 22.458195427576925, 42.879010932108827 ], [ 22.461709425949209, 42.878416652906196 ], [ 22.465430128997241, 42.878132432965401 ], [ 22.472974887880753, 42.878106594543681 ], [ 22.476747266872849, 42.878313300118691 ], [ 22.488477816797797, 42.879966946517357 ], [ 22.496280958999023, 42.880147812771327 ], [ 22.500208367622065, 42.879915270573235 ], [ 22.504084100300986, 42.879295152049622 ], [ 22.511938918446333, 42.8768921977167 ], [ 22.515556267807483, 42.87598786105093 ], [ 22.52299767390349, 42.874644273014781 ], [ 22.527545200150826, 42.87404999381215 ], [ 22.544081658741561, 42.871802070009494 ], [ 22.544785162000068, 42.871706438000061 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-18", "NAME_1": "Raški" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.809717237560449, 43.2596101895586 ], [ 20.794420207000144, 43.263070984000038 ], [ 20.769512166000084, 43.260848898000049 ], [ 20.745327596000095, 43.252864888000076 ], [ 20.666986124000118, 43.209663392000053 ], [ 20.64486861200001, 43.203307190000103 ], [ 20.612312459000066, 43.202273662000025 ], [ 20.604044230000113, 43.197958679000052 ], [ 20.597533, 43.184962057000021 ], [ 20.600116821000142, 43.173825786000108 ], [ 20.612105754000112, 43.154938050000069 ], [ 20.620580689000121, 43.133337301 ], [ 20.626058390000111, 43.123725485000094 ], [ 20.632052856000115, 43.11726593000013 ], [ 20.64094120300004, 43.115276388 ], [ 20.651689901000054, 43.116309916000077 ], [ 20.661818481000125, 43.115948182000082 ], [ 20.669156535000099, 43.109798686000019 ], [ 20.664919068000074, 43.085407410000087 ], [ 20.643835082822818, 43.052256978576679 ], [ 20.617273396649921, 43.022129618986696 ], [ 20.596396118000143, 43.007091777000099 ], [ 20.584303833000064, 43.006910909000041 ], [ 20.572831665000137, 43.00933970200002 ], [ 20.562393026000109, 43.009494731000061 ], [ 20.553401326000142, 43.002595927000087 ], [ 20.543892863000082, 42.987248027000092 ], [ 20.538415161000074, 42.98065928100003 ], [ 20.530456990000118, 42.975155742000126 ], [ 20.511130005000069, 42.970194804000059 ], [ 20.493456665000082, 42.970194804000059 ], [ 20.476403442000048, 42.966370748000131 ], [ 20.459453572000115, 42.950015158 ], [ 20.450978637000048, 42.922032369000092 ], [ 20.466688273000102, 42.90950083400007 ], [ 20.488909139000043, 42.899191386000084 ], [ 20.494366525794533, 42.887466531555162 ], [ 20.498831014000132, 42.877874858 ], [ 20.476300089000119, 42.855524801000016 ], [ 20.4280343020001, 42.840641988000058 ], [ 20.345352010000028, 42.827438660000084 ], [ 20.355170532000102, 42.866170146000016 ], [ 20.353620239000065, 42.890974834000062 ], [ 20.337083781000075, 42.906968689000095 ], [ 20.275588827000064, 42.929887187000119 ], [ 20.223188924000056, 42.957663269000065 ], [ 20.194560181000071, 42.966835836000072 ], [ 20.140920044000097, 42.970814922000031 ], [ 20.129464296000094, 42.973604791000028 ], [ 20.116942179000063, 42.976654358000033 ], [ 20.056344255000113, 43.020795978000038 ], [ 20.054388424000109, 43.022220673000064 ], [ 20.058393588992942, 43.025642808868497 ], [ 20.060150588179113, 43.027864895148753 ], [ 20.061184116054108, 43.030397039791524 ], [ 20.062372673560048, 43.038458564411201 ], [ 20.063096143971848, 43.041068224319076 ], [ 20.06914228698696, 43.052927965453193 ], [ 20.07126102137903, 43.05597687403349 ], [ 20.075240105946136, 43.059749253924906 ], [ 20.076376986608636, 43.061222032270962 ], [ 20.080149367399372, 43.068301703161069 ], [ 20.083973423234852, 43.073417670189315 ], [ 20.090484653344049, 43.080523180400405 ], [ 20.0957039731598, 43.085639146529388 ], [ 20.097926060339375, 43.087344468872118 ], [ 20.100509880926268, 43.088791408796453 ], [ 20.102628615318338, 43.089669907939879 ], [ 20.111051873345275, 43.092331243791818 ], [ 20.117149692304451, 43.09473419902406 ], [ 20.120301954571516, 43.095716050954991 ], [ 20.125004509550479, 43.096387844523406 ], [ 20.127950067141853, 43.096284491735901 ], [ 20.13389285736946, 43.095380154170755 ], [ 20.136580030743801, 43.095405991693156 ], [ 20.138440382717476, 43.095819403742439 ], [ 20.140300733791832, 43.096491197310911 ], [ 20.141902704246377, 43.09742137329772 ], [ 20.143039584908877, 43.098661606747726 ], [ 20.143814732164117, 43.1001085484707 ], [ 20.144176467370073, 43.102123928276626 ], [ 20.143969760895743, 43.104242661769376 ], [ 20.143246291383207, 43.106361396161503 ], [ 20.139990676328637, 43.110857245565398 ], [ 20.138853793867497, 43.11302765590159 ], [ 20.138905469811561, 43.114888006975946 ], [ 20.139938998585876, 43.116774197371285 ], [ 20.141695997772047, 43.118557034079856 ], [ 20.143608025689844, 43.120055649948256 ], [ 20.15125613826018, 43.124654853039033 ], [ 20.153013135647655, 43.126308499437698 ], [ 20.155958693239086, 43.129977524742969 ], [ 20.157870721156826, 43.131889553560029 ], [ 20.165622185615348, 43.139227606868531 ], [ 20.167637567219913, 43.140416165273791 ], [ 20.16934288866338, 43.140829576423812 ], [ 20.17130659432388, 43.140932929211317 ], [ 20.182727084986993, 43.139951077280386 ], [ 20.19476769417372, 43.139641018018551 ], [ 20.206859979304568, 43.139641018018551 ], [ 20.21078738792761, 43.139847724492881 ], [ 20.214508090975585, 43.140312812486286 ], [ 20.218952264435416, 43.141656398723796 ], [ 20.224326612982793, 43.144498603527722 ], [ 20.226393669632159, 43.145377101771828 ], [ 20.236108839751125, 43.148477688094829 ], [ 20.243963656997153, 43.151784979992783 ], [ 20.246340772908354, 43.152456773561255 ], [ 20.252076856661574, 43.153438626391448 ], [ 20.265306024253618, 43.154523831109884 ], [ 20.282100864363372, 43.156900947021086 ], [ 20.278638542834472, 43.160001533344087 ], [ 20.276209750979206, 43.162611192352642 ], [ 20.27398766379963, 43.165324205048023 ], [ 20.271403843212795, 43.169251614570328 ], [ 20.269543491239119, 43.171396186484799 ], [ 20.267166375327918, 43.173075670405865 ], [ 20.264582553841763, 43.174083359859139 ], [ 20.258949822875991, 43.175711167836084 ], [ 20.256055942128, 43.176951402185466 ], [ 20.248511183244489, 43.181860662739382 ], [ 20.246444125695803, 43.182713325259726 ], [ 20.244170362572163, 43.183385117928822 ], [ 20.238175897299811, 43.184702867543251 ], [ 20.233783399784045, 43.186098131523522 ], [ 20.231199579197209, 43.187545071447857 ], [ 20.229339227223534, 43.189457099365598 ], [ 20.226083612168964, 43.195451565537269 ], [ 20.223603142570937, 43.197957871758376 ], [ 20.221226026659792, 43.199611518157042 ], [ 20.218538853285452, 43.201006782137256 ], [ 20.216368442049941, 43.201859442858961 ], [ 20.209340448003275, 43.203926500407647 ], [ 20.207635124761168, 43.204701645864247 ], [ 20.205878127373637, 43.206251939475408 ], [ 20.204689568968433, 43.208163967393148 ], [ 20.201640658589497, 43.216483873531899 ], [ 20.201175570596092, 43.218499254237145 ], [ 20.201278924282917, 43.219403590902971 ], [ 20.202054070638837, 43.220979722935851 ], [ 20.203449333719732, 43.222426662860187 ], [ 20.205102980118397, 43.223563544422007 ], [ 20.211717563914419, 43.227284247470038 ], [ 20.218435499598627, 43.230617376890393 ], [ 20.227737257668309, 43.23560415270947 ], [ 20.231354607928779, 43.237826239889046 ], [ 20.232853223797235, 43.239273179813381 ], [ 20.234145134989944, 43.241908678142977 ], [ 20.234765251714975, 43.251649684885024 ], [ 20.235385370238646, 43.254362698479724 ], [ 20.239416130749817, 43.262165838882311 ], [ 20.241896600347786, 43.268315335584248 ], [ 20.245875684914893, 43.274258124013215 ], [ 20.248976271237893, 43.280200914240766 ], [ 20.260086704437867, 43.291518053015693 ], [ 20.267424757746369, 43.298546047961736 ], [ 20.27781171963511, 43.289037584317043 ], [ 20.281687453213351, 43.284128322863808 ], [ 20.285098096999548, 43.27875397431643 ], [ 20.287061801760728, 43.276945299186195 ], [ 20.293211296663969, 43.273689684131568 ], [ 20.297913853441571, 43.270072332971779 ], [ 20.300394321240901, 43.268392849050713 ], [ 20.302461378789587, 43.267436835541503 ], [ 20.31062625529745, 43.265059718731038 ], [ 20.313210076783605, 43.263922838068481 ], [ 20.316310663106606, 43.261855781419172 ], [ 20.318894483693441, 43.260512193383022 ], [ 20.321064894029632, 43.260021266967897 ], [ 20.323338657153272, 43.25984039981455 ], [ 20.326232537901262, 43.26004710538956 ], [ 20.328299594550629, 43.260718898957975 ], [ 20.333570591209821, 43.275395006474355 ], [ 20.33450076719663, 43.282371324576957 ], [ 20.335792676590756, 43.284386705282202 ], [ 20.337032911839401, 43.285471910000638 ], [ 20.338531527707801, 43.286402085987447 ], [ 20.345042758716318, 43.289399319522943 ], [ 20.35031375537551, 43.292370713737398 ], [ 20.359357131026741, 43.295652167213746 ], [ 20.361165806157032, 43.296556504778835 ], [ 20.366178420397773, 43.300303046248587 ], [ 20.369020623403003, 43.302912706156462 ], [ 20.373361444075385, 43.309294745056434 ], [ 20.378684115779322, 43.31482412413402 ], [ 20.382663202145068, 43.322239691808306 ], [ 20.384110142069403, 43.323996690095157 ], [ 20.387985873849004, 43.327123114839878 ], [ 20.39020796102858, 43.328415025133268 ], [ 20.39253340009634, 43.329448553907639 ], [ 20.395065544739055, 43.330172024319438 ], [ 20.397235955075246, 43.330378729894448 ], [ 20.405814242733072, 43.330301215528664 ], [ 20.407622917863364, 43.330688788256964 ], [ 20.409328241105413, 43.331283067459594 ], [ 20.41160200422911, 43.332497464286519 ], [ 20.41273888489161, 43.333479316217449 ], [ 20.41372073682254, 43.335391344135189 ], [ 20.413565708090914, 43.339086208761501 ], [ 20.413979120140255, 43.340869046369392 ], [ 20.41465091280935, 43.342109279819397 ], [ 20.417389763926451, 43.344951483723946 ], [ 20.420025262256047, 43.346837674119342 ], [ 20.420955438242856, 43.347793688527872 ], [ 20.421420526236261, 43.348827216402867 ], [ 20.421420526236261, 43.350067450752249 ], [ 20.420697055824462, 43.351307685101574 ], [ 20.418836703850786, 43.352961331500239 ], [ 20.413979120140255, 43.356294460920594 ], [ 20.410568474555419, 43.359627591240326 ], [ 20.409638298568609, 43.361100368687062 ], [ 20.408914829056073, 43.363322454967317 ], [ 20.409018181843578, 43.366888129283723 ], [ 20.411550327385669, 43.372934272298778 ], [ 20.41237714968571, 43.375440579419205 ], [ 20.412428827428414, 43.376680812869211 ], [ 20.412067092222514, 43.376990872131046 ], [ 20.410878533817254, 43.37740428328101 ], [ 20.403747186083763, 43.37916128246718 ], [ 20.401628451691693, 43.379988104767222 ], [ 20.399406366310757, 43.381538398378382 ], [ 20.397752719912091, 43.383398749452681 ], [ 20.396409132775261, 43.386085923726398 ], [ 20.39656416240615, 43.388023790065859 ], [ 20.397856072699597, 43.390116686036208 ], [ 20.403902214815332, 43.396214504995385 ], [ 20.405297478795603, 43.398333238488135 ], [ 20.405710889945624, 43.400245266405875 ], [ 20.405400831583108, 43.402183131846016 ], [ 20.404005567602837, 43.404327703760487 ], [ 20.400026483035731, 43.407841702132828 ], [ 20.397959426386421, 43.410192978722989 ], [ 20.397287631918687, 43.412389228380164 ], [ 20.39656416240615, 43.4165750194216 ], [ 20.395065544739055, 43.41998566320774 ], [ 20.394652133589091, 43.421665147128806 ], [ 20.394755487275916, 43.422569484693952 ], [ 20.395685663262725, 43.424688219086022 ], [ 20.398682895898901, 43.429132392545853 ], [ 20.399716423773896, 43.431767889976129 ], [ 20.400904982179156, 43.43734894499778 ], [ 20.402713657309448, 43.443162543116841 ], [ 20.403282098090358, 43.445927231756343 ], [ 20.403385450877863, 43.448717759716828 ], [ 20.402972038828523, 43.451482449255593 ], [ 20.401886834110087, 43.454040432320085 ], [ 20.400439894185752, 43.455797431506255 ], [ 20.398579543111396, 43.45739940016216 ], [ 20.39268842882791, 43.461171780053576 ], [ 20.39041466570427, 43.462877102396362 ], [ 20.388657668316739, 43.464763291892382 ], [ 20.387469109911478, 43.466752835075283 ], [ 20.385608757937803, 43.470912786795623 ], [ 20.383490025344372, 43.47398753469696 ], [ 20.370260857752385, 43.485898953573837 ], [ 20.362302686819532, 43.490937405336979 ], [ 20.360028923695836, 43.492797757310655 ], [ 20.357548454997186, 43.49538157789749 ], [ 20.354809604779405, 43.499153957788906 ], [ 20.353621047273521, 43.500342516194166 ], [ 20.352277459237314, 43.501427720912545 ], [ 20.349952020169553, 43.502822983993497 ], [ 20.348143345039318, 43.503443102517167 ], [ 20.343079053955137, 43.504579983179667 ], [ 20.340288526893971, 43.505691026319766 ], [ 20.337808058195321, 43.507267158352647 ], [ 20.326645949051283, 43.51522532838618 ], [ 20.318791130905936, 43.519979560208526 ], [ 20.31693077983158, 43.521659044129535 ], [ 20.312796664734265, 43.526594143105171 ], [ 20.307422316186944, 43.530676581359103 ], [ 20.305768669788279, 43.532201036548599 ], [ 20.305303581794874, 43.533208726901194 ], [ 20.305872022575784, 43.534759020512354 ], [ 20.307732375448779, 43.536154282693985 ], [ 20.309489372836254, 43.537058621158394 ], [ 20.315277134332291, 43.539461575491316 ], [ 20.324940626708553, 43.542975572064961 ], [ 20.343595818791982, 43.550985418941934 ], [ 20.348866814551855, 43.554137682108319 ], [ 20.352690871286654, 43.557393297162889 ], [ 20.354189487155111, 43.55915029634906 ], [ 20.357341750321496, 43.565351467196422 ], [ 20.366126742655013, 43.576281033243049 ], [ 20.367263625116209, 43.578115545895685 ], [ 20.367780389053678, 43.580234280287755 ], [ 20.367728713109614, 43.582404689724626 ], [ 20.366540154704353, 43.588295803108792 ], [ 20.366436801916848, 43.591215522278503 ], [ 20.366643508391178, 43.5942644308588 ], [ 20.368038770572809, 43.599767971514666 ], [ 20.369227328978013, 43.602920233781731 ], [ 20.370622592958284, 43.603462836140977 ], [ 20.372379592144455, 43.604987291330417 ], [ 20.37325809128788, 43.606640936829763 ], [ 20.37341312001945, 43.608449611959998 ], [ 20.37284467923854, 43.610103258358663 ], [ 20.371087680951689, 43.611886095067234 ], [ 20.368090448315513, 43.614030666981648 ], [ 20.366333449129343, 43.615787665268499 ], [ 20.363542922068177, 43.61909495716651 ], [ 20.357755160572196, 43.627569892036888 ], [ 20.357341750321496, 43.628810126386213 ], [ 20.357393426265617, 43.629636948686198 ], [ 20.358426955039931, 43.631445623816489 ], [ 20.360545689432001, 43.632944241483528 ], [ 20.366488477860969, 43.635579738913805 ], [ 20.377185499910865, 43.63973969243284 ], [ 20.381267938164797, 43.64201345555648 ], [ 20.385402052362792, 43.644829820140046 ], [ 20.387985873849004, 43.646354275329543 ], [ 20.390052931397634, 43.647103583263743 ], [ 20.392223341733825, 43.647516995313083 ], [ 20.395065544739055, 43.647672024044653 ], [ 20.397856072699597, 43.647361966581457 ], [ 20.406331007569918, 43.645036525715057 ], [ 20.409845005042939, 43.644674791408477 ], [ 20.413462355303466, 43.644933172927551 ], [ 20.417234735194882, 43.646018378545307 ], [ 20.420438674305331, 43.647361966581457 ], [ 20.422092318905356, 43.648421331978852 ], [ 20.426381462734298, 43.652529609553824 ], [ 20.428551873070489, 43.653718167059765 ], [ 20.430205518569835, 43.654028225422223 ], [ 20.431962517755949, 43.653924871735398 ], [ 20.43454634014148, 43.653046373491293 ], [ 20.436871779209241, 43.651496079880133 ], [ 20.441522658244082, 43.647646186522252 ], [ 20.443227979687492, 43.646586819326217 ], [ 20.446225213222988, 43.645243232189387 ], [ 20.448188917984169, 43.644648952986756 ], [ 20.45185794418876, 43.644209703415072 ], [ 20.455423617605845, 43.644545600199251 ], [ 20.45821414556633, 43.645553290551902 ], [ 20.460074496640686, 43.646845200845291 ], [ 20.461573114307782, 43.648447171299892 ], [ 20.465138787724868, 43.655475165346559 ], [ 20.466068962812358, 43.659893500384726 ], [ 20.466275669286688, 43.663588365011037 ], [ 20.465862258136667, 43.665655423458986 ], [ 20.461004672627496, 43.675603135776043 ], [ 20.459609408647282, 43.679763089295136 ], [ 20.459351027128207, 43.682501939512861 ], [ 20.459557732703161, 43.688031317691127 ], [ 20.460797967052542, 43.693715725500283 ], [ 20.460849643895926, 43.69583445899309 ], [ 20.460177850327511, 43.697849839698335 ], [ 20.458834263190681, 43.699581000462786 ], [ 20.4568705584295, 43.701157132495666 ], [ 20.45439008973085, 43.70252655715484 ], [ 20.436716749578295, 43.709373684048273 ], [ 20.438628778395412, 43.712215887952823 ], [ 20.442452834230892, 43.72084585245409 ], [ 20.443486362105887, 43.722396145165931 ], [ 20.446173537278924, 43.725315864335641 ], [ 20.447827182778269, 43.726581936207367 ], [ 20.449790886640073, 43.727615464981682 ], [ 20.451961296976265, 43.728468125703387 ], [ 20.458989291922251, 43.730405992042847 ], [ 20.468497755566943, 43.731646227291549 ], [ 20.473872105013641, 43.732731432009928 ], [ 20.475990837607071, 43.733558255209289 ], [ 20.483380567758957, 43.737330634201385 ], [ 20.487359653225383, 43.738674221338215 ], [ 20.489220005199059, 43.739035956544114 ], [ 20.492010532260224, 43.739087633387555 ], [ 20.493974237021405, 43.738855089390825 ], [ 20.502707554310177, 43.73722728141388 ], [ 20.505549758214727, 43.737201442992159 ], [ 20.509528842781833, 43.737950750926416 ], [ 20.514386428291004, 43.739397690850751 ], [ 20.518572219332441, 43.741051337249417 ], [ 20.523429803042973, 43.743531805948066 ], [ 20.525910271741623, 43.745211289869133 ], [ 20.529372593270523, 43.748441067401302 ], [ 20.530354445201453, 43.750172228165752 ], [ 20.530561150776464, 43.752110094505213 ], [ 20.530147738727123, 43.753453680742723 ], [ 20.528442417283713, 43.756864326327559 ], [ 20.523636508617983, 43.764409085211071 ], [ 20.522758010373877, 43.767716376209762 ], [ 20.523326450255468, 43.769860948124233 ], [ 20.523894891036377, 43.770687771323537 ], [ 20.528029006133693, 43.774718532734084 ], [ 20.528804151590293, 43.77598460550513 ], [ 20.530251092413948, 43.779963690971556 ], [ 20.53107791471399, 43.781203925320881 ], [ 20.533093296318555, 43.782831733297826 ], [ 20.536400588216566, 43.784485378797172 ], [ 20.541929966394832, 43.786139024296517 ], [ 20.546167433380333, 43.787766832273462 ], [ 20.561256952046676, 43.798102118218139 ], [ 20.562703891971012, 43.799342353466841 ], [ 20.563789096689447, 43.800763454969456 ], [ 20.564409214313798, 43.802287910158896 ], [ 20.564512567101247, 43.804303289964821 ], [ 20.563944126320337, 43.806344509091787 ], [ 20.562548862340122, 43.808385729118072 ], [ 20.559086540811165, 43.812313136841794 ], [ 20.55784630736116, 43.814328518446359 ], [ 20.557432896211196, 43.816240546364099 ], [ 20.55784630736116, 43.818100898337775 ], [ 20.559086540811165, 43.819754543837121 ], [ 20.560481804791436, 43.820736395768051 ], [ 20.569060093348639, 43.825490628489717 ], [ 20.571127149997949, 43.827325141142353 ], [ 20.573452589965029, 43.829934801050229 ], [ 20.575467969770955, 43.831640123392958 ], [ 20.581100701636046, 43.834844062503464 ], [ 20.585441522308372, 43.83784129513964 ], [ 20.593813104391245, 43.845179348448141 ], [ 20.596603630553091, 43.846858832369207 ], [ 20.620788201714106, 43.859183661496729 ], [ 20.626472608623999, 43.854377752830999 ], [ 20.63324222205091, 43.847608141202727 ], [ 20.636394484317975, 43.844972642873131 ], [ 20.641872185652801, 43.841587835710015 ], [ 20.654532911564615, 43.835619207960065 ], [ 20.657116733050771, 43.834068915248224 ], [ 20.659338820230346, 43.832311916961373 ], [ 20.661405876879712, 43.829728095475218 ], [ 20.662025995403326, 43.827712713870653 ], [ 20.662077671347447, 43.825697333165351 ], [ 20.661715936141547, 43.822855130160121 ], [ 20.661870964873117, 43.820891425398941 ], [ 20.662491081598148, 43.81934113178778 ], [ 20.663524611271782, 43.817945867807509 ], [ 20.668537224613203, 43.813966783240403 ], [ 20.672051222086225, 43.810607815398328 ], [ 20.67618533718354, 43.804871730745731 ], [ 20.685590448040728, 43.793761298445133 ], [ 20.688380975101893, 43.790040595397159 ], [ 20.690137974288064, 43.788412787420157 ], [ 20.692153354993309, 43.786991685917542 ], [ 20.694478794061069, 43.785751451568217 ], [ 20.701661817738682, 43.783012600451116 ], [ 20.704607375330113, 43.78156566052678 ], [ 20.709930047034049, 43.77831004547221 ], [ 20.712927279670225, 43.776992295857724 ], [ 20.717733189235275, 43.775777899930119 ], [ 20.721453892283307, 43.775312811936715 ], [ 20.725329624062908, 43.775106106361704 ], [ 20.73308108942075, 43.775183620727489 ], [ 20.736853469312166, 43.775519518411045 ], [ 20.740419141829932, 43.77619131108014 ], [ 20.745690137589747, 43.778206691785385 ], [ 20.760314569162006, 43.785027981156361 ], [ 20.767290887264608, 43.787456773011627 ], [ 20.768996208708074, 43.788231920266867 ], [ 20.770184767113278, 43.789265449041238 ], [ 20.770753207894188, 43.790505683390563 ], [ 20.770856560681693, 43.791900947370777 ], [ 20.769409620757358, 43.798773911786554 ], [ 20.770133091169214, 43.805956936363486 ], [ 20.769151239238283, 43.807920641124667 ], [ 20.768014356777144, 43.809109199529928 ], [ 20.760727980312026, 43.814070136027908 ], [ 20.75922936444357, 43.816059679210809 ], [ 20.758764275550845, 43.817971707128549 ], [ 20.759177686700866, 43.819857895725306 ], [ 20.760624626625201, 43.821718247698925 ], [ 20.763053420279107, 43.823139350100917 ], [ 20.765172152872537, 43.823888658035116 ], [ 20.77623091012839, 43.826317450789702 ], [ 20.778608026039535, 43.827040921201501 ], [ 20.786669548860573, 43.830193183468623 ], [ 20.788994988827653, 43.830864977037038 ], [ 20.791475456626983, 43.831381740974564 ], [ 20.795351190205224, 43.831795152124528 ], [ 20.799278598828266, 43.831924343333753 ], [ 20.807185092917678, 43.831640123392958 ], [ 20.818502231692605, 43.829831448262723 ], [ 20.83307498462284, 43.828410345860732 ], [ 20.8349870134399, 43.828281155550883 ], [ 20.83689904135764, 43.828384508338388 ], [ 20.838604363700426, 43.828875433854193 ], [ 20.840619745304991, 43.830115668203518 ], [ 20.846407505002333, 43.835619207960065 ], [ 20.848061151400998, 43.83691111915283 ], [ 20.849921501576034, 43.837996323871209 ], [ 20.853745558310834, 43.83959829432581 ], [ 20.855709263072015, 43.840063382319215 ], [ 20.85849979013318, 43.840218411050785 ], [ 20.860721877312756, 43.839985867054111 ], [ 20.862840609906186, 43.83939158785148 ], [ 20.865527785079223, 43.838099677558034 ], [ 20.867543165784468, 43.836239326483678 ], [ 20.869971957639734, 43.833009548951509 ], [ 20.871263868832443, 43.831743476180463 ], [ 20.873847691217975, 43.830296536256128 ], [ 20.878963657346901, 43.828952949119298 ], [ 20.89415652790143, 43.826575833208096 ], [ 20.894259880688935, 43.825852362796297 ], [ 20.894466587163265, 43.825283922015387 ], [ 20.8947766464251, 43.824767158077861 ], [ 20.895293410362569, 43.824302070084457 ], [ 20.896947055861915, 43.823139350100917 ], [ 20.89741214385532, 43.822622586163391 ], [ 20.898083937423735, 43.82145986617985 ], [ 20.89860070226058, 43.82027130777459 ], [ 20.898807406936271, 43.819651191049616 ], [ 20.899014113410601, 43.816808987145009 ], [ 20.899220818985611, 43.816137193576594 ], [ 20.899479201404006, 43.815517075952243 ], [ 20.899840935710586, 43.814948635171334 ], [ 20.900357699648112, 43.814406032812144 ], [ 20.900926141328341, 43.813940944818739 ], [ 20.901597934896756, 43.813605048034503 ], [ 20.903096550765213, 43.812984931309529 ], [ 20.903820021177012, 43.812674872047694 ], [ 20.904491814745427, 43.812158108110168 ], [ 20.905628696307247, 43.810969549704907 ], [ 20.908367547424348, 43.807352200343757 ], [ 20.909452752142784, 43.796965237555639 ], [ 20.910021192923693, 43.794743150376064 ], [ 20.912398308834895, 43.788955389779403 ], [ 20.913793572815109, 43.784356188487266 ], [ 20.915705600732849, 43.781255602164265 ], [ 20.91958133341177, 43.77732819354128 ], [ 20.921390007642742, 43.774175930374838 ], [ 20.922061802110477, 43.771566271366282 ], [ 20.922423537316376, 43.768879096193302 ], [ 20.922888625309781, 43.76071421968544 ], [ 20.923353713303186, 43.758156235721685 ], [ 20.924748976384137, 43.75515900308551 ], [ 20.926609328357813, 43.753350327955275 ], [ 20.928107944226213, 43.752316799180903 ], [ 20.933327264041964, 43.749474596175673 ], [ 20.93575605589723, 43.747795112254607 ], [ 20.938443231070266, 43.745288805134237 ], [ 20.942887403630777, 43.740069485318486 ], [ 20.95699507036619, 43.728183905762592 ], [ 20.943249138836677, 43.727925523344197 ], [ 20.941337110918937, 43.727822171456012 ], [ 20.940458611775512, 43.727718817769187 ], [ 20.93963178857615, 43.727460436250112 ], [ 20.939115024638681, 43.727150376988277 ], [ 20.937202996720885, 43.725393377802106 ], [ 20.935911086427495, 43.724463201815297 ], [ 20.935187616015639, 43.724101467508717 ], [ 20.93446414560384, 43.723894761933707 ], [ 20.933637323303799, 43.723894761933707 ], [ 20.930950148130819, 43.724437364292896 ], [ 20.929864943412383, 43.724566555502122 ], [ 20.927591180288744, 43.724669908289627 ], [ 20.926195916308473, 43.724669908289627 ], [ 20.922991978097286, 43.726943671413267 ], [ 20.922733594779572, 43.727021185779051 ], [ 20.922268507685487, 43.727098701044213 ], [ 20.921131626123611, 43.727098701044213 ], [ 20.918082716644051, 43.727150376988277 ], [ 20.916842482294726, 43.727047024200772 ], [ 20.916429071144705, 43.726891995469202 ], [ 20.916170688726311, 43.726581936207367 ], [ 20.916067335938806, 43.726220201001468 ], [ 20.916015659095365, 43.725341701858042 ], [ 20.916067335938806, 43.724463201815297 ], [ 20.916274040614439, 43.723584703571191 ], [ 20.916480747088769, 43.723171292421171 ], [ 20.917100863813801, 43.722421982688331 ], [ 20.919477979724945, 43.719967353310665 ], [ 20.920304802924306, 43.71893382453635 ], [ 20.921183302967052, 43.716763414200159 ], [ 20.921338331698621, 43.714437975132398 ], [ 20.920821566861832, 43.712112535165318 ], [ 20.919477979724945, 43.709787096097557 ], [ 20.915808954419674, 43.705446275425231 ], [ 20.914310336752635, 43.703224189144976 ], [ 20.913380160765769, 43.700743720446326 ], [ 20.912811719984859, 43.69542104784307 ], [ 20.912915072772364, 43.690098375239813 ], [ 20.913690220027604, 43.684879055424062 ], [ 20.914568719171029, 43.682450263568796 ], [ 20.916739128607901, 43.67883291330827 ], [ 20.917410923075636, 43.67712759096554 ], [ 20.917255894344009, 43.675318914935929 ], [ 20.916170688726311, 43.673768622224088 ], [ 20.914827100690104, 43.672838447136598 ], [ 20.905680373150688, 43.668316759310983 ], [ 20.900461053334936, 43.664880276203746 ], [ 20.894673292738275, 43.661572984305735 ], [ 20.889557325709973, 43.657955634045265 ], [ 20.886663445861302, 43.655139269461699 ], [ 20.882425977976482, 43.649377346387382 ], [ 20.878085158203476, 43.644468084934147 ], [ 20.899324171773117, 43.640824897151276 ], [ 20.902631462771751, 43.640540676311161 ], [ 20.909814487348683, 43.640592353154545 ], [ 20.911933220841433, 43.640256456370366 ], [ 20.913948602446055, 43.639610501223615 ], [ 20.916170688726311, 43.638266913187465 ], [ 20.9178243342256, 43.636561590844735 ], [ 20.918754510212466, 43.634649562926938 ], [ 20.92014977419268, 43.630437934363158 ], [ 20.921338331698621, 43.628887640751998 ], [ 20.922991978097286, 43.627569892036888 ], [ 20.924852329171642, 43.626691392893463 ], [ 20.927022738608457, 43.626019599325048 ], [ 20.935084263228134, 43.624417629769766 ], [ 20.937099643933379, 43.623745836201351 ], [ 20.939735142262975, 43.622324733799417 ], [ 20.948210077133353, 43.616562812523739 ], [ 20.950173780995158, 43.614857490181009 ], [ 20.951362339400418, 43.612997138207334 ], [ 20.951465692187924, 43.611214301498819 ], [ 20.950380486570168, 43.609302273581022 ], [ 20.948313429021539, 43.607622788760693 ], [ 20.943249138836677, 43.604367173706066 ], [ 20.936789584671601, 43.599509589096215 ], [ 20.934154087241325, 43.597959296384374 ], [ 20.922010125267036, 43.592791653412064 ], [ 20.919322950993376, 43.591344713487729 ], [ 20.915343866426269, 43.588450832739738 ], [ 20.911313104116459, 43.583954983335786 ], [ 20.908212517793459, 43.579149075569376 ], [ 20.907489048280922, 43.57767629722332 ], [ 20.906765577869123, 43.575066637315444 ], [ 20.906507196349992, 43.572327786198343 ], [ 20.906610549137497, 43.569588935081242 ], [ 20.907075636231582, 43.566901759908262 ], [ 20.908109165005953, 43.564343776843828 ], [ 20.909607781773673, 43.562250881772741 ], [ 20.913380160765769, 43.558271796306315 ], [ 20.914930454376929, 43.556204738757685 ], [ 20.91591230630786, 43.554111842787279 ], [ 20.91880618705585, 43.544551703198522 ], [ 20.919322950993376, 43.540236720947917 ], [ 20.918961215787476, 43.535379137237385 ], [ 20.919322950993376, 43.533880520469609 ], [ 20.920098097349296, 43.532433580545273 ], [ 20.924955681959148, 43.527188422307802 ], [ 20.928211297013718, 43.521478176076926 ], [ 20.930123324931458, 43.519152737009165 ], [ 20.945212843597858, 43.506026923104002 ], [ 20.93234541211109, 43.50153107370005 ], [ 20.922010125267036, 43.497396959502055 ], [ 20.918702834268345, 43.496699327511919 ], [ 20.910692987391428, 43.496260077040915 ], [ 20.899634230135575, 43.493779609241528 ], [ 20.896171908606675, 43.493314521248124 ], [ 20.888885532141558, 43.492926948519823 ], [ 20.877723422997576, 43.492926948519823 ], [ 20.870437045633139, 43.493314521248124 ], [ 20.866974725003558, 43.493831285185649 ], [ 20.860101759688462, 43.495846665890895 ], [ 20.854520704666754, 43.498120429014591 ], [ 20.852815383223344, 43.499024767479 ], [ 20.850800001618779, 43.50075592734413 ], [ 20.846717564264168, 43.505561835110598 ], [ 20.844340448352966, 43.507370510240833 ], [ 20.836175570945841, 43.513261624524318 ], [ 20.83364342630307, 43.514760240392775 ], [ 20.830852899241904, 43.51563874043552 ], [ 20.828837517637339, 43.515767930745369 ], [ 20.826873813775478, 43.515535386748695 ], [ 20.824600050651782, 43.514708564448654 ], [ 20.822481317159031, 43.513442490778289 ], [ 20.81591841020645, 43.507938951021742 ], [ 20.813334587820975, 43.506492011097407 ], [ 20.811319207115673, 43.505846055950713 ], [ 20.805996535411737, 43.505045071173072 ], [ 20.794627719793425, 43.504244086395431 ], [ 20.792664015032244, 43.504218247973768 ], [ 20.790596958382935, 43.504528307235546 ], [ 20.788684929565818, 43.505200099904641 ], [ 20.786979608122408, 43.506233629578333 ], [ 20.780881789163232, 43.510962022079639 ], [ 20.779073114032997, 43.511969713331609 ], [ 20.777057733327695, 43.512641506900025 ], [ 20.774783970204055, 43.512848212474978 ], [ 20.772665235811985, 43.512667345321688 ], [ 20.768376091983043, 43.511763006857279 ], [ 20.760314569162006, 43.509179186270387 ], [ 20.762536655442261, 43.506492011097407 ], [ 20.765998976071899, 43.501634426487556 ], [ 20.770908236625814, 43.491945094790253 ], [ 20.772820265442874, 43.489645494144213 ], [ 20.779331495552071, 43.483340968710706 ], [ 20.780778436375726, 43.481144720852171 ], [ 20.781295200313252, 43.479103501725206 ], [ 20.781191846626427, 43.47708812101996 ], [ 20.78062340674478, 43.47553782830812 ], [ 20.779744906702092, 43.474090888383785 ], [ 20.776540969390226, 43.470370185335753 ], [ 20.775920850866555, 43.469000758877883 ], [ 20.775869174922491, 43.467579658274587 ], [ 20.77659264533429, 43.465770982245033 ], [ 20.781915317038226, 43.459569811397671 ], [ 20.782432081875072, 43.45776113536806 ], [ 20.782122022613237, 43.455952460237825 ], [ 20.777677850052726, 43.449441230128627 ], [ 20.776747674065916, 43.447064114217483 ], [ 20.774577263729725, 43.43791738487937 ], [ 20.771476678306044, 43.429235745333358 ], [ 20.770133091169214, 43.424378159824187 ], [ 20.770133091169214, 43.422156074443251 ], [ 20.771166619943529, 43.417815252871605 ], [ 20.770959914368518, 43.415825711487344 ], [ 20.770339796744224, 43.414327093820305 ], [ 20.769254592025788, 43.412957669161074 ], [ 20.763363477742303, 43.408565172544627 ], [ 20.761709832242957, 43.406885687724298 ], [ 20.761141392361367, 43.405128689437447 ], [ 20.761503126667947, 43.404017646297291 ], [ 20.762329949867251, 43.402906603157192 ], [ 20.766102328859347, 43.39936676726245 ], [ 20.767290887264608, 43.397893988916451 ], [ 20.770133091169214, 43.392235419528959 ], [ 20.77142500236198, 43.390323390711899 ], [ 20.77313032380539, 43.388721422055937 ], [ 20.774835646148119, 43.387868761334232 ], [ 20.782742140237588, 43.385310777370478 ], [ 20.791113722320404, 43.382106839159292 ], [ 20.793800896594064, 43.381383367848116 ], [ 20.795971306930255, 43.381176663172425 ], [ 20.798141717266446, 43.381228339116547 ], [ 20.801449009164401, 43.381900133584281 ], [ 20.809613884772943, 43.384742337488888 ], [ 20.812146030315034, 43.385310777370478 ], [ 20.814729851801189, 43.385594998210593 ], [ 20.818088819643322, 43.385465807001367 ], [ 20.820414259610402, 43.385052394952027 ], [ 20.829095900055734, 43.383037014246781 ], [ 20.830439487192564, 43.371254788377769 ], [ 20.832558220685314, 43.362521471088996 ], [ 20.83250654474125, 43.361591295102187 ], [ 20.831628044698505, 43.35967926718439 ], [ 20.829250928787303, 43.355906887292974 ], [ 20.828889193581404, 43.354046536218675 ], [ 20.829044224111612, 43.352702949081788 ], [ 20.830904575185968, 43.343091131750327 ], [ 20.83193810396034, 43.340507311163435 ], [ 20.833591750358949, 43.33828522398386 ], [ 20.837209099720155, 43.334719550566774 ], [ 20.837932570132011, 43.333582669004954 ], [ 20.838139275706965, 43.331877345762848 ], [ 20.836485630207676, 43.328156642714873 ], [ 20.83307498462284, 43.323764146098426 ], [ 20.831059604816915, 43.321826279758966 ], [ 20.823773228351797, 43.316684475208319 ], [ 20.821396112440596, 43.313764756937985 ], [ 20.819225702104461, 43.309759833049839 ], [ 20.818192173330146, 43.308312893125503 ], [ 20.81684858619326, 43.307020981932737 ], [ 20.814471470282115, 43.305522366064338 ], [ 20.810957471909774, 43.303920396509056 ], [ 20.808683708786134, 43.302473455685401 ], [ 20.807495151280193, 43.30128489817946 ], [ 20.805789828937463, 43.298701076693305 ], [ 20.805169712212432, 43.297357490455795 ], [ 20.804859652950597, 43.29534210885123 ], [ 20.805169712212432, 43.293326728145985 ], [ 20.808787061573639, 43.285575262788143 ], [ 20.809303827309748, 43.283456529295393 ], [ 20.809458856041374, 43.281286118959201 ], [ 20.808115268904544, 43.273999742494084 ], [ 20.808115268904544, 43.271803493736229 ], [ 20.809820591247274, 43.264387926061943 ], [ 20.809717237560449, 43.259737047027102 ], [ 20.809717237560449, 43.2596101895586 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-19", "NAME_1": "Pomoravski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.864700154000047, 43.217337342000022 ], [ 20.855088338000115, 43.231445008000051 ], [ 20.848473755000043, 43.238137106000082 ], [ 20.838448527000111, 43.245862732000077 ], [ 20.819431600000144, 43.257412415000019 ], [ 20.809717237560449, 43.2596101895586 ], [ 20.809717237560449, 43.259737047027102 ], [ 20.809820591247274, 43.264387926061943 ], [ 20.808115268904544, 43.271803493736229 ], [ 20.808115268904544, 43.273999742494084 ], [ 20.809458856041374, 43.281286118959201 ], [ 20.809303827309748, 43.283456529295393 ], [ 20.808787061573639, 43.285575262788143 ], [ 20.805169712212432, 43.293326728145985 ], [ 20.804859652950597, 43.29534210885123 ], [ 20.805169712212432, 43.297357490455795 ], [ 20.805789828937463, 43.298701076693305 ], [ 20.807495151280193, 43.30128489817946 ], [ 20.808683708786134, 43.302473455685401 ], [ 20.810957471909774, 43.303920396509056 ], [ 20.814471470282115, 43.305522366064338 ], [ 20.81684858619326, 43.307020981932737 ], [ 20.818192173330146, 43.308312893125503 ], [ 20.819225702104461, 43.309759833049839 ], [ 20.821396112440596, 43.313764756937985 ], [ 20.823773228351797, 43.316684475208319 ], [ 20.831059604816915, 43.321826279758966 ], [ 20.83307498462284, 43.323764146098426 ], [ 20.836485630207676, 43.328156642714873 ], [ 20.838139275706965, 43.331877345762848 ], [ 20.837932570132011, 43.333582669004954 ], [ 20.837209099720155, 43.334719550566774 ], [ 20.833591750358949, 43.33828522398386 ], [ 20.83193810396034, 43.340507311163435 ], [ 20.830904575185968, 43.343091131750327 ], [ 20.829044224111612, 43.352702949081788 ], [ 20.828889193581404, 43.354046536218675 ], [ 20.829250928787303, 43.355906887292974 ], [ 20.831628044698505, 43.35967926718439 ], [ 20.83250654474125, 43.361591295102187 ], [ 20.832558220685314, 43.362521471088996 ], [ 20.830439487192564, 43.371254788377769 ], [ 20.829095900055734, 43.383037014246781 ], [ 20.820414259610402, 43.385052394952027 ], [ 20.818088819643322, 43.385465807001367 ], [ 20.814729851801189, 43.385594998210593 ], [ 20.812146030315034, 43.385310777370478 ], [ 20.809613884772943, 43.384742337488888 ], [ 20.801449009164401, 43.381900133584281 ], [ 20.798141717266446, 43.381228339116547 ], [ 20.795971306930255, 43.381176663172425 ], [ 20.793800896594064, 43.381383367848116 ], [ 20.791113722320404, 43.382106839159292 ], [ 20.782742140237588, 43.385310777370478 ], [ 20.774835646148119, 43.387868761334232 ], [ 20.77313032380539, 43.388721422055937 ], [ 20.77142500236198, 43.390323390711899 ], [ 20.770133091169214, 43.392235419528959 ], [ 20.767290887264608, 43.397893988916451 ], [ 20.766102328859347, 43.39936676726245 ], [ 20.762329949867251, 43.402906603157192 ], [ 20.761503126667947, 43.404017646297291 ], [ 20.761141392361367, 43.405128689437447 ], [ 20.761709832242957, 43.406885687724298 ], [ 20.763363477742303, 43.408565172544627 ], [ 20.769254592025788, 43.412957669161074 ], [ 20.770339796744224, 43.414327093820305 ], [ 20.770959914368518, 43.415825711487344 ], [ 20.771166619943529, 43.417815252871605 ], [ 20.770133091169214, 43.422156074443251 ], [ 20.770133091169214, 43.424378159824187 ], [ 20.771476678306044, 43.429235745333358 ], [ 20.774577263729725, 43.43791738487937 ], [ 20.776747674065916, 43.447064114217483 ], [ 20.777677850052726, 43.449441230128627 ], [ 20.782122022613237, 43.455952460237825 ], [ 20.782432081875072, 43.45776113536806 ], [ 20.781915317038226, 43.459569811397671 ], [ 20.77659264533429, 43.465770982245033 ], [ 20.775869174922491, 43.467579658274587 ], [ 20.775920850866555, 43.469000758877883 ], [ 20.776540969390226, 43.470370185335753 ], [ 20.779744906702092, 43.474090888383785 ], [ 20.78062340674478, 43.47553782830812 ], [ 20.781191846626427, 43.47708812101996 ], [ 20.781295200313252, 43.479103501725206 ], [ 20.780778436375726, 43.481144720852171 ], [ 20.779331495552071, 43.483340968710706 ], [ 20.772820265442874, 43.489645494144213 ], [ 20.770908236625814, 43.491945094790253 ], [ 20.765998976071899, 43.501634426487556 ], [ 20.762536655442261, 43.506492011097407 ], [ 20.760314569162006, 43.509179186270387 ], [ 20.768376091983043, 43.511763006857279 ], [ 20.772665235811985, 43.512667345321688 ], [ 20.774783970204055, 43.512848212474978 ], [ 20.777057733327695, 43.512641506900025 ], [ 20.779073114032997, 43.511969713331609 ], [ 20.780881789163232, 43.510962022079639 ], [ 20.786979608122408, 43.506233629578333 ], [ 20.788684929565818, 43.505200099904641 ], [ 20.790596958382935, 43.504528307235546 ], [ 20.792664015032244, 43.504218247973768 ], [ 20.794627719793425, 43.504244086395431 ], [ 20.805996535411737, 43.505045071173072 ], [ 20.811319207115673, 43.505846055950713 ], [ 20.813334587820975, 43.506492011097407 ], [ 20.81591841020645, 43.507938951021742 ], [ 20.822481317159031, 43.513442490778289 ], [ 20.824600050651782, 43.514708564448654 ], [ 20.826873813775478, 43.515535386748695 ], [ 20.828837517637339, 43.515767930745369 ], [ 20.830852899241904, 43.51563874043552 ], [ 20.83364342630307, 43.514760240392775 ], [ 20.836175570945841, 43.513261624524318 ], [ 20.844340448352966, 43.507370510240833 ], [ 20.846717564264168, 43.505561835110598 ], [ 20.850800001618779, 43.50075592734413 ], [ 20.852815383223344, 43.499024767479 ], [ 20.854520704666754, 43.498120429014591 ], [ 20.860101759688462, 43.495846665890895 ], [ 20.866974725003558, 43.493831285185649 ], [ 20.870437045633139, 43.493314521248124 ], [ 20.877723422997576, 43.492926948519823 ], [ 20.888885532141558, 43.492926948519823 ], [ 20.896171908606675, 43.493314521248124 ], [ 20.899634230135575, 43.493779609241528 ], [ 20.910692987391428, 43.496260077040915 ], [ 20.918702834268345, 43.496699327511919 ], [ 20.922010125267036, 43.497396959502055 ], [ 20.93234541211109, 43.50153107370005 ], [ 20.945212843597858, 43.506026923104002 ], [ 20.930123324931458, 43.519152737009165 ], [ 20.928211297013718, 43.521478176076926 ], [ 20.924955681959148, 43.527188422307802 ], [ 20.920098097349296, 43.532433580545273 ], [ 20.919322950993376, 43.533880520469609 ], [ 20.918961215787476, 43.535379137237385 ], [ 20.919322950993376, 43.540236720947917 ], [ 20.91880618705585, 43.544551703198522 ], [ 20.91591230630786, 43.554111842787279 ], [ 20.914930454376929, 43.556204738757685 ], [ 20.913380160765769, 43.558271796306315 ], [ 20.909607781773673, 43.562250881772741 ], [ 20.908109165005953, 43.564343776843828 ], [ 20.907075636231582, 43.566901759908262 ], [ 20.906610549137497, 43.569588935081242 ], [ 20.906507196349992, 43.572327786198343 ], [ 20.906765577869123, 43.575066637315444 ], [ 20.907489048280922, 43.57767629722332 ], [ 20.908212517793459, 43.579149075569376 ], [ 20.911313104116459, 43.583954983335786 ], [ 20.915343866426269, 43.588450832739738 ], [ 20.919322950993376, 43.591344713487729 ], [ 20.922010125267036, 43.592791653412064 ], [ 20.934154087241325, 43.597959296384374 ], [ 20.936789584671601, 43.599509589096215 ], [ 20.943249138836677, 43.604367173706066 ], [ 20.948313429021539, 43.607622788760693 ], [ 20.950380486570168, 43.609302273581022 ], [ 20.951465692187924, 43.611214301498819 ], [ 20.951362339400418, 43.612997138207334 ], [ 20.950173780995158, 43.614857490181009 ], [ 20.948210077133353, 43.616562812523739 ], [ 20.939735142262975, 43.622324733799417 ], [ 20.937099643933379, 43.623745836201351 ], [ 20.935084263228134, 43.624417629769766 ], [ 20.927022738608457, 43.626019599325048 ], [ 20.924852329171642, 43.626691392893463 ], [ 20.922991978097286, 43.627569892036888 ], [ 20.921338331698621, 43.628887640751998 ], [ 20.92014977419268, 43.630437934363158 ], [ 20.918754510212466, 43.634649562926938 ], [ 20.9178243342256, 43.636561590844735 ], [ 20.916170688726311, 43.638266913187465 ], [ 20.913948602446055, 43.639610501223615 ], [ 20.911933220841433, 43.640256456370366 ], [ 20.909814487348683, 43.640592353154545 ], [ 20.902631462771751, 43.640540676311161 ], [ 20.899324171773117, 43.640824897151276 ], [ 20.878085158203476, 43.644468084934147 ], [ 20.882425977976482, 43.649377346387382 ], [ 20.886663445861302, 43.655139269461699 ], [ 20.889557325709973, 43.657955634045265 ], [ 20.894673292738275, 43.661572984305735 ], [ 20.900461053334936, 43.664880276203746 ], [ 20.905680373150688, 43.668316759310983 ], [ 20.914827100690104, 43.672838447136598 ], [ 20.916170688726311, 43.673768622224088 ], [ 20.917255894344009, 43.675318914935929 ], [ 20.917410923075636, 43.67712759096554 ], [ 20.916739128607901, 43.67883291330827 ], [ 20.914568719171029, 43.682450263568796 ], [ 20.913690220027604, 43.684879055424062 ], [ 20.912915072772364, 43.690098375239813 ], [ 20.912811719984859, 43.69542104784307 ], [ 20.913380160765769, 43.700743720446326 ], [ 20.914310336752635, 43.703224189144976 ], [ 20.915808954419674, 43.705446275425231 ], [ 20.919477979724945, 43.709787096097557 ], [ 20.920821566861832, 43.712112535165318 ], [ 20.921338331698621, 43.714437975132398 ], [ 20.921183302967052, 43.716763414200159 ], [ 20.920304802924306, 43.71893382453635 ], [ 20.919477979724945, 43.719967353310665 ], [ 20.917100863813801, 43.722421982688331 ], [ 20.916480747088769, 43.723171292421171 ], [ 20.916274040614439, 43.723584703571191 ], [ 20.916067335938806, 43.724463201815297 ], [ 20.916015659095365, 43.725341701858042 ], [ 20.916067335938806, 43.726220201001468 ], [ 20.916170688726311, 43.726581936207367 ], [ 20.916429071144705, 43.726891995469202 ], [ 20.916842482294726, 43.727047024200772 ], [ 20.918082716644051, 43.727150376988277 ], [ 20.921131626123611, 43.727098701044213 ], [ 20.922268507685487, 43.727098701044213 ], [ 20.922733594779572, 43.727021185779051 ], [ 20.922991978097286, 43.726943671413267 ], [ 20.926195916308473, 43.724669908289627 ], [ 20.927591180288744, 43.724669908289627 ], [ 20.929864943412383, 43.724566555502122 ], [ 20.930950148130819, 43.724437364292896 ], [ 20.933637323303799, 43.723894761933707 ], [ 20.93446414560384, 43.723894761933707 ], [ 20.935187616015639, 43.724101467508717 ], [ 20.935911086427495, 43.724463201815297 ], [ 20.937202996720885, 43.725393377802106 ], [ 20.939115024638681, 43.727150376988277 ], [ 20.93963178857615, 43.727460436250112 ], [ 20.940458611775512, 43.727718817769187 ], [ 20.941337110918937, 43.727822171456012 ], [ 20.943249138836677, 43.727925523344197 ], [ 20.95699507036619, 43.728183905762592 ], [ 20.959578891852345, 43.726943671413267 ], [ 20.965263298762238, 43.725031643495527 ], [ 20.971102736202283, 43.723636380414575 ], [ 20.973893263263449, 43.723274645208676 ], [ 20.975030144825325, 43.723429673940302 ], [ 20.976683791223991, 43.723998114721212 ], [ 20.98066287579104, 43.726168525057346 ], [ 20.985675490031838, 43.728028876131702 ], [ 20.988310988361434, 43.728493964125107 ], [ 20.989551221811439, 43.728442288181043 ], [ 20.992238396984419, 43.727873847400133 ], [ 20.997716099218565, 43.725858465795511 ], [ 21.001281772635707, 43.725031643495527 ], [ 21.009033237094172, 43.723972276299492 ], [ 21.012805616985645, 43.723222968365292 ], [ 21.020918816650067, 43.720690822823201 ], [ 21.024432814123031, 43.720122382042291 ], [ 21.028101841226999, 43.719812324579095 ], [ 21.043191358994022, 43.71929555884293 ], [ 21.048979119590683, 43.718572089330451 ], [ 21.051097853083434, 43.718003648549541 ], [ 21.060141228734722, 43.713740343142319 ], [ 21.064430372563606, 43.712784328733733 ], [ 21.068202751555702, 43.712474270371274 ], [ 21.076057569701049, 43.712422594427153 ], [ 21.07993330327929, 43.712629299102844 ], [ 21.087736443681933, 43.713404446358084 ], [ 21.090578647586483, 43.713326931092979 ], [ 21.092697381079233, 43.712939358364679 ], [ 21.094661085840414, 43.712241726374543 ], [ 21.10055219922458, 43.708805243267363 ], [ 21.110215691600843, 43.705136217062716 ], [ 21.112592808411364, 43.703895981814071 ], [ 21.117553744909401, 43.69983938198186 ], [ 21.121481154431706, 43.697694810966709 ], [ 21.125460238998812, 43.695963650202259 ], [ 21.13889611216581, 43.690976874383239 ], [ 21.148146193392108, 43.687049465760197 ], [ 21.139826288152676, 43.704877835543641 ], [ 21.137655876917165, 43.710639756819319 ], [ 21.13698408424807, 43.713766181563983 ], [ 21.136829053717861, 43.719088854167239 ], [ 21.135537144323735, 43.724204820296222 ], [ 21.135227085061899, 43.726375229733037 ], [ 21.13527876100602, 43.728545640968548 ], [ 21.136312289780335, 43.732059638441513 ], [ 21.13868940569148, 43.736400458214575 ], [ 21.138999464953315, 43.738312486132315 ], [ 21.138482700116526, 43.743170070742167 ], [ 21.138741081635601, 43.745159613925011 ], [ 21.139567904834905, 43.746994127476967 ], [ 21.141066521602681, 43.748286037770413 ], [ 21.142616815213842, 43.748776964185538 ], [ 21.144425490344076, 43.748880316973043 ], [ 21.154244012351285, 43.747252508996041 ], [ 21.157241244987461, 43.746399848274336 ], [ 21.160031772947946, 43.745237128290796 ], [ 21.167524854988073, 43.740017809374365 ], [ 21.169540235693319, 43.73913930933162 ], [ 21.171658970085389, 43.738467515763205 ], [ 21.174449497146554, 43.7380024277698 ], [ 21.177756789044565, 43.73802826619152 ], [ 21.18013390495571, 43.738622545394151 ], [ 21.182304315291901, 43.739656074168465 ], [ 21.190572543687949, 43.745340481078301 ], [ 21.202871535293127, 43.751334947249973 ], [ 21.205558708667468, 43.752885239961813 ], [ 21.210209587702309, 43.75634756149077 ], [ 21.215377231573939, 43.76148936604136 ], [ 21.217857700272646, 43.762703761969021 ], [ 21.219924757821275, 43.763272202749931 ], [ 21.228141310273259, 43.764693305151866 ], [ 21.230156690978504, 43.765287584354496 ], [ 21.23640953866925, 43.767664700265698 ], [ 21.238890008267276, 43.769240831399202 ], [ 21.240595329710686, 43.771230374582103 ], [ 21.241473829753431, 43.77329743123147 ], [ 21.242817416890261, 43.78001536691562 ], [ 21.243489211357996, 43.782211616572795 ], [ 21.247519971869167, 43.790143948184664 ], [ 21.248243442281023, 43.792676092827378 ], [ 21.248605178386242, 43.795311591156974 ], [ 21.248708530274428, 43.800840969335241 ], [ 21.248140090392837, 43.806422024356891 ], [ 21.247313267193533, 43.809212551418113 ], [ 21.241887240903452, 43.820736395768051 ], [ 21.255426466857955, 43.825929877162082 ], [ 21.256201613213875, 43.826265773946261 ], [ 21.25687340678229, 43.826627509152217 ], [ 21.257493524406584, 43.827195949933127 ], [ 21.257855258713221, 43.827790229135758 ], [ 21.258268669863185, 43.829107977850867 ], [ 21.260645785774386, 43.840941881462641 ], [ 21.269120720644707, 43.836988634417935 ], [ 21.272634719017049, 43.835128282444259 ], [ 21.27516686365982, 43.833397122579129 ], [ 21.27651045079665, 43.832001857699538 ], [ 21.277337273995954, 43.830580756196923 ], [ 21.27769900920191, 43.829314684325198 ], [ 21.277595656414405, 43.828462021804853 ], [ 21.27459842287891, 43.823888658035116 ], [ 21.274029982098, 43.822545070898286 ], [ 21.273616570947979, 43.820529690193041 ], [ 21.273771599679549, 43.818462633543675 ], [ 21.274908482140745, 43.813294990571308 ], [ 21.274701775666415, 43.808824977790493 ], [ 21.274133334885505, 43.806680405876023 ], [ 21.271394483768404, 43.80177114532205 ], [ 21.267157016782903, 43.795104885581964 ], [ 21.266381870426983, 43.793192856764904 ], [ 21.266588576001936, 43.791022447328032 ], [ 21.267673780720372, 43.786991685917542 ], [ 21.267673780720372, 43.784898789947192 ], [ 21.267208692726967, 43.782805894876105 ], [ 21.265400017596733, 43.779705309452424 ], [ 21.261730991392142, 43.775881252717625 ], [ 21.260852492248716, 43.774408474371569 ], [ 21.260439080199376, 43.772884020081449 ], [ 21.260645785774386, 43.770920315320268 ], [ 21.261317580242121, 43.769628404127502 ], [ 21.262351108117116, 43.768336492934793 ], [ 21.264469841609866, 43.766527817804501 ], [ 21.267157016782903, 43.764977525092661 ], [ 21.269327427119038, 43.764047350005171 ], [ 21.275528598865719, 43.76187693876966 ], [ 21.280489536263076, 43.761050117368995 ], [ 21.283383416111747, 43.761153469257181 ], [ 21.289481235070923, 43.762393704505826 ], [ 21.301831902620165, 43.764305732423566 ], [ 21.319970329866806, 43.769680080970943 ], [ 21.334284702177229, 43.771953844094583 ], [ 21.337747022806866, 43.772160548770273 ], [ 21.341209344335766, 43.772031358460424 ], [ 21.344516636233777, 43.771566271366282 ], [ 21.349425896787693, 43.770403551382742 ], [ 21.350872836712028, 43.771385403313673 ], [ 21.374385614304629, 43.770868639376204 ], [ 21.366944207309302, 43.764667466730202 ], [ 21.378002963665836, 43.728597316912612 ], [ 21.383997429837507, 43.723688056358696 ], [ 21.400120477278165, 43.722732041950167 ], [ 21.408130324155138, 43.723998114721212 ], [ 21.411127556791314, 43.724979967551462 ], [ 21.418052198949795, 43.729062404906017 ], [ 21.421359490847806, 43.730612698517177 ], [ 21.430247836868148, 43.73379079920602 ], [ 21.435467156683899, 43.73495351829024 ], [ 21.437534214232585, 43.735573635015214 ], [ 21.444613885122692, 43.739836941321755 ], [ 21.445957472259522, 43.740431220524385 ], [ 21.447921177020703, 43.740844632573726 ], [ 21.449988233670013, 43.74089630851779 ], [ 21.453915643192374, 43.740612088576995 ], [ 21.45613773037195, 43.74089630851779 ], [ 21.45825646296538, 43.741671453974391 ], [ 21.460323521413386, 43.743118394798046 ], [ 21.462183871588365, 43.744978745872402 ], [ 21.465904574636397, 43.749422919332233 ], [ 21.468385044234367, 43.746374009852673 ], [ 21.470142043420537, 43.743790188366461 ], [ 21.471537305602169, 43.741051337249417 ], [ 21.472415805644914, 43.738157457400689 ], [ 21.47350101126267, 43.732576402379038 ], [ 21.474327833562654, 43.730018419314604 ], [ 21.475309686392904, 43.728416449759322 ], [ 21.476601596686294, 43.727047024200772 ], [ 21.47830691902908, 43.725858465795511 ], [ 21.480322299734325, 43.724928289808702 ], [ 21.484198032413246, 43.72353302672775 ], [ 21.487298617836927, 43.722912910002776 ], [ 21.493551467326313, 43.722111925225136 ], [ 21.496497023119105, 43.721465969179121 ], [ 21.499390902967775, 43.720277410773861 ], [ 21.501251254941451, 43.71893382453635 ], [ 21.502594842078281, 43.717331854981126 ], [ 21.503628370852596, 43.715264798331759 ], [ 21.506522250701266, 43.707926744123938 ], [ 21.508899366612468, 43.698521633266751 ], [ 21.508589308249952, 43.696557929404889 ], [ 21.507762485050648, 43.695266018212124 ], [ 21.506625604388091, 43.694025783862799 ], [ 21.504455194051957, 43.692320462419389 ], [ 21.501871371666425, 43.690821844752293 ], [ 21.499752638173675, 43.689839992821362 ], [ 21.49468834798887, 43.687979640847743 ], [ 21.491794468140199, 43.687359524122712 ], [ 21.489003941078977, 43.687359524122712 ], [ 21.481407505352081, 43.689090684887162 ], [ 21.478720330179101, 43.689116523308883 ], [ 21.47696333189225, 43.688806464047047 ], [ 21.475102979918574, 43.688160508900353 ], [ 21.473552687206734, 43.687256171335207 ], [ 21.472467481588978, 43.686015936985882 ], [ 21.471847364864004, 43.684620673005611 ], [ 21.469987012890329, 43.668471788042552 ], [ 21.47618818463701, 43.668471788042552 ], [ 21.482544386014581, 43.66128876436494 ], [ 21.486575148324391, 43.65361481427226 ], [ 21.487040236317853, 43.644726467352541 ], [ 21.482389357283012, 43.633719386940129 ], [ 21.490140821741534, 43.632892563740825 ], [ 21.494429965570419, 43.631109727931573 ], [ 21.497892287099376, 43.629068507905288 ], [ 21.503473342121026, 43.627518216092767 ], [ 21.498460727880286, 43.625244452069808 ], [ 21.494481642413859, 43.622763984270421 ], [ 21.491639439408573, 43.61927582521912 ], [ 21.489830763379018, 43.613849798929039 ], [ 21.491019320884959, 43.603514512984361 ], [ 21.481924269289607, 43.598424384377836 ], [ 21.48021894694682, 43.597184150028454 ], [ 21.478823682966606, 43.595633857316614 ], [ 21.478203566241575, 43.5938768581305 ], [ 21.478720330179101, 43.591706447794309 ], [ 21.48078738772773, 43.587210598390357 ], [ 21.48099409420206, 43.586280423302867 ], [ 21.495928582338195, 43.582766424930526 ], [ 21.500527785428915, 43.580906073856227 ], [ 21.503473342121026, 43.580130927500306 ], [ 21.507504102632197, 43.57842560515752 ], [ 21.51396365679733, 43.57708201802069 ], [ 21.516599155126869, 43.573774726122679 ], [ 21.51820112468215, 43.571087550949699 ], [ 21.519389683087411, 43.568297023888533 ], [ 21.520371535018285, 43.564369615265491 ], [ 21.521198358217646, 43.562147528985236 ], [ 21.522180210148576, 43.560545559430011 ], [ 21.523472121341285, 43.55915029634906 ], [ 21.525229119628136, 43.557961737943799 ], [ 21.528949822676168, 43.556049710026059 ], [ 21.534634229586004, 43.553672594114914 ], [ 21.5369079927097, 43.552225654190579 ], [ 21.537993198327399, 43.550933742997813 ], [ 21.53861331595175, 43.549486803073478 ], [ 21.538768344683319, 43.547523098312297 ], [ 21.538354932634036, 43.544732571251132 ], [ 21.538303256689915, 43.542717190545886 ], [ 21.538871698370144, 43.540701808941321 ], [ 21.54031863829448, 43.53873810507946 ], [ 21.542489047731351, 43.53703278273673 ], [ 21.547605014759597, 43.533725490838719 ], [ 21.553547804087884, 43.528092759872948 ], [ 21.562539503795051, 43.522770087269691 ], [ 21.564193150193717, 43.521529852920366 ], [ 21.565433383643722, 43.520134588940095 ], [ 21.566311882787147, 43.518532620284191 ], [ 21.566983677254882, 43.516413885892121 ], [ 21.567242058773957, 43.511892198066448 ], [ 21.566983677254882, 43.509644273364472 ], [ 21.566311882787147, 43.507448025505937 ], [ 21.565485059587786, 43.505820217528992 ], [ 21.564399854869407, 43.504321600761216 ], [ 21.558870476691141, 43.499050605001401 ], [ 21.55520144958723, 43.49403799076066 ], [ 21.55385786334972, 43.492694404523149 ], [ 21.548586866690528, 43.488818670944909 ], [ 21.546984898034623, 43.487268378233068 ], [ 21.545899692416867, 43.485563055890282 ], [ 21.545589634054352, 43.483702703916606 ], [ 21.548276808328012, 43.47398753469696 ], [ 21.548173454641187, 43.472023830835099 ], [ 21.546933221191182, 43.469284979717997 ], [ 21.543367546874777, 43.463910631170677 ], [ 21.542592401418176, 43.462153631984506 ], [ 21.542592401418176, 43.46029328091015 ], [ 21.543625929293171, 43.458329576148969 ], [ 21.548380161115517, 43.452438462764803 ], [ 21.549362013046448, 43.450371406115494 ], [ 21.551480747438518, 43.443860175106977 ], [ 21.553237745725369, 43.441017971202371 ], [ 21.555718215323338, 43.437659003360295 ], [ 21.558302035910231, 43.43486847629913 ], [ 21.564141473350276, 43.429700833326763 ], [ 21.565330030856217, 43.428202216559043 ], [ 21.566156854055578, 43.426600247003762 ], [ 21.566776970780552, 43.424429837566947 ], [ 21.566880323568057, 43.419933987263676 ], [ 21.566518589261477, 43.4176860625617 ], [ 21.565640090118052, 43.415567328169629 ], [ 21.564141473350276, 43.4134744330986 ], [ 21.554839715280593, 43.403810939823018 ], [ 21.552565952156954, 43.402312323954561 ], [ 21.549878777883293, 43.401433823911816 ], [ 21.548586866690528, 43.401278795180247 ], [ 21.53995690308858, 43.401847235961156 ], [ 21.537734815909005, 43.40169220633021 ], [ 21.535616082416254, 43.401227118336806 ], [ 21.533135613717604, 43.400271103928276 ], [ 21.530810173750524, 43.399082547321655 ], [ 21.52011315259989, 43.39285553625399 ], [ 21.51856285988805, 43.391124376388859 ], [ 21.517477655169614, 43.389134833205958 ], [ 21.515927361558454, 43.385026557429683 ], [ 21.514842156840075, 43.383088691090222 ], [ 21.513188511340729, 43.381538398378382 ], [ 21.511586540886128, 43.380711575179021 ], [ 21.504816929257856, 43.378644518529711 ], [ 21.502698194865786, 43.37779185600931 ], [ 21.497117139844136, 43.37494965300408 ], [ 21.49489505356388, 43.374122829804719 ], [ 21.492466260809294, 43.373476873758705 ], [ 21.481614210927091, 43.371409817109338 ], [ 21.473914422412633, 43.369291082717268 ], [ 21.469418573008738, 43.367818305270532 ], [ 21.463424106837067, 43.366655585286992 ], [ 21.460065138095615, 43.366345526924476 ], [ 21.453347202411464, 43.366190497293587 ], [ 21.450194940144343, 43.366371365346197 ], [ 21.447197706608847, 43.366784776496218 ], [ 21.439963006087851, 43.368774318779742 ], [ 21.433968539916179, 43.370789700384364 ], [ 21.430764600805674, 43.372159125043538 ], [ 21.429731072930679, 43.372960109821179 ], [ 21.428645868212243, 43.374226183491544 ], [ 21.425080193895838, 43.379962267244821 ], [ 21.423116489134657, 43.381796779897456 ], [ 21.420532667648502, 43.383243719821792 ], [ 21.418310581368246, 43.384044705498752 ], [ 21.41588178861366, 43.384561469436221 ], [ 21.412574496715649, 43.384794013432952 ], [ 21.409370557605143, 43.384664822223726 ], [ 21.406476677756473, 43.384122218965217 ], [ 21.404306268319601, 43.382881985515212 ], [ 21.403789504382132, 43.381590074322446 ], [ 21.404099561845271, 43.380763251123142 ], [ 21.399138625347291, 43.380659898335637 ], [ 21.390767043264418, 43.380143134398111 ], [ 21.384565870618417, 43.379264635254685 ], [ 21.378933139652645, 43.377921048117855 ], [ 21.376245965378985, 43.377559312911956 ], [ 21.374023879098729, 43.377662664800141 ], [ 21.369993116788919, 43.37874787041784 ], [ 21.36244835790535, 43.381951809528346 ], [ 21.357384066821226, 43.383450426296122 ], [ 21.344413283446272, 43.386292630200671 ], [ 21.342449578685091, 43.386576850141523 ], [ 21.339659050724606, 43.386654365406628 ], [ 21.336971877350265, 43.386292630200671 ], [ 21.335266554108159, 43.385672512576377 ], [ 21.329065383260797, 43.383037014246781 ], [ 21.325241327425317, 43.381848455841521 ], [ 21.321830681840481, 43.381280015959931 ], [ 21.318161654736571, 43.380969956698095 ], [ 21.303227165701117, 43.380349839973121 ], [ 21.297646111578786, 43.379316311198806 ], [ 21.292840203812318, 43.377921048117855 ], [ 21.289016147976838, 43.3764741072942 ], [ 21.268655632651303, 43.367379054799528 ], [ 21.250000440567874, 43.360299383909421 ], [ 21.245969679157326, 43.359369207922612 ], [ 21.23527265800675, 43.358594062466011 ], [ 21.22137169774561, 43.355958564136415 ], [ 21.212845086031905, 43.35394318343117 ], [ 21.212638381356214, 43.35316803617593 ], [ 21.211346470163448, 43.351901964304204 ], [ 21.208969354252304, 43.350377509114708 ], [ 21.204835239154932, 43.348387965931863 ], [ 21.201993036149702, 43.346708482010797 ], [ 21.199770948970126, 43.344641425361488 ], [ 21.198168980314165, 43.342367662237791 ], [ 21.19749718584643, 43.340714015839126 ], [ 21.197238804327355, 43.339008694395716 ], [ 21.19749718584643, 43.33694163684703 ], [ 21.20018436012009, 43.331360581825379 ], [ 21.200391065695101, 43.329371039541797 ], [ 21.199150832245095, 43.324435940566161 ], [ 21.19842736183324, 43.322368883017532 ], [ 21.197342157114861, 43.320405178256351 ], [ 21.195843540347084, 43.318777371178726 ], [ 21.193879835585903, 43.31730459193335 ], [ 21.191606073361584, 43.316090196005746 ], [ 21.184888135878737, 43.313118800891914 ], [ 21.178118524250465, 43.308648789909682 ], [ 21.168661737449213, 43.303713690934046 ], [ 21.165251091864377, 43.301414090288006 ], [ 21.164010858414372, 43.300044663830136 ], [ 21.163080682427562, 43.298494371118295 ], [ 21.161013624878876, 43.292086492897283 ], [ 21.16008344889201, 43.290019436247974 ], [ 21.15873986175518, 43.288210761117682 ], [ 21.153365513207859, 43.283017279723651 ], [ 21.152487013165114, 43.281751206952606 ], [ 21.151918573283524, 43.28027842950587 ], [ 21.151660190865073, 43.27875397431643 ], [ 21.151608514021689, 43.272966213719769 ], [ 21.151350131603294, 43.270899156171083 ], [ 21.150730014878263, 43.268961289831623 ], [ 21.149593133316444, 43.267385158698119 ], [ 21.147681105398703, 43.266274116457282 ], [ 21.142823520788852, 43.264465440427728 ], [ 21.140394728034266, 43.262992662081672 ], [ 21.138792759378305, 43.261235662895501 ], [ 21.13605390826126, 43.257024034331721 ], [ 21.134090204399399, 43.254827786473129 ], [ 21.131816441275703, 43.253122464130399 ], [ 21.130421177295489, 43.252502346506049 ], [ 21.122721387881711, 43.250073553751463 ], [ 21.116778598553481, 43.247748115583022 ], [ 21.112127720417959, 43.245577704347568 ], [ 21.106339958921922, 43.242270413348876 ], [ 21.101947463204851, 43.240461738218642 ], [ 21.095022821046314, 43.238187975094945 ], [ 21.087943150156264, 43.236275947177205 ], [ 21.084170770264791, 43.23575918234036 ], [ 21.080295037585927, 43.235552476765349 ], [ 21.072543573127405, 43.235914211971306 ], [ 21.068926221967558, 43.236586005539721 ], [ 21.066290723637962, 43.237412827839705 ], [ 21.059624464797196, 43.240255031744312 ], [ 21.05797081929785, 43.241081854943616 ], [ 21.05605879138011, 43.242528794867951 ], [ 21.053629997726205, 43.246921292383718 ], [ 21.052699822638715, 43.248135688311322 ], [ 21.051407912345269, 43.249143377764653 ], [ 21.049805941890668, 43.249815172232388 ], [ 21.043811475718996, 43.251778876094249 ], [ 21.03771365675982, 43.254595242476455 ], [ 21.036060011260474, 43.254982815204755 ], [ 21.033682896248649, 43.254982815204755 ], [ 21.0319775730066, 43.254595242476455 ], [ 21.024174431704637, 43.251003729738329 ], [ 21.016629672821125, 43.248833320301458 ], [ 21.011875440998779, 43.248006497102153 ], [ 21.008619825944209, 43.248006497102153 ], [ 21.001230095792266, 43.249944363441614 ], [ 20.99668257044425, 43.251417140888293 ], [ 20.988931105086408, 43.254646918420519 ], [ 20.987380812374568, 43.255034492048139 ], [ 20.984486931626577, 43.254931139260634 ], [ 20.979991082222625, 43.253768419277094 ], [ 20.971567824195688, 43.252243964087654 ], [ 20.968002149879283, 43.251081244104114 ], [ 20.966245150693112, 43.249608465758058 ], [ 20.965470005236511, 43.247748115583022 ], [ 20.965883416386532, 43.245215969141611 ], [ 20.967071973892473, 43.241753648512031 ], [ 20.966968622004288, 43.239893297437675 ], [ 20.965831740442468, 43.23772288710154 ], [ 20.96025068542076, 43.231728420929869 ], [ 20.951103956982024, 43.224648749140442 ], [ 20.949036900332658, 43.221599840560145 ], [ 20.948313429021539, 43.219067695018111 ], [ 20.947900017871518, 43.213770859937199 ], [ 20.948365105864923, 43.208422349811599 ], [ 20.950742221776125, 43.199895738097837 ], [ 20.951930780181328, 43.188061835385383 ], [ 20.952447544118854, 43.185219632380097 ], [ 20.953377720105664, 43.182635809994622 ], [ 20.955289748023461, 43.179380194939995 ], [ 20.955703159173424, 43.17813995969135 ], [ 20.955548130441855, 43.17643463824794 ], [ 20.95487633597412, 43.1752719182644 ], [ 20.947073194672157, 43.168476467315088 ], [ 20.944954461179407, 43.167132880178258 ], [ 20.943145786049172, 43.166409409766402 ], [ 20.93580773274067, 43.164239000329587 ], [ 20.932552117686043, 43.162430325199352 ], [ 20.930536736980798, 43.160569973225677 ], [ 20.926144240364408, 43.154885566315784 ], [ 20.92035647976769, 43.149872952075043 ], [ 20.915033807164434, 43.141863105198127 ], [ 20.912494133000109, 43.138805129000062 ], [ 20.838551880000125, 43.170466817 ], [ 20.832040649000078, 43.1786058550001 ], [ 20.836071411000148, 43.179432678000026 ], [ 20.839068644000065, 43.192455140000064 ], [ 20.840618937000102, 43.206976217000019 ], [ 20.839998820000119, 43.212092184000099 ], [ 20.851470988000131, 43.219817811 ], [ 20.861599569000106, 43.217518209000062 ], [ 20.864700154000047, 43.217337342000022 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-21", "NAME_1": "Toplicki" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.993431297000086, 43.104148257000119 ], [ 20.912494133000109, 43.138805129000062 ], [ 20.915033807164434, 43.141863105198127 ], [ 20.92035647976769, 43.149872952075043 ], [ 20.926144240364408, 43.154885566315784 ], [ 20.930536736980798, 43.160569973225677 ], [ 20.932552117686043, 43.162430325199352 ], [ 20.93580773274067, 43.164239000329587 ], [ 20.943145786049172, 43.166409409766402 ], [ 20.944954461179407, 43.167132880178258 ], [ 20.947073194672157, 43.168476467315088 ], [ 20.95487633597412, 43.1752719182644 ], [ 20.955548130441855, 43.17643463824794 ], [ 20.955703159173424, 43.17813995969135 ], [ 20.955289748023461, 43.179380194939995 ], [ 20.953377720105664, 43.182635809994622 ], [ 20.952447544118854, 43.185219632380097 ], [ 20.951930780181328, 43.188061835385383 ], [ 20.950742221776125, 43.199895738097837 ], [ 20.948365105864923, 43.208422349811599 ], [ 20.947900017871518, 43.213770859937199 ], [ 20.948313429021539, 43.219067695018111 ], [ 20.949036900332658, 43.221599840560145 ], [ 20.951103956982024, 43.224648749140442 ], [ 20.96025068542076, 43.231728420929869 ], [ 20.965831740442468, 43.23772288710154 ], [ 20.966968622004288, 43.239893297437675 ], [ 20.967071973892473, 43.241753648512031 ], [ 20.965883416386532, 43.245215969141611 ], [ 20.965470005236511, 43.247748115583022 ], [ 20.966245150693112, 43.249608465758058 ], [ 20.968002149879283, 43.251081244104114 ], [ 20.971567824195688, 43.252243964087654 ], [ 20.979991082222625, 43.253768419277094 ], [ 20.984486931626577, 43.254931139260634 ], [ 20.987380812374568, 43.255034492048139 ], [ 20.988931105086408, 43.254646918420519 ], [ 20.99668257044425, 43.251417140888293 ], [ 21.001230095792266, 43.249944363441614 ], [ 21.008619825944209, 43.248006497102153 ], [ 21.011875440998779, 43.248006497102153 ], [ 21.016629672821125, 43.248833320301458 ], [ 21.024174431704637, 43.251003729738329 ], [ 21.0319775730066, 43.254595242476455 ], [ 21.033682896248649, 43.254982815204755 ], [ 21.036060011260474, 43.254982815204755 ], [ 21.03771365675982, 43.254595242476455 ], [ 21.043811475718996, 43.251778876094249 ], [ 21.049805941890668, 43.249815172232388 ], [ 21.051407912345269, 43.249143377764653 ], [ 21.052699822638715, 43.248135688311322 ], [ 21.053629997726205, 43.246921292383718 ], [ 21.05605879138011, 43.242528794867951 ], [ 21.05797081929785, 43.241081854943616 ], [ 21.059624464797196, 43.240255031744312 ], [ 21.066290723637962, 43.237412827839705 ], [ 21.068926221967558, 43.236586005539721 ], [ 21.072543573127405, 43.235914211971306 ], [ 21.080295037585927, 43.235552476765349 ], [ 21.084170770264791, 43.23575918234036 ], [ 21.087943150156264, 43.236275947177205 ], [ 21.095022821046314, 43.238187975094945 ], [ 21.101947463204851, 43.240461738218642 ], [ 21.106339958921922, 43.242270413348876 ], [ 21.112127720417959, 43.245577704347568 ], [ 21.116778598553481, 43.247748115583022 ], [ 21.122721387881711, 43.250073553751463 ], [ 21.130421177295489, 43.252502346506049 ], [ 21.131816441275703, 43.253122464130399 ], [ 21.134090204399399, 43.254827786473129 ], [ 21.13605390826126, 43.257024034331721 ], [ 21.138792759378305, 43.261235662895501 ], [ 21.140394728034266, 43.262992662081672 ], [ 21.142823520788852, 43.264465440427728 ], [ 21.147681105398703, 43.266274116457282 ], [ 21.149593133316444, 43.267385158698119 ], [ 21.150730014878263, 43.268961289831623 ], [ 21.151350131603294, 43.270899156171083 ], [ 21.151608514021689, 43.272966213719769 ], [ 21.151660190865073, 43.27875397431643 ], [ 21.151918573283524, 43.28027842950587 ], [ 21.152487013165114, 43.281751206952606 ], [ 21.153365513207859, 43.283017279723651 ], [ 21.15873986175518, 43.288210761117682 ], [ 21.16008344889201, 43.290019436247974 ], [ 21.161013624878876, 43.292086492897283 ], [ 21.163080682427562, 43.298494371118295 ], [ 21.164010858414372, 43.300044663830136 ], [ 21.165251091864377, 43.301414090288006 ], [ 21.168661737449213, 43.303713690934046 ], [ 21.178118524250465, 43.308648789909682 ], [ 21.184888135878737, 43.313118800891914 ], [ 21.191606073361584, 43.316090196005746 ], [ 21.193879835585903, 43.31730459193335 ], [ 21.195843540347084, 43.318777371178726 ], [ 21.197342157114861, 43.320405178256351 ], [ 21.19842736183324, 43.322368883017532 ], [ 21.199150832245095, 43.324435940566161 ], [ 21.200391065695101, 43.329371039541797 ], [ 21.20018436012009, 43.331360581825379 ], [ 21.19749718584643, 43.33694163684703 ], [ 21.197238804327355, 43.339008694395716 ], [ 21.19749718584643, 43.340714015839126 ], [ 21.198168980314165, 43.342367662237791 ], [ 21.199770948970126, 43.344641425361488 ], [ 21.201993036149702, 43.346708482010797 ], [ 21.204835239154932, 43.348387965931863 ], [ 21.208969354252304, 43.350377509114708 ], [ 21.211346470163448, 43.351901964304204 ], [ 21.212638381356214, 43.35316803617593 ], [ 21.212845086031905, 43.35394318343117 ], [ 21.22137169774561, 43.355958564136415 ], [ 21.23527265800675, 43.358594062466011 ], [ 21.245969679157326, 43.359369207922612 ], [ 21.250000440567874, 43.360299383909421 ], [ 21.268655632651303, 43.367379054799528 ], [ 21.289016147976838, 43.3764741072942 ], [ 21.292840203812318, 43.377921048117855 ], [ 21.297646111578786, 43.379316311198806 ], [ 21.303227165701117, 43.380349839973121 ], [ 21.318161654736571, 43.380969956698095 ], [ 21.321830681840481, 43.381280015959931 ], [ 21.325241327425317, 43.381848455841521 ], [ 21.329065383260797, 43.383037014246781 ], [ 21.335266554108159, 43.385672512576377 ], [ 21.336971877350265, 43.386292630200671 ], [ 21.339659050724606, 43.386654365406628 ], [ 21.342449578685091, 43.386576850141523 ], [ 21.344413283446272, 43.386292630200671 ], [ 21.357384066821226, 43.383450426296122 ], [ 21.36244835790535, 43.381951809528346 ], [ 21.369993116788919, 43.37874787041784 ], [ 21.374023879098729, 43.377662664800141 ], [ 21.376245965378985, 43.377559312911956 ], [ 21.378933139652645, 43.377921048117855 ], [ 21.384565870618417, 43.379264635254685 ], [ 21.390767043264418, 43.380143134398111 ], [ 21.399138625347291, 43.380659898335637 ], [ 21.404099561845271, 43.380763251123142 ], [ 21.403789504382132, 43.381590074322446 ], [ 21.404306268319601, 43.382881985515212 ], [ 21.406476677756473, 43.384122218965217 ], [ 21.409370557605143, 43.384664822223726 ], [ 21.412574496715649, 43.384794013432952 ], [ 21.41588178861366, 43.384561469436221 ], [ 21.418310581368246, 43.384044705498752 ], [ 21.420532667648502, 43.383243719821792 ], [ 21.423116489134657, 43.381796779897456 ], [ 21.425080193895838, 43.379962267244821 ], [ 21.428645868212243, 43.374226183491544 ], [ 21.429731072930679, 43.372960109821179 ], [ 21.430764600805674, 43.372159125043538 ], [ 21.433968539916179, 43.370789700384364 ], [ 21.439963006087851, 43.368774318779742 ], [ 21.447197706608847, 43.366784776496218 ], [ 21.450194940144343, 43.366371365346197 ], [ 21.453347202411464, 43.366190497293587 ], [ 21.460065138095615, 43.366345526924476 ], [ 21.463424106837067, 43.366655585286992 ], [ 21.469418573008738, 43.367818305270532 ], [ 21.4794438005909, 43.35663035680551 ], [ 21.485128208400056, 43.349912421121303 ], [ 21.487350294680311, 43.348310452465398 ], [ 21.490089145797413, 43.347431952422653 ], [ 21.49334476085204, 43.347380276478532 ], [ 21.503421665277585, 43.348930569190372 ], [ 21.509829542599277, 43.349137274765383 ], [ 21.513033481709783, 43.348982245134493 ], [ 21.516134067133464, 43.348620509928594 ], [ 21.526469353977461, 43.346656806066733 ], [ 21.529414910669573, 43.345985012498318 ], [ 21.537321404758984, 43.343297838224657 ], [ 21.5407320494445, 43.342677721499626 ], [ 21.547915073122113, 43.342212633506222 ], [ 21.559128859109535, 43.342109279819397 ], [ 21.566621942048982, 43.342496853447017 ], [ 21.570290969152893, 43.342987778962822 ], [ 21.577008904837044, 43.344589749417366 ], [ 21.593855421790295, 43.349188950709504 ], [ 21.592821893015923, 43.33580475528521 ], [ 21.592253452235013, 43.333427639374008 ], [ 21.589514601117912, 43.328311673245082 ], [ 21.586207310119278, 43.323454087735911 ], [ 21.583726841420571, 43.320456855099735 ], [ 21.579696079110761, 43.31673615205176 ], [ 21.57871422717983, 43.315289212127425 ], [ 21.57814578639892, 43.313738919415584 ], [ 21.57814578639892, 43.311723537811019 ], [ 21.57871422717983, 43.310199083520843 ], [ 21.57964440316664, 43.308726305174844 ], [ 21.583468459002177, 43.304953925283428 ], [ 21.584553663720612, 43.303455309414971 ], [ 21.586000603644948, 43.30012217909524 ], [ 21.587137485206767, 43.295290432007789 ], [ 21.588067661193577, 43.293585110564379 ], [ 21.589411248330407, 43.292034816953219 ], [ 21.593597039371843, 43.288339952326908 ], [ 21.595767449708035, 43.285316881269011 ], [ 21.597937860044169, 43.281234443015137 ], [ 21.5989197119751, 43.27989085497893 ], [ 21.601555210304696, 43.277255357548711 ], [ 21.603208855804041, 43.276118475986834 ], [ 21.605172559665903, 43.275239976843409 ], [ 21.607394646845478, 43.274619859219115 ], [ 21.616748080859225, 43.273276272082285 ], [ 21.619641960707895, 43.272604479413189 ], [ 21.62145063583813, 43.271881008102014 ], [ 21.62300092944929, 43.270950833014524 ], [ 21.624912957367087, 43.269323025037579 ], [ 21.625998162984843, 43.267566025851409 ], [ 21.625998162984843, 43.266248277136242 ], [ 21.625326369416371, 43.264904689999412 ], [ 21.622897576661842, 43.262708442140877 ], [ 21.61669640491516, 43.258858547883676 ], [ 21.614629347366474, 43.256998195910001 ], [ 21.612097201824383, 43.253742580855373 ], [ 21.611322056367783, 43.252347316875159 ], [ 21.610701938743489, 43.250228583382409 ], [ 21.610598585955984, 43.248058173046218 ], [ 21.611011997105948, 43.245913601131747 ], [ 21.612458937030283, 43.242993882861356 ], [ 21.61493940572899, 43.239402371022607 ], [ 21.616438023396029, 43.237981269519935 ], [ 21.618350051313826, 43.23671519584957 ], [ 21.623207635024301, 43.234157212785135 ], [ 21.626101514872971, 43.23291697933513 ], [ 21.629098748408524, 43.231935126504879 ], [ 21.632871128299939, 43.231263332936464 ], [ 21.635093214580195, 43.231211656093024 ], [ 21.636126743354509, 43.231418362567354 ], [ 21.648735793322203, 43.229764716168688 ], [ 21.652508172314299, 43.228937892969384 ], [ 21.654988641012949, 43.228188585035127 ], [ 21.658709344060981, 43.226250718695667 ], [ 21.662275018377386, 43.223666897209512 ], [ 21.665737339006967, 43.221574002138482 ], [ 21.67545250822667, 43.217388211097045 ], [ 21.685942823802236, 43.210902818510249 ], [ 21.688268262869997, 43.209688422582587 ], [ 21.690593702837077, 43.208784085017498 ], [ 21.6933842298983, 43.208474025755663 ], [ 21.694986200352844, 43.208732408174058 ], [ 21.697363316264045, 43.209765936948429 ], [ 21.698913608076509, 43.210696112935238 ], [ 21.700205519269275, 43.211781318552994 ], [ 21.701032341569316, 43.213073228846383 ], [ 21.701342400831095, 43.214520168770775 ], [ 21.70123904804359, 43.215863755907606 ], [ 21.700205519269275, 43.219326077436506 ], [ 21.698293491351535, 43.224390366722048 ], [ 21.69782840335813, 43.226560777058182 ], [ 21.697776727414009, 43.228782864237758 ], [ 21.698086785776525, 43.230953274573949 ], [ 21.69953372570086, 43.236586005539721 ], [ 21.700257196112716, 43.244750882047526 ], [ 21.700722284106121, 43.247438056321243 ], [ 21.70165245919361, 43.249944363441614 ], [ 21.702530959236356, 43.251313788100845 ], [ 21.705631544660037, 43.254414374423845 ], [ 21.707956983727797, 43.25565460877317 ], [ 21.709765658858032, 43.25601634397907 ], [ 21.711677686775829, 43.255964667135629 ], [ 21.7145715666245, 43.255292874466534 ], [ 21.71710371306591, 43.254000963273825 ], [ 21.719119093771155, 43.252140611300149 ], [ 21.721909620832321, 43.248936673088963 ], [ 21.72340823670072, 43.247696437840318 ], [ 21.725165235886891, 43.246714585909388 ], [ 21.728937615778307, 43.245577704347568 ], [ 21.731624790052024, 43.245422674716622 ], [ 21.737619256223695, 43.246352850703488 ], [ 21.74056481291575, 43.246533717856778 ], [ 21.743665399238751, 43.246378689125152 ], [ 21.753380567559134, 43.244621689939038 ], [ 21.755654330682773, 43.244337469998243 ], [ 21.758083123437359, 43.244311632475842 ], [ 21.760460239348561, 43.244570013994917 ], [ 21.763095736778837, 43.245241808462652 ], [ 21.765937940683386, 43.246559557177818 ], [ 21.770692173405052, 43.232400214498284 ], [ 21.771932406855058, 43.229558009694358 ], [ 21.773689406041228, 43.227077541895028 ], [ 21.778650344337905, 43.222013250810846 ], [ 21.779580519425394, 43.22015289973649 ], [ 21.77947716573857, 43.218395901449696 ], [ 21.77875369622609, 43.217207343044436 ], [ 21.776996697939239, 43.21552785912337 ], [ 21.774671257972159, 43.21400340393393 ], [ 21.766971470357078, 43.210075995310888 ], [ 21.763457471984736, 43.207776393765528 ], [ 21.762217237635411, 43.206406969106297 ], [ 21.76139041533537, 43.204908352338578 ], [ 21.760977004185406, 43.202892970734013 ], [ 21.761080356972855, 43.20087759092803 ], [ 21.761855503328775, 43.198913886166906 ], [ 21.763199089566285, 43.197156886980736 ], [ 21.768831821431377, 43.192867743151794 ], [ 21.772965935629429, 43.188010159441262 ], [ 21.775343052439894, 43.185633043530117 ], [ 21.786711867158942, 43.176693019767015 ], [ 21.789192335857592, 43.17431590385587 ], [ 21.79704715310362, 43.165220852260518 ], [ 21.803868441575275, 43.158916326827011 ], [ 21.804488560098946, 43.157779446164511 ], [ 21.804695264774637, 43.156539211815129 ], [ 21.804333529568737, 43.155324814988205 ], [ 21.802783236856897, 43.153722846332244 ], [ 21.801387973775945, 43.152818507867835 ], [ 21.795600213179284, 43.150338040068448 ], [ 21.794101597310828, 43.149459540025703 ], [ 21.792706333330614, 43.147909247313862 ], [ 21.792189569393088, 43.146048896239563 ], [ 21.792551303699668, 43.144085191478382 ], [ 21.794153273254949, 43.142018133929696 ], [ 21.796737094741104, 43.140235297221182 ], [ 21.799217564339131, 43.139046738815921 ], [ 21.801801384925966, 43.138194078094216 ], [ 21.804333529568737, 43.137728990100811 ], [ 21.805522087973941, 43.137780666944195 ], [ 21.811051467051527, 43.131450303988288 ], [ 21.813997022844319, 43.127497056943582 ], [ 21.814823846043623, 43.125636704969907 ], [ 21.814875522887064, 43.124525661829807 ], [ 21.813893670056814, 43.122484442702842 ], [ 21.807227411216047, 43.117549342827886 ], [ 21.800922885782541, 43.112045803071339 ], [ 21.794049919568124, 43.106981512886478 ], [ 21.774929640390553, 43.095638535689829 ], [ 21.771570671649158, 43.094217434187215 ], [ 21.760460239348561, 43.091556098335275 ], [ 21.757049594663044, 43.09106517192015 ], [ 21.746972691136762, 43.090160834355004 ], [ 21.74175337132101, 43.089101467158969 ], [ 21.73482872916253, 43.087034410509602 ], [ 21.723459914443481, 43.082900296311607 ], [ 21.711677686775829, 43.07737091723402 ], [ 21.708887159714607, 43.07582062452218 ], [ 21.704804722360052, 43.072771715042563 ], [ 21.698603549714051, 43.067319851230138 ], [ 21.692660760385763, 43.063624985704507 ], [ 21.688216586925932, 43.060421048392641 ], [ 21.684805942240416, 43.056958726863741 ], [ 21.683359002316081, 43.054788316527549 ], [ 21.673953892358213, 43.052643743713759 ], [ 21.665944044581977, 43.050447495855224 ], [ 21.661809930383981, 43.049026394352609 ], [ 21.66000125525369, 43.048535467937484 ], [ 21.658244256067519, 43.048328762362473 ], [ 21.657004021718194, 43.048406276728258 ], [ 21.655350376218848, 43.048871364721663 ], [ 21.648735793322203, 43.052411201515724 ], [ 21.644394971750501, 43.053909817384124 ], [ 21.642586296620266, 43.054271551690761 ], [ 21.63995079918999, 43.05424571416836 ], [ 21.638142124059755, 43.05385814144006 ], [ 21.634576449743349, 43.052359523772964 ], [ 21.632974481087388, 43.051274319054585 ], [ 21.631682569894679, 43.049956570339418 ], [ 21.630649041120307, 43.048483791993363 ], [ 21.627651807584812, 43.042876899449311 ], [ 21.626359898190742, 43.041455797047377 ], [ 21.624757927736141, 43.040267239541436 ], [ 21.621192254319055, 43.038148505149366 ], [ 21.612458937030283, 43.03362681732375 ], [ 21.603570591009941, 43.028433335929662 ], [ 21.600728387105391, 43.027141424736953 ], [ 21.598402948037631, 43.026443792746818 ], [ 21.596025832126429, 43.025901191286948 ], [ 21.592046746660003, 43.025461940815887 ], [ 21.587964308406072, 43.025281074561917 ], [ 21.554529656918135, 43.025384426450103 ], [ 21.550498894608268, 43.025126044031708 ], [ 21.546623162828666, 43.024557604150061 ], [ 21.542592401418176, 43.023317368901417 ], [ 21.538148227958345, 43.021586209036286 ], [ 21.535616082416254, 43.020371813108682 ], [ 21.525022414053126, 43.014635729355405 ], [ 21.522645298141981, 43.012956244535019 ], [ 21.520578240593295, 43.011121730983064 ], [ 21.515048862415028, 43.004765530504812 ], [ 21.512723423347268, 43.002543443325237 ], [ 21.507090692381553, 42.998461005071306 ], [ 21.501768018878977, 42.995567125222635 ], [ 21.475516391967915, 42.983138943307551 ], [ 21.466731397835702, 42.980270900981282 ], [ 21.453708936718044, 42.97636932988064 ], [ 21.451951939330513, 42.975516669158935 ], [ 21.450763380925252, 42.974508978806284 ], [ 21.450349968875969, 42.973242906035239 ], [ 21.450453321663474, 42.971795966110903 ], [ 21.451331820806843, 42.969651394196489 ], [ 21.454432407129843, 42.964612942433348 ], [ 21.45768802308379, 42.958566799418236 ], [ 21.459238315795631, 42.956861477075506 ], [ 21.463940870774536, 42.953218289292579 ], [ 21.464871046761402, 42.951900540577469 ], [ 21.467093133041658, 42.946422838343267 ], [ 21.468178337760037, 42.944484972003806 ], [ 21.473139276056713, 42.938361313723647 ], [ 21.474276156719213, 42.936371772339385 ], [ 21.474586215981049, 42.934433905999924 ], [ 21.47406945204358, 42.932547716503905 ], [ 21.47329430478834, 42.93128164283354 ], [ 21.468126661815973, 42.926579087854577 ], [ 21.466421340372563, 42.924796251146063 ], [ 21.463889193931152, 42.921463120826331 ], [ 21.462493930850201, 42.92027456332039 ], [ 21.460840285350855, 42.919292711389517 ], [ 21.45634443504764, 42.917329007527655 ], [ 21.452985467205508, 42.915520331498101 ], [ 21.450091587356837, 42.913453273949415 ], [ 21.448489617801613, 42.911670437240844 ], [ 21.447972852964767, 42.910352688525734 ], [ 21.447921177020703, 42.909009101388904 ], [ 21.448954704895698, 42.905030015922478 ], [ 21.449161411370028, 42.903066311161297 ], [ 21.447972852964767, 42.89696849220212 ], [ 21.448024529808208, 42.89503062586266 ], [ 21.448851353007512, 42.891077378817954 ], [ 21.448541293745677, 42.889217026844278 ], [ 21.447042677877278, 42.886917426198238 ], [ 21.439963006087851, 42.880277004879872 ], [ 21.438257683745064, 42.877925727390391 ], [ 21.437740919807595, 42.87596202172989 ], [ 21.437740919807595, 42.870846056500284 ], [ 21.43727583181419, 42.868598130898988 ], [ 21.432728305566854, 42.859632270512861 ], [ 21.432418247204339, 42.85803030005826 ], [ 21.408418886000049, 42.841743208000068 ], [ 21.408439575000074, 42.846998190000093 ], [ 21.398931111000081, 42.854568787000048 ], [ 21.378777303000106, 42.855292257000045 ], [ 21.346737915000119, 42.860847473000049 ], [ 21.336402628000116, 42.865472514000103 ], [ 21.316972290000109, 42.877616476000114 ], [ 21.306326945000137, 42.882448222000036 ], [ 21.294958130000055, 42.884386088000056 ], [ 21.271600383000106, 42.884282735000042 ], [ 21.260541626000105, 42.886556499000037 ], [ 21.23242964700006, 42.910896098000066 ], [ 21.226745240000099, 42.942522075000042 ], [ 21.225298299000116, 42.973553772000074 ], [ 21.209795369000091, 42.995877991000057 ], [ 21.193052206000061, 42.997893372000092 ], [ 21.179409627000041, 42.990581157000108 ], [ 21.165353638000028, 42.985103455000015 ], [ 21.147887003000079, 42.992622376000057 ], [ 21.139308716000045, 43.00582570400006 ], [ 21.124012491000087, 43.05827728300001 ], [ 21.10850956200008, 43.081557516000132 ], [ 21.092593221000072, 43.090678406 ], [ 21.025827271000111, 43.093365580000054 ], [ 21.005156698000093, 43.099127502 ], [ 20.993431297000086, 43.104148257000119 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-16", "NAME_1": "Zlatiborski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.547844735745969, 43.218814865913316 ], [ 19.512431274000107, 43.240643413000058 ], [ 19.502302693000075, 43.251934713000125 ], [ 19.485146118000102, 43.280098369000072 ], [ 19.473053833000108, 43.293275859000047 ], [ 19.414039347000084, 43.338389384000024 ], [ 19.372284790000037, 43.384226379000054 ], [ 19.355644979000118, 43.393063049000077 ], [ 19.218392375000121, 43.438202413000042 ], [ 19.192244100000039, 43.45453216500006 ], [ 19.175914347000088, 43.480887146000029 ], [ 19.175190877000091, 43.509619243000131 ], [ 19.195344686000055, 43.53279612200005 ], [ 19.217462199000067, 43.53279612200005 ], [ 19.229451131000133, 43.549745992000041 ], [ 19.238856242000082, 43.572121887000023 ], [ 19.252705525000067, 43.588632507000014 ], [ 19.263660930000128, 43.590957947000035 ], [ 19.289189087000068, 43.587934875000101 ], [ 19.300867960000033, 43.588296611000018 ], [ 19.312650187000145, 43.593154195000025 ], [ 19.335801228000037, 43.606512553000059 ], [ 19.346549926000137, 43.60883799200009 ], [ 19.363396443000113, 43.601577454000036 ], [ 19.380449666000061, 43.585583598000071 ], [ 19.394609009000106, 43.566463318000089 ], [ 19.402877238000144, 43.549642639000112 ], [ 19.410732056000086, 43.540754293000091 ], [ 19.41931034400011, 43.549255067 ], [ 19.431816040000115, 43.571140035000056 ], [ 19.443908325000109, 43.571863506000042 ], [ 19.481735473000072, 43.560830587000041 ], [ 19.489590291000098, 43.564447937000025 ], [ 19.491760702000107, 43.568607890000052 ], [ 19.488970174000144, 43.573181255000108 ], [ 19.481735473000072, 43.578116353000055 ], [ 19.476877889000065, 43.58868418400003 ], [ 19.47563765400011, 43.602559306000089 ], [ 19.477498006000133, 43.61697703 ], [ 19.481735473000072, 43.628914287000057 ], [ 19.507366984000043, 43.647181905000096 ], [ 19.505713338000106, 43.673640239000107 ], [ 19.481735473000072, 43.729218242000101 ], [ 19.461685018000139, 43.762136129000041 ], [ 19.359469035000075, 43.842208761 ], [ 19.305932251000115, 43.904737244 ], [ 19.275443156000023, 43.933262634000059 ], [ 19.241026652000073, 43.95235707700003 ], [ 19.22934777800009, 43.957679748000075 ], [ 19.240716594000105, 43.965741272000074 ], [ 19.242887003000078, 43.972820944 ], [ 19.238132771000096, 43.985378316000023 ], [ 19.238029419000071, 43.992509664000053 ], [ 19.24350712100005, 44.002018128000131 ], [ 19.252085409000074, 44.007495830000025 ], [ 19.272755981000103, 44.012405090000058 ], [ 19.287328735000074, 44.01302520800003 ], [ 19.300557902000065, 44.00951121000007 ], [ 19.325879354000051, 43.996592102000065 ], [ 19.351717570000062, 43.979125468000106 ], [ 19.364636678000068, 43.973286031000029 ], [ 19.379106079000081, 43.97385447200007 ], [ 19.393988892000039, 43.977058411000044 ], [ 19.447112264000083, 43.979797262 ], [ 19.504059692000055, 43.975663147000077 ], [ 19.528554321000087, 43.977213441000075 ], [ 19.55222212700005, 43.983414612000061 ], [ 19.593356567000114, 44.005583802 ], [ 19.610409790000034, 44.019278057000022 ], [ 19.618884725000044, 44.035711161000066 ], [ 19.611443319000017, 44.054521383000079 ], [ 19.598937622000022, 44.062582906000088 ], [ 19.589945923000073, 44.060309144000072 ], [ 19.583848104000111, 44.05431467800004 ], [ 19.580230753000137, 44.051524150000077 ], [ 19.570928995000116, 44.056898499000042 ], [ 19.554599243000069, 44.071264547000041 ], [ 19.522043091000029, 44.085010478000086 ], [ 19.516189487000133, 44.091193506000067 ], [ 19.522922397650518, 44.092399400511908 ], [ 19.527056511848514, 44.093510444551328 ], [ 19.52953698144654, 44.094957384475663 ], [ 19.53217247887676, 44.097308661065824 ], [ 19.540544060959633, 44.108677477583512 ], [ 19.542921176870777, 44.111312975013789 ], [ 19.546021763193778, 44.113793442813119 ], [ 19.547985467055639, 44.114723618799928 ], [ 19.55015587739183, 44.115395413267663 ], [ 19.559250928987183, 44.11710073471113 ], [ 19.561317987435132, 44.11766917639136 ], [ 19.571239862229845, 44.120976467390051 ], [ 19.573823682816681, 44.121596585014345 ], [ 19.576614210777166, 44.12169993780185 ], [ 19.578629592381787, 44.121441555383456 ], [ 19.586639439258704, 44.119891261772295 ], [ 19.59077355255738, 44.1188318963749 ], [ 19.595837843641561, 44.118030910697939 ], [ 19.598731724389552, 44.118108425063724 ], [ 19.602917515430988, 44.119090277893974 ], [ 19.604984572080298, 44.119942939514999 ], [ 19.607413363935564, 44.121441555383456 ], [ 19.609325391853361, 44.123301907357131 ], [ 19.612684359695436, 44.129244696685362 ], [ 19.617593622047991, 44.13542003001038 ], [ 19.618575473978922, 44.137822984343245 ], [ 19.618782178654612, 44.1404068058294 ], [ 19.618162061929581, 44.14366242088397 ], [ 19.626947056061795, 44.144799303345167 ], [ 19.630822787841396, 44.145006008020857 ], [ 19.63356163895844, 44.144902656132672 ], [ 19.636042107657147, 44.144489244083331 ], [ 19.638109165205776, 44.1438691273583 ], [ 19.648134392787995, 44.140458481773464 ], [ 19.656299269295801, 44.13885651311756 ], [ 19.658159621269476, 44.138184719549145 ], [ 19.659296501931976, 44.137409573193224 ], [ 19.664154087441148, 44.131725165384069 ], [ 19.671078728700365, 44.126764227986712 ], [ 19.672939079774721, 44.125859890421566 ], [ 19.675522902160196, 44.125110582487366 ], [ 19.687511833604219, 44.122733466576221 ], [ 19.68947553926472, 44.122578436945275 ], [ 19.695573358223896, 44.121544908170961 ], [ 19.700120883571913, 44.120511380295966 ], [ 19.704358350557413, 44.11903860105059 ], [ 19.706270379374473, 44.11808258754138 ], [ 19.709060907335015, 44.116170558724264 ], [ 19.715623814287596, 44.110744534232822 ], [ 19.718259311717873, 44.109090887834157 ], [ 19.721204868409927, 44.107850654384151 ], [ 19.725649040970438, 44.107023831184847 ], [ 19.734279006371025, 44.107463079857212 ], [ 19.737948031676297, 44.106507066348001 ], [ 19.739705030862467, 44.105628567204576 ], [ 19.741255323574308, 44.104491686542076 ], [ 19.746422967445994, 44.099608263510504 ], [ 19.752520786405171, 44.095551662778973 ], [ 19.755466343097225, 44.093174546867829 ], [ 19.758256870158391, 44.089763902182312 ], [ 19.760168898076188, 44.085474758353371 ], [ 19.762080925993928, 44.082684231292205 ], [ 19.763424513130758, 44.081288967311991 ], [ 19.7708142432827, 44.075656236346219 ], [ 19.773966506449085, 44.072090562929134 ], [ 19.775568475105047, 44.069403387756097 ], [ 19.776136915885957, 44.067517198260077 ], [ 19.776085239042516, 44.065320950401542 ], [ 19.774276563912281, 44.06154857051007 ], [ 19.77406985833727, 44.060204983373239 ], [ 19.774276563912281, 44.058809719393025 ], [ 19.775878534366825, 44.056277573850934 ], [ 19.777222120604392, 44.055089016344994 ], [ 19.779082471678691, 44.054184678779905 ], [ 19.781201206070762, 44.053512885211433 ], [ 19.785025261906299, 44.052866930064738 ], [ 19.793241815257545, 44.052324326806229 ], [ 19.799442987004227, 44.052246813339764 ], [ 19.802336866852897, 44.052582709224623 ], [ 19.804300570714759, 44.053073634740429 ], [ 19.806264276375259, 44.053874620417389 ], [ 19.807917921874605, 44.054908149191704 ], [ 19.809209832167994, 44.056225897906813 ], [ 19.81014000815486, 44.05772451377527 ], [ 19.8109151554101, 44.060204983373239 ], [ 19.811225212873239, 44.062892158546276 ], [ 19.811121860085734, 44.068447374246887 ], [ 19.810036655367355, 44.073847561215928 ], [ 19.806367629162764, 44.083511054491566 ], [ 19.799287957373338, 44.095499985935589 ], [ 19.797014194249641, 44.098187161108569 ], [ 19.793861931982576, 44.100822659438165 ], [ 19.791123080865475, 44.102321275306565 ], [ 19.787040642611544, 44.104000759227631 ], [ 19.782028029270123, 44.106532904769722 ], [ 19.776498651091856, 44.110046902242743 ], [ 19.775000034324137, 44.111209622226283 ], [ 19.773914828706381, 44.112398179732168 ], [ 19.773553094399745, 44.113638414081493 ], [ 19.773759799974755, 44.114878648430874 ], [ 19.774534946330675, 44.115989692470293 ], [ 19.775723503836616, 44.117049058767009 ], [ 19.778255650278027, 44.11847016026968 ], [ 19.782596470051033, 44.120149645090009 ], [ 19.786730584249028, 44.12128652575251 ], [ 19.789831169672709, 44.121648260958466 ], [ 19.79293175599571, 44.121648260958466 ], [ 19.795980666374646, 44.12128652575251 ], [ 19.798202751755582, 44.120692247449256 ], [ 19.800269810203588, 44.11978790988411 ], [ 19.802078485333823, 44.118702704266354 ], [ 19.80838300986801, 44.113638414081493 ], [ 19.812103712915984, 44.111312975013789 ], [ 19.819183383806092, 44.108574123896688 ], [ 19.826366408383024, 44.105318507942741 ], [ 19.828950229869179, 44.104956772736841 ], [ 19.831430697668566, 44.105499375995407 ], [ 19.832929315335605, 44.106377875138776 ], [ 19.838923780607956, 44.111364650957853 ], [ 19.840990838156642, 44.112759914938124 ], [ 19.844814893992123, 44.114000149287449 ], [ 19.850344273069709, 44.115162869270989 ], [ 19.852256300987506, 44.115705470730859 ], [ 19.85385826964341, 44.116506456407819 ], [ 19.855460239198692, 44.118030910697939 ], [ 19.856597120760512, 44.1199687770374 ], [ 19.858819207040767, 44.126169948784081 ], [ 19.859749383027577, 44.127591051186016 ], [ 19.861041294220342, 44.128779608691957 ], [ 19.862694939719688, 44.129606431891318 ], [ 19.864658643581492, 44.130123195828787 ], [ 19.867397494698594, 44.130278225459733 ], [ 19.887292922030724, 44.128779608691957 ], [ 19.8937524761958, 44.127694403973521 ], [ 19.896181268051066, 44.126970934461042 ], [ 19.901400587866817, 44.124697171337345 ], [ 19.90822187723785, 44.121234849808445 ], [ 19.909462110687855, 44.120252996978195 ], [ 19.910392286674664, 44.118702704266354 ], [ 19.91054731630561, 44.11691986845716 ], [ 19.910030552368084, 44.115137030849269 ], [ 19.908686965231254, 44.113380032562418 ], [ 19.906103142845723, 44.111416326901917 ], [ 19.904501174189818, 44.109866035089397 ], [ 19.903984409352972, 44.108625799840752 ], [ 19.903932733408908, 44.107282212703922 ], [ 19.904966261283903, 44.104750068061151 ], [ 19.906103142845723, 44.102915554509195 ], [ 19.907808465188509, 44.100977688169735 ], [ 19.91168419786743, 44.097412013853329 ], [ 19.916386752846336, 44.093975532544789 ], [ 19.918092075189122, 44.092916165348754 ], [ 19.920055779950246, 44.092089342149393 ], [ 19.927910597196274, 44.090073961444148 ], [ 19.934525180992296, 44.087025051065211 ], [ 19.941863234300797, 44.084389552735672 ], [ 19.944343702999504, 44.083200995229731 ], [ 19.948994582034345, 44.080152085750115 ], [ 19.95080325716458, 44.07932526345013 ], [ 19.953955519431645, 44.078395087463264 ], [ 19.966616245343459, 44.077309881845565 ], [ 19.973799269021015, 44.076379705858699 ], [ 19.977778355386761, 44.075604560402098 ], [ 19.980310500029532, 44.083898627219867 ], [ 19.981137323228893, 44.085939846346832 ], [ 19.981860792741372, 44.087180080696157 ], [ 19.983049351146633, 44.088988755826392 ], [ 19.983927850290058, 44.090177314231653 ], [ 19.984444614227527, 44.090719915691523 ], [ 19.985013055008437, 44.091210842106648 ], [ 19.985736525420293, 44.091624254155988 ], [ 19.987338494975575, 44.092270209302683 ], [ 19.989818962774905, 44.093174546867829 ], [ 19.991420933229449, 44.093846341335563 ], [ 19.99219607868605, 44.094259752485584 ], [ 19.995038282590656, 44.096120104459203 ], [ 19.996536900257752, 44.096998602703309 ], [ 20.009507683632705, 44.104181627280241 ], [ 20.012349888436574, 44.101055203434839 ], [ 20.013900181148415, 44.09973745382041 ], [ 20.016794060997086, 44.098187161108569 ], [ 20.018964471333277, 44.097670396271724 ], [ 20.021186557613532, 44.097412013853329 ], [ 20.032555373231901, 44.09707611796847 ], [ 20.03674116427328, 44.096456000344119 ], [ 20.038704868135142, 44.095706692409919 ], [ 20.044389275944297, 44.092864488505313 ], [ 20.047283155792968, 44.091779282887558 ], [ 20.062010939253412, 44.085319728722482 ], [ 20.063716260696879, 44.0818315705705 ], [ 20.070124138917834, 44.071082872576483 ], [ 20.0710543149047, 44.067388007050852 ], [ 20.0706925796988, 44.065320950401542 ], [ 20.06914228698696, 44.062943834490341 ], [ 20.062372673560048, 44.056122545119365 ], [ 20.059478793711321, 44.051264960509513 ], [ 20.059013705717916, 44.049172065438427 ], [ 20.059065382561357, 44.047027493523956 ], [ 20.059633823342267, 44.044934597553606 ], [ 20.062424351302752, 44.039896144891145 ], [ 20.063044468027783, 44.037364000248374 ], [ 20.062527704090257, 44.035813707536533 ], [ 20.061390821629118, 44.034366766712878 ], [ 20.057308384274506, 44.030878608560897 ], [ 20.056274854600815, 44.029664211733973 ], [ 20.055344678614006, 44.027648831028728 ], [ 20.055293002669941, 44.026718655041861 ], [ 20.055551385088336, 44.025375067905031 ], [ 20.056481561075145, 44.023514715931356 ], [ 20.058238560261316, 44.02168020327872 ], [ 20.060615676172517, 44.020000719357711 ], [ 20.069245639774465, 44.015194810691924 ], [ 20.07162275568561, 44.013360297139968 ], [ 20.073431430815845, 44.011525784487333 ], [ 20.074568312377721, 44.009613756569593 ], [ 20.07472334200861, 44.007701727752533 ], [ 20.073896518809306, 44.005738022991352 ], [ 20.071002638061259, 44.001913967155815 ], [ 20.068935581411949, 44.00010529202558 ], [ 20.061700880890896, 43.99473094347826 ], [ 20.060408969698187, 43.993284003553924 ], [ 20.059375440923816, 43.991682033998643 ], [ 20.055964797137676, 43.983568834334221 ], [ 20.055654737875841, 43.982380275928961 ], [ 20.055758090663346, 43.98119171842302 ], [ 20.056429885131081, 43.980106512805321 ], [ 20.058341913048821, 43.978866279355259 ], [ 20.066403435869859, 43.976850897750694 ], [ 20.067850375794194, 43.976179104182279 ], [ 20.068987258255333, 43.974758001780344 ], [ 20.068987258255333, 43.973543605852683 ], [ 20.068470493418545, 43.972303372402678 ], [ 20.065421583938928, 43.968737698086272 ], [ 20.064646436683688, 43.967290758161937 ], [ 20.064284702377108, 43.965792141394161 ], [ 20.064543083896183, 43.963905951898141 ], [ 20.065886671932333, 43.962019762402065 ], [ 20.068005405425083, 43.960288600738295 ], [ 20.070847609329689, 43.958660794559989 ], [ 20.087229038289479, 43.951064357933774 ], [ 20.09167321084999, 43.950082506002843 ], [ 20.096220737097326, 43.949875800427833 ], [ 20.099476353051216, 43.943157863844306 ], [ 20.103042025568982, 43.937525132878534 ], [ 20.104178908030178, 43.934889635448314 ], [ 20.104075555242673, 43.932822577000309 ], [ 20.103145379255807, 43.931013901870074 ], [ 20.101646763387407, 43.929282742004943 ], [ 20.098391148332837, 43.926285509368711 ], [ 20.096685825090731, 43.925071113441106 ], [ 20.09032962371316, 43.92202220306217 ], [ 20.088262567063794, 43.92052358719377 ], [ 20.087435743864489, 43.919231676001004 ], [ 20.087074008658533, 43.91783641202079 ], [ 20.087074008658533, 43.915821031315545 ], [ 20.087745802226948, 43.913805649710923 ], [ 20.089141066207219, 43.911738593061614 ], [ 20.099476353051216, 43.90104157191098 ], [ 20.101233351338067, 43.899853014405039 ], [ 20.110535109407749, 43.894530340902463 ], [ 20.11632287000441, 43.890499579491973 ], [ 20.128260124605049, 43.885486966150552 ], [ 20.139318881860902, 43.882489731715737 ], [ 20.155596958033186, 43.877037868802574 ], [ 20.143711379376668, 43.874531562581524 ], [ 20.135959914018827, 43.873446356963768 ], [ 20.128208448660985, 43.873213812967094 ], [ 20.116787957098552, 43.873911444957173 ], [ 20.114514193974856, 43.873704739382219 ], [ 20.112343783638664, 43.873239651388758 ], [ 20.109553256577499, 43.872051092983554 ], [ 20.105935907216349, 43.869157213134827 ], [ 20.104799024755152, 43.867865301942118 ], [ 20.102215204168317, 43.863937893319076 ], [ 20.100406528138762, 43.86189667419211 ], [ 20.093171827617709, 43.856651515954695 ], [ 20.091931594167704, 43.85520457603036 ], [ 20.089916212563139, 43.851535548926392 ], [ 20.087900831857894, 43.846419582797466 ], [ 20.087590772596059, 43.844249173360652 ], [ 20.087694126282884, 43.842078762125141 ], [ 20.08841759579542, 43.840011705475831 ], [ 20.090381300556544, 43.837324531202114 ], [ 20.093481885980225, 43.834792384760703 ], [ 20.095393913897965, 43.833836371251493 ], [ 20.102163527324933, 43.831614284971238 ], [ 20.103765496880158, 43.830813300193597 ], [ 20.105367466435439, 43.829237169060093 ], [ 20.106349318366313, 43.827299302720633 ], [ 20.106762730415653, 43.825232245171946 ], [ 20.106711052672949, 43.823061834835812 ], [ 20.106297642422248, 43.820943102242325 ], [ 20.105264112748614, 43.818100898337775 ], [ 20.104850701598593, 43.814871120805549 ], [ 20.105160759961109, 43.813992620762804 ], [ 20.106452671153818, 43.812158108110168 ], [ 20.11342898925642, 43.804923408488492 ], [ 20.115392694017601, 43.803528144508221 ], [ 20.122007276914303, 43.800324205397715 ], [ 20.125934686436608, 43.797482001493165 ], [ 20.128621859810949, 43.794329739226043 ], [ 20.130120476578725, 43.791565049687279 ], [ 20.130482211784624, 43.789523831459633 ], [ 20.13022383026555, 43.788076891535297 ], [ 20.129552035797815, 43.786681627555026 ], [ 20.127588331935954, 43.784924628368856 ], [ 20.124229364093878, 43.782754218032721 ], [ 20.122007276914303, 43.780738837327476 ], [ 20.120767042564921, 43.779162706193915 ], [ 20.119630161003101, 43.776811427805114 ], [ 20.119113397065632, 43.774692695211684 ], [ 20.119165073009697, 43.773659166437369 ], [ 20.121903924126798, 43.766941229853842 ], [ 20.122627393639277, 43.764460761155192 ], [ 20.122730747326102, 43.762135322087431 ], [ 20.121748895395172, 43.756657619853229 ], [ 20.121438836133336, 43.752988592749318 ], [ 20.121800571339293, 43.750999050465794 ], [ 20.123815952044538, 43.746477363539498 ], [ 20.123609247368847, 43.741826484504656 ], [ 20.124074333563613, 43.740017809374365 ], [ 20.125262891968873, 43.738467515763205 ], [ 20.126968215210923, 43.73704641426059 ], [ 20.129138624647794, 43.735806179011945 ], [ 20.135856561231321, 43.732808946375769 ], [ 20.143349644170712, 43.728623155334333 ], [ 20.149395786286505, 43.726091009792242 ], [ 20.162779981710798, 43.721931057172526 ], [ 20.164692009628538, 43.720561632513295 ], [ 20.165415480040338, 43.71929555884293 ], [ 20.165725539302173, 43.717874457340315 ], [ 20.166242303239699, 43.710975654502818 ], [ 20.166707391233103, 43.709554552100883 ], [ 20.1689811543568, 43.705652981000242 ], [ 20.16934288866338, 43.704257717020027 ], [ 20.168929478412679, 43.701467189958805 ], [ 20.168102655213374, 43.699503486097001 ], [ 20.164330275321959, 43.693999946340455 ], [ 20.161488071417352, 43.687721259328612 ], [ 20.160454542643038, 43.686170965717452 ], [ 20.159265985137097, 43.684698188270772 ], [ 20.155183546883165, 43.681003322745141 ], [ 20.154201694052915, 43.6798147652392 ], [ 20.153478223641116, 43.677799384533955 ], [ 20.153581577327941, 43.676895046968809 ], [ 20.154563429258815, 43.675034694995134 ], [ 20.156372105288426, 43.673251858286619 ], [ 20.158697544356187, 43.671520698421489 ], [ 20.169394566406083, 43.665603745716282 ], [ 20.172960238923849, 43.662968248286006 ], [ 20.174097121385046, 43.661366278730782 ], [ 20.174820590897525, 43.659609280443931 ], [ 20.175027297371855, 43.65785228125776 ], [ 20.174872266841646, 43.656095282970909 ], [ 20.173838738966595, 43.653511461484754 ], [ 20.172960238923849, 43.652271227135373 ], [ 20.171048211006109, 43.649997464011733 ], [ 20.169704623869279, 43.647982083306488 ], [ 20.168516066363338, 43.645785834548576 ], [ 20.166655715289039, 43.64028229389271 ], [ 20.165570509671284, 43.63798269324667 ], [ 20.164433628109407, 43.636561590844735 ], [ 20.163038364129193, 43.635243842129569 ], [ 20.160661248217991, 43.633590195730903 ], [ 20.157974073944331, 43.632375799803299 ], [ 20.155855339552261, 43.631910711809894 ], [ 20.153684930115389, 43.631859035865773 ], [ 20.150791050266719, 43.632479153490124 ], [ 20.145158319301004, 43.63454621013949 ], [ 20.135339797293796, 43.639222926696675 ], [ 20.1323425637583, 43.640385647579535 ], [ 20.129397007066189, 43.641134955513735 ], [ 20.124126011306373, 43.642116808343985 ], [ 20.11038007977686, 43.643796292265051 ], [ 20.107486199928189, 43.643692939477546 ], [ 20.100458204982147, 43.64183258750387 ], [ 20.097512648290092, 43.641729233817045 ], [ 20.09244835810523, 43.642607733859791 ], [ 20.089244418994724, 43.644829820140046 ], [ 20.089037713419714, 43.644933172927551 ], [ 20.088520948582868, 43.644984849770992 ], [ 20.087384067021048, 43.644984849770992 ], [ 20.084335158440808, 43.645062364136777 ], [ 20.083094924091483, 43.644984849770992 ], [ 20.082681512042143, 43.644803981718383 ], [ 20.082423129623692, 43.644519761777588 ], [ 20.082319776836243, 43.644132188149968 ], [ 20.082319776836243, 43.643279527428206 ], [ 20.082319776836243, 43.642349352340716 ], [ 20.082526483310517, 43.641496689820372 ], [ 20.082784864829648, 43.641109117092071 ], [ 20.083404981554622, 43.640333970736151 ], [ 20.085782098365144, 43.637905177981565 ], [ 20.085678744678319, 43.625037747394117 ], [ 20.084800246434213, 43.619017441901406 ], [ 20.084903599221718, 43.616924546830376 ], [ 20.085988803940154, 43.612687078945498 ], [ 20.085678744678319, 43.610775051027758 ], [ 20.084386834384873, 43.608863023110018 ], [ 20.082474805567813, 43.607054347979727 ], [ 20.080097690555931, 43.605452379323822 ], [ 20.077410516282271, 43.604057115343551 ], [ 20.075188429102695, 43.603230292144247 ], [ 20.069969110186264, 43.6019383818508 ], [ 20.065938347876454, 43.601318264226506 ], [ 20.063044468027783, 43.601421617014012 ], [ 20.061029087322481, 43.601809189742312 ], [ 20.056274854600815, 43.603230292144247 ], [ 20.051107211628505, 43.605142320061987 ], [ 20.04852339014235, 43.605814114529721 ], [ 20.045681187137063, 43.606020820104732 ], [ 20.043407424013367, 43.605814114529721 ], [ 20.041185336833792, 43.605245672849492 ], [ 20.038394809772626, 43.604082952865951 ], [ 20.032813754750975, 43.600698147501475 ], [ 20.018396029653047, 43.590517890288368 ], [ 20.012763298687275, 43.587055568759467 ], [ 20.007699009401733, 43.584833482479212 ], [ 20.000360955193912, 43.582456367467387 ], [ 19.998397251332051, 43.5815003530588 ], [ 19.99664025214588, 43.58033763307526 ], [ 19.980878940810442, 43.567418524745108 ], [ 19.977003208131521, 43.560778103426685 ], [ 19.975297885788791, 43.559253648237245 ], [ 19.973644240289445, 43.558478501881325 ], [ 19.966099481405934, 43.556618149907649 ], [ 19.95674604739213, 43.553775946902419 ], [ 19.953645461069129, 43.553414211696463 ], [ 19.949614698759319, 43.554189358052383 ], [ 19.945790642923839, 43.555843004451049 ], [ 19.939072707239632, 43.56049388348589 ], [ 19.925171746978549, 43.568503730362863 ], [ 19.908841993962824, 43.575841782772045 ], [ 19.906981641989148, 43.569692287868747 ], [ 19.906464878051679, 43.566824246441797 ], [ 19.906309849320053, 43.563749498540517 ], [ 19.906826613257579, 43.561372381729996 ], [ 19.90744672998261, 43.559822089018155 ], [ 19.910650669093116, 43.554137682108319 ], [ 19.911322462661531, 43.552199814869539 ], [ 19.911322462661531, 43.549900214223499 ], [ 19.910754021880564, 43.548659979874174 ], [ 19.90977216994969, 43.547316392737287 ], [ 19.908428581913483, 43.546127835231403 ], [ 19.906619906783249, 43.545094306457031 ], [ 19.899075147899737, 43.541916204868926 ], [ 19.896698031988592, 43.540340073735365 ], [ 19.894734328126731, 43.538583076347891 ], [ 19.893649123408295, 43.53661937068739 ], [ 19.893700799352416, 43.534759020512354 ], [ 19.894630975339226, 43.532795314851853 ], [ 19.899695264624768, 43.526594143105171 ], [ 19.903209262997052, 43.520548000989436 ], [ 19.904966261283903, 43.518532620284191 ], [ 19.909513788430559, 43.514811917236159 ], [ 19.914784784190431, 43.511556301282269 ], [ 19.917678664039101, 43.510264390988823 ], [ 19.922484571805512, 43.508998318217778 ], [ 19.926515334115379, 43.508507391802652 ], [ 19.934680209723865, 43.507887275077678 ], [ 19.938555942402786, 43.507318834296768 ], [ 19.942018263032423, 43.506388658309902 ], [ 19.950958285896149, 43.502822983993497 ], [ 19.95250857860799, 43.501944484850071 ], [ 19.95405887221915, 43.500290839350725 ], [ 19.95519575378097, 43.498352973011265 ], [ 19.956849400179635, 43.494296373179054 ], [ 19.958037956786256, 43.492436021205378 ], [ 19.959743280028306, 43.490937405336979 ], [ 19.961448602371092, 43.490213934925123 ], [ 19.963463983076338, 43.489774685353439 ], [ 19.966926303705918, 43.489387111725819 ], [ 19.978450148055856, 43.489051214941583 ], [ 19.986046583782809, 43.488431098216608 ], [ 19.99529666500905, 43.486286526302138 ], [ 19.997208692926847, 43.485563055890282 ], [ 19.999534132893928, 43.484012763178441 ], [ 20.001807896017567, 43.481558132002192 ], [ 20.002893100736003, 43.478948472993636 ], [ 20.004650099022854, 43.470628566854828 ], [ 20.005631951853104, 43.468587347727919 ], [ 20.007027214933998, 43.466804511019348 ], [ 20.011057977243865, 43.463652248752283 ], [ 20.01209150601818, 43.462489528768742 ], [ 20.013125033893175, 43.460448310541096 ], [ 20.013176710736616, 43.4581745474174 ], [ 20.011006301299744, 43.450552273268784 ], [ 20.010799594825414, 43.447787583729962 ], [ 20.011057977243865, 43.444997057568116 ], [ 20.011833122700409, 43.442413235182642 ], [ 20.018344353708926, 43.432284653913598 ], [ 20.022116732701022, 43.427323717415618 ], [ 20.023925408730634, 43.425334174232717 ], [ 20.028214551660199, 43.421846015181416 ], [ 20.029299758177274, 43.420476590522185 ], [ 20.02904137485956, 43.419675604845281 ], [ 20.028266229402959, 43.419365546482766 ], [ 20.035655958655525, 43.410477200462424 ], [ 20.043304071225862, 43.403500882359822 ], [ 20.048213331779834, 43.398333238488135 ], [ 20.049608594860729, 43.396421210570395 ], [ 20.052037387615314, 43.389961656405319 ], [ 20.053070916389686, 43.387868761334232 ], [ 20.054931268363305, 43.385620835732936 ], [ 20.057308384274506, 43.383502102240186 ], [ 20.065111524677093, 43.377352607336945 ], [ 20.075033400371126, 43.367714952483027 ], [ 20.076325310664515, 43.365777086143567 ], [ 20.076842074602041, 43.363865058225826 ], [ 20.076997105132307, 43.361177883052846 ], [ 20.077462192226392, 43.35929169445609 ], [ 20.078702426575717, 43.35735382721731 ], [ 20.083456659297383, 43.351540229098248 ], [ 20.085730422421022, 43.346295070860833 ], [ 20.087332391076984, 43.344383042943036 ], [ 20.095755650003241, 43.336838284059525 ], [ 20.097202589927576, 43.334822903354279 ], [ 20.097822706652551, 43.332859199492418 ], [ 20.097719353865045, 43.330843817887853 ], [ 20.096995884352566, 43.328905952447712 ], [ 20.0957039731598, 43.327226466728007 ], [ 20.092965122042756, 43.325262762866203 ], [ 20.091208122856585, 43.323660794210241 ], [ 20.090484653344049, 43.322368883017532 ], [ 20.090277947769039, 43.320973619037261 ], [ 20.090484653344049, 43.319061591119521 ], [ 20.091931594167704, 43.31632274000242 ], [ 20.093326857248655, 43.3144365505064 ], [ 20.096014032421635, 43.311930243385973 ], [ 20.100406528138762, 43.309010525115639 ], [ 20.106866082303839, 43.306090806845248 ], [ 20.10960493342094, 43.304643866920912 ], [ 20.117304721935341, 43.298442695174231 ], [ 20.118958368334006, 43.297409166399859 ], [ 20.121645541708347, 43.296530667256491 ], [ 20.123609247368847, 43.296349799203824 ], [ 20.125624627174773, 43.296530667256491 ], [ 20.128001743085974, 43.29725413676897 ], [ 20.135546501969486, 43.300638943032766 ], [ 20.137665236361556, 43.301207383813676 ], [ 20.143711379376668, 43.301905015803811 ], [ 20.155390251558856, 43.302576809372226 ], [ 20.159110954606831, 43.303145250153136 ], [ 20.165983920821247, 43.305160630858381 ], [ 20.17378706212321, 43.308002834762988 ], [ 20.177559442014626, 43.308674628331403 ], [ 20.181590204324436, 43.308984686693918 ], [ 20.198178337959916, 43.309243069112313 ], [ 20.202260776213848, 43.309449774687323 ], [ 20.206136508892769, 43.309966539524169 ], [ 20.21729861803675, 43.312782905007055 ], [ 20.228925816073513, 43.314307359297175 ], [ 20.232491488591336, 43.315108344074815 ], [ 20.237969190825481, 43.317201240045165 ], [ 20.240656365998461, 43.317821356770196 ], [ 20.241896600347786, 43.31787303271426 ], [ 20.244687127409009, 43.31751129840768 ], [ 20.25223188629252, 43.315547594545819 ], [ 20.254092238266139, 43.314772447290579 ], [ 20.256366001389836, 43.313222154578739 ], [ 20.259053175663496, 43.310741685880089 ], [ 20.264427525110193, 43.306659246726838 ], [ 20.265977816922714, 43.304592190077472 ], [ 20.266907992909523, 43.302292589431431 ], [ 20.267424757746369, 43.298546047961736 ], [ 20.260086704437867, 43.291518053015693 ], [ 20.248976271237893, 43.280200914240766 ], [ 20.245875684914893, 43.274258124013215 ], [ 20.241896600347786, 43.268315335584248 ], [ 20.239416130749817, 43.262165838882311 ], [ 20.235385370238646, 43.254362698479724 ], [ 20.234765251714975, 43.251649684885024 ], [ 20.234145134989944, 43.241908678142977 ], [ 20.232853223797235, 43.239273179813381 ], [ 20.231354607928779, 43.237826239889046 ], [ 20.227737257668309, 43.23560415270947 ], [ 20.218435499598627, 43.230617376890393 ], [ 20.211717563914419, 43.227284247470038 ], [ 20.205102980118397, 43.223563544422007 ], [ 20.203449333719732, 43.222426662860187 ], [ 20.202054070638837, 43.220979722935851 ], [ 20.201278924282917, 43.219403590902971 ], [ 20.201175570596092, 43.218499254237145 ], [ 20.201640658589497, 43.216483873531899 ], [ 20.204689568968433, 43.208163967393148 ], [ 20.205878127373637, 43.206251939475408 ], [ 20.207635124761168, 43.204701645864247 ], [ 20.209340448003275, 43.203926500407647 ], [ 20.216368442049941, 43.201859442858961 ], [ 20.218538853285452, 43.201006782137256 ], [ 20.221226026659792, 43.199611518157042 ], [ 20.223603142570937, 43.197957871758376 ], [ 20.226083612168964, 43.195451565537269 ], [ 20.229339227223534, 43.189457099365598 ], [ 20.231199579197209, 43.187545071447857 ], [ 20.233783399784045, 43.186098131523522 ], [ 20.238175897299811, 43.184702867543251 ], [ 20.244170362572163, 43.183385117928822 ], [ 20.246444125695803, 43.182713325259726 ], [ 20.248511183244489, 43.181860662739382 ], [ 20.256055942128, 43.176951402185466 ], [ 20.258949822875991, 43.175711167836084 ], [ 20.264582553841763, 43.174083359859139 ], [ 20.267166375327918, 43.173075670405865 ], [ 20.269543491239119, 43.171396186484799 ], [ 20.271403843212795, 43.169251614570328 ], [ 20.27398766379963, 43.165324205048023 ], [ 20.276209750979206, 43.162611192352642 ], [ 20.278638542834472, 43.160001533344087 ], [ 20.282100864363372, 43.156900947021086 ], [ 20.265306024253618, 43.154523831109884 ], [ 20.252076856661574, 43.153438626391448 ], [ 20.246340772908354, 43.152456773561255 ], [ 20.243963656997153, 43.151784979992783 ], [ 20.236108839751125, 43.148477688094829 ], [ 20.226393669632159, 43.145377101771828 ], [ 20.224326612982793, 43.144498603527722 ], [ 20.218952264435416, 43.141656398723796 ], [ 20.214508090975585, 43.140312812486286 ], [ 20.21078738792761, 43.139847724492881 ], [ 20.206859979304568, 43.139641018018551 ], [ 20.19476769417372, 43.139641018018551 ], [ 20.182727084986993, 43.139951077280386 ], [ 20.17130659432388, 43.140932929211317 ], [ 20.16934288866338, 43.140829576423812 ], [ 20.167637567219913, 43.140416165273791 ], [ 20.165622185615348, 43.139227606868531 ], [ 20.157870721156826, 43.131889553560029 ], [ 20.155958693239086, 43.129977524742969 ], [ 20.153013135647655, 43.126308499437698 ], [ 20.15125613826018, 43.124654853039033 ], [ 20.143608025689844, 43.120055649948256 ], [ 20.141695997772047, 43.118557034079856 ], [ 20.139938998585876, 43.116774197371285 ], [ 20.138905469811561, 43.114888006975946 ], [ 20.138853793867497, 43.11302765590159 ], [ 20.139990676328637, 43.110857245565398 ], [ 20.143246291383207, 43.106361396161503 ], [ 20.143969760895743, 43.104242661769376 ], [ 20.144176467370073, 43.102123928276626 ], [ 20.143814732164117, 43.1001085484707 ], [ 20.143039584908877, 43.098661606747726 ], [ 20.141902704246377, 43.09742137329772 ], [ 20.140300733791832, 43.096491197310911 ], [ 20.138440382717476, 43.095819403742439 ], [ 20.136580030743801, 43.095405991693156 ], [ 20.13389285736946, 43.095380154170755 ], [ 20.127950067141853, 43.096284491735901 ], [ 20.125004509550479, 43.096387844523406 ], [ 20.120301954571516, 43.095716050954991 ], [ 20.117149692304451, 43.09473419902406 ], [ 20.111051873345275, 43.092331243791818 ], [ 20.102628615318338, 43.089669907939879 ], [ 20.100509880926268, 43.088791408796453 ], [ 20.097926060339375, 43.087344468872118 ], [ 20.0957039731598, 43.085639146529388 ], [ 20.090484653344049, 43.080523180400405 ], [ 20.083973423234852, 43.073417670189315 ], [ 20.080149367399372, 43.068301703161069 ], [ 20.076376986608636, 43.061222032270962 ], [ 20.075240105946136, 43.059749253924906 ], [ 20.07126102137903, 43.05597687403349 ], [ 20.06914228698696, 43.052927965453193 ], [ 20.063096143971848, 43.041068224319076 ], [ 20.062372673560048, 43.038458564411201 ], [ 20.061184116054108, 43.030397039791524 ], [ 20.060150588179113, 43.027864895148753 ], [ 20.058393588992942, 43.025642808868497 ], [ 20.054388424000109, 43.022220673000064 ], [ 20.019893840000094, 43.04734771800004 ], [ 19.959742472000073, 43.078560282000112 ], [ 19.949820598000144, 43.085924174000112 ], [ 19.942275838000114, 43.095639343000059 ], [ 19.936591431000068, 43.105897116000037 ], [ 19.929150024000137, 43.113906963000019 ], [ 19.916644328000132, 43.117059225000062 ], [ 19.907135864000054, 43.113261007000048 ], [ 19.883778117000105, 43.095691020000075 ], [ 19.872202596000079, 43.090368348000126 ], [ 19.83830285600007, 43.088352967000063 ], [ 19.805126587000132, 43.089954936000098 ], [ 19.781768839000108, 43.09646616600007 ], [ 19.761201619000104, 43.108739319 ], [ 19.742804810000109, 43.126516012000039 ], [ 19.713555949000067, 43.165609233000069 ], [ 19.705494425000069, 43.166177673000035 ], [ 19.697329549000074, 43.16020904600002 ], [ 19.684617147000097, 43.156720887000048 ], [ 19.663016398000138, 43.158503723000038 ], [ 19.6186780190001, 43.168244731000087 ], [ 19.598110799000096, 43.176202902000043 ], [ 19.580850871000109, 43.187804261000096 ], [ 19.549948364000102, 43.217518209000062 ], [ 19.547844735745969, 43.218814865913316 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-07", "NAME_1": "Sremski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.201855916000028, 44.908371073000083 ], [ 19.196894979000092, 44.913176982 ], [ 19.193174276000065, 44.921548564000076 ], [ 19.186869751000074, 44.92754303 ], [ 19.174260701000037, 44.925424297000021 ], [ 19.084550415000052, 44.878967184000018 ], [ 19.068427368000073, 44.874833069000076 ], [ 19.047756795000055, 44.872714336000101 ], [ 19.015820760000082, 44.865634664000069 ], [ 18.994323364000138, 44.894831848000095 ], [ 18.991429484000065, 44.914933980000072 ], [ 19.018404582000102, 44.925682678 ], [ 19.031943807000061, 44.922633769000058 ], [ 19.052097615000037, 44.906975810000105 ], [ 19.066670369000093, 44.905683899000067 ], [ 19.078659302000062, 44.91085154200006 ], [ 19.087857707000069, 44.91932647700007 ], [ 19.103567342000133, 44.938240051000022 ], [ 19.113075806000012, 44.942425842000048 ], [ 19.124547973000119, 44.945939840000094 ], [ 19.131679321000064, 44.953174540000063 ], [ 19.127648560000068, 44.96841908800009 ], [ 19.118553507000087, 44.975550436000034 ], [ 19.098089640000126, 44.970021057000039 ], [ 19.087237589000097, 44.977100728000053 ], [ 19.085170533000024, 44.98728098600013 ], [ 19.088477824000023, 44.999476623000035 ], [ 19.093232055000016, 45.011517233000021 ], [ 19.09540246600011, 45.020922343000066 ], [ 19.094265584000112, 45.031412659000026 ], [ 19.085997355000046, 45.060919902000037 ], [ 19.082276652000132, 45.08494944300007 ], [ 19.079176066000088, 45.094612936 ], [ 19.071527954000118, 45.107066956000082 ], [ 19.064086548000091, 45.113578186000055 ], [ 19.054164673000116, 45.120606181000042 ], [ 19.046206502000132, 45.128357646000055 ], [ 19.044862915000067, 45.137245993000064 ], [ 19.060055786000106, 45.146857809 ], [ 19.116073039000128, 45.142878724000113 ], [ 19.137673787000097, 45.146030986000071 ], [ 19.141704549000082, 45.162154032000032 ], [ 19.128785441000076, 45.181067607000088 ], [ 19.121860799000103, 45.195795390000072 ], [ 19.143874959000073, 45.199516093000099 ], [ 19.155760539000113, 45.19496856700006 ], [ 19.174570760000108, 45.175796611000052 ], [ 19.185319458000038, 45.16804514600004 ], [ 19.204543091000062, 45.162877503000047 ], [ 19.225937133000087, 45.161947327000078 ], [ 19.267795044000138, 45.165823059000033 ], [ 19.272755981000103, 45.168355205000026 ], [ 19.275753215000123, 45.172851054000049 ], [ 19.279473918000122, 45.177243551000046 ], [ 19.286708618000091, 45.179517314000051 ], [ 19.291359497000144, 45.177708639000073 ], [ 19.29942102000004, 45.168975322000094 ], [ 19.304278605000064, 45.166546530000048 ], [ 19.39068160000005, 45.169337057000078 ], [ 19.393929399921831, 45.1716242397668 ], [ 19.400087518424243, 45.165563870376275 ], [ 19.407270542101799, 45.158535875430289 ], [ 19.408614129238686, 45.157450669812533 ], [ 19.411301304411666, 45.155797024313188 ], [ 19.412644890649176, 45.154815172382257 ], [ 19.413213332329406, 45.154246730702027 ], [ 19.4142468602044, 45.153109850039527 ], [ 19.416003859390571, 45.150681057284942 ], [ 19.416520623328097, 45.150138454925752 ], [ 19.417089064109007, 45.149647529409947 ], [ 19.417812533621486, 45.149208278938886 ], [ 19.418587680876783, 45.148846543732986 ], [ 19.423755323849093, 45.146934515815246 ], [ 19.42546064619188, 45.146366075034337 ], [ 19.426339146234568, 45.146159369459326 ], [ 19.427165969433929, 45.146081855093541 ], [ 19.428044467678035, 45.146133531037606 ], [ 19.428871290877339, 45.146340237511936 ], [ 19.4296981140767, 45.146650295874451 ], [ 19.43047326043262, 45.147012031080351 ], [ 19.431145054001036, 45.14737376628625 ], [ 19.432436965193745, 45.148226427007955 ], [ 19.434814080205626, 45.150060940559911 ], [ 19.436622756235181, 45.151792101324418 ], [ 19.448094923741735, 45.163600164715831 ], [ 19.447371454229199, 45.164375311971071 ], [ 19.446699659761464, 45.16664907509471 ], [ 19.447113070911485, 45.168406074280881 ], [ 19.448249953372624, 45.170008042936786 ], [ 19.45011030444698, 45.171196601342047 ], [ 19.452280714783171, 45.172075100485472 ], [ 19.457345004967976, 45.173573717253248 ], [ 19.460910679284382, 45.174142158034158 ], [ 19.462409295152838, 45.174090481190717 ], [ 19.464734735119919, 45.173651230719713 ], [ 19.466853468612669, 45.172798569998008 ], [ 19.472021111585036, 45.169362087790091 ], [ 19.474191521921171, 45.168457750224945 ], [ 19.476620313776436, 45.167837633499971 ], [ 19.481012811292203, 45.167295030241405 ], [ 19.504008823148638, 45.165718899107901 ], [ 19.504938999135504, 45.16530548795788 ], [ 19.509693230957851, 45.161326402491454 ], [ 19.5125354348624, 45.159569404204603 ], [ 19.514705845198591, 45.158794256949363 ], [ 19.517134637053857, 45.158225816168454 ], [ 19.523800896793944, 45.157243964237523 ], [ 19.527004835904449, 45.156623847512549 ], [ 19.529381951815594, 45.155900377100693 ], [ 19.531552362151785, 45.154970201113883 ], [ 19.538632033041893, 45.150500190131652 ], [ 19.542817824083272, 45.148769029367202 ], [ 19.545194939994474, 45.148200589485612 ], [ 19.549122348617459, 45.147683823749446 ], [ 19.561111280960858, 45.14696035423691 ], [ 19.564935336796339, 45.146443590299441 ], [ 19.575373976427841, 45.144169827175745 ], [ 19.58984337657057, 45.140474962549433 ], [ 19.600075310627062, 45.138382066579084 ], [ 19.603072544162558, 45.138175361004073 ], [ 19.606121453642174, 45.1383303897357 ], [ 19.620590854684167, 45.141275947327074 ], [ 19.624414911419024, 45.141741035320479 ], [ 19.62839399598613, 45.14199941683961 ], [ 19.640692986691988, 45.142076931205395 ], [ 19.698777297334402, 45.141715195999495 ], [ 19.718104282086927, 45.14696035423691 ], [ 19.725235629820418, 45.149440822935617 ], [ 19.730454949636226, 45.151714586059256 ], [ 19.733142123909886, 45.152644762046123 ], [ 19.736242710232887, 45.153213201927713 ], [ 19.749523552869675, 45.153936673238832 ], [ 19.75267581603606, 45.154530952441462 ], [ 19.755414666253841, 45.155538641894793 ], [ 19.757998487739997, 45.156933905875007 ], [ 19.763269484399189, 45.16029287371714 ], [ 19.77308800640634, 45.167114163088115 ], [ 19.783836704400358, 45.157037257763193 ], [ 19.7920015800089, 45.147115382968536 ], [ 19.793551872720741, 45.146030178250101 ], [ 19.795308871906911, 45.145358385581005 ], [ 19.797324252612157, 45.145100003162611 ], [ 19.799132927742392, 45.14525503189418 ], [ 19.808072950606174, 45.147218735756041 ], [ 19.811793653654149, 45.147787177436271 ], [ 19.819700147743617, 45.148148911742851 ], [ 19.836081576703407, 45.148148911742851 ], [ 19.853341505705885, 45.147890530223776 ], [ 19.862281527670348, 45.147451279752715 ], [ 19.866002231617699, 45.147012031080351 ], [ 19.868069289166328, 45.146443590299441 ], [ 19.883778923658383, 45.14561676710008 ], [ 19.898041620024742, 45.145151679106675 ], [ 19.899695264624768, 45.14484161984484 ], [ 19.903984409352972, 45.143368842398161 ], [ 19.905741407639823, 45.143032944714605 ], [ 19.91261437295492, 45.1425678567212 ], [ 19.929719273225885, 45.144583238325765 ], [ 19.936282179279146, 45.14561676710008 ], [ 19.940933058313988, 45.146521105564545 ], [ 19.954162225006655, 45.148045558955346 ], [ 19.957676221580357, 45.148924058998091 ], [ 19.961035191221072, 45.150009263716527 ], [ 19.964187452588874, 45.151352850853357 ], [ 19.973437533815115, 45.155771185891467 ], [ 19.978036736905892, 45.158225816168454 ], [ 19.980258823186148, 45.159750271357893 ], [ 19.981137323228893, 45.160809638553928 ], [ 19.981499058434792, 45.161894843272364 ], [ 19.980930616754563, 45.16339346004014 ], [ 19.979483676830228, 45.16489207590854 ], [ 19.975142857057165, 45.168096015019046 ], [ 19.973179152296041, 45.169801337361832 ], [ 19.97235232909668, 45.171144924498662 ], [ 19.972248976309174, 45.172488512534812 ], [ 19.97276574114602, 45.173651230719713 ], [ 19.973850945864456, 45.174710597915748 ], [ 19.985581495789404, 45.189774278160371 ], [ 20.042322219294988, 45.177759508294628 ], [ 20.064749790370513, 45.175485745170988 ], [ 20.185000848110633, 45.18496837039396 ], [ 20.222362909120932, 45.175485745170988 ], [ 20.256986118114867, 45.156727200300054 ], [ 20.27781171963511, 45.14101756400936 ], [ 20.289490593615994, 45.132232570776523 ], [ 20.338996615701262, 45.080349432780054 ], [ 20.34592303900007, 45.07308265100005 ], [ 20.356938028000059, 45.034497904000034 ], [ 20.333321898000065, 45.010520039000085 ], [ 20.304021361000082, 44.993931904000078 ], [ 20.298130247000074, 44.977498799000045 ], [ 20.290688841000076, 44.977498799000045 ], [ 20.303242456000078, 44.954664651000087 ], [ 20.31885249700008, 44.934400654000058 ], [ 20.324728624000045, 44.929168840000045 ], [ 20.280921996000075, 44.919311136000033 ], [ 20.258546100000046, 44.915487080000048 ], [ 20.246298786000068, 44.915332051000064 ], [ 20.243146524000053, 44.915073668000048 ], [ 20.238754027000084, 44.914195169000038 ], [ 20.235963499000036, 44.912903258000085 ], [ 20.22991735700009, 44.909492613000054 ], [ 20.223302774000047, 44.906288675000042 ], [ 20.215602985000089, 44.901069355000061 ], [ 20.202735554000071, 44.893808816000046 ], [ 20.200823526000079, 44.892904479000038 ], [ 20.198084674000086, 44.892181009000069 ], [ 20.195035765000057, 44.891767597000069 ], [ 20.187180948000048, 44.891612569000074 ], [ 20.179171101000065, 44.892025980000085 ], [ 20.171006224000052, 44.893033670000079 ], [ 20.168008991000079, 44.893033670000079 ], [ 20.165735229000063, 44.892697773000066 ], [ 20.163564818000054, 44.892077657000073 ], [ 20.161291055000049, 44.891044128000033 ], [ 20.156846882000082, 44.888201924000043 ], [ 20.155038207000075, 44.886367410000048 ], [ 20.154366413000048, 44.884946309000043 ], [ 20.15405635500008, 44.883447692000061 ], [ 20.153746296000065, 44.877504902000055 ], [ 20.153332884000065, 44.875282816000038 ], [ 20.150128946000052, 44.865412617000061 ], [ 20.147028360000036, 44.860141621000082 ], [ 20.135969603000092, 44.844173603000058 ], [ 20.134574339000039, 44.837197285000059 ], [ 20.13385087000006, 44.829859232000047 ], [ 20.133024047000049, 44.827585469000041 ], [ 20.131525430000067, 44.825363382000035 ], [ 20.127908080000054, 44.821177591000037 ], [ 20.12646114000006, 44.819007181000075 ], [ 20.125530964000063, 44.816475035000053 ], [ 20.125117553000052, 44.813787861000037 ], [ 20.12449743500008, 44.802884134000067 ], [ 20.123773965000055, 44.800377827000034 ], [ 20.122947142000044, 44.798775858000056 ], [ 20.121706908000078, 44.797354755000072 ], [ 20.118192910000062, 44.795080993000056 ], [ 20.11452388400005, 44.793375671000035 ], [ 20.10775427100009, 44.791076069000042 ], [ 20.10077795300009, 44.789603291000049 ], [ 20.097832396000058, 44.789499938000063 ], [ 20.093801635000091, 44.789809996000088 ], [ 20.090959431000044, 44.789809996000088 ], [ 20.088944050000066, 44.789551614000061 ], [ 20.087187051000058, 44.788983174000066 ], [ 20.085171670000079, 44.787639586000068 ], [ 20.082587849000049, 44.784539001000041 ], [ 20.081761025000048, 44.783143737000046 ], [ 20.080934203000083, 44.780379048000043 ], [ 20.080675821000057, 44.777459329000067 ], [ 20.080934203000083, 44.774565449000079 ], [ 20.081761025000048, 44.771774922000077 ], [ 20.082684848000042, 44.77018389400007 ], [ 20.084034788000054, 44.768726012000059 ], [ 20.087703816000044, 44.766452249000054 ], [ 20.091527871000039, 44.764746927000033 ], [ 20.098607542000082, 44.762524841000072 ], [ 20.106514036000078, 44.760716166000066 ], [ 20.10816768300009, 44.759941018000063 ], [ 20.109711369000081, 44.758423061000087 ], [ 20.110441446000038, 44.756530375000068 ], [ 20.110441446000038, 44.754566670000088 ], [ 20.108632771000089, 44.749760761000061 ], [ 20.107650918000047, 44.747848733000069 ], [ 20.106203978000053, 44.74624676500008 ], [ 20.104705361000072, 44.745342427000082 ], [ 20.098762572000055, 44.742526061000035 ], [ 20.09752233800009, 44.741595886000084 ], [ 20.096902220000061, 44.740097269000046 ], [ 20.097260919000064, 44.739098034000051 ], [ 20.10263261700004, 44.734185513000057 ], [ 20.103413451000051, 44.732371642000032 ], [ 20.103516804000037, 44.730433775000051 ], [ 20.103103393000083, 44.729038512000045 ], [ 20.10077795300009, 44.723405781000054 ], [ 20.098194131000071, 44.719995137000069 ], [ 20.094111693000059, 44.708161233000055 ], [ 20.045484170000066, 44.690255350000086 ], [ 20.027190713000039, 44.67891237300006 ], [ 20.006623493000063, 44.661704121000071 ], [ 19.973382301000072, 44.64118479800004 ], [ 19.940425984000058, 44.631783467000048 ], [ 19.920737263000092, 44.647906514000056 ], [ 19.930814167000051, 44.659275329000081 ], [ 19.989621946000057, 44.678602314000045 ], [ 20.010111877000043, 44.688866658000052 ], [ 19.982645628000057, 44.695913919000077 ], [ 19.913967650000075, 44.695448831000078 ], [ 19.889679727000043, 44.706869323000035 ], [ 19.872781533000079, 44.719736754000053 ], [ 19.846271524000088, 44.73348268500007 ], [ 19.796610472000054, 44.751569436000068 ], [ 19.745295775000045, 44.752241231000085 ], [ 19.728966022000066, 44.757770609000033 ], [ 19.720326645000057, 44.764502864000065 ], [ 19.715426797000077, 44.77195578900006 ], [ 19.711336537000079, 44.780053986000041 ], [ 19.705039450000072, 44.788778112000045 ], [ 19.700647338000067, 44.807586689000061 ], [ 19.710000772000058, 44.830220967000059 ], [ 19.75325394500004, 44.892103494000082 ], [ 19.758679971000049, 44.904945088000034 ], [ 19.756863611000085, 44.915412503000084 ], [ 19.748964801000056, 44.918432636000034 ], [ 19.722093057000052, 44.921016459000043 ], [ 19.700233926000067, 44.929698099000063 ], [ 19.683077350000076, 44.931868509000083 ], [ 19.673465534000059, 44.934478168000055 ], [ 19.644681761000072, 44.912722391000045 ], [ 19.641374470000073, 44.913213317000043 ], [ 19.633364623000091, 44.913936787000068 ], [ 19.612383992000048, 44.914350198000079 ], [ 19.60427079100009, 44.914246845000037 ], [ 19.600343382000062, 44.913988464000056 ], [ 19.596571002000076, 44.91347169900007 ], [ 19.589543008000078, 44.911456318000035 ], [ 19.572076374000062, 44.905151794000062 ], [ 19.562361205000059, 44.90194785500006 ], [ 19.558278766000058, 44.900888488000078 ], [ 19.555229857000086, 44.900552591000064 ], [ 19.552077595000071, 44.900500915000066 ], [ 19.548977009000055, 44.900759297000036 ], [ 19.541432249000081, 44.901896179000062 ], [ 19.53166540400008, 44.902878030000068 ], [ 19.526497760000041, 44.903989074000037 ], [ 19.520348265000052, 44.906211160000055 ], [ 19.517609414000049, 44.90778729200008 ], [ 19.508411009000042, 44.913988464000056 ], [ 19.506033893000051, 44.915332051000064 ], [ 19.503553424000074, 44.916365580000047 ], [ 19.50055619200009, 44.916934020000042 ], [ 19.499160928000038, 44.916934020000042 ], [ 19.496318724000048, 44.916339741000058 ], [ 19.49342484400006, 44.915280374000076 ], [ 19.489187376000075, 44.913368346000084 ], [ 19.486551879000046, 44.91174053900005 ], [ 19.482572793000088, 44.908665791000033 ], [ 19.477921914000092, 44.904169942000067 ], [ 19.473942829000066, 44.901379414000075 ], [ 19.47125565500005, 44.900190856000052 ], [ 19.469085244000041, 44.899674091000065 ], [ 19.466914834000079, 44.899570739000069 ], [ 19.464951130000088, 44.899829121000039 ], [ 19.460868692000076, 44.901069355000061 ], [ 19.458801634000054, 44.90194785500006 ], [ 19.456269490000068, 44.903601501000082 ], [ 19.454405288000089, 44.905625088000079 ], [ 19.451463581000041, 44.911895568000034 ], [ 19.447484495000083, 44.918174255000054 ], [ 19.444428930000072, 44.924487042000067 ], [ 19.442936970000062, 44.926339130000088 ], [ 19.438957885000036, 44.929749775000062 ], [ 19.433583535000082, 44.93321209700008 ], [ 19.42211136800006, 44.93915488600004 ], [ 19.419320840000069, 44.940291767000076 ], [ 19.414463255000044, 44.941557840000087 ], [ 19.411259317000088, 44.941893737000044 ], [ 19.40821040700007, 44.941893737000044 ], [ 19.406091674000038, 44.941635355000074 ], [ 19.395653034000077, 44.931790994000039 ], [ 19.397513385000082, 44.923496927000087 ], [ 19.386351276000084, 44.915409565000061 ], [ 19.371571817000074, 44.913859272000082 ], [ 19.340565957000081, 44.92153322300004 ], [ 19.324856322000073, 44.922256693000065 ], [ 19.341237751000051, 44.909673481000084 ], [ 19.359001550000073, 44.901127235000047 ], [ 19.356982304000098, 44.895877196000086 ], [ 19.353164510000056, 44.899017639000036 ], [ 19.352957805000102, 44.898087463000095 ], [ 19.35027062900005, 44.897002259000018 ], [ 19.340142049000093, 44.896227112000091 ], [ 19.330220174000118, 44.898707581000068 ], [ 19.310169718000054, 44.91235015900007 ], [ 19.301281372000062, 44.91235015900007 ], [ 19.29301314300011, 44.909404602000066 ], [ 19.283814738000103, 44.908371073000083 ], [ 19.239476359000065, 44.915140687000033 ], [ 19.229554484000062, 44.913745423000037 ], [ 19.211881144000074, 44.908371073000083 ], [ 19.201855916000028, 44.908371073000083 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-08", "NAME_1": "Macvanski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.263660930000128, 44.270167135000079 ], [ 19.249501587000083, 44.270735576000035 ], [ 19.240716594000105, 44.272699280000083 ], [ 19.220046020000069, 44.280244039000124 ], [ 19.177154582000128, 44.286961976000057 ], [ 19.15700077300005, 44.293576559000044 ], [ 19.138914022000051, 44.309337871000125 ], [ 19.116693156000082, 44.343702698000058 ], [ 19.108941691000098, 44.363649801000079 ], [ 19.107184693000107, 44.382718404000073 ], [ 19.115762980000056, 44.403595683000034 ], [ 19.129612264000116, 44.416153056000056 ], [ 19.141394490000096, 44.430829163000041 ], [ 19.143358195000133, 44.458217672000089 ], [ 19.127338500000093, 44.502556051000042 ], [ 19.129922323000102, 44.518317363 ], [ 19.165269002000088, 44.526688945000089 ], [ 19.173123820000114, 44.531443177000071 ], [ 19.179635051000105, 44.53826446500004 ], [ 19.185319458000038, 44.546222636 ], [ 19.187283162000085, 44.553302307000095 ], [ 19.186249633000102, 44.569322002000078 ], [ 19.188316691000068, 44.57603993700009 ], [ 19.193277628000089, 44.580587464000033 ], [ 19.204129679000062, 44.585134990000071 ], [ 19.2086772050001, 44.588390605000043 ], [ 19.255702759000059, 44.645648092 ], [ 19.270068807000058, 44.675620422000051 ], [ 19.277613566000127, 44.684870504000074 ], [ 19.288258911000099, 44.693035380000069 ], [ 19.308412720000092, 44.705127665000063 ], [ 19.318024536000109, 44.715462952000067 ], [ 19.328359822000095, 44.733963115 ], [ 19.363706503000117, 44.854627584000085 ], [ 19.367840617000127, 44.859278463000052 ], [ 19.373111613000077, 44.860260315000019 ], [ 19.376625610000104, 44.862999166000051 ], [ 19.375695434000079, 44.873127747000112 ], [ 19.372801554000091, 44.88144765300008 ], [ 19.368667440000053, 44.887132060000013 ], [ 19.362776327000063, 44.891111145000096 ], [ 19.356982304000098, 44.895877196000086 ], [ 19.359001550000073, 44.901127235000047 ], [ 19.341237751000051, 44.909673481000084 ], [ 19.324856322000073, 44.922256693000065 ], [ 19.340565957000081, 44.92153322300004 ], [ 19.371571817000074, 44.913859272000082 ], [ 19.386351276000084, 44.915409565000061 ], [ 19.397513385000082, 44.923496927000087 ], [ 19.395653034000077, 44.931790994000039 ], [ 19.406091674000038, 44.941635355000074 ], [ 19.40821040700007, 44.941893737000044 ], [ 19.411259317000088, 44.941893737000044 ], [ 19.414463255000044, 44.941557840000087 ], [ 19.419320840000069, 44.940291767000076 ], [ 19.42211136800006, 44.93915488600004 ], [ 19.433583535000082, 44.93321209700008 ], [ 19.438957885000036, 44.929749775000062 ], [ 19.442936970000062, 44.926339130000088 ], [ 19.444428930000072, 44.924487042000067 ], [ 19.447484495000083, 44.918174255000054 ], [ 19.451463581000041, 44.911895568000034 ], [ 19.454405288000089, 44.905625088000079 ], [ 19.456269490000068, 44.903601501000082 ], [ 19.458801634000054, 44.90194785500006 ], [ 19.460868692000076, 44.901069355000061 ], [ 19.464951130000088, 44.899829121000039 ], [ 19.466914834000079, 44.899570739000069 ], [ 19.469085244000041, 44.899674091000065 ], [ 19.47125565500005, 44.900190856000052 ], [ 19.473942829000066, 44.901379414000075 ], [ 19.477921914000092, 44.904169942000067 ], [ 19.482572793000088, 44.908665791000033 ], [ 19.486551879000046, 44.91174053900005 ], [ 19.489187376000075, 44.913368346000084 ], [ 19.49342484400006, 44.915280374000076 ], [ 19.496318724000048, 44.916339741000058 ], [ 19.499160928000038, 44.916934020000042 ], [ 19.50055619200009, 44.916934020000042 ], [ 19.503553424000074, 44.916365580000047 ], [ 19.506033893000051, 44.915332051000064 ], [ 19.508411009000042, 44.913988464000056 ], [ 19.517609414000049, 44.90778729200008 ], [ 19.520348265000052, 44.906211160000055 ], [ 19.526497760000041, 44.903989074000037 ], [ 19.53166540400008, 44.902878030000068 ], [ 19.541432249000081, 44.901896179000062 ], [ 19.548977009000055, 44.900759297000036 ], [ 19.552077595000071, 44.900500915000066 ], [ 19.555229857000086, 44.900552591000064 ], [ 19.558278766000058, 44.900888488000078 ], [ 19.562361205000059, 44.90194785500006 ], [ 19.572076374000062, 44.905151794000062 ], [ 19.589543008000078, 44.911456318000035 ], [ 19.596571002000076, 44.91347169900007 ], [ 19.600343382000062, 44.913988464000056 ], [ 19.60427079100009, 44.914246845000037 ], [ 19.612383992000048, 44.914350198000079 ], [ 19.633364623000091, 44.913936787000068 ], [ 19.641374470000073, 44.913213317000043 ], [ 19.644681761000072, 44.912722391000045 ], [ 19.673465534000059, 44.934478168000055 ], [ 19.683077350000076, 44.931868509000083 ], [ 19.700233926000067, 44.929698099000063 ], [ 19.722093057000052, 44.921016459000043 ], [ 19.748964801000056, 44.918432636000034 ], [ 19.756863611000085, 44.915412503000084 ], [ 19.758679971000049, 44.904945088000034 ], [ 19.75325394500004, 44.892103494000082 ], [ 19.710000772000058, 44.830220967000059 ], [ 19.700647338000067, 44.807586689000061 ], [ 19.705039450000072, 44.788778112000045 ], [ 19.711336537000079, 44.780053986000041 ], [ 19.715426797000077, 44.77195578900006 ], [ 19.720326645000057, 44.764502864000065 ], [ 19.728966022000066, 44.757770609000033 ], [ 19.745295775000045, 44.752241231000085 ], [ 19.796610472000054, 44.751569436000068 ], [ 19.846271524000088, 44.73348268500007 ], [ 19.872781533000079, 44.719736754000053 ], [ 19.889679727000043, 44.706869323000035 ], [ 19.913967650000075, 44.695448831000078 ], [ 19.982645628000057, 44.695913919000077 ], [ 20.010111877000043, 44.688866658000052 ], [ 19.989621946000057, 44.678602314000045 ], [ 19.930814167000051, 44.659275329000081 ], [ 19.920737263000092, 44.647906514000056 ], [ 19.940425984000058, 44.631783467000048 ], [ 19.973382301000072, 44.64118479800004 ], [ 19.967288038911875, 44.609809678973477 ], [ 19.968579950104584, 44.605365506412966 ], [ 19.968579950104584, 44.603996079955095 ], [ 19.968114862111179, 44.602652492818265 ], [ 19.961965366308618, 44.595831204346553 ], [ 19.961190219952698, 44.593712469954482 ], [ 19.961241895896762, 44.592782293967673 ], [ 19.961758660733608, 44.591490382774907 ], [ 19.963360630288832, 44.589371650181477 ], [ 19.968321566786869, 44.58461741835913 ], [ 19.969251742773679, 44.583170478434795 ], [ 19.970181918760545, 44.580922552833499 ], [ 19.971008741959849, 44.575832424226974 ], [ 19.971060417903971, 44.56477366787044 ], [ 19.965996127719109, 44.564799506292161 ], [ 19.964859247056609, 44.564825343814562 ], [ 19.964342482219763, 44.56474783034804 ], [ 19.964135775745433, 44.564670315082935 ], [ 19.960931838433567, 44.562422390380959 ], [ 19.951113316426415, 44.558004055342849 ], [ 19.948064406047479, 44.556867173781029 ], [ 19.935455356979105, 44.553766588357348 ], [ 19.928530714820624, 44.550795193243573 ], [ 19.926877069321279, 44.550562649246842 ], [ 19.924293246935804, 44.550976061296183 ], [ 19.921709426348912, 44.552164618802067 ], [ 19.914681431402926, 44.556092027425109 ], [ 19.910237257943095, 44.557952379398785 ], [ 19.906154818789844, 44.55919261284879 ], [ 19.903105910209547, 44.559554348054689 ], [ 19.900056999830667, 44.559450995267184 ], [ 19.897731560762907, 44.559063422538884 ], [ 19.89545779763921, 44.558417467392189 ], [ 19.89256391779054, 44.557125556199423 ], [ 19.88987674261756, 44.555601101009984 ], [ 19.881246779015612, 44.549994208465932 ], [ 19.876750928712397, 44.547539578188946 ], [ 19.874735548906415, 44.546841946198811 ], [ 19.867655877117045, 44.545136623856081 ], [ 19.865743849199248, 44.544413154343601 ], [ 19.863521762918992, 44.54301789036333 ], [ 19.859025912615778, 44.539452216046925 ], [ 19.856803827234842, 44.53743683534168 ], [ 19.854891799317045, 44.535163072217983 ], [ 19.852566359349964, 44.530951442754883 ], [ 19.849930861020425, 44.524000963073945 ], [ 19.852979771399305, 44.521727199950305 ], [ 19.85499515120523, 44.51971181924506 ], [ 19.856597120760512, 44.517489732065485 ], [ 19.857320591172311, 44.515422675416119 ], [ 19.857527296747321, 44.513355617867433 ], [ 19.857320591172311, 44.507929592476671 ], [ 19.857889031953221, 44.505759182140537 ], [ 19.860886264589396, 44.500875759108965 ], [ 19.862901646194018, 44.498627835306308 ], [ 19.867965936378823, 44.493925279428083 ], [ 19.86889611236569, 44.492581692291253 ], [ 19.869722934665674, 44.490514634742567 ], [ 19.870188022659079, 44.488344225305752 ], [ 19.870188022659079, 44.484830226933411 ], [ 19.869929640240684, 44.483900050946545 ], [ 19.86889611236569, 44.482246406346576 ], [ 19.867294141911088, 44.4807477895788 ], [ 19.865537143624238, 44.47961090801698 ], [ 19.858560824622316, 44.475528468863729 ], [ 19.857165562440741, 44.474339911357788 ], [ 19.856287062397996, 44.473048001064399 ], [ 19.855977004035481, 44.471601061140063 ], [ 19.856648796704576, 44.468991401232131 ], [ 19.861558058157868, 44.460645657571035 ], [ 19.863211703657157, 44.456614895261168 ], [ 19.863728469393322, 44.453979396931572 ], [ 19.864141879644023, 44.448553372440188 ], [ 19.864090203699902, 44.44315318547109 ], [ 19.863780145337444, 44.440595201507335 ], [ 19.863056674925588, 44.438295599961918 ], [ 19.862178175782162, 44.436926174403425 ], [ 19.860937941432837, 44.435892646528373 ], [ 19.859335971877556, 44.435272528904079 ], [ 19.857475619903937, 44.435117499273133 ], [ 19.855098503992735, 44.435505072900753 ], [ 19.85003421380793, 44.43702952719093 ], [ 19.845021599567133, 44.437908027233618 ], [ 19.842024366930957, 44.437908027233618 ], [ 19.839905633438207, 44.43759796797184 ], [ 19.835409784034312, 44.43625438083501 ], [ 19.83261925607377, 44.434910793698123 ], [ 19.830242140162625, 44.433308824142898 ], [ 19.828381789088269, 44.431500149012663 ], [ 19.827244906627129, 44.429588121094866 ], [ 19.827193230683008, 44.427676093177126 ], [ 19.828640170607343, 44.425298977265982 ], [ 19.831068963361929, 44.42289602293306 ], [ 19.839905633438207, 44.415377102471268 ], [ 19.84982750823292, 44.405558580464117 ], [ 19.846416864446724, 44.402380479775275 ], [ 19.841559278937552, 44.39713532243718 ], [ 19.839957310281648, 44.394861559313483 ], [ 19.838096958307972, 44.391244208153637 ], [ 19.837115106377041, 44.389952297860248 ], [ 19.834789666409961, 44.388686225089202 ], [ 19.83282596164878, 44.388195299573397 ], [ 19.826934849163933, 44.387678534736551 ], [ 19.823059115585693, 44.387575181949046 ], [ 19.787402377817443, 44.387730211579992 ], [ 19.779960971721437, 44.388091945886572 ], [ 19.776033563098451, 44.388918769085876 ], [ 19.774121535180711, 44.390159003435258 ], [ 19.773604771243185, 44.391399237784583 ], [ 19.773501417556361, 44.392820340186518 ], [ 19.774224887968217, 44.397548732687824 ], [ 19.773966506449085, 44.399564114292389 ], [ 19.772777948043824, 44.401579494997691 ], [ 19.765439893836003, 44.409434313143038 ], [ 19.762597690830773, 44.411966457785752 ], [ 19.760065545288683, 44.413723456072603 ], [ 19.757068311753187, 44.415118720052874 ], [ 19.754742872685426, 44.415868027987074 ], [ 19.746112909083479, 44.417702542438349 ], [ 19.73376224063486, 44.420751451018646 ], [ 19.713091667846186, 44.427727770020567 ], [ 19.703066441163287, 44.430518297081733 ], [ 19.68735680487265, 44.435995999315878 ], [ 19.680277133982543, 44.438063055965245 ], [ 19.677176547659542, 44.438528143958649 ], [ 19.673972609448356, 44.43876068795538 ], [ 19.66751305528328, 44.43857981990277 ], [ 19.664412468960279, 44.438114731909309 ], [ 19.65304365424123, 44.435195014538294 ], [ 19.649891391974165, 44.434652411279728 ], [ 19.638005812418271, 44.433282985721178 ], [ 19.63221805182161, 44.431784368953458 ], [ 19.62875573119203, 44.430621649869238 ], [ 19.618265414717087, 44.426513373193586 ], [ 19.616250034011841, 44.424937242060025 ], [ 19.613924594944081, 44.423774522076485 ], [ 19.611082391039474, 44.423025214142285 ], [ 19.608033481559914, 44.422611802992265 ], [ 19.601832309813233, 44.422301743730486 ], [ 19.595786166798121, 44.422456773361375 ], [ 19.59289228694945, 44.422766831723891 ], [ 19.590360142306679, 44.423283596560736 ], [ 19.587983026395534, 44.424058742916657 ], [ 19.584313999291624, 44.426125800465286 ], [ 19.581316765756128, 44.428606269163993 ], [ 19.580179885093628, 44.430001533144207 ], [ 19.577234328401516, 44.436099352103383 ], [ 19.575890741264686, 44.437623806393503 ], [ 19.574030389291011, 44.43891571668695 ], [ 19.561007928173353, 44.445711168535581 ], [ 19.548708936568175, 44.444780992548715 ], [ 19.539458856241197, 44.443669949408616 ], [ 19.534446242000456, 44.442300522950745 ], [ 19.52798668783538, 44.43992340793892 ], [ 19.524679395937369, 44.439044907896175 ], [ 19.521320428095237, 44.43857981990277 ], [ 19.518323194559741, 44.438683172690219 ], [ 19.51212202281306, 44.439871731095479 ], [ 19.509021437389436, 44.440181790357315 ], [ 19.503647087942738, 44.440078437569809 ], [ 19.497290886565168, 44.439458319945459 ], [ 19.494241977984871, 44.438889879164549 ], [ 19.490314569361885, 44.437494615184335 ], [ 19.486645542257975, 44.435479234479089 ], [ 19.485250278277704, 44.434083971398138 ], [ 19.484526807865848, 44.432533677786978 ], [ 19.484526807865848, 44.431655177744233 ], [ 19.484940219915188, 44.430414944294228 ], [ 19.485922071846119, 44.429071357157397 ], [ 19.48731733582639, 44.427908637173857 ], [ 19.489177686900689, 44.426952622765327 ], [ 19.491296421292816, 44.426177477308727 ], [ 19.499306268169732, 44.424007066073216 ], [ 19.501166620143408, 44.42312856692979 ], [ 19.502716912855249, 44.421836655737025 ], [ 19.503492059211169, 44.420389715812689 ], [ 19.503543735155233, 44.419511217568584 ], [ 19.502820264743434, 44.417676703117309 ], [ 19.499926384894707, 44.413878485703549 ], [ 19.498789504232207, 44.411863104998247 ], [ 19.498272739395418, 44.409847724293002 ], [ 19.498376092182866, 44.402716376559511 ], [ 19.497342564307871, 44.399150702243105 ], [ 19.49382856593553, 44.389642239497732 ], [ 19.490986362030981, 44.384681301201056 ], [ 19.484216750402709, 44.375069484768858 ], [ 19.481787956748803, 44.372433987338638 ], [ 19.478687372224442, 44.369953517740612 ], [ 19.476775344306702, 44.369075019496506 ], [ 19.472744581996835, 44.367989813878808 ], [ 19.469850702148165, 44.367834785147181 ], [ 19.460859002440998, 44.368609931503102 ], [ 19.458636916160742, 44.368454901872212 ], [ 19.456518181768672, 44.367912299512966 ], [ 19.454037713069965, 44.366697902686042 ], [ 19.451970656420656, 44.36509593403008 ], [ 19.449696893296959, 44.361891994919631 ], [ 19.449025098829225, 44.36049673093936 ], [ 19.448715041366029, 44.35837799744661 ], [ 19.449076775672665, 44.356259263953859 ], [ 19.449748569241081, 44.354760647186083 ], [ 19.452074009208161, 44.351401679344008 ], [ 19.453314242658166, 44.350083929729522 ], [ 19.456311476193662, 44.347732652240097 ], [ 19.457913445748886, 44.346802477152551 ], [ 19.460652296865987, 44.345665594691411 ], [ 19.462616000727849, 44.345303860384831 ], [ 19.464683058276478, 44.345329697907232 ], [ 19.475121697908037, 44.347138373037467 ], [ 19.476982048982336, 44.347060859571002 ], [ 19.478584019436937, 44.346647447521661 ], [ 19.480341016824468, 44.345407213172336 ], [ 19.481632928017177, 44.343624376463765 ], [ 19.483906691140874, 44.339619452575675 ], [ 19.488350863701385, 44.333986720710584 ], [ 19.491399774080321, 44.328948268947443 ], [ 19.492071566749416, 44.326752021088851 ], [ 19.492226597279625, 44.324504096386931 ], [ 19.491968214861231, 44.322307848528339 ], [ 19.49114139166187, 44.320240790080391 ], [ 19.488815951694789, 44.317656969493498 ], [ 19.486490512627029, 44.316003323094833 ], [ 19.483699984666544, 44.314659735958003 ], [ 19.478945753743517, 44.313316147921853 ], [ 19.469282261367255, 44.312024238527783 ], [ 19.466853468612669, 44.311455796847497 ], [ 19.464631382332414, 44.310732327335018 ], [ 19.461892531215312, 44.309388740198187 ], [ 19.459773796823242, 44.307580064168576 ], [ 19.455794712256136, 44.302774156402165 ], [ 19.45181562678971, 44.298898423723244 ], [ 19.450730422071331, 44.297348131011404 ], [ 19.449283482146996, 44.293472398332483 ], [ 19.448353306160129, 44.288976548928588 ], [ 19.44762983574833, 44.286806139491716 ], [ 19.446751335705585, 44.285255845880556 ], [ 19.445511102255523, 44.283808905956221 ], [ 19.443909132700298, 44.28262034845028 ], [ 19.434400669055606, 44.277607734209539 ], [ 19.432902052287886, 44.276574205435224 ], [ 19.431093377157595, 44.274791367827333 ], [ 19.43042158358918, 44.273421943168103 ], [ 19.430214878014169, 44.271923326400383 ], [ 19.430783318795136, 44.265928860228712 ], [ 19.430318230801674, 44.262802436383311 ], [ 19.42928470202736, 44.260011909322145 ], [ 19.427837762103024, 44.257247218884004 ], [ 19.425719027710954, 44.254069119094538 ], [ 19.429543084445754, 44.251097723980763 ], [ 19.441738722364107, 44.244379788296555 ], [ 19.447009719023299, 44.242209377960421 ], [ 19.457448357755482, 44.23928965879071 ], [ 19.464166294339009, 44.236524970151208 ], [ 19.467421909393579, 44.236059882157804 ], [ 19.476465285044867, 44.235181383014378 ], [ 19.49015953883162, 44.232959295834803 ], [ 19.493208449210556, 44.232184150378203 ], [ 19.495998976271721, 44.231098944760447 ], [ 19.498582797757877, 44.229471136783502 ], [ 19.503543735155233, 44.225879624944696 ], [ 19.505507439916414, 44.224820257748661 ], [ 19.50948652538284, 44.22306325946181 ], [ 19.514292433149251, 44.221745509847381 ], [ 19.516307813854496, 44.221435452384185 ], [ 19.519201693703167, 44.22133209869736 ], [ 19.527883335047875, 44.221952216321711 ], [ 19.52989871575312, 44.221693833903316 ], [ 19.53181074367086, 44.221073717178285 ], [ 19.533567742857031, 44.220143541191476 ], [ 19.540957472109653, 44.215105089428334 ], [ 19.543954704745829, 44.213683987026343 ], [ 19.554031610070751, 44.210583400703342 ], [ 19.556253696351007, 44.209756578403358 ], [ 19.559147577098997, 44.208257962534901 ], [ 19.561421340222637, 44.206345933717841 ], [ 19.568862746318644, 44.198336086840925 ], [ 19.576717563564671, 44.189292711189637 ], [ 19.575839064421245, 44.188775947252168 ], [ 19.575012241221941, 44.187484036059402 ], [ 19.574857211591052, 44.186502184128472 ], [ 19.575063918065325, 44.185003567360695 ], [ 19.577906121969932, 44.177975572414709 ], [ 19.579818149887672, 44.171903590977934 ], [ 19.580644972187713, 44.170534166318703 ], [ 19.581471795387017, 44.169707343119342 ], [ 19.582505324161389, 44.169061387972647 ], [ 19.584365676135008, 44.168518784714138 ], [ 19.589326612633045, 44.167691962414096 ], [ 19.59154869981262, 44.167071844789803 ], [ 19.593564079618545, 44.166219184068041 ], [ 19.595321078804716, 44.1650564640845 ], [ 19.598938429065242, 44.162059231448325 ], [ 19.602659133012537, 44.158493557131919 ], [ 19.606431512004633, 44.153429266947114 ], [ 19.609377068696745, 44.148907579121442 ], [ 19.611444126245431, 44.146814684050412 ], [ 19.614338006094101, 44.145057684864241 ], [ 19.618162061929581, 44.14366242088397 ], [ 19.618782178654612, 44.1404068058294 ], [ 19.618575473978922, 44.137822984343245 ], [ 19.617593622047991, 44.13542003001038 ], [ 19.612684359695436, 44.129244696685362 ], [ 19.609325391853361, 44.123301907357131 ], [ 19.607413363935564, 44.121441555383456 ], [ 19.604984572080298, 44.119942939514999 ], [ 19.602917515430988, 44.119090277893974 ], [ 19.598731724389552, 44.118108425063724 ], [ 19.595837843641561, 44.118030910697939 ], [ 19.59077355255738, 44.1188318963749 ], [ 19.586639439258704, 44.119891261772295 ], [ 19.578629592381787, 44.121441555383456 ], [ 19.576614210777166, 44.12169993780185 ], [ 19.573823682816681, 44.121596585014345 ], [ 19.571239862229845, 44.120976467390051 ], [ 19.561317987435132, 44.11766917639136 ], [ 19.559250928987183, 44.11710073471113 ], [ 19.55015587739183, 44.115395413267663 ], [ 19.547985467055639, 44.114723618799928 ], [ 19.546021763193778, 44.113793442813119 ], [ 19.542921176870777, 44.111312975013789 ], [ 19.540544060959633, 44.108677477583512 ], [ 19.53217247887676, 44.097308661065824 ], [ 19.52953698144654, 44.094957384475663 ], [ 19.527056511848514, 44.093510444551328 ], [ 19.522922397650518, 44.092399400511908 ], [ 19.516189487000133, 44.091193506000067 ], [ 19.498168579000037, 44.110228577000029 ], [ 19.482665649000126, 44.120667217000076 ], [ 19.476361125000039, 44.127023417000075 ], [ 19.474190714000116, 44.144903463000063 ], [ 19.465715779000021, 44.152809957 ], [ 19.459721313000102, 44.152706604000073 ], [ 19.448455851000034, 44.144438375000036 ], [ 19.442564738000044, 44.14319814 ], [ 19.435536743000114, 44.146092021000058 ], [ 19.424891398000028, 44.153791810000072 ], [ 19.381173136000143, 44.17709788000009 ], [ 19.362362915000062, 44.191205547000024 ], [ 19.356058390000044, 44.204021301000111 ], [ 19.353991333000067, 44.224330140000021 ], [ 19.341588989000087, 44.24582753500006 ], [ 19.3243290610001, 44.263965963000018 ], [ 19.307379191000109, 44.274197896 ], [ 19.295907023000098, 44.275799866000014 ], [ 19.263660930000128, 44.270167135000079 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-06", "NAME_1": "Južno-Backi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.002282341656723, 45.443686428385945 ], [ 18.997144016269534, 45.455516941222648 ], [ 18.996390422000104, 45.473814596000025 ], [ 19.009619588000106, 45.49867095900008 ], [ 19.017926146674313, 45.497807280181803 ], [ 19.017836948316472, 45.496603095156672 ], [ 19.017578565898077, 45.494536038507363 ], [ 19.017836948316472, 45.492882392108697 ], [ 19.019180536352678, 45.490918688246836 ], [ 19.024916620105898, 45.487249661142926 ], [ 19.029722527872366, 45.483632310882399 ], [ 19.032202996571016, 45.482237046902185 ], [ 19.034115023589436, 45.481720282964659 ], [ 19.036130405194001, 45.481616930177154 ], [ 19.038869256311102, 45.48234039968969 ], [ 19.04615563277622, 45.487094632411356 ], [ 19.04827436716829, 45.487921453812021 ], [ 19.050496454347865, 45.48846405707053 ], [ 19.053493686984041, 45.488722439488981 ], [ 19.056542595564338, 45.488489895492251 ], [ 19.058816358687977, 45.487973131554782 ], [ 19.060935093080047, 45.48714630835542 ], [ 19.069720086312941, 45.481436062124544 ], [ 19.079176873114193, 45.476888535877208 ], [ 19.081864048287173, 45.476035875155503 ], [ 19.084809604979284, 45.475622464005482 ], [ 19.091837599025951, 45.475829169580493 ], [ 19.094576450143052, 45.475622464005482 ], [ 19.096591830848297, 45.475105699168637 ], [ 19.098297153191027, 45.474227200025211 ], [ 19.099640741227233, 45.472986966575206 ], [ 19.100622593158107, 45.471514187329831 ], [ 19.103051385013373, 45.46497711879897 ], [ 19.104033236944304, 45.463375149243745 ], [ 19.105325148137069, 45.461928209319353 ], [ 19.107030469580479, 45.460687974970028 ], [ 19.110854526315336, 45.458827622996353 ], [ 19.112869907020581, 45.458155829427938 ], [ 19.116332227650162, 45.457484035859522 ], [ 19.123825310589609, 45.457018947866118 ], [ 19.135349154939547, 45.457225654340448 ], [ 19.139018182043458, 45.457587389546347 ], [ 19.142532178617159, 45.458285021536483 ], [ 19.149043409625619, 45.460687974970028 ], [ 19.152195671892741, 45.461566474113454 ], [ 19.154986199853226, 45.461747341266744 ], [ 19.156949903715088, 45.461514798169389 ], [ 19.159637078888068, 45.460894680545039 ], [ 19.177465447772192, 45.454125068017447 ], [ 19.181392857294497, 45.452135524834603 ], [ 19.184235060299784, 45.449422512139222 ], [ 19.18588870579913, 45.446683661022121 ], [ 19.18630211784847, 45.444642441895155 ], [ 19.186250441005029, 45.441774400468205 ], [ 19.18666385305437, 45.439759019762903 ], [ 19.187335645723465, 45.438415431726753 ], [ 19.189506056059599, 45.435883287083982 ], [ 19.191004672827376, 45.434901435153108 ], [ 19.192761672013546, 45.434255480006357 ], [ 19.194673699931286, 45.434074611953747 ], [ 19.197102491786552, 45.434410508737983 ], [ 19.202321811602303, 45.435779934296534 ], [ 19.206042514650335, 45.436374213499107 ], [ 19.217979771049556, 45.437330227008317 ], [ 19.221752150041652, 45.437950343733348 ], [ 19.228780144987695, 45.440069078125418 ], [ 19.233999464803446, 45.442006944464879 ], [ 19.236686639077107, 45.442756253298398 ], [ 19.239683871713282, 45.443066310761594 ], [ 19.242681105248778, 45.44301463481753 ], [ 19.246866896290214, 45.442549546824125 ], [ 19.249812452982326, 45.44244619403662 ], [ 19.252602980043491, 45.442704576455014 ], [ 19.254515007961231, 45.443273017235924 ], [ 19.256116978415832, 45.444099840435285 ], [ 19.257150506290827, 45.445288397941169 ], [ 19.257718947071737, 45.446631985078 ], [ 19.258287387852647, 45.451334540056962 ], [ 19.259682650933598, 45.454125068017447 ], [ 19.261077914913812, 45.456011258412843 ], [ 19.262989942831553, 45.457690742333853 ], [ 19.265315382798633, 45.458879298940474 ], [ 19.268105909859855, 45.459344386933878 ], [ 19.270999789708526, 45.458879298940474 ], [ 19.274410435293362, 45.457122301552943 ], [ 19.284125603613688, 45.449319160251036 ], [ 19.288311394655125, 45.444203193222791 ], [ 19.290430129047195, 45.442213650039889 ], [ 19.293065627376791, 45.440689194850449 ], [ 19.297354771205733, 45.439345607713619 ], [ 19.299318475067537, 45.439035549351104 ], [ 19.302160678972143, 45.439164741459649 ], [ 19.305364618082649, 45.440017402181354 ], [ 19.31192752503523, 45.442420356514219 ], [ 19.315441521608932, 45.443117988504355 ], [ 19.319213900601028, 45.443479722810935 ], [ 19.327017042802254, 45.443660589964225 ], [ 19.335078565623292, 45.443428045967551 ], [ 19.339109327933102, 45.44301463481753 ], [ 19.346033970091639, 45.441903590778054 ], [ 19.364275750125728, 45.438415431726753 ], [ 19.364999219638264, 45.441128445321453 ], [ 19.36784142444219, 45.447923896270765 ], [ 19.368254835592154, 45.449939276976011 ], [ 19.368358189278979, 45.452419744775398 ], [ 19.36784142444219, 45.454796860686542 ], [ 19.366136102099404, 45.457897447009543 ], [ 19.364637485331684, 45.459990342979893 ], [ 19.358901400679088, 45.46611400036079 ], [ 19.357609491284961, 45.468181057010156 ], [ 19.357144403291557, 45.470196437715401 ], [ 19.357351107967247, 45.475260728799583 ], [ 19.356989372761348, 45.477431139135717 ], [ 19.355387404105386, 45.482805488582414 ], [ 19.355129021686992, 45.485130926750855 ], [ 19.355232375373816, 45.489678452998191 ], [ 19.355800816154726, 45.491719672125157 ], [ 19.356989372761348, 45.493450832889607 ], [ 19.358384636741562, 45.494432684820538 ], [ 19.370735304290861, 45.500323798204704 ], [ 19.387995233293339, 45.50621491068955 ], [ 19.394248080984141, 45.50735179315069 ], [ 19.399415723956452, 45.507868557088216 ], [ 19.399053988750552, 45.519495755124979 ], [ 19.398485548868962, 45.521201077467708 ], [ 19.396263461689387, 45.524043281372315 ], [ 19.395901727382807, 45.524870104571619 ], [ 19.394506463402536, 45.535670478509758 ], [ 19.411973097080761, 45.539752915864369 ], [ 19.420964796787928, 45.54150991505054 ], [ 19.423135207124119, 45.542207547040618 ], [ 19.425977411028668, 45.54362864854329 ], [ 19.432126905931966, 45.547142646016255 ], [ 19.436157668241776, 45.548486233153085 ], [ 19.440085076864762, 45.549261380408382 ], [ 19.442875603925984, 45.549209703564941 ], [ 19.444890984631229, 45.548847968359041 ], [ 19.449696893296959, 45.547375190012986 ], [ 19.462460971996222, 45.541768297468934 ], [ 19.464528028645589, 45.540683091851179 ], [ 19.471452670804126, 45.536032212816338 ], [ 19.473313022777745, 45.535153714572232 ], [ 19.475483433113936, 45.534481920104497 ], [ 19.477808872181697, 45.534094347376197 ], [ 19.480702752030368, 45.534120184898597 ], [ 19.482769809579054, 45.534481920104497 ], [ 19.487575718244784, 45.535928860028832 ], [ 19.497962681032902, 45.540579739063674 ], [ 19.503543735155233, 45.543525295755785 ], [ 19.505249058397283, 45.544713854160989 ], [ 19.506644320578914, 45.54610911724194 ], [ 19.510158318951255, 45.55130259953529 ], [ 19.515429314711071, 45.556806139291893 ], [ 19.516462844384762, 45.558356432003734 ], [ 19.517237989841362, 45.560061754346464 ], [ 19.517806430622272, 45.562361354992504 ], [ 19.518839959396587, 45.569466865203651 ], [ 19.519511752965002, 45.571688951483907 ], [ 19.521165399363667, 45.574582831332577 ], [ 19.522664015232124, 45.576469020828597 ], [ 19.524679395937369, 45.578148504749663 ], [ 19.52721154058014, 45.579388739998308 ], [ 19.529278599028089, 45.579957179879898 ], [ 19.531552362151785, 45.580163886354228 ], [ 19.542146029615537, 45.579492091886493 ], [ 19.54860558378067, 45.579879666413433 ], [ 19.555633578726656, 45.581429959125273 ], [ 19.557597284387157, 45.582024238327904 ], [ 19.559250928987183, 45.582851061527265 ], [ 19.560904575385848, 45.584504706127234 ], [ 19.561938104160163, 45.5865459252542 ], [ 19.562506544941073, 45.589207262005516 ], [ 19.563178337610168, 45.597811388085063 ], [ 19.564056837652913, 45.60357331026006 ], [ 19.563798455234519, 45.60564036690937 ], [ 19.563230015352929, 45.607035630889641 ], [ 19.560077752186487, 45.611479804349472 ], [ 19.557183872337816, 45.617035020949459 ], [ 19.556615430657587, 45.618507799295458 ], [ 19.556357049138512, 45.620626532788208 ], [ 19.556822137131917, 45.622745266281015 ], [ 19.557907341850353, 45.624605618254634 ], [ 19.562454868097689, 45.630134996432901 ], [ 19.564625278433823, 45.632150377138146 ], [ 19.57227339010484, 45.637421372898018 ], [ 19.573565301297606, 45.638919990565114 ], [ 19.57459883007192, 45.640625312008524 ], [ 19.577441033976527, 45.647601630111126 ], [ 19.586536085571879, 45.660003974503809 ], [ 19.599971957839557, 45.654552109792007 ], [ 19.608446892709935, 45.651451524368326 ], [ 19.613769566212511, 45.648686834829562 ], [ 19.622709588176917, 45.64307994228551 ], [ 19.625551792081524, 45.641555487995333 ], [ 19.63009931832886, 45.639643460077593 ], [ 19.634285109370296, 45.638196520153258 ], [ 19.643638543384043, 45.636387844123703 ], [ 19.651028272636665, 45.634553331471068 ], [ 19.654077183015545, 45.633752345794107 ], [ 19.658262974056981, 45.632150377138146 ], [ 19.661570265055673, 45.630703437213811 ], [ 19.676453078147006, 45.623365383005989 ], [ 19.684204542605528, 45.618921210445478 ], [ 19.699087354797541, 45.62129832635668 ], [ 19.704771762606754, 45.6224352079185 ], [ 19.707303908148845, 45.623158678330299 ], [ 19.709629347216605, 45.624037177473724 ], [ 19.715417107813266, 45.627137762897405 ], [ 19.717587518149401, 45.628067938884271 ], [ 19.724873894614518, 45.630445054795416 ], [ 19.731643508041429, 45.633028876281571 ], [ 19.735364211089461, 45.634992581042752 ], [ 19.736966179745366, 45.636206976970414 ], [ 19.738154738150627, 45.637628079372348 ], [ 19.738929885405867, 45.639230048028253 ], [ 19.739394971600632, 45.641400458364444 ], [ 19.739343295656568, 45.643674221488084 ], [ 19.738878207663163, 45.64592214619006 ], [ 19.737689650157222, 45.649048570035461 ], [ 19.736604445438786, 45.654552109792007 ], [ 19.736397738964456, 45.660210680078819 ], [ 19.736604445438786, 45.662949531195864 ], [ 19.737224562163817, 45.665636705469581 ], [ 19.740428501274323, 45.673078111565587 ], [ 19.743684116328893, 45.678090724907008 ], [ 19.747456496220309, 45.682534898366839 ], [ 19.753347608705155, 45.688374334907621 ], [ 19.754691195841986, 45.690854804505591 ], [ 19.755621371828852, 45.693593654723372 ], [ 19.756551547815661, 45.699846503313438 ], [ 19.753916050385385, 45.701836046496339 ], [ 19.752210728042655, 45.703463854473284 ], [ 19.75112552332422, 45.705169175916694 ], [ 19.750970492794011, 45.706926174203545 ], [ 19.751745640049251, 45.7083731150272 ], [ 19.755414666253841, 45.712507229225253 ], [ 19.758721958151853, 45.717519843465993 ], [ 19.759445427664332, 45.720594591367274 ], [ 19.759445427664332, 45.723772691156739 ], [ 19.758618605364347, 45.72687327747974 ], [ 19.754691195841986, 45.732661038076401 ], [ 19.749833612131454, 45.741497708152679 ], [ 19.767403598597184, 45.749352525398706 ], [ 19.772571241569551, 45.750799466222361 ], [ 19.782234734845133, 45.752582302031612 ], [ 19.79045128819638, 45.755243638782872 ], [ 19.793965284770081, 45.755812079563782 ], [ 19.797582635030551, 45.756070461982233 ], [ 19.812723829641016, 45.756199653191402 ], [ 19.820113559792958, 45.756535549076318 ], [ 19.823627557265922, 45.757103989857228 ], [ 19.831844109717849, 45.759791165030208 ], [ 19.842902866074382, 45.762039089732184 ], [ 19.846158482028329, 45.763356839346613 ], [ 19.855718621617086, 45.769816393511746 ], [ 19.859025912615778, 45.771625067742661 ], [ 19.860627883070322, 45.772219346945292 ], [ 19.874735548906415, 45.772916978935427 ], [ 19.878921339947851, 45.773330390085391 ], [ 19.885535922844554, 45.774518948490652 ], [ 19.89318403541489, 45.775164902738027 ], [ 19.904862909395717, 45.775190742059067 ], [ 19.912355991435845, 45.774725654065662 ], [ 19.915921664852931, 45.774157213284752 ], [ 19.927393833258805, 45.771082465383472 ], [ 19.931062860362715, 45.770514023703186 ], [ 19.946617466123143, 45.769558010193975 ], [ 19.950286493227054, 45.768989570312385 ], [ 19.961706983890167, 45.765914822411105 ], [ 19.97121544843418, 45.764183660747335 ], [ 19.975969679357206, 45.762736720823 ], [ 19.987545199651208, 45.756923122703938 ], [ 19.992351108316996, 45.755553697145388 ], [ 19.996175164152476, 45.755062770730262 ], [ 20.004133335085328, 45.754726873946026 ], [ 20.05255415155284, 45.754442654005231 ], [ 20.060253940966561, 45.753745022015153 ], [ 20.07089928617313, 45.751755479731571 ], [ 20.07394819475337, 45.751057847741436 ], [ 20.078082309850686, 45.7496109078171 ], [ 20.082526483310517, 45.74769887989936 ], [ 20.085265334427618, 45.746096910344136 ], [ 20.089347771782229, 45.743048000864519 ], [ 20.094515414754596, 45.738035387523098 ], [ 20.098856235426922, 45.734624741938262 ], [ 20.104282260817683, 45.731162421308682 ], [ 20.111051873345275, 45.727545071048155 ], [ 20.112550490112994, 45.726201483911325 ], [ 20.114152458768956, 45.724289455993585 ], [ 20.103300408886753, 45.72227407528834 ], [ 20.09203494605589, 45.717364813835047 ], [ 20.099941441044678, 45.695169785856933 ], [ 20.104902378441977, 45.674628404277428 ], [ 20.101905144906482, 45.653131008289392 ], [ 20.085833775208528, 45.627964586096766 ], [ 20.064129672746162, 45.610291245944211 ], [ 20.062941115240278, 45.603418281528434 ], [ 20.082113071261233, 45.600679430411333 ], [ 20.111258578920285, 45.601945502283058 ], [ 20.121748895395172, 45.598250636757484 ], [ 20.126193067955683, 45.587011013247661 ], [ 20.122007276914303, 45.581559150334499 ], [ 20.112602166057115, 45.574246935447661 ], [ 20.103145379255807, 45.56385997176028 ], [ 20.098856235426922, 45.549158026721557 ], [ 20.103042025568982, 45.537582506427498 ], [ 20.112963901263015, 45.52719554274006 ], [ 20.206498244098668, 45.465648912367385 ], [ 20.229804315216938, 45.44301463481753 ], [ 20.201899041007891, 45.395213935074992 ], [ 20.214301385400574, 45.379607652471179 ], [ 20.248304477669478, 45.355578110941053 ], [ 20.263962437116788, 45.340591945961535 ], [ 20.253627150272735, 45.334158230218122 ], [ 20.247064243320153, 45.32467560499515 ], [ 20.241999953135291, 45.314572862147827 ], [ 20.236057162907741, 45.306433824061685 ], [ 20.25238691592341, 45.287003486521655 ], [ 20.301427850015273, 45.258529771531698 ], [ 20.31176313595995, 45.234138494795673 ], [ 20.318584426230245, 45.209230455021441 ], [ 20.316517367782296, 45.195691229966258 ], [ 20.288818800946899, 45.183676459201195 ], [ 20.283651157075212, 45.169542954943381 ], [ 20.281480746739078, 45.153626613977053 ], [ 20.27781171963511, 45.14101756400936 ], [ 20.256986118114867, 45.156727200300054 ], [ 20.222362909120932, 45.175485745170988 ], [ 20.185000848110633, 45.18496837039396 ], [ 20.064749790370513, 45.175485745170988 ], [ 20.042322219294988, 45.177759508294628 ], [ 19.985581495789404, 45.189774278160371 ], [ 19.973850945864456, 45.174710597915748 ], [ 19.97276574114602, 45.173651230719713 ], [ 19.972248976309174, 45.172488512534812 ], [ 19.97235232909668, 45.171144924498662 ], [ 19.973179152296041, 45.169801337361832 ], [ 19.975142857057165, 45.168096015019046 ], [ 19.979483676830228, 45.16489207590854 ], [ 19.980930616754563, 45.16339346004014 ], [ 19.981499058434792, 45.161894843272364 ], [ 19.981137323228893, 45.160809638553928 ], [ 19.980258823186148, 45.159750271357893 ], [ 19.978036736905892, 45.158225816168454 ], [ 19.973437533815115, 45.155771185891467 ], [ 19.964187452588874, 45.151352850853357 ], [ 19.961035191221072, 45.150009263716527 ], [ 19.957676221580357, 45.148924058998091 ], [ 19.954162225006655, 45.148045558955346 ], [ 19.940933058313988, 45.146521105564545 ], [ 19.936282179279146, 45.14561676710008 ], [ 19.929719273225885, 45.144583238325765 ], [ 19.91261437295492, 45.1425678567212 ], [ 19.905741407639823, 45.143032944714605 ], [ 19.903984409352972, 45.143368842398161 ], [ 19.899695264624768, 45.14484161984484 ], [ 19.898041620024742, 45.145151679106675 ], [ 19.883778923658383, 45.14561676710008 ], [ 19.868069289166328, 45.146443590299441 ], [ 19.866002231617699, 45.147012031080351 ], [ 19.862281527670348, 45.147451279752715 ], [ 19.853341505705885, 45.147890530223776 ], [ 19.836081576703407, 45.148148911742851 ], [ 19.819700147743617, 45.148148911742851 ], [ 19.811793653654149, 45.147787177436271 ], [ 19.808072950606174, 45.147218735756041 ], [ 19.799132927742392, 45.14525503189418 ], [ 19.797324252612157, 45.145100003162611 ], [ 19.795308871906911, 45.145358385581005 ], [ 19.793551872720741, 45.146030178250101 ], [ 19.7920015800089, 45.147115382968536 ], [ 19.783836704400358, 45.157037257763193 ], [ 19.77308800640634, 45.167114163088115 ], [ 19.763269484399189, 45.16029287371714 ], [ 19.757998487739997, 45.156933905875007 ], [ 19.755414666253841, 45.155538641894793 ], [ 19.75267581603606, 45.154530952441462 ], [ 19.749523552869675, 45.153936673238832 ], [ 19.736242710232887, 45.153213201927713 ], [ 19.733142123909886, 45.152644762046123 ], [ 19.730454949636226, 45.151714586059256 ], [ 19.725235629820418, 45.149440822935617 ], [ 19.718104282086927, 45.14696035423691 ], [ 19.698777297334402, 45.141715195999495 ], [ 19.640692986691988, 45.142076931205395 ], [ 19.62839399598613, 45.14199941683961 ], [ 19.624414911419024, 45.141741035320479 ], [ 19.620590854684167, 45.141275947327074 ], [ 19.606121453642174, 45.1383303897357 ], [ 19.603072544162558, 45.138175361004073 ], [ 19.600075310627062, 45.138382066579084 ], [ 19.58984337657057, 45.140474962549433 ], [ 19.575373976427841, 45.144169827175745 ], [ 19.564935336796339, 45.146443590299441 ], [ 19.561111280960858, 45.14696035423691 ], [ 19.549122348617459, 45.147683823749446 ], [ 19.545194939994474, 45.148200589485612 ], [ 19.542817824083272, 45.148769029367202 ], [ 19.538632033041893, 45.150500190131652 ], [ 19.531552362151785, 45.154970201113883 ], [ 19.529381951815594, 45.155900377100693 ], [ 19.527004835904449, 45.156623847512549 ], [ 19.523800896793944, 45.157243964237523 ], [ 19.517134637053857, 45.158225816168454 ], [ 19.514705845198591, 45.158794256949363 ], [ 19.5125354348624, 45.159569404204603 ], [ 19.509693230957851, 45.161326402491454 ], [ 19.504938999135504, 45.16530548795788 ], [ 19.504008823148638, 45.165718899107901 ], [ 19.481012811292203, 45.167295030241405 ], [ 19.476620313776436, 45.167837633499971 ], [ 19.474191521921171, 45.168457750224945 ], [ 19.472021111585036, 45.169362087790091 ], [ 19.466853468612669, 45.172798569998008 ], [ 19.464734735119919, 45.173651230719713 ], [ 19.462409295152838, 45.174090481190717 ], [ 19.460910679284382, 45.174142158034158 ], [ 19.457345004967976, 45.173573717253248 ], [ 19.452280714783171, 45.172075100485472 ], [ 19.45011030444698, 45.171196601342047 ], [ 19.448249953372624, 45.170008042936786 ], [ 19.447113070911485, 45.168406074280881 ], [ 19.446699659761464, 45.16664907509471 ], [ 19.447371454229199, 45.164375311971071 ], [ 19.448094923741735, 45.163600164715831 ], [ 19.436622756235181, 45.151792101324418 ], [ 19.434814080205626, 45.150060940559911 ], [ 19.432436965193745, 45.148226427007955 ], [ 19.431145054001036, 45.14737376628625 ], [ 19.43047326043262, 45.147012031080351 ], [ 19.4296981140767, 45.146650295874451 ], [ 19.428871290877339, 45.146340237511936 ], [ 19.428044467678035, 45.146133531037606 ], [ 19.427165969433929, 45.146081855093541 ], [ 19.426339146234568, 45.146159369459326 ], [ 19.42546064619188, 45.146366075034337 ], [ 19.423755323849093, 45.146934515815246 ], [ 19.418587680876783, 45.148846543732986 ], [ 19.417812533621486, 45.149208278938886 ], [ 19.417089064109007, 45.149647529409947 ], [ 19.416520623328097, 45.150138454925752 ], [ 19.416003859390571, 45.150681057284942 ], [ 19.4142468602044, 45.153109850039527 ], [ 19.413213332329406, 45.154246730702027 ], [ 19.412644890649176, 45.154815172382257 ], [ 19.411301304411666, 45.155797024313188 ], [ 19.408614129238686, 45.157450669812533 ], [ 19.407270542101799, 45.158535875430289 ], [ 19.400087518424243, 45.165563870376275 ], [ 19.393929399921831, 45.1716242397668 ], [ 19.405357707000121, 45.179672343 ], [ 19.407838175000109, 45.203133444000073 ], [ 19.397296183000037, 45.223287253000066 ], [ 19.378072550000098, 45.229591777000067 ], [ 19.289749828046425, 45.236310130920906 ], [ 19.259906946745797, 45.242972998443719 ], [ 19.197179086357888, 45.264922815722535 ], [ 19.158482332733676, 45.276171379377523 ], [ 19.1041470909989, 45.298725651662807 ], [ 19.098813110000037, 45.319870504000093 ], [ 19.096229289000121, 45.329120585000013 ], [ 19.08295634672233, 45.339224357415532 ], [ 19.067199126619247, 45.343425395500674 ], [ 19.052942637832235, 45.345395231497662 ], [ 19.03023976194655, 45.345136809368668 ], [ 19.014162419318239, 45.353422657986798 ], [ 19.007522712657131, 45.359534141664312 ], [ 18.996434054757348, 45.362087840347755 ], [ 18.995688265962187, 45.362259590077088 ], [ 18.977491387120342, 45.371208750191805 ], [ 18.975527407984831, 45.391129634348331 ], [ 18.997352280168116, 45.399774781247046 ], [ 19.022619646648121, 45.402391896848464 ], [ 19.031318659791033, 45.416201044749599 ], [ 19.01643270784189, 45.433557841544641 ], [ 19.002282341656723, 45.443686428385945 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-02", "NAME_1": "Srednje-Banatski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643489559695411, 45.795141345496688 ], [ 20.645902140000089, 45.788730775 ], [ 20.655617310000139, 45.777310283000091 ], [ 20.678561646000077, 45.756639709000055 ], [ 20.688070109000137, 45.743100484000095 ], [ 20.700059041000117, 45.735400696000099 ], [ 20.713391561000037, 45.733333639000037 ], [ 20.726827433000068, 45.736175842000094 ], [ 20.739436482000116, 45.743410543000081 ], [ 20.745327596000095, 45.754986064000022 ], [ 20.754112590000091, 45.763564352000046 ], [ 20.765171346000102, 45.76676829100002 ], [ 20.777470337000125, 45.762324117 ], [ 20.785738566000077, 45.752557272000061 ], [ 20.785531861000038, 45.743410543000081 ], [ 20.781604451000078, 45.733953756000105 ], [ 20.779123982000101, 45.723670146000117 ], [ 20.779950806000102, 45.671683655 ], [ 20.777263631000096, 45.657524312000035 ], [ 20.773232869000083, 45.648894349 ], [ 20.762174113000071, 45.630600891000128 ], [ 20.754422648000087, 45.605589499000033 ], [ 20.758039998000072, 45.589259746 ], [ 20.787392212000043, 45.553654684000023 ], [ 20.800207967000119, 45.530503642000028 ], [ 20.797624146000118, 45.516499329000013 ], [ 20.783154745000076, 45.506060690000069 ], [ 20.760727173000078, 45.493348288000035 ], [ 20.767135050000036, 45.479343974000031 ], [ 20.781604451000078, 45.472574361000071 ], [ 20.799484497000037, 45.4685436 ], [ 20.816020955000113, 45.462859192000039 ], [ 20.830387004000016, 45.452523906000053 ], [ 20.8630465090001, 45.418727519000058 ], [ 20.927642050000145, 45.377489726000064 ], [ 20.966192667000115, 45.341574605000076 ], [ 20.981488891000083, 45.332789612000013 ], [ 21.016668402000107, 45.321481912000095 ], [ 21.016422967246115, 45.320696520428044 ], [ 21.013735792972454, 45.313151759745892 ], [ 21.007948032375793, 45.307053940786716 ], [ 21.006862826758038, 45.305684516127485 ], [ 20.986192253969307, 45.30291982748804 ], [ 20.983143345389067, 45.30307485621961 ], [ 20.974875116093699, 45.30540029618669 ], [ 20.971102736202283, 45.306020412911721 ], [ 20.967175326679978, 45.306278795330115 ], [ 20.95926883259051, 45.306123765699226 ], [ 20.955496453598414, 45.305607000862381 ], [ 20.944179314823486, 45.30271312101371 ], [ 20.940613641406401, 45.302222195497905 ], [ 20.93694461430249, 45.301989651501174 ], [ 20.921803419692026, 45.301731269082779 ], [ 20.918082716644051, 45.301498725086049 ], [ 20.914568719171029, 45.300956121827539 ], [ 20.908160841849337, 45.298837389234109 ], [ 20.903354933183607, 45.296666978897917 ], [ 20.882167595558087, 45.285866604060516 ], [ 20.868576693659463, 45.278683580382904 ], [ 20.857569614146371, 45.272275702161892 ], [ 20.848216180132567, 45.267676499970491 ], [ 20.845632357747093, 45.266539619307935 ], [ 20.838656039644491, 45.264214179340854 ], [ 20.822222934740637, 45.260441799449438 ], [ 20.819329053992647, 45.259382433152723 ], [ 20.817158643656455, 45.257961330750788 ], [ 20.816331821356471, 45.256746934823184 ], [ 20.816228468568966, 45.255429186108017 ], [ 20.81684858619326, 45.254292304546198 ], [ 20.817985466855816, 45.253155422984378 ], [ 20.829974400098479, 45.246127428038335 ], [ 20.842996860316816, 45.239176948357454 ], [ 20.828010695337298, 45.232949938189051 ], [ 20.824186638602498, 45.230779526953597 ], [ 20.812301059945923, 45.222252916139155 ], [ 20.809407179197933, 45.219617417809559 ], [ 20.806409945662438, 45.216155097179978 ], [ 20.804756301062412, 45.214759833199707 ], [ 20.800002069240065, 45.211504218145137 ], [ 20.79664310139799, 45.209850571746472 ], [ 20.782225376300062, 45.207008368741185 ], [ 20.77411217573632, 45.20499298803594 ], [ 20.772303500606029, 45.204114487993195 ], [ 20.770339796744224, 45.202460842493849 ], [ 20.766309035333677, 45.197138169890593 ], [ 20.764862095409342, 45.195820421175483 ], [ 20.763105096223171, 45.194709378035327 ], [ 20.759332717231075, 45.193055732535981 ], [ 20.757420689313335, 45.192487290855752 ], [ 20.750444370311413, 45.191427924559036 ], [ 20.748377312762784, 45.190936998143911 ], [ 20.746568637632492, 45.190213527732112 ], [ 20.743933140202216, 45.188818263751841 ], [ 20.739127232435806, 45.185666002384096 ], [ 20.737783644399656, 45.184425768034771 ], [ 20.736853469312166, 45.183082179998564 ], [ 20.736336703576001, 45.181583564130165 ], [ 20.736181674844374, 45.176725979520313 ], [ 20.735613234063464, 45.174607245128243 ], [ 20.732512647740464, 45.168767809486781 ], [ 20.729722120679298, 45.159776108880294 ], [ 20.728791944692489, 45.158174140224389 ], [ 20.727551711242484, 45.156778876244118 ], [ 20.725949740787883, 45.155590317838858 ], [ 20.722435744214181, 45.153884996395448 ], [ 20.720678745028067, 45.153316554715218 ], [ 20.718715041166206, 45.153058173196086 ], [ 20.716803013248466, 45.153213201927713 ], [ 20.714425897337264, 45.154220893179627 ], [ 20.71282392778204, 45.155280260375719 ], [ 20.705537551316922, 45.160964667285555 ], [ 20.695305617260431, 45.171454982861121 ], [ 20.690603062281468, 45.177294420301223 ], [ 20.688639356620968, 45.179361476950589 ], [ 20.686313917553264, 45.181015123349255 ], [ 20.683471713648657, 45.181996975280185 ], [ 20.680939569005886, 45.182203680855139 ], [ 20.662232700079016, 45.190549425415611 ], [ 20.659183790599457, 45.192280585280741 ], [ 20.653137647584344, 45.196931464315583 ], [ 20.647246535099498, 45.200083727482024 ], [ 20.638564893754847, 45.203546048111605 ], [ 20.624818963124653, 45.20845530956484 ], [ 20.617739292234546, 45.210470689370766 ], [ 20.614070265130636, 45.210987454207611 ], [ 20.602494744836577, 45.211736762141811 ], [ 20.598670689001096, 45.212124334870111 ], [ 20.59505333784125, 45.212821966860247 ], [ 20.581410759998562, 45.218092963519439 ], [ 20.578413527362386, 45.218945624241144 ], [ 20.575519646614396, 45.219229845081259 ], [ 20.573400913121645, 45.219178168237875 ], [ 20.567509799737479, 45.218377184359554 ], [ 20.563737419846007, 45.217136949110909 ], [ 20.560275099216426, 45.215431626768122 ], [ 20.558569776873696, 45.213726305324712 ], [ 20.557381219367755, 45.211762600563532 ], [ 20.553557162632956, 45.204062812049131 ], [ 20.551748488401984, 45.197344876364923 ], [ 20.55055992999678, 45.195484524391247 ], [ 20.547252638098769, 45.192022202862347 ], [ 20.545082227762578, 45.190161851787991 ], [ 20.542653435907312, 45.188663235020272 ], [ 20.539862908846146, 45.187965603030136 ], [ 20.536607292892256, 45.188198147026867 ], [ 20.532369825906699, 45.189593411007081 ], [ 20.523739862304808, 45.194812729923513 ], [ 20.520897658400202, 45.195691229966258 ], [ 20.518882276795637, 45.195846258697884 ], [ 20.516918572933776, 45.195639553122874 ], [ 20.513404574561434, 45.194347642829428 ], [ 20.509683872412779, 45.192435614911687 ], [ 20.507616814864093, 45.191712145399151 ], [ 20.505446405427278, 45.191247057405747 ], [ 20.502552524679231, 45.191040350931416 ], [ 20.499710320774682, 45.191324570872212 ], [ 20.497694940069437, 45.191918850074842 ], [ 20.496041293670771, 45.192797350117587 ], [ 20.49485273616483, 45.194037584466912 ], [ 20.494025912965469, 45.195484524391247 ], [ 20.493354120296374, 45.200083727482024 ], [ 20.492785678616144, 45.201427313719535 ], [ 20.491803826685214, 45.202564195281354 ], [ 20.489633416349079, 45.203546048111605 ], [ 20.487876418062228, 45.203778591209016 ], [ 20.486119418876058, 45.203546048111605 ], [ 20.483949009439243, 45.2027192249123 ], [ 20.482088656566248, 45.201478990562919 ], [ 20.480538363854407, 45.199825344164253 ], [ 20.479453159135971, 45.197758287514944 ], [ 20.476921013593881, 45.191040350931416 ], [ 20.47516401530703, 45.188663235020272 ], [ 20.465655551662337, 45.17938731537231 ], [ 20.462761671813666, 45.175485745170988 ], [ 20.459040968765692, 45.169697984574327 ], [ 20.4568705584295, 45.165873927839471 ], [ 20.454855177724255, 45.16339346004014 ], [ 20.446328566010493, 45.155461127529009 ], [ 20.444209831618423, 45.153109850039527 ], [ 20.443176303743428, 45.150836086915831 ], [ 20.443227979687492, 45.149983425294806 ], [ 20.444313185305248, 45.148148911742851 ], [ 20.449480829176935, 45.142412827989574 ], [ 20.454441765674915, 45.138020331373184 ], [ 20.455837029655186, 45.136263333086333 ], [ 20.45609541207358, 45.134196275537647 ], [ 20.45532026481834, 45.132025865201513 ], [ 20.45418338415584, 45.130268866914662 ], [ 20.45170291455787, 45.128020942212686 ], [ 20.449170769915099, 45.126599839810751 ], [ 20.447207066053238, 45.125876370298215 ], [ 20.440230747051316, 45.124093532690381 ], [ 20.43837039597696, 45.123344224756124 ], [ 20.436199984741506, 45.122026476041015 ], [ 20.431859164968444, 45.118176580884494 ], [ 20.429998813894144, 45.115670273764124 ], [ 20.429947137050704, 45.113835761111488 ], [ 20.43108401861258, 45.112285468399648 ], [ 20.433874545673746, 45.109443264495042 ], [ 20.43454634014148, 45.107376206946356 ], [ 20.43454634014148, 45.105438341506215 ], [ 20.434236280879645, 45.103397122379249 ], [ 20.433461135423045, 45.1013300639313 ], [ 20.432065871442774, 45.099263007281934 ], [ 20.422712437429027, 45.089444485274726 ], [ 20.420490350249452, 45.087790838876117 ], [ 20.413617384934355, 45.084638577508315 ], [ 20.408863153112009, 45.080013535995874 ], [ 20.400904982179156, 45.074716701814339 ], [ 20.395167615000048, 45.065154423000081 ], [ 20.393783324000083, 45.066718159000061 ], [ 20.384688272000062, 45.071188170000084 ], [ 20.375954955000054, 45.076200785000083 ], [ 20.372647663000066, 45.077802754000061 ], [ 20.367790078000041, 45.079714782000053 ], [ 20.36344925800006, 45.081058369000061 ], [ 20.359573526000077, 45.081730163000088 ], [ 20.351563679000037, 45.082066060000045 ], [ 20.338996615701262, 45.080349432780054 ], [ 20.289490593615994, 45.132232570776523 ], [ 20.27781171963511, 45.14101756400936 ], [ 20.281480746739078, 45.153626613977053 ], [ 20.283651157075212, 45.169542954943381 ], [ 20.288818800946899, 45.183676459201195 ], [ 20.316517367782296, 45.195691229966258 ], [ 20.318584426230245, 45.209230455021441 ], [ 20.31176313595995, 45.234138494795673 ], [ 20.301427850015273, 45.258529771531698 ], [ 20.25238691592341, 45.287003486521655 ], [ 20.236057162907741, 45.306433824061685 ], [ 20.241999953135291, 45.314572862147827 ], [ 20.247064243320153, 45.32467560499515 ], [ 20.253627150272735, 45.334158230218122 ], [ 20.263962437116788, 45.340591945961535 ], [ 20.248304477669478, 45.355578110941053 ], [ 20.214301385400574, 45.379607652471179 ], [ 20.201899041007891, 45.395213935074992 ], [ 20.229804315216938, 45.44301463481753 ], [ 20.206498244098668, 45.465648912367385 ], [ 20.112963901263015, 45.52719554274006 ], [ 20.103042025568982, 45.537582506427498 ], [ 20.098856235426922, 45.549158026721557 ], [ 20.103145379255807, 45.56385997176028 ], [ 20.112602166057115, 45.574246935447661 ], [ 20.122007276914303, 45.581559150334499 ], [ 20.126193067955683, 45.587011013247661 ], [ 20.121748895395172, 45.598250636757484 ], [ 20.111258578920285, 45.601945502283058 ], [ 20.082113071261233, 45.600679430411333 ], [ 20.062941115240278, 45.603418281528434 ], [ 20.064129672746162, 45.610291245944211 ], [ 20.085833775208528, 45.627964586096766 ], [ 20.101905144906482, 45.653131008289392 ], [ 20.104902378441977, 45.674628404277428 ], [ 20.099941441044678, 45.695169785856933 ], [ 20.09203494605589, 45.717364813835047 ], [ 20.103300408886753, 45.72227407528834 ], [ 20.114152458768956, 45.724289455993585 ], [ 20.134926385244455, 45.728113511829065 ], [ 20.146656935169403, 45.731627509302086 ], [ 20.162159864985767, 45.742531236027673 ], [ 20.161694776992363, 45.749094142980312 ], [ 20.15373660695883, 45.755295314726993 ], [ 20.146656935169403, 45.765165514476905 ], [ 20.145261672088452, 45.780100003512302 ], [ 20.157353957219357, 45.786947130405736 ], [ 20.159317661081161, 45.788316555064966 ], [ 20.164795363315363, 45.791778875694547 ], [ 20.172856886136344, 45.789660143101116 ], [ 20.176784294759386, 45.78893667268926 ], [ 20.181383497850106, 45.788419907852415 ], [ 20.203035922569768, 45.78738637997742 ], [ 20.215231561387441, 45.785577703947865 ], [ 20.223034701790027, 45.785164292797845 ], [ 20.230992872722879, 45.785060940010339 ], [ 20.246960889633328, 45.785009264066275 ], [ 20.254764031834611, 45.78526764648467 ], [ 20.266907992909523, 45.786972967928079 ], [ 20.279051954883812, 45.788109850389276 ], [ 20.286596713767324, 45.789350083839281 ], [ 20.300290969352716, 45.790797023763616 ], [ 20.303288201988892, 45.790745347819495 ], [ 20.305355258638258, 45.790435289457037 ], [ 20.313365106414494, 45.78893667268926 ], [ 20.316207310319101, 45.78816152633334 ], [ 20.321685010754607, 45.785991115997206 ], [ 20.324423861871708, 45.785422675216239 ], [ 20.325715773064474, 45.785422675216239 ], [ 20.328764683443353, 45.78606863126231 ], [ 20.33506920707822, 45.788419907852415 ], [ 20.340805290831497, 45.789841010254406 ], [ 20.344629346666977, 45.790435289457037 ], [ 20.346438022696589, 45.790331935770212 ], [ 20.347988316307749, 45.789815171832686 ], [ 20.349590284963654, 45.788471584695856 ], [ 20.350623813738025, 45.786559556778116 ], [ 20.351347284149824, 45.783820706560334 ], [ 20.352174107349185, 45.777929592276848 ], [ 20.35300092874985, 45.775035712428178 ], [ 20.35703169105966, 45.766715807188746 ], [ 20.359822219020202, 45.757672431537458 ], [ 20.363026157231332, 45.752814846028286 ], [ 20.366591830648474, 45.748370673467775 ], [ 20.370570916114843, 45.740515855322428 ], [ 20.372017856938555, 45.738655504248072 ], [ 20.377805616635897, 45.733281154801432 ], [ 20.380906202958897, 45.729302070234326 ], [ 20.381836378945707, 45.727183335842255 ], [ 20.383903435595073, 45.720568752945553 ], [ 20.385350376418728, 45.718424181031082 ], [ 20.387417433068038, 45.716744697110073 ], [ 20.390052931397634, 45.715711168335702 ], [ 20.39134484169108, 45.715504461861428 ], [ 20.398321160693001, 45.715452785917307 ], [ 20.401318394228497, 45.715194404398233 ], [ 20.405710889945624, 45.714057521937036 ], [ 20.407932977125199, 45.713204861215331 ], [ 20.411550327385669, 45.711163642088366 ], [ 20.416666294413915, 45.70739126219695 ], [ 20.421833937386282, 45.704083971198315 ], [ 20.423590935673133, 45.702456163221314 ], [ 20.424107699610659, 45.700699164035143 ], [ 20.423642611617197, 45.699639797738428 ], [ 20.421833937386282, 45.697986152239082 ], [ 20.415167677646195, 45.693567817200972 ], [ 20.410775181029749, 45.689821274831957 ], [ 20.409276564262029, 45.68775421818259 ], [ 20.408553093850173, 45.685687161533281 ], [ 20.408656446637679, 45.680674547292483 ], [ 20.408243036386978, 45.678762519374743 ], [ 20.406847772406763, 45.676902167401067 ], [ 20.404470655596242, 45.675558580264237 ], [ 20.402403598946933, 45.674938463539263 ], [ 20.400129835823236, 45.674576728333307 ], [ 20.397080926343676, 45.674525051489923 ], [ 20.394135369651565, 45.674860948274102 ], [ 20.388967725779878, 45.676152859466868 ], [ 20.386538933924669, 45.676488756251103 ], [ 20.383851759650952, 45.676178696989268 ], [ 20.381629673370696, 45.675093492270832 ], [ 20.377443882329317, 45.670623481288601 ], [ 20.375428500724695, 45.669538276570165 ], [ 20.370777621689854, 45.667600410230705 ], [ 20.365661654661608, 45.663776354395225 ], [ 20.362871127600442, 45.662381090414954 ], [ 20.354861280723526, 45.660236518500483 ], [ 20.350468784107079, 45.659228827248569 ], [ 20.348763461764349, 45.659848944872863 ], [ 20.344732700353802, 45.662226060784064 ], [ 20.343699171579487, 45.665119941532055 ], [ 20.343905877154498, 45.66806549732479 ], [ 20.345611200396547, 45.670545966023496 ], [ 20.348556756189339, 45.673284817140598 ], [ 20.349486932176148, 45.677522285025418 ], [ 20.349383579388643, 45.679408474521438 ], [ 20.348453403401834, 45.680416164874089 ], [ 20.346954786634058, 45.680235296821479 ], [ 20.336257764584161, 45.674990139483327 ], [ 20.33181359202365, 45.670494290079375 ], [ 20.330986768824289, 45.662226060784064 ], [ 20.33620608864004, 45.655818183462372 ], [ 20.343440789161093, 45.654629625057112 ], [ 20.349176872914313, 45.650857245165696 ], [ 20.35279422407416, 45.647420762957836 ], [ 20.354809604779405, 45.644371853478219 ], [ 20.35527469187349, 45.642175604720364 ], [ 20.354757927936021, 45.640056871227614 ], [ 20.353879428792595, 45.638739122512447 ], [ 20.352587517599829, 45.637524725685523 ], [ 20.350107048901179, 45.636077785761188 ], [ 20.348039992251813, 45.635509344980278 ], [ 20.345662876340668, 45.635199285718443 ], [ 20.335896030277581, 45.634579168993412 ], [ 20.333673943997326, 45.634217433787512 ], [ 20.331865268867034, 45.633545641118417 ], [ 20.330108269680863, 45.631943671563192 ], [ 20.329023064962485, 45.629824938070385 ], [ 20.327059360201304, 45.621324163879024 ], [ 20.325095656339442, 45.616492417690893 ], [ 20.323597038672403, 45.613701891529047 ], [ 20.329539828899954, 45.611893216398812 ], [ 20.339513381437371, 45.610187893156706 ], [ 20.341373731612407, 45.60951610048761 ], [ 20.342510614073547, 45.60874095323237 ], [ 20.346903109790674, 45.60372833899163 ], [ 20.348453403401834, 45.602462267119904 ], [ 20.351347284149824, 45.601170355927138 ], [ 20.360235630170166, 45.598664048806768 ], [ 20.362354363662917, 45.598405667287693 ], [ 20.364576449943172, 45.598405667287693 ], [ 20.366798537122747, 45.598664048806768 ], [ 20.37150109210171, 45.599955959999534 ], [ 20.378167351841796, 45.601351223080428 ], [ 20.39041466570427, 45.60491689739689 ], [ 20.396822543925225, 45.606518866952115 ], [ 20.407157829869959, 45.60775910130144 ], [ 20.41294559136594, 45.608792630075811 ], [ 20.415374383221206, 45.609541938010011 ], [ 20.423384230098122, 45.612875068329743 ], [ 20.428241814707974, 45.614115301779748 ], [ 20.431910841811884, 45.614528713829031 ], [ 20.443434686161822, 45.614761257825762 ], [ 20.470616489059694, 45.614528713829031 ], [ 20.478264600730711, 45.614322008254078 ], [ 20.482036980622127, 45.614011948992243 ], [ 20.485602654938532, 45.613443508211333 ], [ 20.497178176131911, 45.610342922787652 ], [ 20.500382114343097, 45.609826157950806 ], [ 20.503792759028613, 45.609567776431732 ], [ 20.510975782706169, 45.609722805163301 ], [ 20.516453484940371, 45.610394598731716 ], [ 20.529114210852129, 45.613107612326417 ], [ 20.523326450255468, 45.618611152082963 ], [ 20.520949334344266, 45.621246650412559 ], [ 20.519088983269967, 45.623830470999394 ], [ 20.51697024887784, 45.62801626204083 ], [ 20.515936720103525, 45.62935985007698 ], [ 20.508960402000923, 45.635457669036157 ], [ 20.506996698139119, 45.638919990565114 ], [ 20.504412875753587, 45.645482897517695 ], [ 20.499400262412166, 45.651684068365057 ], [ 20.498211704006906, 45.653776964335407 ], [ 20.49790164564439, 45.655792345040652 ], [ 20.4981083512194, 45.657213447442643 ], [ 20.499761996718746, 45.662846178408358 ], [ 20.500692172705612, 45.66480988227022 ], [ 20.503844434972677, 45.669512438148502 ], [ 20.506273227727263, 45.676282049776773 ], [ 20.508340285275949, 45.678814195318807 ], [ 20.512164341111429, 45.681604723279349 ], [ 20.523843215092313, 45.68661733752009 ], [ 20.52916588679625, 45.688658555747736 ], [ 20.53149132676333, 45.689924628518781 ], [ 20.536400588216566, 45.694162096403602 ], [ 20.544565463825052, 45.699123032901639 ], [ 20.550973342046063, 45.704032294354874 ], [ 20.553505486688834, 45.705427558335145 ], [ 20.555417514606575, 45.705995999116055 ], [ 20.557536248099382, 45.70625438153445 ], [ 20.560533481634877, 45.706306057478571 ], [ 20.563530715170373, 45.70589264632855 ], [ 20.567664829368368, 45.704807440710795 ], [ 20.577586704163025, 45.701551826555544 ], [ 20.581824172047902, 45.700363268150284 ], [ 20.584924758370903, 45.699872340835839 ], [ 20.588128695682769, 45.699639797738428 ], [ 20.594588249847845, 45.699949856100943 ], [ 20.603114861561608, 45.700983384875315 ], [ 20.611279738069413, 45.701448472868719 ], [ 20.615000441117445, 45.701887722440404 ], [ 20.616912469035185, 45.702326972012145 ], [ 20.618514438590466, 45.703024604002223 ], [ 20.619858025727297, 45.704445706404215 ], [ 20.620323113720701, 45.70625438153445 ], [ 20.619444613677956, 45.711912950022622 ], [ 20.61892784974043, 45.717933255515334 ], [ 20.618772821008861, 45.724108587940975 ], [ 20.619082879371376, 45.730128893433687 ], [ 20.61970299699567, 45.733048610804701 ], [ 20.622958612050297, 45.74289297123363 ], [ 20.626627638254888, 45.75017934769869 ], [ 20.628849725434463, 45.752918198815792 ], [ 20.63189863491408, 45.755657049932893 ], [ 20.642388949590327, 45.761574001738779 ], [ 20.643835890413982, 45.763253486559108 ], [ 20.644507683982397, 45.76526886726441 ], [ 20.644456008038333, 45.76733592391372 ], [ 20.644042595988992, 45.768782863838055 ], [ 20.641510451346221, 45.774622301278157 ], [ 20.639081658591635, 45.777774563545222 ], [ 20.634275749925905, 45.781546943436638 ], [ 20.631743605283134, 45.78394989687024 ], [ 20.630710077408139, 45.785887763209701 ], [ 20.630658399665379, 45.787127997559026 ], [ 20.631175163602904, 45.788187363855741 ], [ 20.632880486844954, 45.789246731051776 ], [ 20.637789748298246, 45.791107083025452 ], [ 20.640011833679182, 45.792295641430655 ], [ 20.642027215283747, 45.793742581355048 ], [ 20.643215772789688, 45.794879462017548 ], [ 20.643489559695411, 45.795141345496688 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-04", "NAME_1": "Južno-Banatski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.016668402000107, 45.321481912000095 ], [ 21.063964478000088, 45.306279602000089 ], [ 21.074299764000102, 45.300543518000055 ], [ 21.082774699000083, 45.293670553000069 ], [ 21.091559692000089, 45.288089498000048 ], [ 21.103341919000087, 45.286074117000013 ], [ 21.113057088000119, 45.289329732000098 ], [ 21.129180135000098, 45.301887105 ], [ 21.139412069000088, 45.303695781 ], [ 21.155638469000081, 45.295169170000079 ], [ 21.189744914000073, 45.259564108000106 ], [ 21.206074666000092, 45.245921529 ], [ 21.239250936000104, 45.229385071000095 ], [ 21.257130982000064, 45.224114075000088 ], [ 21.299298950000036, 45.223183899000034 ], [ 21.405545695000086, 45.199671122000026 ], [ 21.43376102700006, 45.188819071000083 ], [ 21.459392537000042, 45.174039612000072 ], [ 21.48438838900006, 45.152701690000086 ], [ 21.493292277000137, 45.145100810000102 ], [ 21.497839803000062, 45.13187164300011 ], [ 21.494119100000148, 45.119314270000089 ], [ 21.481510051000043, 45.111562806000094 ], [ 21.469004353000031, 45.111046041000051 ], [ 21.458565715000105, 45.107325338000052 ], [ 21.449987427000082, 45.101020813000034 ], [ 21.442442667000108, 45.092907613000122 ], [ 21.443786255000077, 45.091460674000032 ], [ 21.44440637200006, 45.085259502000056 ], [ 21.44440637200006, 45.077869772000057 ], [ 21.443786255000077, 45.072908834000103 ], [ 21.440995727000114, 45.068723043000048 ], [ 21.43252079200002, 45.061488343000079 ], [ 21.429523560000092, 45.057302552000053 ], [ 21.425596150000047, 45.04324656200005 ], [ 21.425079386000107, 45.036218567000034 ], [ 21.421875447000048, 45.031412659000026 ], [ 21.409266398000113, 45.023971253000084 ], [ 21.398827758000067, 45.021387431000093 ], [ 21.373299601000042, 45.020095520000055 ], [ 21.363377726000124, 45.016529847000086 ], [ 21.356143026000069, 45.008571676000102 ], [ 21.351388794000087, 44.998236389000013 ], [ 21.353455852000138, 44.98981313100002 ], [ 21.366995077000126, 44.98728098600013 ], [ 21.383944946000042, 44.986660869000062 ], [ 21.387045532000059, 44.981544902000067 ], [ 21.384565063000082, 44.97493031900008 ], [ 21.385185181000054, 44.969504293000099 ], [ 21.408439575000074, 44.958342183000056 ], [ 21.456498657000054, 44.952347717000052 ], [ 21.481510051000043, 44.943562724000046 ], [ 21.516339966000089, 44.93389923200003 ], [ 21.531016073000075, 44.92464915 ], [ 21.539077596000084, 44.908474426000012 ], [ 21.536287068000036, 44.889302470000089 ], [ 21.522127727000083, 44.880775859 ], [ 21.481510051000043, 44.872610983000058 ], [ 21.453398072000084, 44.86956207300004 ], [ 21.395313761000097, 44.871629130000102 ], [ 21.368545369000032, 44.864859517000056 ], [ 21.355522908000097, 44.856591288000018 ], [ 21.346427857000037, 44.84563588500005 ], [ 21.342810506000149, 44.831941631000021 ], [ 21.359799635000115, 44.826657221000048 ], [ 21.319049844000062, 44.825053323000077 ], [ 21.269492145000072, 44.813684508000051 ], [ 21.222466592000046, 44.796682962000034 ], [ 21.188825235000081, 44.77823447600008 ], [ 21.179471801000091, 44.768080056000088 ], [ 21.172288776000073, 44.756866271000035 ], [ 21.163813841000035, 44.747822896000059 ], [ 21.150946410000074, 44.74410219300006 ], [ 21.125728311000046, 44.745574971000053 ], [ 21.112292438000054, 44.74479982400004 ], [ 21.102835652000067, 44.740691548000086 ], [ 21.077875934000076, 44.72650636700007 ], [ 21.036835538000048, 44.722009490000062 ], [ 20.989560912000059, 44.716791198000067 ], [ 20.883210815000041, 44.672659525000086 ], [ 20.82647009100009, 44.660928974000058 ], [ 20.794776175000038, 44.664677444000063 ], [ 20.763631549000081, 44.668370380000056 ], [ 20.741979125000057, 44.679170755000087 ], [ 20.720326699000054, 44.696198139000046 ], [ 20.684824990000038, 44.733534362000057 ], [ 20.672009235000075, 44.743973001000086 ], [ 20.644517373000042, 44.755806904000053 ], [ 20.63329888700008, 44.765222365000056 ], [ 20.627929239000082, 44.777045918000056 ], [ 20.628187621000052, 44.788569762000066 ], [ 20.63862626000008, 44.837352315000032 ], [ 20.63639659100005, 44.849447667000049 ], [ 20.62369177100004, 44.854586404000088 ], [ 20.594959674000052, 44.857997049000062 ], [ 20.596613321000063, 44.873990905000085 ], [ 20.600282347000075, 44.878021667000041 ], [ 20.601677611000071, 44.880088724000075 ], [ 20.602297729000043, 44.882155781000051 ], [ 20.602297729000043, 44.884326191000071 ], [ 20.601668484000072, 44.886405909000075 ], [ 20.600075641000046, 44.888615335000054 ], [ 20.597905231000084, 44.890682393000077 ], [ 20.593047646000059, 44.894816507000087 ], [ 20.586588093000046, 44.900914326000077 ], [ 20.578733275000047, 44.906831278000084 ], [ 20.573152220000054, 44.910267761000057 ], [ 20.570258340000066, 44.911637185000075 ], [ 20.567881224000075, 44.912438170000087 ], [ 20.559199584000055, 44.914350198000079 ], [ 20.554341999000087, 44.915693786000077 ], [ 20.544110065000041, 44.919905415000073 ], [ 20.531604369000036, 44.923703633000059 ], [ 20.526953490000039, 44.925357278000035 ], [ 20.521372435000046, 44.928406188000054 ], [ 20.512690794000036, 44.934400654000058 ], [ 20.507316446000061, 44.938586445000055 ], [ 20.50493933000007, 44.940782694000063 ], [ 20.500073558000054, 44.946428218000051 ], [ 20.49884151100008, 44.948353291000046 ], [ 20.498118041000055, 44.950523701000066 ], [ 20.497911335000083, 44.952797464000071 ], [ 20.49884151100008, 44.958301004000077 ], [ 20.498893187000078, 44.960652282000069 ], [ 20.498376423000082, 44.963003559000072 ], [ 20.497390022000047, 44.964791595000065 ], [ 20.495947630000046, 44.966440042000045 ], [ 20.493880574000059, 44.967938658000037 ], [ 20.491813516000036, 44.968972187000077 ], [ 20.490676634000067, 44.969282246000034 ], [ 20.481374876000075, 44.969695658000035 ], [ 20.478170938000062, 44.970083230000057 ], [ 20.475535440000044, 44.970625834000089 ], [ 20.472538206000081, 44.971685200000081 ], [ 20.467163858000049, 44.974501565000082 ], [ 20.457862100000057, 44.980806091000034 ], [ 20.452229369000065, 44.985121072000084 ], [ 20.449852253000074, 44.987394835000089 ], [ 20.447937344000081, 44.989803768000058 ], [ 20.446906696000042, 44.991942361000042 ], [ 20.44540807900006, 44.996360696000067 ], [ 20.444318038000063, 44.998407323000038 ], [ 20.44256587600006, 45.000365620000082 ], [ 20.440292113000055, 45.002096780000045 ], [ 20.431300413000088, 45.007057718000056 ], [ 20.424324095000088, 45.01046836200004 ], [ 20.410526488000073, 45.017703063000056 ], [ 20.407839314000057, 45.019356709000078 ], [ 20.403963581000085, 45.02240561900004 ], [ 20.401166720000049, 45.025749273000088 ], [ 20.399416055000074, 45.028658466000081 ], [ 20.398537556000065, 45.031448994000073 ], [ 20.397400674000039, 45.037262592000047 ], [ 20.396573851000085, 45.040078958000038 ], [ 20.392388060000087, 45.048140482000065 ], [ 20.391767943000048, 45.050207539000041 ], [ 20.391767943000048, 45.052662170000076 ], [ 20.392698119000045, 45.054755065000052 ], [ 20.395488646000047, 45.059095885000033 ], [ 20.396005410000043, 45.061111266000069 ], [ 20.395902057000058, 45.063204162000034 ], [ 20.395167615000048, 45.065154423000081 ], [ 20.400904982179156, 45.074716701814339 ], [ 20.408863153112009, 45.080013535995874 ], [ 20.413617384934355, 45.084638577508315 ], [ 20.420490350249452, 45.087790838876117 ], [ 20.422712437429027, 45.089444485274726 ], [ 20.432065871442774, 45.099263007281934 ], [ 20.433461135423045, 45.1013300639313 ], [ 20.434236280879645, 45.103397122379249 ], [ 20.43454634014148, 45.105438341506215 ], [ 20.43454634014148, 45.107376206946356 ], [ 20.433874545673746, 45.109443264495042 ], [ 20.43108401861258, 45.112285468399648 ], [ 20.429947137050704, 45.113835761111488 ], [ 20.429998813894144, 45.115670273764124 ], [ 20.431859164968444, 45.118176580884494 ], [ 20.436199984741506, 45.122026476041015 ], [ 20.43837039597696, 45.123344224756124 ], [ 20.440230747051316, 45.124093532690381 ], [ 20.447207066053238, 45.125876370298215 ], [ 20.449170769915099, 45.126599839810751 ], [ 20.45170291455787, 45.128020942212686 ], [ 20.45418338415584, 45.130268866914662 ], [ 20.45532026481834, 45.132025865201513 ], [ 20.45609541207358, 45.134196275537647 ], [ 20.455837029655186, 45.136263333086333 ], [ 20.454441765674915, 45.138020331373184 ], [ 20.449480829176935, 45.142412827989574 ], [ 20.444313185305248, 45.148148911742851 ], [ 20.443227979687492, 45.149983425294806 ], [ 20.443176303743428, 45.150836086915831 ], [ 20.444209831618423, 45.153109850039527 ], [ 20.446328566010493, 45.155461127529009 ], [ 20.454855177724255, 45.16339346004014 ], [ 20.4568705584295, 45.165873927839471 ], [ 20.459040968765692, 45.169697984574327 ], [ 20.462761671813666, 45.175485745170988 ], [ 20.465655551662337, 45.17938731537231 ], [ 20.47516401530703, 45.188663235020272 ], [ 20.476921013593881, 45.191040350931416 ], [ 20.479453159135971, 45.197758287514944 ], [ 20.480538363854407, 45.199825344164253 ], [ 20.482088656566248, 45.201478990562919 ], [ 20.483949009439243, 45.2027192249123 ], [ 20.486119418876058, 45.203546048111605 ], [ 20.487876418062228, 45.203778591209016 ], [ 20.489633416349079, 45.203546048111605 ], [ 20.491803826685214, 45.202564195281354 ], [ 20.492785678616144, 45.201427313719535 ], [ 20.493354120296374, 45.200083727482024 ], [ 20.494025912965469, 45.195484524391247 ], [ 20.49485273616483, 45.194037584466912 ], [ 20.496041293670771, 45.192797350117587 ], [ 20.497694940069437, 45.191918850074842 ], [ 20.499710320774682, 45.191324570872212 ], [ 20.502552524679231, 45.191040350931416 ], [ 20.505446405427278, 45.191247057405747 ], [ 20.507616814864093, 45.191712145399151 ], [ 20.509683872412779, 45.192435614911687 ], [ 20.513404574561434, 45.194347642829428 ], [ 20.516918572933776, 45.195639553122874 ], [ 20.518882276795637, 45.195846258697884 ], [ 20.520897658400202, 45.195691229966258 ], [ 20.523739862304808, 45.194812729923513 ], [ 20.532369825906699, 45.189593411007081 ], [ 20.536607292892256, 45.188198147026867 ], [ 20.539862908846146, 45.187965603030136 ], [ 20.542653435907312, 45.188663235020272 ], [ 20.545082227762578, 45.190161851787991 ], [ 20.547252638098769, 45.192022202862347 ], [ 20.55055992999678, 45.195484524391247 ], [ 20.551748488401984, 45.197344876364923 ], [ 20.553557162632956, 45.204062812049131 ], [ 20.557381219367755, 45.211762600563532 ], [ 20.558569776873696, 45.213726305324712 ], [ 20.560275099216426, 45.215431626768122 ], [ 20.563737419846007, 45.217136949110909 ], [ 20.567509799737479, 45.218377184359554 ], [ 20.573400913121645, 45.219178168237875 ], [ 20.575519646614396, 45.219229845081259 ], [ 20.578413527362386, 45.218945624241144 ], [ 20.581410759998562, 45.218092963519439 ], [ 20.59505333784125, 45.212821966860247 ], [ 20.598670689001096, 45.212124334870111 ], [ 20.602494744836577, 45.211736762141811 ], [ 20.614070265130636, 45.210987454207611 ], [ 20.617739292234546, 45.210470689370766 ], [ 20.624818963124653, 45.20845530956484 ], [ 20.638564893754847, 45.203546048111605 ], [ 20.647246535099498, 45.200083727482024 ], [ 20.653137647584344, 45.196931464315583 ], [ 20.659183790599457, 45.192280585280741 ], [ 20.662232700079016, 45.190549425415611 ], [ 20.680939569005886, 45.182203680855139 ], [ 20.683471713648657, 45.181996975280185 ], [ 20.686313917553264, 45.181015123349255 ], [ 20.688639356620968, 45.179361476950589 ], [ 20.690603062281468, 45.177294420301223 ], [ 20.695305617260431, 45.171454982861121 ], [ 20.705537551316922, 45.160964667285555 ], [ 20.71282392778204, 45.155280260375719 ], [ 20.714425897337264, 45.154220893179627 ], [ 20.716803013248466, 45.153213201927713 ], [ 20.718715041166206, 45.153058173196086 ], [ 20.720678745028067, 45.153316554715218 ], [ 20.722435744214181, 45.153884996395448 ], [ 20.725949740787883, 45.155590317838858 ], [ 20.727551711242484, 45.156778876244118 ], [ 20.728791944692489, 45.158174140224389 ], [ 20.729722120679298, 45.159776108880294 ], [ 20.732512647740464, 45.168767809486781 ], [ 20.735613234063464, 45.174607245128243 ], [ 20.736181674844374, 45.176725979520313 ], [ 20.736336703576001, 45.181583564130165 ], [ 20.736853469312166, 45.183082179998564 ], [ 20.737783644399656, 45.184425768034771 ], [ 20.739127232435806, 45.185666002384096 ], [ 20.743933140202216, 45.188818263751841 ], [ 20.746568637632492, 45.190213527732112 ], [ 20.748377312762784, 45.190936998143911 ], [ 20.750444370311413, 45.191427924559036 ], [ 20.757420689313335, 45.192487290855752 ], [ 20.759332717231075, 45.193055732535981 ], [ 20.763105096223171, 45.194709378035327 ], [ 20.764862095409342, 45.195820421175483 ], [ 20.766309035333677, 45.197138169890593 ], [ 20.770339796744224, 45.202460842493849 ], [ 20.772303500606029, 45.204114487993195 ], [ 20.77411217573632, 45.20499298803594 ], [ 20.782225376300062, 45.207008368741185 ], [ 20.79664310139799, 45.209850571746472 ], [ 20.800002069240065, 45.211504218145137 ], [ 20.804756301062412, 45.214759833199707 ], [ 20.806409945662438, 45.216155097179978 ], [ 20.809407179197933, 45.219617417809559 ], [ 20.812301059945923, 45.222252916139155 ], [ 20.824186638602498, 45.230779526953597 ], [ 20.828010695337298, 45.232949938189051 ], [ 20.842996860316816, 45.239176948357454 ], [ 20.829974400098479, 45.246127428038335 ], [ 20.817985466855816, 45.253155422984378 ], [ 20.81684858619326, 45.254292304546198 ], [ 20.816228468568966, 45.255429186108017 ], [ 20.816331821356471, 45.256746934823184 ], [ 20.817158643656455, 45.257961330750788 ], [ 20.819329053992647, 45.259382433152723 ], [ 20.822222934740637, 45.260441799449438 ], [ 20.838656039644491, 45.264214179340854 ], [ 20.845632357747093, 45.266539619307935 ], [ 20.848216180132567, 45.267676499970491 ], [ 20.857569614146371, 45.272275702161892 ], [ 20.868576693659463, 45.278683580382904 ], [ 20.882167595558087, 45.285866604060516 ], [ 20.903354933183607, 45.296666978897917 ], [ 20.908160841849337, 45.298837389234109 ], [ 20.914568719171029, 45.300956121827539 ], [ 20.918082716644051, 45.301498725086049 ], [ 20.921803419692026, 45.301731269082779 ], [ 20.93694461430249, 45.301989651501174 ], [ 20.940613641406401, 45.302222195497905 ], [ 20.944179314823486, 45.30271312101371 ], [ 20.955496453598414, 45.305607000862381 ], [ 20.95926883259051, 45.306123765699226 ], [ 20.967175326679978, 45.306278795330115 ], [ 20.971102736202283, 45.306020412911721 ], [ 20.974875116093699, 45.30540029618669 ], [ 20.983143345389067, 45.30307485621961 ], [ 20.986192253969307, 45.30291982748804 ], [ 21.006862826758038, 45.305684516127485 ], [ 21.007948032375793, 45.307053940786716 ], [ 21.013735792972454, 45.313151759745892 ], [ 21.016422967246115, 45.320696520428044 ], [ 21.016668402000107, 45.321481912000095 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-11", "NAME_1": "Branicevski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.359799635000115, 44.826657221000048 ], [ 21.360587199000065, 44.826412252000026 ], [ 21.378570597000078, 44.816645407000053 ], [ 21.395933879000069, 44.790238749000096 ], [ 21.412160278000101, 44.78481272400002 ], [ 21.497219686000108, 44.778043111000088 ], [ 21.558404582000037, 44.781660461000072 ], [ 21.578041626000072, 44.777681377000064 ], [ 21.595611612000141, 44.765950826000093 ], [ 21.604293254000083, 44.749982809000059 ], [ 21.610287720000116, 44.731947734000059 ], [ 21.619692830000076, 44.713912659000059 ], [ 21.65627974500012, 44.687661032000037 ], [ 21.705165649000094, 44.677067363000035 ], [ 21.756842081000059, 44.677274069000092 ], [ 21.801697225000026, 44.683888652000078 ], [ 21.838284139000081, 44.69520579000006 ], [ 21.855440715000043, 44.69846140500006 ], [ 21.871977173000118, 44.695980937000073 ], [ 21.96241093000009, 44.662287903000035 ], [ 21.994346964000073, 44.6585672 ], [ 22.004268839000076, 44.651539205000105 ], [ 22.032174113000053, 44.603325094000112 ], [ 22.034242903886877, 44.596168194706422 ], [ 22.036173617000117, 44.589488970000062 ], [ 22.035843947140449, 44.589345811759756 ], [ 22.016982048582634, 44.58115509683023 ], [ 22.001375766878141, 44.569372870061898 ], [ 21.987888217767022, 44.55921845216983 ], [ 21.978379754122329, 44.551673692386998 ], [ 21.970163201670402, 44.546170151731076 ], [ 21.96142988528095, 44.538470364115994 ], [ 21.957864210964544, 44.534878852277188 ], [ 21.956107211778374, 44.532346706735098 ], [ 21.955693800628353, 44.530434678817358 ], [ 21.955538770997464, 44.525783799782516 ], [ 21.954763624641544, 44.524000963073945 ], [ 21.953368360661273, 44.522605699093731 ], [ 21.951818067949432, 44.5219855823687 ], [ 21.950009392819197, 44.5216238471628 ], [ 21.94370486828501, 44.52105540638189 ], [ 21.93833051883837, 44.519608466457555 ], [ 21.935591667721269, 44.518419908052294 ], [ 21.932749464715982, 44.516766262552949 ], [ 21.929803908023928, 44.514414985063468 ], [ 21.932181023935073, 44.511340237162187 ], [ 21.933782992591034, 44.508808092519416 ], [ 21.934971550996238, 44.506146755768157 ], [ 21.935384963045578, 44.502865302291866 ], [ 21.934919875052174, 44.499764715968865 ], [ 21.934816522264668, 44.494777940149788 ], [ 21.934351434271264, 44.493253485859668 ], [ 21.933472935127838, 44.491806545935333 ], [ 21.929752232079807, 44.487982490099796 ], [ 21.928615349618667, 44.486432197387956 ], [ 21.927116732850948, 44.482608141552475 ], [ 21.925308057720656, 44.475890204069628 ], [ 21.924429558577231, 44.474236559469603 ], [ 21.923292677914731, 44.472737941802563 ], [ 21.919313592448304, 44.468810533179521 ], [ 21.918228386830549, 44.467311917311122 ], [ 21.917453241373948, 44.465658270912456 ], [ 21.916884799693719, 44.463487861475585 ], [ 21.916729770962149, 44.461214098351945 ], [ 21.916988153380544, 44.45899201117237 ], [ 21.917608270105575, 44.456795763313778 ], [ 21.922052442666086, 44.448863429903327 ], [ 21.923809441852256, 44.444625962917826 ], [ 21.924687940995682, 44.441757921490876 ], [ 21.924636265051561, 44.43971670236391 ], [ 21.923757765008816, 44.437623806393503 ], [ 21.919571973967436, 44.430053209088328 ], [ 21.918176710886485, 44.428218696435692 ], [ 21.916316358912809, 44.426771756511357 ], [ 21.914559359726638, 44.426099962043565 ], [ 21.912492303077329, 44.425686549994282 ], [ 21.909443393597712, 44.425454006896871 ], [ 21.902983840331956, 44.425505682840992 ], [ 21.899676548433945, 44.425712389315265 ], [ 21.892235142337938, 44.426720078768597 ], [ 21.889237908802443, 44.426745917190317 ], [ 21.886912468835362, 44.426384181984361 ], [ 21.884742059398491, 44.425764065259386 ], [ 21.882003208281446, 44.424523830910061 ], [ 21.87823082928935, 44.421707465427176 ], [ 21.87704227088409, 44.42041555423441 ], [ 21.874251742923605, 44.416513984033088 ], [ 21.871874627012403, 44.414033515334438 ], [ 21.869600863888763, 44.412302355469308 ], [ 21.866345248834136, 44.410416165073912 ], [ 21.864226515341386, 44.408814195518687 ], [ 21.863192986567071, 44.407522285225241 ], [ 21.858232049169715, 44.399305731873994 ], [ 21.857095167607895, 44.39791046789378 ], [ 21.855751581370384, 44.396670234443718 ], [ 21.854046258128278, 44.395791734400973 ], [ 21.852134230210538, 44.395223294519383 ], [ 21.849188674417746, 44.395042426466773 ], [ 21.847431675231633, 44.395378323251009 ], [ 21.83792321068762, 44.398323879943064 ], [ 21.834874302107323, 44.398763129514805 ], [ 21.831825391728444, 44.398788967037149 ], [ 21.828879835935652, 44.398427231831249 ], [ 21.826916131174471, 44.397884630371379 ], [ 21.823143752182375, 44.396205146450313 ], [ 21.82149010578371, 44.395068263989174 ], [ 21.820249872333704, 44.393673000908223 ], [ 21.819371372290959, 44.392071031352998 ], [ 21.81864790187916, 44.389538885810907 ], [ 21.817717725892294, 44.378480130353694 ], [ 21.81689090269299, 44.375922146389939 ], [ 21.81518558124958, 44.373079942485333 ], [ 21.813686965381123, 44.371193752989313 ], [ 21.811568230989053, 44.369436753803143 ], [ 21.809087762290403, 44.367938137035367 ], [ 21.802163120131866, 44.365199285918266 ], [ 21.799682651433216, 44.363804022837371 ], [ 21.797357212365455, 44.36124603887356 ], [ 21.795600213179284, 44.358481350234115 ], [ 21.794773389979923, 44.355949204692024 ], [ 21.794256626042454, 44.350523180200582 ], [ 21.794721714035859, 44.345045477966437 ], [ 21.795496860391779, 44.342513333323666 ], [ 21.796427036378589, 44.340911362869065 ], [ 21.797718946672035, 44.33949026136645 ], [ 21.7993725930707, 44.338250027017125 ], [ 21.808519320610117, 44.332849840048084 ], [ 21.811361525414043, 44.330059312986862 ], [ 21.813015170913388, 44.327372137813882 ], [ 21.813376906119288, 44.325356757108636 ], [ 21.812911818125883, 44.323341376403391 ], [ 21.811671583776558, 44.321274318854705 ], [ 21.808364291878547, 44.317295234287599 ], [ 21.807227411216047, 44.315228175839593 ], [ 21.807072380685781, 44.313109443246162 ], [ 21.807847527941021, 44.310939032910028 ], [ 21.812911818125883, 44.303342597183075 ], [ 21.815650669242984, 44.298123277367324 ], [ 21.827277866380427, 44.29980276128839 ], [ 21.841695590579036, 44.302929186033111 ], [ 21.844899529689542, 44.303290921239011 ], [ 21.848051791956607, 44.303316758761412 ], [ 21.851100702335543, 44.30305837724228 ], [ 21.853994582184214, 44.302412421196266 ], [ 21.856475050882864, 44.301430569265335 ], [ 21.861694369799295, 44.29807160142326 ], [ 21.865673456165041, 44.296934718962063 ], [ 21.871667922336712, 44.295797838299563 ], [ 21.876215447684729, 44.294350898375228 ], [ 21.87972944515775, 44.292387192714727 ], [ 21.889237908802443, 44.284945787518041 ], [ 21.891615024713587, 44.281896878038481 ], [ 21.893992139725469, 44.276935939741804 ], [ 21.894353874931369, 44.274868883092438 ], [ 21.893888787837284, 44.269856268851697 ], [ 21.893992139725469, 44.267840888146452 ], [ 21.896627638055008, 44.260244452419499 ], [ 21.896679314898449, 44.258229071714254 ], [ 21.895387403705683, 44.253371487104403 ], [ 21.895129022186609, 44.250451768834068 ], [ 21.895439081448444, 44.248927314543891 ], [ 21.896989373260965, 44.245413316171607 ], [ 21.897712843672764, 44.242829494685395 ], [ 21.897919549247774, 44.24003896672491 ], [ 21.897764519616885, 44.237222602141344 ], [ 21.897144402891854, 44.234406235759138 ], [ 21.895594110180014, 44.229186916842707 ], [ 21.89554243333663, 44.224820257748661 ], [ 21.896059198173418, 44.222830716364456 ], [ 21.897196078835975, 44.22112539312235 ], [ 21.898539665972805, 44.220143541191476 ], [ 21.905360956243101, 44.216216132568434 ], [ 21.909236688022702, 44.212650458252028 ], [ 21.911923862296419, 44.210583400703342 ], [ 21.914249302263499, 44.209498195984906 ], [ 21.916006301449613, 44.209291490409953 ], [ 21.917659946049639, 44.209498195984906 ], [ 21.920088738804225, 44.210531724759278 ], [ 21.922414177871985, 44.212133694314502 ], [ 21.926238233707522, 44.215079251006614 ], [ 21.933162875866003, 44.221797186690765 ], [ 21.9354366389897, 44.22363170024272 ], [ 21.937968783632414, 44.225207831376281 ], [ 21.940087518024541, 44.226163844885491 ], [ 21.944169956278415, 44.227533271343361 ], [ 21.946081984196212, 44.227895006549261 ], [ 21.948872511257377, 44.227895006549261 ], [ 21.952489862417224, 44.226861476875627 ], [ 21.954246859804698, 44.225982977732201 ], [ 21.955745476572474, 44.224949448957886 ], [ 21.956985710921799, 44.223114936305251 ], [ 21.957140740552745, 44.221745509847381 ], [ 21.95683068219023, 44.22037608518815 ], [ 21.956107211778374, 44.219110012417104 ], [ 21.952386508730399, 44.215337633425008 ], [ 21.951404656799468, 44.213942369444794 ], [ 21.950836216018558, 44.212392075833634 ], [ 21.950836216018558, 44.210376695128332 ], [ 21.951249627168522, 44.208981432047437 ], [ 21.952903272667868, 44.205519111417857 ], [ 21.956727329402725, 44.199033717931741 ], [ 21.958070915640235, 44.195183824573803 ], [ 21.958329298957949, 44.192806707763339 ], [ 21.95817426932706, 44.190326239963952 ], [ 21.957709181333655, 44.187845771265302 ], [ 21.956055535834309, 44.182652288971951 ], [ 21.955435418209959, 44.177872218727885 ], [ 21.955900506203363, 44.168260403195006 ], [ 21.956727329402725, 44.163196113010201 ], [ 21.957760858177039, 44.159940497056255 ], [ 21.958019239696114, 44.157666733932615 ], [ 21.957760858177039, 44.155444648551679 ], [ 21.956985710921799, 44.153325914159609 ], [ 21.954815300585665, 44.150638739885892 ], [ 21.952541538361288, 44.148726711968152 ], [ 21.947425571333042, 44.145522772857646 ], [ 21.945358513784356, 44.143843288936637 ], [ 21.944531690585052, 44.14252554022147 ], [ 21.944324985010041, 44.141078600297135 ], [ 21.944790073003446, 44.139373277055086 ], [ 21.946702100921186, 44.135704250850495 ], [ 21.947528924120547, 44.133120429364283 ], [ 21.948820835313256, 44.124826362546571 ], [ 21.949647657613298, 44.122190864216975 ], [ 21.950577833600107, 44.12056305624003 ], [ 21.951818067949432, 44.119090277893974 ], [ 21.958897738839539, 44.113948473343328 ], [ 21.960344678763875, 44.112088121369709 ], [ 21.960758090813215, 44.110124417507848 ], [ 21.96029300281981, 44.108935859102587 ], [ 21.958794386052034, 44.107101345550632 ], [ 21.953575067135603, 44.101546128950645 ], [ 21.950681187286932, 44.09896230746449 ], [ 21.948975864044883, 44.09785126432439 ], [ 21.946908807395516, 44.096998602703309 ], [ 21.944635044271877, 44.096378485978335 ], [ 21.940914341223845, 44.095887560462529 ], [ 21.932956170290993, 44.095655016465798 ], [ 21.912699008652282, 44.095758368353984 ], [ 21.908771600029297, 44.095551662778973 ], [ 21.905050896981265, 44.095034897942185 ], [ 21.902983840331956, 44.094569810848043 ], [ 21.89807457887872, 44.093122870024388 ], [ 21.891304966351072, 44.090745755012563 ], [ 21.885207147391895, 44.088213609470472 ], [ 21.88050459241299, 44.085965684768496 ], [ 21.869755894418972, 44.08010040980605 ], [ 21.867327100765067, 44.078395087463264 ], [ 21.86045413634929, 44.072297268504087 ], [ 21.857301873182905, 44.070126858167953 ], [ 21.854614698909188, 44.068809109452843 ], [ 21.852599318203943, 44.068266507093597 ], [ 21.850377231923687, 44.067982286253482 ], [ 21.847276645600687, 44.067904770988378 ], [ 21.839783562661296, 44.068679918243618 ], [ 21.83657962355079, 44.068834946975187 ], [ 21.833375685339604, 44.068524889511991 ], [ 21.824332309688316, 44.066147772701527 ], [ 21.82226525213963, 44.065760199973226 ], [ 21.819268018604134, 44.065475979133112 ], [ 21.817769402735735, 44.065553494398216 ], [ 21.808984408603578, 44.069274197446248 ], [ 21.798494093927275, 44.074571030728464 ], [ 21.795496860391779, 44.075113633986973 ], [ 21.792396274968098, 44.074829413146858 ], [ 21.780924106562225, 44.071160386942267 ], [ 21.77797854987017, 44.070488593373852 ], [ 21.775136345965564, 44.070333563742963 ], [ 21.773120965260318, 44.070488593373852 ], [ 21.768315056594588, 44.071496283726503 ], [ 21.761700473697886, 44.073744208428479 ], [ 21.756326125150565, 44.076276353970513 ], [ 21.750331658978837, 44.081469835364601 ], [ 21.745112339163086, 44.086508287127742 ], [ 21.743045281614457, 44.087955227052078 ], [ 21.741236607383485, 44.088678697463877 ], [ 21.736327345030929, 44.089686387816528 ], [ 21.726198764661262, 44.090849106900748 ], [ 21.723304884812592, 44.090745755012563 ], [ 21.72108279763296, 44.090306505440822 ], [ 21.71901574098365, 44.089608873450743 ], [ 21.711574333988324, 44.085733140771822 ], [ 21.705579867816652, 44.083459378547445 ], [ 21.702685987967925, 44.082813422501431 ], [ 21.697725050570625, 44.082270820142185 ], [ 21.693642612316694, 44.082632555348141 ], [ 21.688113234138427, 44.084492906422497 ], [ 21.680206740049016, 44.086301581552732 ], [ 21.678243036187155, 44.087076727908652 ], [ 21.675917596220074, 44.088471991888866 ], [ 21.674005568302334, 44.090151475809932 ], [ 21.673075392315468, 44.091417548580978 ], [ 21.670749953247707, 44.0988072778336 ], [ 21.669561394842503, 44.10048676175461 ], [ 21.667959426186542, 44.101985379421706 ], [ 21.656693963355735, 44.108419094265741 ], [ 21.653696729820183, 44.109711005458507 ], [ 21.649149203572847, 44.111157945382843 ], [ 21.644084914287362, 44.112398179732168 ], [ 21.638917271314995, 44.113121650144024 ], [ 21.63576500814861, 44.113173326088088 ], [ 21.628426954840052, 44.112449856575608 ], [ 21.622277459037491, 44.112294826944662 ], [ 21.619280226401315, 44.112656562150619 ], [ 21.608066441313213, 44.115188706793333 ], [ 21.604035679003346, 44.115602117943354 ], [ 21.600056594436239, 44.115498766055168 ], [ 21.596232537701439, 44.114878648430874 ], [ 21.590754836366614, 44.113018297356518 ], [ 21.588067661193577, 44.112501533418992 ], [ 21.586827426844252, 44.112449856575608 ], [ 21.584088575727151, 44.112863267725629 ], [ 21.581298048665985, 44.113664252503213 ], [ 21.570911085877867, 44.117152411554514 ], [ 21.563056267732577, 44.118134264384764 ], [ 21.558302035910231, 44.119193631580799 ], [ 21.55463300970564, 44.120898953024266 ], [ 21.553134392937864, 44.122190864216975 ], [ 21.552100864163549, 44.123663642563031 ], [ 21.551067336288497, 44.127074286349227 ], [ 21.548070102753002, 44.133533841413623 ], [ 21.546519810041161, 44.139373277055086 ], [ 21.545744662785921, 44.140665188247795 ], [ 21.543884311711622, 44.142370509691261 ], [ 21.5407320494445, 44.144179185720816 ], [ 21.534427524910313, 44.146607978475402 ], [ 21.531947056211663, 44.148158271187242 ], [ 21.529259881038683, 44.150483710255003 ], [ 21.524764031634732, 44.155031236502339 ], [ 21.521146681374205, 44.157356676469419 ], [ 21.513653599334134, 44.16159414345492 ], [ 21.49985599096118, 44.170585842262767 ], [ 21.492983025646083, 44.177355454790359 ], [ 21.487815382673773, 44.181696275462741 ], [ 21.481769239658661, 44.179887600332449 ], [ 21.475516391967915, 44.17895742434564 ], [ 21.470038689733713, 44.178544013195619 ], [ 21.467609897878447, 44.178647365983124 ], [ 21.465284457911366, 44.179009101189024 ], [ 21.463320754049562, 44.179629217914055 ], [ 21.456189406316014, 44.182884832968625 ], [ 21.453605583930539, 44.184538479367291 ], [ 21.447352736239793, 44.190042019123837 ], [ 21.444872266641767, 44.191566474313333 ], [ 21.442805209992457, 44.192548326244264 ], [ 21.43877444768259, 44.193995266168599 ], [ 21.436810743820729, 44.194460354162004 ], [ 21.433968539916179, 44.194667059737014 ], [ 21.414021436639985, 44.193271795756743 ], [ 21.410042352072878, 44.192729194296874 ], [ 21.407561883374228, 44.192134915094243 ], [ 21.405236444306468, 44.191256415051498 ], [ 21.402445916345926, 44.189757799183042 ], [ 21.4000688013341, 44.187897447209423 ], [ 21.398725213297951, 44.186553860072536 ], [ 21.396348097386749, 44.183039863498891 ], [ 21.394797803775589, 44.181386217100226 ], [ 21.393660923113089, 44.180817776319316 ], [ 21.381361932407231, 44.181024481894326 ], [ 21.377641229359256, 44.180921129106821 ], [ 21.369424676007952, 44.180042629963395 ], [ 21.366220736897446, 44.179990953119955 ], [ 21.363171828317206, 44.180352688325854 ], [ 21.361208122656706, 44.180921129106821 ], [ 21.357487419608731, 44.182523097762726 ], [ 21.35593712689689, 44.183582464958761 ], [ 21.354335158240929, 44.185933743347562 ], [ 21.353973423035029, 44.187690742533732 ], [ 21.354800246234333, 44.189344387133758 ], [ 21.359812859575811, 44.194150295799489 ], [ 21.361569857862605, 44.196475734867249 ], [ 21.364618768241542, 44.202857773767221 ], [ 21.368236117602748, 44.208516344054033 ], [ 21.368649529652032, 44.210531724759278 ], [ 21.368339471289573, 44.212547105464523 ], [ 21.367409295302707, 44.214200750963869 ], [ 21.365962355378372, 44.215621853365803 ], [ 21.363688592254732, 44.216913764558569 ], [ 21.361621534706046, 44.217378852551974 ], [ 21.353249952623173, 44.218231513273679 ], [ 21.350356072774503, 44.218825792476309 ], [ 21.346738721614713, 44.220350246766429 ], [ 21.344464959390336, 44.222003893165095 ], [ 21.341105990648941, 44.226706448144057 ], [ 21.335834994889069, 44.232700914315728 ], [ 21.33454308369636, 44.234767970965038 ], [ 21.33397464381477, 44.236835029413044 ], [ 21.334026319758834, 44.238953762006474 ], [ 21.334698114226569, 44.241873481176185 ], [ 21.334801467014074, 44.244018053090656 ], [ 21.334388054964734, 44.246110948161686 ], [ 21.332889439096334, 44.248978990488013 ], [ 21.330563999129254, 44.252131252755078 ], [ 21.328445264737184, 44.254198310303764 ], [ 21.325861444150291, 44.256006985433999 ], [ 21.314854363737879, 44.261949774762286 ], [ 21.292685174181429, 44.275695706291799 ], [ 21.288241000721598, 44.267065741790532 ], [ 21.284985385666971, 44.26220815718068 ], [ 21.283590121686757, 44.25970185006031 ], [ 21.280799594625591, 44.251717840705737 ], [ 21.278835889864411, 44.248823960857067 ], [ 21.27614871559075, 44.245826728220891 ], [ 21.268242222400602, 44.23949636526504 ], [ 21.266898635263772, 44.238747057330784 ], [ 21.265244988865106, 44.238359482803844 ], [ 21.263436313734871, 44.238385322124884 ], [ 21.260542432986881, 44.239005438849915 ], [ 21.252894321315864, 44.242106025172916 ], [ 21.250517205404662, 44.242829494685395 ], [ 21.244781121651442, 44.243837185038046 ], [ 21.23491092280085, 44.244664008237351 ], [ 21.231810337377169, 44.245154933753156 ], [ 21.229536574253473, 44.245775051377507 ], [ 21.227469516704843, 44.246601874576811 ], [ 21.225660841574552, 44.247687079295247 ], [ 21.221578403320621, 44.250684312830742 ], [ 21.21754764191013, 44.254792589506394 ], [ 21.216152377929859, 44.256885484577424 ], [ 21.215273878786434, 44.259055894913615 ], [ 21.21351687960032, 44.265360419447802 ], [ 21.212328322094379, 44.267065741790532 ], [ 21.210984734957549, 44.268073432143183 ], [ 21.19920250818916, 44.274197089524023 ], [ 21.189642367701083, 44.278512070875365 ], [ 21.186903516583982, 44.279416409339774 ], [ 21.183854608003742, 44.280062364486525 ], [ 21.17419111472816, 44.281018377995736 ], [ 21.171090529304479, 44.28148346598914 ], [ 21.168351678187378, 44.28225861324438 ], [ 21.166387974325517, 44.283240465175311 ], [ 21.162253859228201, 44.285979316292412 ], [ 21.159566684954541, 44.287322903429242 ], [ 21.15610436432496, 44.288149725729227 ], [ 21.152331984433545, 44.288563136879247 ], [ 21.147371047036188, 44.288563136879247 ], [ 21.134038526656639, 44.286599433017386 ], [ 21.119879184876481, 44.292258002404878 ], [ 21.119879184876481, 44.299105130197574 ], [ 21.126700474247457, 44.299105130197574 ], [ 21.126700474247457, 44.305306301044936 ], [ 21.119879184876481, 44.305306301044936 ], [ 21.119879184876481, 44.312747708040263 ], [ 21.137500848185596, 44.311688340844228 ], [ 21.145200635800677, 44.31734691023172 ], [ 21.141945020746107, 44.325692653892816 ], [ 21.126700474247457, 44.332591458528952 ], [ 21.131558057957989, 44.345200506698006 ], [ 21.127010531710653, 44.351220812190718 ], [ 21.118949008889615, 44.354915675917709 ], [ 21.113057896404769, 44.360548407782744 ], [ 21.110215691600843, 44.370987047414303 ], [ 21.111300897218598, 44.376516424693193 ], [ 21.11502160026663, 44.382562567708305 ], [ 21.119879184876481, 44.394654852839153 ], [ 21.124168328705366, 44.411113797064047 ], [ 21.131247999595473, 44.42581574210277 ], [ 21.146285842317752, 44.435220852060638 ], [ 21.174501173989995, 44.435634264109979 ], [ 21.171245558036048, 44.443127346150106 ], [ 21.165354444651882, 44.448450018753363 ], [ 21.157189569043339, 44.452480781063173 ], [ 21.147216017405242, 44.456123968846043 ], [ 21.154657424400625, 44.476613674481484 ], [ 21.162253859228201, 44.472531236227553 ], [ 21.165199415920313, 44.472686265858442 ], [ 21.167834914249852, 44.474753323407128 ], [ 21.174501173989995, 44.476613674481484 ], [ 21.169230178230123, 44.478499863977504 ], [ 21.166129591907122, 44.480670274313695 ], [ 21.162253859228201, 44.48265981749654 ], [ 21.154657424400625, 44.484055081476811 ], [ 21.15894656733019, 44.499816392812249 ], [ 21.16085859524793, 44.504518947791212 ], [ 21.154657424400625, 44.504518947791212 ], [ 21.147060987774353, 44.500746567899739 ], [ 21.142565138370401, 44.510203354701048 ], [ 21.135330437849404, 44.521908067103595 ], [ 21.119879184876481, 44.525034491848317 ], [ 21.119879184876481, 44.531855781219292 ], [ 21.133883497925069, 44.541312568020601 ], [ 21.140549757665156, 44.551441148390268 ], [ 21.140394728034266, 44.563740139096126 ], [ 21.133573438663234, 44.57963064254011 ], [ 21.125615268629701, 44.592575589291982 ], [ 21.11770877543961, 44.598776760139344 ], [ 21.105616489409442, 44.600662950534741 ], [ 21.085152622195722, 44.600740464900525 ], [ 21.087788119625998, 44.619757392189854 ], [ 21.066290723637962, 44.64399363929499 ], [ 21.07895145044904, 44.655362454014039 ], [ 21.073835483420794, 44.66040090577718 ], [ 21.059159376803791, 44.670865382931026 ], [ 21.050994500295928, 44.675206204502729 ], [ 21.053009881001174, 44.679882921059914 ], [ 21.05626549695512, 44.691794339037472 ], [ 21.058435907291255, 44.696341865284808 ], [ 21.047428826878843, 44.697478745947365 ], [ 21.040349155089416, 44.70259471297561 ], [ 21.037093540034846, 44.711457221473552 ], [ 21.036835538000048, 44.722009490000062 ], [ 21.077875934000076, 44.72650636700007 ], [ 21.102835652000067, 44.740691548000086 ], [ 21.112292438000054, 44.74479982400004 ], [ 21.125728311000046, 44.745574971000053 ], [ 21.150946410000074, 44.74410219300006 ], [ 21.163813841000035, 44.747822896000059 ], [ 21.172288776000073, 44.756866271000035 ], [ 21.179471801000091, 44.768080056000088 ], [ 21.188825235000081, 44.77823447600008 ], [ 21.222466592000046, 44.796682962000034 ], [ 21.269492145000072, 44.813684508000051 ], [ 21.319049844000062, 44.825053323000077 ], [ 21.359799635000115, 44.826657221000048 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-00", "NAME_1": "Grad Beograd" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.973382301000072, 44.64118479800004 ], [ 20.006623493000063, 44.661704121000071 ], [ 20.027190713000039, 44.67891237300006 ], [ 20.045484170000066, 44.690255350000086 ], [ 20.094111693000059, 44.708161233000055 ], [ 20.098194131000071, 44.719995137000069 ], [ 20.10077795300009, 44.723405781000054 ], [ 20.103103393000083, 44.729038512000045 ], [ 20.103516804000037, 44.730433775000051 ], [ 20.103413451000051, 44.732371642000032 ], [ 20.10263261700004, 44.734185513000057 ], [ 20.097260919000064, 44.739098034000051 ], [ 20.096902220000061, 44.740097269000046 ], [ 20.09752233800009, 44.741595886000084 ], [ 20.098762572000055, 44.742526061000035 ], [ 20.104705361000072, 44.745342427000082 ], [ 20.106203978000053, 44.74624676500008 ], [ 20.107650918000047, 44.747848733000069 ], [ 20.108632771000089, 44.749760761000061 ], [ 20.110441446000038, 44.754566670000088 ], [ 20.110441446000038, 44.756530375000068 ], [ 20.109711369000081, 44.758423061000087 ], [ 20.10816768300009, 44.759941018000063 ], [ 20.106514036000078, 44.760716166000066 ], [ 20.098607542000082, 44.762524841000072 ], [ 20.091527871000039, 44.764746927000033 ], [ 20.087703816000044, 44.766452249000054 ], [ 20.084034788000054, 44.768726012000059 ], [ 20.082684848000042, 44.77018389400007 ], [ 20.081761025000048, 44.771774922000077 ], [ 20.080934203000083, 44.774565449000079 ], [ 20.080675821000057, 44.777459329000067 ], [ 20.080934203000083, 44.780379048000043 ], [ 20.081761025000048, 44.783143737000046 ], [ 20.082587849000049, 44.784539001000041 ], [ 20.085171670000079, 44.787639586000068 ], [ 20.087187051000058, 44.788983174000066 ], [ 20.088944050000066, 44.789551614000061 ], [ 20.090959431000044, 44.789809996000088 ], [ 20.093801635000091, 44.789809996000088 ], [ 20.097832396000058, 44.789499938000063 ], [ 20.10077795300009, 44.789603291000049 ], [ 20.10775427100009, 44.791076069000042 ], [ 20.11452388400005, 44.793375671000035 ], [ 20.118192910000062, 44.795080993000056 ], [ 20.121706908000078, 44.797354755000072 ], [ 20.122947142000044, 44.798775858000056 ], [ 20.123773965000055, 44.800377827000034 ], [ 20.12449743500008, 44.802884134000067 ], [ 20.125117553000052, 44.813787861000037 ], [ 20.125530964000063, 44.816475035000053 ], [ 20.12646114000006, 44.819007181000075 ], [ 20.127908080000054, 44.821177591000037 ], [ 20.131525430000067, 44.825363382000035 ], [ 20.133024047000049, 44.827585469000041 ], [ 20.13385087000006, 44.829859232000047 ], [ 20.134574339000039, 44.837197285000059 ], [ 20.135969603000092, 44.844173603000058 ], [ 20.147028360000036, 44.860141621000082 ], [ 20.150128946000052, 44.865412617000061 ], [ 20.153332884000065, 44.875282816000038 ], [ 20.153746296000065, 44.877504902000055 ], [ 20.15405635500008, 44.883447692000061 ], [ 20.154366413000048, 44.884946309000043 ], [ 20.155038207000075, 44.886367410000048 ], [ 20.156846882000082, 44.888201924000043 ], [ 20.161291055000049, 44.891044128000033 ], [ 20.163564818000054, 44.892077657000073 ], [ 20.165735229000063, 44.892697773000066 ], [ 20.168008991000079, 44.893033670000079 ], [ 20.171006224000052, 44.893033670000079 ], [ 20.179171101000065, 44.892025980000085 ], [ 20.187180948000048, 44.891612569000074 ], [ 20.195035765000057, 44.891767597000069 ], [ 20.198084674000086, 44.892181009000069 ], [ 20.200823526000079, 44.892904479000038 ], [ 20.202735554000071, 44.893808816000046 ], [ 20.215602985000089, 44.901069355000061 ], [ 20.223302774000047, 44.906288675000042 ], [ 20.22991735700009, 44.909492613000054 ], [ 20.235963499000036, 44.912903258000085 ], [ 20.238754027000084, 44.914195169000038 ], [ 20.243146524000053, 44.915073668000048 ], [ 20.246298786000068, 44.915332051000064 ], [ 20.258546100000046, 44.915487080000048 ], [ 20.280921996000075, 44.919311136000033 ], [ 20.324728624000045, 44.929168840000045 ], [ 20.31885249700008, 44.934400654000058 ], [ 20.303242456000078, 44.954664651000087 ], [ 20.290688841000076, 44.977498799000045 ], [ 20.298130247000074, 44.977498799000045 ], [ 20.304021361000082, 44.993931904000078 ], [ 20.333321898000065, 45.010520039000085 ], [ 20.356938028000059, 45.034497904000034 ], [ 20.34592303900007, 45.07308265100005 ], [ 20.338996615701262, 45.080349432780054 ], [ 20.351563679000037, 45.082066060000045 ], [ 20.359573526000077, 45.081730163000088 ], [ 20.36344925800006, 45.081058369000061 ], [ 20.367790078000041, 45.079714782000053 ], [ 20.372647663000066, 45.077802754000061 ], [ 20.375954955000054, 45.076200785000083 ], [ 20.384688272000062, 45.071188170000084 ], [ 20.393783324000083, 45.066718159000061 ], [ 20.395167615000048, 45.065154423000081 ], [ 20.395902057000058, 45.063204162000034 ], [ 20.396005410000043, 45.061111266000069 ], [ 20.395488646000047, 45.059095885000033 ], [ 20.392698119000045, 45.054755065000052 ], [ 20.391767943000048, 45.052662170000076 ], [ 20.391767943000048, 45.050207539000041 ], [ 20.392388060000087, 45.048140482000065 ], [ 20.396573851000085, 45.040078958000038 ], [ 20.397400674000039, 45.037262592000047 ], [ 20.398537556000065, 45.031448994000073 ], [ 20.399416055000074, 45.028658466000081 ], [ 20.401166720000049, 45.025749273000088 ], [ 20.403963581000085, 45.02240561900004 ], [ 20.407839314000057, 45.019356709000078 ], [ 20.410526488000073, 45.017703063000056 ], [ 20.424324095000088, 45.01046836200004 ], [ 20.431300413000088, 45.007057718000056 ], [ 20.440292113000055, 45.002096780000045 ], [ 20.44256587600006, 45.000365620000082 ], [ 20.444318038000063, 44.998407323000038 ], [ 20.44540807900006, 44.996360696000067 ], [ 20.446906696000042, 44.991942361000042 ], [ 20.447937344000081, 44.989803768000058 ], [ 20.449852253000074, 44.987394835000089 ], [ 20.452229369000065, 44.985121072000084 ], [ 20.457862100000057, 44.980806091000034 ], [ 20.467163858000049, 44.974501565000082 ], [ 20.472538206000081, 44.971685200000081 ], [ 20.475535440000044, 44.970625834000089 ], [ 20.478170938000062, 44.970083230000057 ], [ 20.481374876000075, 44.969695658000035 ], [ 20.490676634000067, 44.969282246000034 ], [ 20.491813516000036, 44.968972187000077 ], [ 20.493880574000059, 44.967938658000037 ], [ 20.495947630000046, 44.966440042000045 ], [ 20.497390022000047, 44.964791595000065 ], [ 20.498376423000082, 44.963003559000072 ], [ 20.498893187000078, 44.960652282000069 ], [ 20.49884151100008, 44.958301004000077 ], [ 20.497911335000083, 44.952797464000071 ], [ 20.498118041000055, 44.950523701000066 ], [ 20.49884151100008, 44.948353291000046 ], [ 20.500073558000054, 44.946428218000051 ], [ 20.50493933000007, 44.940782694000063 ], [ 20.507316446000061, 44.938586445000055 ], [ 20.512690794000036, 44.934400654000058 ], [ 20.521372435000046, 44.928406188000054 ], [ 20.526953490000039, 44.925357278000035 ], [ 20.531604369000036, 44.923703633000059 ], [ 20.544110065000041, 44.919905415000073 ], [ 20.554341999000087, 44.915693786000077 ], [ 20.559199584000055, 44.914350198000079 ], [ 20.567881224000075, 44.912438170000087 ], [ 20.570258340000066, 44.911637185000075 ], [ 20.573152220000054, 44.910267761000057 ], [ 20.578733275000047, 44.906831278000084 ], [ 20.586588093000046, 44.900914326000077 ], [ 20.593047646000059, 44.894816507000087 ], [ 20.597905231000084, 44.890682393000077 ], [ 20.600075641000046, 44.888615335000054 ], [ 20.601668484000072, 44.886405909000075 ], [ 20.602297729000043, 44.884326191000071 ], [ 20.602297729000043, 44.882155781000051 ], [ 20.601677611000071, 44.880088724000075 ], [ 20.600282347000075, 44.878021667000041 ], [ 20.596613321000063, 44.873990905000085 ], [ 20.594959674000052, 44.857997049000062 ], [ 20.62369177100004, 44.854586404000088 ], [ 20.63639659100005, 44.849447667000049 ], [ 20.63862626000008, 44.837352315000032 ], [ 20.628187621000052, 44.788569762000066 ], [ 20.627929239000082, 44.777045918000056 ], [ 20.63329888700008, 44.765222365000056 ], [ 20.644517373000042, 44.755806904000053 ], [ 20.672009235000075, 44.743973001000086 ], [ 20.684824990000038, 44.733534362000057 ], [ 20.720326699000054, 44.696198139000046 ], [ 20.741979125000057, 44.679170755000087 ], [ 20.763631549000081, 44.668370380000056 ], [ 20.794776175000038, 44.664677444000063 ], [ 20.778194613990252, 44.632883206095073 ], [ 20.774990675779065, 44.630041002190467 ], [ 20.772871942286315, 44.627663886279322 ], [ 20.77142500236198, 44.625183417580615 ], [ 20.770856560681693, 44.62104930338262 ], [ 20.770959914368518, 44.618672187471475 ], [ 20.771476678306044, 44.616346747504394 ], [ 20.772458530236975, 44.614202174690604 ], [ 20.774215529423145, 44.612160956462958 ], [ 20.781398553100701, 44.606657415807092 ], [ 20.783775669011902, 44.603582668805075 ], [ 20.785274285779622, 44.60006867133211 ], [ 20.785687696929642, 44.597045600274214 ], [ 20.785222608936238, 44.594875189938023 ], [ 20.783672316224397, 44.593169868494613 ], [ 20.781915317038226, 44.591593736461732 ], [ 20.780778436375726, 44.589991766906508 ], [ 20.780675082688902, 44.589242458972308 ], [ 20.781501905888206, 44.587588813472962 ], [ 20.783310581018497, 44.58596100549596 ], [ 20.785636020985578, 44.584462388728241 ], [ 20.788323195259238, 44.583222154378916 ], [ 20.795196160574335, 44.580845038467714 ], [ 20.797728306116426, 44.579294744856554 ], [ 20.799175246040761, 44.57810618824999 ], [ 20.800363804446022, 44.576814277057224 ], [ 20.801707390683532, 44.574798896351979 ], [ 20.805686476149958, 44.567822577350057 ], [ 20.806668328980209, 44.565032050288892 ], [ 20.806358269718373, 44.56319753673688 ], [ 20.804911329794038, 44.561466375972429 ], [ 20.802689242614463, 44.560045274469815 ], [ 20.800570510021032, 44.559244289692174 ], [ 20.798245070053895, 44.558675848911264 ], [ 20.788529900834249, 44.557383937718555 ], [ 20.786049432135542, 44.556867173781029 ], [ 20.783620640280333, 44.556169541790894 ], [ 20.775610793403359, 44.552939765157987 ], [ 20.764758741722517, 44.549890854779107 ], [ 20.761968214661351, 44.548753974116607 ], [ 20.759384393175196, 44.546996974930437 ], [ 20.75292483901012, 44.541700140748844 ], [ 20.751064487036444, 44.540537420765304 ], [ 20.741142612241731, 44.535679837054829 ], [ 20.737111850831241, 44.533044338725233 ], [ 20.750185987893019, 44.52255402314961 ], [ 20.75654218927059, 44.515681056935193 ], [ 20.757937453250861, 44.513484809076658 ], [ 20.758505894031771, 44.511676133946423 ], [ 20.758609246819276, 44.50426056627208 ], [ 20.759126010756802, 44.502219347145115 ], [ 20.762123244292297, 44.497490952845169 ], [ 20.764138624997543, 44.495992336976769 ], [ 20.766050652915283, 44.495423896195803 ], [ 20.771373324619219, 44.494416204943889 ], [ 20.779073114032997, 44.492013251510343 ], [ 20.787703077634887, 44.488111681309022 ], [ 20.804446241800576, 44.474029852995272 ], [ 20.816538526931481, 44.467466946042691 ], [ 20.819018995630131, 44.465813300543346 ], [ 20.821086053178817, 44.463952949469046 ], [ 20.824651726595903, 44.45919871674738 ], [ 20.826873813775478, 44.455038764127664 ], [ 20.831059604816915, 44.448501694697427 ], [ 20.836485630207676, 44.443023994261921 ], [ 20.837570834926055, 44.441525377494145 ], [ 20.838345982181295, 44.439871731095479 ], [ 20.838914422062885, 44.437649644815224 ], [ 20.839069451693831, 44.435427558534968 ], [ 20.838811069275437, 44.433257148198834 ], [ 20.838087598863581, 44.431138413806707 ], [ 20.836485630207676, 44.428864651582387 ], [ 20.824186638602498, 44.418736070313344 ], [ 20.821757846747232, 44.417082423914735 ], [ 20.819070671574195, 44.415893867308114 ], [ 20.81726199734328, 44.415480455258773 ], [ 20.814678175857125, 44.415428779314709 ], [ 20.811835971952519, 44.416048896039683 ], [ 20.793490838231605, 44.422275906208085 ], [ 20.791423780682919, 44.422818508567275 ], [ 20.787496372059934, 44.423386949348185 ], [ 20.783517286593508, 44.423567817400851 ], [ 20.779589877970466, 44.423386949348185 ], [ 20.775869174922491, 44.422792670145611 ], [ 20.769512974444183, 44.420751451018646 ], [ 20.759952833956106, 44.41832265916338 ], [ 20.758350864400882, 44.41754751190814 ], [ 20.7567488948456, 44.415997219196299 ], [ 20.75576704291467, 44.413981839390374 ], [ 20.755146926189695, 44.411398017004842 ], [ 20.754010043728499, 44.403129787709531 ], [ 20.75292483901012, 44.400623481488481 ], [ 20.751219516667334, 44.39868561514902 ], [ 20.748945754443014, 44.396954454384513 ], [ 20.740212437154241, 44.391864325777988 ], [ 20.735303175701006, 44.388350328304966 ], [ 20.733029412577309, 44.386283270756337 ], [ 20.731479119865469, 44.384061184476082 ], [ 20.730962355028623, 44.38204580287146 ], [ 20.731479119865469, 44.378531806297815 ], [ 20.732357619008894, 44.376464748749129 ], [ 20.733752882989165, 44.374320176834658 ], [ 20.736853469312166, 44.370211900159063 ], [ 20.742227816960167, 44.364165758043271 ], [ 20.752459751016659, 44.354553940711753 ], [ 20.755353630865329, 44.352383531274938 ], [ 20.757937453250861, 44.351143296925613 ], [ 20.759901157112722, 44.350704047353872 ], [ 20.762019890605472, 44.350574856144647 ], [ 20.764862095409342, 44.350859076984818 ], [ 20.772923618230379, 44.353003647999913 ], [ 20.775972527709996, 44.353365383205869 ], [ 20.779021437189556, 44.353313707261748 ], [ 20.781295200313252, 44.352926134533448 ], [ 20.783465609750067, 44.352280178487433 ], [ 20.785894403403972, 44.350962428872947 ], [ 20.787393019272429, 44.349179592164433 ], [ 20.787858107265833, 44.347370917034198 ], [ 20.787651400791503, 44.346027329897311 ], [ 20.786979608122408, 44.344761257126265 ], [ 20.785015903361227, 44.343185125992761 ], [ 20.779021437189556, 44.339774482206565 ], [ 20.770598179162619, 44.333935044766463 ], [ 20.767600945627123, 44.331222032071082 ], [ 20.766722445584378, 44.329852607411851 ], [ 20.765792271396208, 44.327242947503976 ], [ 20.765533888078437, 44.32445242044281 ], [ 20.765843947340272, 44.321636054060605 ], [ 20.766774123327139, 44.318948879786944 ], [ 20.769202915182348, 44.315202338317249 ], [ 20.770649855106683, 44.312489326521188 ], [ 20.771735059825119, 44.308226020214647 ], [ 20.772045119086954, 44.304996243581741 ], [ 20.772045119086954, 44.297761542161425 ], [ 20.757420689313335, 44.30535797788832 ], [ 20.750392694367349, 44.309647121717262 ], [ 20.748584019237057, 44.310939032910028 ], [ 20.747085401570018, 44.312385972834363 ], [ 20.742847934584518, 44.31714020375739 ], [ 20.738868849118091, 44.3200340854047 ], [ 20.736078322056926, 44.32137767254153 ], [ 20.731375767077964, 44.32269542125664 ], [ 20.728171827967458, 44.323134670828381 ], [ 20.71819827632936, 44.323806464396796 ], [ 20.712513869419524, 44.324736640383605 ], [ 20.710188428553124, 44.32540843395202 ], [ 20.707139519972827, 44.326752021088851 ], [ 20.698457878628176, 44.332126370535548 ], [ 20.694478794061069, 44.333624986403947 ], [ 20.690499708594643, 44.334658515178319 ], [ 20.687554151902589, 44.334916896697393 ], [ 20.684608595210477, 44.334710191122383 ], [ 20.677580601163811, 44.332901515992148 ], [ 20.664041375209308, 44.327888901751408 ], [ 20.649778679742269, 44.321842760534935 ], [ 20.640993687408752, 44.329930120878373 ], [ 20.635981073167954, 44.333780016034893 ], [ 20.634120721194336, 44.334761867965824 ], [ 20.627196079035798, 44.336699734305284 ], [ 20.624715610337148, 44.338017483020394 ], [ 20.622958612050297, 44.339774482206565 ], [ 20.622183464795057, 44.341273098074964 ], [ 20.621873407331861, 44.342823390786805 ], [ 20.622131788850936, 44.347784329083481 ], [ 20.62047814335159, 44.355742499117014 ], [ 20.61970299699567, 44.364269110830776 ], [ 20.619082879371376, 44.366956285104436 ], [ 20.618101027440446, 44.369023341753802 ], [ 20.616499057885221, 44.370728664995852 ], [ 20.614948765173381, 44.371658840982718 ], [ 20.611279738069413, 44.373002428119548 ], [ 20.609367710151673, 44.373415839269569 ], [ 20.606525506247124, 44.373674220788644 ], [ 20.603631626398396, 44.373415839269569 ], [ 20.600272657657001, 44.372537340126144 ], [ 20.595518425834655, 44.370547796943242 ], [ 20.588903842938009, 44.368144843509697 ], [ 20.573039177915689, 44.363907376524196 ], [ 20.565029331038772, 44.361116848563711 ], [ 20.552730340332914, 44.35873973175319 ], [ 20.546219110223717, 44.356414292685429 ], [ 20.543066847057332, 44.355587470385444 ], [ 20.540379672783672, 44.355484116698619 ], [ 20.538519320809996, 44.355845851904519 ], [ 20.536607292892256, 44.356517646372254 ], [ 20.534901971448789, 44.357499498303184 ], [ 20.53361006025608, 44.35879140949595 ], [ 20.532731561112655, 44.360341702207791 ], [ 20.531904737913294, 44.363028876481451 ], [ 20.531646356394219, 44.365922757229441 ], [ 20.532111444387624, 44.372020576188618 ], [ 20.532938266687665, 44.375069484768858 ], [ 20.53645226416063, 44.382924302914205 ], [ 20.537899204084965, 44.385663154031306 ], [ 20.521569451968617, 44.391347560941142 ], [ 20.509373814050264, 44.396825263175344 ], [ 20.505963169364748, 44.397807115106275 ], [ 20.501105583855576, 44.398375555887185 ], [ 20.497849968801006, 44.39847890957401 ], [ 20.487721388431339, 44.398013821580605 ], [ 20.485654330882653, 44.39827220309968 ], [ 20.483845655752418, 44.398892319824654 ], [ 20.477231072855716, 44.403749905333825 ], [ 20.469272901922864, 44.407780666744372 ], [ 20.466482374861698, 44.409408473821998 ], [ 20.456250440805206, 44.41620392477131 ], [ 20.453873324894005, 44.417134100758119 ], [ 20.451289504307169, 44.417857571169975 ], [ 20.448395622659859, 44.41832265916338 ], [ 20.442194451812497, 44.41889109994429 ], [ 20.433306104892836, 44.412844956929177 ], [ 20.427001580358649, 44.408219916316057 ], [ 20.424211053297483, 44.406514593973327 ], [ 20.421937290173787, 44.405610257307501 ], [ 20.419611851106026, 44.404938462839766 ], [ 20.41351403214685, 44.403775742856226 ], [ 20.41139529775478, 44.403233141396356 ], [ 20.409534945781104, 44.402561346928621 ], [ 20.407416213187673, 44.401114407004229 ], [ 20.402972038828523, 44.396876939119409 ], [ 20.398889600574591, 44.392536119346403 ], [ 20.397339307862751, 44.390624091428663 ], [ 20.39671919113772, 44.389332180235897 ], [ 20.396512484663447, 44.388427843570128 ], [ 20.396977572656851, 44.386179917968832 ], [ 20.39847619032389, 44.383441066851731 ], [ 20.399561395042326, 44.382149156558285 ], [ 20.405400831583108, 44.378118395147794 ], [ 20.41273888489161, 44.372589016070208 ], [ 20.415529412852095, 44.371193752989313 ], [ 20.419508498318521, 44.369591783434032 ], [ 20.422040642961292, 44.368196520353081 ], [ 20.426949904414528, 44.36375234599393 ], [ 20.431239048243469, 44.360264186942629 ], [ 20.43278934095531, 44.358222967815664 ], [ 20.433254428948715, 44.356982734365658 ], [ 20.433254428948715, 44.356104234322913 ], [ 20.432530959436235, 44.354553940711753 ], [ 20.431187372299348, 44.353107000787418 ], [ 20.423177525422432, 44.347887681870986 ], [ 20.419560174262642, 44.345045477966437 ], [ 20.418216587125755, 44.343753566773671 ], [ 20.411550327385669, 44.335847073583579 ], [ 20.408914829056073, 44.333108222466478 ], [ 20.404057245345598, 44.329284165731622 ], [ 20.401525098904187, 44.326881212298076 ], [ 20.400336541398246, 44.324736640383605 ], [ 20.400129835823236, 44.323728950031011 ], [ 20.400078158979852, 44.320085761348764 ], [ 20.400646599760762, 44.312696031196879 ], [ 20.400646599760762, 44.310163886554108 ], [ 20.400129835823236, 44.308096829005422 ], [ 20.3990446311048, 44.306236477031746 ], [ 20.397442660650256, 44.304479478744952 ], [ 20.392378371364714, 44.29977692286667 ], [ 20.389484490616724, 44.295539455881169 ], [ 20.389071078567383, 44.294299221531844 ], [ 20.384368523588478, 44.292542223244993 ], [ 20.377908970322721, 44.290785224058823 ], [ 20.37439497195038, 44.290371812908802 ], [ 20.3709326513208, 44.290268460121297 ], [ 20.363181186862278, 44.290836900002887 ], [ 20.360235630170166, 44.290707708793718 ], [ 20.358065219834032, 44.290216783277913 ], [ 20.356101515072851, 44.289441636921993 ], [ 20.352949252805729, 44.287012844167407 ], [ 20.350623813738025, 44.284429023580572 ], [ 20.349280225701818, 44.28241364197595 ], [ 20.346541374584774, 44.277556057366155 ], [ 20.344939405928812, 44.272698472756304 ], [ 20.344164259572892, 44.271199855988527 ], [ 20.343079053955137, 44.269856268851697 ], [ 20.341580438086737, 44.268667711345756 ], [ 20.333053827272295, 44.263190009111611 ], [ 20.33160688644864, 44.261846421974781 ], [ 20.328816359387474, 44.258487454132705 ], [ 20.326749301838788, 44.256575426214908 ], [ 20.324165480352633, 44.254973455760364 ], [ 20.318015985449335, 44.252337958330088 ], [ 20.313261752727669, 44.250994371193258 ], [ 20.309437696892189, 44.250477607255732 ], [ 20.307318963399439, 44.250735988774863 ], [ 20.305251905850753, 44.251304430455093 ], [ 20.297913853441571, 44.255076809447189 ], [ 20.293986443919209, 44.256420396584019 ], [ 20.29212609194559, 44.256730454946535 ], [ 20.290110711240288, 44.25662710215903 ], [ 20.288250360165989, 44.256162014165625 ], [ 20.286183301717983, 44.254921779816243 ], [ 20.284839714581153, 44.253268134316897 ], [ 20.284426304330452, 44.251407783242598 ], [ 20.284943068267978, 44.246421007423521 ], [ 20.284684685849584, 44.244379788296555 ], [ 20.283909538594287, 44.242493597901216 ], [ 20.282410922725887, 44.241124173241985 ], [ 20.280912305958111, 44.24060740840514 ], [ 20.279103630827876, 44.240452378774251 ], [ 20.275279574992396, 44.240917466767655 ], [ 20.269233432876604, 44.24195099554197 ], [ 20.264530876998379, 44.243372097044642 ], [ 20.261636997149708, 44.244793199446576 ], [ 20.259208205294442, 44.246653551420252 ], [ 20.256779413439176, 44.249289048850528 ], [ 20.251301711204974, 44.258435777289264 ], [ 20.248821241607004, 44.26145884924648 ], [ 20.246340772908354, 44.263267524376715 ], [ 20.240708041942582, 44.266652329741191 ], [ 20.226703728893938, 44.276212470229268 ], [ 20.220399204359751, 44.279881497333236 ], [ 20.216316766105876, 44.281948553982545 ], [ 20.21290612231968, 44.28435150831541 ], [ 20.210270623090764, 44.286702785804891 ], [ 20.205723096843428, 44.291922104721323 ], [ 20.199005161159221, 44.300500393278526 ], [ 20.19228722457575, 44.308148504949543 ], [ 20.187998080746809, 44.315796617519879 ], [ 20.187119581603383, 44.317889513490229 ], [ 20.187016228815878, 44.319930731717875 ], [ 20.188101434433634, 44.323341376403391 ], [ 20.189910108664549, 44.326131904363876 ], [ 20.191460402275709, 44.328043932281616 ], [ 20.19363081171258, 44.330162664875047 ], [ 20.200503777926997, 44.336260483834224 ], [ 20.202054070638837, 44.338430895069735 ], [ 20.202674188263188, 44.34044627487566 ], [ 20.202622511419747, 44.34256500926773 ], [ 20.201899041007891, 44.344580389972975 ], [ 20.200555453871061, 44.346337389159146 ], [ 20.198798454684948, 44.347991035557811 ], [ 20.193527458925075, 44.352125148856487 ], [ 20.19228722457575, 44.353572088780822 ], [ 20.191460402275709, 44.355122382391983 ], [ 20.190995314282304, 44.357215278362389 ], [ 20.191046991125745, 44.359282335011756 ], [ 20.191460402275709, 44.360755113357754 ], [ 20.192235548631629, 44.362098701393904 ], [ 20.194147577448746, 44.363804022837371 ], [ 20.197351514760555, 44.365871080386 ], [ 20.199211866734231, 44.367369697153777 ], [ 20.200038689933592, 44.369075019496506 ], [ 20.199263542678352, 44.373984280050479 ], [ 20.199676954727636, 44.375327867187309 ], [ 20.200607130714502, 44.376568102435954 ], [ 20.203707717037503, 44.37879018781689 ], [ 20.211097446290125, 44.382769273283316 ], [ 20.21347456220127, 44.384422918782661 ], [ 20.215334914174946, 44.386283270756337 ], [ 20.216678501311776, 44.388246975517461 ], [ 20.219313998742052, 44.393207912914818 ], [ 20.221691114653197, 44.399719143024015 ], [ 20.225773552907128, 44.407728989900932 ], [ 20.226497023318927, 44.410261135443022 ], [ 20.226807081681443, 44.412896632873299 ], [ 20.226807081681443, 44.418270982319939 ], [ 20.225980259381458, 44.42333527340412 ], [ 20.224946729707767, 44.425609036527817 ], [ 20.221536085921628, 44.430001533144207 ], [ 20.220502557147256, 44.431913561061947 ], [ 20.220244174728862, 44.434187324185643 ], [ 20.221174350715671, 44.438243924017854 ], [ 20.225360141757108, 44.445943712532255 ], [ 20.226135288113028, 44.447984930759901 ], [ 20.226445347374863, 44.449431871583556 ], [ 20.226341993688038, 44.451498928232922 ], [ 20.223706496257762, 44.458836982440744 ], [ 20.221381056290681, 44.468397122029558 ], [ 20.217556999555882, 44.478732407974235 ], [ 20.21424970855719, 44.481858831819636 ], [ 20.211304151865079, 44.484158434264316 ], [ 20.207996859967125, 44.486303006178787 ], [ 20.200865513132896, 44.489739488386647 ], [ 20.199108513946726, 44.490928045892588 ], [ 20.197764926809896, 44.492219957085354 ], [ 20.196834750823086, 44.493615221065568 ], [ 20.196369662829682, 44.495837307345823 ], [ 20.199935337146087, 44.506947740545741 ], [ 20.200142042721097, 44.508343004526012 ], [ 20.199831984358582, 44.510306708387873 ], [ 20.198385044434247, 44.512657985877297 ], [ 20.19419925339281, 44.517205512124633 ], [ 20.19249393105008, 44.519556790513434 ], [ 20.19171878379484, 44.521572171218679 ], [ 20.190220167926384, 44.527928371696987 ], [ 20.190323520713889, 44.532837633150223 ], [ 20.189961786407309, 44.534904689799589 ], [ 20.18939334472708, 44.536299953779803 ], [ 20.187274611234329, 44.53955556883443 ], [ 20.186086052829069, 44.540744127239634 ], [ 20.184742465692239, 44.541777656014006 ], [ 20.182417025725158, 44.542914537575825 ], [ 20.180711704281691, 44.543224595938341 ], [ 20.178954705095521, 44.543121243150836 ], [ 20.176577590083696, 44.542268582429131 ], [ 20.17528567889093, 44.54126089117716 ], [ 20.172650180561391, 44.538444525694274 ], [ 20.170376418337014, 44.534904689799589 ], [ 20.169446242350205, 44.528083401327876 ], [ 20.167947624683109, 44.525318711789112 ], [ 20.165467156883778, 44.52239899441804 ], [ 20.161074660267332, 44.518600776104904 ], [ 20.15833580915023, 44.515629380991129 ], [ 20.156268751601601, 44.512838853929964 ], [ 20.153994989377225, 44.508704738832591 ], [ 20.151566195723319, 44.50578502146152 ], [ 20.148000523205553, 44.50348541901684 ], [ 20.144434848889148, 44.501676743886605 ], [ 20.13022383026555, 44.495578924927429 ], [ 20.127795038410284, 44.495165513777408 ], [ 20.125366244756378, 44.495708116136655 ], [ 20.123299188107012, 44.497103380116869 ], [ 20.121542188920841, 44.498989570512265 ], [ 20.115496046805106, 44.507051093333246 ], [ 20.10981163899595, 44.512838853929964 ], [ 20.108881463009084, 44.514234117010858 ], [ 20.105832554428844, 44.52043528875754 ], [ 20.103972201555848, 44.52239899441804 ], [ 20.101440056913077, 44.524000963073945 ], [ 20.099373000263711, 44.524827786273306 ], [ 20.09513553237889, 44.525964666935806 ], [ 20.089864535719755, 44.526274726197641 ], [ 20.081803012898717, 44.525912990991742 ], [ 20.077772250588851, 44.525551255785786 ], [ 20.074051548440195, 44.524724433485801 ], [ 20.07027916764946, 44.523096625508856 ], [ 20.067075230337593, 44.520977892016106 ], [ 20.065008171889588, 44.519091702520029 ], [ 20.060615676172517, 44.512993883560853 ], [ 20.059272088136368, 44.511805325155592 ], [ 20.056894972225166, 44.510203354701048 ], [ 20.053070916389686, 44.508859768463537 ], [ 20.047489862267298, 44.507516181326707 ], [ 20.044699334306813, 44.507154446120751 ], [ 20.043407424013367, 44.507231961385912 ], [ 20.040668572896323, 44.507877916532607 ], [ 20.035087517874615, 44.510048325969422 ], [ 20.024080438361523, 44.512890529874028 ], [ 20.021961703969453, 44.513717353073389 ], [ 20.016277297059617, 44.516533718556218 ], [ 20.014106885824106, 44.517308864912138 ], [ 20.011729770812281, 44.517903144114769 ], [ 20.007802362189238, 44.518471584895678 ], [ 19.999740837569561, 44.51929840809504 ], [ 19.995916781734081, 44.520021878506839 ], [ 19.993901401028836, 44.52064199523187 ], [ 19.989973993305114, 44.522347317574599 ], [ 19.988165317275559, 44.523432522293035 ], [ 19.985994906939368, 44.52524119742327 ], [ 19.983669467871607, 44.527902534174586 ], [ 19.981654087166362, 44.529711209304821 ], [ 19.976124708988095, 44.533147691512738 ], [ 19.97410932828285, 44.534697984224579 ], [ 19.972300653152615, 44.536403307466628 ], [ 19.969561802035514, 44.539813951252825 ], [ 19.967391391699323, 44.543482978356735 ], [ 19.966202834193439, 44.546635239724537 ], [ 19.966151157349998, 44.549012356535002 ], [ 19.967443067643444, 44.554722601866558 ], [ 19.967753126905279, 44.557538967349444 ], [ 19.970233594704609, 44.559295966535615 ], [ 19.970802036384839, 44.559761054529019 ], [ 19.970957066015785, 44.55999359852575 ], [ 19.971112094747355, 44.560277818466545 ], [ 19.971112094747355, 44.560897936090839 ], [ 19.971060417903971, 44.56477366787044 ], [ 19.971008741959849, 44.575832424226974 ], [ 19.970181918760545, 44.580922552833499 ], [ 19.969251742773679, 44.583170478434795 ], [ 19.968321566786869, 44.58461741835913 ], [ 19.963360630288832, 44.589371650181477 ], [ 19.961758660733608, 44.591490382774907 ], [ 19.961241895896762, 44.592782293967673 ], [ 19.961190219952698, 44.593712469954482 ], [ 19.961965366308618, 44.595831204346553 ], [ 19.968114862111179, 44.602652492818265 ], [ 19.968579950104584, 44.603996079955095 ], [ 19.968579950104584, 44.605365506412966 ], [ 19.967288038911875, 44.609809678973477 ], [ 19.973382301000072, 44.64118479800004 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-10", "NAME_1": "Podunavski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.794776175000038, 44.664677444000063 ], [ 20.82647009100009, 44.660928974000058 ], [ 20.883210815000041, 44.672659525000086 ], [ 20.989560912000059, 44.716791198000067 ], [ 21.036835538000048, 44.722009490000062 ], [ 21.037093540034846, 44.711457221473552 ], [ 21.040349155089416, 44.70259471297561 ], [ 21.047428826878843, 44.697478745947365 ], [ 21.058435907291255, 44.696341865284808 ], [ 21.05626549695512, 44.691794339037472 ], [ 21.053009881001174, 44.679882921059914 ], [ 21.050994500295928, 44.675206204502729 ], [ 21.059159376803791, 44.670865382931026 ], [ 21.073835483420794, 44.66040090577718 ], [ 21.07895145044904, 44.655362454014039 ], [ 21.066290723637962, 44.64399363929499 ], [ 21.087788119625998, 44.619757392189854 ], [ 21.085152622195722, 44.600740464900525 ], [ 21.105616489409442, 44.600662950534741 ], [ 21.11770877543961, 44.598776760139344 ], [ 21.125615268629701, 44.592575589291982 ], [ 21.133573438663234, 44.57963064254011 ], [ 21.140394728034266, 44.563740139096126 ], [ 21.140549757665156, 44.551441148390268 ], [ 21.133883497925069, 44.541312568020601 ], [ 21.119879184876481, 44.531855781219292 ], [ 21.119879184876481, 44.525034491848317 ], [ 21.135330437849404, 44.521908067103595 ], [ 21.142565138370401, 44.510203354701048 ], [ 21.147060987774353, 44.500746567899739 ], [ 21.154657424400625, 44.504518947791212 ], [ 21.16085859524793, 44.504518947791212 ], [ 21.15894656733019, 44.499816392812249 ], [ 21.154657424400625, 44.484055081476811 ], [ 21.162253859228201, 44.48265981749654 ], [ 21.166129591907122, 44.480670274313695 ], [ 21.169230178230123, 44.478499863977504 ], [ 21.174501173989995, 44.476613674481484 ], [ 21.167834914249852, 44.474753323407128 ], [ 21.165199415920313, 44.472686265858442 ], [ 21.162253859228201, 44.472531236227553 ], [ 21.154657424400625, 44.476613674481484 ], [ 21.147216017405242, 44.456123968846043 ], [ 21.157189569043339, 44.452480781063173 ], [ 21.165354444651882, 44.448450018753363 ], [ 21.171245558036048, 44.443127346150106 ], [ 21.174501173989995, 44.435634264109979 ], [ 21.146285842317752, 44.435220852060638 ], [ 21.131247999595473, 44.42581574210277 ], [ 21.124168328705366, 44.411113797064047 ], [ 21.119879184876481, 44.394654852839153 ], [ 21.11502160026663, 44.382562567708305 ], [ 21.111300897218598, 44.376516424693193 ], [ 21.110215691600843, 44.370987047414303 ], [ 21.113057896404769, 44.360548407782744 ], [ 21.118949008889615, 44.354915675917709 ], [ 21.127010531710653, 44.351220812190718 ], [ 21.131558057957989, 44.345200506698006 ], [ 21.126700474247457, 44.332591458528952 ], [ 21.141945020746107, 44.325692653892816 ], [ 21.145200635800677, 44.31734691023172 ], [ 21.137500848185596, 44.311688340844228 ], [ 21.119879184876481, 44.312747708040263 ], [ 21.119879184876481, 44.305306301044936 ], [ 21.126700474247457, 44.305306301044936 ], [ 21.126700474247457, 44.299105130197574 ], [ 21.119879184876481, 44.299105130197574 ], [ 21.119879184876481, 44.292258002404878 ], [ 21.134038526656639, 44.286599433017386 ], [ 21.152331984433545, 44.2629833035366 ], [ 21.168300002243313, 44.258125718926749 ], [ 21.168300002243313, 44.250684312830742 ], [ 21.147216017405242, 44.243863023459767 ], [ 21.147216017405242, 44.23699005814467 ], [ 21.151763542753258, 44.232029119847994 ], [ 21.153417189151924, 44.229419460839438 ], [ 21.151866896440083, 44.225621243425621 ], [ 21.147216017405242, 44.2171463085553 ], [ 21.150161574097353, 44.214820867688843 ], [ 21.151298454759853, 44.214200750963869 ], [ 21.152331984433545, 44.213218899032938 ], [ 21.154657424400625, 44.209704902459237 ], [ 21.133573438663234, 44.209704902459237 ], [ 21.154657424400625, 44.195442206092935 ], [ 21.144167107925682, 44.193013414237669 ], [ 21.139309523315831, 44.185520331298221 ], [ 21.139154493684941, 44.183324083439686 ], [ 21.132849969150755, 44.186114610500852 ], [ 21.127630650234323, 44.190067857545557 ], [ 21.126028679779722, 44.190998033532424 ], [ 21.122566359150142, 44.192548326244264 ], [ 21.117295363390269, 44.193943590224478 ], [ 21.113781365917305, 44.194408678217883 ], [ 21.103601107804877, 44.195183824573803 ], [ 21.100448846437075, 44.195700589410649 ], [ 21.098071729626611, 44.19632070613568 ], [ 21.09595299703318, 44.197199205279048 ], [ 21.090837030004934, 44.200299790702729 ], [ 21.088614942825359, 44.20128164353298 ], [ 21.086289503757598, 44.201798408369825 ], [ 21.084945915721391, 44.201798408369825 ], [ 21.082155388660226, 44.20133332037642 ], [ 21.074300571414199, 44.19921458598435 ], [ 21.072181837921448, 44.19880117393501 ], [ 21.069029574755064, 44.198697822046825 ], [ 21.061278110296541, 44.199524645246186 ], [ 21.051511265132774, 44.199938056396149 ], [ 21.041331007919666, 44.205105699368517 ], [ 21.020247023081652, 44.214820867688843 ], [ 21.01538943937112, 44.216061102937545 ], [ 21.005674269252097, 44.217249661342748 ], [ 21.002573682929096, 44.217818102123715 ], [ 20.996269159294229, 44.220040188403971 ], [ 20.992341749771924, 44.222003893165095 ], [ 20.985727165975902, 44.226706448144057 ], [ 20.979474318285156, 44.230065415986132 ], [ 20.977458936680591, 44.231874091116367 ], [ 20.976011996756256, 44.234096178295943 ], [ 20.975236851299655, 44.236318264576198 ], [ 20.97394494010689, 44.246756904207757 ], [ 20.973893263263449, 44.259004218070174 ], [ 20.954566277611605, 44.252131252755078 ], [ 20.949863721733379, 44.250684312830742 ], [ 20.941905551699847, 44.249340724794592 ], [ 20.933947380766995, 44.246911932939327 ], [ 20.930226677718963, 44.246291816214296 ], [ 20.918651157424961, 44.245309964283422 ], [ 20.914930454376929, 44.244689845759751 ], [ 20.906920606600693, 44.242261053904485 ], [ 20.903975050807958, 44.241899318698586 ], [ 20.901029494115846, 44.241899318698586 ], [ 20.898910759723776, 44.24213186269526 ], [ 20.89684370307441, 44.242622789110385 ], [ 20.891366000840264, 44.245180772174876 ], [ 20.888420444148153, 44.246317653736696 ], [ 20.886146681024513, 44.246886095416926 ], [ 20.883821241956753, 44.247221992201162 ], [ 20.880927362108082, 44.247351183410387 ], [ 20.876896599798215, 44.247170315357721 ], [ 20.87410607273705, 44.247377020932731 ], [ 20.871935663300178, 44.247842108926136 ], [ 20.869971957639734, 44.248617255282056 ], [ 20.868214959352883, 44.249702460000492 ], [ 20.863357374743032, 44.253216458372833 ], [ 20.858034702139776, 44.256472073427403 ], [ 20.853642204624009, 44.258332424501759 ], [ 20.849508091325333, 44.259676012537909 ], [ 20.846355829058268, 44.260141100531314 ], [ 20.843100213104321, 44.260244452419499 ], [ 20.83979292210563, 44.259986070001105 ], [ 20.828475783330703, 44.258409938867544 ], [ 20.816331821356471, 44.257634793410944 ], [ 20.816021762993955, 44.263810125836642 ], [ 20.815556675000551, 44.266600653797127 ], [ 20.813644647082754, 44.272750148700368 ], [ 20.813851352657764, 44.274713854360868 ], [ 20.814781527745311, 44.276445014225999 ], [ 20.81628014541235, 44.27802114535956 ], [ 20.820879346704487, 44.281586818776645 ], [ 20.823153109828127, 44.28396393468779 ], [ 20.823721550609037, 44.285333360246341 ], [ 20.823669874664972, 44.286702785804891 ], [ 20.823049757939941, 44.287839667366711 ], [ 20.821964553221562, 44.288873196141083 ], [ 20.819535759567657, 44.290268460121297 ], [ 20.816383498199855, 44.291534531993022 ], [ 20.809303827309748, 44.293627427963429 ], [ 20.806099888199242, 44.294247544688403 ], [ 20.79126875195135, 44.296572983756164 ], [ 20.772045119086954, 44.297761542161425 ], [ 20.772045119086954, 44.304996243581741 ], [ 20.771735059825119, 44.308226020214647 ], [ 20.770649855106683, 44.312489326521188 ], [ 20.769202915182348, 44.315202338317249 ], [ 20.766774123327139, 44.318948879786944 ], [ 20.765843947340272, 44.321636054060605 ], [ 20.765533888078437, 44.32445242044281 ], [ 20.765792271396208, 44.327242947503976 ], [ 20.766722445584378, 44.329852607411851 ], [ 20.767600945627123, 44.331222032071082 ], [ 20.770598179162619, 44.333935044766463 ], [ 20.779021437189556, 44.339774482206565 ], [ 20.785015903361227, 44.343185125992761 ], [ 20.786979608122408, 44.344761257126265 ], [ 20.787651400791503, 44.346027329897311 ], [ 20.787858107265833, 44.347370917034198 ], [ 20.787393019272429, 44.349179592164433 ], [ 20.785894403403972, 44.350962428872947 ], [ 20.783465609750067, 44.352280178487433 ], [ 20.781295200313252, 44.352926134533448 ], [ 20.779021437189556, 44.353313707261748 ], [ 20.775972527709996, 44.353365383205869 ], [ 20.772923618230379, 44.353003647999913 ], [ 20.764862095409342, 44.350859076984818 ], [ 20.762019890605472, 44.350574856144647 ], [ 20.759901157112722, 44.350704047353872 ], [ 20.757937453250861, 44.351143296925613 ], [ 20.755353630865329, 44.352383531274938 ], [ 20.752459751016659, 44.354553940711753 ], [ 20.742227816960167, 44.364165758043271 ], [ 20.736853469312166, 44.370211900159063 ], [ 20.733752882989165, 44.374320176834658 ], [ 20.732357619008894, 44.376464748749129 ], [ 20.731479119865469, 44.378531806297815 ], [ 20.730962355028623, 44.38204580287146 ], [ 20.731479119865469, 44.384061184476082 ], [ 20.733029412577309, 44.386283270756337 ], [ 20.735303175701006, 44.388350328304966 ], [ 20.740212437154241, 44.391864325777988 ], [ 20.748945754443014, 44.396954454384513 ], [ 20.751219516667334, 44.39868561514902 ], [ 20.75292483901012, 44.400623481488481 ], [ 20.754010043728499, 44.403129787709531 ], [ 20.755146926189695, 44.411398017004842 ], [ 20.75576704291467, 44.413981839390374 ], [ 20.7567488948456, 44.415997219196299 ], [ 20.758350864400882, 44.41754751190814 ], [ 20.759952833956106, 44.41832265916338 ], [ 20.769512974444183, 44.420751451018646 ], [ 20.775869174922491, 44.422792670145611 ], [ 20.779589877970466, 44.423386949348185 ], [ 20.783517286593508, 44.423567817400851 ], [ 20.787496372059934, 44.423386949348185 ], [ 20.791423780682919, 44.422818508567275 ], [ 20.793490838231605, 44.422275906208085 ], [ 20.811835971952519, 44.416048896039683 ], [ 20.814678175857125, 44.415428779314709 ], [ 20.81726199734328, 44.415480455258773 ], [ 20.819070671574195, 44.415893867308114 ], [ 20.821757846747232, 44.417082423914735 ], [ 20.824186638602498, 44.418736070313344 ], [ 20.836485630207676, 44.428864651582387 ], [ 20.838087598863581, 44.431138413806707 ], [ 20.838811069275437, 44.433257148198834 ], [ 20.839069451693831, 44.435427558534968 ], [ 20.838914422062885, 44.437649644815224 ], [ 20.838345982181295, 44.439871731095479 ], [ 20.837570834926055, 44.441525377494145 ], [ 20.836485630207676, 44.443023994261921 ], [ 20.831059604816915, 44.448501694697427 ], [ 20.826873813775478, 44.455038764127664 ], [ 20.824651726595903, 44.45919871674738 ], [ 20.821086053178817, 44.463952949469046 ], [ 20.819018995630131, 44.465813300543346 ], [ 20.816538526931481, 44.467466946042691 ], [ 20.804446241800576, 44.474029852995272 ], [ 20.787703077634887, 44.488111681309022 ], [ 20.779073114032997, 44.492013251510343 ], [ 20.771373324619219, 44.494416204943889 ], [ 20.766050652915283, 44.495423896195803 ], [ 20.764138624997543, 44.495992336976769 ], [ 20.762123244292297, 44.497490952845169 ], [ 20.759126010756802, 44.502219347145115 ], [ 20.758609246819276, 44.50426056627208 ], [ 20.758505894031771, 44.511676133946423 ], [ 20.757937453250861, 44.513484809076658 ], [ 20.75654218927059, 44.515681056935193 ], [ 20.750185987893019, 44.52255402314961 ], [ 20.737111850831241, 44.533044338725233 ], [ 20.741142612241731, 44.535679837054829 ], [ 20.751064487036444, 44.540537420765304 ], [ 20.75292483901012, 44.541700140748844 ], [ 20.759384393175196, 44.546996974930437 ], [ 20.761968214661351, 44.548753974116607 ], [ 20.764758741722517, 44.549890854779107 ], [ 20.775610793403359, 44.552939765157987 ], [ 20.783620640280333, 44.556169541790894 ], [ 20.786049432135542, 44.556867173781029 ], [ 20.788529900834249, 44.557383937718555 ], [ 20.798245070053895, 44.558675848911264 ], [ 20.800570510021032, 44.559244289692174 ], [ 20.802689242614463, 44.560045274469815 ], [ 20.804911329794038, 44.561466375972429 ], [ 20.806358269718373, 44.56319753673688 ], [ 20.806668328980209, 44.565032050288892 ], [ 20.805686476149958, 44.567822577350057 ], [ 20.801707390683532, 44.574798896351979 ], [ 20.800363804446022, 44.576814277057224 ], [ 20.799175246040761, 44.57810618824999 ], [ 20.797728306116426, 44.579294744856554 ], [ 20.795196160574335, 44.580845038467714 ], [ 20.788323195259238, 44.583222154378916 ], [ 20.785636020985578, 44.584462388728241 ], [ 20.783310581018497, 44.58596100549596 ], [ 20.781501905888206, 44.587588813472962 ], [ 20.780675082688902, 44.589242458972308 ], [ 20.780778436375726, 44.589991766906508 ], [ 20.781915317038226, 44.591593736461732 ], [ 20.783672316224397, 44.593169868494613 ], [ 20.785222608936238, 44.594875189938023 ], [ 20.785687696929642, 44.597045600274214 ], [ 20.785274285779622, 44.60006867133211 ], [ 20.783775669011902, 44.603582668805075 ], [ 20.781398553100701, 44.606657415807092 ], [ 20.774215529423145, 44.612160956462958 ], [ 20.772458530236975, 44.614202174690604 ], [ 20.771476678306044, 44.616346747504394 ], [ 20.770959914368518, 44.618672187471475 ], [ 20.770856560681693, 44.62104930338262 ], [ 20.77142500236198, 44.625183417580615 ], [ 20.772871942286315, 44.627663886279322 ], [ 20.774990675779065, 44.630041002190467 ], [ 20.778194613990252, 44.632883206095073 ], [ 20.794776175000038, 44.664677444000063 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-20", "NAME_1": "Nišavski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.49334476085204, 43.347380276478532 ], [ 21.490089145797413, 43.347431952422653 ], [ 21.487350294680311, 43.348310452465398 ], [ 21.485128208400056, 43.349912421121303 ], [ 21.4794438005909, 43.35663035680551 ], [ 21.469418573008738, 43.367818305270532 ], [ 21.473914422412633, 43.369291082717268 ], [ 21.481614210927091, 43.371409817109338 ], [ 21.492466260809294, 43.373476873758705 ], [ 21.49489505356388, 43.374122829804719 ], [ 21.497117139844136, 43.37494965300408 ], [ 21.502698194865786, 43.37779185600931 ], [ 21.504816929257856, 43.378644518529711 ], [ 21.511586540886128, 43.380711575179021 ], [ 21.513188511340729, 43.381538398378382 ], [ 21.514842156840075, 43.383088691090222 ], [ 21.515927361558454, 43.385026557429683 ], [ 21.517477655169614, 43.389134833205958 ], [ 21.51856285988805, 43.391124376388859 ], [ 21.52011315259989, 43.39285553625399 ], [ 21.530810173750524, 43.399082547321655 ], [ 21.533135613717604, 43.400271103928276 ], [ 21.535616082416254, 43.401227118336806 ], [ 21.537734815909005, 43.40169220633021 ], [ 21.53995690308858, 43.401847235961156 ], [ 21.548586866690528, 43.401278795180247 ], [ 21.549878777883293, 43.401433823911816 ], [ 21.552565952156954, 43.402312323954561 ], [ 21.554839715280593, 43.403810939823018 ], [ 21.564141473350276, 43.4134744330986 ], [ 21.565640090118052, 43.415567328169629 ], [ 21.566518589261477, 43.4176860625617 ], [ 21.566880323568057, 43.419933987263676 ], [ 21.566776970780552, 43.424429837566947 ], [ 21.566156854055578, 43.426600247003762 ], [ 21.565330030856217, 43.428202216559043 ], [ 21.564141473350276, 43.429700833326763 ], [ 21.558302035910231, 43.43486847629913 ], [ 21.555718215323338, 43.437659003360295 ], [ 21.553237745725369, 43.441017971202371 ], [ 21.551480747438518, 43.443860175106977 ], [ 21.549362013046448, 43.450371406115494 ], [ 21.548380161115517, 43.452438462764803 ], [ 21.543625929293171, 43.458329576148969 ], [ 21.542592401418176, 43.46029328091015 ], [ 21.542592401418176, 43.462153631984506 ], [ 21.543367546874777, 43.463910631170677 ], [ 21.546933221191182, 43.469284979717997 ], [ 21.548173454641187, 43.472023830835099 ], [ 21.548276808328012, 43.47398753469696 ], [ 21.545589634054352, 43.483702703916606 ], [ 21.545899692416867, 43.485563055890282 ], [ 21.546984898034623, 43.487268378233068 ], [ 21.548586866690528, 43.488818670944909 ], [ 21.55385786334972, 43.492694404523149 ], [ 21.55520144958723, 43.49403799076066 ], [ 21.558870476691141, 43.499050605001401 ], [ 21.564399854869407, 43.504321600761216 ], [ 21.565485059587786, 43.505820217528992 ], [ 21.566311882787147, 43.507448025505937 ], [ 21.566983677254882, 43.509644273364472 ], [ 21.567242058773957, 43.511892198066448 ], [ 21.566983677254882, 43.516413885892121 ], [ 21.566311882787147, 43.518532620284191 ], [ 21.565433383643722, 43.520134588940095 ], [ 21.564193150193717, 43.521529852920366 ], [ 21.562539503795051, 43.522770087269691 ], [ 21.553547804087884, 43.528092759872948 ], [ 21.547605014759597, 43.533725490838719 ], [ 21.542489047731351, 43.53703278273673 ], [ 21.54031863829448, 43.53873810507946 ], [ 21.538871698370144, 43.540701808941321 ], [ 21.538303256689915, 43.542717190545886 ], [ 21.538354932634036, 43.544732571251132 ], [ 21.538768344683319, 43.547523098312297 ], [ 21.53861331595175, 43.549486803073478 ], [ 21.537993198327399, 43.550933742997813 ], [ 21.5369079927097, 43.552225654190579 ], [ 21.534634229586004, 43.553672594114914 ], [ 21.528949822676168, 43.556049710026059 ], [ 21.525229119628136, 43.557961737943799 ], [ 21.523472121341285, 43.55915029634906 ], [ 21.522180210148576, 43.560545559430011 ], [ 21.521198358217646, 43.562147528985236 ], [ 21.520371535018285, 43.564369615265491 ], [ 21.519389683087411, 43.568297023888533 ], [ 21.51820112468215, 43.571087550949699 ], [ 21.516599155126869, 43.573774726122679 ], [ 21.51396365679733, 43.57708201802069 ], [ 21.507504102632197, 43.57842560515752 ], [ 21.503473342121026, 43.580130927500306 ], [ 21.500527785428915, 43.580906073856227 ], [ 21.495928582338195, 43.582766424930526 ], [ 21.48099409420206, 43.586280423302867 ], [ 21.48078738772773, 43.587210598390357 ], [ 21.478720330179101, 43.591706447794309 ], [ 21.478203566241575, 43.5938768581305 ], [ 21.478823682966606, 43.595633857316614 ], [ 21.48021894694682, 43.597184150028454 ], [ 21.481924269289607, 43.598424384377836 ], [ 21.491019320884959, 43.603514512984361 ], [ 21.489830763379018, 43.613849798929039 ], [ 21.491639439408573, 43.61927582521912 ], [ 21.494481642413859, 43.622763984270421 ], [ 21.498460727880286, 43.625244452069808 ], [ 21.503473342121026, 43.627518216092767 ], [ 21.497892287099376, 43.629068507905288 ], [ 21.494429965570419, 43.631109727931573 ], [ 21.490140821741534, 43.632892563740825 ], [ 21.482389357283012, 43.633719386940129 ], [ 21.487040236317853, 43.644726467352541 ], [ 21.486575148324391, 43.65361481427226 ], [ 21.482544386014581, 43.66128876436494 ], [ 21.47618818463701, 43.668471788042552 ], [ 21.469987012890329, 43.668471788042552 ], [ 21.471847364864004, 43.684620673005611 ], [ 21.472467481588978, 43.686015936985882 ], [ 21.473552687206734, 43.687256171335207 ], [ 21.475102979918574, 43.688160508900353 ], [ 21.47696333189225, 43.688806464047047 ], [ 21.478720330179101, 43.689116523308883 ], [ 21.481407505352081, 43.689090684887162 ], [ 21.489003941078977, 43.687359524122712 ], [ 21.491794468140199, 43.687359524122712 ], [ 21.49468834798887, 43.687979640847743 ], [ 21.499752638173675, 43.689839992821362 ], [ 21.501871371666425, 43.690821844752293 ], [ 21.504455194051957, 43.692320462419389 ], [ 21.506625604388091, 43.694025783862799 ], [ 21.507762485050648, 43.695266018212124 ], [ 21.508589308249952, 43.696557929404889 ], [ 21.508899366612468, 43.698521633266751 ], [ 21.506522250701266, 43.707926744123938 ], [ 21.503628370852596, 43.715264798331759 ], [ 21.502594842078281, 43.717331854981126 ], [ 21.501251254941451, 43.71893382453635 ], [ 21.499390902967775, 43.720277410773861 ], [ 21.496497023119105, 43.721465969179121 ], [ 21.493551467326313, 43.722111925225136 ], [ 21.487298617836927, 43.722912910002776 ], [ 21.484198032413246, 43.72353302672775 ], [ 21.480322299734325, 43.724928289808702 ], [ 21.47830691902908, 43.725858465795511 ], [ 21.476601596686294, 43.727047024200772 ], [ 21.475309686392904, 43.728416449759322 ], [ 21.474327833562654, 43.730018419314604 ], [ 21.47350101126267, 43.732576402379038 ], [ 21.472415805644914, 43.738157457400689 ], [ 21.471537305602169, 43.741051337249417 ], [ 21.470142043420537, 43.743790188366461 ], [ 21.468385044234367, 43.746374009852673 ], [ 21.465904574636397, 43.749422919332233 ], [ 21.47830691902908, 43.75707103100325 ], [ 21.484611443563267, 43.760481675688766 ], [ 21.487298617836927, 43.761618557250586 ], [ 21.493189732120413, 43.763478909224261 ], [ 21.497117139844136, 43.765029201936102 ], [ 21.501251254941451, 43.766941229853842 ], [ 21.506625604388091, 43.769964300911738 ], [ 21.508692661037458, 43.770791124111042 ], [ 21.51685753844464, 43.772780667293944 ], [ 21.5210433285867, 43.774382635949848 ], [ 21.530241732969557, 43.780635484539971 ], [ 21.532928908142594, 43.782082424464306 ], [ 21.539853550301075, 43.784769598737967 ], [ 21.542385694943846, 43.786087348352396 ], [ 21.545072870116826, 43.788206081845203 ], [ 21.547346633240522, 43.789549668982033 ], [ 21.549206984314878, 43.790143948184664 ], [ 21.554374627287189, 43.790815741753079 ], [ 21.563883090931881, 43.791590888108999 ], [ 21.566932000411498, 43.792107652046468 ], [ 21.574993524131798, 43.794588120745175 ], [ 21.578042432712095, 43.7950790471603 ], [ 21.58119469587848, 43.795285752735253 ], [ 21.587499220412667, 43.795001532794458 ], [ 21.590548129892284, 43.794433092013549 ], [ 21.5985579767692, 43.791797594583272 ], [ 21.601555210304696, 43.791229152903043 ], [ 21.607911410782947, 43.790919094540584 ], [ 21.611115349893453, 43.791125800115537 ], [ 21.614164260272389, 43.791616726530663 ], [ 21.622380811824996, 43.794381415170164 ], [ 21.632767774613114, 43.79717194313065 ], [ 21.63938235840908, 43.799807441460246 ], [ 21.645996942205102, 43.80293386530559 ], [ 21.662068311903056, 43.786061509930732 ], [ 21.664238722239247, 43.784097805169552 ], [ 21.667029250199732, 43.782521674035991 ], [ 21.679741652055554, 43.777069811122885 ], [ 21.683927443096991, 43.7746410183683 ], [ 21.686562941426587, 43.772418932088044 ], [ 21.692764113173268, 43.766062729811097 ], [ 21.703874546373186, 43.75634756149077 ], [ 21.694004346623274, 43.749888007325637 ], [ 21.691265497304812, 43.748906155394707 ], [ 21.682790562434491, 43.747252508996041 ], [ 21.680775180829926, 43.746554877005963 ], [ 21.67813968339965, 43.745082099559227 ], [ 21.676744419419379, 43.743945217098087 ], [ 21.675607537857559, 43.742756660491466 ], [ 21.673850538671388, 43.739656074168465 ], [ 21.673643833096378, 43.738415838919821 ], [ 21.674005568302334, 43.737123927727055 ], [ 21.674987420233265, 43.735935370221114 ], [ 21.676537712945105, 43.73495351829024 ], [ 21.678501417706229, 43.734152534411919 ], [ 21.685736118227283, 43.731749579179734 ], [ 21.688526646187768, 43.730250963311278 ], [ 21.690697055624582, 43.728390611337602 ], [ 21.694831169822635, 43.723584703571191 ], [ 21.69896528491995, 43.719760646836335 ], [ 21.699947136850881, 43.718262030967935 ], [ 21.70046390078835, 43.716711738256095 ], [ 21.70046390078835, 43.714670519129129 ], [ 21.699843784063376, 43.713146063939689 ], [ 21.69875857934494, 43.711699124015354 ], [ 21.695399610603545, 43.709270331260768 ], [ 21.690593702837077, 43.706479804199603 ], [ 21.685684442283161, 43.703947659556832 ], [ 21.683824090309486, 43.702604072420002 ], [ 21.683048943953565, 43.7013638371713 ], [ 21.682842238378555, 43.70002025003447 ], [ 21.683255650427895, 43.698624986054256 ], [ 21.683875767152927, 43.698030706851625 ], [ 21.685994499746357, 43.692320462419389 ], [ 21.687441440570012, 43.686429348135903 ], [ 21.688164910981811, 43.670409654382013 ], [ 21.688629998075953, 43.667825832895858 ], [ 21.689560174062763, 43.665397040141272 ], [ 21.691213819562108, 43.663329983491906 ], [ 21.698138461720589, 43.658058986832771 ], [ 21.69932702012585, 43.656612046908435 ], [ 21.700205519269275, 43.655010077353154 ], [ 21.70087731283769, 43.652891343860404 ], [ 21.70222089997452, 43.646173408176196 ], [ 21.703151075961387, 43.644054673784126 ], [ 21.704908075147557, 43.641780911559806 ], [ 21.714623244367203, 43.633435166999334 ], [ 21.716638625072449, 43.631238919140799 ], [ 21.71937747618955, 43.627311510517757 ], [ 21.72185794398888, 43.624753526554002 ], [ 21.72418338395596, 43.622919013002047 ], [ 21.733588494813148, 43.61795807650401 ], [ 21.738187697004605, 43.615012518912579 ], [ 21.742373488046042, 43.611808579802073 ], [ 21.744130487232155, 43.610103258358663 ], [ 21.747334426342661, 43.606434231254752 ], [ 21.749918246929553, 43.602765204150842 ], [ 21.750538363654528, 43.600698147501475 ], [ 21.750641717341352, 43.598527737165341 ], [ 21.749814894142048, 43.593515122924543 ], [ 21.749918246929553, 43.591551419062739 ], [ 21.750486687710463, 43.590052802294963 ], [ 21.751520217384098, 43.588683376736412 ], [ 21.754775832438725, 43.586409614512093 ], [ 21.763560824772242, 43.581939601731222 ], [ 21.768418410281413, 43.578477281101641 ], [ 21.770950554924127, 43.57690114996808 ], [ 21.773017611573493, 43.576100165190439 ], [ 21.775239698753069, 43.575531725308849 ], [ 21.778288608232685, 43.57516999010295 ], [ 21.781389193656366, 43.57516999010295 ], [ 21.784438104035246, 43.575454210043745 ], [ 21.792551303699668, 43.576668605971349 ], [ 21.811826613407447, 43.577805488432546 ], [ 21.813893670056814, 43.577521266693054 ], [ 21.815909050762059, 43.5769269883898 ], [ 21.822988721652166, 43.57305125571088 ], [ 21.827742954373832, 43.570958359740473 ], [ 21.830585158278438, 43.570157375862209 ], [ 21.833375685339604, 43.569950670287199 ], [ 21.835391066044849, 43.570157375862209 ], [ 21.838181594005334, 43.570622463855614 ], [ 21.847018263182292, 43.572896226979253 ], [ 21.848981967943473, 43.57325796218521 ], [ 21.851824171848023, 43.573309638129274 ], [ 21.85874881400656, 43.572017726936508 ], [ 21.86314130972363, 43.570544949489829 ], [ 21.865776808053226, 43.569072171143773 ], [ 21.867843865601913, 43.567211819170097 ], [ 21.871151156600604, 43.562509264191192 ], [ 21.877404006089989, 43.550468655004408 ], [ 21.879626092370245, 43.544009100839332 ], [ 21.883501825049166, 43.537549547573519 ], [ 21.884845412185996, 43.536102606749864 ], [ 21.887274204041262, 43.53431977004135 ], [ 21.89941816601555, 43.527240099151243 ], [ 21.903087192220141, 43.524811306396657 ], [ 21.904534133043796, 43.523441880838106 ], [ 21.910115187166127, 43.516284695582215 ], [ 21.912699008652282, 43.513571681987514 ], [ 21.927581820844352, 43.515121974699355 ], [ 21.933989699065364, 43.51618134189539 ], [ 21.94081098843634, 43.518429267496685 ], [ 21.948200717688962, 43.521529852920366 ], [ 21.950732863231053, 43.52233083769795 ], [ 21.952903272667868, 43.522666734482186 ], [ 21.955022007059938, 43.522615058538122 ], [ 21.957450798915204, 43.522046616857835 ], [ 21.965047234642157, 43.518739325859201 ], [ 21.967165969034227, 43.518222561022355 ], [ 21.972540316682228, 43.51770579708483 ], [ 21.975692579848669, 43.517860825816456 ], [ 21.978741489328229, 43.518325913809861 ], [ 21.982513869219645, 43.519617825002626 ], [ 21.984374220294001, 43.520548000989436 ], [ 21.985872837061777, 43.52155569134203 ], [ 21.987061394567661, 43.523286852106537 ], [ 21.987113071411102, 43.524475410511741 ], [ 21.986596306574256, 43.525612291174298 ], [ 21.985407749068372, 43.526645819948612 ], [ 21.983702426725586, 43.527524319092038 ], [ 21.9766744317796, 43.530159817421634 ], [ 21.974245639924334, 43.531322537405174 ], [ 21.972023552744758, 43.532717800486068 ], [ 21.964065382711226, 43.53930654586037 ], [ 21.953678419923108, 43.546541246381366 ], [ 21.952231479998773, 43.547781479831428 ], [ 21.951249627168522, 43.549073391024137 ], [ 21.950629510443548, 43.550520330948473 ], [ 21.950112745606702, 43.555067857195809 ], [ 21.948820835313256, 43.55915029634906 ], [ 21.948872511257377, 43.561088161789201 ], [ 21.952024774423762, 43.568477891941143 ], [ 21.952954950410628, 43.569692287868747 ], [ 21.955073683004059, 43.570984199061513 ], [ 21.959104445313869, 43.571966050992444 ], [ 21.967062616246722, 43.572844550135869 ], [ 21.970421584088797, 43.572741197348364 ], [ 21.973677199143424, 43.571966050992444 ], [ 21.977346226247334, 43.570002346231263 ], [ 21.992952507951884, 43.557910061100415 ], [ 21.992487419958422, 43.55723826843132 ], [ 21.992539096801863, 43.555791326708345 ], [ 21.993779331151188, 43.553491726062305 ], [ 21.996001418330763, 43.551140449472143 ], [ 21.998740269447865, 43.548866686348447 ], [ 22.003546177214275, 43.545740260704463 ], [ 22.013157992747153, 43.541347764987336 ], [ 22.018222283831335, 43.538040473089325 ], [ 22.023183221228635, 43.535430813181449 ], [ 22.024940220414805, 43.533880520469609 ], [ 22.025612013083901, 43.5325886092769 ], [ 22.025870396401672, 43.531141669352508 ], [ 22.026077101077362, 43.527886054297937 ], [ 22.025818718658911, 43.526464951896003 ], [ 22.025250277878001, 43.525147203180836 ], [ 22.022614780447725, 43.521659044129535 ], [ 22.022253045241825, 43.520573839411156 ], [ 22.022253045241825, 43.519798692155916 ], [ 22.022873162866176, 43.518739325859201 ], [ 22.024578485208906, 43.517085680359855 ], [ 22.030056187443051, 43.513339137990783 ], [ 22.034913771153583, 43.509618434942809 ], [ 22.03966800297593, 43.506492011097407 ], [ 22.041373325318716, 43.504941718385567 ], [ 22.04199344204369, 43.503391424774406 ], [ 22.039926385394381, 43.499670721726375 ], [ 22.039771355763435, 43.498895576269831 ], [ 22.03987470855094, 43.49770701786457 ], [ 22.040546502119355, 43.49595001957772 ], [ 22.042510206880536, 43.493572902767198 ], [ 22.044732293160791, 43.491867581323788 ], [ 22.047419468333771, 43.490523993287638 ], [ 22.051760288106777, 43.489309597360034 ], [ 22.053723992867958, 43.489077053363303 ], [ 22.056514519929124, 43.489206244572529 ], [ 22.05971845903963, 43.490033066872513 ], [ 22.066178013204706, 43.492177638786984 ], [ 22.069123568997497, 43.492642726780389 ], [ 22.072172479376377, 43.492797757310655 ], [ 22.077340122348744, 43.492280992473809 ], [ 22.085504997957287, 43.490885729392858 ], [ 22.088450554649341, 43.490213934925123 ], [ 22.094496697664454, 43.487888494958042 ], [ 22.101834750972955, 43.483909410390936 ], [ 22.103953485365025, 43.483082587191632 ], [ 22.106175570745961, 43.482436632044937 ], [ 22.115063917665623, 43.480550442548861 ], [ 22.118939650344544, 43.479103501725206 ], [ 22.122815383023465, 43.47708812101996 ], [ 22.131600376256358, 43.470421861279874 ], [ 22.134390903317524, 43.468871568568034 ], [ 22.140695427851711, 43.466339423025943 ], [ 22.142710808556956, 43.465667630356847 ], [ 22.152787712982558, 43.463135483915437 ], [ 22.166120233362051, 43.460913398534501 ], [ 22.169220818785732, 43.460629176795067 ], [ 22.172269728265348, 43.460603339272666 ], [ 22.175318637744908, 43.460887560112781 ], [ 22.187669305294207, 43.463187160758821 ], [ 22.189684685999453, 43.463807278383172 ], [ 22.1986763848073, 43.468148098156178 ], [ 22.200691766411865, 43.468664862993023 ], [ 22.205911086227616, 43.469129950986428 ], [ 22.208959994807913, 43.468974921355539 ], [ 22.211957228343408, 43.468509833362077 ], [ 22.220018752063766, 43.465822659088417 ], [ 22.231232538051188, 43.462851263974642 ], [ 22.234643181837328, 43.461585191203596 ], [ 22.237795444104449, 43.46008657533514 ], [ 22.239707472022189, 43.458898016929936 ], [ 22.241206088789966, 43.457528591371386 ], [ 22.242291294407721, 43.455590725031925 ], [ 22.242653028714301, 43.45375621237929 ], [ 22.242497999982675, 43.452851873914824 ], [ 22.242497999982675, 43.450474758003679 ], [ 22.247252231805021, 43.450423082059558 ], [ 22.250921258009612, 43.449957994066153 ], [ 22.254383578639249, 43.448976142135223 ], [ 22.257329136230624, 43.447477525367503 ], [ 22.268336215743773, 43.439312648859641 ], [ 22.270868361285807, 43.43833079692871 ], [ 22.272418653997647, 43.438227444141205 ], [ 22.274795769908849, 43.438795884922115 ], [ 22.276914504300919, 43.440191148003066 ], [ 22.278258091437749, 43.441483059195775 ], [ 22.28306399920416, 43.447012438273362 ], [ 22.286836379095575, 43.452490138708924 ], [ 22.290608758087672, 43.456520901018735 ], [ 22.292210727642953, 43.457657783479874 ], [ 22.294019402773188, 43.4585621201457 ], [ 22.296034784377753, 43.459156399348331 ], [ 22.297843458608725, 43.45949229613251 ], [ 22.300478956938321, 43.459414780867405 ], [ 22.30352786641788, 43.45853628172398 ], [ 22.311641066082302, 43.454557197156873 ], [ 22.315361769130334, 43.452438462764803 ], [ 22.32223473534475, 43.447994290204292 ], [ 22.326575555117756, 43.446366482227347 ], [ 22.332570021289428, 43.444945379825413 ], [ 22.33706587069338, 43.443446763956956 ], [ 22.339856397754545, 43.442103175920806 ], [ 22.34228519140845, 43.440501207264901 ], [ 22.345024040726855, 43.438072415409636 ], [ 22.348486362255812, 43.433421536374794 ], [ 22.350863478166957, 43.427788805409023 ], [ 22.351535271735372, 43.424223131092617 ], [ 22.350811802222893, 43.420657456776212 ], [ 22.348744744674207, 43.414998888288039 ], [ 22.347711215899892, 43.412983507582794 ], [ 22.346057570400546, 43.410735581981498 ], [ 22.34151004415321, 43.406084702946657 ], [ 22.340683220953849, 43.404741115809827 ], [ 22.340011428284754, 43.402725735104582 ], [ 22.33975304496704, 43.400581163190111 ], [ 22.33995975144137, 43.39843659127564 ], [ 22.340838249685476, 43.394483344230935 ], [ 22.340838249685476, 43.392054552375669 ], [ 22.339908074597929, 43.389961656405319 ], [ 22.337014193849939, 43.385982570938893 ], [ 22.336445753968349, 43.384768175011232 ], [ 22.33649742991247, 43.382881985515212 ], [ 22.33727257716771, 43.382365221577686 ], [ 22.338719517092045, 43.370221258704078 ], [ 22.33897789861112, 43.364691881425188 ], [ 22.338719517092045, 43.363141587814027 ], [ 22.338099400367014, 43.361694647889692 ], [ 22.334947137200629, 43.357870592054155 ], [ 22.333655226007863, 43.35564850487458 ], [ 22.333241814857843, 43.353633124169335 ], [ 22.333345167645348, 43.351566067519968 ], [ 22.334327019576278, 43.346553453279228 ], [ 22.334275343632214, 43.344383042943036 ], [ 22.333758578795369, 43.342264309450286 ], [ 22.330089552590778, 43.33446116814838 ], [ 22.328280876561166, 43.328053289927368 ], [ 22.327143995898666, 43.326502997215528 ], [ 22.325438673555936, 43.325211086922081 ], [ 22.323629998425645, 43.324280910935272 ], [ 22.32145958808951, 43.323609117366857 ], [ 22.311331007719787, 43.321490382974787 ], [ 22.307506951884307, 43.321076971824766 ], [ 22.303476189574496, 43.320921943093197 ], [ 22.283115676047601, 43.32074107504053 ], [ 22.275312533846318, 43.320095119893836 ], [ 22.267922803694432, 43.318984076753736 ], [ 22.26151492727206, 43.318854885544511 ], [ 22.258414340949059, 43.319061591119521 ], [ 22.255365430570123, 43.319526679112926 ], [ 22.249370965297771, 43.321309515821497 ], [ 22.247458937380031, 43.322058823755697 ], [ 22.24146447120836, 43.325417792497092 ], [ 22.2387772969347, 43.326709702790538 ], [ 22.234539829049879, 43.327691554721468 ], [ 22.225186395036076, 43.328983465914177 ], [ 22.220587191945356, 43.330275377106943 ], [ 22.217693312096685, 43.331567288299709 ], [ 22.208804966076286, 43.336734931272019 ], [ 22.205962762171737, 43.33807851840885 ], [ 22.201311883136896, 43.339370428702296 ], [ 22.198159620869774, 43.3398355166957 ], [ 22.188496127594192, 43.340636502372661 ], [ 22.178057488862009, 43.342367662237791 ], [ 22.169840936410083, 43.343504543799611 ], [ 22.167773878861396, 43.343711249374621 ], [ 22.164879998113406, 43.343659573430557 ], [ 22.16069420707197, 43.342832750231196 ], [ 22.149790480346383, 43.339861355117421 ], [ 22.137388135953699, 43.33694163684703 ], [ 22.140126987070801, 43.326968085208932 ], [ 22.14183231031285, 43.31521169686232 ], [ 22.142659132612835, 43.312524521689284 ], [ 22.146379835660866, 43.304592190077472 ], [ 22.146844923654271, 43.302447618163001 ], [ 22.146896599598392, 43.300303046248587 ], [ 22.145914747667462, 43.295290432007789 ], [ 22.145966423611526, 43.293275051302544 ], [ 22.146586541235877, 43.291363023384804 ], [ 22.148136833947717, 43.289528509832849 ], [ 22.150358921127292, 43.287952378699288 ], [ 22.154338005694399, 43.286014513259147 ], [ 22.161521030271331, 43.282939765357867 ], [ 22.163433058189071, 43.281492825433531 ], [ 22.164053175813422, 43.280252591084206 ], [ 22.16436323417588, 43.278805650260551 ], [ 22.164673293437716, 43.27412893280399 ], [ 22.165086703688416, 43.272759508144759 ], [ 22.166947055662092, 43.269090481040848 ], [ 22.166998731606157, 43.268211981897423 ], [ 22.166430290825247, 43.266403306767188 ], [ 22.16436323417588, 43.262785956506661 ], [ 22.16301964703905, 43.261132311007316 ], [ 22.161210971908815, 43.259892075758671 ], [ 22.15955732640947, 43.259426987765266 ], [ 22.157696974435794, 43.25927195903364 ], [ 22.151185744326597, 43.259375311821145 ], [ 22.148446893209552, 43.258961899771862 ], [ 22.145139601311541, 43.257618313534294 ], [ 22.143124219706976, 43.256093858344855 ], [ 22.14219404461943, 43.25487946241725 ], [ 22.140540399120084, 43.251365464944229 ], [ 22.13935184071488, 43.249763495389004 ], [ 22.137749872058919, 43.248316555464612 ], [ 22.132530552243168, 43.244518338050852 ], [ 22.130980258632007, 43.242993882861356 ], [ 22.129946729857693, 43.241288561417946 ], [ 22.129636672394497, 43.239454046966671 ], [ 22.131910434618874, 43.232115994557489 ], [ 22.131703729043863, 43.230178128218029 ], [ 22.130670200269492, 43.228214423456848 ], [ 22.125502557297182, 43.222271633229241 ], [ 22.119198031863675, 43.212453111222089 ], [ 22.113616977741287, 43.202944648476716 ], [ 22.135062696885939, 43.196020006318236 ], [ 22.13723310722213, 43.195012315066265 ], [ 22.145966423611526, 43.189353746578092 ], [ 22.155216505737144, 43.185012925905767 ], [ 22.15785200406674, 43.184108588340678 ], [ 22.160849236702916, 43.183462633193926 ], [ 22.169944289197588, 43.182015693269591 ], [ 22.172114698634402, 43.181343898801856 ], [ 22.174130080238967, 43.180517076501872 ], [ 22.1774890480811, 43.178191637434111 ], [ 22.18441369023958, 43.172610582412403 ], [ 22.191545037973128, 43.167908027433498 ], [ 22.196505975370428, 43.165039985107228 ], [ 22.19929650243165, 43.163851426701967 ], [ 22.201466912767785, 43.163205471555273 ], [ 22.203740675891481, 43.162817897927596 ], [ 22.206531202952647, 43.162637030774306 ], [ 22.210251906000622, 43.162688706718427 ], [ 22.212060581130913, 43.162456162721696 ], [ 22.213765902574323, 43.161965237205891 ], [ 22.215626255447319, 43.160725002856566 ], [ 22.221155632726266, 43.154885566315784 ], [ 22.223274367118336, 43.152973538398044 ], [ 22.225858188604491, 43.151423244786884 ], [ 22.230043979645927, 43.149666246500033 ], [ 22.234074741056418, 43.148426012150708 ], [ 22.237847120947833, 43.147857571369798 ], [ 22.24182620641426, 43.147754218582293 ], [ 22.245805290981366, 43.147986762579023 ], [ 22.249577670872782, 43.148632716826398 ], [ 22.256037225037915, 43.150751451218468 ], [ 22.259137811360915, 43.151449083208604 ], [ 22.260481397598426, 43.151500759152668 ], [ 22.263478631133921, 43.151035672058583 ], [ 22.266217482250966, 43.150027980806669 ], [ 22.268852979681242, 43.148736070513223 ], [ 22.275209181058869, 43.145041204987592 ], [ 22.276449416307514, 43.144085191478382 ], [ 22.277431268238445, 43.142586574710606 ], [ 22.277482944182509, 43.140984605155381 ], [ 22.275364210689759, 43.136798814113945 ], [ 22.275467564376584, 43.13612702144485 ], [ 22.276501092251578, 43.134680081520514 ], [ 22.2800150897246, 43.131889553560029 ], [ 22.281823764854835, 43.130080878429794 ], [ 22.295621372328469, 43.109927070477909 ], [ 22.285647820690372, 43.105844632223977 ], [ 22.269214714887141, 43.099617621156256 ], [ 22.26399539597071, 43.096517034833255 ], [ 22.261049839278655, 43.095199286118145 ], [ 22.253453402652383, 43.09297719983789 ], [ 22.246632114180727, 43.090651759870809 ], [ 22.240844353584009, 43.087912910552348 ], [ 22.239087355297215, 43.086698512826104 ], [ 22.237692092216264, 43.085225735379368 ], [ 22.236658563441949, 43.083520413036581 ], [ 22.233919712324848, 43.075691433312954 ], [ 22.234023065112353, 43.073986110970225 ], [ 22.226426629385401, 43.066208808089982 ], [ 22.219812045589435, 43.060110989130806 ], [ 22.217176548159159, 43.058353989944635 ], [ 22.215006137822968, 43.05747549080121 ], [ 22.212732374699328, 43.056829534755195 ], [ 22.195937533690199, 43.054736640583485 ], [ 22.192940301054023, 43.054684963740044 ], [ 22.190046421205352, 43.055072537367664 ], [ 22.187410922875756, 43.055873521245985 ], [ 22.18229495584751, 43.05791474127227 ], [ 22.175215284957403, 43.059955960399236 ], [ 22.172011345846897, 43.060266017862432 ], [ 22.168704053948886, 43.060136827552526 ], [ 22.161366000640385, 43.059077460356491 ], [ 22.155216505737144, 43.05866404920647 ], [ 22.149583774771372, 43.063314928241311 ], [ 22.140540399120084, 43.071996567787323 ], [ 22.13800825357805, 43.07408946375773 ], [ 22.132633905030673, 43.077991034858371 ], [ 22.127156202796527, 43.081324164278726 ], [ 22.124262322947857, 43.082641912993893 ], [ 22.12198855982416, 43.083417060249133 ], [ 22.113513624953839, 43.085303249745152 ], [ 22.109017774650567, 43.086724352147087 ], [ 22.105503778076866, 43.088584703221443 ], [ 22.10038781104862, 43.09184031827607 ], [ 22.098372430343375, 43.092770494262879 ], [ 22.091292758553948, 43.095199286118145 ], [ 22.089225701904581, 43.096129462104955 ], [ 22.084058058032952, 43.099152534062171 ], [ 22.07765018071126, 43.102227281064131 ], [ 22.075273064800058, 43.103829251518732 ], [ 22.066126336361322, 43.111063951140409 ], [ 22.06106204617646, 43.11612824222459 ], [ 22.056101107879783, 43.120365709210091 ], [ 22.052328728887687, 43.124241440989692 ], [ 22.050468376914068, 43.125791733701533 ], [ 22.048349644320638, 43.127186998581124 ], [ 22.045972528409436, 43.128375556087008 ], [ 22.038892856620009, 43.131166083148173 ], [ 22.036205682346349, 43.132664699915949 ], [ 22.033983595166774, 43.134473375046184 ], [ 22.031761508886518, 43.137057197431716 ], [ 22.029229364243747, 43.142586574710606 ], [ 22.027989128995102, 43.143775133115867 ], [ 22.026697218701656, 43.144214381788288 ], [ 22.025095249146432, 43.144214381788288 ], [ 22.022614780447725, 43.143568427540856 ], [ 22.017602166206984, 43.141139634786271 ], [ 22.015586786401059, 43.140571194005361 ], [ 22.013468052008989, 43.140261134743525 ], [ 22.010729200891888, 43.140416165273791 ], [ 22.008248732193238, 43.141087957942887 ], [ 22.005871616282036, 43.142121486717201 ], [ 22.0016858252406, 43.144395249840898 ], [ 21.99998050289787, 43.145583808246158 ], [ 21.995691359068928, 43.149976304862548 ], [ 21.993624302419619, 43.151449083208604 ], [ 21.991815627289327, 43.151991686467113 ], [ 21.989851921628883, 43.152250067986245 ], [ 21.987009718623597, 43.152198391142804 ], [ 21.984787632343341, 43.151784979992783 ], [ 21.982565545163766, 43.151113186424368 ], [ 21.9797750181026, 43.149872952075043 ], [ 21.968871291376956, 43.143258368279021 ], [ 21.966390821778987, 43.141992296407352 ], [ 21.963238560411241, 43.140803738002091 ], [ 21.9597245620389, 43.139873562015225 ], [ 21.955797153415858, 43.139279282812652 ], [ 21.947838983382383, 43.138555813300115 ], [ 21.936831902969914, 43.133052273543569 ], [ 21.904534133043796, 43.163412177130226 ], [ 21.892596876644518, 43.153645331067139 ], [ 21.878282505233415, 43.147960924157303 ], [ 21.870065951882168, 43.144343573896776 ], [ 21.863296340253896, 43.142018133929696 ], [ 21.856320021251975, 43.140054430067892 ], [ 21.852857699723074, 43.13958934207443 ], [ 21.849292026305932, 43.139330960555355 ], [ 21.830326775859987, 43.139227606868531 ], [ 21.82226525213963, 43.138969225349456 ], [ 21.805522087973941, 43.137780666944195 ], [ 21.804333529568737, 43.137728990100811 ], [ 21.801801384925966, 43.138194078094216 ], [ 21.799217564339131, 43.139046738815921 ], [ 21.796737094741104, 43.140235297221182 ], [ 21.794153273254949, 43.142018133929696 ], [ 21.792551303699668, 43.144085191478382 ], [ 21.792189569393088, 43.146048896239563 ], [ 21.792706333330614, 43.147909247313862 ], [ 21.794101597310828, 43.149459540025703 ], [ 21.795600213179284, 43.150338040068448 ], [ 21.801387973775945, 43.152818507867835 ], [ 21.802783236856897, 43.153722846332244 ], [ 21.804333529568737, 43.155324814988205 ], [ 21.804695264774637, 43.156539211815129 ], [ 21.804488560098946, 43.157779446164511 ], [ 21.803868441575275, 43.158916326827011 ], [ 21.79704715310362, 43.165220852260518 ], [ 21.789192335857592, 43.17431590385587 ], [ 21.786711867158942, 43.176693019767015 ], [ 21.775343052439894, 43.185633043530117 ], [ 21.772965935629429, 43.188010159441262 ], [ 21.768831821431377, 43.192867743151794 ], [ 21.763199089566285, 43.197156886980736 ], [ 21.761855503328775, 43.198913886166906 ], [ 21.761080356972855, 43.20087759092803 ], [ 21.760977004185406, 43.202892970734013 ], [ 21.76139041533537, 43.204908352338578 ], [ 21.762217237635411, 43.206406969106297 ], [ 21.763457471984736, 43.207776393765528 ], [ 21.766971470357078, 43.210075995310888 ], [ 21.774671257972159, 43.21400340393393 ], [ 21.776996697939239, 43.21552785912337 ], [ 21.77875369622609, 43.217207343044436 ], [ 21.77947716573857, 43.218395901449696 ], [ 21.779580519425394, 43.22015289973649 ], [ 21.778650344337905, 43.222013250810846 ], [ 21.773689406041228, 43.227077541895028 ], [ 21.771932406855058, 43.229558009694358 ], [ 21.770692173405052, 43.232400214498284 ], [ 21.765937940683386, 43.246559557177818 ], [ 21.763095736778837, 43.245241808462652 ], [ 21.760460239348561, 43.244570013994917 ], [ 21.758083123437359, 43.244311632475842 ], [ 21.755654330682773, 43.244337469998243 ], [ 21.753380567559134, 43.244621689939038 ], [ 21.743665399238751, 43.246378689125152 ], [ 21.74056481291575, 43.246533717856778 ], [ 21.737619256223695, 43.246352850703488 ], [ 21.731624790052024, 43.245422674716622 ], [ 21.728937615778307, 43.245577704347568 ], [ 21.725165235886891, 43.246714585909388 ], [ 21.72340823670072, 43.247696437840318 ], [ 21.721909620832321, 43.248936673088963 ], [ 21.719119093771155, 43.252140611300149 ], [ 21.71710371306591, 43.254000963273825 ], [ 21.7145715666245, 43.255292874466534 ], [ 21.711677686775829, 43.255964667135629 ], [ 21.709765658858032, 43.25601634397907 ], [ 21.707956983727797, 43.25565460877317 ], [ 21.705631544660037, 43.254414374423845 ], [ 21.702530959236356, 43.251313788100845 ], [ 21.70165245919361, 43.249944363441614 ], [ 21.700722284106121, 43.247438056321243 ], [ 21.700257196112716, 43.244750882047526 ], [ 21.69953372570086, 43.236586005539721 ], [ 21.698086785776525, 43.230953274573949 ], [ 21.697776727414009, 43.228782864237758 ], [ 21.69782840335813, 43.226560777058182 ], [ 21.698293491351535, 43.224390366722048 ], [ 21.700205519269275, 43.219326077436506 ], [ 21.70123904804359, 43.215863755907606 ], [ 21.701342400831095, 43.214520168770775 ], [ 21.701032341569316, 43.213073228846383 ], [ 21.700205519269275, 43.211781318552994 ], [ 21.698913608076509, 43.210696112935238 ], [ 21.697363316264045, 43.209765936948429 ], [ 21.694986200352844, 43.208732408174058 ], [ 21.6933842298983, 43.208474025755663 ], [ 21.690593702837077, 43.208784085017498 ], [ 21.688268262869997, 43.209688422582587 ], [ 21.685942823802236, 43.210902818510249 ], [ 21.67545250822667, 43.217388211097045 ], [ 21.665737339006967, 43.221574002138482 ], [ 21.662275018377386, 43.223666897209512 ], [ 21.658709344060981, 43.226250718695667 ], [ 21.654988641012949, 43.228188585035127 ], [ 21.652508172314299, 43.228937892969384 ], [ 21.648735793322203, 43.229764716168688 ], [ 21.636126743354509, 43.231418362567354 ], [ 21.635093214580195, 43.231211656093024 ], [ 21.632871128299939, 43.231263332936464 ], [ 21.629098748408524, 43.231935126504879 ], [ 21.626101514872971, 43.23291697933513 ], [ 21.623207635024301, 43.234157212785135 ], [ 21.618350051313826, 43.23671519584957 ], [ 21.616438023396029, 43.237981269519935 ], [ 21.61493940572899, 43.239402371022607 ], [ 21.612458937030283, 43.242993882861356 ], [ 21.611011997105948, 43.245913601131747 ], [ 21.610598585955984, 43.248058173046218 ], [ 21.610701938743489, 43.250228583382409 ], [ 21.611322056367783, 43.252347316875159 ], [ 21.612097201824383, 43.253742580855373 ], [ 21.614629347366474, 43.256998195910001 ], [ 21.61669640491516, 43.258858547883676 ], [ 21.622897576661842, 43.262708442140877 ], [ 21.625326369416371, 43.264904689999412 ], [ 21.625998162984843, 43.266248277136242 ], [ 21.625998162984843, 43.267566025851409 ], [ 21.624912957367087, 43.269323025037579 ], [ 21.62300092944929, 43.270950833014524 ], [ 21.62145063583813, 43.271881008102014 ], [ 21.619641960707895, 43.272604479413189 ], [ 21.616748080859225, 43.273276272082285 ], [ 21.607394646845478, 43.274619859219115 ], [ 21.605172559665903, 43.275239976843409 ], [ 21.603208855804041, 43.276118475986834 ], [ 21.601555210304696, 43.277255357548711 ], [ 21.5989197119751, 43.27989085497893 ], [ 21.597937860044169, 43.281234443015137 ], [ 21.595767449708035, 43.285316881269011 ], [ 21.593597039371843, 43.288339952326908 ], [ 21.589411248330407, 43.292034816953219 ], [ 21.588067661193577, 43.293585110564379 ], [ 21.587137485206767, 43.295290432007789 ], [ 21.586000603644948, 43.30012217909524 ], [ 21.584553663720612, 43.303455309414971 ], [ 21.583468459002177, 43.304953925283428 ], [ 21.57964440316664, 43.308726305174844 ], [ 21.57871422717983, 43.310199083520843 ], [ 21.57814578639892, 43.311723537811019 ], [ 21.57814578639892, 43.313738919415584 ], [ 21.57871422717983, 43.315289212127425 ], [ 21.579696079110761, 43.31673615205176 ], [ 21.583726841420571, 43.320456855099735 ], [ 21.586207310119278, 43.323454087735911 ], [ 21.589514601117912, 43.328311673245082 ], [ 21.592253452235013, 43.333427639374008 ], [ 21.592821893015923, 43.33580475528521 ], [ 21.593855421790295, 43.349188950709504 ], [ 21.577008904837044, 43.344589749417366 ], [ 21.570290969152893, 43.342987778962822 ], [ 21.566621942048982, 43.342496853447017 ], [ 21.559128859109535, 43.342109279819397 ], [ 21.547915073122113, 43.342212633506222 ], [ 21.5407320494445, 43.342677721499626 ], [ 21.537321404758984, 43.343297838224657 ], [ 21.529414910669573, 43.345985012498318 ], [ 21.526469353977461, 43.346656806066733 ], [ 21.516134067133464, 43.348620509928594 ], [ 21.513033481709783, 43.348982245134493 ], [ 21.509829542599277, 43.349137274765383 ], [ 21.503421665277585, 43.348930569190372 ], [ 21.49334476085204, 43.347380276478532 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-13", "NAME_1": "Pomoravski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.95699507036619, 43.728183905762592 ], [ 20.942887403630777, 43.740069485318486 ], [ 20.938443231070266, 43.745288805134237 ], [ 20.93575605589723, 43.747795112254607 ], [ 20.933327264041964, 43.749474596175673 ], [ 20.928107944226213, 43.752316799180903 ], [ 20.926609328357813, 43.753350327955275 ], [ 20.924748976384137, 43.75515900308551 ], [ 20.923353713303186, 43.758156235721685 ], [ 20.922888625309781, 43.76071421968544 ], [ 20.922423537316376, 43.768879096193302 ], [ 20.922061802110477, 43.771566271366282 ], [ 20.921390007642742, 43.774175930374838 ], [ 20.91958133341177, 43.77732819354128 ], [ 20.915705600732849, 43.781255602164265 ], [ 20.913793572815109, 43.784356188487266 ], [ 20.912398308834895, 43.788955389779403 ], [ 20.910021192923693, 43.794743150376064 ], [ 20.909452752142784, 43.796965237555639 ], [ 20.908367547424348, 43.807352200343757 ], [ 20.913380160765769, 43.807378037866158 ], [ 20.921751742848642, 43.806938788294417 ], [ 20.925679152370947, 43.806422024356891 ], [ 20.932448764898538, 43.804768377958226 ], [ 20.93425744002883, 43.804535833961552 ], [ 20.935497674378155, 43.804613349226656 ], [ 20.937978143076805, 43.805440172426017 ], [ 20.939890170994602, 43.807042141081922 ], [ 20.940923699768916, 43.808489081006257 ], [ 20.943197462892556, 43.814431871233865 ], [ 20.945006138022848, 43.81799754555027 ], [ 20.947383253933992, 43.820839749454876 ], [ 20.950690544932684, 43.82337189409759 ], [ 20.956271599954334, 43.826343289211422 ], [ 20.965676710811522, 43.830477403409418 ], [ 20.970430941734548, 43.831898504912033 ], [ 20.97931928865421, 43.832518622536384 ], [ 20.982523227764716, 43.833319607314024 ], [ 20.991514926572563, 43.837143663149504 ], [ 20.996992628806765, 43.840218411050785 ], [ 21.000093215129766, 43.842879746902781 ], [ 21.004382358059388, 43.847220567575107 ], [ 21.007069533232368, 43.849571845064588 ], [ 21.009394972300129, 43.851225491463254 ], [ 21.012650588254019, 43.853137519380994 ], [ 21.014665968959264, 43.854739488036898 ], [ 21.016112908883599, 43.857581691941505 ], [ 21.016629672821125, 43.860139675005996 ], [ 21.016577996877061, 43.865565701296077 ], [ 21.016009556096094, 43.868227037148017 ], [ 21.014976027321779, 43.870707505846667 ], [ 21.008568150000087, 43.878097235998609 ], [ 21.004640741377102, 43.881817939046641 ], [ 21.002573682929096, 43.884660142951191 ], [ 20.999834831811995, 43.891972357838029 ], [ 21.000041538286325, 43.893858548233368 ], [ 21.001126743004761, 43.895822252095229 ], [ 21.002935418134996, 43.897630927225464 ], [ 21.006811150813917, 43.90044729270835 ], [ 21.009808384349469, 43.9018167182669 ], [ 21.017198113602035, 43.90450389343988 ], [ 21.023192579773706, 43.907242742758342 ], [ 21.025569695684908, 43.907914537226077 ], [ 21.028153517171063, 43.908276272431976 ], [ 21.031615837800643, 43.908302109954377 ], [ 21.03388960092434, 43.908069565957703 ], [ 21.038230421596666, 43.907191066814278 ], [ 21.043708122931491, 43.905640774102437 ], [ 21.045155063755146, 43.910911769862253 ], [ 21.045361769330157, 43.915200913691194 ], [ 21.044896681336752, 43.917707220811565 ], [ 21.040969272713767, 43.928197537286508 ], [ 21.040865919926262, 43.929566961945739 ], [ 21.041331007919666, 43.930755520350942 ], [ 21.043088006206517, 43.932073269066109 ], [ 21.049547560371593, 43.934114488193075 ], [ 21.052079705014364, 43.935096341023268 ], [ 21.058745964754451, 43.938662014440411 ], [ 21.060347935209052, 43.939850571946295 ], [ 21.061536492714936, 43.941245835926566 ], [ 21.062311639070856, 43.942796129537726 ], [ 21.062621698332691, 43.944863186187092 ], [ 21.062363315914297, 43.946930242836402 ], [ 21.061691522345882, 43.948532213291003 ], [ 21.060709670414951, 43.950030829159402 ], [ 21.055748732118275, 43.955353501762659 ], [ 21.053578321782084, 43.959125882553394 ], [ 21.051976353126179, 43.961244615146825 ], [ 21.050219353940008, 43.962949938388931 ], [ 21.042881300631507, 43.968582669354703 ], [ 21.041744419069687, 43.970029609279038 ], [ 21.041020948657831, 43.971579901990879 ], [ 21.040710890295315, 43.973621121117844 ], [ 21.041020948657831, 43.975636501823089 ], [ 21.042157830219651, 43.977729396894119 ], [ 21.044069858137448, 43.97948639608029 ], [ 21.046550326836098, 43.980726630429615 ], [ 21.051511265132774, 43.982380275928961 ], [ 21.05337161620713, 43.983258775072386 ], [ 21.061898227920892, 43.989718329237462 ], [ 21.064378695720222, 43.991191108482838 ], [ 21.067220899624829, 43.992095445148664 ], [ 21.068616163605043, 43.992250474779553 ], [ 21.073628777845784, 43.992198797936169 ], [ 21.081948683085216, 43.991837062730212 ], [ 21.084894239777327, 43.992043769204543 ], [ 21.088821649299632, 43.992973945191409 ], [ 21.090578647586483, 43.993697414703888 ], [ 21.0924906764036, 43.995170193049944 ], [ 21.093989292271999, 43.996953029758515 ], [ 21.095642937771345, 43.999691880875559 ], [ 21.096211378552255, 44.00181061526763 ], [ 21.096418084127265, 44.003981024704501 ], [ 21.09595299703318, 44.008993638945242 ], [ 21.09631473223908, 44.010957342807103 ], [ 21.09745161290158, 44.012998561934069 ], [ 21.100810580743712, 44.016951808978774 ], [ 21.102205844723926, 44.01901886742678 ], [ 21.102980991079846, 44.021137600020211 ], [ 21.103239372598978, 44.023308010356345 ], [ 21.103084343867351, 44.025426743849152 ], [ 21.102412551198256, 44.027519639819502 ], [ 21.100862257587096, 44.029767564521478 ], [ 21.089183383606269, 44.039586087427949 ], [ 21.086909621381892, 44.041033027352285 ], [ 21.082827183127961, 44.04232493854505 ], [ 21.054250116249875, 44.047440903774657 ], [ 21.068099399667517, 44.057052721106174 ], [ 21.082000359928657, 44.064519964724582 ], [ 21.086496209332552, 44.066302802332416 ], [ 21.090630324429924, 44.067594713525182 ], [ 21.099828728812781, 44.069248359024527 ], [ 21.109957310081768, 44.071677150879793 ], [ 21.113781365917305, 44.073201606069233 ], [ 21.11657189297847, 44.074622708471168 ], [ 21.118949008889615, 44.076224677127129 ], [ 21.123651563868577, 44.08066884968764 ], [ 21.132694940419128, 44.086198228765227 ], [ 21.134348585918474, 44.087541815902057 ], [ 21.135692173055304, 44.089092109513217 ], [ 21.13662234904217, 44.090849106900748 ], [ 21.13734581855465, 44.092916165348754 ], [ 21.1391028168415, 44.102889716087532 ], [ 21.126080356623163, 44.114413561336789 ], [ 21.124633415799508, 44.116170558724264 ], [ 21.123548211081072, 44.118237617172269 ], [ 21.122979771199482, 44.120769761815041 ], [ 21.123548211081072, 44.123301907357131 ], [ 21.124530063911322, 44.125368964006441 ], [ 21.128457471634988, 44.131621813495883 ], [ 21.129077590158658, 44.133068753420218 ], [ 21.129284294834349, 44.135239162857033 ], [ 21.143340284726321, 44.153377591002993 ], [ 21.140394728034266, 44.161904201817435 ], [ 21.138431024172405, 44.174616604572634 ], [ 21.139154493684941, 44.183324083439686 ], [ 21.139309523315831, 44.185520331298221 ], [ 21.144167107925682, 44.193013414237669 ], [ 21.154657424400625, 44.195442206092935 ], [ 21.133573438663234, 44.209704902459237 ], [ 21.154657424400625, 44.209704902459237 ], [ 21.152331984433545, 44.213218899032938 ], [ 21.151298454759853, 44.214200750963869 ], [ 21.150161574097353, 44.214820867688843 ], [ 21.147216017405242, 44.2171463085553 ], [ 21.151866896440083, 44.225621243425621 ], [ 21.153417189151924, 44.229419460839438 ], [ 21.151763542753258, 44.232029119847994 ], [ 21.147216017405242, 44.23699005814467 ], [ 21.147216017405242, 44.243863023459767 ], [ 21.168300002243313, 44.250684312830742 ], [ 21.168300002243313, 44.258125718926749 ], [ 21.152331984433545, 44.2629833035366 ], [ 21.134038526656639, 44.286599433017386 ], [ 21.147371047036188, 44.288563136879247 ], [ 21.152331984433545, 44.288563136879247 ], [ 21.15610436432496, 44.288149725729227 ], [ 21.159566684954541, 44.287322903429242 ], [ 21.162253859228201, 44.285979316292412 ], [ 21.166387974325517, 44.283240465175311 ], [ 21.168351678187378, 44.28225861324438 ], [ 21.171090529304479, 44.28148346598914 ], [ 21.17419111472816, 44.281018377995736 ], [ 21.183854608003742, 44.280062364486525 ], [ 21.186903516583982, 44.279416409339774 ], [ 21.189642367701083, 44.278512070875365 ], [ 21.19920250818916, 44.274197089524023 ], [ 21.210984734957549, 44.268073432143183 ], [ 21.212328322094379, 44.267065741790532 ], [ 21.21351687960032, 44.265360419447802 ], [ 21.215273878786434, 44.259055894913615 ], [ 21.216152377929859, 44.256885484577424 ], [ 21.21754764191013, 44.254792589506394 ], [ 21.221578403320621, 44.250684312830742 ], [ 21.225660841574552, 44.247687079295247 ], [ 21.227469516704843, 44.246601874576811 ], [ 21.229536574253473, 44.245775051377507 ], [ 21.231810337377169, 44.245154933753156 ], [ 21.23491092280085, 44.244664008237351 ], [ 21.244781121651442, 44.243837185038046 ], [ 21.250517205404662, 44.242829494685395 ], [ 21.252894321315864, 44.242106025172916 ], [ 21.260542432986881, 44.239005438849915 ], [ 21.263436313734871, 44.238385322124884 ], [ 21.265244988865106, 44.238359482803844 ], [ 21.266898635263772, 44.238747057330784 ], [ 21.268242222400602, 44.23949636526504 ], [ 21.27614871559075, 44.245826728220891 ], [ 21.278835889864411, 44.248823960857067 ], [ 21.280799594625591, 44.251717840705737 ], [ 21.283590121686757, 44.25970185006031 ], [ 21.284985385666971, 44.26220815718068 ], [ 21.288241000721598, 44.267065741790532 ], [ 21.292685174181429, 44.275695706291799 ], [ 21.314854363737879, 44.261949774762286 ], [ 21.325861444150291, 44.256006985433999 ], [ 21.328445264737184, 44.254198310303764 ], [ 21.330563999129254, 44.252131252755078 ], [ 21.332889439096334, 44.248978990488013 ], [ 21.334388054964734, 44.246110948161686 ], [ 21.334801467014074, 44.244018053090656 ], [ 21.334698114226569, 44.241873481176185 ], [ 21.334026319758834, 44.238953762006474 ], [ 21.33397464381477, 44.236835029413044 ], [ 21.33454308369636, 44.234767970965038 ], [ 21.335834994889069, 44.232700914315728 ], [ 21.341105990648941, 44.226706448144057 ], [ 21.344464959390336, 44.222003893165095 ], [ 21.346738721614713, 44.220350246766429 ], [ 21.350356072774503, 44.218825792476309 ], [ 21.353249952623173, 44.218231513273679 ], [ 21.361621534706046, 44.217378852551974 ], [ 21.363688592254732, 44.216913764558569 ], [ 21.365962355378372, 44.215621853365803 ], [ 21.367409295302707, 44.214200750963869 ], [ 21.368339471289573, 44.212547105464523 ], [ 21.368649529652032, 44.210531724759278 ], [ 21.368236117602748, 44.208516344054033 ], [ 21.364618768241542, 44.202857773767221 ], [ 21.361569857862605, 44.196475734867249 ], [ 21.359812859575811, 44.194150295799489 ], [ 21.354800246234333, 44.189344387133758 ], [ 21.353973423035029, 44.187690742533732 ], [ 21.354335158240929, 44.185933743347562 ], [ 21.35593712689689, 44.183582464958761 ], [ 21.357487419608731, 44.182523097762726 ], [ 21.361208122656706, 44.180921129106821 ], [ 21.363171828317206, 44.180352688325854 ], [ 21.366220736897446, 44.179990953119955 ], [ 21.369424676007952, 44.180042629963395 ], [ 21.377641229359256, 44.180921129106821 ], [ 21.381361932407231, 44.181024481894326 ], [ 21.393660923113089, 44.180817776319316 ], [ 21.394797803775589, 44.181386217100226 ], [ 21.396348097386749, 44.183039863498891 ], [ 21.398725213297951, 44.186553860072536 ], [ 21.4000688013341, 44.187897447209423 ], [ 21.402445916345926, 44.189757799183042 ], [ 21.405236444306468, 44.191256415051498 ], [ 21.407561883374228, 44.192134915094243 ], [ 21.410042352072878, 44.192729194296874 ], [ 21.414021436639985, 44.193271795756743 ], [ 21.433968539916179, 44.194667059737014 ], [ 21.436810743820729, 44.194460354162004 ], [ 21.43877444768259, 44.193995266168599 ], [ 21.442805209992457, 44.192548326244264 ], [ 21.444872266641767, 44.191566474313333 ], [ 21.447352736239793, 44.190042019123837 ], [ 21.453605583930539, 44.184538479367291 ], [ 21.456189406316014, 44.182884832968625 ], [ 21.463320754049562, 44.179629217914055 ], [ 21.465284457911366, 44.179009101189024 ], [ 21.467609897878447, 44.178647365983124 ], [ 21.470038689733713, 44.178544013195619 ], [ 21.475516391967915, 44.17895742434564 ], [ 21.481769239658661, 44.179887600332449 ], [ 21.487815382673773, 44.181696275462741 ], [ 21.492983025646083, 44.177355454790359 ], [ 21.49985599096118, 44.170585842262767 ], [ 21.513653599334134, 44.16159414345492 ], [ 21.521146681374205, 44.157356676469419 ], [ 21.524764031634732, 44.155031236502339 ], [ 21.529259881038683, 44.150483710255003 ], [ 21.531947056211663, 44.148158271187242 ], [ 21.534427524910313, 44.146607978475402 ], [ 21.5407320494445, 44.144179185720816 ], [ 21.543884311711622, 44.142370509691261 ], [ 21.545744662785921, 44.140665188247795 ], [ 21.546519810041161, 44.139373277055086 ], [ 21.548070102753002, 44.133533841413623 ], [ 21.551067336288497, 44.127074286349227 ], [ 21.552100864163549, 44.123663642563031 ], [ 21.553134392937864, 44.122190864216975 ], [ 21.55463300970564, 44.120898953024266 ], [ 21.558302035910231, 44.119193631580799 ], [ 21.563056267732577, 44.118134264384764 ], [ 21.570911085877867, 44.117152411554514 ], [ 21.581298048665985, 44.113664252503213 ], [ 21.584088575727151, 44.112863267725629 ], [ 21.586827426844252, 44.112449856575608 ], [ 21.588067661193577, 44.112501533418992 ], [ 21.590754836366614, 44.113018297356518 ], [ 21.596232537701439, 44.114878648430874 ], [ 21.600056594436239, 44.115498766055168 ], [ 21.604035679003346, 44.115602117943354 ], [ 21.608066441313213, 44.115188706793333 ], [ 21.619280226401315, 44.112656562150619 ], [ 21.622277459037491, 44.112294826944662 ], [ 21.628426954840052, 44.112449856575608 ], [ 21.63576500814861, 44.113173326088088 ], [ 21.638917271314995, 44.113121650144024 ], [ 21.644084914287362, 44.112398179732168 ], [ 21.649149203572847, 44.111157945382843 ], [ 21.653696729820183, 44.109711005458507 ], [ 21.656693963355735, 44.108419094265741 ], [ 21.667959426186542, 44.101985379421706 ], [ 21.669561394842503, 44.10048676175461 ], [ 21.670749953247707, 44.0988072778336 ], [ 21.673075392315468, 44.091417548580978 ], [ 21.674005568302334, 44.090151475809932 ], [ 21.675917596220074, 44.088471991888866 ], [ 21.678243036187155, 44.087076727908652 ], [ 21.680206740049016, 44.086301581552732 ], [ 21.688113234138427, 44.084492906422497 ], [ 21.693642612316694, 44.082632555348141 ], [ 21.697725050570625, 44.082270820142185 ], [ 21.702685987967925, 44.082813422501431 ], [ 21.705579867816652, 44.083459378547445 ], [ 21.711574333988324, 44.085733140771822 ], [ 21.71901574098365, 44.089608873450743 ], [ 21.72108279763296, 44.090306505440822 ], [ 21.723304884812592, 44.090745755012563 ], [ 21.726198764661262, 44.090849106900748 ], [ 21.736327345030929, 44.089686387816528 ], [ 21.741236607383485, 44.088678697463877 ], [ 21.743045281614457, 44.087955227052078 ], [ 21.745112339163086, 44.086508287127742 ], [ 21.750331658978837, 44.081469835364601 ], [ 21.756326125150565, 44.076276353970513 ], [ 21.761700473697886, 44.073744208428479 ], [ 21.768315056594588, 44.071496283726503 ], [ 21.773120965260318, 44.070488593373852 ], [ 21.775136345965564, 44.070333563742963 ], [ 21.77797854987017, 44.070488593373852 ], [ 21.780924106562225, 44.071160386942267 ], [ 21.792396274968098, 44.074829413146858 ], [ 21.795496860391779, 44.075113633986973 ], [ 21.798494093927275, 44.074571030728464 ], [ 21.808984408603578, 44.069274197446248 ], [ 21.817769402735735, 44.065553494398216 ], [ 21.811826613407447, 44.054313869989073 ], [ 21.811154818939713, 44.052660224489728 ], [ 21.810741407789749, 44.050438137310152 ], [ 21.810586379058122, 44.047518419039761 ], [ 21.809966261433829, 44.045528875856917 ], [ 21.808467644666052, 44.043616847939177 ], [ 21.806348911173302, 44.041834011230605 ], [ 21.803920119318036, 44.040283718518765 ], [ 21.801129592256871, 44.038991808225319 ], [ 21.796633741953599, 44.037674059510209 ], [ 21.791827834187188, 44.0367438835234 ], [ 21.790070835001018, 44.036123765899049 ], [ 21.788313835814847, 44.034676825974714 ], [ 21.787125278308906, 44.031860460491828 ], [ 21.786350131952986, 44.02341136314385 ], [ 21.785988396747086, 44.020672512026806 ], [ 21.785368280022112, 44.018657132220824 ], [ 21.784231397560916, 44.016951808978774 ], [ 21.782887811323405, 44.0159441195255 ], [ 21.778702020281969, 44.013618679558419 ], [ 21.776376581214208, 44.011939194738034 ], [ 21.774619582028095, 44.009820462144603 ], [ 21.773792758828733, 44.007908434226806 ], [ 21.772914259685308, 44.00356761355448 ], [ 21.772449171691903, 43.991837062730212 ], [ 21.771157261398457, 43.991475328423633 ], [ 21.770692173405052, 43.991061917273612 ], [ 21.769917026149813, 43.989356594031563 ], [ 21.770382114143217, 43.987237861438132 ], [ 21.774774610759664, 43.981295071210525 ], [ 21.776479933102394, 43.97778107373756 ], [ 21.776789992364229, 43.976308295391505 ], [ 21.776686638677404, 43.974267076264539 ], [ 21.776169874739935, 43.972845973862604 ], [ 21.775032993178058, 43.970908108422464 ], [ 21.773172642103759, 43.969099433292172 ], [ 21.770795526192558, 43.967445786893506 ], [ 21.7592716809433, 43.961296291990266 ], [ 21.754259066702559, 43.95716217689295 ], [ 21.748367954217713, 43.953518989110023 ], [ 21.746300896669027, 43.951839505189014 ], [ 21.745319044738096, 43.950495917152807 ], [ 21.744750603957186, 43.949048977228472 ], [ 21.744027134444707, 43.944243069462061 ], [ 21.742993604771016, 43.941865953550916 ], [ 21.741443312059175, 43.939514675162116 ], [ 21.739324578566425, 43.937240912038419 ], [ 21.73674075708027, 43.935096341023268 ], [ 21.726043735030316, 43.926776434884516 ], [ 21.725268588674396, 43.926414700577936 ], [ 21.724080031168512, 43.924554347704941 ], [ 21.723976678381007, 43.9222289095365 ], [ 21.725061883099386, 43.92013601356615 ], [ 21.729816114921732, 43.91473582569779 ], [ 21.730487909389467, 43.913366401038559 ], [ 21.730694614065158, 43.911428534699098 ], [ 21.730281202915194, 43.910033270718827 ], [ 21.728834262990802, 43.907862861282013 ], [ 21.723976678381007, 43.90316030540373 ], [ 21.722529737557352, 43.902230130316241 ], [ 21.719997592914581, 43.900989895067596 ], [ 21.718085564996784, 43.900602322339296 ], [ 21.709403923652133, 43.900343939920845 ], [ 21.705476515029147, 43.899465439878099 ], [ 21.702634312023861, 43.898664455999835 ], [ 21.694831169822635, 43.895770576151165 ], [ 21.685012647815427, 43.892825019459053 ], [ 21.680361768780585, 43.891068020272883 ], [ 21.676692742575995, 43.889233506720927 ], [ 21.675090773020713, 43.888122464480148 ], [ 21.672817009897074, 43.885486966150552 ], [ 21.669664747630009, 43.879957587072965 ], [ 21.668837925329967, 43.877477118374316 ], [ 21.668476190124068, 43.872102769826938 ], [ 21.668889601274088, 43.869415595553278 ], [ 21.669819777260898, 43.866831773167746 ], [ 21.671473422760243, 43.864454658155921 ], [ 21.672817009897074, 43.863214422907276 ], [ 21.683720736622661, 43.855514635292138 ], [ 21.686252883064071, 43.853499253687573 ], [ 21.688371615657502, 43.851483872982328 ], [ 21.689560174062763, 43.849416816332962 ], [ 21.689508498118698, 43.847659817146848 ], [ 21.688319939713438, 43.845902817960678 ], [ 21.686407911795698, 43.844275010882996 ], [ 21.680775180829926, 43.840631822200805 ], [ 21.67906985758782, 43.839081529488965 ], [ 21.677881300981255, 43.837427883090299 ], [ 21.677261183356904, 43.835567532015943 ], [ 21.676899448151005, 43.830864977037038 ], [ 21.676279331425974, 43.829314684325198 ], [ 21.675297478595724, 43.827867743501542 ], [ 21.662016635958992, 43.815827135214079 ], [ 21.652094761164278, 43.809858507464128 ], [ 21.650182733246538, 43.808463243483857 ], [ 21.647443882129437, 43.805595201157587 ], [ 21.645996942205102, 43.80293386530559 ], [ 21.63938235840908, 43.799807441460246 ], [ 21.632767774613114, 43.79717194313065 ], [ 21.622380811824996, 43.794381415170164 ], [ 21.614164260272389, 43.791616726530663 ], [ 21.611115349893453, 43.791125800115537 ], [ 21.607911410782947, 43.790919094540584 ], [ 21.601555210304696, 43.791229152903043 ], [ 21.5985579767692, 43.791797594583272 ], [ 21.590548129892284, 43.794433092013549 ], [ 21.587499220412667, 43.795001532794458 ], [ 21.58119469587848, 43.795285752735253 ], [ 21.578042432712095, 43.7950790471603 ], [ 21.574993524131798, 43.794588120745175 ], [ 21.566932000411498, 43.792107652046468 ], [ 21.563883090931881, 43.791590888108999 ], [ 21.554374627287189, 43.790815741753079 ], [ 21.549206984314878, 43.790143948184664 ], [ 21.547346633240522, 43.789549668982033 ], [ 21.545072870116826, 43.788206081845203 ], [ 21.542385694943846, 43.786087348352396 ], [ 21.539853550301075, 43.784769598737967 ], [ 21.532928908142594, 43.782082424464306 ], [ 21.530241732969557, 43.780635484539971 ], [ 21.5210433285867, 43.774382635949848 ], [ 21.51685753844464, 43.772780667293944 ], [ 21.508692661037458, 43.770791124111042 ], [ 21.506625604388091, 43.769964300911738 ], [ 21.501251254941451, 43.766941229853842 ], [ 21.497117139844136, 43.765029201936102 ], [ 21.493189732120413, 43.763478909224261 ], [ 21.487298617836927, 43.761618557250586 ], [ 21.484611443563267, 43.760481675688766 ], [ 21.47830691902908, 43.75707103100325 ], [ 21.465904574636397, 43.749422919332233 ], [ 21.462183871588365, 43.744978745872402 ], [ 21.460323521413386, 43.743118394798046 ], [ 21.45825646296538, 43.741671453974391 ], [ 21.45613773037195, 43.74089630851779 ], [ 21.453915643192374, 43.740612088576995 ], [ 21.449988233670013, 43.74089630851779 ], [ 21.447921177020703, 43.740844632573726 ], [ 21.445957472259522, 43.740431220524385 ], [ 21.444613885122692, 43.739836941321755 ], [ 21.437534214232585, 43.735573635015214 ], [ 21.435467156683899, 43.73495351829024 ], [ 21.430247836868148, 43.73379079920602 ], [ 21.421359490847806, 43.730612698517177 ], [ 21.418052198949795, 43.729062404906017 ], [ 21.411127556791314, 43.724979967551462 ], [ 21.408130324155138, 43.723998114721212 ], [ 21.400120477278165, 43.722732041950167 ], [ 21.383997429837507, 43.723688056358696 ], [ 21.378002963665836, 43.728597316912612 ], [ 21.366944207309302, 43.764667466730202 ], [ 21.374385614304629, 43.770868639376204 ], [ 21.350872836712028, 43.771385403313673 ], [ 21.349425896787693, 43.770403551382742 ], [ 21.344516636233777, 43.771566271366282 ], [ 21.341209344335766, 43.772031358460424 ], [ 21.337747022806866, 43.772160548770273 ], [ 21.334284702177229, 43.771953844094583 ], [ 21.319970329866806, 43.769680080970943 ], [ 21.301831902620165, 43.764305732423566 ], [ 21.289481235070923, 43.762393704505826 ], [ 21.283383416111747, 43.761153469257181 ], [ 21.280489536263076, 43.761050117368995 ], [ 21.275528598865719, 43.76187693876966 ], [ 21.269327427119038, 43.764047350005171 ], [ 21.267157016782903, 43.764977525092661 ], [ 21.264469841609866, 43.766527817804501 ], [ 21.262351108117116, 43.768336492934793 ], [ 21.261317580242121, 43.769628404127502 ], [ 21.260645785774386, 43.770920315320268 ], [ 21.260439080199376, 43.772884020081449 ], [ 21.260852492248716, 43.774408474371569 ], [ 21.261730991392142, 43.775881252717625 ], [ 21.265400017596733, 43.779705309452424 ], [ 21.267208692726967, 43.782805894876105 ], [ 21.267673780720372, 43.784898789947192 ], [ 21.267673780720372, 43.786991685917542 ], [ 21.266588576001936, 43.791022447328032 ], [ 21.266381870426983, 43.793192856764904 ], [ 21.267157016782903, 43.795104885581964 ], [ 21.271394483768404, 43.80177114532205 ], [ 21.274133334885505, 43.806680405876023 ], [ 21.274701775666415, 43.808824977790493 ], [ 21.274908482140745, 43.813294990571308 ], [ 21.273771599679549, 43.818462633543675 ], [ 21.273616570947979, 43.820529690193041 ], [ 21.274029982098, 43.822545070898286 ], [ 21.27459842287891, 43.823888658035116 ], [ 21.277595656414405, 43.828462021804853 ], [ 21.27769900920191, 43.829314684325198 ], [ 21.277337273995954, 43.830580756196923 ], [ 21.27651045079665, 43.832001857699538 ], [ 21.27516686365982, 43.833397122579129 ], [ 21.272634719017049, 43.835128282444259 ], [ 21.269120720644707, 43.836988634417935 ], [ 21.260645785774386, 43.840941881462641 ], [ 21.258268669863185, 43.829107977850867 ], [ 21.257855258713221, 43.827790229135758 ], [ 21.257493524406584, 43.827195949933127 ], [ 21.25687340678229, 43.826627509152217 ], [ 21.256201613213875, 43.826265773946261 ], [ 21.255426466857955, 43.825929877162082 ], [ 21.241887240903452, 43.820736395768051 ], [ 21.247313267193533, 43.809212551418113 ], [ 21.248140090392837, 43.806422024356891 ], [ 21.248708530274428, 43.800840969335241 ], [ 21.248605178386242, 43.795311591156974 ], [ 21.248243442281023, 43.792676092827378 ], [ 21.247519971869167, 43.790143948184664 ], [ 21.243489211357996, 43.782211616572795 ], [ 21.242817416890261, 43.78001536691562 ], [ 21.241473829753431, 43.77329743123147 ], [ 21.240595329710686, 43.771230374582103 ], [ 21.238890008267276, 43.769240831399202 ], [ 21.23640953866925, 43.767664700265698 ], [ 21.230156690978504, 43.765287584354496 ], [ 21.228141310273259, 43.764693305151866 ], [ 21.219924757821275, 43.763272202749931 ], [ 21.217857700272646, 43.762703761969021 ], [ 21.215377231573939, 43.76148936604136 ], [ 21.210209587702309, 43.75634756149077 ], [ 21.205558708667468, 43.752885239961813 ], [ 21.202871535293127, 43.751334947249973 ], [ 21.190572543687949, 43.745340481078301 ], [ 21.182304315291901, 43.739656074168465 ], [ 21.18013390495571, 43.738622545394151 ], [ 21.177756789044565, 43.73802826619152 ], [ 21.174449497146554, 43.7380024277698 ], [ 21.171658970085389, 43.738467515763205 ], [ 21.169540235693319, 43.73913930933162 ], [ 21.167524854988073, 43.740017809374365 ], [ 21.160031772947946, 43.745237128290796 ], [ 21.157241244987461, 43.746399848274336 ], [ 21.154244012351285, 43.747252508996041 ], [ 21.144425490344076, 43.748880316973043 ], [ 21.142616815213842, 43.748776964185538 ], [ 21.141066521602681, 43.748286037770413 ], [ 21.139567904834905, 43.746994127476967 ], [ 21.138741081635601, 43.745159613925011 ], [ 21.138482700116526, 43.743170070742167 ], [ 21.138999464953315, 43.738312486132315 ], [ 21.13868940569148, 43.736400458214575 ], [ 21.136312289780335, 43.732059638441513 ], [ 21.13527876100602, 43.728545640968548 ], [ 21.135227085061899, 43.726375229733037 ], [ 21.135537144323735, 43.724204820296222 ], [ 21.136829053717861, 43.719088854167239 ], [ 21.13698408424807, 43.713766181563983 ], [ 21.137655876917165, 43.710639756819319 ], [ 21.139826288152676, 43.704877835543641 ], [ 21.148146193392108, 43.687049465760197 ], [ 21.13889611216581, 43.690976874383239 ], [ 21.125460238998812, 43.695963650202259 ], [ 21.121481154431706, 43.697694810966709 ], [ 21.117553744909401, 43.69983938198186 ], [ 21.112592808411364, 43.703895981814071 ], [ 21.110215691600843, 43.705136217062716 ], [ 21.10055219922458, 43.708805243267363 ], [ 21.094661085840414, 43.712241726374543 ], [ 21.092697381079233, 43.712939358364679 ], [ 21.090578647586483, 43.713326931092979 ], [ 21.087736443681933, 43.713404446358084 ], [ 21.07993330327929, 43.712629299102844 ], [ 21.076057569701049, 43.712422594427153 ], [ 21.068202751555702, 43.712474270371274 ], [ 21.064430372563606, 43.712784328733733 ], [ 21.060141228734722, 43.713740343142319 ], [ 21.051097853083434, 43.718003648549541 ], [ 21.048979119590683, 43.718572089330451 ], [ 21.043191358994022, 43.71929555884293 ], [ 21.028101841226999, 43.719812324579095 ], [ 21.024432814123031, 43.720122382042291 ], [ 21.020918816650067, 43.720690822823201 ], [ 21.012805616985645, 43.723222968365292 ], [ 21.009033237094172, 43.723972276299492 ], [ 21.001281772635707, 43.725031643495527 ], [ 20.997716099218565, 43.725858465795511 ], [ 20.992238396984419, 43.727873847400133 ], [ 20.989551221811439, 43.728442288181043 ], [ 20.988310988361434, 43.728493964125107 ], [ 20.985675490031838, 43.728028876131702 ], [ 20.98066287579104, 43.726168525057346 ], [ 20.976683791223991, 43.723998114721212 ], [ 20.975030144825325, 43.723429673940302 ], [ 20.973893263263449, 43.723274645208676 ], [ 20.971102736202283, 43.723636380414575 ], [ 20.965263298762238, 43.725031643495527 ], [ 20.959578891852345, 43.726943671413267 ], [ 20.95699507036619, 43.728183905762592 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-12", "NAME_1": "Šumadijski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.725329624062908, 43.775106106361704 ], [ 20.721453892283307, 43.775312811936715 ], [ 20.717733189235275, 43.775777899930119 ], [ 20.712927279670225, 43.776992295857724 ], [ 20.709930047034049, 43.77831004547221 ], [ 20.704607375330113, 43.78156566052678 ], [ 20.701661817738682, 43.783012600451116 ], [ 20.694478794061069, 43.785751451568217 ], [ 20.692153354993309, 43.786991685917542 ], [ 20.690137974288064, 43.788412787420157 ], [ 20.688380975101893, 43.790040595397159 ], [ 20.685590448040728, 43.793761298445133 ], [ 20.67618533718354, 43.804871730745731 ], [ 20.672051222086225, 43.810607815398328 ], [ 20.668537224613203, 43.813966783240403 ], [ 20.663524611271782, 43.817945867807509 ], [ 20.662491081598148, 43.81934113178778 ], [ 20.661870964873117, 43.820891425398941 ], [ 20.661715936141547, 43.822855130160121 ], [ 20.662077671347447, 43.825697333165351 ], [ 20.662025995403326, 43.827712713870653 ], [ 20.661405876879712, 43.829728095475218 ], [ 20.659338820230346, 43.832311916961373 ], [ 20.657116733050771, 43.834068915248224 ], [ 20.654532911564615, 43.835619207960065 ], [ 20.641872185652801, 43.841587835710015 ], [ 20.636394484317975, 43.844972642873131 ], [ 20.63324222205091, 43.847608141202727 ], [ 20.626472608623999, 43.854377752830999 ], [ 20.620788201714106, 43.859183661496729 ], [ 20.613915236399009, 43.864402981312537 ], [ 20.606060418253662, 43.869906521069083 ], [ 20.604148390335922, 43.872076931405218 ], [ 20.601151156800427, 43.87734792716509 ], [ 20.596706984239916, 43.882928982186741 ], [ 20.594329868328771, 43.886365465293977 ], [ 20.591074253274144, 43.891894843472244 ], [ 20.588025343794584, 43.895512192833394 ], [ 20.583271111972238, 43.900421454286686 ], [ 20.579240349662371, 43.903211982247171 ], [ 20.576449822601205, 43.904555569384002 ], [ 20.57174726672298, 43.906002509308337 ], [ 20.565494419032177, 43.907242742758342 ], [ 20.560843539997336, 43.908612169216212 ], [ 20.553092074639494, 43.912384549107628 ], [ 20.547666050148052, 43.915614325740535 ], [ 20.546115757436212, 43.917112942508254 ], [ 20.545082227762578, 43.918818263951721 ], [ 20.544772170299382, 43.919800116781914 ], [ 20.544358758250098, 43.930445461988484 ], [ 20.543376906319168, 43.93421784098058 ], [ 20.542395054388237, 43.935638943382514 ], [ 20.540172967208662, 43.937344264825924 ], [ 20.536142204898795, 43.93923045522132 ], [ 20.53149132676333, 43.941969306338365 ], [ 20.528132358021878, 43.944837347765372 ], [ 20.526220330104138, 43.946930242836402 ], [ 20.537692497610635, 43.951116034777158 ], [ 20.541516554345492, 43.952743841854783 ], [ 20.544927199031008, 43.954526679462674 ], [ 20.55402225062636, 43.960546983156746 ], [ 20.562703891971012, 43.965120347825746 ], [ 20.565029331038772, 43.966773993325091 ], [ 20.566476270963108, 43.968815213351377 ], [ 20.566941358956512, 43.970830593157302 ], [ 20.566889683012448, 43.972871813183588 ], [ 20.566166212600592, 43.975817368976379 ], [ 20.566011182969703, 43.977936103368449 ], [ 20.566321242231538, 43.9800548368612 ], [ 20.568801710930188, 43.984912421471051 ], [ 20.572419061190715, 43.989563300505893 ], [ 20.57520958825188, 43.992043769204543 ], [ 20.580325555280126, 43.99529938425917 ], [ 20.588025343794584, 43.999278468826276 ], [ 20.59122928200577, 44.001526394427515 ], [ 20.592211134835964, 44.002844143142681 ], [ 20.592727898773489, 44.004291083067017 ], [ 20.593192986766894, 44.008786933370232 ], [ 20.59391645717875, 44.010130520507118 ], [ 20.595001661897186, 44.011267402068938 ], [ 20.597275425020825, 44.012171738734708 ], [ 20.599032424206996, 44.012300929943933 ], [ 20.600892775281352, 44.012042548424859 ], [ 20.602598096724762, 44.011448269222228 ], [ 20.607714063753008, 44.008270169432762 ], [ 20.610452914870109, 44.006745714243266 ], [ 20.61334679471878, 44.005505479893941 ], [ 20.61510379390495, 44.004911200691311 ], [ 20.61680911624768, 44.004601142328852 ], [ 20.618617791377972, 44.004756171060421 ], [ 20.620219760933196, 44.005376287785452 ], [ 20.621718376801653, 44.006823229508427 ], [ 20.624302199187127, 44.010750637232093 ], [ 20.627919549447654, 44.014367988391939 ], [ 20.63303551557658, 44.01803701369721 ], [ 20.636911248255501, 44.020207424033345 ], [ 20.623527052831207, 44.032971502732664 ], [ 20.621046584132557, 44.034935208393108 ], [ 20.614276970705589, 44.03886261701615 ], [ 20.611899854794444, 44.04056793935888 ], [ 20.610349562082604, 44.042376614489172 ], [ 20.607972446171459, 44.046562405530551 ], [ 20.606318800672113, 44.048422757504227 ], [ 20.604200067179363, 44.050179754891758 ], [ 20.598102248220187, 44.054055488469999 ], [ 20.595363397103085, 44.055605781181839 ], [ 20.590247430074839, 44.057879544305479 ], [ 20.578051792156486, 44.061858628872585 ], [ 20.571282178729575, 44.064339098470612 ], [ 20.565287712557847, 44.066948757479167 ], [ 20.55784630736116, 44.071057034154762 ], [ 20.553402133901329, 44.072607326866603 ], [ 20.547614373304668, 44.074260973265268 ], [ 20.543997023044142, 44.075914617865294 ], [ 20.541619907132997, 44.077464911476454 ], [ 20.540172967208662, 44.078911852300109 ], [ 20.539346144009301, 44.080513820956071 ], [ 20.539139439333667, 44.08144399694288 ], [ 20.539914584790267, 44.091443386103379 ], [ 20.539294468065236, 44.097127793912534 ], [ 20.538260939290922, 44.099866645029635 ], [ 20.534901971448789, 44.105215156054612 ], [ 20.532318149962634, 44.110382799026922 ], [ 20.528752475646229, 44.113535061294044 ], [ 20.520329216719972, 44.120149645090009 ], [ 20.518572219332441, 44.122500922579491 ], [ 20.517848748021265, 44.124206244022901 ], [ 20.515885044159461, 44.132862046945888 ], [ 20.514851515385089, 44.134954942016918 ], [ 20.51335289861737, 44.13673777872549 ], [ 20.511854281849594, 44.137771308399124 ], [ 20.505963169364748, 44.141026923453751 ], [ 20.499090204049651, 44.144024156089927 ], [ 20.496609735351001, 44.145626126544471 ], [ 20.490977004385229, 44.149992783839878 ], [ 20.488444857943819, 44.151052151035913 ], [ 20.485499302151084, 44.151749783026048 ], [ 20.482347038984642, 44.152137355754348 ], [ 20.472373488245864, 44.152757473378642 ], [ 20.469169549135358, 44.153119208584599 ], [ 20.466740757280093, 44.153635973421387 ], [ 20.464518670100517, 44.154385281355644 ], [ 20.461934848614362, 44.155832221279979 ], [ 20.460281203115017, 44.157795925141784 ], [ 20.459712762334107, 44.15988882111219 ], [ 20.459867791065676, 44.162110908291766 ], [ 20.462193231032757, 44.169759019962783 ], [ 20.462451612551888, 44.172549547023948 ], [ 20.462296583820262, 44.17492666293515 ], [ 20.461934848614362, 44.176063544496969 ], [ 20.456818881586116, 44.176166897284475 ], [ 20.453098179437404, 44.176683661221944 ], [ 20.450204298689414, 44.177587998787089 ], [ 20.447930535565774, 44.179112453976529 ], [ 20.446173537278924, 44.181024481894326 ], [ 20.442607862962461, 44.185985419291626 ], [ 20.440437452626327, 44.189551092708712 ], [ 20.438732131182917, 44.193220119812679 ], [ 20.435941603222375, 44.20071320185275 ], [ 20.434236280879645, 44.207379462492156 ], [ 20.432169224230279, 44.213735662970464 ], [ 20.432530959436235, 44.216086941359208 ], [ 20.435734897647365, 44.223347480301925 ], [ 20.436199984741506, 44.224820257748661 ], [ 20.436199984741506, 44.226913153719067 ], [ 20.435631544859916, 44.228618476061797 ], [ 20.434598016085545, 44.230220444717702 ], [ 20.427053257202033, 44.237248440563064 ], [ 20.423125847679728, 44.241795965911081 ], [ 20.424056023666537, 44.247997138557082 ], [ 20.423797642147463, 44.252363796751808 ], [ 20.423177525422432, 44.254405015878774 ], [ 20.420283643775122, 44.259779365325414 ], [ 20.416149529577126, 44.266290595434612 ], [ 20.41542606006459, 44.267789212202331 ], [ 20.414805942440296, 44.270011298482643 ], [ 20.41449588407778, 44.274662177517428 ], [ 20.414702589652791, 44.276935939741804 ], [ 20.415736118427105, 44.28205190677005 ], [ 20.41542606006459, 44.284067288374615 ], [ 20.414599236865286, 44.285410875511445 ], [ 20.413410679359345, 44.286702785804891 ], [ 20.41139529775478, 44.288356432203557 ], [ 20.408966505899514, 44.289855048072013 ], [ 20.406227654782413, 44.291198635208843 ], [ 20.402506951734438, 44.292387192714727 ], [ 20.400543246973257, 44.292800604764068 ], [ 20.389071078567383, 44.294299221531844 ], [ 20.389484490616724, 44.295539455881169 ], [ 20.392378371364714, 44.29977692286667 ], [ 20.397442660650256, 44.304479478744952 ], [ 20.3990446311048, 44.306236477031746 ], [ 20.400129835823236, 44.308096829005422 ], [ 20.400646599760762, 44.310163886554108 ], [ 20.400646599760762, 44.312696031196879 ], [ 20.400078158979852, 44.320085761348764 ], [ 20.400129835823236, 44.323728950031011 ], [ 20.400336541398246, 44.324736640383605 ], [ 20.401525098904187, 44.326881212298076 ], [ 20.404057245345598, 44.329284165731622 ], [ 20.408914829056073, 44.333108222466478 ], [ 20.411550327385669, 44.335847073583579 ], [ 20.418216587125755, 44.343753566773671 ], [ 20.419560174262642, 44.345045477966437 ], [ 20.423177525422432, 44.347887681870986 ], [ 20.431187372299348, 44.353107000787418 ], [ 20.432530959436235, 44.354553940711753 ], [ 20.433254428948715, 44.356104234322913 ], [ 20.433254428948715, 44.356982734365658 ], [ 20.43278934095531, 44.358222967815664 ], [ 20.431239048243469, 44.360264186942629 ], [ 20.426949904414528, 44.36375234599393 ], [ 20.422040642961292, 44.368196520353081 ], [ 20.419508498318521, 44.369591783434032 ], [ 20.415529412852095, 44.371193752989313 ], [ 20.41273888489161, 44.372589016070208 ], [ 20.405400831583108, 44.378118395147794 ], [ 20.399561395042326, 44.382149156558285 ], [ 20.39847619032389, 44.383441066851731 ], [ 20.396977572656851, 44.386179917968832 ], [ 20.396512484663447, 44.388427843570128 ], [ 20.39671919113772, 44.389332180235897 ], [ 20.397339307862751, 44.390624091428663 ], [ 20.398889600574591, 44.392536119346403 ], [ 20.402972038828523, 44.396876939119409 ], [ 20.407416213187673, 44.401114407004229 ], [ 20.409534945781104, 44.402561346928621 ], [ 20.41139529775478, 44.403233141396356 ], [ 20.41351403214685, 44.403775742856226 ], [ 20.419611851106026, 44.404938462839766 ], [ 20.421937290173787, 44.405610257307501 ], [ 20.424211053297483, 44.406514593973327 ], [ 20.427001580358649, 44.408219916316057 ], [ 20.433306104892836, 44.412844956929177 ], [ 20.442194451812497, 44.41889109994429 ], [ 20.448395622659859, 44.41832265916338 ], [ 20.451289504307169, 44.417857571169975 ], [ 20.453873324894005, 44.417134100758119 ], [ 20.456250440805206, 44.41620392477131 ], [ 20.466482374861698, 44.409408473821998 ], [ 20.469272901922864, 44.407780666744372 ], [ 20.477231072855716, 44.403749905333825 ], [ 20.483845655752418, 44.398892319824654 ], [ 20.485654330882653, 44.39827220309968 ], [ 20.487721388431339, 44.398013821580605 ], [ 20.497849968801006, 44.39847890957401 ], [ 20.501105583855576, 44.398375555887185 ], [ 20.505963169364748, 44.397807115106275 ], [ 20.509373814050264, 44.396825263175344 ], [ 20.521569451968617, 44.391347560941142 ], [ 20.537899204084965, 44.385663154031306 ], [ 20.53645226416063, 44.382924302914205 ], [ 20.532938266687665, 44.375069484768858 ], [ 20.532111444387624, 44.372020576188618 ], [ 20.531646356394219, 44.365922757229441 ], [ 20.531904737913294, 44.363028876481451 ], [ 20.532731561112655, 44.360341702207791 ], [ 20.53361006025608, 44.35879140949595 ], [ 20.534901971448789, 44.357499498303184 ], [ 20.536607292892256, 44.356517646372254 ], [ 20.538519320809996, 44.355845851904519 ], [ 20.540379672783672, 44.355484116698619 ], [ 20.543066847057332, 44.355587470385444 ], [ 20.546219110223717, 44.356414292685429 ], [ 20.552730340332914, 44.35873973175319 ], [ 20.565029331038772, 44.361116848563711 ], [ 20.573039177915689, 44.363907376524196 ], [ 20.588903842938009, 44.368144843509697 ], [ 20.595518425834655, 44.370547796943242 ], [ 20.600272657657001, 44.372537340126144 ], [ 20.603631626398396, 44.373415839269569 ], [ 20.606525506247124, 44.373674220788644 ], [ 20.609367710151673, 44.373415839269569 ], [ 20.611279738069413, 44.373002428119548 ], [ 20.614948765173381, 44.371658840982718 ], [ 20.616499057885221, 44.370728664995852 ], [ 20.618101027440446, 44.369023341753802 ], [ 20.619082879371376, 44.366956285104436 ], [ 20.61970299699567, 44.364269110830776 ], [ 20.62047814335159, 44.355742499117014 ], [ 20.622131788850936, 44.347784329083481 ], [ 20.621873407331861, 44.342823390786805 ], [ 20.622183464795057, 44.341273098074964 ], [ 20.622958612050297, 44.339774482206565 ], [ 20.624715610337148, 44.338017483020394 ], [ 20.627196079035798, 44.336699734305284 ], [ 20.634120721194336, 44.334761867965824 ], [ 20.635981073167954, 44.333780016034893 ], [ 20.640993687408752, 44.329930120878373 ], [ 20.649778679742269, 44.321842760534935 ], [ 20.664041375209308, 44.327888901751408 ], [ 20.677580601163811, 44.332901515992148 ], [ 20.684608595210477, 44.334710191122383 ], [ 20.687554151902589, 44.334916896697393 ], [ 20.690499708594643, 44.334658515178319 ], [ 20.694478794061069, 44.333624986403947 ], [ 20.698457878628176, 44.332126370535548 ], [ 20.707139519972827, 44.326752021088851 ], [ 20.710188428553124, 44.32540843395202 ], [ 20.712513869419524, 44.324736640383605 ], [ 20.71819827632936, 44.323806464396796 ], [ 20.728171827967458, 44.323134670828381 ], [ 20.731375767077964, 44.32269542125664 ], [ 20.736078322056926, 44.32137767254153 ], [ 20.738868849118091, 44.3200340854047 ], [ 20.742847934584518, 44.31714020375739 ], [ 20.747085401570018, 44.312385972834363 ], [ 20.748584019237057, 44.310939032910028 ], [ 20.750392694367349, 44.309647121717262 ], [ 20.757420689313335, 44.30535797788832 ], [ 20.772045119086954, 44.297761542161425 ], [ 20.79126875195135, 44.296572983756164 ], [ 20.806099888199242, 44.294247544688403 ], [ 20.809303827309748, 44.293627427963429 ], [ 20.816383498199855, 44.291534531993022 ], [ 20.819535759567657, 44.290268460121297 ], [ 20.821964553221562, 44.288873196141083 ], [ 20.823049757939941, 44.287839667366711 ], [ 20.823669874664972, 44.286702785804891 ], [ 20.823721550609037, 44.285333360246341 ], [ 20.823153109828127, 44.28396393468779 ], [ 20.820879346704487, 44.281586818776645 ], [ 20.81628014541235, 44.27802114535956 ], [ 20.814781527745311, 44.276445014225999 ], [ 20.813851352657764, 44.274713854360868 ], [ 20.813644647082754, 44.272750148700368 ], [ 20.815556675000551, 44.266600653797127 ], [ 20.816021762993955, 44.263810125836642 ], [ 20.816331821356471, 44.257634793410944 ], [ 20.828475783330703, 44.258409938867544 ], [ 20.83979292210563, 44.259986070001105 ], [ 20.843100213104321, 44.260244452419499 ], [ 20.846355829058268, 44.260141100531314 ], [ 20.849508091325333, 44.259676012537909 ], [ 20.853642204624009, 44.258332424501759 ], [ 20.858034702139776, 44.256472073427403 ], [ 20.863357374743032, 44.253216458372833 ], [ 20.868214959352883, 44.249702460000492 ], [ 20.869971957639734, 44.248617255282056 ], [ 20.871935663300178, 44.247842108926136 ], [ 20.87410607273705, 44.247377020932731 ], [ 20.876896599798215, 44.247170315357721 ], [ 20.880927362108082, 44.247351183410387 ], [ 20.883821241956753, 44.247221992201162 ], [ 20.886146681024513, 44.246886095416926 ], [ 20.888420444148153, 44.246317653736696 ], [ 20.891366000840264, 44.245180772174876 ], [ 20.89684370307441, 44.242622789110385 ], [ 20.898910759723776, 44.24213186269526 ], [ 20.901029494115846, 44.241899318698586 ], [ 20.903975050807958, 44.241899318698586 ], [ 20.906920606600693, 44.242261053904485 ], [ 20.914930454376929, 44.244689845759751 ], [ 20.918651157424961, 44.245309964283422 ], [ 20.930226677718963, 44.246291816214296 ], [ 20.933947380766995, 44.246911932939327 ], [ 20.941905551699847, 44.249340724794592 ], [ 20.949863721733379, 44.250684312830742 ], [ 20.954566277611605, 44.252131252755078 ], [ 20.973893263263449, 44.259004218070174 ], [ 20.97394494010689, 44.246756904207757 ], [ 20.975236851299655, 44.236318264576198 ], [ 20.976011996756256, 44.234096178295943 ], [ 20.977458936680591, 44.231874091116367 ], [ 20.979474318285156, 44.230065415986132 ], [ 20.985727165975902, 44.226706448144057 ], [ 20.992341749771924, 44.222003893165095 ], [ 20.996269159294229, 44.220040188403971 ], [ 21.002573682929096, 44.217818102123715 ], [ 21.005674269252097, 44.217249661342748 ], [ 21.01538943937112, 44.216061102937545 ], [ 21.020247023081652, 44.214820867688843 ], [ 21.041331007919666, 44.205105699368517 ], [ 21.051511265132774, 44.199938056396149 ], [ 21.061278110296541, 44.199524645246186 ], [ 21.069029574755064, 44.198697822046825 ], [ 21.072181837921448, 44.19880117393501 ], [ 21.074300571414199, 44.19921458598435 ], [ 21.082155388660226, 44.20133332037642 ], [ 21.084945915721391, 44.201798408369825 ], [ 21.086289503757598, 44.201798408369825 ], [ 21.088614942825359, 44.20128164353298 ], [ 21.090837030004934, 44.200299790702729 ], [ 21.09595299703318, 44.197199205279048 ], [ 21.098071729626611, 44.19632070613568 ], [ 21.100448846437075, 44.195700589410649 ], [ 21.103601107804877, 44.195183824573803 ], [ 21.113781365917305, 44.194408678217883 ], [ 21.117295363390269, 44.193943590224478 ], [ 21.122566359150142, 44.192548326244264 ], [ 21.126028679779722, 44.190998033532424 ], [ 21.127630650234323, 44.190067857545557 ], [ 21.132849969150755, 44.186114610500852 ], [ 21.139154493684941, 44.183324083439686 ], [ 21.138431024172405, 44.174616604572634 ], [ 21.140394728034266, 44.161904201817435 ], [ 21.143340284726321, 44.153377591002993 ], [ 21.129284294834349, 44.135239162857033 ], [ 21.129077590158658, 44.133068753420218 ], [ 21.128457471634988, 44.131621813495883 ], [ 21.124530063911322, 44.125368964006441 ], [ 21.123548211081072, 44.123301907357131 ], [ 21.122979771199482, 44.120769761815041 ], [ 21.123548211081072, 44.118237617172269 ], [ 21.124633415799508, 44.116170558724264 ], [ 21.126080356623163, 44.114413561336789 ], [ 21.1391028168415, 44.102889716087532 ], [ 21.13734581855465, 44.092916165348754 ], [ 21.13662234904217, 44.090849106900748 ], [ 21.135692173055304, 44.089092109513217 ], [ 21.134348585918474, 44.087541815902057 ], [ 21.132694940419128, 44.086198228765227 ], [ 21.123651563868577, 44.08066884968764 ], [ 21.118949008889615, 44.076224677127129 ], [ 21.11657189297847, 44.074622708471168 ], [ 21.113781365917305, 44.073201606069233 ], [ 21.109957310081768, 44.071677150879793 ], [ 21.099828728812781, 44.069248359024527 ], [ 21.090630324429924, 44.067594713525182 ], [ 21.086496209332552, 44.066302802332416 ], [ 21.082000359928657, 44.064519964724582 ], [ 21.068099399667517, 44.057052721106174 ], [ 21.054250116249875, 44.047440903774657 ], [ 21.082827183127961, 44.04232493854505 ], [ 21.086909621381892, 44.041033027352285 ], [ 21.089183383606269, 44.039586087427949 ], [ 21.100862257587096, 44.029767564521478 ], [ 21.102412551198256, 44.027519639819502 ], [ 21.103084343867351, 44.025426743849152 ], [ 21.103239372598978, 44.023308010356345 ], [ 21.102980991079846, 44.021137600020211 ], [ 21.102205844723926, 44.01901886742678 ], [ 21.100810580743712, 44.016951808978774 ], [ 21.09745161290158, 44.012998561934069 ], [ 21.09631473223908, 44.010957342807103 ], [ 21.09595299703318, 44.008993638945242 ], [ 21.096418084127265, 44.003981024704501 ], [ 21.096211378552255, 44.00181061526763 ], [ 21.095642937771345, 43.999691880875559 ], [ 21.093989292271999, 43.996953029758515 ], [ 21.0924906764036, 43.995170193049944 ], [ 21.090578647586483, 43.993697414703888 ], [ 21.088821649299632, 43.992973945191409 ], [ 21.084894239777327, 43.992043769204543 ], [ 21.081948683085216, 43.991837062730212 ], [ 21.073628777845784, 43.992198797936169 ], [ 21.068616163605043, 43.992250474779553 ], [ 21.067220899624829, 43.992095445148664 ], [ 21.064378695720222, 43.991191108482838 ], [ 21.061898227920892, 43.989718329237462 ], [ 21.05337161620713, 43.983258775072386 ], [ 21.051511265132774, 43.982380275928961 ], [ 21.046550326836098, 43.980726630429615 ], [ 21.044069858137448, 43.97948639608029 ], [ 21.042157830219651, 43.977729396894119 ], [ 21.041020948657831, 43.975636501823089 ], [ 21.040710890295315, 43.973621121117844 ], [ 21.041020948657831, 43.971579901990879 ], [ 21.041744419069687, 43.970029609279038 ], [ 21.042881300631507, 43.968582669354703 ], [ 21.050219353940008, 43.962949938388931 ], [ 21.051976353126179, 43.961244615146825 ], [ 21.053578321782084, 43.959125882553394 ], [ 21.055748732118275, 43.955353501762659 ], [ 21.060709670414951, 43.950030829159402 ], [ 21.061691522345882, 43.948532213291003 ], [ 21.062363315914297, 43.946930242836402 ], [ 21.062621698332691, 43.944863186187092 ], [ 21.062311639070856, 43.942796129537726 ], [ 21.061536492714936, 43.941245835926566 ], [ 21.060347935209052, 43.939850571946295 ], [ 21.058745964754451, 43.938662014440411 ], [ 21.052079705014364, 43.935096341023268 ], [ 21.049547560371593, 43.934114488193075 ], [ 21.043088006206517, 43.932073269066109 ], [ 21.041331007919666, 43.930755520350942 ], [ 21.040865919926262, 43.929566961945739 ], [ 21.040969272713767, 43.928197537286508 ], [ 21.044896681336752, 43.917707220811565 ], [ 21.045361769330157, 43.915200913691194 ], [ 21.045155063755146, 43.910911769862253 ], [ 21.043708122931491, 43.905640774102437 ], [ 21.038230421596666, 43.907191066814278 ], [ 21.03388960092434, 43.908069565957703 ], [ 21.031615837800643, 43.908302109954377 ], [ 21.028153517171063, 43.908276272431976 ], [ 21.025569695684908, 43.907914537226077 ], [ 21.023192579773706, 43.907242742758342 ], [ 21.017198113602035, 43.90450389343988 ], [ 21.009808384349469, 43.9018167182669 ], [ 21.006811150813917, 43.90044729270835 ], [ 21.002935418134996, 43.897630927225464 ], [ 21.001126743004761, 43.895822252095229 ], [ 21.000041538286325, 43.893858548233368 ], [ 20.999834831811995, 43.891972357838029 ], [ 21.002573682929096, 43.884660142951191 ], [ 21.004640741377102, 43.881817939046641 ], [ 21.008568150000087, 43.878097235998609 ], [ 21.014976027321779, 43.870707505846667 ], [ 21.016009556096094, 43.868227037148017 ], [ 21.016577996877061, 43.865565701296077 ], [ 21.016629672821125, 43.860139675005996 ], [ 21.016112908883599, 43.857581691941505 ], [ 21.014665968959264, 43.854739488036898 ], [ 21.012650588254019, 43.853137519380994 ], [ 21.009394972300129, 43.851225491463254 ], [ 21.007069533232368, 43.849571845064588 ], [ 21.004382358059388, 43.847220567575107 ], [ 21.000093215129766, 43.842879746902781 ], [ 20.996992628806765, 43.840218411050785 ], [ 20.991514926572563, 43.837143663149504 ], [ 20.982523227764716, 43.833319607314024 ], [ 20.97931928865421, 43.832518622536384 ], [ 20.970430941734548, 43.831898504912033 ], [ 20.965676710811522, 43.830477403409418 ], [ 20.956271599954334, 43.826343289211422 ], [ 20.950690544932684, 43.82337189409759 ], [ 20.947383253933992, 43.820839749454876 ], [ 20.945006138022848, 43.81799754555027 ], [ 20.943197462892556, 43.814431871233865 ], [ 20.940923699768916, 43.808489081006257 ], [ 20.939890170994602, 43.807042141081922 ], [ 20.937978143076805, 43.805440172426017 ], [ 20.935497674378155, 43.804613349226656 ], [ 20.93425744002883, 43.804535833961552 ], [ 20.932448764898538, 43.804768377958226 ], [ 20.925679152370947, 43.806422024356891 ], [ 20.921751742848642, 43.806938788294417 ], [ 20.913380160765769, 43.807378037866158 ], [ 20.908367547424348, 43.807352200343757 ], [ 20.905628696307247, 43.810969549704907 ], [ 20.904491814745427, 43.812158108110168 ], [ 20.903820021177012, 43.812674872047694 ], [ 20.903096550765213, 43.812984931309529 ], [ 20.901597934896756, 43.813605048034503 ], [ 20.900926141328341, 43.813940944818739 ], [ 20.900357699648112, 43.814406032812144 ], [ 20.899840935710586, 43.814948635171334 ], [ 20.899479201404006, 43.815517075952243 ], [ 20.899220818985611, 43.816137193576594 ], [ 20.899014113410601, 43.816808987145009 ], [ 20.898807406936271, 43.819651191049616 ], [ 20.89860070226058, 43.82027130777459 ], [ 20.898083937423735, 43.82145986617985 ], [ 20.89741214385532, 43.822622586163391 ], [ 20.896947055861915, 43.823139350100917 ], [ 20.895293410362569, 43.824302070084457 ], [ 20.8947766464251, 43.824767158077861 ], [ 20.894466587163265, 43.825283922015387 ], [ 20.894259880688935, 43.825852362796297 ], [ 20.89415652790143, 43.826575833208096 ], [ 20.878963657346901, 43.828952949119298 ], [ 20.873847691217975, 43.830296536256128 ], [ 20.871263868832443, 43.831743476180463 ], [ 20.869971957639734, 43.833009548951509 ], [ 20.867543165784468, 43.836239326483678 ], [ 20.865527785079223, 43.838099677558034 ], [ 20.862840609906186, 43.83939158785148 ], [ 20.860721877312756, 43.839985867054111 ], [ 20.85849979013318, 43.840218411050785 ], [ 20.855709263072015, 43.840063382319215 ], [ 20.853745558310834, 43.83959829432581 ], [ 20.849921501576034, 43.837996323871209 ], [ 20.848061151400998, 43.83691111915283 ], [ 20.846407505002333, 43.835619207960065 ], [ 20.840619745304991, 43.830115668203518 ], [ 20.838604363700426, 43.828875433854193 ], [ 20.83689904135764, 43.828384508338388 ], [ 20.8349870134399, 43.828281155550883 ], [ 20.83307498462284, 43.828410345860732 ], [ 20.818502231692605, 43.829831448262723 ], [ 20.807185092917678, 43.831640123392958 ], [ 20.799278598828266, 43.831924343333753 ], [ 20.795351190205224, 43.831795152124528 ], [ 20.791475456626983, 43.831381740974564 ], [ 20.788994988827653, 43.830864977037038 ], [ 20.786669548860573, 43.830193183468623 ], [ 20.778608026039535, 43.827040921201501 ], [ 20.77623091012839, 43.826317450789702 ], [ 20.765172152872537, 43.823888658035116 ], [ 20.763053420279107, 43.823139350100917 ], [ 20.760624626625201, 43.821718247698925 ], [ 20.759177686700866, 43.819857895725306 ], [ 20.758764275550845, 43.817971707128549 ], [ 20.75922936444357, 43.816059679210809 ], [ 20.760727980312026, 43.814070136027908 ], [ 20.768014356777144, 43.809109199529928 ], [ 20.769151239238283, 43.807920641124667 ], [ 20.770133091169214, 43.805956936363486 ], [ 20.769409620757358, 43.798773911786554 ], [ 20.770856560681693, 43.791900947370777 ], [ 20.770753207894188, 43.790505683390563 ], [ 20.770184767113278, 43.789265449041238 ], [ 20.768996208708074, 43.788231920266867 ], [ 20.767290887264608, 43.787456773011627 ], [ 20.760314569162006, 43.785027981156361 ], [ 20.745690137589747, 43.778206691785385 ], [ 20.740419141829932, 43.77619131108014 ], [ 20.736853469312166, 43.775519518411045 ], [ 20.73308108942075, 43.775183620727489 ], [ 20.725329624062908, 43.775106106361704 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-17", "NAME_1": "Moravicki" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.620788201714106, 43.859183661496729 ], [ 20.596603630553091, 43.846858832369207 ], [ 20.593813104391245, 43.845179348448141 ], [ 20.585441522308372, 43.83784129513964 ], [ 20.581100701636046, 43.834844062503464 ], [ 20.575467969770955, 43.831640123392958 ], [ 20.573452589965029, 43.829934801050229 ], [ 20.571127149997949, 43.827325141142353 ], [ 20.569060093348639, 43.825490628489717 ], [ 20.560481804791436, 43.820736395768051 ], [ 20.559086540811165, 43.819754543837121 ], [ 20.55784630736116, 43.818100898337775 ], [ 20.557432896211196, 43.816240546364099 ], [ 20.55784630736116, 43.814328518446359 ], [ 20.559086540811165, 43.812313136841794 ], [ 20.562548862340122, 43.808385729118072 ], [ 20.563944126320337, 43.806344509091787 ], [ 20.564512567101247, 43.804303289964821 ], [ 20.564409214313798, 43.802287910158896 ], [ 20.563789096689447, 43.800763454969456 ], [ 20.562703891971012, 43.799342353466841 ], [ 20.561256952046676, 43.798102118218139 ], [ 20.546167433380333, 43.787766832273462 ], [ 20.541929966394832, 43.786139024296517 ], [ 20.536400588216566, 43.784485378797172 ], [ 20.533093296318555, 43.782831733297826 ], [ 20.53107791471399, 43.781203925320881 ], [ 20.530251092413948, 43.779963690971556 ], [ 20.528804151590293, 43.77598460550513 ], [ 20.528029006133693, 43.774718532734084 ], [ 20.523894891036377, 43.770687771323537 ], [ 20.523326450255468, 43.769860948124233 ], [ 20.522758010373877, 43.767716376209762 ], [ 20.523636508617983, 43.764409085211071 ], [ 20.528442417283713, 43.756864326327559 ], [ 20.530147738727123, 43.753453680742723 ], [ 20.530561150776464, 43.752110094505213 ], [ 20.530354445201453, 43.750172228165752 ], [ 20.529372593270523, 43.748441067401302 ], [ 20.525910271741623, 43.745211289869133 ], [ 20.523429803042973, 43.743531805948066 ], [ 20.518572219332441, 43.741051337249417 ], [ 20.514386428291004, 43.739397690850751 ], [ 20.509528842781833, 43.737950750926416 ], [ 20.505549758214727, 43.737201442992159 ], [ 20.502707554310177, 43.73722728141388 ], [ 20.493974237021405, 43.738855089390825 ], [ 20.492010532260224, 43.739087633387555 ], [ 20.489220005199059, 43.739035956544114 ], [ 20.487359653225383, 43.738674221338215 ], [ 20.483380567758957, 43.737330634201385 ], [ 20.475990837607071, 43.733558255209289 ], [ 20.473872105013641, 43.732731432009928 ], [ 20.468497755566943, 43.731646227291549 ], [ 20.458989291922251, 43.730405992042847 ], [ 20.451961296976265, 43.728468125703387 ], [ 20.449790886640073, 43.727615464981682 ], [ 20.447827182778269, 43.726581936207367 ], [ 20.446173537278924, 43.725315864335641 ], [ 20.443486362105887, 43.722396145165931 ], [ 20.442452834230892, 43.72084585245409 ], [ 20.438628778395412, 43.712215887952823 ], [ 20.436716749578295, 43.709373684048273 ], [ 20.45439008973085, 43.70252655715484 ], [ 20.4568705584295, 43.701157132495666 ], [ 20.458834263190681, 43.699581000462786 ], [ 20.460177850327511, 43.697849839698335 ], [ 20.460849643895926, 43.69583445899309 ], [ 20.460797967052542, 43.693715725500283 ], [ 20.459557732703161, 43.688031317691127 ], [ 20.459351027128207, 43.682501939512861 ], [ 20.459609408647282, 43.679763089295136 ], [ 20.461004672627496, 43.675603135776043 ], [ 20.465862258136667, 43.665655423458986 ], [ 20.466275669286688, 43.663588365011037 ], [ 20.466068962812358, 43.659893500384726 ], [ 20.465138787724868, 43.655475165346559 ], [ 20.461573114307782, 43.648447171299892 ], [ 20.460074496640686, 43.646845200845291 ], [ 20.45821414556633, 43.645553290551902 ], [ 20.455423617605845, 43.644545600199251 ], [ 20.45185794418876, 43.644209703415072 ], [ 20.448188917984169, 43.644648952986756 ], [ 20.446225213222988, 43.645243232189387 ], [ 20.443227979687492, 43.646586819326217 ], [ 20.441522658244082, 43.647646186522252 ], [ 20.436871779209241, 43.651496079880133 ], [ 20.43454634014148, 43.653046373491293 ], [ 20.431962517755949, 43.653924871735398 ], [ 20.430205518569835, 43.654028225422223 ], [ 20.428551873070489, 43.653718167059765 ], [ 20.426381462734298, 43.652529609553824 ], [ 20.422092318905356, 43.648421331978852 ], [ 20.420438674305331, 43.647361966581457 ], [ 20.417234735194882, 43.646018378545307 ], [ 20.413462355303466, 43.644933172927551 ], [ 20.409845005042939, 43.644674791408477 ], [ 20.406331007569918, 43.645036525715057 ], [ 20.397856072699597, 43.647361966581457 ], [ 20.395065544739055, 43.647672024044653 ], [ 20.392223341733825, 43.647516995313083 ], [ 20.390052931397634, 43.647103583263743 ], [ 20.387985873849004, 43.646354275329543 ], [ 20.385402052362792, 43.644829820140046 ], [ 20.381267938164797, 43.64201345555648 ], [ 20.377185499910865, 43.63973969243284 ], [ 20.366488477860969, 43.635579738913805 ], [ 20.360545689432001, 43.632944241483528 ], [ 20.358426955039931, 43.631445623816489 ], [ 20.357393426265617, 43.629636948686198 ], [ 20.357341750321496, 43.628810126386213 ], [ 20.357755160572196, 43.627569892036888 ], [ 20.363542922068177, 43.61909495716651 ], [ 20.366333449129343, 43.615787665268499 ], [ 20.368090448315513, 43.614030666981648 ], [ 20.371087680951689, 43.611886095067234 ], [ 20.37284467923854, 43.610103258358663 ], [ 20.37341312001945, 43.608449611959998 ], [ 20.37325809128788, 43.606640936829763 ], [ 20.372379592144455, 43.604987291330417 ], [ 20.370622592958284, 43.603462836140977 ], [ 20.369227328978013, 43.602920233781731 ], [ 20.368038770572809, 43.599767971514666 ], [ 20.366643508391178, 43.5942644308588 ], [ 20.366436801916848, 43.591215522278503 ], [ 20.366540154704353, 43.588295803108792 ], [ 20.367728713109614, 43.582404689724626 ], [ 20.367780389053678, 43.580234280287755 ], [ 20.367263625116209, 43.578115545895685 ], [ 20.366126742655013, 43.576281033243049 ], [ 20.357341750321496, 43.565351467196422 ], [ 20.354189487155111, 43.55915029634906 ], [ 20.352690871286654, 43.557393297162889 ], [ 20.348866814551855, 43.554137682108319 ], [ 20.343595818791982, 43.550985418941934 ], [ 20.324940626708553, 43.542975572064961 ], [ 20.315277134332291, 43.539461575491316 ], [ 20.309489372836254, 43.537058621158394 ], [ 20.307732375448779, 43.536154282693985 ], [ 20.305872022575784, 43.534759020512354 ], [ 20.305303581794874, 43.533208726901194 ], [ 20.305768669788279, 43.532201036548599 ], [ 20.307422316186944, 43.530676581359103 ], [ 20.312796664734265, 43.526594143105171 ], [ 20.31693077983158, 43.521659044129535 ], [ 20.318791130905936, 43.519979560208526 ], [ 20.326645949051283, 43.51522532838618 ], [ 20.337808058195321, 43.507267158352647 ], [ 20.340288526893971, 43.505691026319766 ], [ 20.343079053955137, 43.504579983179667 ], [ 20.348143345039318, 43.503443102517167 ], [ 20.349952020169553, 43.502822983993497 ], [ 20.352277459237314, 43.501427720912545 ], [ 20.353621047273521, 43.500342516194166 ], [ 20.354809604779405, 43.499153957788906 ], [ 20.357548454997186, 43.49538157789749 ], [ 20.360028923695836, 43.492797757310655 ], [ 20.362302686819532, 43.490937405336979 ], [ 20.370260857752385, 43.485898953573837 ], [ 20.383490025344372, 43.47398753469696 ], [ 20.385608757937803, 43.470912786795623 ], [ 20.387469109911478, 43.466752835075283 ], [ 20.388657668316739, 43.464763291892382 ], [ 20.39041466570427, 43.462877102396362 ], [ 20.39268842882791, 43.461171780053576 ], [ 20.398579543111396, 43.45739940016216 ], [ 20.400439894185752, 43.455797431506255 ], [ 20.401886834110087, 43.454040432320085 ], [ 20.402972038828523, 43.451482449255593 ], [ 20.403385450877863, 43.448717759716828 ], [ 20.403282098090358, 43.445927231756343 ], [ 20.402713657309448, 43.443162543116841 ], [ 20.400904982179156, 43.43734894499778 ], [ 20.399716423773896, 43.431767889976129 ], [ 20.398682895898901, 43.429132392545853 ], [ 20.395685663262725, 43.424688219086022 ], [ 20.394755487275916, 43.422569484693952 ], [ 20.394652133589091, 43.421665147128806 ], [ 20.395065544739055, 43.41998566320774 ], [ 20.39656416240615, 43.4165750194216 ], [ 20.397287631918687, 43.412389228380164 ], [ 20.397959426386421, 43.410192978722989 ], [ 20.400026483035731, 43.407841702132828 ], [ 20.404005567602837, 43.404327703760487 ], [ 20.405400831583108, 43.402183131846016 ], [ 20.405710889945624, 43.400245266405875 ], [ 20.405297478795603, 43.398333238488135 ], [ 20.403902214815332, 43.396214504995385 ], [ 20.397856072699597, 43.390116686036208 ], [ 20.39656416240615, 43.388023790065859 ], [ 20.396409132775261, 43.386085923726398 ], [ 20.397752719912091, 43.383398749452681 ], [ 20.399406366310757, 43.381538398378382 ], [ 20.401628451691693, 43.379988104767222 ], [ 20.403747186083763, 43.37916128246718 ], [ 20.410878533817254, 43.37740428328101 ], [ 20.412067092222514, 43.376990872131046 ], [ 20.412428827428414, 43.376680812869211 ], [ 20.41237714968571, 43.375440579419205 ], [ 20.411550327385669, 43.372934272298778 ], [ 20.409018181843578, 43.366888129283723 ], [ 20.408914829056073, 43.363322454967317 ], [ 20.409638298568609, 43.361100368687062 ], [ 20.410568474555419, 43.359627591240326 ], [ 20.413979120140255, 43.356294460920594 ], [ 20.418836703850786, 43.352961331500239 ], [ 20.420697055824462, 43.351307685101574 ], [ 20.421420526236261, 43.350067450752249 ], [ 20.421420526236261, 43.348827216402867 ], [ 20.420955438242856, 43.347793688527872 ], [ 20.420025262256047, 43.346837674119342 ], [ 20.417389763926451, 43.344951483723946 ], [ 20.41465091280935, 43.342109279819397 ], [ 20.413979120140255, 43.340869046369392 ], [ 20.413565708090914, 43.339086208761501 ], [ 20.41372073682254, 43.335391344135189 ], [ 20.41273888489161, 43.333479316217449 ], [ 20.41160200422911, 43.332497464286519 ], [ 20.409328241105413, 43.331283067459594 ], [ 20.407622917863364, 43.330688788256964 ], [ 20.405814242733072, 43.330301215528664 ], [ 20.397235955075246, 43.330378729894448 ], [ 20.395065544739055, 43.330172024319438 ], [ 20.39253340009634, 43.329448553907639 ], [ 20.39020796102858, 43.328415025133268 ], [ 20.387985873849004, 43.327123114839878 ], [ 20.384110142069403, 43.323996690095157 ], [ 20.382663202145068, 43.322239691808306 ], [ 20.378684115779322, 43.31482412413402 ], [ 20.373361444075385, 43.309294745056434 ], [ 20.369020623403003, 43.302912706156462 ], [ 20.366178420397773, 43.300303046248587 ], [ 20.361165806157032, 43.296556504778835 ], [ 20.359357131026741, 43.295652167213746 ], [ 20.35031375537551, 43.292370713737398 ], [ 20.345042758716318, 43.289399319522943 ], [ 20.338531527707801, 43.286402085987447 ], [ 20.337032911839401, 43.285471910000638 ], [ 20.335792676590756, 43.284386705282202 ], [ 20.33450076719663, 43.282371324576957 ], [ 20.333570591209821, 43.275395006474355 ], [ 20.328299594550629, 43.260718898957975 ], [ 20.326232537901262, 43.26004710538956 ], [ 20.323338657153272, 43.25984039981455 ], [ 20.321064894029632, 43.260021266967897 ], [ 20.318894483693441, 43.260512193383022 ], [ 20.316310663106606, 43.261855781419172 ], [ 20.313210076783605, 43.263922838068481 ], [ 20.31062625529745, 43.265059718731038 ], [ 20.302461378789587, 43.267436835541503 ], [ 20.300394321240901, 43.268392849050713 ], [ 20.297913853441571, 43.270072332971779 ], [ 20.293211296663969, 43.273689684131568 ], [ 20.287061801760728, 43.276945299186195 ], [ 20.285098096999548, 43.27875397431643 ], [ 20.281687453213351, 43.284128322863808 ], [ 20.27781171963511, 43.289037584317043 ], [ 20.267424757746369, 43.298546047961736 ], [ 20.266907992909523, 43.302292589431431 ], [ 20.265977816922714, 43.304592190077472 ], [ 20.264427525110193, 43.306659246726838 ], [ 20.259053175663496, 43.310741685880089 ], [ 20.256366001389836, 43.313222154578739 ], [ 20.254092238266139, 43.314772447290579 ], [ 20.25223188629252, 43.315547594545819 ], [ 20.244687127409009, 43.31751129840768 ], [ 20.241896600347786, 43.31787303271426 ], [ 20.240656365998461, 43.317821356770196 ], [ 20.237969190825481, 43.317201240045165 ], [ 20.232491488591336, 43.315108344074815 ], [ 20.228925816073513, 43.314307359297175 ], [ 20.21729861803675, 43.312782905007055 ], [ 20.206136508892769, 43.309966539524169 ], [ 20.202260776213848, 43.309449774687323 ], [ 20.198178337959916, 43.309243069112313 ], [ 20.181590204324436, 43.308984686693918 ], [ 20.177559442014626, 43.308674628331403 ], [ 20.17378706212321, 43.308002834762988 ], [ 20.165983920821247, 43.305160630858381 ], [ 20.159110954606831, 43.303145250153136 ], [ 20.155390251558856, 43.302576809372226 ], [ 20.143711379376668, 43.301905015803811 ], [ 20.137665236361556, 43.301207383813676 ], [ 20.135546501969486, 43.300638943032766 ], [ 20.128001743085974, 43.29725413676897 ], [ 20.125624627174773, 43.296530667256491 ], [ 20.123609247368847, 43.296349799203824 ], [ 20.121645541708347, 43.296530667256491 ], [ 20.118958368334006, 43.297409166399859 ], [ 20.117304721935341, 43.298442695174231 ], [ 20.10960493342094, 43.304643866920912 ], [ 20.106866082303839, 43.306090806845248 ], [ 20.100406528138762, 43.309010525115639 ], [ 20.096014032421635, 43.311930243385973 ], [ 20.093326857248655, 43.3144365505064 ], [ 20.091931594167704, 43.31632274000242 ], [ 20.090484653344049, 43.319061591119521 ], [ 20.090277947769039, 43.320973619037261 ], [ 20.090484653344049, 43.322368883017532 ], [ 20.091208122856585, 43.323660794210241 ], [ 20.092965122042756, 43.325262762866203 ], [ 20.0957039731598, 43.327226466728007 ], [ 20.096995884352566, 43.328905952447712 ], [ 20.097719353865045, 43.330843817887853 ], [ 20.097822706652551, 43.332859199492418 ], [ 20.097202589927576, 43.334822903354279 ], [ 20.095755650003241, 43.336838284059525 ], [ 20.087332391076984, 43.344383042943036 ], [ 20.085730422421022, 43.346295070860833 ], [ 20.083456659297383, 43.351540229098248 ], [ 20.078702426575717, 43.35735382721731 ], [ 20.077462192226392, 43.35929169445609 ], [ 20.076997105132307, 43.361177883052846 ], [ 20.076842074602041, 43.363865058225826 ], [ 20.076325310664515, 43.365777086143567 ], [ 20.075033400371126, 43.367714952483027 ], [ 20.065111524677093, 43.377352607336945 ], [ 20.057308384274506, 43.383502102240186 ], [ 20.054931268363305, 43.385620835732936 ], [ 20.053070916389686, 43.387868761334232 ], [ 20.052037387615314, 43.389961656405319 ], [ 20.049608594860729, 43.396421210570395 ], [ 20.048213331779834, 43.398333238488135 ], [ 20.043304071225862, 43.403500882359822 ], [ 20.035655958655525, 43.410477200462424 ], [ 20.028266229402959, 43.419365546482766 ], [ 20.02904137485956, 43.419675604845281 ], [ 20.029299758177274, 43.420476590522185 ], [ 20.028214551660199, 43.421846015181416 ], [ 20.023925408730634, 43.425334174232717 ], [ 20.022116732701022, 43.427323717415618 ], [ 20.018344353708926, 43.432284653913598 ], [ 20.011833122700409, 43.442413235182642 ], [ 20.011057977243865, 43.444997057568116 ], [ 20.010799594825414, 43.447787583729962 ], [ 20.011006301299744, 43.450552273268784 ], [ 20.013176710736616, 43.4581745474174 ], [ 20.013125033893175, 43.460448310541096 ], [ 20.01209150601818, 43.462489528768742 ], [ 20.011057977243865, 43.463652248752283 ], [ 20.007027214933998, 43.466804511019348 ], [ 20.005631951853104, 43.468587347727919 ], [ 20.004650099022854, 43.470628566854828 ], [ 20.002893100736003, 43.478948472993636 ], [ 20.001807896017567, 43.481558132002192 ], [ 19.999534132893928, 43.484012763178441 ], [ 19.997208692926847, 43.485563055890282 ], [ 19.99529666500905, 43.486286526302138 ], [ 19.986046583782809, 43.488431098216608 ], [ 19.978450148055856, 43.489051214941583 ], [ 19.966926303705918, 43.489387111725819 ], [ 19.963463983076338, 43.489774685353439 ], [ 19.961448602371092, 43.490213934925123 ], [ 19.959743280028306, 43.490937405336979 ], [ 19.958037956786256, 43.492436021205378 ], [ 19.956849400179635, 43.494296373179054 ], [ 19.95519575378097, 43.498352973011265 ], [ 19.95405887221915, 43.500290839350725 ], [ 19.95250857860799, 43.501944484850071 ], [ 19.950958285896149, 43.502822983993497 ], [ 19.942018263032423, 43.506388658309902 ], [ 19.938555942402786, 43.507318834296768 ], [ 19.934680209723865, 43.507887275077678 ], [ 19.926515334115379, 43.508507391802652 ], [ 19.922484571805512, 43.508998318217778 ], [ 19.917678664039101, 43.510264390988823 ], [ 19.914784784190431, 43.511556301282269 ], [ 19.909513788430559, 43.514811917236159 ], [ 19.904966261283903, 43.518532620284191 ], [ 19.903209262997052, 43.520548000989436 ], [ 19.899695264624768, 43.526594143105171 ], [ 19.894630975339226, 43.532795314851853 ], [ 19.893700799352416, 43.534759020512354 ], [ 19.893649123408295, 43.53661937068739 ], [ 19.894734328126731, 43.538583076347891 ], [ 19.896698031988592, 43.540340073735365 ], [ 19.899075147899737, 43.541916204868926 ], [ 19.906619906783249, 43.545094306457031 ], [ 19.908428581913483, 43.546127835231403 ], [ 19.90977216994969, 43.547316392737287 ], [ 19.910754021880564, 43.548659979874174 ], [ 19.911322462661531, 43.549900214223499 ], [ 19.911322462661531, 43.552199814869539 ], [ 19.910650669093116, 43.554137682108319 ], [ 19.90744672998261, 43.559822089018155 ], [ 19.906826613257579, 43.561372381729996 ], [ 19.906309849320053, 43.563749498540517 ], [ 19.906464878051679, 43.566824246441797 ], [ 19.906981641989148, 43.569692287868747 ], [ 19.908841993962824, 43.575841782772045 ], [ 19.925171746978549, 43.568503730362863 ], [ 19.939072707239632, 43.56049388348589 ], [ 19.945790642923839, 43.555843004451049 ], [ 19.949614698759319, 43.554189358052383 ], [ 19.953645461069129, 43.553414211696463 ], [ 19.95674604739213, 43.553775946902419 ], [ 19.966099481405934, 43.556618149907649 ], [ 19.973644240289445, 43.558478501881325 ], [ 19.975297885788791, 43.559253648237245 ], [ 19.977003208131521, 43.560778103426685 ], [ 19.980878940810442, 43.567418524745108 ], [ 19.99664025214588, 43.58033763307526 ], [ 19.998397251332051, 43.5815003530588 ], [ 20.000360955193912, 43.582456367467387 ], [ 20.007699009401733, 43.584833482479212 ], [ 20.012763298687275, 43.587055568759467 ], [ 20.018396029653047, 43.590517890288368 ], [ 20.032813754750975, 43.600698147501475 ], [ 20.038394809772626, 43.604082952865951 ], [ 20.041185336833792, 43.605245672849492 ], [ 20.043407424013367, 43.605814114529721 ], [ 20.045681187137063, 43.606020820104732 ], [ 20.04852339014235, 43.605814114529721 ], [ 20.051107211628505, 43.605142320061987 ], [ 20.056274854600815, 43.603230292144247 ], [ 20.061029087322481, 43.601809189742312 ], [ 20.063044468027783, 43.601421617014012 ], [ 20.065938347876454, 43.601318264226506 ], [ 20.069969110186264, 43.6019383818508 ], [ 20.075188429102695, 43.603230292144247 ], [ 20.077410516282271, 43.604057115343551 ], [ 20.080097690555931, 43.605452379323822 ], [ 20.082474805567813, 43.607054347979727 ], [ 20.084386834384873, 43.608863023110018 ], [ 20.085678744678319, 43.610775051027758 ], [ 20.085988803940154, 43.612687078945498 ], [ 20.084903599221718, 43.616924546830376 ], [ 20.084800246434213, 43.619017441901406 ], [ 20.085678744678319, 43.625037747394117 ], [ 20.085782098365144, 43.637905177981565 ], [ 20.083404981554622, 43.640333970736151 ], [ 20.082784864829648, 43.641109117092071 ], [ 20.082526483310517, 43.641496689820372 ], [ 20.082319776836243, 43.642349352340716 ], [ 20.082319776836243, 43.643279527428206 ], [ 20.082319776836243, 43.644132188149968 ], [ 20.082423129623692, 43.644519761777588 ], [ 20.082681512042143, 43.644803981718383 ], [ 20.083094924091483, 43.644984849770992 ], [ 20.084335158440808, 43.645062364136777 ], [ 20.087384067021048, 43.644984849770992 ], [ 20.088520948582868, 43.644984849770992 ], [ 20.089037713419714, 43.644933172927551 ], [ 20.089244418994724, 43.644829820140046 ], [ 20.09244835810523, 43.642607733859791 ], [ 20.097512648290092, 43.641729233817045 ], [ 20.100458204982147, 43.64183258750387 ], [ 20.107486199928189, 43.643692939477546 ], [ 20.11038007977686, 43.643796292265051 ], [ 20.124126011306373, 43.642116808343985 ], [ 20.129397007066189, 43.641134955513735 ], [ 20.1323425637583, 43.640385647579535 ], [ 20.135339797293796, 43.639222926696675 ], [ 20.145158319301004, 43.63454621013949 ], [ 20.150791050266719, 43.632479153490124 ], [ 20.153684930115389, 43.631859035865773 ], [ 20.155855339552261, 43.631910711809894 ], [ 20.157974073944331, 43.632375799803299 ], [ 20.160661248217991, 43.633590195730903 ], [ 20.163038364129193, 43.635243842129569 ], [ 20.164433628109407, 43.636561590844735 ], [ 20.165570509671284, 43.63798269324667 ], [ 20.166655715289039, 43.64028229389271 ], [ 20.168516066363338, 43.645785834548576 ], [ 20.169704623869279, 43.647982083306488 ], [ 20.171048211006109, 43.649997464011733 ], [ 20.172960238923849, 43.652271227135373 ], [ 20.173838738966595, 43.653511461484754 ], [ 20.174872266841646, 43.656095282970909 ], [ 20.175027297371855, 43.65785228125776 ], [ 20.174820590897525, 43.659609280443931 ], [ 20.174097121385046, 43.661366278730782 ], [ 20.172960238923849, 43.662968248286006 ], [ 20.169394566406083, 43.665603745716282 ], [ 20.158697544356187, 43.671520698421489 ], [ 20.156372105288426, 43.673251858286619 ], [ 20.154563429258815, 43.675034694995134 ], [ 20.153581577327941, 43.676895046968809 ], [ 20.153478223641116, 43.677799384533955 ], [ 20.154201694052915, 43.6798147652392 ], [ 20.155183546883165, 43.681003322745141 ], [ 20.159265985137097, 43.684698188270772 ], [ 20.160454542643038, 43.686170965717452 ], [ 20.161488071417352, 43.687721259328612 ], [ 20.164330275321959, 43.693999946340455 ], [ 20.168102655213374, 43.699503486097001 ], [ 20.168929478412679, 43.701467189958805 ], [ 20.16934288866338, 43.704257717020027 ], [ 20.1689811543568, 43.705652981000242 ], [ 20.166707391233103, 43.709554552100883 ], [ 20.166242303239699, 43.710975654502818 ], [ 20.165725539302173, 43.717874457340315 ], [ 20.165415480040338, 43.71929555884293 ], [ 20.164692009628538, 43.720561632513295 ], [ 20.162779981710798, 43.721931057172526 ], [ 20.149395786286505, 43.726091009792242 ], [ 20.143349644170712, 43.728623155334333 ], [ 20.135856561231321, 43.732808946375769 ], [ 20.129138624647794, 43.735806179011945 ], [ 20.126968215210923, 43.73704641426059 ], [ 20.125262891968873, 43.738467515763205 ], [ 20.124074333563613, 43.740017809374365 ], [ 20.123609247368847, 43.741826484504656 ], [ 20.123815952044538, 43.746477363539498 ], [ 20.121800571339293, 43.750999050465794 ], [ 20.121438836133336, 43.752988592749318 ], [ 20.121748895395172, 43.756657619853229 ], [ 20.122730747326102, 43.762135322087431 ], [ 20.122627393639277, 43.764460761155192 ], [ 20.121903924126798, 43.766941229853842 ], [ 20.119165073009697, 43.773659166437369 ], [ 20.119113397065632, 43.774692695211684 ], [ 20.119630161003101, 43.776811427805114 ], [ 20.120767042564921, 43.779162706193915 ], [ 20.122007276914303, 43.780738837327476 ], [ 20.124229364093878, 43.782754218032721 ], [ 20.127588331935954, 43.784924628368856 ], [ 20.129552035797815, 43.786681627555026 ], [ 20.13022383026555, 43.788076891535297 ], [ 20.130482211784624, 43.789523831459633 ], [ 20.130120476578725, 43.791565049687279 ], [ 20.128621859810949, 43.794329739226043 ], [ 20.125934686436608, 43.797482001493165 ], [ 20.122007276914303, 43.800324205397715 ], [ 20.115392694017601, 43.803528144508221 ], [ 20.11342898925642, 43.804923408488492 ], [ 20.106452671153818, 43.812158108110168 ], [ 20.105160759961109, 43.813992620762804 ], [ 20.104850701598593, 43.814871120805549 ], [ 20.105264112748614, 43.818100898337775 ], [ 20.106297642422248, 43.820943102242325 ], [ 20.106711052672949, 43.823061834835812 ], [ 20.106762730415653, 43.825232245171946 ], [ 20.106349318366313, 43.827299302720633 ], [ 20.105367466435439, 43.829237169060093 ], [ 20.103765496880158, 43.830813300193597 ], [ 20.102163527324933, 43.831614284971238 ], [ 20.095393913897965, 43.833836371251493 ], [ 20.093481885980225, 43.834792384760703 ], [ 20.090381300556544, 43.837324531202114 ], [ 20.08841759579542, 43.840011705475831 ], [ 20.087694126282884, 43.842078762125141 ], [ 20.087590772596059, 43.844249173360652 ], [ 20.087900831857894, 43.846419582797466 ], [ 20.089916212563139, 43.851535548926392 ], [ 20.091931594167704, 43.85520457603036 ], [ 20.093171827617709, 43.856651515954695 ], [ 20.100406528138762, 43.86189667419211 ], [ 20.102215204168317, 43.863937893319076 ], [ 20.104799024755152, 43.867865301942118 ], [ 20.105935907216349, 43.869157213134827 ], [ 20.109553256577499, 43.872051092983554 ], [ 20.112343783638664, 43.873239651388758 ], [ 20.114514193974856, 43.873704739382219 ], [ 20.116787957098552, 43.873911444957173 ], [ 20.128208448660985, 43.873213812967094 ], [ 20.135959914018827, 43.873446356963768 ], [ 20.143711379376668, 43.874531562581524 ], [ 20.155596958033186, 43.877037868802574 ], [ 20.139318881860902, 43.882489731715737 ], [ 20.128260124605049, 43.885486966150552 ], [ 20.11632287000441, 43.890499579491973 ], [ 20.110535109407749, 43.894530340902463 ], [ 20.101233351338067, 43.899853014405039 ], [ 20.099476353051216, 43.90104157191098 ], [ 20.089141066207219, 43.911738593061614 ], [ 20.087745802226948, 43.913805649710923 ], [ 20.087074008658533, 43.915821031315545 ], [ 20.087074008658533, 43.91783641202079 ], [ 20.087435743864489, 43.919231676001004 ], [ 20.088262567063794, 43.92052358719377 ], [ 20.09032962371316, 43.92202220306217 ], [ 20.096685825090731, 43.925071113441106 ], [ 20.098391148332837, 43.926285509368711 ], [ 20.101646763387407, 43.929282742004943 ], [ 20.103145379255807, 43.931013901870074 ], [ 20.104075555242673, 43.932822577000309 ], [ 20.104178908030178, 43.934889635448314 ], [ 20.103042025568982, 43.937525132878534 ], [ 20.099476353051216, 43.943157863844306 ], [ 20.096220737097326, 43.949875800427833 ], [ 20.09167321084999, 43.950082506002843 ], [ 20.087229038289479, 43.951064357933774 ], [ 20.070847609329689, 43.958660794559989 ], [ 20.068005405425083, 43.960288600738295 ], [ 20.065886671932333, 43.962019762402065 ], [ 20.064543083896183, 43.963905951898141 ], [ 20.064284702377108, 43.965792141394161 ], [ 20.064646436683688, 43.967290758161937 ], [ 20.065421583938928, 43.968737698086272 ], [ 20.068470493418545, 43.972303372402678 ], [ 20.068987258255333, 43.973543605852683 ], [ 20.068987258255333, 43.974758001780344 ], [ 20.067850375794194, 43.976179104182279 ], [ 20.066403435869859, 43.976850897750694 ], [ 20.058341913048821, 43.978866279355259 ], [ 20.056429885131081, 43.980106512805321 ], [ 20.055758090663346, 43.98119171842302 ], [ 20.055654737875841, 43.982380275928961 ], [ 20.055964797137676, 43.983568834334221 ], [ 20.059375440923816, 43.991682033998643 ], [ 20.060408969698187, 43.993284003553924 ], [ 20.061700880890896, 43.99473094347826 ], [ 20.068935581411949, 44.00010529202558 ], [ 20.071002638061259, 44.001913967155815 ], [ 20.073896518809306, 44.005738022991352 ], [ 20.07472334200861, 44.007701727752533 ], [ 20.074568312377721, 44.009613756569593 ], [ 20.073431430815845, 44.011525784487333 ], [ 20.07162275568561, 44.013360297139968 ], [ 20.069245639774465, 44.015194810691924 ], [ 20.060615676172517, 44.020000719357711 ], [ 20.058238560261316, 44.02168020327872 ], [ 20.056481561075145, 44.023514715931356 ], [ 20.055551385088336, 44.025375067905031 ], [ 20.055293002669941, 44.026718655041861 ], [ 20.055344678614006, 44.027648831028728 ], [ 20.056274854600815, 44.029664211733973 ], [ 20.057308384274506, 44.030878608560897 ], [ 20.061390821629118, 44.034366766712878 ], [ 20.062527704090257, 44.035813707536533 ], [ 20.063044468027783, 44.037364000248374 ], [ 20.062424351302752, 44.039896144891145 ], [ 20.059633823342267, 44.044934597553606 ], [ 20.059065382561357, 44.047027493523956 ], [ 20.059013705717916, 44.049172065438427 ], [ 20.059478793711321, 44.051264960509513 ], [ 20.062372673560048, 44.056122545119365 ], [ 20.06914228698696, 44.062943834490341 ], [ 20.0706925796988, 44.065320950401542 ], [ 20.0710543149047, 44.067388007050852 ], [ 20.070124138917834, 44.071082872576483 ], [ 20.063716260696879, 44.0818315705705 ], [ 20.062010939253412, 44.085319728722482 ], [ 20.074930046684301, 44.085035508781687 ], [ 20.079219191412562, 44.084725450419171 ], [ 20.083249952823053, 44.084131171216541 ], [ 20.095187209222331, 44.08103058489354 ], [ 20.104799024755152, 44.07932526345013 ], [ 20.107279494353179, 44.078705145825779 ], [ 20.109656610264324, 44.077929999469859 ], [ 20.117563104353792, 44.074571030728464 ], [ 20.120715365721537, 44.073770046850143 ], [ 20.122782424169543, 44.073589178797533 ], [ 20.124642775243842, 44.073692532484358 ], [ 20.126296420743188, 44.074157620477763 ], [ 20.127381626360943, 44.074932765934363 ], [ 20.127691684723459, 44.07606964839556 ], [ 20.127484979148448, 44.07741323553239 ], [ 20.123040805688618, 44.087438463114552 ], [ 20.122627393639277, 44.089660549394807 ], [ 20.122730747326102, 44.091779282887558 ], [ 20.123557569626144, 44.093768826070459 ], [ 20.125211216024809, 44.095370794726364 ], [ 20.126968215210923, 44.096171780403324 ], [ 20.129138624647794, 44.09668854434085 ], [ 20.15048099100494, 44.099789129764531 ], [ 20.15182457904109, 44.0995307482454 ], [ 20.156062046026591, 44.099479072301335 ], [ 20.158284133206166, 44.099789129764531 ], [ 20.160351189855533, 44.100460924232266 ], [ 20.162521600191667, 44.101933702578265 ], [ 20.167379184801518, 44.107075507128911 ], [ 20.171409946212009, 44.109917711033518 ], [ 20.174252150116615, 44.111261298170348 ], [ 20.176525913240312, 44.111933091738763 ], [ 20.178903029151456, 44.112346502888784 ], [ 20.182055291418521, 44.112527370941393 ], [ 20.19249393105008, 44.111493842167079 ], [ 20.195594517373081, 44.111519679689422 ], [ 20.198643425953321, 44.111829738951258 ], [ 20.207583448817104, 44.113715929346654 ], [ 20.209598830421669, 44.114000149287449 ], [ 20.212441034326275, 44.113948473343328 ], [ 20.223293084208478, 44.111726386163753 ], [ 20.226238640900533, 44.111468003745358 ], [ 20.229184197592645, 44.111648870898648 ], [ 20.236263869382071, 44.113276678875593 ], [ 20.239571161280026, 44.114310208549284 ], [ 20.248924595293829, 44.118005073175539 ], [ 20.25357547432867, 44.1192194691032 ], [ 20.25719282368982, 44.119658717775565 ], [ 20.260913526737852, 44.119839585828174 ], [ 20.279723747552907, 44.119942939514999 ], [ 20.283082717193622, 44.120304673821636 ], [ 20.285098096999548, 44.1207180849716 ], [ 20.286751743398213, 44.121441555383456 ], [ 20.288457065740999, 44.122940172151175 ], [ 20.289542271358698, 44.124852200068972 ], [ 20.290989211283033, 44.129089667054473 ], [ 20.291971063213964, 44.131156725502478 ], [ 20.292952915144895, 44.132551988583373 ], [ 20.296208530199465, 44.135394192487979 ], [ 20.298430617379097, 44.136815293990594 ], [ 20.300807733290242, 44.138029689918255 ], [ 20.308249139386248, 44.140691025770195 ], [ 20.316103956632276, 44.144024156089927 ], [ 20.328041213031554, 44.147228095200433 ], [ 20.330625033618389, 44.148623359180647 ], [ 20.335120883921661, 44.151956489500378 ], [ 20.336774530320326, 44.153739326208893 ], [ 20.337291294257795, 44.155134589289844 ], [ 20.337136264626906, 44.158028469138515 ], [ 20.335947707120965, 44.162782700960861 ], [ 20.336257764584161, 44.164694728878601 ], [ 20.337601352620311, 44.166503404008836 ], [ 20.339616733325556, 44.168157050407501 ], [ 20.345972934703184, 44.171412665462128 ], [ 20.348556756189339, 44.172472031758844 ], [ 20.351243931362319, 44.173273017435804 ], [ 20.354241163998495, 44.173738105429209 ], [ 20.357393426265617, 44.173815618895674 ], [ 20.364473097155667, 44.173247179014083 ], [ 20.366540154704353, 44.173324693379868 ], [ 20.368452182622093, 44.173686427686448 ], [ 20.370880975376679, 44.174874986091709 ], [ 20.372224561614189, 44.175908514866023 ], [ 20.373361444075385, 44.1770453964279 ], [ 20.374653355268094, 44.178905748401519 ], [ 20.375841912774035, 44.18164459951862 ], [ 20.375996942404925, 44.183685817746266 ], [ 20.375015089574731, 44.188827623196232 ], [ 20.375066766418115, 44.191101386319872 ], [ 20.376048618349046, 44.194718736580398 ], [ 20.377805616635897, 44.198129381265915 ], [ 20.379149203772727, 44.19996389391855 ], [ 20.381009555746402, 44.201410833842885 ], [ 20.382766554033253, 44.202108465833021 ], [ 20.384833611581882, 44.202521877882361 ], [ 20.393825311289049, 44.203503729813235 ], [ 20.39578901515091, 44.203917140963256 ], [ 20.397546014337081, 44.204614772953391 ], [ 20.399199659836427, 44.206087551299447 ], [ 20.400284864554862, 44.207999579217187 ], [ 20.402506951734438, 44.216836249293465 ], [ 20.405297478795603, 44.22190054037759 ], [ 20.408863153112009, 44.226861476875627 ], [ 20.410568474555419, 44.228773504793367 ], [ 20.417699823188286, 44.236473294207144 ], [ 20.423125847679728, 44.241795965911081 ], [ 20.427053257202033, 44.237248440563064 ], [ 20.434598016085545, 44.230220444717702 ], [ 20.435631544859916, 44.228618476061797 ], [ 20.436199984741506, 44.226913153719067 ], [ 20.436199984741506, 44.224820257748661 ], [ 20.435734897647365, 44.223347480301925 ], [ 20.432530959436235, 44.216086941359208 ], [ 20.432169224230279, 44.213735662970464 ], [ 20.434236280879645, 44.207379462492156 ], [ 20.435941603222375, 44.20071320185275 ], [ 20.438732131182917, 44.193220119812679 ], [ 20.440437452626327, 44.189551092708712 ], [ 20.442607862962461, 44.185985419291626 ], [ 20.446173537278924, 44.181024481894326 ], [ 20.447930535565774, 44.179112453976529 ], [ 20.450204298689414, 44.177587998787089 ], [ 20.453098179437404, 44.176683661221944 ], [ 20.456818881586116, 44.176166897284475 ], [ 20.461934848614362, 44.176063544496969 ], [ 20.462296583820262, 44.17492666293515 ], [ 20.462451612551888, 44.172549547023948 ], [ 20.462193231032757, 44.169759019962783 ], [ 20.459867791065676, 44.162110908291766 ], [ 20.459712762334107, 44.15988882111219 ], [ 20.460281203115017, 44.157795925141784 ], [ 20.461934848614362, 44.155832221279979 ], [ 20.464518670100517, 44.154385281355644 ], [ 20.466740757280093, 44.153635973421387 ], [ 20.469169549135358, 44.153119208584599 ], [ 20.472373488245864, 44.152757473378642 ], [ 20.482347038984642, 44.152137355754348 ], [ 20.485499302151084, 44.151749783026048 ], [ 20.488444857943819, 44.151052151035913 ], [ 20.490977004385229, 44.149992783839878 ], [ 20.496609735351001, 44.145626126544471 ], [ 20.499090204049651, 44.144024156089927 ], [ 20.505963169364748, 44.141026923453751 ], [ 20.511854281849594, 44.137771308399124 ], [ 20.51335289861737, 44.13673777872549 ], [ 20.514851515385089, 44.134954942016918 ], [ 20.515885044159461, 44.132862046945888 ], [ 20.517848748021265, 44.124206244022901 ], [ 20.518572219332441, 44.122500922579491 ], [ 20.520329216719972, 44.120149645090009 ], [ 20.528752475646229, 44.113535061294044 ], [ 20.532318149962634, 44.110382799026922 ], [ 20.534901971448789, 44.105215156054612 ], [ 20.538260939290922, 44.099866645029635 ], [ 20.539294468065236, 44.097127793912534 ], [ 20.539914584790267, 44.091443386103379 ], [ 20.539139439333667, 44.08144399694288 ], [ 20.539346144009301, 44.080513820956071 ], [ 20.540172967208662, 44.078911852300109 ], [ 20.541619907132997, 44.077464911476454 ], [ 20.543997023044142, 44.075914617865294 ], [ 20.547614373304668, 44.074260973265268 ], [ 20.553402133901329, 44.072607326866603 ], [ 20.55784630736116, 44.071057034154762 ], [ 20.565287712557847, 44.066948757479167 ], [ 20.571282178729575, 44.064339098470612 ], [ 20.578051792156486, 44.061858628872585 ], [ 20.590247430074839, 44.057879544305479 ], [ 20.595363397103085, 44.055605781181839 ], [ 20.598102248220187, 44.054055488469999 ], [ 20.604200067179363, 44.050179754891758 ], [ 20.606318800672113, 44.048422757504227 ], [ 20.607972446171459, 44.046562405530551 ], [ 20.610349562082604, 44.042376614489172 ], [ 20.611899854794444, 44.04056793935888 ], [ 20.614276970705589, 44.03886261701615 ], [ 20.621046584132557, 44.034935208393108 ], [ 20.623527052831207, 44.032971502732664 ], [ 20.636911248255501, 44.020207424033345 ], [ 20.63303551557658, 44.01803701369721 ], [ 20.627919549447654, 44.014367988391939 ], [ 20.624302199187127, 44.010750637232093 ], [ 20.621718376801653, 44.006823229508427 ], [ 20.620219760933196, 44.005376287785452 ], [ 20.618617791377972, 44.004756171060421 ], [ 20.61680911624768, 44.004601142328852 ], [ 20.61510379390495, 44.004911200691311 ], [ 20.61334679471878, 44.005505479893941 ], [ 20.610452914870109, 44.006745714243266 ], [ 20.607714063753008, 44.008270169432762 ], [ 20.602598096724762, 44.011448269222228 ], [ 20.600892775281352, 44.012042548424859 ], [ 20.599032424206996, 44.012300929943933 ], [ 20.597275425020825, 44.012171738734708 ], [ 20.595001661897186, 44.011267402068938 ], [ 20.59391645717875, 44.010130520507118 ], [ 20.593192986766894, 44.008786933370232 ], [ 20.592727898773489, 44.004291083067017 ], [ 20.592211134835964, 44.002844143142681 ], [ 20.59122928200577, 44.001526394427515 ], [ 20.588025343794584, 43.999278468826276 ], [ 20.580325555280126, 43.99529938425917 ], [ 20.57520958825188, 43.992043769204543 ], [ 20.572419061190715, 43.989563300505893 ], [ 20.568801710930188, 43.984912421471051 ], [ 20.566321242231538, 43.9800548368612 ], [ 20.566011182969703, 43.977936103368449 ], [ 20.566166212600592, 43.975817368976379 ], [ 20.566889683012448, 43.972871813183588 ], [ 20.566941358956512, 43.970830593157302 ], [ 20.566476270963108, 43.968815213351377 ], [ 20.565029331038772, 43.966773993325091 ], [ 20.562703891971012, 43.965120347825746 ], [ 20.55402225062636, 43.960546983156746 ], [ 20.544927199031008, 43.954526679462674 ], [ 20.541516554345492, 43.952743841854783 ], [ 20.537692497610635, 43.951116034777158 ], [ 20.526220330104138, 43.946930242836402 ], [ 20.528132358021878, 43.944837347765372 ], [ 20.53149132676333, 43.941969306338365 ], [ 20.536142204898795, 43.93923045522132 ], [ 20.540172967208662, 43.937344264825924 ], [ 20.542395054388237, 43.935638943382514 ], [ 20.543376906319168, 43.93421784098058 ], [ 20.544358758250098, 43.930445461988484 ], [ 20.544772170299382, 43.919800116781914 ], [ 20.545082227762578, 43.918818263951721 ], [ 20.546115757436212, 43.917112942508254 ], [ 20.547666050148052, 43.915614325740535 ], [ 20.553092074639494, 43.912384549107628 ], [ 20.560843539997336, 43.908612169216212 ], [ 20.565494419032177, 43.907242742758342 ], [ 20.57174726672298, 43.906002509308337 ], [ 20.576449822601205, 43.904555569384002 ], [ 20.579240349662371, 43.903211982247171 ], [ 20.583271111972238, 43.900421454286686 ], [ 20.588025343794584, 43.895512192833394 ], [ 20.591074253274144, 43.891894843472244 ], [ 20.594329868328771, 43.886365465293977 ], [ 20.596706984239916, 43.882928982186741 ], [ 20.601151156800427, 43.87734792716509 ], [ 20.604148390335922, 43.872076931405218 ], [ 20.606060418253662, 43.869906521069083 ], [ 20.613915236399009, 43.864402981312537 ], [ 20.620788201714106, 43.859183661496729 ] ] ] } },
+{ "type": "Feature", "properties": { "ISO": "RS-09", "NAME_1": "Kolubarski" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.725649040970438, 44.107023831184847 ], [ 19.721204868409927, 44.107850654384151 ], [ 19.718259311717873, 44.109090887834157 ], [ 19.715623814287596, 44.110744534232822 ], [ 19.709060907335015, 44.116170558724264 ], [ 19.706270379374473, 44.11808258754138 ], [ 19.704358350557413, 44.11903860105059 ], [ 19.700120883571913, 44.120511380295966 ], [ 19.695573358223896, 44.121544908170961 ], [ 19.68947553926472, 44.122578436945275 ], [ 19.687511833604219, 44.122733466576221 ], [ 19.675522902160196, 44.125110582487366 ], [ 19.672939079774721, 44.125859890421566 ], [ 19.671078728700365, 44.126764227986712 ], [ 19.664154087441148, 44.131725165384069 ], [ 19.659296501931976, 44.137409573193224 ], [ 19.658159621269476, 44.138184719549145 ], [ 19.656299269295801, 44.13885651311756 ], [ 19.648134392787995, 44.140458481773464 ], [ 19.638109165205776, 44.1438691273583 ], [ 19.636042107657147, 44.144489244083331 ], [ 19.63356163895844, 44.144902656132672 ], [ 19.630822787841396, 44.145006008020857 ], [ 19.626947056061795, 44.144799303345167 ], [ 19.618162061929581, 44.14366242088397 ], [ 19.614338006094101, 44.145057684864241 ], [ 19.611444126245431, 44.146814684050412 ], [ 19.609377068696745, 44.148907579121442 ], [ 19.606431512004633, 44.153429266947114 ], [ 19.602659133012537, 44.158493557131919 ], [ 19.598938429065242, 44.162059231448325 ], [ 19.595321078804716, 44.1650564640845 ], [ 19.593564079618545, 44.166219184068041 ], [ 19.59154869981262, 44.167071844789803 ], [ 19.589326612633045, 44.167691962414096 ], [ 19.584365676135008, 44.168518784714138 ], [ 19.582505324161389, 44.169061387972647 ], [ 19.581471795387017, 44.169707343119342 ], [ 19.580644972187713, 44.170534166318703 ], [ 19.579818149887672, 44.171903590977934 ], [ 19.577906121969932, 44.177975572414709 ], [ 19.575063918065325, 44.185003567360695 ], [ 19.574857211591052, 44.186502184128472 ], [ 19.575012241221941, 44.187484036059402 ], [ 19.575839064421245, 44.188775947252168 ], [ 19.576717563564671, 44.189292711189637 ], [ 19.568862746318644, 44.198336086840925 ], [ 19.561421340222637, 44.206345933717841 ], [ 19.559147577098997, 44.208257962534901 ], [ 19.556253696351007, 44.209756578403358 ], [ 19.554031610070751, 44.210583400703342 ], [ 19.543954704745829, 44.213683987026343 ], [ 19.540957472109653, 44.215105089428334 ], [ 19.533567742857031, 44.220143541191476 ], [ 19.53181074367086, 44.221073717178285 ], [ 19.52989871575312, 44.221693833903316 ], [ 19.527883335047875, 44.221952216321711 ], [ 19.519201693703167, 44.22133209869736 ], [ 19.516307813854496, 44.221435452384185 ], [ 19.514292433149251, 44.221745509847381 ], [ 19.50948652538284, 44.22306325946181 ], [ 19.505507439916414, 44.224820257748661 ], [ 19.503543735155233, 44.225879624944696 ], [ 19.498582797757877, 44.229471136783502 ], [ 19.495998976271721, 44.231098944760447 ], [ 19.493208449210556, 44.232184150378203 ], [ 19.49015953883162, 44.232959295834803 ], [ 19.476465285044867, 44.235181383014378 ], [ 19.467421909393579, 44.236059882157804 ], [ 19.464166294339009, 44.236524970151208 ], [ 19.457448357755482, 44.23928965879071 ], [ 19.447009719023299, 44.242209377960421 ], [ 19.441738722364107, 44.244379788296555 ], [ 19.429543084445754, 44.251097723980763 ], [ 19.425719027710954, 44.254069119094538 ], [ 19.427837762103024, 44.257247218884004 ], [ 19.42928470202736, 44.260011909322145 ], [ 19.430318230801674, 44.262802436383311 ], [ 19.430783318795136, 44.265928860228712 ], [ 19.430214878014169, 44.271923326400383 ], [ 19.43042158358918, 44.273421943168103 ], [ 19.431093377157595, 44.274791367827333 ], [ 19.432902052287886, 44.276574205435224 ], [ 19.434400669055606, 44.277607734209539 ], [ 19.443909132700298, 44.28262034845028 ], [ 19.445511102255523, 44.283808905956221 ], [ 19.446751335705585, 44.285255845880556 ], [ 19.44762983574833, 44.286806139491716 ], [ 19.448353306160129, 44.288976548928588 ], [ 19.449283482146996, 44.293472398332483 ], [ 19.450730422071331, 44.297348131011404 ], [ 19.45181562678971, 44.298898423723244 ], [ 19.455794712256136, 44.302774156402165 ], [ 19.459773796823242, 44.307580064168576 ], [ 19.461892531215312, 44.309388740198187 ], [ 19.464631382332414, 44.310732327335018 ], [ 19.466853468612669, 44.311455796847497 ], [ 19.469282261367255, 44.312024238527783 ], [ 19.478945753743517, 44.313316147921853 ], [ 19.483699984666544, 44.314659735958003 ], [ 19.486490512627029, 44.316003323094833 ], [ 19.488815951694789, 44.317656969493498 ], [ 19.49114139166187, 44.320240790080391 ], [ 19.491968214861231, 44.322307848528339 ], [ 19.492226597279625, 44.324504096386931 ], [ 19.492071566749416, 44.326752021088851 ], [ 19.491399774080321, 44.328948268947443 ], [ 19.488350863701385, 44.333986720710584 ], [ 19.483906691140874, 44.339619452575675 ], [ 19.481632928017177, 44.343624376463765 ], [ 19.480341016824468, 44.345407213172336 ], [ 19.478584019436937, 44.346647447521661 ], [ 19.476982048982336, 44.347060859571002 ], [ 19.475121697908037, 44.347138373037467 ], [ 19.464683058276478, 44.345329697907232 ], [ 19.462616000727849, 44.345303860384831 ], [ 19.460652296865987, 44.345665594691411 ], [ 19.457913445748886, 44.346802477152551 ], [ 19.456311476193662, 44.347732652240097 ], [ 19.453314242658166, 44.350083929729522 ], [ 19.452074009208161, 44.351401679344008 ], [ 19.449748569241081, 44.354760647186083 ], [ 19.449076775672665, 44.356259263953859 ], [ 19.448715041366029, 44.35837799744661 ], [ 19.449025098829225, 44.36049673093936 ], [ 19.449696893296959, 44.361891994919631 ], [ 19.451970656420656, 44.36509593403008 ], [ 19.454037713069965, 44.366697902686042 ], [ 19.456518181768672, 44.367912299512966 ], [ 19.458636916160742, 44.368454901872212 ], [ 19.460859002440998, 44.368609931503102 ], [ 19.469850702148165, 44.367834785147181 ], [ 19.472744581996835, 44.367989813878808 ], [ 19.476775344306702, 44.369075019496506 ], [ 19.478687372224442, 44.369953517740612 ], [ 19.481787956748803, 44.372433987338638 ], [ 19.484216750402709, 44.375069484768858 ], [ 19.490986362030981, 44.384681301201056 ], [ 19.49382856593553, 44.389642239497732 ], [ 19.497342564307871, 44.399150702243105 ], [ 19.498376092182866, 44.402716376559511 ], [ 19.498272739395418, 44.409847724293002 ], [ 19.498789504232207, 44.411863104998247 ], [ 19.499926384894707, 44.413878485703549 ], [ 19.502820264743434, 44.417676703117309 ], [ 19.503543735155233, 44.419511217568584 ], [ 19.503492059211169, 44.420389715812689 ], [ 19.502716912855249, 44.421836655737025 ], [ 19.501166620143408, 44.42312856692979 ], [ 19.499306268169732, 44.424007066073216 ], [ 19.491296421292816, 44.426177477308727 ], [ 19.489177686900689, 44.426952622765327 ], [ 19.48731733582639, 44.427908637173857 ], [ 19.485922071846119, 44.429071357157397 ], [ 19.484940219915188, 44.430414944294228 ], [ 19.484526807865848, 44.431655177744233 ], [ 19.484526807865848, 44.432533677786978 ], [ 19.485250278277704, 44.434083971398138 ], [ 19.486645542257975, 44.435479234479089 ], [ 19.490314569361885, 44.437494615184335 ], [ 19.494241977984871, 44.438889879164549 ], [ 19.497290886565168, 44.439458319945459 ], [ 19.503647087942738, 44.440078437569809 ], [ 19.509021437389436, 44.440181790357315 ], [ 19.51212202281306, 44.439871731095479 ], [ 19.518323194559741, 44.438683172690219 ], [ 19.521320428095237, 44.43857981990277 ], [ 19.524679395937369, 44.439044907896175 ], [ 19.52798668783538, 44.43992340793892 ], [ 19.534446242000456, 44.442300522950745 ], [ 19.539458856241197, 44.443669949408616 ], [ 19.548708936568175, 44.444780992548715 ], [ 19.561007928173353, 44.445711168535581 ], [ 19.574030389291011, 44.43891571668695 ], [ 19.575890741264686, 44.437623806393503 ], [ 19.577234328401516, 44.436099352103383 ], [ 19.580179885093628, 44.430001533144207 ], [ 19.581316765756128, 44.428606269163993 ], [ 19.584313999291624, 44.426125800465286 ], [ 19.587983026395534, 44.424058742916657 ], [ 19.590360142306679, 44.423283596560736 ], [ 19.59289228694945, 44.422766831723891 ], [ 19.595786166798121, 44.422456773361375 ], [ 19.601832309813233, 44.422301743730486 ], [ 19.608033481559914, 44.422611802992265 ], [ 19.611082391039474, 44.423025214142285 ], [ 19.613924594944081, 44.423774522076485 ], [ 19.616250034011841, 44.424937242060025 ], [ 19.618265414717087, 44.426513373193586 ], [ 19.62875573119203, 44.430621649869238 ], [ 19.63221805182161, 44.431784368953458 ], [ 19.638005812418271, 44.433282985721178 ], [ 19.649891391974165, 44.434652411279728 ], [ 19.65304365424123, 44.435195014538294 ], [ 19.664412468960279, 44.438114731909309 ], [ 19.66751305528328, 44.43857981990277 ], [ 19.673972609448356, 44.43876068795538 ], [ 19.677176547659542, 44.438528143958649 ], [ 19.680277133982543, 44.438063055965245 ], [ 19.68735680487265, 44.435995999315878 ], [ 19.703066441163287, 44.430518297081733 ], [ 19.713091667846186, 44.427727770020567 ], [ 19.73376224063486, 44.420751451018646 ], [ 19.746112909083479, 44.417702542438349 ], [ 19.754742872685426, 44.415868027987074 ], [ 19.757068311753187, 44.415118720052874 ], [ 19.760065545288683, 44.413723456072603 ], [ 19.762597690830773, 44.411966457785752 ], [ 19.765439893836003, 44.409434313143038 ], [ 19.772777948043824, 44.401579494997691 ], [ 19.773966506449085, 44.399564114292389 ], [ 19.774224887968217, 44.397548732687824 ], [ 19.773501417556361, 44.392820340186518 ], [ 19.773604771243185, 44.391399237784583 ], [ 19.774121535180711, 44.390159003435258 ], [ 19.776033563098451, 44.388918769085876 ], [ 19.779960971721437, 44.388091945886572 ], [ 19.787402377817443, 44.387730211579992 ], [ 19.823059115585693, 44.387575181949046 ], [ 19.826934849163933, 44.387678534736551 ], [ 19.83282596164878, 44.388195299573397 ], [ 19.834789666409961, 44.388686225089202 ], [ 19.837115106377041, 44.389952297860248 ], [ 19.838096958307972, 44.391244208153637 ], [ 19.839957310281648, 44.394861559313483 ], [ 19.841559278937552, 44.39713532243718 ], [ 19.846416864446724, 44.402380479775275 ], [ 19.84982750823292, 44.405558580464117 ], [ 19.839905633438207, 44.415377102471268 ], [ 19.831068963361929, 44.42289602293306 ], [ 19.828640170607343, 44.425298977265982 ], [ 19.827193230683008, 44.427676093177126 ], [ 19.827244906627129, 44.429588121094866 ], [ 19.828381789088269, 44.431500149012663 ], [ 19.830242140162625, 44.433308824142898 ], [ 19.83261925607377, 44.434910793698123 ], [ 19.835409784034312, 44.43625438083501 ], [ 19.839905633438207, 44.43759796797184 ], [ 19.842024366930957, 44.437908027233618 ], [ 19.845021599567133, 44.437908027233618 ], [ 19.85003421380793, 44.43702952719093 ], [ 19.855098503992735, 44.435505072900753 ], [ 19.857475619903937, 44.435117499273133 ], [ 19.859335971877556, 44.435272528904079 ], [ 19.860937941432837, 44.435892646528373 ], [ 19.862178175782162, 44.436926174403425 ], [ 19.863056674925588, 44.438295599961918 ], [ 19.863780145337444, 44.440595201507335 ], [ 19.864090203699902, 44.44315318547109 ], [ 19.864141879644023, 44.448553372440188 ], [ 19.863728469393322, 44.453979396931572 ], [ 19.863211703657157, 44.456614895261168 ], [ 19.861558058157868, 44.460645657571035 ], [ 19.856648796704576, 44.468991401232131 ], [ 19.855977004035481, 44.471601061140063 ], [ 19.856287062397996, 44.473048001064399 ], [ 19.857165562440741, 44.474339911357788 ], [ 19.858560824622316, 44.475528468863729 ], [ 19.865537143624238, 44.47961090801698 ], [ 19.867294141911088, 44.4807477895788 ], [ 19.86889611236569, 44.482246406346576 ], [ 19.869929640240684, 44.483900050946545 ], [ 19.870188022659079, 44.484830226933411 ], [ 19.870188022659079, 44.488344225305752 ], [ 19.869722934665674, 44.490514634742567 ], [ 19.86889611236569, 44.492581692291253 ], [ 19.867965936378823, 44.493925279428083 ], [ 19.862901646194018, 44.498627835306308 ], [ 19.860886264589396, 44.500875759108965 ], [ 19.857889031953221, 44.505759182140537 ], [ 19.857320591172311, 44.507929592476671 ], [ 19.857527296747321, 44.513355617867433 ], [ 19.857320591172311, 44.515422675416119 ], [ 19.856597120760512, 44.517489732065485 ], [ 19.85499515120523, 44.51971181924506 ], [ 19.852979771399305, 44.521727199950305 ], [ 19.849930861020425, 44.524000963073945 ], [ 19.852566359349964, 44.530951442754883 ], [ 19.854891799317045, 44.535163072217983 ], [ 19.856803827234842, 44.53743683534168 ], [ 19.859025912615778, 44.539452216046925 ], [ 19.863521762918992, 44.54301789036333 ], [ 19.865743849199248, 44.544413154343601 ], [ 19.867655877117045, 44.545136623856081 ], [ 19.874735548906415, 44.546841946198811 ], [ 19.876750928712397, 44.547539578188946 ], [ 19.881246779015612, 44.549994208465932 ], [ 19.88987674261756, 44.555601101009984 ], [ 19.89256391779054, 44.557125556199423 ], [ 19.89545779763921, 44.558417467392189 ], [ 19.897731560762907, 44.559063422538884 ], [ 19.900056999830667, 44.559450995267184 ], [ 19.903105910209547, 44.559554348054689 ], [ 19.906154818789844, 44.55919261284879 ], [ 19.910237257943095, 44.557952379398785 ], [ 19.914681431402926, 44.556092027425109 ], [ 19.921709426348912, 44.552164618802067 ], [ 19.924293246935804, 44.550976061296183 ], [ 19.926877069321279, 44.550562649246842 ], [ 19.928530714820624, 44.550795193243573 ], [ 19.935455356979105, 44.553766588357348 ], [ 19.948064406047479, 44.556867173781029 ], [ 19.951113316426415, 44.558004055342849 ], [ 19.960931838433567, 44.562422390380959 ], [ 19.964135775745433, 44.564670315082935 ], [ 19.964342482219763, 44.56474783034804 ], [ 19.964859247056609, 44.564825343814562 ], [ 19.965996127719109, 44.564799506292161 ], [ 19.971060417903971, 44.56477366787044 ], [ 19.971112094747355, 44.560897936090839 ], [ 19.971112094747355, 44.560277818466545 ], [ 19.970957066015785, 44.55999359852575 ], [ 19.970802036384839, 44.559761054529019 ], [ 19.970233594704609, 44.559295966535615 ], [ 19.967753126905279, 44.557538967349444 ], [ 19.967443067643444, 44.554722601866558 ], [ 19.966151157349998, 44.549012356535002 ], [ 19.966202834193439, 44.546635239724537 ], [ 19.967391391699323, 44.543482978356735 ], [ 19.969561802035514, 44.539813951252825 ], [ 19.972300653152615, 44.536403307466628 ], [ 19.97410932828285, 44.534697984224579 ], [ 19.976124708988095, 44.533147691512738 ], [ 19.981654087166362, 44.529711209304821 ], [ 19.983669467871607, 44.527902534174586 ], [ 19.985994906939368, 44.52524119742327 ], [ 19.988165317275559, 44.523432522293035 ], [ 19.989973993305114, 44.522347317574599 ], [ 19.993901401028836, 44.52064199523187 ], [ 19.995916781734081, 44.520021878506839 ], [ 19.999740837569561, 44.51929840809504 ], [ 20.007802362189238, 44.518471584895678 ], [ 20.011729770812281, 44.517903144114769 ], [ 20.014106885824106, 44.517308864912138 ], [ 20.016277297059617, 44.516533718556218 ], [ 20.021961703969453, 44.513717353073389 ], [ 20.024080438361523, 44.512890529874028 ], [ 20.035087517874615, 44.510048325969422 ], [ 20.040668572896323, 44.507877916532607 ], [ 20.043407424013367, 44.507231961385912 ], [ 20.044699334306813, 44.507154446120751 ], [ 20.047489862267298, 44.507516181326707 ], [ 20.053070916389686, 44.508859768463537 ], [ 20.056894972225166, 44.510203354701048 ], [ 20.059272088136368, 44.511805325155592 ], [ 20.060615676172517, 44.512993883560853 ], [ 20.065008171889588, 44.519091702520029 ], [ 20.067075230337593, 44.520977892016106 ], [ 20.07027916764946, 44.523096625508856 ], [ 20.074051548440195, 44.524724433485801 ], [ 20.077772250588851, 44.525551255785786 ], [ 20.081803012898717, 44.525912990991742 ], [ 20.089864535719755, 44.526274726197641 ], [ 20.09513553237889, 44.525964666935806 ], [ 20.099373000263711, 44.524827786273306 ], [ 20.101440056913077, 44.524000963073945 ], [ 20.103972201555848, 44.52239899441804 ], [ 20.105832554428844, 44.52043528875754 ], [ 20.108881463009084, 44.514234117010858 ], [ 20.10981163899595, 44.512838853929964 ], [ 20.115496046805106, 44.507051093333246 ], [ 20.121542188920841, 44.498989570512265 ], [ 20.123299188107012, 44.497103380116869 ], [ 20.125366244756378, 44.495708116136655 ], [ 20.127795038410284, 44.495165513777408 ], [ 20.13022383026555, 44.495578924927429 ], [ 20.144434848889148, 44.501676743886605 ], [ 20.148000523205553, 44.50348541901684 ], [ 20.151566195723319, 44.50578502146152 ], [ 20.153994989377225, 44.508704738832591 ], [ 20.156268751601601, 44.512838853929964 ], [ 20.15833580915023, 44.515629380991129 ], [ 20.161074660267332, 44.518600776104904 ], [ 20.165467156883778, 44.52239899441804 ], [ 20.167947624683109, 44.525318711789112 ], [ 20.169446242350205, 44.528083401327876 ], [ 20.170376418337014, 44.534904689799589 ], [ 20.172650180561391, 44.538444525694274 ], [ 20.17528567889093, 44.54126089117716 ], [ 20.176577590083696, 44.542268582429131 ], [ 20.178954705095521, 44.543121243150836 ], [ 20.180711704281691, 44.543224595938341 ], [ 20.182417025725158, 44.542914537575825 ], [ 20.184742465692239, 44.541777656014006 ], [ 20.186086052829069, 44.540744127239634 ], [ 20.187274611234329, 44.53955556883443 ], [ 20.18939334472708, 44.536299953779803 ], [ 20.189961786407309, 44.534904689799589 ], [ 20.190323520713889, 44.532837633150223 ], [ 20.190220167926384, 44.527928371696987 ], [ 20.19171878379484, 44.521572171218679 ], [ 20.19249393105008, 44.519556790513434 ], [ 20.19419925339281, 44.517205512124633 ], [ 20.198385044434247, 44.512657985877297 ], [ 20.199831984358582, 44.510306708387873 ], [ 20.200142042721097, 44.508343004526012 ], [ 20.199935337146087, 44.506947740545741 ], [ 20.196369662829682, 44.495837307345823 ], [ 20.196834750823086, 44.493615221065568 ], [ 20.197764926809896, 44.492219957085354 ], [ 20.199108513946726, 44.490928045892588 ], [ 20.200865513132896, 44.489739488386647 ], [ 20.207996859967125, 44.486303006178787 ], [ 20.211304151865079, 44.484158434264316 ], [ 20.21424970855719, 44.481858831819636 ], [ 20.217556999555882, 44.478732407974235 ], [ 20.221381056290681, 44.468397122029558 ], [ 20.223706496257762, 44.458836982440744 ], [ 20.226341993688038, 44.451498928232922 ], [ 20.226445347374863, 44.449431871583556 ], [ 20.226135288113028, 44.447984930759901 ], [ 20.225360141757108, 44.445943712532255 ], [ 20.221174350715671, 44.438243924017854 ], [ 20.220244174728862, 44.434187324185643 ], [ 20.220502557147256, 44.431913561061947 ], [ 20.221536085921628, 44.430001533144207 ], [ 20.224946729707767, 44.425609036527817 ], [ 20.225980259381458, 44.42333527340412 ], [ 20.226807081681443, 44.418270982319939 ], [ 20.226807081681443, 44.412896632873299 ], [ 20.226497023318927, 44.410261135443022 ], [ 20.225773552907128, 44.407728989900932 ], [ 20.221691114653197, 44.399719143024015 ], [ 20.219313998742052, 44.393207912914818 ], [ 20.216678501311776, 44.388246975517461 ], [ 20.215334914174946, 44.386283270756337 ], [ 20.21347456220127, 44.384422918782661 ], [ 20.211097446290125, 44.382769273283316 ], [ 20.203707717037503, 44.37879018781689 ], [ 20.200607130714502, 44.376568102435954 ], [ 20.199676954727636, 44.375327867187309 ], [ 20.199263542678352, 44.373984280050479 ], [ 20.200038689933592, 44.369075019496506 ], [ 20.199211866734231, 44.367369697153777 ], [ 20.197351514760555, 44.365871080386 ], [ 20.194147577448746, 44.363804022837371 ], [ 20.192235548631629, 44.362098701393904 ], [ 20.191460402275709, 44.360755113357754 ], [ 20.191046991125745, 44.359282335011756 ], [ 20.190995314282304, 44.357215278362389 ], [ 20.191460402275709, 44.355122382391983 ], [ 20.19228722457575, 44.353572088780822 ], [ 20.193527458925075, 44.352125148856487 ], [ 20.198798454684948, 44.347991035557811 ], [ 20.200555453871061, 44.346337389159146 ], [ 20.201899041007891, 44.344580389972975 ], [ 20.202622511419747, 44.34256500926773 ], [ 20.202674188263188, 44.34044627487566 ], [ 20.202054070638837, 44.338430895069735 ], [ 20.200503777926997, 44.336260483834224 ], [ 20.19363081171258, 44.330162664875047 ], [ 20.191460402275709, 44.328043932281616 ], [ 20.189910108664549, 44.326131904363876 ], [ 20.188101434433634, 44.323341376403391 ], [ 20.187016228815878, 44.319930731717875 ], [ 20.187119581603383, 44.317889513490229 ], [ 20.187998080746809, 44.315796617519879 ], [ 20.19228722457575, 44.308148504949543 ], [ 20.199005161159221, 44.300500393278526 ], [ 20.205723096843428, 44.291922104721323 ], [ 20.210270623090764, 44.286702785804891 ], [ 20.21290612231968, 44.28435150831541 ], [ 20.216316766105876, 44.281948553982545 ], [ 20.220399204359751, 44.279881497333236 ], [ 20.226703728893938, 44.276212470229268 ], [ 20.240708041942582, 44.266652329741191 ], [ 20.246340772908354, 44.263267524376715 ], [ 20.248821241607004, 44.26145884924648 ], [ 20.251301711204974, 44.258435777289264 ], [ 20.256779413439176, 44.249289048850528 ], [ 20.259208205294442, 44.246653551420252 ], [ 20.261636997149708, 44.244793199446576 ], [ 20.264530876998379, 44.243372097044642 ], [ 20.269233432876604, 44.24195099554197 ], [ 20.275279574992396, 44.240917466767655 ], [ 20.279103630827876, 44.240452378774251 ], [ 20.280912305958111, 44.24060740840514 ], [ 20.282410922725887, 44.241124173241985 ], [ 20.283909538594287, 44.242493597901216 ], [ 20.284684685849584, 44.244379788296555 ], [ 20.284943068267978, 44.246421007423521 ], [ 20.284426304330452, 44.251407783242598 ], [ 20.284839714581153, 44.253268134316897 ], [ 20.286183301717983, 44.254921779816243 ], [ 20.288250360165989, 44.256162014165625 ], [ 20.290110711240288, 44.25662710215903 ], [ 20.29212609194559, 44.256730454946535 ], [ 20.293986443919209, 44.256420396584019 ], [ 20.297913853441571, 44.255076809447189 ], [ 20.305251905850753, 44.251304430455093 ], [ 20.307318963399439, 44.250735988774863 ], [ 20.309437696892189, 44.250477607255732 ], [ 20.313261752727669, 44.250994371193258 ], [ 20.318015985449335, 44.252337958330088 ], [ 20.324165480352633, 44.254973455760364 ], [ 20.326749301838788, 44.256575426214908 ], [ 20.328816359387474, 44.258487454132705 ], [ 20.33160688644864, 44.261846421974781 ], [ 20.333053827272295, 44.263190009111611 ], [ 20.341580438086737, 44.268667711345756 ], [ 20.343079053955137, 44.269856268851697 ], [ 20.344164259572892, 44.271199855988527 ], [ 20.344939405928812, 44.272698472756304 ], [ 20.346541374584774, 44.277556057366155 ], [ 20.349280225701818, 44.28241364197595 ], [ 20.350623813738025, 44.284429023580572 ], [ 20.352949252805729, 44.287012844167407 ], [ 20.356101515072851, 44.289441636921993 ], [ 20.358065219834032, 44.290216783277913 ], [ 20.360235630170166, 44.290707708793718 ], [ 20.363181186862278, 44.290836900002887 ], [ 20.3709326513208, 44.290268460121297 ], [ 20.37439497195038, 44.290371812908802 ], [ 20.377908970322721, 44.290785224058823 ], [ 20.384368523588478, 44.292542223244993 ], [ 20.389071078567383, 44.294299221531844 ], [ 20.400543246973257, 44.292800604764068 ], [ 20.402506951734438, 44.292387192714727 ], [ 20.406227654782413, 44.291198635208843 ], [ 20.408966505899514, 44.289855048072013 ], [ 20.41139529775478, 44.288356432203557 ], [ 20.413410679359345, 44.286702785804891 ], [ 20.414599236865286, 44.285410875511445 ], [ 20.41542606006459, 44.284067288374615 ], [ 20.415736118427105, 44.28205190677005 ], [ 20.414702589652791, 44.276935939741804 ], [ 20.41449588407778, 44.274662177517428 ], [ 20.414805942440296, 44.270011298482643 ], [ 20.41542606006459, 44.267789212202331 ], [ 20.416149529577126, 44.266290595434612 ], [ 20.420283643775122, 44.259779365325414 ], [ 20.423177525422432, 44.254405015878774 ], [ 20.423797642147463, 44.252363796751808 ], [ 20.424056023666537, 44.247997138557082 ], [ 20.423125847679728, 44.241795965911081 ], [ 20.417699823188286, 44.236473294207144 ], [ 20.410568474555419, 44.228773504793367 ], [ 20.408863153112009, 44.226861476875627 ], [ 20.405297478795603, 44.22190054037759 ], [ 20.402506951734438, 44.216836249293465 ], [ 20.400284864554862, 44.207999579217187 ], [ 20.399199659836427, 44.206087551299447 ], [ 20.397546014337081, 44.204614772953391 ], [ 20.39578901515091, 44.203917140963256 ], [ 20.393825311289049, 44.203503729813235 ], [ 20.384833611581882, 44.202521877882361 ], [ 20.382766554033253, 44.202108465833021 ], [ 20.381009555746402, 44.201410833842885 ], [ 20.379149203772727, 44.19996389391855 ], [ 20.377805616635897, 44.198129381265915 ], [ 20.376048618349046, 44.194718736580398 ], [ 20.375066766418115, 44.191101386319872 ], [ 20.375015089574731, 44.188827623196232 ], [ 20.375996942404925, 44.183685817746266 ], [ 20.375841912774035, 44.18164459951862 ], [ 20.374653355268094, 44.178905748401519 ], [ 20.373361444075385, 44.1770453964279 ], [ 20.372224561614189, 44.175908514866023 ], [ 20.370880975376679, 44.174874986091709 ], [ 20.368452182622093, 44.173686427686448 ], [ 20.366540154704353, 44.173324693379868 ], [ 20.364473097155667, 44.173247179014083 ], [ 20.357393426265617, 44.173815618895674 ], [ 20.354241163998495, 44.173738105429209 ], [ 20.351243931362319, 44.173273017435804 ], [ 20.348556756189339, 44.172472031758844 ], [ 20.345972934703184, 44.171412665462128 ], [ 20.339616733325556, 44.168157050407501 ], [ 20.337601352620311, 44.166503404008836 ], [ 20.336257764584161, 44.164694728878601 ], [ 20.335947707120965, 44.162782700960861 ], [ 20.337136264626906, 44.158028469138515 ], [ 20.337291294257795, 44.155134589289844 ], [ 20.336774530320326, 44.153739326208893 ], [ 20.335120883921661, 44.151956489500378 ], [ 20.330625033618389, 44.148623359180647 ], [ 20.328041213031554, 44.147228095200433 ], [ 20.316103956632276, 44.144024156089927 ], [ 20.308249139386248, 44.140691025770195 ], [ 20.300807733290242, 44.138029689918255 ], [ 20.298430617379097, 44.136815293990594 ], [ 20.296208530199465, 44.135394192487979 ], [ 20.292952915144895, 44.132551988583373 ], [ 20.291971063213964, 44.131156725502478 ], [ 20.290989211283033, 44.129089667054473 ], [ 20.289542271358698, 44.124852200068972 ], [ 20.288457065740999, 44.122940172151175 ], [ 20.286751743398213, 44.121441555383456 ], [ 20.285098096999548, 44.1207180849716 ], [ 20.283082717193622, 44.120304673821636 ], [ 20.279723747552907, 44.119942939514999 ], [ 20.260913526737852, 44.119839585828174 ], [ 20.25719282368982, 44.119658717775565 ], [ 20.25357547432867, 44.1192194691032 ], [ 20.248924595293829, 44.118005073175539 ], [ 20.239571161280026, 44.114310208549284 ], [ 20.236263869382071, 44.113276678875593 ], [ 20.229184197592645, 44.111648870898648 ], [ 20.226238640900533, 44.111468003745358 ], [ 20.223293084208478, 44.111726386163753 ], [ 20.212441034326275, 44.113948473343328 ], [ 20.209598830421669, 44.114000149287449 ], [ 20.207583448817104, 44.113715929346654 ], [ 20.198643425953321, 44.111829738951258 ], [ 20.195594517373081, 44.111519679689422 ], [ 20.19249393105008, 44.111493842167079 ], [ 20.182055291418521, 44.112527370941393 ], [ 20.178903029151456, 44.112346502888784 ], [ 20.176525913240312, 44.111933091738763 ], [ 20.174252150116615, 44.111261298170348 ], [ 20.171409946212009, 44.109917711033518 ], [ 20.167379184801518, 44.107075507128911 ], [ 20.162521600191667, 44.101933702578265 ], [ 20.160351189855533, 44.100460924232266 ], [ 20.158284133206166, 44.099789129764531 ], [ 20.156062046026591, 44.099479072301335 ], [ 20.15182457904109, 44.0995307482454 ], [ 20.15048099100494, 44.099789129764531 ], [ 20.129138624647794, 44.09668854434085 ], [ 20.126968215210923, 44.096171780403324 ], [ 20.125211216024809, 44.095370794726364 ], [ 20.123557569626144, 44.093768826070459 ], [ 20.122730747326102, 44.091779282887558 ], [ 20.122627393639277, 44.089660549394807 ], [ 20.123040805688618, 44.087438463114552 ], [ 20.127484979148448, 44.07741323553239 ], [ 20.127691684723459, 44.07606964839556 ], [ 20.127381626360943, 44.074932765934363 ], [ 20.126296420743188, 44.074157620477763 ], [ 20.124642775243842, 44.073692532484358 ], [ 20.122782424169543, 44.073589178797533 ], [ 20.120715365721537, 44.073770046850143 ], [ 20.117563104353792, 44.074571030728464 ], [ 20.109656610264324, 44.077929999469859 ], [ 20.107279494353179, 44.078705145825779 ], [ 20.104799024755152, 44.07932526345013 ], [ 20.095187209222331, 44.08103058489354 ], [ 20.083249952823053, 44.084131171216541 ], [ 20.079219191412562, 44.084725450419171 ], [ 20.074930046684301, 44.085035508781687 ], [ 20.062010939253412, 44.085319728722482 ], [ 20.047283155792968, 44.091779282887558 ], [ 20.044389275944297, 44.092864488505313 ], [ 20.038704868135142, 44.095706692409919 ], [ 20.03674116427328, 44.096456000344119 ], [ 20.032555373231901, 44.09707611796847 ], [ 20.021186557613532, 44.097412013853329 ], [ 20.018964471333277, 44.097670396271724 ], [ 20.016794060997086, 44.098187161108569 ], [ 20.013900181148415, 44.09973745382041 ], [ 20.012349888436574, 44.101055203434839 ], [ 20.009507683632705, 44.104181627280241 ], [ 19.996536900257752, 44.096998602703309 ], [ 19.995038282590656, 44.096120104459203 ], [ 19.99219607868605, 44.094259752485584 ], [ 19.991420933229449, 44.093846341335563 ], [ 19.989818962774905, 44.093174546867829 ], [ 19.987338494975575, 44.092270209302683 ], [ 19.985736525420293, 44.091624254155988 ], [ 19.985013055008437, 44.091210842106648 ], [ 19.984444614227527, 44.090719915691523 ], [ 19.983927850290058, 44.090177314231653 ], [ 19.983049351146633, 44.088988755826392 ], [ 19.981860792741372, 44.087180080696157 ], [ 19.981137323228893, 44.085939846346832 ], [ 19.980310500029532, 44.083898627219867 ], [ 19.977778355386761, 44.075604560402098 ], [ 19.973799269021015, 44.076379705858699 ], [ 19.966616245343459, 44.077309881845565 ], [ 19.953955519431645, 44.078395087463264 ], [ 19.95080325716458, 44.07932526345013 ], [ 19.948994582034345, 44.080152085750115 ], [ 19.944343702999504, 44.083200995229731 ], [ 19.941863234300797, 44.084389552735672 ], [ 19.934525180992296, 44.087025051065211 ], [ 19.927910597196274, 44.090073961444148 ], [ 19.920055779950246, 44.092089342149393 ], [ 19.918092075189122, 44.092916165348754 ], [ 19.916386752846336, 44.093975532544789 ], [ 19.91168419786743, 44.097412013853329 ], [ 19.907808465188509, 44.100977688169735 ], [ 19.906103142845723, 44.102915554509195 ], [ 19.904966261283903, 44.104750068061151 ], [ 19.903932733408908, 44.107282212703922 ], [ 19.903984409352972, 44.108625799840752 ], [ 19.904501174189818, 44.109866035089397 ], [ 19.906103142845723, 44.111416326901917 ], [ 19.908686965231254, 44.113380032562418 ], [ 19.910030552368084, 44.115137030849269 ], [ 19.91054731630561, 44.11691986845716 ], [ 19.910392286674664, 44.118702704266354 ], [ 19.909462110687855, 44.120252996978195 ], [ 19.90822187723785, 44.121234849808445 ], [ 19.901400587866817, 44.124697171337345 ], [ 19.896181268051066, 44.126970934461042 ], [ 19.8937524761958, 44.127694403973521 ], [ 19.887292922030724, 44.128779608691957 ], [ 19.867397494698594, 44.130278225459733 ], [ 19.864658643581492, 44.130123195828787 ], [ 19.862694939719688, 44.129606431891318 ], [ 19.861041294220342, 44.128779608691957 ], [ 19.859749383027577, 44.127591051186016 ], [ 19.858819207040767, 44.126169948784081 ], [ 19.856597120760512, 44.1199687770374 ], [ 19.855460239198692, 44.118030910697939 ], [ 19.85385826964341, 44.116506456407819 ], [ 19.852256300987506, 44.115705470730859 ], [ 19.850344273069709, 44.115162869270989 ], [ 19.844814893992123, 44.114000149287449 ], [ 19.840990838156642, 44.112759914938124 ], [ 19.838923780607956, 44.111364650957853 ], [ 19.832929315335605, 44.106377875138776 ], [ 19.831430697668566, 44.105499375995407 ], [ 19.828950229869179, 44.104956772736841 ], [ 19.826366408383024, 44.105318507942741 ], [ 19.819183383806092, 44.108574123896688 ], [ 19.812103712915984, 44.111312975013789 ], [ 19.80838300986801, 44.113638414081493 ], [ 19.802078485333823, 44.118702704266354 ], [ 19.800269810203588, 44.11978790988411 ], [ 19.798202751755582, 44.120692247449256 ], [ 19.795980666374646, 44.12128652575251 ], [ 19.79293175599571, 44.121648260958466 ], [ 19.789831169672709, 44.121648260958466 ], [ 19.786730584249028, 44.12128652575251 ], [ 19.782596470051033, 44.120149645090009 ], [ 19.778255650278027, 44.11847016026968 ], [ 19.775723503836616, 44.117049058767009 ], [ 19.774534946330675, 44.115989692470293 ], [ 19.773759799974755, 44.114878648430874 ], [ 19.773553094399745, 44.113638414081493 ], [ 19.773914828706381, 44.112398179732168 ], [ 19.775000034324137, 44.111209622226283 ], [ 19.776498651091856, 44.110046902242743 ], [ 19.782028029270123, 44.106532904769722 ], [ 19.787040642611544, 44.104000759227631 ], [ 19.791123080865475, 44.102321275306565 ], [ 19.793861931982576, 44.100822659438165 ], [ 19.797014194249641, 44.098187161108569 ], [ 19.799287957373338, 44.095499985935589 ], [ 19.806367629162764, 44.083511054491566 ], [ 19.810036655367355, 44.073847561215928 ], [ 19.811121860085734, 44.068447374246887 ], [ 19.811225212873239, 44.062892158546276 ], [ 19.8109151554101, 44.060204983373239 ], [ 19.81014000815486, 44.05772451377527 ], [ 19.809209832167994, 44.056225897906813 ], [ 19.807917921874605, 44.054908149191704 ], [ 19.806264276375259, 44.053874620417389 ], [ 19.804300570714759, 44.053073634740429 ], [ 19.802336866852897, 44.052582709224623 ], [ 19.799442987004227, 44.052246813339764 ], [ 19.793241815257545, 44.052324326806229 ], [ 19.785025261906299, 44.052866930064738 ], [ 19.781201206070762, 44.053512885211433 ], [ 19.779082471678691, 44.054184678779905 ], [ 19.777222120604392, 44.055089016344994 ], [ 19.775878534366825, 44.056277573850934 ], [ 19.774276563912281, 44.058809719393025 ], [ 19.77406985833727, 44.060204983373239 ], [ 19.774276563912281, 44.06154857051007 ], [ 19.776085239042516, 44.065320950401542 ], [ 19.776136915885957, 44.067517198260077 ], [ 19.775568475105047, 44.069403387756097 ], [ 19.773966506449085, 44.072090562929134 ], [ 19.7708142432827, 44.075656236346219 ], [ 19.763424513130758, 44.081288967311991 ], [ 19.762080925993928, 44.082684231292205 ], [ 19.760168898076188, 44.085474758353371 ], [ 19.758256870158391, 44.089763902182312 ], [ 19.755466343097225, 44.093174546867829 ], [ 19.752520786405171, 44.095551662778973 ], [ 19.746422967445994, 44.099608263510504 ], [ 19.741255323574308, 44.104491686542076 ], [ 19.739705030862467, 44.105628567204576 ], [ 19.737948031676297, 44.106507066348001 ], [ 19.734279006371025, 44.107463079857212 ], [ 19.725649040970438, 44.107023831184847 ] ] ] } }
+]
+}
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/Multi.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/Multi.tsx
index a0391de7d8b24188287c0f43d9f107f2d8d6a126..153a3e7917ee0cb7c2838014f3f1e64b751e57ad 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/Multi.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/Multi.tsx
@@ -38,9 +38,20 @@ import {
 } from '../DeckGLContainer';
 import { getExploreLongUrl } from '../utils/explore';
 import layerGenerators from '../layers';
-import { Viewport } from '../utils/fitViewport';
+import fitViewport, { Viewport } from '../utils/fitViewport';
 import { TooltipProps } from '../components/Tooltip';
 
+import { getPoints as getPointsArc } from '../layers/Arc/Arc';
+import { getPoints as getPointsPath } from '../layers/Path/Path';
+import { getPoints as getPointsPolygon } from '../layers/Polygon/Polygon';
+import { getPoints as getPointsGrid } from '../layers/Grid/Grid';
+import { getPoints as getPointsScatter } from '../layers/Scatter/Scatter';
+import { getPoints as getPointsContour } from '../layers/Contour/Contour';
+import { getPoints as getPointsHeatmap } from '../layers/Heatmap/Heatmap';
+import { getPoints as getPointsHex } from '../layers/Hex/Hex';
+import { getPoints as getPointsGeojson } from '../layers/Geojson/Geojson';
+import { getPoints as getPointsScreengrid } from '../layers/Screengrid/Screengrid';
+
 export type DeckMultiProps = {
   formData: QueryFormData;
   payload: JsonObject;
@@ -56,7 +67,35 @@ export type DeckMultiProps = {
 const DeckMulti = (props: DeckMultiProps) => {
   const containerRef = useRef<DeckGLContainerHandle>();
 
-  const [viewport, setViewport] = useState<Viewport>();
+  const getAdjustedViewport = useCallback(() => {
+    let viewport = { ...props.viewport };
+    const points = [
+      ...getPointsPolygon(props.payload.data.features.deck_polygon || []),
+      ...getPointsPath(props.payload.data.features.deck_path || []),
+      ...getPointsGrid(props.payload.data.features.deck_grid || []),
+      ...getPointsScatter(props.payload.data.features.deck_scatter || []),
+      ...getPointsContour(props.payload.data.features.deck_contour || []),
+      ...getPointsHeatmap(props.payload.data.features.deck_heatmap || []),
+      ...getPointsHex(props.payload.data.features.deck_hex || []),
+      ...getPointsArc(props.payload.data.features.deck_arc || []),
+      ...getPointsGeojson(props.payload.data.features.deck_geojson || []),
+      ...getPointsScreengrid(props.payload.data.features.deck_screengrid || []),
+    ];
+
+    if (props.formData) {
+      viewport = fitViewport(viewport, {
+        width: props.width,
+        height: props.height,
+        points,
+      });
+    }
+    if (viewport.zoom < 0) {
+      viewport.zoom = 0;
+    }
+    return viewport;
+  }, [props]);
+
+  const [viewport, setViewport] = useState<Viewport>(getAdjustedViewport());
   const [subSlicesLayers, setSubSlicesLayers] = useState<Record<number, Layer>>(
     {},
   );
@@ -70,23 +109,31 @@ const DeckMulti = (props: DeckMultiProps) => {
 
   const loadLayers = useCallback(
     (formData: QueryFormData, payload: JsonObject, viewport?: Viewport) => {
-      setViewport(viewport);
+      setViewport(getAdjustedViewport());
       setSubSlicesLayers({});
       payload.data.slices.forEach(
         (subslice: { slice_id: number } & JsonObject) => {
           // Filters applied to multi_deck are passed down to underlying charts
           // note that dashboard contextual information (filter_immune_slices and such) aren't
           // taken into consideration here
-          const filters = [
-            ...(subslice.form_data.filters || []),
-            ...(formData.filters || []),
+          const extra_filters = [
+            ...(subslice.form_data.extra_filters || []),
             ...(formData.extra_filters || []),
+            ...(formData.extra_form_data?.filters || []),
+          ];
+
+          const adhoc_filters = [
+            ...(formData.adhoc_filters || []),
+            ...(subslice.formData?.adhoc_filters || []),
+            ...(formData.extra_form_data?.adhoc_filters || []),
           ];
+
           const subsliceCopy = {
             ...subslice,
             form_data: {
               ...subslice.form_data,
-              filters,
+              extra_filters,
+              adhoc_filters,
             },
           };
 
@@ -117,7 +164,13 @@ const DeckMulti = (props: DeckMultiProps) => {
         },
       );
     },
-    [props.datasource, props.onAddFilter, props.onSelect, setTooltip],
+    [
+      props.datasource,
+      props.onAddFilter,
+      props.onSelect,
+      setTooltip,
+      getAdjustedViewport,
+    ],
   );
 
   const prevDeckSlices = usePrevious(props.formData.deck_slices);
@@ -136,7 +189,7 @@ const DeckMulti = (props: DeckMultiProps) => {
     <DeckGLContainerStyledWrapper
       ref={containerRef}
       mapboxApiAccessToken={payload.data.mapboxApiKey}
-      viewport={viewport || props.viewport}
+      viewport={viewport}
       layers={layers}
       mapStyle={formData.mapbox_style}
       setControlValue={setControlValue}
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx
index a1d5c1d67f40bda8d08c0fa9a9d669ad6f9928f5..00d87feff2a7f7ece751a3f32d19998dc5322840 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx
@@ -29,7 +29,7 @@ import TooltipRow from '../../TooltipRow';
 import { TooltipProps } from '../../components/Tooltip';
 import { Point } from '../../types';
 
-function getPoints(data: JsonObject[]) {
+export function getPoints(data: JsonObject[]) {
   const points: Point[] = [];
   data.forEach(d => {
     points.push(d.sourcePosition);
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx
index 65ca8b3eca719aea0098a3e5c6c62cc394d8dbe3..b8dacb70de09737f8c7f6788bcdc2389e8325287 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Contour/Contour.tsx
@@ -97,7 +97,7 @@ export const getLayer: getLayerType<unknown> = function (
   });
 };
 
-function getPoints(data: any[]) {
+export function getPoints(data: any[]) {
   return data.map(d => d.position);
 }
 
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/Geojson.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/Geojson.tsx
index 6960fed8012154279a1775141c37726c60062a7a..cdcdbf3b0f1e3ac1bc379757ba5cab33f5f0e565 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/Geojson.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/Geojson.tsx
@@ -39,6 +39,7 @@ import { commonLayerProps } from '../common';
 import TooltipRow from '../../TooltipRow';
 import fitViewport, { Viewport } from '../../utils/fitViewport';
 import { TooltipProps } from '../../components/Tooltip';
+import { Point } from '../../types';
 
 type ProcessedFeature = Feature<Geometry, GeoJsonProperties> & {
   properties: JsonObject;
@@ -172,6 +173,17 @@ export type DeckGLGeoJsonProps = {
   width: number;
 };
 
+export function getPoints(data: Point[]) {
+  return data.reduce((acc: Array<any>, feature: any) => {
+    const bounds = geojsonExtent(feature);
+    if (bounds) {
+      return [...acc, [bounds[0], bounds[1]], [bounds[2], bounds[3]]];
+    }
+
+    return acc;
+  }, []);
+}
+
 const DeckGLGeoJson = (props: DeckGLGeoJsonProps) => {
   const containerRef = useRef<DeckGLContainerHandle>();
   const setTooltip = useCallback((tooltip: TooltipProps['tooltip']) => {
@@ -186,24 +198,13 @@ const DeckGLGeoJson = (props: DeckGLGeoJsonProps) => {
 
   const viewport: Viewport = useMemo(() => {
     if (formData.autozoom) {
-      const points =
-        payload?.data?.features?.reduce?.(
-          (acc: [number, number, number, number][], feature: any) => {
-            const bounds = geojsonExtent(feature);
-            if (bounds) {
-              return [...acc, [bounds[0], bounds[1]], [bounds[2], bounds[3]]];
-            }
-
-            return acc;
-          },
-          [],
-        ) || [];
+      const points = getPoints(payload.data.features) || [];
 
       if (points.length) {
         return fitViewport(props.viewport, {
           width,
           height,
-          points,
+          points: getPoints(payload.data.features) || [],
         });
       }
     }
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx
index 3bce514453c6dea0f317202c97e426d9f5d6cf59..d2c86bd878289957af28ee82ddfe44a386b6c725 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.tsx
@@ -86,7 +86,7 @@ export function getLayer(
   });
 }
 
-function getPoints(data: JsonObject[]) {
+export function getPoints(data: JsonObject[]) {
   return data.map(d => d.position);
 }
 
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx
index d84b3d1b2341c2a319d36f89f3a63bd3754af6ee..5fe92776277272d39965f31e6447ae22fc7a5f17 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx
@@ -79,7 +79,7 @@ export const getLayer: getLayerType<unknown> = (
   });
 };
 
-function getPoints(data: any[]) {
+export function getPoints(data: any[]) {
   return data.map(d => d.position);
 }
 
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx
index 3a27f4436ae16ec7b19526fcc0f124e42ae26064..ef79b1fa07e0de67d01075ce565c41d3d90646f8 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.tsx
@@ -84,7 +84,7 @@ export function getLayer(
   });
 }
 
-function getPoints(data: JsonObject[]) {
+export function getPoints(data: JsonObject[]) {
   return data.map(d => d.position);
 }
 
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/Path.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/Path.tsx
index 60663343afdee455597a01c5fbc2a27abdc223b7..379247cee1a13989df7a5354b61fada5d3389f88 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/Path.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/Path.tsx
@@ -76,7 +76,7 @@ export function getLayer(
   });
 }
 
-function getPoints(data: JsonObject[]) {
+export function getPoints(data: JsonObject[]) {
   let points: Point[] = [];
   data.forEach(d => {
     points = points.concat(d.path);
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx
index 7aaf53fe9a2d9cb4b8778dc02518872b471c07ba..8b355aa9729275c9c2bccaea77133cbc2b265aea 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.tsx
@@ -173,6 +173,10 @@ export type DeckGLPolygonProps = {
   height: number;
 };
 
+export function getPoints(data: JsonObject[]) {
+  return data.flatMap(getPointsFromPolygon);
+}
+
 const DeckGLPolygon = (props: DeckGLPolygonProps) => {
   const containerRef = useRef<DeckGLContainerHandle>();
 
@@ -183,7 +187,7 @@ const DeckGLPolygon = (props: DeckGLPolygonProps) => {
       viewport = fitViewport(viewport, {
         width: props.width,
         height: props.height,
-        points: features.flatMap(getPointsFromPolygon),
+        points: getPoints(features),
       });
     }
     if (viewport.zoom < 0) {
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx
index 5f3ac36082d96a62c7cf08dbc79879fabc78fe4d..755b4ae7791ce4d6d40d03aac889bd75f5d16d3c 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.tsx
@@ -30,7 +30,7 @@ import TooltipRow from '../../TooltipRow';
 import { unitToRadius } from '../../utils/geo';
 import { TooltipProps } from '../../components/Tooltip';
 
-function getPoints(data: JsonObject[]) {
+export function getPoints(data: JsonObject[]) {
   return data.map(d => d.position);
 }
 
diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx
index 14d3f20688f6f05c9360d3c13d5f61484c3b476f..5b5e4b9d5565dd5f7a68d0cdaa6345c9ddd1f3d9 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.tsx
@@ -34,7 +34,7 @@ import {
 } from '../../DeckGLContainer';
 import { TooltipProps } from '../../components/Tooltip';
 
-function getPoints(data: JsonObject[]) {
+export function getPoints(data: JsonObject[]) {
   return data.map(d => d.position);
 }
 
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/PopKPI.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/PopKPI.tsx
index 854d224f20ca1999f88ccd336a53b5fdc50b8f6b..6037fd6b06a244b127a63fc48a0349976747d61f 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/PopKPI.tsx
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/PopKPI.tsx
@@ -36,13 +36,25 @@ import {
 } from './types';
 import { useOverflowDetection } from './useOverflowDetection';
 
+const MetricNameText = styled.div<{ metricNameFontSize?: number }>`
+  ${({ theme, metricNameFontSize }) => `
+    font-family: ${theme.typography.families.sansSerif};
+    font-weight: ${theme.typography.weights.normal};
+    font-size: ${metricNameFontSize || theme.typography.sizes.s * 2}px;
+    text-align: center;
+    margin-bottom: ${theme.gridUnit * 3}px;
+  `}
+`;
+
 const NumbersContainer = styled.div`
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   width: 100%;
+  height: 100%;
   overflow: auto;
+  padding: 12px;
 `;
 
 const ComparisonValue = styled.div<PopKPIComparisonValueStyleProps>`
@@ -73,6 +85,8 @@ export default function PopKPI(props: PopKPIProps) {
     prevNumber,
     valueDifference,
     percentDifferenceFormattedString,
+    metricName,
+    metricNameFontSize,
     headerFontSize,
     subheaderFontSize,
     comparisonColorEnabled,
@@ -84,8 +98,8 @@ export default function PopKPI(props: PopKPIProps) {
     subtitle,
     subtitleFontSize,
     dashboardTimeRange,
+    showMetricName,
   } = props;
-
   const [comparisonRange, setComparisonRange] = useState<string>('');
 
   useEffect(() => {
@@ -260,9 +274,16 @@ export default function PopKPI(props: PopKPIProps) {
             width: fit-content;
             margin: auto;
             align-items: flex-start;
+            overflow: auto;
           `
         }
       >
+        {showMetricName && metricName && (
+          <MetricNameText metricNameFontSize={metricNameFontSize}>
+            {metricName}
+          </MetricNameText>
+        )}
+
         <div css={bigValueContainerStyles}>
           {bigNumber}
           {percentDifferenceNumber !== 0 && (
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/controlPanel.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/controlPanel.ts
index 63c126216b275d318a97a6a61c594ae62a80a247..57ac9dfdd826d2bd4cee74e95c48cb0519353096 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/controlPanel.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/controlPanel.ts
@@ -28,6 +28,8 @@ import {
   subheaderFontSize,
   subtitleControl,
   subtitleFontSize,
+  showMetricNameControl,
+  metricNameFontSizeWithVisibility,
 } from '../sharedControls';
 import { ColorSchemeEnum } from './types';
 
@@ -70,6 +72,8 @@ const config: ControlPanelConfig = {
         ],
         [subtitleControl],
         [subtitleFontSize],
+        [showMetricNameControl],
+        [metricNameFontSizeWithVisibility],
         [
           {
             ...subheaderFontSize,
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/index.ts
index 04f3e938afae6f20f536f073e75f5915ca19f9c6..53ab44c2aa4a63db80a33b7b7455f2805c0ef93f 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/index.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/index.ts
@@ -32,6 +32,7 @@ export default class PopKPIPlugin extends ChartPlugin {
       tags: [
         t('Comparison'),
         t('Business'),
+        t('ECharts'),
         t('Percentages'),
         t('Report'),
         t('Advanced-Analytics'),
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/transformProps.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/transformProps.ts
index a40f18b24c37458bf9d1d723578b3ea704814728..70189f70faf9155235c53a00592cd43583306a22 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/transformProps.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/transformProps.ts
@@ -26,7 +26,13 @@ import {
   SimpleAdhocFilter,
   ensureIsArray,
 } from '@superset-ui/core';
-import { getComparisonFontSize, getHeaderFontSize } from './utils';
+import {
+  getComparisonFontSize,
+  getHeaderFontSize,
+  getMetricNameFontSize,
+} from './utils';
+
+import { getOriginalLabel } from '../utils';
 
 dayjs.extend(utc);
 
@@ -83,6 +89,7 @@ export default function transformProps(chartProps: ChartProps) {
     headerFontSize,
     headerText,
     metric,
+    metricNameFontSize,
     yAxisFormat,
     currencyFormat,
     subheaderFontSize,
@@ -91,11 +98,14 @@ export default function transformProps(chartProps: ChartProps) {
     percentDifferenceFormat,
     subtitle = '',
     subtitleFontSize,
-    columnConfig,
+    columnConfig = {},
   } = formData;
   const { data: dataA = [] } = queriesData[0];
   const data = dataA;
   const metricName = metric ? getMetricLabel(metric) : '';
+  const metrics = chartProps.datasource?.metrics || [];
+  const originalLabel = getOriginalLabel(metric, metrics);
+  const showMetricName = chartProps.rawFormData?.show_metric_name ?? false;
   const timeComparison = ensureIsArray(chartProps.rawFormData?.time_compare)[0];
   const startDateOffset = chartProps.rawFormData?.start_date_offset;
   const currentTimeRangeFilter = chartProps.rawFormData?.adhoc_filters?.filter(
@@ -179,7 +189,7 @@ export default function transformProps(chartProps: ChartProps) {
     width,
     height,
     data,
-    metricName,
+    metricName: originalLabel,
     bigNumber,
     prevNumber,
     valueDifference,
@@ -187,6 +197,8 @@ export default function transformProps(chartProps: ChartProps) {
     boldText,
     subtitle,
     subtitleFontSize,
+    showMetricName,
+    metricNameFontSize: getMetricNameFontSize(metricNameFontSize),
     headerFontSize: getHeaderFontSize(headerFontSize),
     subheaderFontSize: getComparisonFontSize(subheaderFontSize),
     headerText,
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/types.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/types.ts
index bd12d1a1540acf84ff94d403ed5ddbaf04627edd..f4fa903e8521da5f5fdc9d0f5407d098722c0e6f 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/types.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/types.ts
@@ -61,6 +61,8 @@ export type PopKPIProps = PopKPIStylesProps &
     data: TimeseriesDataRecord[];
     metrics: Metric[];
     metricName: string;
+    metricNameFontSize?: number;
+    showMetricName: boolean;
     bigNumber: string;
     prevNumber: string;
     subtitle?: string;
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/utils.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/utils.ts
index 4fb45ab88ac215e85e02ed84011c71b39989b4f0..9b658593298945afaea6747c76c6e06fea6359d4 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/utils.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberPeriodOverPeriod/utils.ts
@@ -16,10 +16,19 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-import { headerFontSize, subheaderFontSize } from '../sharedControls';
+import {
+  headerFontSize,
+  subheaderFontSize,
+  metricNameFontSize,
+} from '../sharedControls';
 
 const headerFontSizes = [16, 20, 30, 48, 60];
-const comparisonFontSizes = [16, 20, 26, 32, 40];
+const sharedFontSizes = [16, 20, 26, 32, 40];
+
+const metricNameProportionValues =
+  metricNameFontSize.config.options.map(
+    (option: { label: string; value: number }) => option.value,
+  ) ?? [];
 
 const headerProportionValues =
   headerFontSize.config.options.map(
@@ -40,6 +49,10 @@ const getFontSizeMapping = (
     return acc;
   }, {});
 
+const metricNameFontSizesMapping = getFontSizeMapping(
+  metricNameProportionValues,
+  sharedFontSizes,
+);
 const headerFontSizesMapping = getFontSizeMapping(
   headerProportionValues,
   headerFontSizes,
@@ -47,13 +60,17 @@ const headerFontSizesMapping = getFontSizeMapping(
 
 const comparisonFontSizesMapping = getFontSizeMapping(
   subheaderProportionValues,
-  comparisonFontSizes,
+  sharedFontSizes,
 );
 
+export const getMetricNameFontSize = (proportionValue: number) =>
+  metricNameFontSizesMapping[proportionValue] ??
+  sharedFontSizes[sharedFontSizes.length - 1];
+
 export const getHeaderFontSize = (proportionValue: number) =>
   headerFontSizesMapping[proportionValue] ??
   headerFontSizes[headerFontSizes.length - 1];
 
 export const getComparisonFontSize = (proportionValue: number) =>
   comparisonFontSizesMapping[proportionValue] ??
-  comparisonFontSizes[comparisonFontSizes.length - 1];
+  sharedFontSizes[sharedFontSizes.length - 1];
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts
index f9b53ccaacf15f8c0823ceb3ab80f20f699126d9..33a2ba89df6cb2898972b81aeef8617254ae242a 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts
@@ -28,6 +28,8 @@ import {
   headerFontSize,
   subtitleFontSize,
   subtitleControl,
+  showMetricNameControl,
+  metricNameFontSizeWithVisibility,
 } from '../sharedControls';
 
 export default {
@@ -44,6 +46,8 @@ export default {
         [headerFontSize],
         [subtitleControl],
         [subtitleFontSize],
+        [showMetricNameControl],
+        [metricNameFontSizeWithVisibility],
         ['y_axis_format'],
         ['currency_format'],
         [
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts
index 5600a7c419365d05cc1f561d9f00bceb99a1bd2c..d77ea1e4cdb0e5db4ff591a791dfd616247ae457 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts
@@ -39,6 +39,7 @@ const metadata = {
   tags: [
     t('Additive'),
     t('Business'),
+    t('ECharts'),
     t('Legacy'),
     t('Percentages'),
     t('Featured'),
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/transformProps.test.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/transformProps.test.ts
index f41008eb60dd4525136c9a9ba9755a2e178de18b..aea95effeb6de9b9dac7a1d04d2d666ec54175be 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/transformProps.test.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/transformProps.test.ts
@@ -36,6 +36,7 @@ jest.mock('@superset-ui/core', () => ({
 jest.mock('../utils', () => ({
   getDateFormatter: jest.fn(() => (v: any) => `${v}pm`),
   parseMetricValue: jest.fn(val => Number(val)),
+  getOriginalLabel: jest.fn((metric, metrics) => metric),
 }));
 
 describe('BigNumberTotal transformProps', () => {
@@ -103,6 +104,38 @@ describe('BigNumberTotal transformProps', () => {
     expect(result.subtitle).toBe('test');
   });
 
+  const baseChartProps = {
+    width: 400,
+    height: 300,
+    queriesData: [{ data: [], coltypes: [] }],
+    rawFormData: { dummy: 'raw' },
+    hooks: { onContextMenu: jest.fn() },
+    datasource: {
+      currencyFormats: { value: '$0,0.00' },
+      columnFormats: { value: '$0,0.00' },
+      metrics: [{ metric_name: 'value', d3format: '.2f' }],
+    },
+  };
+
+  it('uses subtitle font size when subtitle is provided', () => {
+    const result = transformProps({
+      ...baseChartProps,
+      formData: {
+        subtitle: 'Subtitle wins',
+        subheader: 'Fallback subheader',
+        subtitleFontSize: 0.4,
+        subheaderFontSize: 0.99,
+        metric: 'value',
+        headerFontSize: 0.3,
+        yAxisFormat: 'SMART_NUMBER',
+        timeFormat: 'smart_date',
+      },
+    } as unknown as BigNumberTotalChartProps);
+
+    expect(result.subtitle).toBe('Subtitle wins');
+    expect(result.subtitleFontSize).toBe(0.4);
+  });
+
   it('should compute bigNumber using parseMetricValue when data exists', () => {
     const chartProps = {
       width: 500,
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/transformProps.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/transformProps.ts
index e892ca33f7daf3cd514a1bf0c78795932b4041cd..fabac86ef0b4bfe61eaac6b0844b8cf13ebcd25e 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/transformProps.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/transformProps.ts
@@ -29,7 +29,7 @@ import {
   getValueFormatter,
 } from '@superset-ui/core';
 import { BigNumberTotalChartProps, BigNumberVizProps } from '../types';
-import { getDateFormatter, parseMetricValue } from '../utils';
+import { getDateFormatter, getOriginalLabel, parseMetricValue } from '../utils';
 import { Refs } from '../../types';
 
 export default function transformProps(
@@ -45,6 +45,7 @@ export default function transformProps(
     datasource: { currencyFormats = {}, columnFormats = {} },
   } = chartProps;
   const {
+    metricNameFontSize,
     headerFontSize,
     metric = 'value',
     subtitle,
@@ -58,11 +59,16 @@ export default function transformProps(
     subheaderFontSize,
   } = formData;
   const refs: Refs = {};
-  const { data = [], coltypes = [] } = queriesData[0];
+  const { data = [], coltypes = [] } = queriesData[0] || {};
   const granularity = extractTimegrain(rawFormData as QueryFormData);
+  const metrics = chartProps.datasource?.metrics || [];
+  const originalLabel = getOriginalLabel(metric, metrics);
   const metricName = getMetricLabel(metric);
-  const formattedSubtitle = subtitle || subheader || '';
-  const formattedSubtitleFontSize = subheaderFontSize || subtitleFontSize;
+  const showMetricName = chartProps.rawFormData?.show_metric_name ?? false;
+  const formattedSubtitle = subtitle?.trim() ? subtitle : subheader || '';
+  const formattedSubtitleFontSize = subtitle?.trim()
+    ? (subtitleFontSize ?? 1)
+    : (subheaderFontSize ?? 1);
   const bigNumber =
     data.length === 0 ? null : parseMetricValue(data[0][metricName]);
 
@@ -101,17 +107,20 @@ export default function transformProps(
   const colorThresholdFormatters =
     getColorFormatters(conditionalFormatting, data, false) ??
     defaultColorFormatters;
-
   return {
     width,
     height,
     bigNumber,
     headerFormatter,
     headerFontSize,
+    subheaderFontSize,
     subtitleFontSize: formattedSubtitleFontSize,
     subtitle: formattedSubtitle,
     onContextMenu,
     refs,
     colorThresholdFormatters,
+    metricName: originalLabel,
+    showMetricName,
+    metricNameFontSize,
   };
 }
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx
index 540efa49087332a6ebc10e24421279eb17a6145f..e422ec64028cfc8203fee82e9e5593092649f5f2 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-import { PureComponent, MouseEvent } from 'react';
+import { PureComponent, MouseEvent, createRef } from 'react';
 import {
   t,
   getNumberFormatter,
@@ -35,6 +35,7 @@ const defaultNumberFormatter = getNumberFormatter();
 
 const PROPORTION = {
   // text size: proportion of the chart container sans trendline
+  METRIC_NAME: 0.125,
   KICKER: 0.1,
   HEADER: 0.3,
   SUBHEADER: 0.125,
@@ -42,13 +43,20 @@ const PROPORTION = {
   TRENDLINE: 0.3,
 };
 
-class BigNumberVis extends PureComponent<BigNumberVizProps> {
+type BigNumberVisState = {
+  elementsRendered: boolean;
+  recalculateTrigger: boolean;
+};
+
+class BigNumberVis extends PureComponent<BigNumberVizProps, BigNumberVisState> {
   static defaultProps = {
     className: '',
     headerFormatter: defaultNumberFormatter,
     formatTime: getTimeFormatter(SMART_DATE_VERBOSE_ID),
     headerFontSize: PROPORTION.HEADER,
     kickerFontSize: PROPORTION.KICKER,
+    metricNameFontSize: PROPORTION.METRIC_NAME,
+    showMetricName: true,
     mainColor: BRAND_COLOR,
     showTimestamp: false,
     showTrendLine: false,
@@ -58,6 +66,40 @@ class BigNumberVis extends PureComponent<BigNumberVizProps> {
     timeRangeFixed: false,
   };
 
+  // Create refs for each component to measure heights
+  metricNameRef = createRef<HTMLDivElement>();
+
+  kickerRef = createRef<HTMLDivElement>();
+
+  headerRef = createRef<HTMLDivElement>();
+
+  subheaderRef = createRef<HTMLDivElement>();
+
+  subtitleRef = createRef<HTMLDivElement>();
+
+  state = {
+    elementsRendered: false,
+    recalculateTrigger: false,
+  };
+
+  componentDidMount() {
+    // Wait for elements to render and then calculate heights
+    setTimeout(() => {
+      this.setState({ elementsRendered: true });
+    }, 0);
+  }
+
+  componentDidUpdate(prevProps: BigNumberVizProps) {
+    if (
+      prevProps.height !== this.props.height ||
+      prevProps.showTrendLine !== this.props.showTrendLine
+    ) {
+      this.setState(prevState => ({
+        recalculateTrigger: !prevState.recalculateTrigger,
+      }));
+    }
+  }
+
   getClassName() {
     const { className, showTrendLine, bigNumberFallback } = this.props;
     const names = `superset-legacy-chart-big-number ${className} ${
@@ -92,6 +134,37 @@ class BigNumberVis extends PureComponent<BigNumberVizProps> {
     );
   }
 
+  renderMetricName(maxHeight: number) {
+    const { metricName, width, showMetricName } = this.props;
+    if (!showMetricName || !metricName) return null;
+
+    const text = metricName;
+
+    const container = this.createTemporaryContainer();
+    document.body.append(container);
+    const fontSize = computeMaxFontSize({
+      text,
+      maxWidth: width,
+      maxHeight,
+      className: 'metric-name',
+      container,
+    });
+    container.remove();
+
+    return (
+      <div
+        ref={this.metricNameRef}
+        className="metric-name"
+        style={{
+          fontSize,
+          height: 'auto',
+        }}
+      >
+        {text}
+      </div>
+    );
+  }
+
   renderKicker(maxHeight: number) {
     const { timestamp, showTimestamp, formatTime, width } = this.props;
     if (
@@ -118,6 +191,7 @@ class BigNumberVis extends PureComponent<BigNumberVizProps> {
 
     return (
       <div
+        ref={this.kickerRef}
         className="kicker"
         style={{
           fontSize,
@@ -173,6 +247,7 @@ class BigNumberVis extends PureComponent<BigNumberVizProps> {
 
     return (
       <div
+        ref={this.headerRef}
         className="header-line"
         style={{
           display: 'flex',
@@ -188,19 +263,21 @@ class BigNumberVis extends PureComponent<BigNumberVizProps> {
     );
   }
 
-  renderSubtitle(maxHeight: number) {
-    const { subtitle, width } = this.props;
+  rendermetricComparisonSummary(maxHeight: number) {
+    const { subheader, width } = this.props;
     let fontSize = 0;
 
-    if (subtitle) {
+    const text = subheader;
+
+    if (text) {
       const container = this.createTemporaryContainer();
       document.body.append(container);
       try {
         fontSize = computeMaxFontSize({
-          text: subtitle,
+          text,
           maxWidth: width * 0.9,
           maxHeight,
-          className: 'subtitle-line',
+          className: 'subheader-line',
           container,
         });
       } finally {
@@ -209,19 +286,67 @@ class BigNumberVis extends PureComponent<BigNumberVizProps> {
 
       return (
         <div
-          className="subtitle-line"
+          ref={this.subheaderRef}
+          className="subheader-line"
           style={{
             fontSize,
             height: maxHeight,
           }}
         >
-          {subtitle}
+          {text}
         </div>
       );
     }
     return null;
   }
 
+  renderSubtitle(maxHeight: number) {
+    const { subtitle, width, bigNumber, bigNumberFallback } = this.props;
+    let fontSize = 0;
+
+    const NO_DATA_OR_HASNT_LANDED = t(
+      'No data after filtering or data is NULL for the latest time record',
+    );
+    const NO_DATA = t(
+      'Try applying different filters or ensuring your datasource has data',
+    );
+
+    let text = subtitle;
+    if (bigNumber === null) {
+      text =
+        subtitle || (bigNumberFallback ? NO_DATA : NO_DATA_OR_HASNT_LANDED);
+    }
+
+    if (text) {
+      const container = this.createTemporaryContainer();
+      document.body.append(container);
+      fontSize = computeMaxFontSize({
+        text,
+        maxWidth: width * 0.9,
+        maxHeight,
+        className: 'subtitle-line',
+        container,
+      });
+      container.remove();
+
+      return (
+        <>
+          <div
+            ref={this.subtitleRef}
+            className="subtitle-line subheader-line"
+            style={{
+              fontSize: `${fontSize}px`,
+              height: maxHeight,
+            }}
+          >
+            {text}
+          </div>
+        </>
+      );
+    }
+    return null;
+  }
+
   renderTrendline(maxHeight: number) {
     const { width, trendLineData, echartOptions, refs } = this.props;
 
@@ -268,6 +393,35 @@ class BigNumberVis extends PureComponent<BigNumberVizProps> {
     );
   }
 
+  getTotalElementsHeight() {
+    const marginPerElement = 8; // theme.gridUnit = 4, so margin-bottom = 8px
+
+    const refs = [
+      this.metricNameRef,
+      this.kickerRef,
+      this.headerRef,
+      this.subheaderRef,
+      this.subtitleRef,
+    ];
+
+    // Filter refs to only those with a current element
+    const visibleRefs = refs.filter(ref => ref.current);
+
+    const totalHeight = visibleRefs.reduce((sum, ref, index) => {
+      const height = ref.current?.offsetHeight || 0;
+      const margin = index < visibleRefs.length - 1 ? marginPerElement : 0;
+      return sum + height + margin;
+    }, 0);
+
+    return totalHeight;
+  }
+
+  shouldApplyOverflow(availableHeight: number) {
+    if (!this.state.elementsRendered) return false;
+    const totalHeight = this.getTotalElementsHeight();
+    return totalHeight > availableHeight;
+  }
+
   render() {
     const {
       showTrendLine,
@@ -275,17 +429,39 @@ class BigNumberVis extends PureComponent<BigNumberVizProps> {
       kickerFontSize,
       headerFontSize,
       subtitleFontSize,
+      metricNameFontSize,
+      subheaderFontSize,
     } = this.props;
     const className = this.getClassName();
 
     if (showTrendLine) {
       const chartHeight = Math.floor(PROPORTION.TRENDLINE * height);
       const allTextHeight = height - chartHeight;
+      const shouldApplyOverflow = this.shouldApplyOverflow(allTextHeight);
 
       return (
         <div className={className}>
-          <div className="text-container" style={{ height: allTextHeight }}>
+          <div
+            className="text-container"
+            style={{
+              height: allTextHeight,
+              ...(shouldApplyOverflow
+                ? {
+                    display: 'block',
+                    boxSizing: 'border-box',
+                    overflowX: 'hidden',
+                    overflowY: 'auto',
+                    width: '100%',
+                  }
+                : {}),
+            }}
+          >
             {this.renderFallbackWarning()}
+            {this.renderMetricName(
+              Math.ceil(
+                (metricNameFontSize || 0) * (1 - PROPORTION.TRENDLINE) * height,
+              ),
+            )}
             {this.renderKicker(
               Math.ceil(
                 (kickerFontSize || 0) * (1 - PROPORTION.TRENDLINE) * height,
@@ -294,6 +470,11 @@ class BigNumberVis extends PureComponent<BigNumberVizProps> {
             {this.renderHeader(
               Math.ceil(headerFontSize * (1 - PROPORTION.TRENDLINE) * height),
             )}
+            {this.rendermetricComparisonSummary(
+              Math.ceil(
+                subheaderFontSize * (1 - PROPORTION.TRENDLINE) * height,
+              ),
+            )}
             {this.renderSubtitle(
               Math.ceil(subtitleFontSize * (1 - PROPORTION.TRENDLINE) * height),
             )}
@@ -302,13 +483,33 @@ class BigNumberVis extends PureComponent<BigNumberVizProps> {
         </div>
       );
     }
-
+    const shouldApplyOverflow = this.shouldApplyOverflow(height);
     return (
-      <div className={className} style={{ height }}>
-        {this.renderFallbackWarning()}
-        {this.renderKicker((kickerFontSize || 0) * height)}
-        {this.renderHeader(Math.ceil(headerFontSize * height))}
-        {this.renderSubtitle(Math.ceil(subtitleFontSize * height))}
+      <div
+        className={className}
+        style={{
+          height,
+          ...(shouldApplyOverflow
+            ? {
+                display: 'block',
+                boxSizing: 'border-box',
+                overflowX: 'hidden',
+                overflowY: 'auto',
+                width: '100%',
+              }
+            : {}),
+        }}
+      >
+        <div className="text-container">
+          {this.renderFallbackWarning()}
+          {this.renderMetricName((metricNameFontSize || 0) * height)}
+          {this.renderKicker((kickerFontSize || 0) * height)}
+          {this.renderHeader(Math.ceil(headerFontSize * height))}
+          {this.rendermetricComparisonSummary(
+            Math.ceil(subheaderFontSize * height),
+          )}
+          {this.renderSubtitle(Math.ceil(subtitleFontSize * height))}
+        </div>
       </div>
     );
   }
@@ -343,7 +544,12 @@ export default styled(BigNumberVis)`
 
     .kicker {
       line-height: 1em;
-      padding-bottom: 2em;
+      margin-bottom: ${theme.gridUnit * 2}px;
+    }
+
+    .metric-name {
+      line-height: 1em;
+      margin-bottom: ${theme.gridUnit * 2}px;
     }
 
     .header-line {
@@ -359,12 +565,12 @@ export default styled(BigNumberVis)`
 
     .subheader-line {
       line-height: 1em;
-      padding-bottom: 0.3em;
+      margin-bottom: ${theme.gridUnit * 2}px;
     }
 
     .subtitle-line {
       line-height: 1em;
-      padding-top: 0.3em;
+      margin-bottom: ${theme.gridUnit * 2}px;
     }
 
     &.is-fallback-value {
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx
index 7f04a2efebddfc8a2e293070f5274f1a08c49e31..153c76e4212614aa4a789239a86476fca43b2e36 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx
@@ -31,6 +31,8 @@ import {
   subheaderFontSize,
   subtitleFontSize,
   subtitleControl,
+  showMetricNameControl,
+  metricNameFontSizeWithVisibility,
 } from '../sharedControls';
 
 const config: ControlPanelConfig = {
@@ -141,6 +143,8 @@ const config: ControlPanelConfig = {
         [subheaderFontSize],
         [subtitleControl],
         [subtitleFontSize],
+        [showMetricNameControl],
+        [metricNameFontSizeWithVisibility],
         ['y_axis_format'],
         ['currency_format'],
         [
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts
index 4210d06fad9ec71c38b3dc69ad606bdb87787a8e..4379c88e6329df34ec367eb8cf8479ef14814e77 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts
@@ -37,6 +37,7 @@ const metadata = {
   name: t('Big Number with Trendline'),
   tags: [
     t('Advanced-Analytics'),
+    t('ECharts'),
     t('Line'),
     t('Percentages'),
     t('Featured'),
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/transformProps.test.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/transformProps.test.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c07a8b9477bdaa8543d54b2020899a8f9f161de7
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/transformProps.test.ts
@@ -0,0 +1,197 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { GenericDataType } from '@superset-ui/core';
+import transformProps from './transformProps';
+import { BigNumberWithTrendlineChartProps, BigNumberDatum } from '../types';
+
+jest.mock('@superset-ui/core', () => ({
+  GenericDataType: { Temporal: 2, String: 1 },
+  extractTimegrain: jest.fn(() => 'P1D'),
+  getMetricLabel: jest.fn(metric => metric),
+  getXAxisLabel: jest.fn(() => '__timestamp'),
+  getValueFormatter: jest.fn(() => ({
+    format: (v: number) => `$${v}`,
+  })),
+  getNumberFormatter: jest.fn(() => (v: number) => `${(v * 100).toFixed(1)}%`),
+  t: jest.fn(v => v),
+  tooltipHtml: jest.fn(() => '<div>tooltip</div>'),
+  NumberFormats: {
+    PERCENT_SIGNED_1_POINT: '.1%',
+  },
+}));
+
+jest.mock('../utils', () => ({
+  getDateFormatter: jest.fn(() => (v: any) => `${v}pm`),
+  parseMetricValue: jest.fn(val => Number(val)),
+  getOriginalLabel: jest.fn((metric, metrics) => metric),
+}));
+
+jest.mock('../../utils/tooltip', () => ({
+  getDefaultTooltip: jest.fn(() => ({})),
+}));
+
+describe('BigNumberWithTrendline transformProps', () => {
+  const onContextMenu = jest.fn();
+  const baseFormData = {
+    headerFontSize: 20,
+    metric: 'value',
+    subtitle: 'subtitle message',
+    subtitleFontSize: 14,
+    forceTimestampFormatting: false,
+    timeFormat: 'YYYY-MM-DD',
+    yAxisFormat: 'SMART_NUMBER',
+    compareLag: 1,
+    compareSuffix: 'WoW',
+    colorPicker: { r: 0, g: 0, b: 0 },
+    currencyFormat: { symbol: '$', symbolPosition: 'prefix' },
+  };
+
+  const baseDatasource = {
+    currencyFormats: { value: '$0,0.00' },
+    columnFormats: { value: '$0,0.00' },
+    metrics: [{ metric_name: 'value', d3format: '.2f' }],
+  };
+
+  const baseHooks = { onContextMenu };
+  const baseRawFormData = { dummy: 'raw' };
+
+  it('should return null bigNumber when no data is provided', () => {
+    const chartProps = {
+      width: 400,
+      height: 300,
+      queriesData: [{ data: [] as unknown as BigNumberDatum[], coltypes: [] }],
+      formData: baseFormData,
+      rawFormData: baseRawFormData,
+      hooks: baseHooks,
+      datasource: baseDatasource,
+      theme: { colors: { grayscale: { light5: '#eee' } } },
+    };
+
+    const result = transformProps(
+      chartProps as unknown as BigNumberWithTrendlineChartProps,
+    );
+    expect(result.bigNumber).toBeNull();
+    expect(result.subtitle).toBe('subtitle message');
+  });
+
+  it('should calculate subheader as percent change with suffix', () => {
+    const chartProps = {
+      width: 500,
+      height: 400,
+      queriesData: [
+        {
+          data: [
+            { __timestamp: 2, value: 110 },
+            { __timestamp: 1, value: 100 },
+          ] as unknown as BigNumberDatum[],
+          colnames: ['__timestamp', 'value'],
+          coltypes: ['TEMPORAL', 'NUMERIC'],
+        },
+      ],
+      formData: baseFormData,
+      rawFormData: baseRawFormData,
+      hooks: baseHooks,
+      datasource: baseDatasource,
+      theme: { colors: { grayscale: { light5: '#eee' } } },
+    };
+
+    const result = transformProps(
+      chartProps as unknown as BigNumberWithTrendlineChartProps,
+    );
+    expect(result.subheader).toBe('10.0% WoW');
+  });
+
+  it('should compute bigNumber from parseMetricValue', () => {
+    const chartProps = {
+      width: 600,
+      height: 450,
+      queriesData: [
+        {
+          data: [
+            { __timestamp: 2, value: '456' },
+          ] as unknown as BigNumberDatum[],
+          colnames: ['__timestamp', 'value'],
+          coltypes: [GenericDataType.Temporal, GenericDataType.String],
+        },
+      ],
+      formData: baseFormData,
+      rawFormData: baseRawFormData,
+      hooks: baseHooks,
+      datasource: baseDatasource,
+      theme: { colors: { grayscale: { light5: '#eee' } } },
+    };
+
+    const result = transformProps(
+      chartProps as unknown as BigNumberWithTrendlineChartProps,
+    );
+    expect(result.bigNumber).toEqual(456);
+  });
+
+  it('should use formatTime as headerFormatter for Temporal/String or forced', () => {
+    const formData = { ...baseFormData, forceTimestampFormatting: true };
+    const chartProps = {
+      width: 600,
+      height: 450,
+      queriesData: [
+        {
+          data: [
+            { __timestamp: 2, value: '123' },
+          ] as unknown as BigNumberDatum[],
+          colnames: ['__timestamp', 'value'],
+          coltypes: [0, GenericDataType.String],
+        },
+      ],
+      formData,
+      rawFormData: baseRawFormData,
+      hooks: baseHooks,
+      datasource: baseDatasource,
+      theme: { colors: { grayscale: { light5: '#eee' } } },
+    };
+
+    const result = transformProps(
+      chartProps as unknown as BigNumberWithTrendlineChartProps,
+    );
+    expect(result.headerFormatter(5)).toBe('5pm');
+  });
+
+  it('should use numberFormatter when not Temporal/String and not forced', () => {
+    const formData = { ...baseFormData, forceTimestampFormatting: false };
+    const chartProps = {
+      width: 600,
+      height: 450,
+      queriesData: [
+        {
+          data: [{ __timestamp: 2, value: 500 }] as unknown as BigNumberDatum[],
+          colnames: ['__timestamp', 'value'],
+          coltypes: [0, 0],
+        },
+      ],
+      formData,
+      rawFormData: baseRawFormData,
+      hooks: baseHooks,
+      datasource: baseDatasource,
+      theme: { colors: { grayscale: { light5: '#eee' } } },
+    };
+
+    const result = transformProps(
+      chartProps as unknown as BigNumberWithTrendlineChartProps,
+    );
+    expect(result.headerFormatter.format(500)).toBe('$500');
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/transformProps.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/transformProps.ts
index 3d933208fd72c9e54dfdbb0dcd5c9e444ac36ab7..79c5b992b34776336fb597db32f85df382902955 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/transformProps.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/transformProps.ts
@@ -35,7 +35,7 @@ import {
   BigNumberWithTrendlineChartProps,
   TimeSeriesDatum,
 } from '../types';
-import { getDateFormatter, parseMetricValue } from '../utils';
+import { getDateFormatter, parseMetricValue, getOriginalLabel } from '../utils';
 import { getDefaultTooltip } from '../../utils/tooltip';
 import { Refs } from '../../types';
 
@@ -62,6 +62,7 @@ export default function transformProps(
     compareLag: compareLag_,
     compareSuffix = '',
     timeFormat,
+    metricNameFontSize,
     headerFontSize,
     metric = 'value',
     showTimestamp,
@@ -96,6 +97,9 @@ export default function transformProps(
   const aggregatedData = hasAggregatedData ? aggregatedQueryData.data[0] : null;
   const refs: Refs = {};
   const metricName = getMetricLabel(metric);
+  const metrics = chartProps.datasource?.metrics || [];
+  const originalLabel = getOriginalLabel(metric, metrics);
+  const showMetricName = chartProps.rawFormData?.show_metric_name ?? false;
   const compareLag = Number(compareLag_) || 0;
   let formattedSubheader = subheader;
 
@@ -303,6 +307,9 @@ export default function transformProps(
     headerFormatter,
     formatTime,
     formData,
+    metricName: originalLabel,
+    showMetricName,
+    metricNameFontSize,
     headerFontSize,
     subtitleFontSize,
     subtitle,
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts
index 9de4065b67bdc942d03657991f9599a90aad4911..9610497382d74e4b3bbfba518f28a04dc780cbb5 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts
@@ -21,116 +21,95 @@
 import { t } from '@superset-ui/core';
 import { CustomControlItem } from '@superset-ui/chart-controls';
 
-export const headerFontSize: CustomControlItem = {
-  name: 'header_font_size',
-  config: {
-    type: 'SelectControl',
-    label: t('Big Number Font Size'),
-    renderTrigger: true,
-    clearable: false,
-    default: 0.4,
-    // Values represent the percentage of space a header should take
-    options: [
-      {
-        label: t('Tiny'),
-        value: 0.2,
-      },
-      {
-        label: t('Small'),
-        value: 0.3,
-      },
-      {
-        label: t('Normal'),
-        value: 0.4,
-      },
-      {
-        label: t('Large'),
-        value: 0.5,
-      },
-      {
-        label: t('Huge'),
-        value: 0.6,
-      },
-    ],
-  },
-};
+const FONT_SIZE_OPTIONS_SMALL = [
+  { label: t('Tiny'), value: 0.125 },
+  { label: t('Small'), value: 0.15 },
+  { label: t('Normal'), value: 0.2 },
+  { label: t('Large'), value: 0.3 },
+  { label: t('Huge'), value: 0.4 },
+];
+
+const FONT_SIZE_OPTIONS_LARGE = [
+  { label: t('Tiny'), value: 0.2 },
+  { label: t('Small'), value: 0.3 },
+  { label: t('Normal'), value: 0.4 },
+  { label: t('Large'), value: 0.5 },
+  { label: t('Huge'), value: 0.6 },
+];
+
+function makeFontSizeControl(
+  name: string,
+  label: string,
+  defaultValue: number,
+  options: { label: string; value: number }[],
+): CustomControlItem {
+  return {
+    name,
+    config: {
+      type: 'SelectControl',
+      label: t(label),
+      renderTrigger: true,
+      clearable: false,
+      default: defaultValue,
+      options,
+    },
+  };
+}
 
-export const subtitleFontSize: CustomControlItem = {
-  name: 'subtitle_font_size',
+export const headerFontSize = makeFontSizeControl(
+  'header_font_size',
+  'Big Number Font Size',
+  0.4,
+  FONT_SIZE_OPTIONS_LARGE,
+);
+
+export const subtitleFontSize = makeFontSizeControl(
+  'subtitle_font_size',
+  'Subtitle Font Size',
+  0.15,
+  FONT_SIZE_OPTIONS_SMALL,
+);
+
+export const subheaderFontSize = makeFontSizeControl(
+  'subheader_font_size',
+  'Subheader Font Size',
+  0.15,
+  FONT_SIZE_OPTIONS_SMALL,
+);
+
+export const metricNameFontSize = makeFontSizeControl(
+  'metric_name_font_size',
+  'Metric Name Font Size',
+  0.15,
+  FONT_SIZE_OPTIONS_SMALL,
+);
+
+export const subtitleControl: CustomControlItem = {
+  name: 'subtitle',
   config: {
-    type: 'SelectControl',
-    label: t('Subtitle Font Size'),
+    type: 'TextControl',
+    label: t('Subtitle'),
     renderTrigger: true,
-    clearable: false,
-    default: 0.15,
-    // Values represent the percentage of space a subtitle should take
-    options: [
-      {
-        label: t('Tiny'),
-        value: 0.125,
-      },
-      {
-        label: t('Small'),
-        value: 0.15,
-      },
-      {
-        label: t('Normal'),
-        value: 0.2,
-      },
-      {
-        label: t('Large'),
-        value: 0.3,
-      },
-      {
-        label: t('Huge'),
-        value: 0.4,
-      },
-    ],
+    description: t('Description text that shows up below your Big Number'),
   },
 };
-export const subheaderFontSize: CustomControlItem = {
-  name: 'subheader_font_size',
+
+export const showMetricNameControl: CustomControlItem = {
+  name: 'show_metric_name',
   config: {
-    type: 'SelectControl',
-    label: t('Subheader Font Size'),
+    type: 'CheckboxControl',
+    label: t('Show Metric Name'),
     renderTrigger: true,
-    clearable: false,
-    default: 0.15,
-    // Values represent the percentage of space a subheader should take
-    options: [
-      {
-        label: t('Tiny'),
-        value: 0.125,
-      },
-      {
-        label: t('Small'),
-        value: 0.15,
-      },
-      {
-        label: t('Normal'),
-        value: 0.2,
-      },
-      {
-        label: t('Large'),
-        value: 0.3,
-      },
-      {
-        label: t('Huge'),
-        value: 0.4,
-      },
-    ],
+    default: false,
+    description: t('Whether to display the metric name'),
   },
 };
 
-export const subtitleControl: CustomControlItem = {
-  name: 'subtitle',
+export const metricNameFontSizeWithVisibility: CustomControlItem = {
+  ...metricNameFontSize,
   config: {
-    type: 'TextControl',
-    label: t('Subtitle'),
-    renderTrigger: true,
-    description: t('Description text that shows up below your Big Number'),
-    mapStateToProps: state => ({
-      value: state.form_data.subheader || state.form_data.subtitle,
-    }),
+    ...metricNameFontSize.config,
+    visibility: ({ controls }) => controls?.show_metric_name?.value === true,
+    resetOnHide: false,
   },
 };
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/types.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/types.ts
index 8b5a5abddb2e7a0a3c085ca400ad7b14878cbfaf..d2bec7d68e69905e0b58f6259e385cc87eabf931 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/types.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/types.ts
@@ -75,9 +75,15 @@ export type BigNumberVizProps = {
   bigNumberFallback?: TimeSeriesDatum;
   headerFormatter: ValueFormatter | TimeFormatter;
   formatTime?: TimeFormatter;
+  metricName?: string;
+  friendlyMetricName?: string;
+  metricNameFontSize?: number;
+  showMetricName?: boolean;
   headerFontSize: number;
   kickerFontSize?: number;
+  subheader?: string;
   subtitle: string;
+  subheaderFontSize: number;
   subtitleFontSize: number;
   showTimestamp?: boolean;
   showTrendLine?: boolean;
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/utils.ts b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/utils.ts
index a25ec74321e3ee3ed5b580ca93d650c9f15e1302..ecad4d9ed96a066da58357d19859d4a1f3587543 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/utils.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/utils.ts
@@ -22,6 +22,10 @@ import utc from 'dayjs/plugin/utc';
 import {
   getTimeFormatter,
   getTimeFormatterForGranularity,
+  isAdhocMetricSimple,
+  isSavedMetric,
+  Metric,
+  QueryFormMetric,
   SMART_DATE_ID,
   TimeGranularity,
 } from '@superset-ui/core';
@@ -47,3 +51,43 @@ export const getDateFormatter = (
   timeFormat === SMART_DATE_ID
     ? getTimeFormatterForGranularity(granularity)
     : getTimeFormatter(timeFormat ?? fallbackFormat);
+
+export function getOriginalLabel(
+  metric: QueryFormMetric,
+  metrics: Metric[] = [],
+): string {
+  const metricLabel = typeof metric === 'string' ? metric : metric.label || '';
+
+  if (isSavedMetric(metric)) {
+    const metricEntry = metrics.find(m => m.metric_name === metric);
+    return (
+      metricEntry?.verbose_name ||
+      metricEntry?.metric_name ||
+      metric ||
+      'Unknown Metric'
+    );
+  }
+
+  if (isAdhocMetricSimple(metric)) {
+    const column = metric.column || {};
+    const columnName = column.column_name || 'unknown_column';
+    const verboseName = column.verbose_name || columnName;
+    const aggregate = metric.aggregate || 'UNKNOWN';
+    return metric.hasCustomLabel && metric.label
+      ? metric.label
+      : `${aggregate}(${verboseName})`;
+  }
+
+  if (
+    typeof metric === 'object' &&
+    'expressionType' in metric &&
+    metric.expressionType === 'SQL' &&
+    'sqlExpression' in metric
+  ) {
+    return metric.hasCustomLabel && metric.label
+      ? metric.label
+      : metricLabel || 'Custom Metric';
+  }
+
+  return metricLabel || 'Unknown Metric';
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/transformProps.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/transformProps.ts
index fe508f53af18cb00479f2bff0b9cbaff368d6172..3167834a881d2d8a7643c25eb66d47a7411c5548 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/transformProps.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/transformProps.ts
@@ -150,7 +150,7 @@ export default function transformProps(
       data: data.map(row =>
         colnames.map(col => {
           const value = row[col];
-          if (!value) {
+          if (value === null || value === undefined) {
             return NULL_STRING;
           }
           if (typeof value === 'boolean' || typeof value === 'bigint') {
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/transformProps.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/transformProps.ts
index 388e79ae94eef8081bd9ef0272f2439fce037844..28d2a93e6d110544c47c046ee622b7f103d380f4 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/transformProps.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Histogram/transformProps.ts
@@ -84,7 +84,7 @@ export default function transformProps(
     .filter(key => !groupbySet.has(key))
     .map(key => {
       const array = key.split(' - ').map(value => parseFloat(value));
-      return `${xAxisFormatter(array[0])} '-' ${xAxisFormatter(array[1])}`;
+      return `${xAxisFormatter(array[0])} - ${xAxisFormatter(array[1])}`;
     });
   const barSeries: BarSeriesOption[] = data.map(datum => {
     const seriesName =
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/buildQuery.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/buildQuery.ts
index 8b47fb5e725cca90c73f8430724d1c02f97ecc3a..6985eb92868cc3b401f7467aaf704a91d011cf0f 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/buildQuery.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/buildQuery.ts
@@ -16,14 +16,30 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-import { buildQueryContext, QueryFormData } from '@superset-ui/core';
+import {
+  buildQueryContext,
+  getMetricLabel,
+  QueryFormData,
+} from '@superset-ui/core';
+import { getContributionLabel } from './utils';
 
 export default function buildQuery(formData: QueryFormData) {
   const { metric, sort_by_metric } = formData;
+  const metricLabel = getMetricLabel(metric);
+
   return buildQueryContext(formData, baseQueryObject => [
     {
       ...baseQueryObject,
       ...(sort_by_metric && { orderby: [[metric, false]] }),
+      post_processing: [
+        {
+          operation: 'contribution',
+          options: {
+            columns: [metricLabel],
+            rename_columns: [getContributionLabel(metricLabel)],
+          },
+        },
+      ],
     },
   ]);
 }
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/constants.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/constants.ts
new file mode 100644
index 0000000000000000000000000000000000000000..4724bf1f2676feaf9ae3679d0d05b0ff7e6eedf6
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/constants.ts
@@ -0,0 +1,19 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+export const CONTRIBUTION_SUFFIX = '__contribution' as const;
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx
index 583444508d6ad5dde60328e783c892cb95902f54..4f93c0ed2cbf5af41c13ba8e1f135f17b76211f1 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx
@@ -84,6 +84,23 @@ const config: ControlPanelConfig = {
             },
           },
         ],
+        [
+          {
+            name: 'threshold_for_other',
+            config: {
+              type: 'NumberControl',
+              label: t('Threshold for Other'),
+              min: 0,
+              step: 0.5,
+              max: 100,
+              default: 0,
+              renderTrigger: true,
+              description: t(
+                'Values less than this percentage will be grouped into the Other category.',
+              ),
+            },
+          },
+        ],
         [
           {
             name: 'roseType',
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts
index b02f86b2327462c4ba21f655bedbea7c8d715cf3..c0ec8f924278ecc71f18a1c27d16db2815f4bff0 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts
@@ -27,6 +27,7 @@ import {
   ValueFormatter,
   getValueFormatter,
   tooltipHtml,
+  DataRecord,
 } from '@superset-ui/core';
 import type { CallbackDataParams } from 'echarts/types/src/util/types';
 import type { EChartsCoreOption } from 'echarts/core';
@@ -36,6 +37,7 @@ import {
   EchartsPieChartProps,
   EchartsPieFormData,
   EchartsPieLabelType,
+  PieChartDataItem,
   PieChartTransformedProps,
 } from './types';
 import { DEFAULT_LEGEND_FORM_DATA, OpacityEnum } from '../constants';
@@ -50,6 +52,7 @@ import { defaultGrid } from '../defaults';
 import { convertInteger } from '../utils/convertInteger';
 import { getDefaultTooltip } from '../utils/tooltip';
 import { Refs } from '../types';
+import { getContributionLabel } from './utils';
 
 const percentFormatter = getNumberFormatter(NumberFormats.PERCENT_2_POINT);
 
@@ -133,7 +136,7 @@ export default function transformProps(
     datasource,
   } = chartProps;
   const { columnFormats = {}, currencyFormats = {} } = datasource;
-  const { data = [] } = queriesData[0];
+  const { data: rawData = [] } = queriesData[0];
   const coltypeMapping = getColtypesMapping(queriesData[0]);
 
   const {
@@ -159,6 +162,7 @@ export default function transformProps(
     sliceId,
     showTotal,
     roseType,
+    thresholdForOther,
   }: EchartsPieFormData = {
     ...DEFAULT_LEGEND_FORM_DATA,
     ...DEFAULT_PIE_FORM_DATA,
@@ -166,17 +170,68 @@ export default function transformProps(
   };
   const refs: Refs = {};
   const metricLabel = getMetricLabel(metric);
+  const contributionLabel = getContributionLabel(metricLabel);
   const groupbyLabels = groupby.map(getColumnLabel);
   const minShowLabelAngle = (showLabelsThreshold || 0) * 3.6;
 
-  const keys = data.map(datum =>
-    extractGroupbyLabel({
-      datum,
-      groupby: groupbyLabels,
-      coltypeMapping,
-      timeFormatter: getTimeFormatter(dateFormat),
-    }),
+  const numberFormatter = getValueFormatter(
+    metric,
+    currencyFormats,
+    columnFormats,
+    numberFormat,
+    currencyFormat,
   );
+
+  let data = rawData;
+  const otherRows: DataRecord[] = [];
+  const otherTooltipData: string[][] = [];
+  let otherDatum: PieChartDataItem | null = null;
+  let otherSum = 0;
+  if (thresholdForOther) {
+    let contributionSum = 0;
+    data = data.filter(datum => {
+      const contribution = datum[contributionLabel] as number;
+      if (!contribution || contribution * 100 >= thresholdForOther) {
+        return true;
+      }
+      otherSum += datum[metricLabel] as number;
+      contributionSum += contribution;
+      otherRows.push(datum);
+      otherTooltipData.push([
+        extractGroupbyLabel({
+          datum,
+          groupby: groupbyLabels,
+          coltypeMapping,
+          timeFormatter: getTimeFormatter(dateFormat),
+        }),
+        numberFormatter(datum[metricLabel] as number),
+        percentFormatter(contribution),
+      ]);
+      return false;
+    });
+    const otherName = t('Other');
+    otherTooltipData.push([
+      t('Total'),
+      numberFormatter(otherSum),
+      percentFormatter(contributionSum),
+    ]);
+    if (otherSum) {
+      otherDatum = {
+        name: otherName,
+        value: otherSum,
+        itemStyle: {
+          color: theme.colors.grayscale.dark1,
+          opacity:
+            filterState.selectedValues &&
+            !filterState.selectedValues.includes(otherName)
+              ? OpacityEnum.SemiTransparent
+              : OpacityEnum.NonTransparent,
+        },
+        isOther: true,
+      };
+    }
+  }
+
   const labelMap = data.reduce((acc: Record<string, string[]>, datum) => {
     const label = extractGroupbyLabel({
       datum,
@@ -192,13 +247,6 @@ export default function transformProps(
 
   const { setDataMask = () => {}, onContextMenu } = hooks;
   const colorFn = CategoricalColorNamespace.getScale(colorScheme as string);
-  const numberFormatter = getValueFormatter(
-    metric,
-    currencyFormats,
-    columnFormats,
-    numberFormat,
-    currencyFormat,
-  );
 
   let totalValue = 0;
 
@@ -229,6 +277,10 @@ export default function transformProps(
       },
     };
   });
+  if (otherDatum) {
+    transformedData.push(otherDatum);
+    totalValue += otherSum;
+  }
 
   const selectedValues = (filterState.selectedValues || []).reduce(
     (acc: Record<string, number>, selectedValue: string) => {
@@ -372,6 +424,9 @@ export default function transformProps(
           numberFormatter,
           sanitizeName: true,
         });
+        if (params?.data?.isOther) {
+          return tooltipHtml(otherTooltipData, name);
+        }
         return tooltipHtml(
           [[metricLabel, formattedValue, formattedPercent]],
           name,
@@ -380,7 +435,7 @@ export default function transformProps(
     },
     legend: {
       ...getLegendProps(legendType, legendOrientation, showLegend, theme),
-      data: keys,
+      data: transformedData.map(datum => datum.name),
     },
     graphic: showTotal
       ? {
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/types.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/types.ts
index 06ff2bc41af73d9d388430883bde65ceae3462e2..c684dcf45793ed0e9a9aeb7727f3dfa5405bfce0 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/types.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/types.ts
@@ -47,6 +47,7 @@ export type EchartsPieFormData = QueryFormData &
     dateFormat: string;
     showLabelsThreshold: number;
     roseType: 'radius' | 'area' | null;
+    thresholdForOther: number;
   };
 
 export enum EchartsPieLabelType {
@@ -82,9 +83,20 @@ export const DEFAULT_FORM_DATA: EchartsPieFormData = {
   showLabelsThreshold: 5,
   dateFormat: 'smart_date',
   roseType: null,
+  thresholdForOther: 0,
 };
 
 export type PieChartTransformedProps =
   BaseTransformedProps<EchartsPieFormData> &
     ContextMenuTransformedProps &
     CrossFilterTransformedProps;
+
+export interface PieChartDataItem {
+  name: string;
+  value: number;
+  itemStyle: {
+    color: string;
+    opacity: number;
+  };
+  isOther?: boolean;
+}
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Pie/utils.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/utils.ts
new file mode 100644
index 0000000000000000000000000000000000000000..36b67e43201c9e1c09be4ba6cc78b0cb1b26a3c1
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Pie/utils.ts
@@ -0,0 +1,22 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { CONTRIBUTION_SUFFIX } from './constants';
+
+export const getContributionLabel = (metricLabel: string) =>
+  `${metricLabel}${CONTRIBUTION_SUFFIX}`;
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Sankey/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Sankey/index.ts
index 8ff658dd0ac2c43650bf3f15a75fb33d3c79d504..26fad0e2947b331f71007515ba1de6d61aa2f74a 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/Sankey/index.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Sankey/index.ts
@@ -57,7 +57,7 @@ export default class EchartsSankeyChartPlugin extends ChartPlugin<
         ),
         exampleGallery: [{ url: example1 }, { url: example2 }],
         name: t('Sankey Chart'),
-        tags: [t('Directional'), t('Distribution'), t('Flow')],
+        tags: [t('Directional'), t('ECharts'), t('Distribution'), t('Flow')],
         thumbnail,
       }),
       transformProps,
diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts
index 781aedfad9740a276a719cd294b6826ace375711..37b16796cb3b2def9e13c06b7008c92bb42a2bf9 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts
@@ -58,6 +58,7 @@ export default class EchartsTimeseriesChartPlugin extends EchartsChartPlugin<
         name: t('Generic Chart'),
         tags: [
           t('Advanced-Analytics'),
+          t('ECharts'),
           t('Line'),
           t('Predictive'),
           t('Time'),
diff --git a/superset-frontend/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts b/superset-frontend/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts
index 34f8e5fd5636c55e19a4b937b4ef3e4d9c91e05d..36fefc1f49c348ded3602da8275285e62296b985 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts
+++ b/superset-frontend/plugins/plugin-chart-echarts/test/Pie/transformProps.test.ts
@@ -28,7 +28,7 @@ import type {
   CallbackDataParams,
 } from 'echarts/types/src/util/types';
 import transformProps, { parseParams } from '../../src/Pie/transformProps';
-import { EchartsPieChartProps } from '../../src/Pie/types';
+import { EchartsPieChartProps, PieChartDataItem } from '../../src/Pie/types';
 
 describe('Pie transformProps', () => {
   const formData: SqlaFormData = {
@@ -46,8 +46,13 @@ describe('Pie transformProps', () => {
     queriesData: [
       {
         data: [
-          { foo: 'Sylvester', bar: 1, sum__num: 10 },
-          { foo: 'Arnold', bar: 2, sum__num: 2.5 },
+          {
+            foo: 'Sylvester',
+            bar: 1,
+            sum__num: 10,
+            sum__num__contribution: 0.8,
+          },
+          { foo: 'Arnold', bar: 2, sum__num: 2.5, sum__num__contribution: 0.2 },
         ],
       },
     ],
@@ -215,3 +220,77 @@ describe('Pie label string template', () => {
     ).toEqual('Tablet:123456\n55.5');
   });
 });
+
+describe('Other category', () => {
+  const defaultFormData: SqlaFormData = {
+    colorScheme: 'bnbColors',
+    datasource: '3__table',
+    granularity_sqla: 'ds',
+    metric: 'metric',
+    groupby: ['foo', 'bar'],
+    viz_type: 'my_viz',
+  };
+
+  const getChartProps = (formData: Partial<SqlaFormData>) =>
+    new ChartProps({
+      formData: {
+        ...defaultFormData,
+        ...formData,
+      },
+      width: 800,
+      height: 600,
+      queriesData: [
+        {
+          data: [
+            {
+              foo: 'foo 1',
+              bar: 'bar 1',
+              metric: 1,
+              metric__contribution: 1 / 15, // 6.7%
+            },
+            {
+              foo: 'foo 2',
+              bar: 'bar 2',
+              metric: 2,
+              metric__contribution: 2 / 15, // 13.3%
+            },
+            {
+              foo: 'foo 3',
+              bar: 'bar 3',
+              metric: 3,
+              metric__contribution: 3 / 15, // 20%
+            },
+            {
+              foo: 'foo 4',
+              bar: 'bar 4',
+              metric: 4,
+              metric__contribution: 4 / 15, // 26.7%
+            },
+            {
+              foo: 'foo 5',
+              bar: 'bar 5',
+              metric: 5,
+              metric__contribution: 5 / 15, // 33.3%
+            },
+          ],
+        },
+      ],
+      theme: supersetTheme,
+    });
+
+  it('generates Other category', () => {
+    const chartProps = getChartProps({
+      threshold_for_other: 20,
+    });
+    const transformed = transformProps(chartProps as EchartsPieChartProps);
+    const series = transformed.echartOptions.series as PieSeriesOption[];
+    const data = series[0].data as PieChartDataItem[];
+    expect(data).toHaveLength(4);
+    expect(data[0].value).toBe(3);
+    expect(data[1].value).toBe(4);
+    expect(data[2].value).toBe(5);
+    expect(data[3].value).toBe(1 + 2);
+    expect(data[3].name).toBe('Other');
+    expect(data[3].isOther).toBe(true);
+  });
+});
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx
index 21ce6541cf2fdb765ed7eae773d920053af37208..3aacefb2f300cf02ce768db067b6c7ca4d781238 100644
--- a/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/DataTable.tsx
@@ -16,6 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
+/* eslint-disable import/no-extraneous-dependencies */
 import {
   useCallback,
   useRef,
@@ -24,6 +25,7 @@ import {
   MutableRefObject,
   CSSProperties,
   DragEvent,
+  useEffect,
 } from 'react';
 
 import {
@@ -39,8 +41,9 @@ import {
   Row,
 } from 'react-table';
 import { matchSorter, rankings } from 'match-sorter';
-import { typedMemo, usePrevious } from '@superset-ui/core';
+import { styled, typedMemo, usePrevious } from '@superset-ui/core';
 import { isEqual } from 'lodash';
+import { Space } from 'antd';
 import GlobalFilter, { GlobalFilterProps } from './components/GlobalFilter';
 import SelectPageSize, {
   SelectPageSizeProps,
@@ -50,6 +53,8 @@ import SimplePagination from './components/Pagination';
 import useSticky from './hooks/useSticky';
 import { PAGE_SIZE_OPTIONS } from '../consts';
 import { sortAlphanumericCaseInsensitive } from './utils/sortAlphanumericCaseInsensitive';
+import { SearchOption, SortByItem } from '../types';
+import SearchSelectDropdown from './components/SearchSelectDropdown';
 
 export interface DataTableProps<D extends object> extends TableOptions<D> {
   tableClassName?: string;
@@ -62,7 +67,12 @@ export interface DataTableProps<D extends object> extends TableOptions<D> {
   height?: string | number;
   serverPagination?: boolean;
   onServerPaginationChange: (pageNumber: number, pageSize: number) => void;
-  serverPaginationData: { pageSize?: number; currentPage?: number };
+  serverPaginationData: {
+    pageSize?: number;
+    currentPage?: number;
+    sortBy?: SortByItem[];
+    searchColumn?: string;
+  };
   pageSize?: number;
   noResults?: string | ((filterString: string) => ReactNode);
   sticky?: boolean;
@@ -71,6 +81,14 @@ export interface DataTableProps<D extends object> extends TableOptions<D> {
   onColumnOrderChange: () => void;
   renderGroupingHeaders?: () => JSX.Element;
   renderTimeComparisonDropdown?: () => JSX.Element;
+  handleSortByChange: (sortBy: SortByItem[]) => void;
+  sortByFromParent: SortByItem[];
+  manualSearch?: boolean;
+  onSearchChange?: (searchText: string) => void;
+  initialSearchText?: string;
+  searchInputId?: string;
+  onSearchColChange: (searchCol: string) => void;
+  searchOptions: SearchOption[];
 }
 
 export interface RenderHTMLCellProps extends HTMLProps<HTMLTableCellElement> {
@@ -81,6 +99,20 @@ const sortTypes = {
   alphanumeric: sortAlphanumericCaseInsensitive,
 };
 
+const StyledSpace = styled(Space)`
+  display: flex;
+  justify-content: flex-end;
+
+  .search-select-container {
+    display: flex;
+  }
+
+  .search-by-label {
+    align-self: center;
+    margin-right: 4px;
+  }
+`;
+
 // Be sure to pass our updateMyData and the skipReset option
 export default typedMemo(function DataTable<D extends object>({
   tableClassName,
@@ -105,6 +137,14 @@ export default typedMemo(function DataTable<D extends object>({
   onColumnOrderChange,
   renderGroupingHeaders,
   renderTimeComparisonDropdown,
+  handleSortByChange,
+  sortByFromParent = [],
+  manualSearch = false,
+  onSearchChange,
+  initialSearchText,
+  searchInputId,
+  onSearchColChange,
+  searchOptions,
   ...moreUseTableOptions
 }: DataTableProps<D>): JSX.Element {
   const tableHooks: PluginHook<D>[] = [
@@ -115,6 +155,7 @@ export default typedMemo(function DataTable<D extends object>({
     doSticky ? useSticky : [],
     hooks || [],
   ].flat();
+
   const columnNames = Object.keys(data?.[0] || {});
   const previousColumnNames = usePrevious(columnNames);
   const resultsSize = serverPagination ? rowCount : data.length;
@@ -127,7 +168,8 @@ export default typedMemo(function DataTable<D extends object>({
     ...initialState_,
     // zero length means all pages, the `usePagination` plugin does not
     // understand pageSize = 0
-    sortBy: sortByRef.current,
+    // sortBy: sortByRef.current,
+    sortBy: serverPagination ? sortByFromParent : sortByRef.current,
     pageSize: initialPageSize > 0 ? initialPageSize : resultsSize || 10,
   };
   const defaultWrapperRef = useRef<HTMLDivElement>(null);
@@ -188,7 +230,13 @@ export default typedMemo(function DataTable<D extends object>({
     wrapStickyTable,
     setColumnOrder,
     allColumns,
-    state: { pageIndex, pageSize, globalFilter: filterValue, sticky = {} },
+    state: {
+      pageIndex,
+      pageSize,
+      globalFilter: filterValue,
+      sticky = {},
+      sortBy,
+    },
   } = useTable<D>(
     {
       columns,
@@ -198,10 +246,46 @@ export default typedMemo(function DataTable<D extends object>({
       globalFilter: defaultGlobalFilter,
       sortTypes,
       autoResetSortBy: !isEqual(columnNames, previousColumnNames),
+      manualSortBy: !!serverPagination,
       ...moreUseTableOptions,
     },
     ...tableHooks,
   );
+
+  const handleSearchChange = useCallback(
+    (query: string) => {
+      if (manualSearch && onSearchChange) {
+        onSearchChange(query);
+      } else {
+        setGlobalFilter(query);
+      }
+    },
+    [manualSearch, onSearchChange, setGlobalFilter],
+  );
+
+  // updating the sort by to the own State of table viz
+  useEffect(() => {
+    const serverSortBy = serverPaginationData?.sortBy || [];
+
+    if (serverPagination && !isEqual(sortBy, serverSortBy)) {
+      if (Array.isArray(sortBy) && sortBy.length > 0) {
+        const [sortByItem] = sortBy;
+        const matchingColumn = columns.find(col => col?.id === sortByItem?.id);
+
+        if (matchingColumn && 'columnKey' in matchingColumn) {
+          const sortByWithColumnKey: SortByItem = {
+            ...sortByItem,
+            key: (matchingColumn as { columnKey: string }).columnKey,
+          };
+
+          handleSortByChange([sortByWithColumnKey]);
+        }
+      } else {
+        handleSortByChange([]);
+      }
+    }
+  }, [sortBy]);
+
   // make setPageSize accept 0
   const setPageSize = (size: number) => {
     if (serverPagination) {
@@ -355,6 +439,7 @@ export default typedMemo(function DataTable<D extends object>({
     resultOnPageChange = (pageNumber: number) =>
       onServerPaginationChange(pageNumber, serverPageSize);
   }
+
   return (
     <div
       ref={wrapperRef}
@@ -381,16 +466,31 @@ export default typedMemo(function DataTable<D extends object>({
               ) : null}
             </div>
             {searchInput ? (
-              <div className="col-sm-6">
+              <StyledSpace className="col-sm-6">
+                {serverPagination && (
+                  <div className="search-select-container">
+                    <span className="search-by-label">Search by: </span>
+                    <SearchSelectDropdown
+                      searchOptions={searchOptions}
+                      value={serverPaginationData?.searchColumn || ''}
+                      onChange={onSearchColChange}
+                    />
+                  </div>
+                )}
                 <GlobalFilter<D>
                   searchInput={
                     typeof searchInput === 'boolean' ? undefined : searchInput
                   }
                   preGlobalFilteredRows={preGlobalFilteredRows}
-                  setGlobalFilter={setGlobalFilter}
-                  filterValue={filterValue}
+                  setGlobalFilter={
+                    manualSearch ? handleSearchChange : setGlobalFilter
+                  }
+                  filterValue={manualSearch ? initialSearchText : filterValue}
+                  id={searchInputId}
+                  serverPagination={!!serverPagination}
+                  rowCount={rowCount}
                 />
-              </div>
+              </StyledSpace>
             ) : null}
             {renderTimeComparisonDropdown ? (
               <div
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/GlobalFilter.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/GlobalFilter.tsx
index 89e18140f22eddb6ffc4727ec5e515455fa4fa0c..75d6594cbcd446c52b6aa52377454e4c6d7b20f2 100644
--- a/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/GlobalFilter.tsx
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/GlobalFilter.tsx
@@ -16,7 +16,13 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-import { memo, ComponentType, ChangeEventHandler } from 'react';
+import {
+  memo,
+  ComponentType,
+  ChangeEventHandler,
+  useRef,
+  useEffect,
+} from 'react';
 import { Row, FilterValue } from 'react-table';
 import useAsyncState from '../utils/useAsyncState';
 
@@ -24,8 +30,12 @@ export interface SearchInputProps {
   count: number;
   value: string;
   onChange: ChangeEventHandler<HTMLInputElement>;
+  onBlur?: () => void;
+  inputRef?: React.RefObject<HTMLInputElement>;
 }
 
+const isSearchFocused = new Map();
+
 export interface GlobalFilterProps<D extends object> {
   preGlobalFilteredRows: Row<D>[];
   // filter value cannot be `undefined` otherwise React will report component
@@ -33,17 +43,28 @@ export interface GlobalFilterProps<D extends object> {
   filterValue: string;
   setGlobalFilter: (filterValue: FilterValue) => void;
   searchInput?: ComponentType<SearchInputProps>;
+  id?: string;
+  serverPagination: boolean;
+  rowCount: number;
 }
 
-function DefaultSearchInput({ count, value, onChange }: SearchInputProps) {
+function DefaultSearchInput({
+  count,
+  value,
+  onChange,
+  onBlur,
+  inputRef,
+}: SearchInputProps) {
   return (
     <span className="dt-global-filter">
       Search{' '}
       <input
+        ref={inputRef}
         className="form-control input-sm"
         placeholder={`${count} records...`}
         value={value}
         onChange={onChange}
+        onBlur={onBlur}
       />
     </span>
   );
@@ -56,8 +77,13 @@ export default (memo as <T>(fn: T) => T)(function GlobalFilter<
   filterValue = '',
   searchInput,
   setGlobalFilter,
+  id = '',
+  serverPagination,
+  rowCount,
 }: GlobalFilterProps<D>) {
-  const count = preGlobalFilteredRows.length;
+  const count = serverPagination ? rowCount : preGlobalFilteredRows.length;
+  const inputRef = useRef<HTMLInputElement>(null);
+
   const [value, setValue] = useAsyncState(
     filterValue,
     (newValue: string) => {
@@ -66,17 +92,37 @@ export default (memo as <T>(fn: T) => T)(function GlobalFilter<
     200,
   );
 
+  // Preserve focus during server-side filtering to maintain a better user experience
+  useEffect(() => {
+    if (
+      serverPagination &&
+      isSearchFocused.get(id) &&
+      document.activeElement !== inputRef.current
+    ) {
+      inputRef.current?.focus();
+    }
+  }, [value, serverPagination]);
+
+  const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
+    const target = e.target as HTMLInputElement;
+    e.preventDefault();
+    isSearchFocused.set(id, true);
+    setValue(target.value);
+  };
+
+  const handleBlur = () => {
+    isSearchFocused.set(id, false);
+  };
+
   const SearchInput = searchInput || DefaultSearchInput;
 
   return (
     <SearchInput
       count={count}
       value={value}
-      onChange={e => {
-        const target = e.target as HTMLInputElement;
-        e.preventDefault();
-        setValue(target.value);
-      }}
+      inputRef={inputRef}
+      onChange={handleChange}
+      onBlur={handleBlur}
     />
   );
 });
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SearchSelectDropdown.tsx b/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SearchSelectDropdown.tsx
new file mode 100644
index 0000000000000000000000000000000000000000..b58cf2e8a2259d8f565169a1b876fb5bf381fe16
--- /dev/null
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SearchSelectDropdown.tsx
@@ -0,0 +1,53 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/* eslint-disable import/no-extraneous-dependencies */
+import { styled } from '@superset-ui/core';
+import { Select } from 'antd';
+import { SearchOption } from '../../types';
+
+const StyledSelect = styled(Select)`
+  width: 120px;
+  margin-right: 8px;
+`;
+
+interface SearchSelectDropdownProps {
+  /** The currently selected search column value */
+  value?: string;
+  /** Callback triggered when a new search column is selected */
+  onChange: (searchCol: string) => void;
+  /** Available search column options to populate the dropdown */
+  searchOptions: SearchOption[];
+}
+
+function SearchSelectDropdown({
+  value,
+  onChange,
+  searchOptions,
+}: SearchSelectDropdownProps) {
+  return (
+    <StyledSelect
+      className="search-select"
+      value={value || (searchOptions?.[0]?.value ?? '')}
+      options={searchOptions}
+      onChange={onChange}
+    />
+  );
+}
+
+export default SearchSelectDropdown;
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/types/react-table.d.ts b/superset-frontend/plugins/plugin-chart-table/src/DataTable/types/react-table.d.ts
index 6c319f768453cfc7781da5f836ac450d0414b31b..9d591a0818260ca376664fef6c82e32e50789f59 100644
--- a/superset-frontend/plugins/plugin-chart-table/src/DataTable/types/react-table.d.ts
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/types/react-table.d.ts
@@ -115,3 +115,11 @@ declare module 'react-table' {
     extends UseTableHooks<D>,
       UseSortByHooks<D> {}
 }
+
+interface TableOwnState {
+  currentPage?: number;
+  pageSize?: number;
+  sortColumn?: string;
+  sortOrder?: 'asc' | 'desc';
+  searchText?: string;
+}
diff --git a/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/externalAPIs.ts b/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/externalAPIs.ts
index b703d66d97153997152e6f4208ecf2b2ed75b1a6..8a5d20ed5bca9844066d43a787249fc3c0457d15 100644
--- a/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/externalAPIs.ts
+++ b/superset-frontend/plugins/plugin-chart-table/src/DataTable/utils/externalAPIs.ts
@@ -18,6 +18,7 @@
  */
 
 import { SetDataMaskHook } from '@superset-ui/core';
+import { TableOwnState } from '../types/react-table';
 
 export const updateExternalFormData = (
   setDataMask: SetDataMaskHook = () => {},
@@ -30,3 +31,11 @@ export const updateExternalFormData = (
       pageSize,
     },
   });
+
+export const updateTableOwnState = (
+  setDataMask: SetDataMaskHook = () => {},
+  modifiedOwnState: TableOwnState,
+) =>
+  setDataMask({
+    ownState: modifiedOwnState,
+  });
diff --git a/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx b/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx
index 88a326544e6c4640259e47b2e6274a04cfbdae79..475056c75034759661f9c93889a253e649737981 100644
--- a/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx
+++ b/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx
@@ -24,6 +24,7 @@ import {
   useState,
   MouseEvent,
   KeyboardEvent as ReactKeyboardEvent,
+  useEffect,
 } from 'react';
 
 import {
@@ -61,10 +62,12 @@ import {
   PlusCircleOutlined,
   TableOutlined,
 } from '@ant-design/icons';
-import { isEmpty } from 'lodash';
+import { debounce, isEmpty, isEqual } from 'lodash';
 import {
   ColorSchemeEnum,
   DataColumnMeta,
+  SearchOption,
+  SortByItem,
   TableChartTransformedProps,
 } from './types';
 import DataTable, {
@@ -77,7 +80,7 @@ import DataTable, {
 import Styles from './Styles';
 import { formatColumnValue } from './utils/formatValue';
 import { PAGE_SIZE_OPTIONS } from './consts';
-import { updateExternalFormData } from './DataTable/utils/externalAPIs';
+import { updateTableOwnState } from './DataTable/utils/externalAPIs';
 import getScrollBarSize from './DataTable/utils/getScrollBarSize';
 
 type ValueRange = [number, number];
@@ -176,20 +179,26 @@ function SortIcon<D extends object>({ column }: { column: ColumnInstance<D> }) {
   return sortIcon;
 }
 
-function SearchInput({ count, value, onChange }: SearchInputProps) {
-  return (
-    <span className="dt-global-filter">
-      {t('Search')}{' '}
-      <input
-        aria-label={t('Search %s records', count)}
-        className="form-control input-sm"
-        placeholder={tn('search.num_records', count)}
-        value={value}
-        onChange={onChange}
-      />
-    </span>
-  );
-}
+const SearchInput = ({
+  count,
+  value,
+  onChange,
+  onBlur,
+  inputRef,
+}: SearchInputProps) => (
+  <span className="dt-global-filter">
+    {t('Search')}{' '}
+    <input
+      ref={inputRef}
+      aria-label={t('Search %s records', count)}
+      className="form-control input-sm"
+      placeholder={tn('search.num_records', count)}
+      value={value}
+      onChange={onChange}
+      onBlur={onBlur}
+    />
+  </span>
+);
 
 function SelectPageSize({
   options,
@@ -267,6 +276,9 @@ export default function TableChart<D extends DataRecord = DataRecord>(
     isUsingTimeComparison,
     basicColorFormatters,
     basicColorColumnFormatters,
+    hasServerPageLengthChanged,
+    serverPageLength,
+    slice_id,
   } = props;
   const comparisonColumns = [
     { key: 'all', label: t('Display all') },
@@ -679,7 +691,12 @@ export default function TableChart<D extends DataRecord = DataRecord>(
   );
 
   const getColumnConfigs = useCallback(
-    (column: DataColumnMeta, i: number): ColumnWithLooseAccessor<D> => {
+    (
+      column: DataColumnMeta,
+      i: number,
+    ): ColumnWithLooseAccessor<D> & {
+      columnKey: string;
+    } => {
       const {
         key,
         label: originalLabel,
@@ -766,6 +783,7 @@ export default function TableChart<D extends DataRecord = DataRecord>(
         // must use custom accessor to allow `.` in column names
         // typing is incorrect in current version of `@types/react-table`
         // so we ask TS not to check.
+        columnKey: key,
         accessor: ((datum: D) => datum[key]) as never,
         Cell: ({ value, row }: { value: DataRecordValue; row: Row<D> }) => {
           const [isHtml, text] = formatColumnValue(column, value);
@@ -1058,13 +1076,50 @@ export default function TableChart<D extends DataRecord = DataRecord>(
     [visibleColumnsMeta, getColumnConfigs],
   );
 
+  const [searchOptions, setSearchOptions] = useState<SearchOption[]>([]);
+
+  useEffect(() => {
+    const options = (
+      columns as unknown as ColumnWithLooseAccessor &
+        {
+          columnKey: string;
+          sortType?: string;
+        }[]
+    )
+      .filter(col => col?.sortType === 'alphanumeric')
+      .map(column => ({
+        value: column.columnKey,
+        label: column.columnKey,
+      }));
+
+    if (!isEqual(options, searchOptions)) {
+      setSearchOptions(options || []);
+    }
+  }, [columns]);
+
   const handleServerPaginationChange = useCallback(
     (pageNumber: number, pageSize: number) => {
-      updateExternalFormData(setDataMask, pageNumber, pageSize);
+      const modifiedOwnState = {
+        ...serverPaginationData,
+        currentPage: pageNumber,
+        pageSize,
+      };
+      updateTableOwnState(setDataMask, modifiedOwnState);
     },
     [setDataMask],
   );
 
+  useEffect(() => {
+    if (hasServerPageLengthChanged) {
+      const modifiedOwnState = {
+        ...serverPaginationData,
+        currentPage: 0,
+        pageSize: serverPageLength,
+      };
+      updateTableOwnState(setDataMask, modifiedOwnState);
+    }
+  }, []);
+
   const handleSizeChange = useCallback(
     ({ width, height }: { width: number; height: number }) => {
       setTableSize({ width, height });
@@ -1100,6 +1155,42 @@ export default function TableChart<D extends DataRecord = DataRecord>(
 
   const { width: widthFromState, height: heightFromState } = tableSize;
 
+  const handleSortByChange = useCallback(
+    (sortBy: SortByItem[]) => {
+      if (!serverPagination) return;
+      const modifiedOwnState = {
+        ...serverPaginationData,
+        sortBy,
+      };
+      updateTableOwnState(setDataMask, modifiedOwnState);
+    },
+    [setDataMask, serverPagination],
+  );
+
+  const handleSearch = (searchText: string) => {
+    const modifiedOwnState = {
+      ...(serverPaginationData || {}),
+      searchColumn:
+        serverPaginationData?.searchColumn || searchOptions[0]?.value,
+      searchText,
+      currentPage: 0, // Reset to first page when searching
+    };
+    updateTableOwnState(setDataMask, modifiedOwnState);
+  };
+
+  const debouncedSearch = debounce(handleSearch, 800);
+
+  const handleChangeSearchCol = (searchCol: string) => {
+    if (!isEqual(searchCol, serverPaginationData?.searchColumn)) {
+      const modifiedOwnState = {
+        ...(serverPaginationData || {}),
+        searchColumn: searchCol,
+        searchText: '',
+      };
+      updateTableOwnState(setDataMask, modifiedOwnState);
+    }
+  };
+
   return (
     <Styles>
       <DataTable<D>
@@ -1115,6 +1206,9 @@ export default function TableChart<D extends DataRecord = DataRecord>(
         serverPagination={serverPagination}
         onServerPaginationChange={handleServerPaginationChange}
         onColumnOrderChange={() => setColumnOrderToggle(!columnOrderToggle)}
+        initialSearchText={serverPaginationData?.searchText || ''}
+        sortByFromParent={serverPaginationData?.sortBy || []}
+        searchInputId={`${slice_id}-search`}
         // 9 page items in > 340px works well even for 100+ pages
         maxPageItemCount={width > 340 ? 9 : 7}
         noResults={getNoResultsMessage}
@@ -1128,6 +1222,11 @@ export default function TableChart<D extends DataRecord = DataRecord>(
         renderTimeComparisonDropdown={
           isUsingTimeComparison ? renderTimeComparisonDropdown : undefined
         }
+        handleSortByChange={handleSortByChange}
+        onSearchColChange={handleChangeSearchCol}
+        manualSearch={serverPagination}
+        onSearchChange={debouncedSearch}
+        searchOptions={searchOptions}
       />
     </Styles>
   );
diff --git a/superset-frontend/plugins/plugin-chart-table/src/buildQuery.ts b/superset-frontend/plugins/plugin-chart-table/src/buildQuery.ts
index 5b9cb684ed4a4474737834b73e26dc52a5caa536..439df369f5a8d736e59a404dd02271f50c9a2bcb 100644
--- a/superset-frontend/plugins/plugin-chart-table/src/buildQuery.ts
+++ b/superset-frontend/plugins/plugin-chart-table/src/buildQuery.ts
@@ -22,6 +22,7 @@ import {
   ensureIsArray,
   getMetricLabel,
   isPhysicalColumn,
+  QueryFormOrderBy,
   QueryMode,
   QueryObject,
   removeDuplicates,
@@ -34,7 +35,7 @@ import {
 } from '@superset-ui/chart-controls';
 import { isEmpty } from 'lodash';
 import { TableChartFormData } from './types';
-import { updateExternalFormData } from './DataTable/utils/externalAPIs';
+import { updateTableOwnState } from './DataTable/utils/externalAPIs';
 
 /**
  * Infer query mode from form data. If `all_columns` is set, then raw records mode,
@@ -191,18 +192,40 @@ const buildQuery: BuildQuery<TableChartFormData> = (
 
     const moreProps: Partial<QueryObject> = {};
     const ownState = options?.ownState ?? {};
-    if (formDataCopy.server_pagination) {
-      moreProps.row_limit =
-        ownState.pageSize ?? formDataCopy.server_page_length;
-      moreProps.row_offset =
-        (ownState.currentPage ?? 0) * (ownState.pageSize ?? 0);
+    // Build Query flag to check if its for either download as csv, excel or json
+    const isDownloadQuery =
+      ['csv', 'xlsx'].includes(formData?.result_format || '') ||
+      (formData?.result_format === 'json' &&
+        formData?.result_type === 'results');
+
+    if (isDownloadQuery) {
+      moreProps.row_limit = Number(formDataCopy.row_limit) || 0;
+      moreProps.row_offset = 0;
+    }
+
+    if (!isDownloadQuery && formDataCopy.server_pagination) {
+      const pageSize = ownState.pageSize ?? formDataCopy.server_page_length;
+      const currentPage = ownState.currentPage ?? 0;
+
+      moreProps.row_limit = pageSize;
+      moreProps.row_offset = currentPage * pageSize;
+    }
+
+    // getting sort by in case of server pagination from own state
+    let sortByFromOwnState: QueryFormOrderBy[] | undefined;
+    if (Array.isArray(ownState?.sortBy) && ownState?.sortBy.length > 0) {
+      const sortByItem = ownState?.sortBy[0];
+      sortByFromOwnState = [[sortByItem?.key, !sortByItem?.desc]];
     }
 
     let queryObject = {
       ...baseQueryObject,
       columns,
       extras,
-      orderby,
+      orderby:
+        formData.server_pagination && sortByFromOwnState
+          ? sortByFromOwnState
+          : orderby,
       metrics,
       post_processing: postProcessing,
       time_offsets: timeOffsets,
@@ -216,11 +239,12 @@ const buildQuery: BuildQuery<TableChartFormData> = (
         JSON.stringify(queryObject.filters)
     ) {
       queryObject = { ...queryObject, row_offset: 0 };
-      updateExternalFormData(
-        options?.hooks?.setDataMask,
-        0,
-        queryObject.row_limit ?? 0,
-      );
+      const modifiedOwnState = {
+        ...(options?.ownState || {}),
+        currentPage: 0,
+        pageSize: queryObject.row_limit ?? 0,
+      };
+      updateTableOwnState(options?.hooks?.setDataMask, modifiedOwnState);
     }
     // Because we use same buildQuery for all table on the page we need split them by id
     options?.hooks?.setCachedChanges({
@@ -252,12 +276,32 @@ const buildQuery: BuildQuery<TableChartFormData> = (
     }
 
     if (formData.server_pagination) {
+      // Add search filter if search text exists
+      if (ownState.searchText && ownState?.searchColumn) {
+        queryObject = {
+          ...queryObject,
+          filters: [
+            ...(queryObject.filters || []),
+            {
+              col: ownState?.searchColumn,
+              op: 'ILIKE',
+              val: `${ownState.searchText}%`,
+            },
+          ],
+        };
+      }
+    }
+
+    // Now since row limit control is always visible even
+    // in case of server pagination
+    // we must use row limit from form data
+    if (formData.server_pagination && !isDownloadQuery) {
       return [
         { ...queryObject },
         {
           ...queryObject,
           time_offsets: [],
-          row_limit: 0,
+          row_limit: Number(formData?.row_limit) ?? 0,
           row_offset: 0,
           post_processing: [],
           is_rowcount: true,
diff --git a/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx b/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx
index f6798b798483bf5b38a564342ff7d123bf05d1ae..aab66f800ddb9b556b7b3a52b917e4bac8f937a5 100644
--- a/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx
+++ b/superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx
@@ -28,7 +28,10 @@ import {
   ControlStateMapping,
   D3_TIME_FORMAT_OPTIONS,
   Dataset,
+  DEFAULT_MAX_ROW,
+  DEFAULT_MAX_ROW_TABLE_SERVER,
   defineSavedMetrics,
+  formatSelectOptions,
   getStandardizedControls,
   QueryModeLabel,
   sections,
@@ -40,11 +43,14 @@ import {
   getMetricLabel,
   isAdhocColumn,
   isPhysicalColumn,
+  legacyValidateInteger,
   QueryFormColumn,
   QueryFormMetric,
   QueryMode,
   SMART_DATE_ID,
   t,
+  validateMaxValue,
+  validateServerPagination,
 } from '@superset-ui/core';
 
 import { isEmpty, last } from 'lodash';
@@ -188,6 +194,15 @@ const processComparisonColumns = (columns: any[], suffix: string) =>
     })
     .flat();
 
+/*
+Options for row limit control
+*/
+
+export const ROW_LIMIT_OPTIONS_TABLE = [
+  10, 50, 100, 250, 500, 1000, 5000, 10000, 50000, 100000, 150000, 200000,
+  250000, 300000, 350000, 400000, 450000, 500000,
+];
+
 const config: ControlPanelConfig = {
   controlPanelSections: [
     {
@@ -342,14 +357,6 @@ const config: ControlPanelConfig = {
           },
         ],
         [
-          {
-            name: 'row_limit',
-            override: {
-              default: 1000,
-              visibility: ({ controls }: ControlPanelsContainerProps) =>
-                !controls?.server_pagination?.value,
-            },
-          },
           {
             name: 'server_page_length',
             config: {
@@ -364,6 +371,47 @@ const config: ControlPanelConfig = {
             },
           },
         ],
+        [
+          {
+            name: 'row_limit',
+            config: {
+              type: 'SelectControl',
+              freeForm: true,
+              label: t('Row limit'),
+              clearable: false,
+              mapStateToProps: state => ({
+                maxValue: state?.common?.conf?.TABLE_VIZ_MAX_ROW_SERVER,
+                server_pagination: state?.form_data?.server_pagination,
+                maxValueWithoutServerPagination:
+                  state?.common?.conf?.SQL_MAX_ROW,
+              }),
+              validators: [
+                legacyValidateInteger,
+                (v, state) =>
+                  validateMaxValue(
+                    v,
+                    state?.maxValue || DEFAULT_MAX_ROW_TABLE_SERVER,
+                  ),
+                (v, state) =>
+                  validateServerPagination(
+                    v,
+                    state?.server_pagination,
+                    state?.maxValueWithoutServerPagination || DEFAULT_MAX_ROW,
+                  ),
+              ],
+              // Re run the validations when this control value
+              validationDependancies: ['server_pagination'],
+              default: 10000,
+              choices: formatSelectOptions(ROW_LIMIT_OPTIONS_TABLE),
+              description: t(
+                'Limits the number of the rows that are computed in the query that is the source of the data used for this chart.',
+              ),
+            },
+            override: {
+              default: 1000,
+            },
+          },
+        ],
         [
           {
             name: 'order_desc',
diff --git a/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts b/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts
index d62d9cb92c95b121e16020f9f1bd3f3fe3be440e..86d4efed8f4e7a2332a7399a03ed8361b871d32d 100644
--- a/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts
+++ b/superset-frontend/plugins/plugin-chart-table/src/transformProps.ts
@@ -90,6 +90,15 @@ const processDataRecords = memoizeOne(function processDataRecords(
   return data;
 });
 
+// Create a map to store cached values per slice
+const sliceCache = new Map<
+  number,
+  {
+    cachedServerLength: number;
+    passedColumns?: DataColumnMeta[];
+  }
+>();
+
 const calculateDifferences = (
   originalValue: number,
   comparisonValue: number,
@@ -480,6 +489,7 @@ const transformProps = (
     comparison_color_enabled: comparisonColorEnabled = false,
     comparison_color_scheme: comparisonColorScheme = ColorSchemeEnum.Green,
     comparison_type,
+    slice_id,
   } = formData;
   const isUsingTimeComparison =
     !isEmpty(time_compare) &&
@@ -675,6 +685,26 @@ const transformProps = (
     conditionalFormatting,
   );
 
+  // Get cached values for this slice
+  const cachedValues = sliceCache.get(slice_id);
+  let hasServerPageLengthChanged = false;
+
+  if (
+    cachedValues?.cachedServerLength !== undefined &&
+    cachedValues.cachedServerLength !== serverPageLength
+  ) {
+    hasServerPageLengthChanged = true;
+  }
+
+  // Update cache with new values
+  sliceCache.set(slice_id, {
+    cachedServerLength: serverPageLength,
+    passedColumns:
+      Array.isArray(passedColumns) && passedColumns?.length > 0
+        ? passedColumns
+        : cachedValues?.passedColumns,
+  });
+
   const startDateOffset = chartProps.rawFormData?.start_date_offset;
   return {
     height,
@@ -682,7 +712,10 @@ const transformProps = (
     isRawRecords: queryMode === QueryMode.Raw,
     data: passedData,
     totals,
-    columns: passedColumns,
+    columns:
+      Array.isArray(passedColumns) && passedColumns?.length > 0
+        ? passedColumns
+        : cachedValues?.passedColumns || [],
     serverPagination,
     metrics,
     percentMetrics,
@@ -697,7 +730,9 @@ const transformProps = (
     includeSearch,
     rowCount,
     pageSize: serverPagination
-      ? serverPageLength
+      ? serverPaginationData?.pageSize
+        ? serverPaginationData?.pageSize
+        : serverPageLength
       : getPageSize(pageLength, data.length, columns.length),
     filters: filterState.filters,
     emitCrossFilters,
@@ -711,6 +746,9 @@ const transformProps = (
     basicColorFormatters,
     startDateOffset,
     basicColorColumnFormatters,
+    hasServerPageLengthChanged,
+    serverPageLength,
+    slice_id,
   };
 };
 
diff --git a/superset-frontend/plugins/plugin-chart-table/src/types.ts b/superset-frontend/plugins/plugin-chart-table/src/types.ts
index 7460a27c461816ff0b2d50f64a7ddb86cc877d4a..1b7cfd45904c4c27ce72d82f5b93c5a915e3fa5c 100644
--- a/superset-frontend/plugins/plugin-chart-table/src/types.ts
+++ b/superset-frontend/plugins/plugin-chart-table/src/types.ts
@@ -114,13 +114,32 @@ export type BasicColorFormatterType = {
   mainArrow: string;
 };
 
+export type SortByItem = {
+  id: string;
+  key: string;
+  desc?: boolean;
+};
+
+export type SearchOption = {
+  value: string;
+  label: string;
+};
+
+export interface ServerPaginationData {
+  pageSize?: number;
+  currentPage?: number;
+  sortBy?: SortByItem[];
+  searchText?: string;
+  searchColumn?: string;
+}
+
 export interface TableChartTransformedProps<D extends DataRecord = DataRecord> {
   timeGrain?: TimeGranularity;
   height: number;
   width: number;
   rowCount?: number;
   serverPagination: boolean;
-  serverPaginationData: { pageSize?: number; currentPage?: number };
+  serverPaginationData: ServerPaginationData;
   setDataMask: SetDataMaskHook;
   isRawRecords?: boolean;
   data: D[];
@@ -152,6 +171,11 @@ export interface TableChartTransformedProps<D extends DataRecord = DataRecord> {
   basicColorFormatters?: { [Key: string]: BasicColorFormatterType }[];
   basicColorColumnFormatters?: { [Key: string]: BasicColorFormatterType }[];
   startDateOffset?: string;
+  // For explore page to reset the server Pagination data
+  // if server page length is changed from control panel
+  hasServerPageLengthChanged: boolean;
+  serverPageLength: number;
+  slice_id: number;
 }
 
 export enum ColorSchemeEnum {
diff --git a/superset-frontend/src/components/Chart/ChartRenderer.jsx b/superset-frontend/src/components/Chart/ChartRenderer.jsx
index 25fc045d21054d7b40799b241af2d7911557ca23..7b641d0eaecce5c157697ab1664a896694a66a36 100644
--- a/superset-frontend/src/components/Chart/ChartRenderer.jsx
+++ b/superset-frontend/src/components/Chart/ChartRenderer.jsx
@@ -327,6 +327,10 @@ class ChartRenderer extends Component {
       ?.behaviors.find(behavior => behavior === Behavior.DrillToDetail)
       ? { inContextMenu: this.state.inContextMenu }
       : {};
+    // By pass no result component when server pagination is enabled & the table has a backend search query
+    const bypassNoResult = !(
+      formData?.server_pagination && (ownState?.searchText?.length || 0) > 0
+    );
 
     return (
       <>
@@ -367,6 +371,7 @@ class ChartRenderer extends Component {
             postTransformProps={postTransformProps}
             emitCrossFilters={emitCrossFilters}
             legendState={this.state.legendState}
+            enableNoResults={bypassNoResult}
             {...drillToDetailProps}
           />
         </div>
diff --git a/superset-frontend/src/components/Datasource/DatasourceEditor.jsx b/superset-frontend/src/components/Datasource/DatasourceEditor.jsx
index dce962a6ce9592e40ea39135fca3f7b12136f052..4f21e7ae609a6589688308ccf618084fe1b5ca71 100644
--- a/superset-frontend/src/components/Datasource/DatasourceEditor.jsx
+++ b/superset-frontend/src/components/Datasource/DatasourceEditor.jsx
@@ -34,6 +34,7 @@ import {
   t,
   withTheme,
   getClientErrorObject,
+  getExtensionsRegistry,
 } from '@superset-ui/core';
 import { Select, AsyncSelect, Row, Col } from 'src/components';
 import { FormLabel } from 'src/components/Form';
@@ -53,10 +54,15 @@ import SpatialControl from 'src/explore/components/controls/SpatialControl';
 import withToasts from 'src/components/MessageToasts/withToasts';
 import { Icons } from 'src/components/Icons';
 import CurrencyControl from 'src/explore/components/controls/CurrencyControl';
+import { executeQuery, resetDatabaseState } from 'src/database/actions';
+import { connect } from 'react-redux';
 import CollectionTable from './CollectionTable';
 import Fieldset from './Fieldset';
 import Field from './Field';
 import { fetchSyncedColumns, updateColumns } from './utils';
+import FilterableTable from '../FilterableTable';
+
+const extensionsRegistry = getExtensionsRegistry();
 
 const DatasourceContainer = styled.div`
   .change-warning {
@@ -586,6 +592,8 @@ function OwnersSelector({ datasource, onChange }) {
     />
   );
 }
+const ResultTable =
+  extensionsRegistry.get('sqleditor.extension.resultTable') ?? FilterableTable;
 
 class DatasourceEditor extends PureComponent {
   constructor(props) {
@@ -698,6 +706,23 @@ class DatasourceEditor extends PureComponent {
     this.validate(this.onChange);
   }
 
+  async onQueryRun() {
+    this.props.runQuery({
+      client_id: this.props.clientId,
+      database_id: this.state.datasource.database.id,
+      json: true,
+      runAsync: false,
+      catalog: this.state.datasource.catalog,
+      schema: this.state.datasource.schema,
+      sql: this.state.datasource.sql,
+      tmp_table_name: '',
+      select_as_cta: false,
+      ctas_method: 'TABLE',
+      queryLimit: 25,
+      expand_data: true,
+    });
+  }
+
   tableChangeAndSyncMetadata() {
     this.validate(() => {
       this.syncMetadata();
@@ -1078,14 +1103,62 @@ class DatasourceEditor extends PureComponent {
                       <TextAreaControl
                         language="sql"
                         offerEditInModal={false}
-                        minLines={20}
+                        minLines={10}
                         maxLines={Infinity}
                         readOnly={!this.state.isEditMode}
                         resize="both"
                         tooltipOptions={sqlTooltipOptions}
                       />
                     }
+                    additionalControl={
+                      <div
+                        css={css`
+                          position: absolute;
+                          right: 0;
+                          top: 0;
+                          z-index: 2;
+                        `}
+                      >
+                        <Button
+                          css={css`
+                            align-self: flex-end;
+                            height: 24px;
+                            padding-left: 6px;
+                            padding-right: 6px;
+                          `}
+                          size="small"
+                          buttonStyle="primary"
+                          onClick={() => {
+                            this.onQueryRun();
+                          }}
+                        >
+                          <Icons.CaretRightFilled
+                            iconSize="s"
+                            css={theme => ({
+                              color: theme.colors.grayscale.light5,
+                            })}
+                          />
+                        </Button>
+                      </div>
+                    }
+                    errorMessage={
+                      this.props.database?.error && t('Error executing query.')
+                    }
                   />
+                  {this.props.database?.queryResult && (
+                    <ResultTable
+                      data={this.props.database.queryResult.data}
+                      queryId={this.props.database.queryResult.query.id}
+                      orderedColumnKeys={this.props.database.queryResult.columns.map(
+                        col => col.column_name,
+                      )}
+                      height={100}
+                      expandedColumns={
+                        this.props.database.queryResult.expandedColumns
+                      }
+                      allowHTML
+                    />
+                  )}
                 </>
               )}
             </div>
@@ -1466,6 +1539,10 @@ class DatasourceEditor extends PureComponent {
       </DatasourceContainer>
     );
   }
+
+  componentWillUnmount() {
+    this.props.resetQuery();
+  }
 }
 
 DatasourceEditor.defaultProps = defaultProps;
@@ -1473,4 +1550,14 @@ DatasourceEditor.propTypes = propTypes;
 
 const DataSourceComponent = withTheme(DatasourceEditor);
 
-export default withToasts(DataSourceComponent);
+const mapDispatchToProps = dispatch => ({
+  runQuery: payload => dispatch(executeQuery(payload)),
+  resetQuery: () => dispatch(resetDatabaseState()),
+});
+const mapStateToProps = state => ({
+  test: state.queryApi,
+  database: state.database,
+});
+export default withToasts(
+  connect(mapStateToProps, mapDispatchToProps)(DataSourceComponent),
+);
diff --git a/superset-frontend/src/components/Datasource/DatasourceModal.tsx b/superset-frontend/src/components/Datasource/DatasourceModal.tsx
index 1055e51f4447b227b16388c9550d2358c0bcce8f..51a60e11bef7268196ac0ac157926a8582f1e0df 100644
--- a/superset-frontend/src/components/Datasource/DatasourceModal.tsx
+++ b/superset-frontend/src/components/Datasource/DatasourceModal.tsx
@@ -120,71 +120,83 @@ const DatasourceModal: FunctionComponent<DatasourceModalProps> = ({
   const [isEditing, setIsEditing] = useState<boolean>(false);
   const dialog = useRef<any>(null);
   const [modal, contextHolder] = Modal.useModal();
-  const buildPayload = (datasource: Record<string, any>) => ({
-    table_name: datasource.table_name,
-    database_id: datasource.database?.id,
-    sql: datasource.sql,
-    filter_select_enabled: datasource.filter_select_enabled,
-    fetch_values_predicate: datasource.fetch_values_predicate,
-    schema:
-      datasource.tableSelector?.schema ||
-      datasource.databaseSelector?.schema ||
-      datasource.schema,
-    description: datasource.description,
-    main_dttm_col: datasource.main_dttm_col,
-    normalize_columns: datasource.normalize_columns,
-    always_filter_main_dttm: datasource.always_filter_main_dttm,
-    offset: datasource.offset,
-    default_endpoint: datasource.default_endpoint,
-    cache_timeout:
-      datasource.cache_timeout === '' ? null : datasource.cache_timeout,
-    is_sqllab_view: datasource.is_sqllab_view,
-    template_params: datasource.template_params,
-    extra: datasource.extra,
-    is_managed_externally: datasource.is_managed_externally,
-    external_url: datasource.external_url,
-    metrics: datasource?.metrics?.map((metric: DatasetObject['metrics'][0]) => {
-      const metricBody: any = {
-        expression: metric.expression,
-        description: metric.description,
-        metric_name: metric.metric_name,
-        metric_type: metric.metric_type,
-        d3format: metric.d3format || null,
-        currency: !isDefined(metric.currency)
-          ? null
-          : JSON.stringify(metric.currency),
-        verbose_name: metric.verbose_name,
-        warning_text: metric.warning_text,
-        uuid: metric.uuid,
-        extra: buildExtraJsonObject(metric),
-      };
-      if (!Number.isNaN(Number(metric.id))) {
-        metricBody.id = metric.id;
-      }
-      return metricBody;
-    }),
-    columns: datasource?.columns?.map(
-      (column: DatasetObject['columns'][0]) => ({
-        id: typeof column.id === 'number' ? column.id : undefined,
-        column_name: column.column_name,
-        type: column.type,
-        advanced_data_type: column.advanced_data_type,
-        verbose_name: column.verbose_name,
-        description: column.description,
-        expression: column.expression,
-        filterable: column.filterable,
-        groupby: column.groupby,
-        is_active: column.is_active,
-        is_dttm: column.is_dttm,
-        python_date_format: column.python_date_format || null,
-        uuid: column.uuid,
-        extra: buildExtraJsonObject(column),
-      }),
-    ),
-    owners: datasource.owners.map(
-      (o: Record<string, number>) => o.value || o.id,
-    ),
-  });
+  const buildPayload = (datasource: Record<string, any>) => {
+    const payload: Record<string, any> = {
+      table_name: datasource.table_name,
+      database_id: datasource.database?.id,
+      sql: datasource.sql,
+      filter_select_enabled: datasource.filter_select_enabled,
+      fetch_values_predicate: datasource.fetch_values_predicate,
+      schema:
+        datasource.tableSelector?.schema ||
+        datasource.databaseSelector?.schema ||
+        datasource.schema,
+      description: datasource.description,
+      main_dttm_col: datasource.main_dttm_col,
+      normalize_columns: datasource.normalize_columns,
+      always_filter_main_dttm: datasource.always_filter_main_dttm,
+      offset: datasource.offset,
+      default_endpoint: datasource.default_endpoint,
+      cache_timeout:
+        datasource.cache_timeout === '' ? null : datasource.cache_timeout,
+      is_sqllab_view: datasource.is_sqllab_view,
+      template_params: datasource.template_params,
+      extra: datasource.extra,
+      is_managed_externally: datasource.is_managed_externally,
+      external_url: datasource.external_url,
+      metrics: datasource?.metrics?.map(
+        (metric: DatasetObject['metrics'][0]) => {
+          const metricBody: any = {
+            expression: metric.expression,
+            description: metric.description,
+            metric_name: metric.metric_name,
+            metric_type: metric.metric_type,
+            d3format: metric.d3format || null,
+            currency: !isDefined(metric.currency)
+              ? null
+              : JSON.stringify(metric.currency),
+            verbose_name: metric.verbose_name,
+            warning_text: metric.warning_text,
+            uuid: metric.uuid,
+            extra: buildExtraJsonObject(metric),
+          };
+          if (!Number.isNaN(Number(metric.id))) {
+            metricBody.id = metric.id;
+          }
+          return metricBody;
+        },
+      ),
+      columns: datasource?.columns?.map(
+        (column: DatasetObject['columns'][0]) => ({
+          id: typeof column.id === 'number' ? column.id : undefined,
+          column_name: column.column_name,
+          type: column.type,
+          advanced_data_type: column.advanced_data_type,
+          verbose_name: column.verbose_name,
+          description: column.description,
+          expression: column.expression,
+          filterable: column.filterable,
+          groupby: column.groupby,
+          is_active: column.is_active,
+          is_dttm: column.is_dttm,
+          python_date_format: column.python_date_format || null,
+          uuid: column.uuid,
+          extra: buildExtraJsonObject(column),
+        }),
+      ),
+      owners: datasource.owners.map(
+        (o: Record<string, number>) => o.value || o.id,
+      ),
+    };
+    // Handle catalog based on database's allow_multi_catalog setting
+    // If multi-catalog is disabled, don't include catalog in payload
+    // The backend will use the default catalog
+    // If multi-catalog is enabled, include the selected catalog
+    if (datasource.database?.allow_multi_catalog) {
+      payload.catalog = datasource.catalog;
+    }
+    return payload;
+  };
   const onConfirmSave = async () => {
     // Pull out extra fields into the extra object
     setIsSaving(true);
diff --git a/superset-frontend/src/components/Datasource/Field.test.tsx b/superset-frontend/src/components/Datasource/Field.test.tsx
index 2e696dca8cd31d13b067ab51af93f22348256759..cab68b0c2fc0166511f955d3a03f4b22530ba9df 100644
--- a/superset-frontend/src/components/Datasource/Field.test.tsx
+++ b/superset-frontend/src/components/Datasource/Field.test.tsx
@@ -29,13 +29,20 @@ const defaultProps = {
   onChange: jest.fn(),
   compact: false,
   inline: false,
+  additionalControl: (
+    <input type="button" data-test="mock-text-aditional-control" />
+  ),
 };
 
 test('should render', () => {
   const { container } = render(<Field {...defaultProps} />);
   expect(container).toBeInTheDocument();
 });
-
+test('should render with aditional control', () => {
+  const { getByTestId } = render(<Field {...defaultProps} />);
+  const additionalControl = getByTestId('mock-text-aditional-control');
+  expect(additionalControl).toBeInTheDocument();
+});
 test('should call onChange', () => {
   const { getByTestId } = render(<Field {...defaultProps} />);
   const textArea = getByTestId('mock-text-control');
@@ -47,3 +54,9 @@ test('should render compact', () => {
   render(<Field {...defaultProps} compact />);
   expect(screen.queryByText(defaultProps.description)).not.toBeInTheDocument();
 });
+test('shiuld render error message', () => {
+  const { getByText } = render(
+    <Field {...defaultProps} errorMessage="error message" />,
+  );
+  expect(getByText('error message')).toBeInTheDocument();
+});
diff --git a/superset-frontend/src/components/Datasource/Field.tsx b/superset-frontend/src/components/Datasource/Field.tsx
index 1232f0208c1697a9744d9e8f86530079375ec805..61404d401b4bfac45f39750d5d82700e9b862e5f 100644
--- a/superset-frontend/src/components/Datasource/Field.tsx
+++ b/superset-frontend/src/components/Datasource/Field.tsx
@@ -21,6 +21,7 @@ import { useCallback, ReactNode, ReactElement, cloneElement } from 'react';
 import { css, SupersetTheme } from '@superset-ui/core';
 import { Tooltip } from 'src/components/Tooltip';
 import { FormItem, FormLabel } from 'src/components/Form';
+import { Icons } from 'src/components/Icons';
 
 const formItemInlineCss = css`
   .ant-form-item-control-input-content {
@@ -28,16 +29,17 @@ const formItemInlineCss = css`
     flex-direction: row;
   }
 `;
-
 interface FieldProps<V> {
   fieldKey: string;
   value?: V;
   label: string;
   description?: ReactNode;
   control: ReactElement;
+  additionalControl?: ReactElement;
   onChange: (fieldKey: string, newValue: V) => void;
   compact: boolean;
   inline: boolean;
+  errorMessage?: string;
 }
 
 export default function Field<V>({
@@ -46,9 +48,11 @@ export default function Field<V>({
   label,
   description = null,
   control,
+  additionalControl,
   onChange = () => {},
   compact = false,
   inline,
+  errorMessage,
 }: FieldProps<V>) {
   const onControlChange = useCallback(
     newValue => {
@@ -62,32 +66,51 @@ export default function Field<V>({
     onChange: onControlChange,
   });
   return (
-    <FormItem
-      label={
-        <FormLabel className="m-r-5">
-          {label || fieldKey}
-          {compact && description && (
-            <Tooltip id="field-descr" placement="right" title={description}>
-              {/* TODO: Remove fa-icon */}
-              {/* eslint-disable-next-line icons/no-fa-icons-usage */}
-              <i className="fa fa-info-circle m-l-5" />
-            </Tooltip>
-          )}
-        </FormLabel>
+    <div
+      css={
+        additionalControl &&
+        css`
+          position: relative;
+        `
       }
-      css={inline && formItemInlineCss}
     >
-      {hookedControl}
-      {!compact && description && (
+      {additionalControl}
+      <FormItem
+        label={
+          <FormLabel className="m-r-5">
+            {label || fieldKey}
+            {compact && description && (
+              <Tooltip id="field-descr" placement="right" title={description}>
+                <Icons.InfoCircleFilled iconSize="s" className="m-l-5" />
+              </Tooltip>
+            )}
+          </FormLabel>
+        }
+        css={inline && formItemInlineCss}
+      >
+        {hookedControl}
+        {!compact && description && (
+          <div
+            css={(theme: SupersetTheme) => ({
+              color: theme.colors.grayscale.base,
+              [inline ? 'marginLeft' : 'marginTop']: theme.gridUnit,
+            })}
+          >
+            {description}
+          </div>
+        )}
+      </FormItem>
+      {errorMessage && (
         <div
           css={(theme: SupersetTheme) => ({
-            color: theme.colors.grayscale.base,
-            [inline ? 'marginLeft' : 'marginTop']: theme.gridUnit,
+            color: theme.colors.error.base,
+            marginTop: -16,
+            fontSize: theme.typography.sizes.s,
           })}
         >
-          {description}
+          {errorMessage}
         </div>
       )}
-    </FormItem>
+    </div>
   );
 }
diff --git a/superset-frontend/src/components/Icons/AntdEnhanced.tsx b/superset-frontend/src/components/Icons/AntdEnhanced.tsx
index 57eb41c61d6468827376a5b120e9e1186a79594b..5b836324bd4d57041a06b282076b92a6e83e7e1b 100644
--- a/superset-frontend/src/components/Icons/AntdEnhanced.tsx
+++ b/superset-frontend/src/components/Icons/AntdEnhanced.tsx
@@ -34,6 +34,7 @@ import {
   CaretDownOutlined,
   CaretLeftOutlined,
   CaretRightOutlined,
+  CaretRightFilled,
   CalendarOutlined,
   CheckOutlined,
   CheckCircleOutlined,
@@ -134,6 +135,7 @@ const AntdIcons = {
   CaretDownOutlined,
   CaretLeftOutlined,
   CaretRightOutlined,
+  CaretRightFilled,
   CalendarOutlined,
   CheckOutlined,
   CheckCircleOutlined,
diff --git a/superset-frontend/src/components/Select/Select.tsx b/superset-frontend/src/components/Select/Select.tsx
index efef785616c969bc196dec534c28737f4323b6b8..71ca92663244e9240acc81605563cde9e6c252c4 100644
--- a/superset-frontend/src/components/Select/Select.tsx
+++ b/superset-frontend/src/components/Select/Select.tsx
@@ -440,7 +440,7 @@ const Select = forwardRef(
 
     const bulkSelectComponent = useMemo(
       () => (
-        <StyledBulkActionsContainer size={0}>
+        <StyledBulkActionsContainer className="select-bulk-actions" size={0}>
           <Button
             type="link"
             buttonSize="xsmall"
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx b/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx
index b7c7785d3e2072084eebe902a427fc40072b11ca..299f329b675b31a8696528b1be5a48a8698015b0 100644
--- a/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx
+++ b/superset-frontend/src/dashboard/components/gridComponents/Chart.jsx
@@ -150,6 +150,9 @@ const Chart = props => {
   const emitCrossFilters = useSelector(
     state => !!state.dashboardInfo.crossFiltersEnabled,
   );
+  const maxRows = useSelector(
+    state => state.dashboardInfo.common.conf.SQL_MAX_ROW,
+  );
   const datasource = useSelector(
     state =>
       (chart &&
@@ -360,9 +363,7 @@ const Chart = props => {
         is_cached: props.isCached,
       });
       exportChart({
-        formData: isFullCSV
-          ? { ...formData, row_limit: props.maxRows }
-          : formData,
+        formData: isFullCSV ? { ...formData, row_limit: maxRows } : formData,
         resultType: isPivot ? 'post_processed' : 'full',
         resultFormat: format,
         force: true,
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Chart.test.jsx b/superset-frontend/src/dashboard/components/gridComponents/Chart.test.jsx
index 3d4cb66bdc5fea288af9261afce5752db7d5a125..950f3dacc120f1deb9e24261dffc732010f611b9 100644
--- a/superset-frontend/src/dashboard/components/gridComponents/Chart.test.jsx
+++ b/superset-frontend/src/dashboard/components/gridComponents/Chart.test.jsx
@@ -34,7 +34,7 @@ const props = {
   height: 100,
   updateSliceName() {},
   // from redux
-  maxRows: 666,
+  maxRows: 500, // will be overwritten with SQL_MAX_ROW from conf
   formData: chartQueries[queryId].form_data,
   datasource: mockDatasource[sliceEntities.slices[queryId].datasource],
   sliceName: sliceEntities.slices[queryId].slice_name,
@@ -78,7 +78,7 @@ const defaultState = {
     superset_can_explore: false,
     superset_can_share: false,
     superset_can_csv: false,
-    common: { conf: { SUPERSET_WEBSERVER_TIMEOUT: 0 } },
+    common: { conf: { SUPERSET_WEBSERVER_TIMEOUT: 0, SQL_MAX_ROW: 666 } },
   },
 };
 
diff --git a/superset-frontend/src/dashboard/components/gridComponents/Row.jsx b/superset-frontend/src/dashboard/components/gridComponents/Row.jsx
index a353d85c3b4e5c9c3861948c8790f9a7e526d7cf..1025e4101d41b69e40821685d4ae8bb09c3d055a 100644
--- a/superset-frontend/src/dashboard/components/gridComponents/Row.jsx
+++ b/superset-frontend/src/dashboard/components/gridComponents/Row.jsx
@@ -51,6 +51,7 @@ import WithPopoverMenu from 'src/dashboard/components/menu/WithPopoverMenu';
 import { componentShape } from 'src/dashboard/util/propShapes';
 import backgroundStyleOptions from 'src/dashboard/util/backgroundStyleOptions';
 import { BACKGROUND_TRANSPARENT } from 'src/dashboard/util/constants';
+import { isEmbedded } from 'src/dashboard/util/isEmbedded';
 import { EMPTY_CONTAINER_Z_INDEX } from 'src/dashboard/constants';
 import { isCurrentUserBot } from 'src/utils/isBot';
 import { useDebouncedEffect } from '../../../explore/exploreUtils';
@@ -188,7 +189,10 @@ const Row = props => {
       observerDisabler = new IntersectionObserver(
         ([entry]) => {
           if (!entry.isIntersecting && isComponentVisibleRef.current) {
-            setIsInView(false);
+            // Reference: https://www.w3.org/TR/intersection-observer/#dom-intersectionobserver-rootmargin
+            if (!isEmbedded()) {
+              setIsInView(false);
+            }
           }
         },
         {
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControl.tsx b/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControl.tsx
index 76a162e7c589602ce552b3db7c2dc23da712b784..4a0de520e69ae2b1da942a057278a6e47203f28f 100644
--- a/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControl.tsx
+++ b/superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControl.tsx
@@ -128,6 +128,14 @@ const VerticalFormItem = styled(StyledFormItem)<{
       width: 140px;
     `}
   }
+
+  .select-bulk-actions {
+    ${({ inverseSelection }) =>
+      inverseSelection &&
+      `
+      flex-direction: column;
+    `}
+  }
 `;
 
 const HorizontalFormItem = styled(StyledFormItem)<{
@@ -164,6 +172,10 @@ const HorizontalFormItem = styled(StyledFormItem)<{
       width: 164px;
     `}
   }
+
+  .select-bulk-actions {
+    flex-direction: column;
+  }
 `;
 
 const HorizontalOverflowFormItem = VerticalFormItem;
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx b/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx
index b8bc7963f1f52b813f2477a88b90ff962293b6a4..4d928df76a9fd0d80e18c588554a1fee6836bcb6 100644
--- a/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx
+++ b/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx
@@ -46,6 +46,7 @@ export const FilterTitle = styled.div`
         }
       }
       &.errored div, &.errored .warning {
+        align-items: center;
         color: ${theme.colors.error.base};
       }
   `}
@@ -120,7 +121,7 @@ const FilterTitleContainer = forwardRef<HTMLDivElement, Props>(
               {isRemoved ? t('(Removed)') : getFilterTitle(id)}
             </div>
             {!removedFilters[id] && isErrored && (
-              <StyledWarning className="warning" />
+              <StyledWarning className="warning" iconSize="s" />
             )}
             {isRemoved && (
               <span
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx b/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx
index 72d4197accf08937f7e9c851bab543c15d6f4737..888e230350cc98189c235d03f5aa33f68f8f6c07 100644
--- a/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx
+++ b/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx
@@ -99,6 +99,7 @@ export function ColumnSelect({
             'columns.column_name',
             'columns.is_dttm',
             'columns.type_generic',
+            'columns.filterable',
           ],
         })}`,
       })
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.test.tsx b/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.test.tsx
index 6d6966f7096072ff27c937de6827e96a81d579e5..65f3aa084379dc347b0a0cf4e220e5e2870e979e 100644
--- a/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.test.tsx
+++ b/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.test.tsx
@@ -20,11 +20,38 @@ import { Filter, NativeFilterType } from '@superset-ui/core';
 import { render, screen, userEvent } from 'spec/helpers/testing-library';
 import { FormInstance } from 'src/components';
 import getControlItemsMap, { ControlItemsProps } from './getControlItemsMap';
-import { getControlItems, setNativeFilterFieldValues } from './utils';
+import {
+  getControlItems,
+  setNativeFilterFieldValues,
+  doesColumnMatchFilterType,
+} from './utils';
 
 jest.mock('./utils', () => ({
   getControlItems: jest.fn(),
   setNativeFilterFieldValues: jest.fn(),
+  doesColumnMatchFilterType: jest.fn(),
+}));
+
+// Mock ColumnSelect to test filterValues logic
+jest.mock('./ColumnSelect', () => ({
+  ColumnSelect: ({
+    filterValues,
+  }: {
+    filterValues: (column: any) => boolean;
+  }) => {
+    const columns = [
+      { name: 'col1', filterable: true },
+      { name: 'col2', filterable: false },
+      { name: 'col3', filterable: true },
+    ];
+    return (
+      <>
+        {columns.filter(filterValues).map(column => (
+          <div key={column.name}>{column.name}</div>
+        ))}
+      </>
+    );
+  },
 }));
 
 const formMock: FormInstance = {
@@ -62,7 +89,7 @@ const filterMock: Filter = {
   description: '',
 };
 
-const createProps: () => ControlItemsProps = () => ({
+const createProps = (): ControlItemsProps => ({
   expanded: false,
   datasetId: 1,
   disabled: false,
@@ -179,3 +206,44 @@ test('Clicking on checkbox when resetConfig:false', () => {
   expect(props.forceUpdate).toHaveBeenCalled();
   expect(setNativeFilterFieldValues).not.toHaveBeenCalled();
 });
+
+describe('ColumnSelect filterValues behavior', () => {
+  beforeEach(() => {
+    (getControlItems as jest.Mock).mockReturnValue([
+      {
+        name: 'groupby',
+        config: { label: 'Column', multiple: false, required: false },
+      },
+    ]);
+  });
+
+  test('only renders filterable columns when doesColumnMatchFilterType returns true', () => {
+    (doesColumnMatchFilterType as jest.Mock).mockReturnValue(true);
+    const props = {
+      ...createProps(),
+      formFilter: { filterType: 'filterType' },
+    };
+    // @ts-ignore: bypass incomplete formFilter type for test
+    const element = getControlItemsMap(props).mainControlItems.groupby
+      .element as React.ReactElement;
+    render(element);
+    expect(screen.getByText('col1')).toBeInTheDocument();
+    expect(screen.getByText('col3')).toBeInTheDocument();
+    expect(screen.queryByText('col2')).not.toBeInTheDocument();
+  });
+
+  test('renders no columns when doesColumnMatchFilterType returns false', () => {
+    (doesColumnMatchFilterType as jest.Mock).mockReturnValue(false);
+    const props = {
+      ...createProps(),
+      formFilter: { filterType: 'filterType' },
+    };
+    // @ts-ignore: bypass incomplete formFilter type for test
+    const element = getControlItemsMap(props).mainControlItems.groupby
+      .element as React.ReactElement;
+    render(element);
+    expect(screen.queryByText('col1')).not.toBeInTheDocument();
+    expect(screen.queryByText('col3')).not.toBeInTheDocument();
+    expect(screen.queryByText('col2')).not.toBeInTheDocument();
+  });
+});
diff --git a/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx b/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx
index ed92809988d6ec09f33950e7207ce405014e7050..cad2f825f181b85d31ac0ca290c147d47981a17c 100644
--- a/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx
+++ b/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx
@@ -131,7 +131,10 @@ export default function getControlItemsMap({
               filterId={filterId}
               datasetId={datasetId}
               filterValues={column =>
-                doesColumnMatchFilterType(formFilter?.filterType || '', column)
+                doesColumnMatchFilterType(
+                  formFilter?.filterType || '',
+                  column,
+                ) && !!column?.filterable
               }
               onChange={() => {
                 // We need reset default value when column changed
diff --git a/superset-frontend/src/dashboard/constants.ts b/superset-frontend/src/dashboard/constants.ts
index d512c2a8a6cc33c05ca2141408fe2def844c4da0..60c884751323ad29633beb13ccbd5cf2cdb1b2ef 100644
--- a/superset-frontend/src/dashboard/constants.ts
+++ b/superset-frontend/src/dashboard/constants.ts
@@ -29,7 +29,6 @@ export const PLACEHOLDER_DATASOURCE: Datasource = {
   column_types: [],
   metrics: [],
   column_formats: {},
-  currency_formats: {},
   verbose_map: {},
   main_dttm_col: '',
   description: '',
diff --git a/superset-frontend/src/dashboard/util/isEmbedded.ts b/superset-frontend/src/dashboard/util/isEmbedded.ts
new file mode 100644
index 0000000000000000000000000000000000000000..3c8d30fcce33e45fd2138ffcd700b0d95283a4ed
--- /dev/null
+++ b/superset-frontend/src/dashboard/util/isEmbedded.ts
@@ -0,0 +1,26 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+export const isEmbedded = () => {
+  try {
+    return window.self !== window.top || window.frameElement !== null;
+  } catch (e) {
+    return true;
+  }
+};
diff --git a/superset-frontend/src/dataMask/reducer.ts b/superset-frontend/src/dataMask/reducer.ts
index c13b23fa433d04233ccf35a7baca3eeabd109bbb..bb5c3a5d1c306b7834d8adb2468b65cab9a4b539 100644
--- a/superset-frontend/src/dataMask/reducer.ts
+++ b/superset-frontend/src/dataMask/reducer.ts
@@ -27,10 +27,13 @@ import {
   Filter,
   FilterConfiguration,
   Filters,
+  FilterState,
+  ExtraFormData,
 } from '@superset-ui/core';
 import { NATIVE_FILTER_PREFIX } from 'src/dashboard/components/nativeFilters/FiltersConfigModal/utils';
 import { HYDRATE_DASHBOARD } from 'src/dashboard/actions/hydrate';
 import { SaveFilterChangesType } from 'src/dashboard/components/nativeFilters/FiltersConfigModal/types';
+import { isEqual } from 'lodash';
 import {
   AnyDataMaskAction,
   CLEAR_DATA_MASK_STATE,
@@ -39,6 +42,11 @@ import {
 } from './actions';
 import { areObjectsEqual } from '../reduxUtils';
 
+type FilterWithExtaFromData = Filter & {
+  extraFormData?: ExtraFormData;
+  filterState?: FilterState;
+};
+
 export function getInitialDataMask(
   id?: string | number,
   moreProps: DataMask = {},
@@ -106,10 +114,27 @@ function updateDataMaskForFilterChanges(
   });
 
   filterChanges.modified.forEach((filter: Filter) => {
+    const existingFilter = draftDataMask[filter.id] as FilterWithExtaFromData;
+
+    // Check if targets are equal
+    const areTargetsEqual = isEqual(existingFilter?.targets, filter?.targets);
+
+    // Preserve state only if filter exists, has enableEmptyFilter=true and targets match
+    const shouldPreserveState =
+      existingFilter &&
+      areTargetsEqual &&
+      (filter.controlValues?.enableEmptyFilter ||
+        filter.controlValues?.defaultToFirstItem);
+
     mergedDataMask[filter.id] = {
       ...getInitialDataMask(filter.id),
       ...filter.defaultDataMask,
       ...filter,
+      // Preserve extraFormData and filterState if conditions match
+      ...(shouldPreserveState && {
+        extraFormData: existingFilter.extraFormData,
+        filterState: existingFilter.filterState,
+      }),
     };
   });
 
diff --git a/superset-frontend/src/database/actions.ts b/superset-frontend/src/database/actions.ts
new file mode 100644
index 0000000000000000000000000000000000000000..ba98d0cd49ccf70a75235dfeb53e4d1335340faf
--- /dev/null
+++ b/superset-frontend/src/database/actions.ts
@@ -0,0 +1,68 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import { makeApi } from '@superset-ui/core';
+import { ThunkDispatch } from 'redux-thunk';
+import { AnyAction } from 'redux';
+import { QueryExecutePayload, QueryExecuteResponse } from './types';
+
+export const executeQueryApi = makeApi<
+  QueryExecutePayload,
+  QueryExecuteResponse
+>({
+  method: 'POST',
+  endpoint: '/api/v1/sqllab/execute',
+});
+
+export function setQueryIsLoading(isLoading: boolean) {
+  return {
+    type: 'SET_QUERY_IS_LOADING',
+    payload: isLoading,
+  };
+}
+export function setQueryResult(queryResult: QueryExecuteResponse) {
+  return {
+    type: 'SET_QUERY_RESULT',
+    payload: queryResult,
+  };
+}
+export function resetDatabaseState() {
+  return {
+    type: 'RESET_DATABASE_STATE',
+  };
+}
+export function setQueryError(error: string) {
+  return {
+    type: 'SET_QUERY_ERROR',
+    payload: error,
+  };
+}
+export function executeQuery(payload: QueryExecutePayload) {
+  return async function (dispatch: ThunkDispatch<any, undefined, AnyAction>) {
+    try {
+      dispatch(setQueryIsLoading(true));
+      const result = await executeQueryApi(payload);
+      dispatch(setQueryResult(result as QueryExecuteResponse));
+    } catch (error) {
+      dispatch(setQueryError(error.message));
+    } finally {
+      dispatch(setQueryIsLoading(false));
+    }
+  };
+}
diff --git a/superset-frontend/src/database/reducers.ts b/superset-frontend/src/database/reducers.ts
new file mode 100644
index 0000000000000000000000000000000000000000..7541494b8394affd233b8427588364838439dc9b
--- /dev/null
+++ b/superset-frontend/src/database/reducers.ts
@@ -0,0 +1,56 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import type { QueryAdhocState } from './types';
+
+const initialState: QueryAdhocState = {
+  isLoading: null,
+  sql: null,
+  queryResult: null,
+  error: null,
+};
+
+export default function databaseReducer(
+  state: QueryAdhocState = initialState,
+  action: any,
+): QueryAdhocState {
+  switch (action.type) {
+    case 'SET_QUERY_IS_LOADING':
+      return {
+        ...state,
+        isLoading: action.payload,
+      };
+    case 'SET_QUERY_RESULT':
+      return {
+        ...state,
+        sql: action.payload.query.sql ?? '',
+        queryResult: action.payload,
+        error: null,
+      };
+    case 'SET_QUERY_ERROR':
+      return {
+        ...initialState,
+        error: action.payload,
+      };
+    case 'RESET_DATABASE_STATE':
+      return initialState;
+    default:
+      return state;
+  }
+}
diff --git a/superset-frontend/src/database/types.ts b/superset-frontend/src/database/types.ts
new file mode 100644
index 0000000000000000000000000000000000000000..8abfeca5d6841fd9cb43e17be3ddb146edb5bde2
--- /dev/null
+++ b/superset-frontend/src/database/types.ts
@@ -0,0 +1,57 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+export interface QueryExecutePayload {
+  client_id: string;
+  database_id: number;
+  json: boolean;
+  runAsync: boolean;
+  catalog: string | null;
+  schema: string;
+  sql: string;
+  tmp_table_name: string;
+  select_as_cta: boolean;
+  ctas_method: string;
+  queryLimit: number;
+  expand_data: boolean;
+}
+export interface Column {
+  name: string;
+  type: string;
+  is_dttm: boolean;
+  type_generic: number;
+  is_hidden: boolean;
+  column_name: string;
+}
+export interface QueryExecuteResponse {
+  status: string;
+  query_id: string;
+  data: any[];
+  columns: Column[];
+  selected_columns: Column[];
+  expanded_columns: Column[];
+  query: any;
+}
+
+export interface QueryAdhocState {
+  isLoading: boolean | null;
+  sql: string | null;
+  queryResult: QueryExecuteResponse | null;
+  error: string | null;
+}
diff --git a/superset-frontend/src/embedded/index.tsx b/superset-frontend/src/embedded/index.tsx
index deddab121e9a3d6e983dbdeb9d1e7cee931abbe9..1932ac005d30cb4b53bd085564345f01a29fd415 100644
--- a/superset-frontend/src/embedded/index.tsx
+++ b/superset-frontend/src/embedded/index.tsx
@@ -23,7 +23,7 @@ import ReactDOM from 'react-dom';
 import { BrowserRouter as Router, Route } from 'react-router-dom';
 import { makeApi, t, logging } from '@superset-ui/core';
 import Switchboard from '@superset-ui/switchboard';
-import getBootstrapData from 'src/utils/getBootstrapData';
+import getBootstrapData, { applicationRoot } from 'src/utils/getBootstrapData';
 import setupClient from 'src/setup/setupClient';
 import setupPlugins from 'src/setup/setupPlugins';
 import { useUiConfig } from 'src/components/UiConfigContext';
@@ -94,7 +94,7 @@ const EmbeddedRoute = () => (
 );
 
 const EmbeddedApp = () => (
-  <Router>
+  <Router basename={applicationRoot()}>
     {/* todo (embedded) remove this line after uuids are deployed */}
     <Route path="/dashboard/:idOrSlug/embedded/" component={EmbeddedRoute} />
     <Route path="/embedded/:uuid/" component={EmbeddedRoute} />
@@ -187,6 +187,7 @@ function start() {
  */
 function setupGuestClient(guestToken: string) {
   setupClient({
+    appRoot: applicationRoot(),
     guestToken,
     guestTokenHeaderName: bootstrapData.config?.GUEST_TOKEN_HEADER_NAME,
     unauthorizedHandler: guestUnauthorizedHandler,
diff --git a/superset-frontend/src/explore/actions/datasourcesActions.test.ts b/superset-frontend/src/explore/actions/datasourcesActions.test.ts
index cf599c6b4f1e2326523101f625d211178a053251..ace4913c9b4ee777882adc8b829b6025cbe79955 100644
--- a/superset-frontend/src/explore/actions/datasourcesActions.test.ts
+++ b/superset-frontend/src/explore/actions/datasourcesActions.test.ts
@@ -41,7 +41,6 @@ const CURRENT_DATASOURCE = {
   columns: [],
   metrics: [],
   column_formats: {},
-  currency_formats: {},
   verbose_map: {},
   main_dttm_col: '__timestamp',
   // eg. ['["ds", true]', 'ds [asc]']
@@ -55,7 +54,6 @@ const NEW_DATASOURCE = {
   columns: [],
   metrics: [],
   column_formats: {},
-  currency_formats: {},
   verbose_map: {},
   main_dttm_col: '__timestamp',
   // eg. ['["ds", true]', 'ds [asc]']
diff --git a/superset-frontend/src/explore/components/ExploreViewContainer/index.jsx b/superset-frontend/src/explore/components/ExploreViewContainer/index.jsx
index 96c239b9cf40d99bffc611b12e7c73740f53a85b..822a54ecafe48ce5cf3e5b14596cbe5ef386e2b1 100644
--- a/superset-frontend/src/explore/components/ExploreViewContainer/index.jsx
+++ b/superset-frontend/src/explore/components/ExploreViewContainer/index.jsx
@@ -734,6 +734,17 @@ const retainQueryModeRequirements = hiddenFormData =>
     key => !QUERY_MODE_REQUISITES.has(key),
   );
 
+function patchBigNumberTotalFormData(form_data, slice) {
+  if (
+    form_data.viz_type === 'big_number_total' &&
+    !form_data.subtitle &&
+    slice?.form_data?.subheader
+  ) {
+    return { ...form_data, subtitle: slice.form_data.subheader };
+  }
+  return form_data;
+}
+
 function mapStateToProps(state) {
   const {
     explore,
@@ -768,6 +779,25 @@ function mapStateToProps(state) {
     dashboardId = undefined;
   }
 
+  if (
+    form_data.viz_type === 'big_number_total' &&
+    slice?.form_data?.subheader &&
+    (!controls.subtitle?.value || controls.subtitle.value === '')
+  ) {
+    controls.subtitle = {
+      ...controls.subtitle,
+      value: slice.form_data.subheader,
+    };
+    if (slice?.form_data?.subheader_font_size) {
+      controls.subtitle_font_size = {
+        ...controls.subtitle_font_size,
+        value: slice.form_data.subheader_font_size,
+      };
+    }
+  }
+
+  const patchedFormData = patchBigNumberTotalFormData(form_data, slice);
+
   return {
     isDatasourceMetaLoading: explore.isDatasourceMetaLoading,
     datasource,
@@ -789,7 +819,7 @@ function mapStateToProps(state) {
     slice,
     sliceName: explore.sliceName ?? slice?.slice_name ?? null,
     triggerRender: explore.triggerRender,
-    form_data,
+    form_data: patchedFormData,
     table_name: datasource.table_name,
     vizType: form_data.viz_type,
     standalone: !!explore.standalone,
diff --git a/superset-frontend/src/explore/components/controls/NumberControl/NumberControl.test.tsx b/superset-frontend/src/explore/components/controls/NumberControl/NumberControl.test.tsx
new file mode 100644
index 0000000000000000000000000000000000000000..92e41f437a9c1adabaa6a692413f3e4da52cd73c
--- /dev/null
+++ b/superset-frontend/src/explore/components/controls/NumberControl/NumberControl.test.tsx
@@ -0,0 +1,67 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { render, screen, userEvent } from 'spec/helpers/testing-library';
+import NumberControl from '.';
+
+const mockedProps = {
+  min: -5,
+  max: 10,
+  step: 1,
+  default: 0,
+};
+
+test('render', () => {
+  const { container } = render(<NumberControl {...mockedProps} />);
+  expect(container).toBeInTheDocument();
+});
+
+test('type number', async () => {
+  const props = {
+    ...mockedProps,
+    onChange: jest.fn(),
+  };
+  render(<NumberControl {...props} />);
+  const input = screen.getByRole('spinbutton');
+  await userEvent.type(input, '9');
+  expect(props.onChange).toHaveBeenCalledTimes(1);
+  expect(props.onChange).toHaveBeenLastCalledWith(9);
+});
+
+test('type >max', async () => {
+  const props = {
+    ...mockedProps,
+    onChange: jest.fn(),
+  };
+  render(<NumberControl {...props} />);
+  const input = screen.getByRole('spinbutton');
+  await userEvent.type(input, '20');
+  expect(props.onChange).toHaveBeenCalledTimes(1);
+  expect(props.onChange).toHaveBeenLastCalledWith(2);
+});
+
+test('type NaN', async () => {
+  const props = {
+    ...mockedProps,
+    onChange: jest.fn(),
+  };
+  render(<NumberControl {...props} />);
+  const input = screen.getByRole('spinbutton');
+  await userEvent.type(input, 'not a number');
+  expect(props.onChange).toHaveBeenCalledTimes(0);
+});
diff --git a/superset-frontend/src/explore/components/controls/NumberControl/index.tsx b/superset-frontend/src/explore/components/controls/NumberControl/index.tsx
new file mode 100644
index 0000000000000000000000000000000000000000..e06fd0f42643420f0f4bb4200fb0e7cd27e79281
--- /dev/null
+++ b/superset-frontend/src/explore/components/controls/NumberControl/index.tsx
@@ -0,0 +1,78 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { styled } from '@superset-ui/core';
+import { InputNumber } from 'src/components/Input';
+import ControlHeader, { ControlHeaderProps } from '../../ControlHeader';
+
+type NumberValueType = number | undefined;
+
+export interface NumberControlProps extends ControlHeaderProps {
+  onChange?: (value: NumberValueType) => void;
+  value?: NumberValueType;
+  label?: string;
+  description?: string;
+  min?: number;
+  max?: number;
+  step?: number;
+  placeholder?: string;
+  disabled?: boolean;
+}
+
+const FullWidthDiv = styled.div`
+  width: 100%;
+`;
+
+const FullWidthInputNumber = styled(InputNumber)`
+  width: 100%;
+`;
+
+function parseValue(value: string | number | null | undefined) {
+  if (value === null || value === undefined || value === '') {
+    return undefined;
+  }
+  const num = Number(value);
+  return Number.isNaN(num) ? undefined : num;
+}
+
+export default function NumberControl({
+  min,
+  max,
+  step,
+  placeholder,
+  value,
+  onChange,
+  disabled,
+  ...rest
+}: NumberControlProps) {
+  return (
+    <FullWidthDiv>
+      <ControlHeader {...rest} />
+      <FullWidthInputNumber
+        min={min}
+        max={max}
+        step={step}
+        placeholder={placeholder}
+        value={value}
+        onChange={value => onChange?.(parseValue(value))}
+        disabled={disabled}
+        aria-label={rest.label}
+      />
+    </FullWidthDiv>
+  );
+}
diff --git a/superset-frontend/src/explore/components/controls/index.js b/superset-frontend/src/explore/components/controls/index.js
index 055093a72e8449697752115142f648f47a831ae7..95dd6f25f0bf3d233c6443a63530ce1e735e026d 100644
--- a/superset-frontend/src/explore/components/controls/index.js
+++ b/superset-frontend/src/explore/components/controls/index.js
@@ -53,6 +53,7 @@ import { ComparisonRangeLabel } from './ComparisonRangeLabel';
 import LayerConfigsControl from './LayerConfigsControl/LayerConfigsControl';
 import MapViewControl from './MapViewControl/MapViewControl';
 import ZoomConfigControl from './ZoomConfigControl/ZoomConfigControl';
+import NumberControl from './NumberControl';
 
 const controlMap = {
   AnnotationLayerControl,
@@ -90,6 +91,7 @@ const controlMap = {
   ComparisonRangeLabel,
   TimeOffsetControl,
   ZoomConfigControl,
+  NumberControl,
   ...sharedControlComponents,
 };
 export default controlMap;
diff --git a/superset-frontend/src/explore/controlUtils/controlUtils.test.tsx b/superset-frontend/src/explore/controlUtils/controlUtils.test.tsx
index e623fcb3f7ab06e656c933139fc4b2ec30d7fa8e..24fb753b8f0e71de9e32ee59984e013f7224fe12 100644
--- a/superset-frontend/src/explore/controlUtils/controlUtils.test.tsx
+++ b/superset-frontend/src/explore/controlUtils/controlUtils.test.tsx
@@ -56,7 +56,6 @@ describe('controlUtils', () => {
         { metric_name: 'second', uuid: '2' },
       ],
       column_formats: {},
-      currency_formats: {},
       verbose_map: {},
       main_dttm_col: '',
       datasource_name: '1__table',
diff --git a/superset-frontend/src/explore/controlUtils/getControlValuesCompatibleWithDatasource.test.ts b/superset-frontend/src/explore/controlUtils/getControlValuesCompatibleWithDatasource.test.ts
index b26ba8c1b4abbdd852db3a00a02661b923704584..cd8444346f5182db6ab5ea29f2a030ba3ae14010 100644
--- a/superset-frontend/src/explore/controlUtils/getControlValuesCompatibleWithDatasource.test.ts
+++ b/superset-frontend/src/explore/controlUtils/getControlValuesCompatibleWithDatasource.test.ts
@@ -35,7 +35,6 @@ const sampleDatasource: Dataset = {
   ],
   metrics: [{ metric_name: 'saved_metric_2', uuid: '1' }],
   column_formats: {},
-  currency_formats: {},
   verbose_map: {},
   main_dttm_col: '',
   datasource_name: 'Sample Dataset',
diff --git a/superset-frontend/src/explore/fixtures.tsx b/superset-frontend/src/explore/fixtures.tsx
index 211519590e9cb0ca5e1f6898fd53d629dddc3540..1e4afe9b613c4d76ed7f18fb5ffd62b302575aa8 100644
--- a/superset-frontend/src/explore/fixtures.tsx
+++ b/superset-frontend/src/explore/fixtures.tsx
@@ -138,7 +138,6 @@ export const exploreInitialData: ExplorePageInitialData = {
       { metric_name: 'second', uuid: '2' },
     ],
     column_formats: {},
-    currency_formats: {},
     verbose_map: {},
     main_dttm_col: '',
     datasource_name: '8__table',
@@ -157,7 +156,6 @@ export const fallbackExploreInitialData: ExplorePageInitialData = {
     columns: [],
     metrics: [],
     column_formats: {},
-    currency_formats: {},
     verbose_map: {},
     main_dttm_col: '',
     owners: [],
diff --git a/superset-frontend/src/explore/reducers/exploreReducer.js b/superset-frontend/src/explore/reducers/exploreReducer.js
index 2677c1e3ff55816409bc7a0d41ab4b032ec6ea27..156459353e82c99b171367cec8a5229c402ea460 100644
--- a/superset-frontend/src/explore/reducers/exploreReducer.js
+++ b/superset-frontend/src/explore/reducers/exploreReducer.js
@@ -214,6 +214,52 @@ export default function exploreReducer(state = {}, action) {
         currentControlsState = transformed.controlsState;
       }
 
+      const dependantControls = Object.entries(state.controls)
+        .filter(
+          ([, item]) =>
+            Array.isArray(item?.validationDependancies) &&
+            item.validationDependancies.includes(controlName),
+        )
+        .map(([key, item]) => ({
+          controlState: item,
+          dependantControlName: key,
+        }));
+
+      let updatedControlStates = {};
+      if (dependantControls.length > 0) {
+        const updatedControls = dependantControls.map(
+          ({ controlState, dependantControlName }) => {
+            // overwrite state form data with current control value as the redux state will not
+            // have latest action value
+            const overWrittenState = {
+              ...state,
+              form_data: {
+                ...state.form_data,
+                [controlName]: action.value,
+              },
+            };
+
+            return {
+              // Re run validation for dependant controls
+              controlState: getControlStateFromControlConfig(
+                controlState,
+                overWrittenState,
+                controlState?.value,
+              ),
+              dependantControlName,
+            };
+          },
+        );
+
+        updatedControlStates = updatedControls.reduce(
+          (acc, { controlState, dependantControlName }) => {
+            acc[dependantControlName] = { ...controlState };
+            return acc;
+          },
+          {},
+        );
+      }
+
       return {
         ...state,
         form_data: new_form_data,
@@ -227,6 +273,7 @@ export default function exploreReducer(state = {}, action) {
             },
           }),
           ...rerenderedControls,
+          ...updatedControlStates,
         },
       };
     },
diff --git a/superset-frontend/src/features/datasets/types.ts b/superset-frontend/src/features/datasets/types.ts
index 63f1678d7991634f8d2f334d9c34daa01376645e..3e91e8effa71e508d00220f06178cc224d4e0dcf 100644
--- a/superset-frontend/src/features/datasets/types.ts
+++ b/superset-frontend/src/features/datasets/types.ts
@@ -62,6 +62,7 @@ export type DatasetObject = {
   filter_select_enabled?: boolean;
   fetch_values_predicate?: string;
   schema?: string;
+  catalog?: string;
   description: string | null;
   main_dttm_col: string;
   offset?: number;
@@ -78,7 +79,6 @@ export type DatasetObject = {
   always_filter_main_dttm: boolean;
   type: DatasourceType;
   column_formats: Record<string, string>;
-  currency_formats: Record<string, Currency>;
   datasource_name: string | null;
   verbose_map: Record<string, string>;
 };
diff --git a/superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx b/superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx
index 0efb93a89bd51d2dbaedee6b8599eb0d9e9dac4d..67911ca29648cf601bfe4216cd037ad63cb182bb 100644
--- a/superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx
+++ b/superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx
@@ -17,7 +17,7 @@
  * under the License.
  */
 /* eslint-disable no-param-reassign */
-import { useCallback, useEffect, useMemo, useState } from 'react';
+import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
 import {
   AppSection,
   DataMask,
@@ -84,7 +84,10 @@ function reducer(draft: DataMask, action: DataMaskAction) {
   }
 }
 
-const StyledSpace = styled(Space)<{ $inverseSelection: boolean }>`
+const StyledSpace = styled(Space)<{
+  inverseSelection: boolean;
+  appSection: AppSection;
+}>`
   display: flex;
   align-items: center;
   width: 100%;
@@ -96,12 +99,17 @@ const StyledSpace = styled(Space)<{ $inverseSelection: boolean }>`
 
   &.ant-space {
     .ant-space-item {
-      width: ${({ $inverseSelection }) =>
-        !$inverseSelection ? '100%' : 'auto'};
+      width: ${({ inverseSelection, appSection }) =>
+        !inverseSelection || appSection === AppSection.FilterConfigModal
+          ? '100%'
+          : 'auto'};
     }
   }
 `;
 
+// Keep track of orientation changes outside component with filter ID
+const orientationMap = new Map<string, FilterBarOrientation>();
+
 export default function PluginFilterSelect(props: PluginFilterSelectProps) {
   const {
     coltypeMap,
@@ -158,6 +166,30 @@ export default function PluginFilterSelect(props: PluginFilterSelectProps) {
       : filterState?.excludeFilterValues,
   );
 
+  const prevExcludeFilterValues = useRef(excludeFilterValues);
+
+  const hasOnlyOrientationChanged = useRef(false);
+
+  useEffect(() => {
+    // Get previous orientation for this specific filter
+    const previousOrientation = orientationMap.get(formData.nativeFilterId);
+
+    // Check if only orientation changed for this filter
+    if (
+      previousOrientation !== undefined &&
+      previousOrientation !== filterBarOrientation
+    ) {
+      hasOnlyOrientationChanged.current = true;
+    } else {
+      hasOnlyOrientationChanged.current = false;
+    }
+
+    // Update orientation for this filter
+    if (filterBarOrientation) {
+      orientationMap.set(formData.nativeFilterId, filterBarOrientation);
+    }
+  }, [filterBarOrientation]);
+
   const updateDataMask = useCallback(
     (values: SelectValue) => {
       const emptyFilter =
@@ -287,35 +319,44 @@ export default function PluginFilterSelect(props: PluginFilterSelectProps) {
     [formData.sortAscending],
   );
 
+  // Use effect for initialisation for filter plugin
+  // this should run only once when filter is configured & saved
+  // & shouldnt run when the component is remounted on change of
+  // orientation of filter bar
   useEffect(() => {
-    if (defaultToFirstItem && filterState.value === undefined) {
-      // initialize to first value if set to default to first item
+    // Skip if only orientation changed
+    if (hasOnlyOrientationChanged.current) {
+      return;
+    }
+
+    // Case 1: Handle disabled state first
+    if (isDisabled) {
+      updateDataMask(null);
+      return;
+    }
+
+    // Case 2: Handle the default to first Value case
+    if (defaultToFirstItem) {
+      // Set to first item if defaultToFirstItem is true
       const firstItem: SelectValue = data[0]
         ? (groupby.map(col => data[0][col]) as string[])
         : null;
-      // firstItem[0] !== undefined for a case when groupby changed but new data still not fetched
-      // TODO: still need repopulate default value in config modal when column changed
       if (firstItem?.[0] !== undefined) {
         updateDataMask(firstItem);
       }
-    } else if (isDisabled) {
-      // empty selection if filter is disabled
-      updateDataMask(null);
-    } else {
-      // reset data mask based on filter state
-      updateDataMask(filterState.value);
+    } else if (formData?.defaultValue) {
+      // Case 3 : Handle defalut value case
+      updateDataMask(formData.defaultValue);
     }
   }, [
-    col,
     isDisabled,
-    defaultToFirstItem,
     enableEmptyFilter,
-    inverseSelection,
-    excludeFilterValues,
-    updateDataMask,
+    defaultToFirstItem,
+    formData?.defaultValue,
     data,
     groupby,
-    JSON.stringify(filterState.value),
+    col,
+    inverseSelection,
   ]);
 
   useEffect(() => {
@@ -323,23 +364,26 @@ export default function PluginFilterSelect(props: PluginFilterSelectProps) {
   }, [JSON.stringify(dataMask)]);
 
   useEffect(() => {
-    dispatchDataMask({
-      type: 'filterState',
-      extraFormData: getSelectExtraFormData(
-        col,
-        filterState.value,
-        !filterState.value?.length,
-        excludeFilterValues && inverseSelection,
-      ),
-      filterState: {
-        ...(filterState as {
-          value: SelectValue;
-          label?: string;
-          excludeFilterValues?: boolean;
-        }),
-        excludeFilterValues,
-      },
-    });
+    if (prevExcludeFilterValues.current !== excludeFilterValues) {
+      dispatchDataMask({
+        type: 'filterState',
+        extraFormData: getSelectExtraFormData(
+          col,
+          filterState.value,
+          !filterState.value?.length,
+          excludeFilterValues && inverseSelection,
+        ),
+        filterState: {
+          ...(filterState as {
+            value: SelectValue;
+            label?: string;
+            excludeFilterValues?: boolean;
+          }),
+          excludeFilterValues,
+        },
+      });
+      prevExcludeFilterValues.current = excludeFilterValues;
+    }
   }, [excludeFilterValues]);
 
   const handleExclusionToggle = (value: string) => {
@@ -352,8 +396,11 @@ export default function PluginFilterSelect(props: PluginFilterSelectProps) {
         validateStatus={filterState.validateStatus}
         extra={formItemExtra}
       >
-        <StyledSpace $inverseSelection={inverseSelection}>
-          {inverseSelection && (
+        <StyledSpace
+          appSection={appSection}
+          inverseSelection={inverseSelection}
+        >
+          {appSection !== AppSection.FilterConfigModal && inverseSelection && (
             <Select
               className="exclude-select"
               value={`${excludeFilterValues}`}
diff --git a/superset-frontend/src/filters/components/Select/controlPanel.ts b/superset-frontend/src/filters/components/Select/controlPanel.ts
index a43e3bd2ae656335b886cec55341177534eb47dc..954c9a853c9cc7bfbad43e7ac3ad42a8233f4a86 100644
--- a/superset-frontend/src/filters/components/Select/controlPanel.ts
+++ b/superset-frontend/src/filters/components/Select/controlPanel.ts
@@ -74,7 +74,6 @@ const config: ControlPanelConfig = {
               type: 'CheckboxControl',
               label: t('Allow creation of new values'),
               default: creatable,
-              resetConfig: true,
               affectsDataMask: true,
               renderTrigger: true,
             },
diff --git a/superset-frontend/src/utils/getDatasourceUid.test.ts b/superset-frontend/src/utils/getDatasourceUid.test.ts
index ed7ec6256bb5027c06e7c98a1eb5a99003f16605..d3a629efcfed309b3626dcfb4064d9e3308998e3 100644
--- a/superset-frontend/src/utils/getDatasourceUid.test.ts
+++ b/superset-frontend/src/utils/getDatasourceUid.test.ts
@@ -26,7 +26,6 @@ const TEST_DATASOURCE = {
   columns: [],
   metrics: [],
   column_formats: {},
-  currency_formats: {},
   verbose_map: {},
   main_dttm_col: '__timestamp',
   // eg. ['["ds", true]', 'ds [asc]']
diff --git a/superset-frontend/src/views/store.ts b/superset-frontend/src/views/store.ts
index 9fcdf53e9d2954a8a77fdaa88a2b59a67ea90358..6498d4116e72f454eb4833af511448f60f416762 100644
--- a/superset-frontend/src/views/store.ts
+++ b/superset-frontend/src/views/store.ts
@@ -38,7 +38,6 @@ import logger from 'src/middleware/loggerMiddleware';
 import saveModal from 'src/explore/reducers/saveModalReducer';
 import explore from 'src/explore/reducers/exploreReducer';
 import exploreDatasources from 'src/explore/reducers/datasourcesReducer';
-
 import { persistSqlLabStateEnhancer } from 'src/SqlLab/middlewares/persistSqlLabStateEnhancer';
 import sqlLabReducer from 'src/SqlLab/reducers/sqlLab';
 import getInitialState from 'src/SqlLab/reducers/getInitialState';
@@ -57,6 +56,7 @@ import { AnyDatasourcesAction } from 'src/explore/actions/datasourcesActions';
 import { HydrateExplore } from 'src/explore/actions/hydrateExplore';
 import getBootstrapData from 'src/utils/getBootstrapData';
 import { Dataset } from '@superset-ui/chart-controls';
+import databaseReducer from 'src/database/reducers';
 
 // Some reducers don't do anything, and redux is just used to reference the initial "state".
 // This may change later, as the client application takes on more responsibilities.
@@ -139,6 +139,7 @@ const reducers = {
   reports,
   saveModal,
   explore,
+  database: databaseReducer,
 };
 
 /* In some cases the jinja template injects two separate React apps into basic.html
diff --git a/superset-websocket/package-lock.json b/superset-websocket/package-lock.json
index 527407913363a2b4a2ec6cfa4db7314a315fc270..1c637770211d811897deffc667bc9c7afc9e23ac 100644
--- a/superset-websocket/package-lock.json
+++ b/superset-websocket/package-lock.json
@@ -14,12 +14,12 @@
         "ioredis": "^4.28.0",
         "jsonwebtoken": "^9.0.2",
         "lodash": "^4.17.21",
-        "uuid": "^11.0.2",
+        "uuid": "^11.1.0",
         "winston": "^3.17.0",
         "ws": "^8.18.0"
       },
       "devDependencies": {
-        "@eslint/js": "^9.16.0",
+        "@eslint/js": "^9.25.1",
         "@types/cookie": "^0.6.0",
         "@types/eslint__js": "^8.42.3",
         "@types/ioredis": "^4.27.8",
@@ -826,10 +826,11 @@
       }
     },
     "node_modules/@eslint/js": {
-      "version": "9.17.0",
-      "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz",
-      "integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==",
+      "version": "9.25.1",
+      "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.25.1.tgz",
+      "integrity": "sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==",
       "dev": true,
+      "license": "MIT",
       "engines": {
         "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
       }
@@ -3279,6 +3280,16 @@
         "url": "https://opencollective.com/eslint"
       }
     },
+    "node_modules/eslint/node_modules/@eslint/js": {
+      "version": "9.17.0",
+      "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz",
+      "integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==",
+      "dev": true,
+      "license": "MIT",
+      "engines": {
+        "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+      }
+    },
     "node_modules/eslint/node_modules/escape-string-regexp": {
       "version": "4.0.0",
       "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
@@ -6811,13 +6822,14 @@
       "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
     },
     "node_modules/uuid": {
-      "version": "11.0.2",
-      "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.2.tgz",
-      "integrity": "sha512-14FfcOJmqdjbBPdDjFQyk/SdT4NySW4eM0zcG+HqbHP5jzuH56xO3J1DGhgs/cEMCfwYi3HQI1gnTO62iaG+tQ==",
+      "version": "11.1.0",
+      "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz",
+      "integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==",
       "funding": [
         "https://github.com/sponsors/broofa",
         "https://github.com/sponsors/ctavan"
       ],
+      "license": "MIT",
       "bin": {
         "uuid": "dist/esm/bin/uuid"
       }
@@ -7615,9 +7627,9 @@
       }
     },
     "@eslint/js": {
-      "version": "9.17.0",
-      "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz",
-      "integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==",
+      "version": "9.25.1",
+      "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.25.1.tgz",
+      "integrity": "sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==",
       "dev": true
     },
     "@eslint/object-schema": {
@@ -9388,6 +9400,12 @@
         "optionator": "^0.9.3"
       },
       "dependencies": {
+        "@eslint/js": {
+          "version": "9.17.0",
+          "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz",
+          "integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==",
+          "dev": true
+        },
         "escape-string-regexp": {
           "version": "4.0.0",
           "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
@@ -12007,9 +12025,9 @@
       "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
     },
     "uuid": {
-      "version": "11.0.2",
-      "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.2.tgz",
-      "integrity": "sha512-14FfcOJmqdjbBPdDjFQyk/SdT4NySW4eM0zcG+HqbHP5jzuH56xO3J1DGhgs/cEMCfwYi3HQI1gnTO62iaG+tQ=="
+      "version": "11.1.0",
+      "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz",
+      "integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A=="
     },
     "v8-compile-cache-lib": {
       "version": "3.0.1",
diff --git a/superset-websocket/package.json b/superset-websocket/package.json
index 651172e97e5cbca46047e9de8874622799b02e1b..db2b21405831766f19c34ee0480113cef9360492 100644
--- a/superset-websocket/package.json
+++ b/superset-websocket/package.json
@@ -22,12 +22,12 @@
     "ioredis": "^4.28.0",
     "jsonwebtoken": "^9.0.2",
     "lodash": "^4.17.21",
-    "uuid": "^11.0.2",
+    "uuid": "^11.1.0",
     "winston": "^3.17.0",
     "ws": "^8.18.0"
   },
   "devDependencies": {
-    "@eslint/js": "^9.16.0",
+    "@eslint/js": "^9.25.1",
     "@types/cookie": "^0.6.0",
     "@types/eslint__js": "^8.42.3",
     "@types/ioredis": "^4.27.8",
diff --git a/superset-websocket/utils/client-ws-app/package-lock.json b/superset-websocket/utils/client-ws-app/package-lock.json
index 947706274649763ca1eb9dce85dd43d6ec2fee67..812cea1d97c66ffce286be40b6a25e6de300ca5b 100644
--- a/superset-websocket/utils/client-ws-app/package-lock.json
+++ b/superset-websocket/utils/client-ws-app/package-lock.json
@@ -10,7 +10,7 @@
       "dependencies": {
         "cookie-parser": "~1.4.7",
         "debug": "~4.4.0",
-        "express": "~4.21.2",
+        "express": "~5.1.0",
         "http-errors": "~2.0.0",
         "jsonwebtoken": "^9.0.2",
         "morgan": "~1.10.0",
@@ -49,12 +49,13 @@
       }
     },
     "node_modules/accepts": {
-      "version": "1.3.8",
-      "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
-      "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
+      "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
+      "license": "MIT",
       "dependencies": {
-        "mime-types": "~2.1.34",
-        "negotiator": "0.6.3"
+        "mime-types": "^3.0.0",
+        "negotiator": "^1.0.0"
       },
       "engines": {
         "node": ">= 0.6"
@@ -71,11 +72,6 @@
         "node": ">=0.4.0"
       }
     },
-    "node_modules/array-flatten": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
-      "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
-    },
     "node_modules/asap": {
       "version": "2.0.6",
       "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
@@ -109,45 +105,30 @@
       }
     },
     "node_modules/body-parser": {
-      "version": "1.20.3",
-      "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
-      "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.0.tgz",
+      "integrity": "sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==",
+      "license": "MIT",
       "dependencies": {
-        "bytes": "3.1.2",
-        "content-type": "~1.0.5",
-        "debug": "2.6.9",
-        "depd": "2.0.0",
-        "destroy": "1.2.0",
-        "http-errors": "2.0.0",
-        "iconv-lite": "0.4.24",
-        "on-finished": "2.4.1",
-        "qs": "6.13.0",
-        "raw-body": "2.5.2",
-        "type-is": "~1.6.18",
-        "unpipe": "1.0.0"
+        "bytes": "^3.1.2",
+        "content-type": "^1.0.5",
+        "debug": "^4.4.0",
+        "http-errors": "^2.0.0",
+        "iconv-lite": "^0.6.3",
+        "on-finished": "^2.4.1",
+        "qs": "^6.14.0",
+        "raw-body": "^3.0.0",
+        "type-is": "^2.0.0"
       },
       "engines": {
-        "node": ">= 0.8",
-        "npm": "1.2.8000 || >= 1.4.16"
+        "node": ">=18"
       }
     },
-    "node_modules/body-parser/node_modules/debug": {
-      "version": "2.6.9",
-      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-      "dependencies": {
-        "ms": "2.0.0"
-      }
-    },
-    "node_modules/body-parser/node_modules/ms": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-      "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
-    },
     "node_modules/body-parser/node_modules/on-finished": {
       "version": "2.4.1",
       "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
       "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+      "license": "MIT",
       "dependencies": {
         "ee-first": "1.1.1"
       },
@@ -164,6 +145,7 @@
       "version": "3.1.2",
       "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
       "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.8"
       }
@@ -186,6 +168,35 @@
         "url": "https://github.com/sponsors/ljharb"
       }
     },
+    "node_modules/call-bind-apply-helpers": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+      "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+      "license": "MIT",
+      "dependencies": {
+        "es-errors": "^1.3.0",
+        "function-bind": "^1.1.2"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/call-bound": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+      "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+      "license": "MIT",
+      "dependencies": {
+        "call-bind-apply-helpers": "^1.0.2",
+        "get-intrinsic": "^1.3.0"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
     "node_modules/character-parser": {
       "version": "2.2.0",
       "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz",
@@ -204,9 +215,10 @@
       }
     },
     "node_modules/content-disposition": {
-      "version": "0.5.4",
-      "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
-      "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz",
+      "integrity": "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==",
+      "license": "MIT",
       "dependencies": {
         "safe-buffer": "5.2.1"
       },
@@ -231,12 +243,14 @@
           "type": "consulting",
           "url": "https://feross.org/support"
         }
-      ]
+      ],
+      "license": "MIT"
     },
     "node_modules/content-type": {
       "version": "1.0.5",
       "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
       "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.6"
       }
@@ -306,20 +320,25 @@
         "node": ">= 0.8"
       }
     },
-    "node_modules/destroy": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
-      "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
-      "engines": {
-        "node": ">= 0.8",
-        "npm": "1.2.8000 || >= 1.4.16"
-      }
-    },
     "node_modules/doctypes": {
       "version": "1.1.0",
       "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz",
       "integrity": "sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ=="
     },
+    "node_modules/dunder-proto": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+      "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+      "license": "MIT",
+      "dependencies": {
+        "call-bind-apply-helpers": "^1.0.1",
+        "es-errors": "^1.3.0",
+        "gopd": "^1.2.0"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
     "node_modules/ecdsa-sig-formatter": {
       "version": "1.0.11",
       "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
@@ -334,20 +353,19 @@
       "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
     },
     "node_modules/encodeurl": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
-      "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
+      "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.8"
       }
     },
     "node_modules/es-define-property": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
-      "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
-      "dependencies": {
-        "get-intrinsic": "^1.2.4"
-      },
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+      "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.4"
       }
@@ -360,93 +378,84 @@
         "node": ">= 0.4"
       }
     },
+    "node_modules/es-object-atoms": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+      "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+      "license": "MIT",
+      "dependencies": {
+        "es-errors": "^1.3.0"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
     "node_modules/escape-html": {
       "version": "1.0.3",
       "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
-      "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
+      "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
+      "license": "MIT"
     },
     "node_modules/etag": {
       "version": "1.8.1",
       "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
       "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.6"
       }
     },
     "node_modules/express": {
-      "version": "4.21.2",
-      "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
-      "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
-      "dependencies": {
-        "accepts": "~1.3.8",
-        "array-flatten": "1.1.1",
-        "body-parser": "1.20.3",
-        "content-disposition": "0.5.4",
-        "content-type": "~1.0.4",
-        "cookie": "0.7.1",
-        "cookie-signature": "1.0.6",
-        "debug": "2.6.9",
-        "depd": "2.0.0",
-        "encodeurl": "~2.0.0",
-        "escape-html": "~1.0.3",
-        "etag": "~1.8.1",
-        "finalhandler": "1.3.1",
-        "fresh": "0.5.2",
-        "http-errors": "2.0.0",
-        "merge-descriptors": "1.0.3",
-        "methods": "~1.1.2",
-        "on-finished": "2.4.1",
-        "parseurl": "~1.3.3",
-        "path-to-regexp": "0.1.12",
-        "proxy-addr": "~2.0.7",
-        "qs": "6.13.0",
-        "range-parser": "~1.2.1",
-        "safe-buffer": "5.2.1",
-        "send": "0.19.0",
-        "serve-static": "1.16.2",
-        "setprototypeof": "1.2.0",
-        "statuses": "2.0.1",
-        "type-is": "~1.6.18",
-        "utils-merge": "1.0.1",
-        "vary": "~1.1.2"
-      },
-      "engines": {
-        "node": ">= 0.10.0"
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/express/-/express-5.1.0.tgz",
+      "integrity": "sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==",
+      "license": "MIT",
+      "dependencies": {
+        "accepts": "^2.0.0",
+        "body-parser": "^2.2.0",
+        "content-disposition": "^1.0.0",
+        "content-type": "^1.0.5",
+        "cookie": "^0.7.1",
+        "cookie-signature": "^1.2.1",
+        "debug": "^4.4.0",
+        "encodeurl": "^2.0.0",
+        "escape-html": "^1.0.3",
+        "etag": "^1.8.1",
+        "finalhandler": "^2.1.0",
+        "fresh": "^2.0.0",
+        "http-errors": "^2.0.0",
+        "merge-descriptors": "^2.0.0",
+        "mime-types": "^3.0.0",
+        "on-finished": "^2.4.1",
+        "once": "^1.4.0",
+        "parseurl": "^1.3.3",
+        "proxy-addr": "^2.0.7",
+        "qs": "^6.14.0",
+        "range-parser": "^1.2.1",
+        "router": "^2.2.0",
+        "send": "^1.1.0",
+        "serve-static": "^2.2.0",
+        "statuses": "^2.0.1",
+        "type-is": "^2.0.1",
+        "vary": "^1.1.2"
+      },
+      "engines": {
+        "node": ">= 18"
       },
       "funding": {
         "type": "opencollective",
         "url": "https://opencollective.com/express"
       }
     },
-    "node_modules/express/node_modules/cookie": {
-      "version": "0.7.1",
-      "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
-      "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
-      "engines": {
-        "node": ">= 0.6"
-      }
-    },
-    "node_modules/express/node_modules/debug": {
-      "version": "2.6.9",
-      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-      "dependencies": {
-        "ms": "2.0.0"
-      }
-    },
-    "node_modules/express/node_modules/encodeurl": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
-      "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
+    "node_modules/express/node_modules/cookie-signature": {
+      "version": "1.2.2",
+      "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
+      "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
+      "license": "MIT",
       "engines": {
-        "node": ">= 0.8"
+        "node": ">=6.6.0"
       }
     },
-    "node_modules/express/node_modules/ms": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
-    },
     "node_modules/express/node_modules/on-finished": {
       "version": "2.4.1",
       "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
@@ -458,67 +467,28 @@
         "node": ">= 0.8"
       }
     },
-    "node_modules/express/node_modules/safe-buffer": {
-      "version": "5.2.1",
-      "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
-      "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
-      "funding": [
-        {
-          "type": "github",
-          "url": "https://github.com/sponsors/feross"
-        },
-        {
-          "type": "patreon",
-          "url": "https://www.patreon.com/feross"
-        },
-        {
-          "type": "consulting",
-          "url": "https://feross.org/support"
-        }
-      ]
-    },
     "node_modules/finalhandler": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
-      "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.0.tgz",
+      "integrity": "sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==",
+      "license": "MIT",
       "dependencies": {
-        "debug": "2.6.9",
-        "encodeurl": "~2.0.0",
-        "escape-html": "~1.0.3",
-        "on-finished": "2.4.1",
-        "parseurl": "~1.3.3",
-        "statuses": "2.0.1",
-        "unpipe": "~1.0.0"
+        "debug": "^4.4.0",
+        "encodeurl": "^2.0.0",
+        "escape-html": "^1.0.3",
+        "on-finished": "^2.4.1",
+        "parseurl": "^1.3.3",
+        "statuses": "^2.0.1"
       },
       "engines": {
         "node": ">= 0.8"
       }
     },
-    "node_modules/finalhandler/node_modules/debug": {
-      "version": "2.6.9",
-      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-      "dependencies": {
-        "ms": "2.0.0"
-      }
-    },
-    "node_modules/finalhandler/node_modules/encodeurl": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
-      "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
-      "engines": {
-        "node": ">= 0.8"
-      }
-    },
-    "node_modules/finalhandler/node_modules/ms": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-      "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
-    },
     "node_modules/finalhandler/node_modules/on-finished": {
       "version": "2.4.1",
       "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
       "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+      "license": "MIT",
       "dependencies": {
         "ee-first": "1.1.1"
       },
@@ -535,11 +505,12 @@
       }
     },
     "node_modules/fresh": {
-      "version": "0.5.2",
-      "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
-      "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
+      "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
+      "license": "MIT",
       "engines": {
-        "node": ">= 0.6"
+        "node": ">= 0.8"
       }
     },
     "node_modules/function-bind": {
@@ -551,15 +522,21 @@
       }
     },
     "node_modules/get-intrinsic": {
-      "version": "1.2.4",
-      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
-      "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+      "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+      "license": "MIT",
       "dependencies": {
+        "call-bind-apply-helpers": "^1.0.2",
+        "es-define-property": "^1.0.1",
         "es-errors": "^1.3.0",
+        "es-object-atoms": "^1.1.1",
         "function-bind": "^1.1.2",
-        "has-proto": "^1.0.1",
-        "has-symbols": "^1.0.3",
-        "hasown": "^2.0.0"
+        "get-proto": "^1.0.1",
+        "gopd": "^1.2.0",
+        "has-symbols": "^1.1.0",
+        "hasown": "^2.0.2",
+        "math-intrinsics": "^1.1.0"
       },
       "engines": {
         "node": ">= 0.4"
@@ -568,12 +545,26 @@
         "url": "https://github.com/sponsors/ljharb"
       }
     },
-    "node_modules/gopd": {
+    "node_modules/get-proto": {
       "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
-      "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
+      "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+      "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+      "license": "MIT",
       "dependencies": {
-        "get-intrinsic": "^1.1.3"
+        "dunder-proto": "^1.0.1",
+        "es-object-atoms": "^1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/gopd": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+      "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+      "license": "MIT",
+      "engines": {
+        "node": ">= 0.4"
       },
       "funding": {
         "url": "https://github.com/sponsors/ljharb"
@@ -601,21 +592,11 @@
         "url": "https://github.com/sponsors/ljharb"
       }
     },
-    "node_modules/has-proto": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz",
-      "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==",
-      "engines": {
-        "node": ">= 0.4"
-      },
-      "funding": {
-        "url": "https://github.com/sponsors/ljharb"
-      }
-    },
     "node_modules/has-symbols": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
-      "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+      "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.4"
       },
@@ -638,9 +619,10 @@
       }
     },
     "node_modules/hasown": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz",
-      "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==",
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+      "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+      "license": "MIT",
       "dependencies": {
         "function-bind": "^1.1.2"
       },
@@ -664,11 +646,12 @@
       }
     },
     "node_modules/iconv-lite": {
-      "version": "0.4.24",
-      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
-      "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+      "version": "0.6.3",
+      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+      "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+      "license": "MIT",
       "dependencies": {
-        "safer-buffer": ">= 2.1.2 < 3"
+        "safer-buffer": ">= 2.1.2 < 3.0.0"
       },
       "engines": {
         "node": ">=0.10.0"
@@ -827,55 +810,52 @@
         "node": ">=10"
       }
     },
-    "node_modules/media-typer": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
-      "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
+    "node_modules/math-intrinsics": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+      "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+      "license": "MIT",
       "engines": {
-        "node": ">= 0.6"
-      }
-    },
-    "node_modules/merge-descriptors": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
-      "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
-      "funding": {
-        "url": "https://github.com/sponsors/sindresorhus"
+        "node": ">= 0.4"
       }
     },
-    "node_modules/methods": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
-      "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=",
+    "node_modules/media-typer": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
+      "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
+      "license": "MIT",
       "engines": {
-        "node": ">= 0.6"
+        "node": ">= 0.8"
       }
     },
-    "node_modules/mime": {
-      "version": "1.6.0",
-      "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
-      "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
-      "bin": {
-        "mime": "cli.js"
-      },
+    "node_modules/merge-descriptors": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
+      "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
+      "license": "MIT",
       "engines": {
-        "node": ">=4"
+        "node": ">=18"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
       }
     },
     "node_modules/mime-db": {
-      "version": "1.52.0",
-      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
-      "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+      "version": "1.54.0",
+      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
+      "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.6"
       }
     },
     "node_modules/mime-types": {
-      "version": "2.1.35",
-      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
-      "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.1.tgz",
+      "integrity": "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==",
+      "license": "MIT",
       "dependencies": {
-        "mime-db": "1.52.0"
+        "mime-db": "^1.54.0"
       },
       "engines": {
         "node": ">= 0.6"
@@ -915,9 +895,10 @@
       "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
     },
     "node_modules/negotiator": {
-      "version": "0.6.3",
-      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
-      "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
+      "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.6"
       }
@@ -931,9 +912,10 @@
       }
     },
     "node_modules/object-inspect": {
-      "version": "1.13.2",
-      "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz",
-      "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==",
+      "version": "1.13.4",
+      "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+      "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.4"
       },
@@ -960,10 +942,20 @@
         "node": ">= 0.8"
       }
     },
+    "node_modules/once": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+      "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+      "license": "ISC",
+      "dependencies": {
+        "wrappy": "1"
+      }
+    },
     "node_modules/parseurl": {
       "version": "1.3.3",
       "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
       "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.8"
       }
@@ -974,9 +966,13 @@
       "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
     },
     "node_modules/path-to-regexp": {
-      "version": "0.1.12",
-      "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
-      "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ=="
+      "version": "8.2.0",
+      "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.2.0.tgz",
+      "integrity": "sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==",
+      "license": "MIT",
+      "engines": {
+        "node": ">=16"
+      }
     },
     "node_modules/promise": {
       "version": "7.3.1",
@@ -1111,11 +1107,12 @@
       "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ=="
     },
     "node_modules/qs": {
-      "version": "6.13.0",
-      "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
-      "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
+      "version": "6.14.0",
+      "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
+      "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
+      "license": "BSD-3-Clause",
       "dependencies": {
-        "side-channel": "^1.0.6"
+        "side-channel": "^1.1.0"
       },
       "engines": {
         "node": ">=0.6"
@@ -1128,18 +1125,20 @@
       "version": "1.2.1",
       "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
       "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.6"
       }
     },
     "node_modules/raw-body": {
-      "version": "2.5.2",
-      "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
-      "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz",
+      "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==",
+      "license": "MIT",
       "dependencies": {
         "bytes": "3.1.2",
         "http-errors": "2.0.0",
-        "iconv-lite": "0.4.24",
+        "iconv-lite": "0.6.3",
         "unpipe": "1.0.0"
       },
       "engines": {
@@ -1158,6 +1157,28 @@
         "url": "https://github.com/sponsors/ljharb"
       }
     },
+    "node_modules/router": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
+      "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
+      "license": "MIT",
+      "dependencies": {
+        "debug": "^4.4.0",
+        "depd": "^2.0.0",
+        "is-promise": "^4.0.0",
+        "parseurl": "^1.3.3",
+        "path-to-regexp": "^8.0.0"
+      },
+      "engines": {
+        "node": ">= 18"
+      }
+    },
+    "node_modules/router/node_modules/is-promise": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
+      "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
+      "license": "MIT"
+    },
     "node_modules/safe-buffer": {
       "version": "5.1.2",
       "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
@@ -1166,7 +1187,8 @@
     "node_modules/safer-buffer": {
       "version": "2.1.2",
       "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
-      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+      "license": "MIT"
     },
     "node_modules/semver": {
       "version": "7.5.4",
@@ -1183,45 +1205,32 @@
       }
     },
     "node_modules/send": {
-      "version": "0.19.0",
-      "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
-      "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/send/-/send-1.2.0.tgz",
+      "integrity": "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==",
+      "license": "MIT",
       "dependencies": {
-        "debug": "2.6.9",
-        "depd": "2.0.0",
-        "destroy": "1.2.0",
-        "encodeurl": "~1.0.2",
-        "escape-html": "~1.0.3",
-        "etag": "~1.8.1",
-        "fresh": "0.5.2",
-        "http-errors": "2.0.0",
-        "mime": "1.6.0",
-        "ms": "2.1.3",
-        "on-finished": "2.4.1",
-        "range-parser": "~1.2.1",
-        "statuses": "2.0.1"
+        "debug": "^4.3.5",
+        "encodeurl": "^2.0.0",
+        "escape-html": "^1.0.3",
+        "etag": "^1.8.1",
+        "fresh": "^2.0.0",
+        "http-errors": "^2.0.0",
+        "mime-types": "^3.0.1",
+        "ms": "^2.1.3",
+        "on-finished": "^2.4.1",
+        "range-parser": "^1.2.1",
+        "statuses": "^2.0.1"
       },
       "engines": {
-        "node": ">= 0.8.0"
+        "node": ">= 18"
       }
     },
-    "node_modules/send/node_modules/debug": {
-      "version": "2.6.9",
-      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-      "dependencies": {
-        "ms": "2.0.0"
-      }
-    },
-    "node_modules/send/node_modules/debug/node_modules/ms": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-      "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
-    },
     "node_modules/send/node_modules/on-finished": {
       "version": "2.4.1",
       "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
       "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+      "license": "MIT",
       "dependencies": {
         "ee-first": "1.1.1"
       },
@@ -1230,25 +1239,18 @@
       }
     },
     "node_modules/serve-static": {
-      "version": "1.16.2",
-      "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
-      "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.0.tgz",
+      "integrity": "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==",
+      "license": "MIT",
       "dependencies": {
-        "encodeurl": "~2.0.0",
-        "escape-html": "~1.0.3",
-        "parseurl": "~1.3.3",
-        "send": "0.19.0"
+        "encodeurl": "^2.0.0",
+        "escape-html": "^1.0.3",
+        "parseurl": "^1.3.3",
+        "send": "^1.2.0"
       },
       "engines": {
-        "node": ">= 0.8.0"
-      }
-    },
-    "node_modules/serve-static/node_modules/encodeurl": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
-      "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
-      "engines": {
-        "node": ">= 0.8"
+        "node": ">= 18"
       }
     },
     "node_modules/set-function-length": {
@@ -1273,14 +1275,69 @@
       "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
     },
     "node_modules/side-channel": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
-      "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+      "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+      "license": "MIT",
       "dependencies": {
-        "call-bind": "^1.0.7",
         "es-errors": "^1.3.0",
-        "get-intrinsic": "^1.2.4",
-        "object-inspect": "^1.13.1"
+        "object-inspect": "^1.13.3",
+        "side-channel-list": "^1.0.0",
+        "side-channel-map": "^1.0.1",
+        "side-channel-weakmap": "^1.0.2"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/side-channel-list": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+      "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+      "license": "MIT",
+      "dependencies": {
+        "es-errors": "^1.3.0",
+        "object-inspect": "^1.13.3"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/side-channel-map": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+      "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+      "license": "MIT",
+      "dependencies": {
+        "call-bound": "^1.0.2",
+        "es-errors": "^1.3.0",
+        "get-intrinsic": "^1.2.5",
+        "object-inspect": "^1.13.3"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/side-channel-weakmap": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+      "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+      "license": "MIT",
+      "dependencies": {
+        "call-bound": "^1.0.2",
+        "es-errors": "^1.3.0",
+        "get-intrinsic": "^1.2.5",
+        "object-inspect": "^1.13.3",
+        "side-channel-map": "^1.0.1"
       },
       "engines": {
         "node": ">= 0.4"
@@ -1319,12 +1376,14 @@
       "integrity": "sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ="
     },
     "node_modules/type-is": {
-      "version": "1.6.18",
-      "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
-      "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
+      "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
+      "license": "MIT",
       "dependencies": {
-        "media-typer": "0.3.0",
-        "mime-types": "~2.1.24"
+        "content-type": "^1.0.5",
+        "media-typer": "^1.1.0",
+        "mime-types": "^3.0.0"
       },
       "engines": {
         "node": ">= 0.6"
@@ -1334,18 +1393,11 @@
       "version": "1.0.0",
       "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
       "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
+      "license": "MIT",
       "engines": {
         "node": ">= 0.8"
       }
     },
-    "node_modules/utils-merge": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
-      "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
-      "engines": {
-        "node": ">= 0.4.0"
-      }
-    },
     "node_modules/vary": {
       "version": "1.1.2",
       "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
@@ -1376,6 +1428,12 @@
         "node": ">= 10.0.0"
       }
     },
+    "node_modules/wrappy": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+      "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
+      "license": "ISC"
+    },
     "node_modules/yallist": {
       "version": "4.0.0",
       "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
@@ -1403,12 +1461,12 @@
       }
     },
     "accepts": {
-      "version": "1.3.8",
-      "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
-      "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
+      "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
       "requires": {
-        "mime-types": "~2.1.34",
-        "negotiator": "0.6.3"
+        "mime-types": "^3.0.0",
+        "negotiator": "^1.0.0"
       }
     },
     "acorn": {
@@ -1416,11 +1474,6 @@
       "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
       "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
     },
-    "array-flatten": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
-      "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
-    },
     "asap": {
       "version": "2.0.6",
       "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
@@ -1448,37 +1501,21 @@
       }
     },
     "body-parser": {
-      "version": "1.20.3",
-      "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
-      "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.0.tgz",
+      "integrity": "sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==",
       "requires": {
-        "bytes": "3.1.2",
-        "content-type": "~1.0.5",
-        "debug": "2.6.9",
-        "depd": "2.0.0",
-        "destroy": "1.2.0",
-        "http-errors": "2.0.0",
-        "iconv-lite": "0.4.24",
-        "on-finished": "2.4.1",
-        "qs": "6.13.0",
-        "raw-body": "2.5.2",
-        "type-is": "~1.6.18",
-        "unpipe": "1.0.0"
+        "bytes": "^3.1.2",
+        "content-type": "^1.0.5",
+        "debug": "^4.4.0",
+        "http-errors": "^2.0.0",
+        "iconv-lite": "^0.6.3",
+        "on-finished": "^2.4.1",
+        "qs": "^6.14.0",
+        "raw-body": "^3.0.0",
+        "type-is": "^2.0.0"
       },
       "dependencies": {
-        "debug": {
-          "version": "2.6.9",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-          "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-          "requires": {
-            "ms": "2.0.0"
-          }
-        },
-        "ms": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-          "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
-        },
         "on-finished": {
           "version": "2.4.1",
           "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
@@ -1511,6 +1548,24 @@
         "set-function-length": "^1.2.1"
       }
     },
+    "call-bind-apply-helpers": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+      "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+      "requires": {
+        "es-errors": "^1.3.0",
+        "function-bind": "^1.1.2"
+      }
+    },
+    "call-bound": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+      "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+      "requires": {
+        "call-bind-apply-helpers": "^1.0.2",
+        "get-intrinsic": "^1.3.0"
+      }
+    },
     "character-parser": {
       "version": "2.2.0",
       "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz",
@@ -1529,9 +1584,9 @@
       }
     },
     "content-disposition": {
-      "version": "0.5.4",
-      "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
-      "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz",
+      "integrity": "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==",
       "requires": {
         "safe-buffer": "5.2.1"
       },
@@ -1590,16 +1645,21 @@
       "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
       "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="
     },
-    "destroy": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
-      "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="
-    },
     "doctypes": {
       "version": "1.1.0",
       "resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz",
       "integrity": "sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ=="
     },
+    "dunder-proto": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+      "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+      "requires": {
+        "call-bind-apply-helpers": "^1.0.1",
+        "es-errors": "^1.3.0",
+        "gopd": "^1.2.0"
+      }
+    },
     "ecdsa-sig-formatter": {
       "version": "1.0.11",
       "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
@@ -1614,23 +1674,28 @@
       "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
     },
     "encodeurl": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
-      "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
+      "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg=="
     },
     "es-define-property": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
-      "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
-      "requires": {
-        "get-intrinsic": "^1.2.4"
-      }
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+      "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="
     },
     "es-errors": {
       "version": "1.3.0",
       "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
       "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="
     },
+    "es-object-atoms": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+      "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+      "requires": {
+        "es-errors": "^1.3.0"
+      }
+    },
     "escape-html": {
       "version": "1.0.3",
       "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
@@ -1642,65 +1707,43 @@
       "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="
     },
     "express": {
-      "version": "4.21.2",
-      "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
-      "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
-      "requires": {
-        "accepts": "~1.3.8",
-        "array-flatten": "1.1.1",
-        "body-parser": "1.20.3",
-        "content-disposition": "0.5.4",
-        "content-type": "~1.0.4",
-        "cookie": "0.7.1",
-        "cookie-signature": "1.0.6",
-        "debug": "2.6.9",
-        "depd": "2.0.0",
-        "encodeurl": "~2.0.0",
-        "escape-html": "~1.0.3",
-        "etag": "~1.8.1",
-        "finalhandler": "1.3.1",
-        "fresh": "0.5.2",
-        "http-errors": "2.0.0",
-        "merge-descriptors": "1.0.3",
-        "methods": "~1.1.2",
-        "on-finished": "2.4.1",
-        "parseurl": "~1.3.3",
-        "path-to-regexp": "0.1.12",
-        "proxy-addr": "~2.0.7",
-        "qs": "6.13.0",
-        "range-parser": "~1.2.1",
-        "safe-buffer": "5.2.1",
-        "send": "0.19.0",
-        "serve-static": "1.16.2",
-        "setprototypeof": "1.2.0",
-        "statuses": "2.0.1",
-        "type-is": "~1.6.18",
-        "utils-merge": "1.0.1",
-        "vary": "~1.1.2"
-      },
-      "dependencies": {
-        "cookie": {
-          "version": "0.7.1",
-          "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
-          "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w=="
-        },
-        "debug": {
-          "version": "2.6.9",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-          "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-          "requires": {
-            "ms": "2.0.0"
-          }
-        },
-        "encodeurl": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
-          "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg=="
-        },
-        "ms": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-          "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/express/-/express-5.1.0.tgz",
+      "integrity": "sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==",
+      "requires": {
+        "accepts": "^2.0.0",
+        "body-parser": "^2.2.0",
+        "content-disposition": "^1.0.0",
+        "content-type": "^1.0.5",
+        "cookie": "^0.7.1",
+        "cookie-signature": "^1.2.1",
+        "debug": "^4.4.0",
+        "encodeurl": "^2.0.0",
+        "escape-html": "^1.0.3",
+        "etag": "^1.8.1",
+        "finalhandler": "^2.1.0",
+        "fresh": "^2.0.0",
+        "http-errors": "^2.0.0",
+        "merge-descriptors": "^2.0.0",
+        "mime-types": "^3.0.0",
+        "on-finished": "^2.4.1",
+        "once": "^1.4.0",
+        "parseurl": "^1.3.3",
+        "proxy-addr": "^2.0.7",
+        "qs": "^6.14.0",
+        "range-parser": "^1.2.1",
+        "router": "^2.2.0",
+        "send": "^1.1.0",
+        "serve-static": "^2.2.0",
+        "statuses": "^2.0.1",
+        "type-is": "^2.0.1",
+        "vary": "^1.1.2"
+      },
+      "dependencies": {
+        "cookie-signature": {
+          "version": "1.2.2",
+          "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
+          "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg=="
         },
         "on-finished": {
           "version": "2.4.1",
@@ -1709,46 +1752,22 @@
           "requires": {
             "ee-first": "1.1.1"
           }
-        },
-        "safe-buffer": {
-          "version": "5.2.1",
-          "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
-          "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
         }
       }
     },
     "finalhandler": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
-      "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.0.tgz",
+      "integrity": "sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==",
       "requires": {
-        "debug": "2.6.9",
-        "encodeurl": "~2.0.0",
-        "escape-html": "~1.0.3",
-        "on-finished": "2.4.1",
-        "parseurl": "~1.3.3",
-        "statuses": "2.0.1",
-        "unpipe": "~1.0.0"
+        "debug": "^4.4.0",
+        "encodeurl": "^2.0.0",
+        "escape-html": "^1.0.3",
+        "on-finished": "^2.4.1",
+        "parseurl": "^1.3.3",
+        "statuses": "^2.0.1"
       },
       "dependencies": {
-        "debug": {
-          "version": "2.6.9",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-          "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-          "requires": {
-            "ms": "2.0.0"
-          }
-        },
-        "encodeurl": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
-          "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg=="
-        },
-        "ms": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-          "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
-        },
         "on-finished": {
           "version": "2.4.1",
           "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
@@ -1765,9 +1784,9 @@
       "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="
     },
     "fresh": {
-      "version": "0.5.2",
-      "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
-      "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
+      "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A=="
     },
     "function-bind": {
       "version": "1.1.2",
@@ -1775,25 +1794,36 @@
       "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="
     },
     "get-intrinsic": {
-      "version": "1.2.4",
-      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz",
-      "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==",
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+      "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
       "requires": {
+        "call-bind-apply-helpers": "^1.0.2",
+        "es-define-property": "^1.0.1",
         "es-errors": "^1.3.0",
+        "es-object-atoms": "^1.1.1",
         "function-bind": "^1.1.2",
-        "has-proto": "^1.0.1",
-        "has-symbols": "^1.0.3",
-        "hasown": "^2.0.0"
+        "get-proto": "^1.0.1",
+        "gopd": "^1.2.0",
+        "has-symbols": "^1.1.0",
+        "hasown": "^2.0.2",
+        "math-intrinsics": "^1.1.0"
       }
     },
-    "gopd": {
+    "get-proto": {
       "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
-      "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
+      "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+      "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
       "requires": {
-        "get-intrinsic": "^1.1.3"
+        "dunder-proto": "^1.0.1",
+        "es-object-atoms": "^1.0.0"
       }
     },
+    "gopd": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+      "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="
+    },
     "has": {
       "version": "1.0.3",
       "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
@@ -1810,15 +1840,10 @@
         "es-define-property": "^1.0.0"
       }
     },
-    "has-proto": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz",
-      "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q=="
-    },
     "has-symbols": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
-      "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+      "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="
     },
     "has-tostringtag": {
       "version": "1.0.0",
@@ -1829,9 +1854,9 @@
       }
     },
     "hasown": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz",
-      "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==",
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+      "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
       "requires": {
         "function-bind": "^1.1.2"
       }
@@ -1849,11 +1874,11 @@
       }
     },
     "iconv-lite": {
-      "version": "0.4.24",
-      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
-      "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+      "version": "0.6.3",
+      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+      "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
       "requires": {
-        "safer-buffer": ">= 2.1.2 < 3"
+        "safer-buffer": ">= 2.1.2 < 3.0.0"
       }
     },
     "inherits": {
@@ -1990,37 +2015,32 @@
         "yallist": "^4.0.0"
       }
     },
+    "math-intrinsics": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+      "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="
+    },
     "media-typer": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
-      "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
+      "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw=="
     },
     "merge-descriptors": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
-      "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ=="
-    },
-    "methods": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
-      "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
-    },
-    "mime": {
-      "version": "1.6.0",
-      "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
-      "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
+      "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g=="
     },
     "mime-db": {
-      "version": "1.52.0",
-      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
-      "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
+      "version": "1.54.0",
+      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
+      "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ=="
     },
     "mime-types": {
-      "version": "2.1.35",
-      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
-      "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.1.tgz",
+      "integrity": "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==",
       "requires": {
-        "mime-db": "1.52.0"
+        "mime-db": "^1.54.0"
       }
     },
     "morgan": {
@@ -2056,9 +2076,9 @@
       "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
     },
     "negotiator": {
-      "version": "0.6.3",
-      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
-      "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
+      "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg=="
     },
     "object-assign": {
       "version": "4.1.1",
@@ -2066,9 +2086,9 @@
       "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
     },
     "object-inspect": {
-      "version": "1.13.2",
-      "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz",
-      "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g=="
+      "version": "1.13.4",
+      "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+      "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="
     },
     "on-finished": {
       "version": "2.3.0",
@@ -2083,6 +2103,14 @@
       "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
       "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="
     },
+    "once": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+      "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+      "requires": {
+        "wrappy": "1"
+      }
+    },
     "parseurl": {
       "version": "1.3.3",
       "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
@@ -2094,9 +2122,9 @@
       "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
     },
     "path-to-regexp": {
-      "version": "0.1.12",
-      "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
-      "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ=="
+      "version": "8.2.0",
+      "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.2.0.tgz",
+      "integrity": "sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ=="
     },
     "promise": {
       "version": "7.3.1",
@@ -2228,11 +2256,11 @@
       "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ=="
     },
     "qs": {
-      "version": "6.13.0",
-      "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
-      "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
+      "version": "6.14.0",
+      "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
+      "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
       "requires": {
-        "side-channel": "^1.0.6"
+        "side-channel": "^1.1.0"
       }
     },
     "range-parser": {
@@ -2241,13 +2269,13 @@
       "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
     },
     "raw-body": {
-      "version": "2.5.2",
-      "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
-      "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz",
+      "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==",
       "requires": {
         "bytes": "3.1.2",
         "http-errors": "2.0.0",
-        "iconv-lite": "0.4.24",
+        "iconv-lite": "0.6.3",
         "unpipe": "1.0.0"
       }
     },
@@ -2260,6 +2288,25 @@
         "path-parse": "^1.0.6"
       }
     },
+    "router": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
+      "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
+      "requires": {
+        "debug": "^4.4.0",
+        "depd": "^2.0.0",
+        "is-promise": "^4.0.0",
+        "parseurl": "^1.3.3",
+        "path-to-regexp": "^8.0.0"
+      },
+      "dependencies": {
+        "is-promise": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
+          "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ=="
+        }
+      }
+    },
     "safe-buffer": {
       "version": "5.1.2",
       "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
@@ -2279,40 +2326,23 @@
       }
     },
     "send": {
-      "version": "0.19.0",
-      "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
-      "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/send/-/send-1.2.0.tgz",
+      "integrity": "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==",
       "requires": {
-        "debug": "2.6.9",
-        "depd": "2.0.0",
-        "destroy": "1.2.0",
-        "encodeurl": "~1.0.2",
-        "escape-html": "~1.0.3",
-        "etag": "~1.8.1",
-        "fresh": "0.5.2",
-        "http-errors": "2.0.0",
-        "mime": "1.6.0",
-        "ms": "2.1.3",
-        "on-finished": "2.4.1",
-        "range-parser": "~1.2.1",
-        "statuses": "2.0.1"
+        "debug": "^4.3.5",
+        "encodeurl": "^2.0.0",
+        "escape-html": "^1.0.3",
+        "etag": "^1.8.1",
+        "fresh": "^2.0.0",
+        "http-errors": "^2.0.0",
+        "mime-types": "^3.0.1",
+        "ms": "^2.1.3",
+        "on-finished": "^2.4.1",
+        "range-parser": "^1.2.1",
+        "statuses": "^2.0.1"
       },
       "dependencies": {
-        "debug": {
-          "version": "2.6.9",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-          "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-          "requires": {
-            "ms": "2.0.0"
-          },
-          "dependencies": {
-            "ms": {
-              "version": "2.0.0",
-              "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-              "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
-            }
-          }
-        },
         "on-finished": {
           "version": "2.4.1",
           "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
@@ -2324,21 +2354,14 @@
       }
     },
     "serve-static": {
-      "version": "1.16.2",
-      "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
-      "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.0.tgz",
+      "integrity": "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==",
       "requires": {
-        "encodeurl": "~2.0.0",
-        "escape-html": "~1.0.3",
-        "parseurl": "~1.3.3",
-        "send": "0.19.0"
-      },
-      "dependencies": {
-        "encodeurl": {
-          "version": "2.0.0",
-          "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
-          "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg=="
-        }
+        "encodeurl": "^2.0.0",
+        "escape-html": "^1.0.3",
+        "parseurl": "^1.3.3",
+        "send": "^1.2.0"
       }
     },
     "set-function-length": {
@@ -2360,14 +2383,47 @@
       "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
     },
     "side-channel": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
-      "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==",
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+      "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
       "requires": {
-        "call-bind": "^1.0.7",
         "es-errors": "^1.3.0",
-        "get-intrinsic": "^1.2.4",
-        "object-inspect": "^1.13.1"
+        "object-inspect": "^1.13.3",
+        "side-channel-list": "^1.0.0",
+        "side-channel-map": "^1.0.1",
+        "side-channel-weakmap": "^1.0.2"
+      }
+    },
+    "side-channel-list": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+      "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+      "requires": {
+        "es-errors": "^1.3.0",
+        "object-inspect": "^1.13.3"
+      }
+    },
+    "side-channel-map": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+      "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+      "requires": {
+        "call-bound": "^1.0.2",
+        "es-errors": "^1.3.0",
+        "get-intrinsic": "^1.2.5",
+        "object-inspect": "^1.13.3"
+      }
+    },
+    "side-channel-weakmap": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+      "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+      "requires": {
+        "call-bound": "^1.0.2",
+        "es-errors": "^1.3.0",
+        "get-intrinsic": "^1.2.5",
+        "object-inspect": "^1.13.3",
+        "side-channel-map": "^1.0.1"
       }
     },
     "statuses": {
@@ -2391,12 +2447,13 @@
       "integrity": "sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ="
     },
     "type-is": {
-      "version": "1.6.18",
-      "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
-      "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
+      "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
       "requires": {
-        "media-typer": "0.3.0",
-        "mime-types": "~2.1.24"
+        "content-type": "^1.0.5",
+        "media-typer": "^1.1.0",
+        "mime-types": "^3.0.0"
       }
     },
     "unpipe": {
@@ -2404,11 +2461,6 @@
       "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
       "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="
     },
-    "utils-merge": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
-      "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
-    },
     "vary": {
       "version": "1.1.2",
       "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
@@ -2430,6 +2482,11 @@
         "babel-walk": "3.0.0-canary-5"
       }
     },
+    "wrappy": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+      "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
+    },
     "yallist": {
       "version": "4.0.0",
       "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
diff --git a/superset-websocket/utils/client-ws-app/package.json b/superset-websocket/utils/client-ws-app/package.json
index 39a7c9cee160ee2062b08d887f651e0294b74acf..ed0952a1d1740e856a13631cc09124db705a13df 100644
--- a/superset-websocket/utils/client-ws-app/package.json
+++ b/superset-websocket/utils/client-ws-app/package.json
@@ -8,7 +8,7 @@
   "dependencies": {
     "cookie-parser": "~1.4.7",
     "debug": "~4.4.0",
-    "express": "~4.21.2",
+    "express": "~5.1.0",
     "http-errors": "~2.0.0",
     "jsonwebtoken": "^9.0.2",
     "morgan": "~1.10.0",
diff --git a/superset/commands/database/importers/v1/utils.py b/superset/commands/database/importers/v1/utils.py
index a36c4113895ab15518fbfd44a8df7845cf7e1d59..e06e9a0be7569f6dd6b6653cbcf7f2e81e44ddd2 100644
--- a/superset/commands/database/importers/v1/utils.py
+++ b/superset/commands/database/importers/v1/utils.py
@@ -69,7 +69,11 @@ def import_database(
     # Before it gets removed in import_from_dict
     ssh_tunnel_config = config.pop("ssh_tunnel", None)
 
+    # set SQLAlchemy URI via `set_sqlalchemy_uri` so that the password gets masked
+    sqlalchemy_uri = config.pop("sqlalchemy_uri")
     database: Database = Database.import_from_dict(config, recursive=False)
+    database.set_sqlalchemy_uri(sqlalchemy_uri)
+
     if database.id is None:
         db.session.flush()
 
diff --git a/superset/commands/database/update.py b/superset/commands/database/update.py
index 92f91c15ec0c1a7880b38f861d2197338c3766e8..98e3ffac2b3795cd1157cc734a0a7cc88bacb0fc 100644
--- a/superset/commands/database/update.py
+++ b/superset/commands/database/update.py
@@ -80,9 +80,19 @@ class UpdateDatabaseCommand(BaseCommand):
             # existing personal tokens.
             self._handle_oauth2()
 
-        # build new DB
+        # Some DBs require running a query to get the default catalog.
+        # In these cases, if the current connection is broken then
+        # `get_default_catalog` would raise an exception. We need to
+        # gracefully handle that so that the connection can be fixed.
         original_database_name = self._model.database_name
-        original_catalog = self._model.get_default_catalog()
+        force_update: bool = False
+        try:
+            original_catalog = self._model.get_default_catalog()
+        except Exception:
+            original_catalog = None
+            force_update = True
+
+        # build new DB
         database = DatabaseDAO.update(self._model, self._properties)
         database.set_sqlalchemy_uri(database.sqlalchemy_uri)
         ssh_tunnel = self._handle_ssh_tunnel(database)
@@ -92,7 +102,8 @@ class UpdateDatabaseCommand(BaseCommand):
         # configured with multi-catalog support; if it was enabled or is enabled in the
         # update we don't update the assets
         if (
-            new_catalog != original_catalog
+            force_update
+            or new_catalog != original_catalog
             and not self._model.allow_multi_catalog
             and not database.allow_multi_catalog
         ):
diff --git a/superset/commands/dataset/exceptions.py b/superset/commands/dataset/exceptions.py
index 04afc4fc9b0e34fc522c1bc20dd700bcbdb65af5..be82b7c88f96d6f460723ab6f15e4352813bc471 100644
--- a/superset/commands/dataset/exceptions.py
+++ b/superset/commands/dataset/exceptions.py
@@ -33,22 +33,25 @@ def get_dataset_exist_error_msg(table: Table) -> str:
     return _("Dataset %(table)s already exists", table=table)
 
 
-class DatabaseNotFoundValidationError(ValidationError):
+class MultiCatalogDisabledValidationError(ValidationError):
     """
-    Marshmallow validation error for database does not exist
+    Validation error for using a non-default catalog when multi-catalog is disabled
     """
 
     def __init__(self) -> None:
-        super().__init__([_("Database does not exist")], field_name="database")
+        super().__init__(
+            [_("Only the default catalog is supported for this connection")],
+            field_name="catalog",
+        )
 
 
-class DatabaseChangeValidationError(ValidationError):
+class DatabaseNotFoundValidationError(ValidationError):
     """
-    Marshmallow validation error database changes are not allowed on update
+    Marshmallow validation error for database does not exist
     """
 
     def __init__(self) -> None:
-        super().__init__([_("Database not allowed to change")], field_name="database")
+        super().__init__([_("Database does not exist")], field_name="database")
 
 
 class DatasetExistsValidationError(ValidationError):
diff --git a/superset/commands/dataset/update.py b/superset/commands/dataset/update.py
index 7f6134d20a068c0372255fd1d24335814bd52a7e..0f0e8f30ecc5738afea312b1fb2e34a90c87df0c 100644
--- a/superset/commands/dataset/update.py
+++ b/superset/commands/dataset/update.py
@@ -14,6 +14,8 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
+from __future__ import annotations
+
 import logging
 from collections import Counter
 from functools import partial
@@ -26,7 +28,7 @@ from sqlalchemy.exc import SQLAlchemyError
 from superset import is_feature_enabled, security_manager
 from superset.commands.base import BaseCommand, UpdateMixin
 from superset.commands.dataset.exceptions import (
-    DatabaseChangeValidationError,
+    DatabaseNotFoundValidationError,
     DatasetColumnNotFoundValidationError,
     DatasetColumnsDuplicateValidationError,
     DatasetColumnsExistsValidationError,
@@ -38,11 +40,13 @@ from superset.commands.dataset.exceptions import (
     DatasetMetricsNotFoundValidationError,
     DatasetNotFoundError,
     DatasetUpdateFailedError,
+    MultiCatalogDisabledValidationError,
 )
 from superset.connectors.sqla.models import SqlaTable, SqlMetric, TableColumn
 from superset.daos.dataset import DatasetDAO
 from superset.datasets.schemas import FolderSchema
 from superset.exceptions import SupersetSecurityException
+from superset.models.core import Database
 from superset.sql_parse import Table
 from superset.utils.decorators import on_error, transaction
 
@@ -86,38 +90,12 @@ class UpdateDatasetCommand(UpdateMixin, BaseCommand):
         if not self._model:
             raise DatasetNotFoundError()
 
-        # Check ownership
+        # Check permission to update the dataset
         try:
             security_manager.raise_for_ownership(self._model)
         except SupersetSecurityException as ex:
             raise DatasetForbiddenError() from ex
 
-        database_id = self._properties.get("database")
-
-        catalog = self._properties.get("catalog")
-        if not catalog:
-            catalog = self._properties["catalog"] = (
-                self._model.database.get_default_catalog()
-            )
-
-        table = Table(
-            self._properties.get("table_name"),  # type: ignore
-            self._properties.get("schema"),
-            catalog,
-        )
-
-        # Validate uniqueness
-        if not DatasetDAO.validate_update_uniqueness(
-            self._model.database,
-            table,
-            self._model_id,
-        ):
-            exceptions.append(DatasetExistsValidationError(table))
-
-        # Validate/Populate database not allowed to change
-        if database_id and database_id != self._model:
-            exceptions.append(DatabaseChangeValidationError())
-
         # Validate/Populate owner
         try:
             owners = self.compute_owners(
@@ -128,15 +106,68 @@ class UpdateDatasetCommand(UpdateMixin, BaseCommand):
         except ValidationError as ex:
             exceptions.append(ex)
 
+        self._validate_dataset_source(exceptions)
         self._validate_semantics(exceptions)
 
         if exceptions:
             raise DatasetInvalidError(exceptions=exceptions)
 
-    def _validate_semantics(self, exceptions: list[ValidationError]) -> None:
+    def _validate_dataset_source(self, exceptions: list[ValidationError]) -> None:
         # we know we have a valid model
         self._model = cast(SqlaTable, self._model)
+        database_id = self._properties.pop("database_id", None)
+        catalog = self._properties.get("catalog")
+        new_db_connection: Database | None = None
+
+        if database_id and database_id != self._model.database.id:
+            if new_db_connection := DatasetDAO.get_database_by_id(database_id):
+                self._properties["database"] = new_db_connection
+            else:
+                exceptions.append(DatabaseNotFoundValidationError())
+        db = new_db_connection or self._model.database
+        default_catalog = db.get_default_catalog()
+
+        # If multi-catalog is disabled, and catalog provided is not
+        # the default one, fail
+        if (
+            "catalog" in self._properties
+            and catalog != default_catalog
+            and not db.allow_multi_catalog
+        ):
+            exceptions.append(MultiCatalogDisabledValidationError())
+
+        # If the DB connection does not support multi-catalog,
+        # use the default catalog
+        elif not db.allow_multi_catalog:
+            catalog = self._properties["catalog"] = default_catalog
+
+        # Fallback to using the previous value if not provided
+        elif "catalog" not in self._properties:
+            catalog = self._model.catalog
+
+        schema = (
+            self._properties["schema"]
+            if "schema" in self._properties
+            else self._model.schema
+        )
 
+        table = Table(
+            self._properties.get("table_name", self._model.table_name),
+            schema,
+            catalog,
+        )
+
+        # Validate uniqueness
+        if not DatasetDAO.validate_update_uniqueness(
+            db,
+            table,
+            self._model_id,
+        ):
+            exceptions.append(DatasetExistsValidationError(table))
+
+    def _validate_semantics(self, exceptions: list[ValidationError]) -> None:
+        # we know we have a valid model
+        self._model = cast(SqlaTable, self._model)
         if columns := self._properties.get("columns"):
             self._validate_columns(columns, exceptions)
 
diff --git a/superset/commands/sql_lab/permalink/create.py b/superset/commands/sql_lab/permalink/create.py
index 150b069d6f70a2567dc7794ab1aa400c4fe128cd..4493073a02d6c283bf17021d7c9b4bd2909b5efe 100644
--- a/superset/commands/sql_lab/permalink/create.py
+++ b/superset/commands/sql_lab/permalink/create.py
@@ -15,14 +15,21 @@
 # specific language governing permissions and limitations
 # under the License.
 import logging
+from functools import partial
 from typing import Any
 
+from sqlalchemy.exc import SQLAlchemyError
+
 from superset import db
 from superset.commands.sql_lab.permalink.base import BaseSqlLabPermalinkCommand
 from superset.daos.key_value import KeyValueDAO
-from superset.key_value.exceptions import KeyValueCodecEncodeException
+from superset.key_value.exceptions import (
+    KeyValueCodecEncodeException,
+    KeyValueCreateFailedError,
+)
 from superset.key_value.utils import encode_permalink_key
 from superset.sqllab.permalink.exceptions import SqlLabPermalinkCreateFailedError
+from superset.utils.decorators import on_error, transaction
 
 logger = logging.getLogger(__name__)
 
@@ -31,19 +38,25 @@ class CreateSqlLabPermalinkCommand(BaseSqlLabPermalinkCommand):
     def __init__(self, state: dict[str, Any]):
         self._properties = state.copy()
 
+    @transaction(
+        on_error=partial(
+            on_error,
+            catches=(
+                KeyValueCodecEncodeException,
+                KeyValueCreateFailedError,
+                SQLAlchemyError,
+            ),
+            reraise=SqlLabPermalinkCreateFailedError,
+        ),
+    )
     def run(self) -> str:
         self.validate()
-        try:
-            entry = KeyValueDAO.create_entry(
-                self.resource, self._properties, self.codec
-            )
-            db.session.flush()
-            key = entry.id
-            if key is None:
-                raise SqlLabPermalinkCreateFailedError("Unexpected missing key id")
-            return encode_permalink_key(key=key, salt=self.salt)
-        except KeyValueCodecEncodeException as ex:
-            raise SqlLabPermalinkCreateFailedError(str(ex)) from ex
+        entry = KeyValueDAO.create_entry(self.resource, self._properties, self.codec)
+        db.session.flush()
+        key = entry.id
+        if key is None:
+            raise SqlLabPermalinkCreateFailedError("Unexpected missing key id")
+        return encode_permalink_key(key=key, salt=self.salt)
 
     def validate(self) -> None:
         pass
diff --git a/superset/common/query_context_factory.py b/superset/common/query_context_factory.py
index 3e3fe2913946bb7455d445782bb44309f245be6d..7a9e9e150283d81a805ef730a1b96259a6ef51e5 100644
--- a/superset/common/query_context_factory.py
+++ b/superset/common/query_context_factory.py
@@ -65,12 +65,23 @@ class QueryContextFactory:  # pylint: disable=too-few-public-methods
 
         result_type = result_type or ChartDataResultType.FULL
         result_format = result_format or ChartDataResultFormat.JSON
+
+        # The server pagination var is extracted from form data as the
+        # row limit for server pagination is more
+        # This particular flag server_pagination only exists for table viz type
+        server_pagination = (
+            bool(form_data.get("server_pagination")) if form_data else False
+        )
+
         queries_ = [
             self._process_query_object(
                 datasource_model_instance,
                 form_data,
                 self._query_object_factory.create(
-                    result_type, datasource=datasource, **query_obj
+                    result_type,
+                    datasource=datasource,
+                    server_pagination=server_pagination,
+                    **query_obj,
                 ),
             )
             for query_obj in queries
diff --git a/superset/common/query_object_factory.py b/superset/common/query_object_factory.py
index 63d1ef09665cf6f0ab2e5c6207cf42014e777f7c..063ba023481e33bae1282a211f616afe5db45b3f 100644
--- a/superset/common/query_object_factory.py
+++ b/superset/common/query_object_factory.py
@@ -57,6 +57,7 @@ class QueryObjectFactory:  # pylint: disable=too-few-public-methods
         row_limit: int | None = None,
         time_range: str | None = None,
         time_shift: str | None = None,
+        server_pagination: bool | None = None,
         **kwargs: Any,
     ) -> QueryObject:
         datasource_model_instance = None
@@ -64,7 +65,12 @@ class QueryObjectFactory:  # pylint: disable=too-few-public-methods
             datasource_model_instance = self._convert_to_model(datasource)
         processed_extras = self._process_extras(extras)
         result_type = kwargs.setdefault("result_type", parent_result_type)
-        row_limit = self._process_row_limit(row_limit, result_type)
+
+        # Process row limit taking server pagination into account
+        row_limit = self._process_row_limit(
+            row_limit, result_type, server_pagination=server_pagination
+        )
+
         processed_time_range = self._process_time_range(
             time_range, kwargs.get("filters"), kwargs.get("columns")
         )
@@ -96,14 +102,27 @@ class QueryObjectFactory:  # pylint: disable=too-few-public-methods
         return extras
 
     def _process_row_limit(
-        self, row_limit: int | None, result_type: ChartDataResultType
+        self,
+        row_limit: int | None,
+        result_type: ChartDataResultType,
+        server_pagination: bool | None = None,
     ) -> int:
+        """Process row limit taking into account server pagination.
+
+        :param row_limit: The requested row limit
+        :param result_type: The type of result being processed
+        :param server_pagination: Whether server-side pagination is enabled
+        :return: The processed row limit
+        """
         default_row_limit = (
             self._config["SAMPLES_ROW_LIMIT"]
             if result_type == ChartDataResultType.SAMPLES
             else self._config["ROW_LIMIT"]
         )
-        return apply_max_row_limit(row_limit or default_row_limit)
+        return apply_max_row_limit(
+            row_limit or default_row_limit,
+            server_pagination=server_pagination,
+        )
 
     @staticmethod
     def _process_time_range(
diff --git a/superset/config.py b/superset/config.py
index b42888c5e3fd78533e87ae99b15209006ddb044c..1a36edde234b3f294bc03aa0c6de2a4511e79ff7 100644
--- a/superset/config.py
+++ b/superset/config.py
@@ -973,6 +973,10 @@ MAPBOX_API_KEY = os.environ.get("MAPBOX_API_KEY", "")
 # Maximum number of rows returned for any analytical database query
 SQL_MAX_ROW = 100000
 
+# Maximum number of rows for any query with Server Pagination in Table Viz type
+TABLE_VIZ_MAX_ROW_SERVER = 500000
+
+
 # Maximum number of rows displayed in SQL Lab UI
 # Is set to avoid out of memory/localstorage issues in browsers. Does not affect
 # exported CSVs
diff --git a/superset/connectors/sqla/models.py b/superset/connectors/sqla/models.py
index d74b2ef5c0a343eb7d7f2c533c2863a7ce58e58d..275cc0cdbf4ef7eb76146663f5a94d9c232a59d3 100644
--- a/superset/connectors/sqla/models.py
+++ b/superset/connectors/sqla/models.py
@@ -313,10 +313,6 @@ class BaseDatasource(AuditMixinNullable, ImportExportMixin):  # pylint: disable=
     def column_formats(self) -> dict[str, str | None]:
         return {m.metric_name: m.d3format for m in self.metrics if m.d3format}
 
-    @property
-    def currency_formats(self) -> dict[str, dict[str, str | None] | None]:
-        return {m.metric_name: m.currency_json for m in self.metrics if m.currency_json}
-
     def add_missing_metrics(self, metrics: list[SqlMetric]) -> None:
         existing_metrics = {m.metric_name for m in self.metrics}
         for metric in metrics:
@@ -379,7 +375,6 @@ class BaseDatasource(AuditMixinNullable, ImportExportMixin):  # pylint: disable=
             "id": self.id,
             "uid": self.uid,
             "column_formats": self.column_formats,
-            "currency_formats": self.currency_formats,
             "description": self.description,
             "database": self.database.data,  # pylint: disable=no-member
             "default_endpoint": self.default_endpoint,
@@ -1046,7 +1041,7 @@ class SqlMetric(AuditMixinNullable, ImportExportMixin, CertificationMixin, Model
     metric_type = Column(String(32))
     description = Column(utils.MediumText())
     d3format = Column(String(128))
-    currency = Column(String(128))
+    currency = Column(JSON, nullable=True)
     warning_text = Column(Text)
     table_id = Column(Integer, ForeignKey("tables.id", ondelete="CASCADE"))
     expression = Column(utils.MediumText(), nullable=False)
@@ -1101,16 +1096,6 @@ class SqlMetric(AuditMixinNullable, ImportExportMixin, CertificationMixin, Model
     def get_perm(self) -> str | None:
         return self.perm
 
-    @property
-    def currency_json(self) -> dict[str, str | None] | None:
-        try:
-            return json.loads(self.currency or "{}") or None
-        except (TypeError, json.JSONDecodeError) as exc:
-            logger.error(
-                "Unable to load currency json: %r. Leaving empty.", exc, exc_info=True
-            )
-            return None
-
     @property
     def data(self) -> dict[str, Any]:
         attrs = (
diff --git a/superset/dashboards/schemas.py b/superset/dashboards/schemas.py
index db581f42dffac668a82ca0c2e706166e4cd8898d..c9fa1e3617b9cc513df97778846828c7a347a09c 100644
--- a/superset/dashboards/schemas.py
+++ b/superset/dashboards/schemas.py
@@ -259,7 +259,6 @@ class DashboardDatasetSchema(Schema):
     id = fields.Int()
     uid = fields.Str()
     column_formats = fields.Dict()
-    currency_formats = fields.Dict()
     database = fields.Nested(DatabaseSchema)
     default_endpoint = fields.String()
     filter_select = fields.Bool()
diff --git a/superset/datasets/api.py b/superset/datasets/api.py
index 85cc0756676c703056ed6abcb62adc0130ac8e67..9b84885b4ca9fa4e00acfdd02bfae2943dcbc66e 100644
--- a/superset/datasets/api.py
+++ b/superset/datasets/api.py
@@ -221,7 +221,6 @@ class DatasetRestApi(BaseSupersetModelRestApi):
         "datasource_name",
         "name",
         "column_formats",
-        "currency_formats",
         "granularity_sqla",
         "time_grain_sqla",
         "order_by_choices",
diff --git a/superset/db_engine_specs/databricks.py b/superset/db_engine_specs/databricks.py
index 48144bb35bc19d785ca8075d2c5f0f1dc39a73b8..66e9078bee8314e5ae45b439aa4b8df69d26e6ba 100644
--- a/superset/db_engine_specs/databricks.py
+++ b/superset/db_engine_specs/databricks.py
@@ -440,6 +440,8 @@ class DatabricksNativeEngineSpec(DatabricksDynamicBaseEngineSpec):
         """
         Return the default catalog.
 
+        It's optionally specified in `connect_args.catalog`. If not:
+
         The default behavior for Databricks is confusing. When Unity Catalog is not
         enabled we have (the DB engine spec hasn't been tested with it enabled):
 
@@ -451,6 +453,10 @@ class DatabricksNativeEngineSpec(DatabricksDynamicBaseEngineSpec):
         To handle permissions correctly we use the result of `SHOW CATALOGS` when a
         single catalog is returned.
         """
+        connect_args = cls.get_extra_params(database)["engine_params"]["connect_args"]
+        if default_catalog := connect_args.get("catalog"):
+            return default_catalog
+
         with database.get_sqla_engine() as engine:
             catalogs = {catalog for (catalog,) in engine.execute("SHOW CATALOGS")}
             if len(catalogs) == 1:
diff --git a/superset/examples/bart_lines.py b/superset/examples/bart_lines.py
index 2005ace22b15ea7a387d07342739c9344f14092f..37f41e7556dc9c42f5d05d5f4d3157b7f9251d3a 100644
--- a/superset/examples/bart_lines.py
+++ b/superset/examples/bart_lines.py
@@ -16,7 +16,6 @@
 # under the License.
 import logging
 
-import pandas as pd
 import polyline
 from sqlalchemy import inspect, String, Text
 
@@ -25,7 +24,7 @@ from superset.sql_parse import Table
 from superset.utils import json
 
 from ..utils.database import get_example_database
-from .helpers import get_example_url, get_table_connector_registry
+from .helpers import get_table_connector_registry, read_example_data
 
 logger = logging.getLogger(__name__)
 
@@ -38,8 +37,9 @@ def load_bart_lines(only_metadata: bool = False, force: bool = False) -> None:
         table_exists = database.has_table(Table(tbl_name, schema))
 
         if not only_metadata and (not table_exists or force):
-            url = get_example_url("bart-lines.json.gz")
-            df = pd.read_json(url, encoding="latin-1", compression="gzip")
+            df = read_example_data(
+                "bart-lines.json.gz", encoding="latin-1", compression="gzip"
+            )
             df["path_json"] = df.path.map(json.dumps)
             df["polyline"] = df.path.map(polyline.encode)
             del df["path"]
diff --git a/superset/examples/birth_names.py b/superset/examples/birth_names.py
index d94353219cfacd2db70e09a3ccf55ce2880c6722..62eb357a3b3d262f88460158d356bd50d0c44ce0 100644
--- a/superset/examples/birth_names.py
+++ b/superset/examples/birth_names.py
@@ -33,11 +33,11 @@ from superset.utils.core import DatasourceType
 
 from ..utils.database import get_example_database
 from .helpers import (
-    get_example_url,
     get_slice_json,
     get_table_connector_registry,
     merge_slice,
     misc_dash_slices,
+    read_example_data,
     update_slice_ids,
 )
 
@@ -57,8 +57,8 @@ def gen_filter(
 
 
 def load_data(tbl_name: str, database: Database, sample: bool = False) -> None:
-    url = get_example_url("birth_names2.json.gz")
-    pdf = pd.read_json(url, compression="gzip")
+    pdf = read_example_data("birth_names2.json.gz", compression="gzip")
+
     # TODO(bkyryliuk): move load examples data into the pytest fixture
     if database.backend == "presto":
         pdf.ds = pd.to_datetime(pdf.ds, unit="ms")
diff --git a/superset/examples/country_map.py b/superset/examples/country_map.py
index a093044b7091599fae5d165da692a0f16da5b86d..83b880a319572a11c2070da5553049650a10edf9 100644
--- a/superset/examples/country_map.py
+++ b/superset/examples/country_map.py
@@ -17,7 +17,6 @@
 import datetime
 import logging
 
-import pandas as pd
 from sqlalchemy import BigInteger, Date, inspect, String
 from sqlalchemy.sql import column
 
@@ -29,11 +28,11 @@ from superset.sql_parse import Table
 from superset.utils.core import DatasourceType
 
 from .helpers import (
-    get_example_url,
     get_slice_json,
     get_table_connector_registry,
     merge_slice,
     misc_dash_slices,
+    read_example_data,
 )
 
 logger = logging.getLogger(__name__)
@@ -49,8 +48,9 @@ def load_country_map_data(only_metadata: bool = False, force: bool = False) -> N
         table_exists = database.has_table(Table(tbl_name, schema))
 
         if not only_metadata and (not table_exists or force):
-            url = get_example_url("birth_france_data_for_country_map.csv")
-            data = pd.read_csv(url, encoding="utf-8")
+            data = read_example_data(
+                "birth_france_data_for_country_map.csv", encoding="utf-8"
+            )
             data["dttm"] = datetime.datetime.now().date()
             data.to_sql(
                 tbl_name,
diff --git a/superset/examples/energy.py b/superset/examples/energy.py
index 1b2bfa72a204c405df767ceeda05dfdb6d03e8e3..9dfd199731c4c245bffbac10e9eebcf141e61ab2 100644
--- a/superset/examples/energy.py
+++ b/superset/examples/energy.py
@@ -17,7 +17,6 @@
 import logging
 import textwrap
 
-import pandas as pd
 from sqlalchemy import Float, inspect, String
 from sqlalchemy.sql import column
 
@@ -29,11 +28,11 @@ from superset.sql_parse import Table
 from superset.utils.core import DatasourceType
 
 from .helpers import (
-    get_example_url,
     get_slice_json,
     get_table_connector_registry,
     merge_slice,
     misc_dash_slices,
+    read_example_data,
 )
 
 logger = logging.getLogger(__name__)
@@ -51,8 +50,7 @@ def load_energy(
         table_exists = database.has_table(Table(tbl_name, schema))
 
         if not only_metadata and (not table_exists or force):
-            url = get_example_url("energy.json.gz")
-            pdf = pd.read_json(url, compression="gzip")
+            pdf = read_example_data("energy.json.gz", compression="gzip")
             pdf = pdf.head(100) if sample else pdf
             pdf.to_sql(
                 tbl_name,
diff --git a/superset/examples/flights.py b/superset/examples/flights.py
index 81a31bb970aec5f057cf639edb55f4b872308ad1..4d8b04e42a0091c74d3648b712a7d18cb6d1d161 100644
--- a/superset/examples/flights.py
+++ b/superset/examples/flights.py
@@ -23,7 +23,7 @@ import superset.utils.database as database_utils
 from superset import db
 from superset.sql_parse import Table
 
-from .helpers import get_example_url, get_table_connector_registry
+from .helpers import get_table_connector_registry, read_example_data
 
 logger = logging.getLogger(__name__)
 
@@ -37,12 +37,14 @@ def load_flights(only_metadata: bool = False, force: bool = False) -> None:
         table_exists = database.has_table(Table(tbl_name, schema))
 
         if not only_metadata and (not table_exists or force):
-            flight_data_url = get_example_url("flight_data.csv.gz")
-            pdf = pd.read_csv(flight_data_url, encoding="latin-1", compression="gzip")
+            pdf = read_example_data(
+                "flight_data.csv.gz", encoding="latin-1", compression="gzip"
+            )
 
             # Loading airports info to join and get lat/long
-            airports_url = get_example_url("airports.csv.gz")
-            airports = pd.read_csv(airports_url, encoding="latin-1", compression="gzip")
+            airports = read_example_data(
+                "airports.csv.gz", encoding="latin-1", compression="gzip"
+            )
             airports = airports.set_index("IATA_CODE")
 
             pdf[  # pylint: disable=unsupported-assignment-operation,useless-suppression
diff --git a/superset/examples/helpers.py b/superset/examples/helpers.py
index 4cc9a47b2700fb30edf2642892f66fddac157c3c..c0673a8f77abebb212870aa500cd40816af065f5 100644
--- a/superset/examples/helpers.py
+++ b/superset/examples/helpers.py
@@ -14,35 +14,81 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
+"""Helpers for loading Superset example datasets.
+
+All Superset example data files (CSV, JSON, etc.) are fetched via the
+jsDelivr CDN instead of raw.githubusercontent.com to avoid GitHub API
+rate limits (60 anonymous requests/hour/IP).
+
+jsDelivr is a multi‑CDN front for public GitHub repos and supports
+arbitrary paths including nested folders. It doesn’t use the GitHub REST API
+and advertises unlimited bandwidth for open-source use.
+
+Example URL::
+
+    https://cdn.jsdelivr.net/gh/apache-superset/examples-data@master/datasets/examples/slack/messages.csv
+
+Environment knobs
+-----------------
+``SUPERSET_EXAMPLES_DATA_REF``  (default: ``master``)
+    Tag / branch / SHA to pin so builds remain reproducible.
+
+``SUPERSET_EXAMPLES_BASE_URL``
+    Override the base completely if you want to host the files elsewhere
+    (internal mirror, S3 bucket, ASF downloads, …).  **Include any query
+    string required by your hosting (e.g. ``?raw=true`` if you point back
+    to a GitHub *blob* URL).**
+"""
+
+from __future__ import annotations
+
 import os
+import time
 from typing import Any
+from urllib.error import HTTPError
+
+import pandas as pd
 
 from superset import app, db
 from superset.connectors.sqla.models import SqlaTable
 from superset.models.slice import Slice
 from superset.utils import json
 
-BASE_URL = "https://github.com/apache-superset/examples-data/blob/master/"
+# ---------------------------------------------------------------------------
+# Public sample‑data mirror configuration
+# ---------------------------------------------------------------------------
+BASE_COMMIT: str = os.getenv("SUPERSET_EXAMPLES_DATA_REF", "master")
+BASE_URL: str = os.getenv(
+    "SUPERSET_EXAMPLES_BASE_URL",
+    f"https://cdn.jsdelivr.net/gh/apache-superset/examples-data@{BASE_COMMIT}/",
+)
+
+# Slices assembled into a 'Misc Chart' dashboard
+misc_dash_slices: set[str] = set()
 
-misc_dash_slices: set[str] = set()  # slices assembled in a 'Misc Chart' dashboard
+# ---------------------------------------------------------------------------
+# Utility functions
+# ---------------------------------------------------------------------------
 
 
 def get_table_connector_registry() -> Any:
+    """Return the SqlaTable registry so we can mock it in unit tests."""
     return SqlaTable
 
 
 def get_examples_folder() -> str:
+    """Return local path to the examples folder (when vendored)."""
     return os.path.join(app.config["BASE_DIR"], "examples")
 
 
 def update_slice_ids(pos: dict[Any, Any]) -> list[Slice]:
-    """Update slice ids in position_json and return the slices found."""
+    """Update slice ids in ``position_json`` and return the slices found."""
     slice_components = [
         component
         for component in pos.values()
         if isinstance(component, dict) and component.get("type") == "CHART"
     ]
-    slices = {}
+    slices: dict[str, Slice] = {}
     for name in {component["meta"]["sliceName"] for component in slice_components}:
         slc = db.session.query(Slice).filter_by(slice_name=name).first()
         if slc:
@@ -56,17 +102,54 @@ def update_slice_ids(pos: dict[Any, Any]) -> list[Slice]:
 
 
 def merge_slice(slc: Slice) -> None:
-    o = db.session.query(Slice).filter_by(slice_name=slc.slice_name).first()
-    if o:
-        db.session.delete(o)
+    """Upsert a Slice by name."""
+    existing = db.session.query(Slice).filter_by(slice_name=slc.slice_name).first()
+    if existing:
+        db.session.delete(existing)
     db.session.add(slc)
 
 
 def get_slice_json(defaults: dict[Any, Any], **kwargs: Any) -> str:
+    """Return JSON string for a chart definition, merging extra kwargs."""
     defaults_copy = defaults.copy()
     defaults_copy.update(kwargs)
     return json.dumps(defaults_copy, indent=4, sort_keys=True)
 
 
 def get_example_url(filepath: str) -> str:
-    return f"{BASE_URL}{filepath}?raw=true"
+    """Return an absolute URL to *filepath* under the examples‑data repo.
+
+    All calls are routed through jsDelivr unless overridden. Supports nested
+    paths like ``datasets/examples/slack/messages.csv``.
+    """
+    return f"{BASE_URL}{filepath}"
+
+
+def read_example_data(
+    filepath: str,
+    max_attempts: int = 5,
+    wait_seconds: float = 60,
+    **kwargs: Any,
+) -> pd.DataFrame:
+    """Load CSV or JSON from example data mirror with retry/backoff."""
+    from superset.examples.helpers import get_example_url
+
+    url = get_example_url(filepath)
+    is_json = filepath.endswith(".json") or filepath.endswith(".json.gz")
+
+    for attempt in range(1, max_attempts + 1):
+        try:
+            if is_json:
+                return pd.read_json(url, **kwargs)
+            return pd.read_csv(url, **kwargs)
+        except HTTPError as e:
+            if e.code == 429 and attempt < max_attempts:
+                sleep_time = wait_seconds * (2 ** (attempt - 1))
+                print(
+                    f"HTTP 429 received from {url}. ",
+                    f"Retrying in {sleep_time:.1f}s ",
+                    f"(attempt {attempt}/{max_attempts})...",
+                )
+                time.sleep(sleep_time)
+            else:
+                raise
diff --git a/superset/examples/long_lat.py b/superset/examples/long_lat.py
index 87bcbd9fdc5127b4002de7c1ec2d5a69eceb4aa1..9108bb52c5d55f500463fe91fa57f473dfba99ec 100644
--- a/superset/examples/long_lat.py
+++ b/superset/examples/long_lat.py
@@ -19,7 +19,6 @@ import logging
 import random
 
 import geohash
-import pandas as pd
 from sqlalchemy import DateTime, Float, inspect, String
 
 import superset.utils.database as database_utils
@@ -29,11 +28,11 @@ from superset.sql_parse import Table
 from superset.utils.core import DatasourceType
 
 from .helpers import (
-    get_example_url,
     get_slice_json,
     get_table_connector_registry,
     merge_slice,
     misc_dash_slices,
+    read_example_data,
 )
 
 logger = logging.getLogger(__name__)
@@ -48,8 +47,9 @@ def load_long_lat_data(only_metadata: bool = False, force: bool = False) -> None
         table_exists = database.has_table(Table(tbl_name, schema))
 
         if not only_metadata and (not table_exists or force):
-            url = get_example_url("san_francisco.csv.gz")
-            pdf = pd.read_csv(url, encoding="utf-8", compression="gzip")
+            pdf = read_example_data(
+                "san_francisco.csv.gz", encoding="utf-8", compression="gzip"
+            )
             start = datetime.datetime.now().replace(
                 hour=0, minute=0, second=0, microsecond=0
             )
diff --git a/superset/examples/multiformat_time_series.py b/superset/examples/multiformat_time_series.py
index af357385f97f5a5af44bff04ec813eb33b72fe73..e788c19ee8757fb591e2bc3265d0f5411aea89e6 100644
--- a/superset/examples/multiformat_time_series.py
+++ b/superset/examples/multiformat_time_series.py
@@ -27,11 +27,11 @@ from superset.utils.core import DatasourceType
 
 from ..utils.database import get_example_database
 from .helpers import (
-    get_example_url,
     get_slice_json,
     get_table_connector_registry,
     merge_slice,
     misc_dash_slices,
+    read_example_data,
 )
 
 logger = logging.getLogger(__name__)
@@ -48,8 +48,10 @@ def load_multiformat_time_series(  # pylint: disable=too-many-locals
         table_exists = database.has_table(Table(tbl_name, schema))
 
         if not only_metadata and (not table_exists or force):
-            url = get_example_url("multiformat_time_series.json.gz")
-            pdf = pd.read_json(url, compression="gzip")
+            pdf = read_example_data(
+                "multiformat_time_series.json.gz", compression="gzip"
+            )
+
             # TODO(bkyryliuk): move load examples data into the pytest fixture
             if database.backend == "presto":
                 pdf.ds = pd.to_datetime(pdf.ds, unit="s")
diff --git a/superset/examples/paris.py b/superset/examples/paris.py
index 56a6affe432b7f6cf968ae9cd55e90765b934358..002b129734f2c17190ec8d91311b1897dddb7945 100644
--- a/superset/examples/paris.py
+++ b/superset/examples/paris.py
@@ -17,7 +17,6 @@
 
 import logging
 
-import pandas as pd
 from sqlalchemy import inspect, String, Text
 
 import superset.utils.database as database_utils
@@ -25,7 +24,7 @@ from superset import db
 from superset.sql_parse import Table
 from superset.utils import json
 
-from .helpers import get_example_url, get_table_connector_registry
+from .helpers import get_table_connector_registry, read_example_data
 
 logger = logging.getLogger(__name__)
 
@@ -38,8 +37,7 @@ def load_paris_iris_geojson(only_metadata: bool = False, force: bool = False) ->
         table_exists = database.has_table(Table(tbl_name, schema))
 
         if not only_metadata and (not table_exists or force):
-            url = get_example_url("paris_iris.json.gz")
-            df = pd.read_json(url, compression="gzip")
+            df = read_example_data("paris_iris.json.gz", compression="gzip")
             df["features"] = df.features.map(json.dumps)
 
             df.to_sql(
diff --git a/superset/examples/random_time_series.py b/superset/examples/random_time_series.py
index f473565235ae90edd2e6e381cf8ecd8fe6377b2a..47ffd1dcd19d34a7ebc2761a8ce0f6d0098e94f7 100644
--- a/superset/examples/random_time_series.py
+++ b/superset/examples/random_time_series.py
@@ -26,10 +26,10 @@ from superset.sql_parse import Table
 from superset.utils.core import DatasourceType
 
 from .helpers import (
-    get_example_url,
     get_slice_json,
     get_table_connector_registry,
     merge_slice,
+    read_example_data,
 )
 
 logger = logging.getLogger(__name__)
@@ -46,8 +46,7 @@ def load_random_time_series_data(
         table_exists = database.has_table(Table(tbl_name, schema))
 
         if not only_metadata and (not table_exists or force):
-            url = get_example_url("random_time_series.json.gz")
-            pdf = pd.read_json(url, compression="gzip")
+            pdf = read_example_data("random_time_series.json.gz", compression="gzip")
             if database.backend == "presto":
                 pdf.ds = pd.to_datetime(pdf.ds, unit="s")
                 pdf.ds = pdf.ds.dt.strftime("%Y-%m-%d %H:%M%:%S")
diff --git a/superset/examples/sf_population_polygons.py b/superset/examples/sf_population_polygons.py
index 239ab04a17a6d3189eee57138fd0344210b42226..b89bc98c5a1ccef23e8fc02a7d00ade7fa4b7e22 100644
--- a/superset/examples/sf_population_polygons.py
+++ b/superset/examples/sf_population_polygons.py
@@ -17,7 +17,6 @@
 
 import logging
 
-import pandas as pd
 from sqlalchemy import BigInteger, Float, inspect, Text
 
 import superset.utils.database as database_utils
@@ -25,7 +24,7 @@ from superset import db
 from superset.sql_parse import Table
 from superset.utils import json
 
-from .helpers import get_example_url, get_table_connector_registry
+from .helpers import get_table_connector_registry, read_example_data
 
 logger = logging.getLogger(__name__)
 
@@ -40,8 +39,7 @@ def load_sf_population_polygons(
         table_exists = database.has_table(Table(tbl_name, schema))
 
         if not only_metadata and (not table_exists or force):
-            url = get_example_url("sf_population.json.gz")
-            df = pd.read_json(url, compression="gzip")
+            df = read_example_data("sf_population.json.gz", compression="gzip")
             df["contour"] = df.contour.map(json.dumps)
 
             df.to_sql(
diff --git a/superset/examples/world_bank.py b/superset/examples/world_bank.py
index b683d8fb911df41d25b73baa435005cc31e56b4b..16b8b9854ca7572243df57894cd2b2faf5c58a39 100644
--- a/superset/examples/world_bank.py
+++ b/superset/examples/world_bank.py
@@ -25,12 +25,12 @@ import superset.utils.database
 from superset import app, db
 from superset.connectors.sqla.models import BaseDatasource, SqlMetric
 from superset.examples.helpers import (
-    get_example_url,
     get_examples_folder,
     get_slice_json,
     get_table_connector_registry,
     merge_slice,
     misc_dash_slices,
+    read_example_data,
     update_slice_ids,
 )
 from superset.models.dashboard import Dashboard
@@ -55,8 +55,7 @@ def load_world_bank_health_n_pop(  # pylint: disable=too-many-locals
         table_exists = database.has_table(Table(tbl_name, schema))
 
         if not only_metadata and (not table_exists or force):
-            url = get_example_url("countries.json.gz")
-            pdf = pd.read_json(url, compression="gzip")
+            pdf = read_example_data("countries.json.gz", compression="gzip")
             pdf.columns = [col.replace(".", "_") for col in pdf.columns]
             if database.backend == "presto":
                 pdf.year = pd.to_datetime(pdf.year)
diff --git a/superset/explore/schemas.py b/superset/explore/schemas.py
index 5149f98ff5400352fc55a9b09024693d424325ab..0c2ffd9386f054c3d5a8735c9318d4f23ea86e49 100644
--- a/superset/explore/schemas.py
+++ b/superset/explore/schemas.py
@@ -25,7 +25,6 @@ class DatasetSchema(Schema):
         }
     )
     column_formats = fields.Dict(metadata={"description": "Column formats."})
-    currency_formats = fields.Dict(metadata={"description": "Currency formats."})
     columns = fields.List(fields.Dict(), metadata={"description": "Columns metadata."})
     database = fields.Dict(
         metadata={"description": "Database associated with the dataset."}
diff --git a/superset/migrations/shared/migrate_viz/base.py b/superset/migrations/shared/migrate_viz/base.py
index ba10de1ec223d8eb3a88c46fa51c9938a8f24635..fe434a52f4b0b408667baf6ff79436d09ea4875c 100644
--- a/superset/migrations/shared/migrate_viz/base.py
+++ b/superset/migrations/shared/migrate_viz/base.py
@@ -26,6 +26,7 @@ from superset import conf
 from superset.constants import TimeGrain
 from superset.migrations.shared.utils import paginated_update, try_load_json
 from superset.utils import json
+from superset.utils.date_parser import get_since_until
 
 logger = logging.getLogger("alembic")
 
@@ -113,14 +114,33 @@ class MigrateViz:
         }
 
         if isinstance(granularity_sqla, dict):
-            temporal_filter["comparator"] = None
-            temporal_filter["expressionType"] = "SQL"
-            temporal_filter["subject"] = granularity_sqla["label"]
-            temporal_filter["sqlExpression"] = granularity_sqla["sqlExpression"]
-
-        rv_data["adhoc_filters"] = (rv_data.get("adhoc_filters") or []) + [
-            temporal_filter
-        ]
+            since, until = get_since_until(time_range=time_range)
+            if not since and not until:
+                temporal_filter = {}
+            else:
+                temporal_filter["comparator"] = None
+                temporal_filter["expressionType"] = "SQL"
+                temporal_filter["subject"] = granularity_sqla["label"]
+
+                start_date = since.isoformat() if since else None
+                end_date = until.isoformat() if until else None
+                if start_date and end_date:
+                    temporal_filter["sqlExpression"] = (
+                        f"{granularity_sqla['sqlExpression']} >= '{start_date}' AND "
+                        f"{granularity_sqla['sqlExpression']} < '{end_date}'"
+                    )
+                elif start_date:
+                    temporal_filter["sqlExpression"] = (
+                        f"{granularity_sqla['sqlExpression']} >= '{start_date}'"
+                    )
+                elif end_date:
+                    temporal_filter["sqlExpression"] = (
+                        f"{granularity_sqla['sqlExpression']} < '{end_date}'"
+                    )
+
+        rv_data["adhoc_filters"] = rv_data.get("adhoc_filters") or []
+        if temporal_filter:
+            rv_data["adhoc_filters"].append(temporal_filter)
 
     @classmethod
     def upgrade_slice(cls, slc: Slice) -> None:
diff --git a/superset/migrations/shared/utils.py b/superset/migrations/shared/utils.py
index db97383a5647fe98d11082fcfe97abb50d1c59fc..a0a096168a8f2998bfd4010cec4c09c8784d1d7c 100644
--- a/superset/migrations/shared/utils.py
+++ b/superset/migrations/shared/utils.py
@@ -22,7 +22,17 @@ from typing import Any, Callable, Optional, Union
 from uuid import uuid4
 
 from alembic import op
-from sqlalchemy import Column, inspect
+from sqlalchemy import (
+    Column,
+    inspect,
+    JSON,
+    MetaData,
+    select,
+    String,
+    Table,
+    text,
+    update,
+)
 from sqlalchemy.dialects.mysql.base import MySQLDialect
 from sqlalchemy.dialects.postgresql.base import PGDialect
 from sqlalchemy.dialects.sqlite.base import SQLiteDialect  # noqa: E402
@@ -303,7 +313,7 @@ def add_columns(table_name: str, *columns: Column) -> None:
     """
     Adds new columns to an existing database table.
 
-    If a column already exist, it logs an informational message and skips the adding process.
+    If a column already exist, or the table doesn't exist, it logs an informational message and skips the adding process.
     Otherwise, it proceeds to add the new column to the table.
 
     The operation is performed using Alembic's batch_alter_table.
@@ -333,7 +343,7 @@ def drop_columns(table_name: str, *columns: str) -> None:
     """
     Drops specified columns from an existing database table.
 
-    If a column does not exist, it logs an informational message and skips the dropping process.
+    If a column or table does not exist, it logs an informational message and skips the dropping process.
     Otherwise, it proceeds to remove the column from the table.
 
     The operation is performed using Alembic's batch_alter_table.
@@ -468,3 +478,116 @@ def create_fks_for_table(
             remote_cols,
             ondelete=ondelete,
         )
+
+
+def cast_text_column_to_json(
+    table: str,
+    column: str,
+    pk: str = "id",
+    nullable: bool = True,
+    suffix: str = "_tmp",
+) -> None:
+    """
+    Cast a text column to JSON.
+
+    SQLAlchemy now has a nice abstraction for JSON columns, even if the underlying
+    database doesn't support the type natively. We should always use it when storing
+    JSON payloads.
+
+    :param table: The name of the table.
+    :param column: The name of the column to be cast.
+    :param pk: The name of the primary key column.
+    :param nullable: Whether the new column should be nullable.
+    :param suffix: The suffix to be added to the temporary column name.
+    """
+    conn = op.get_bind()
+
+    if isinstance(conn.dialect, PGDialect):
+        conn.execute(
+            text(
+                f"""
+                ALTER TABLE {table}
+                ALTER COLUMN {column} TYPE jsonb
+                USING {column}::jsonb
+                """
+            )
+        )
+        return
+
+    tmp_column = column + suffix
+    op.add_column(
+        table,
+        Column(tmp_column, JSON(), nullable=nullable),
+    )
+
+    meta = MetaData()
+    t = Table(table, meta, autoload_with=conn)
+    stmt_select = select(t.c[pk], t.c[column]).where(t.c[column].is_not(None))
+
+    for row_pk, value in conn.execute(stmt_select):
+        stmt_update = update(t).where(t.c[pk] == row_pk).values({tmp_column: value})
+        conn.execute(stmt_update)
+
+    op.drop_column(table, column)
+    op.alter_column(table, tmp_column, existing_type=JSON(), new_column_name=column)
+
+    return
+
+
+def cast_json_column_to_text(
+    table: str,
+    column: str,
+    pk: str = "id",
+    nullable: bool = True,
+    suffix: str = "_tmp",
+    length: int = 128,
+) -> None:
+    """
+    Cast a JSON column back to text.
+
+    :param table: The name of the table.
+    :param column: The name of the column to be cast.
+    :param pk: The name of the primary key column.
+    :param nullable: Whether the new column should be nullable.
+    :param suffix: The suffix to be added to the temporary column name.
+    :param length: The length of the text column.
+    """
+    conn = op.get_bind()
+
+    if isinstance(conn.dialect, PGDialect):
+        conn.execute(
+            text(
+                f"""
+                ALTER TABLE {table}
+                ALTER COLUMN {column} TYPE text
+                USING {column}::text
+                """
+            )
+        )
+        return
+
+    tmp_column = column + suffix
+    op.add_column(
+        table,
+        Column(tmp_column, String(length=length), nullable=nullable),
+    )
+
+    meta = MetaData()
+    t = Table(table, meta, autoload_with=conn)
+    stmt_select = select(t.c[pk], t.c[column]).where(t.c[column].is_not(None))
+
+    for row_pk, value in conn.execute(stmt_select):
+        stmt_update = (
+            update(t).where(t.c[pk] == row_pk).values({tmp_column: json.dumps(value)})
+        )
+        conn.execute(stmt_update)
+
+    op.drop_column(table, column)
+    op.alter_column(
+        table,
+        tmp_column,
+        existing_type=String(length=length),
+        new_column_name=column,
+    )
+
+    return
diff --git a/superset/migrations/versions/2022-07-07_00-00_cdcf3d64daf4_add_user_id_dttm_idx_to_log_model.py b/superset/migrations/versions/2022-07-07_00-00_cdcf3d64daf4_add_user_id_dttm_idx_to_log_model.py
index 9a2bfad53b000c9644fa2f3e0394316465369db2..f0e97b9bd6014f04427c51238835d888f6730b5a 100644
--- a/superset/migrations/versions/2022-07-07_00-00_cdcf3d64daf4_add_user_id_dttm_idx_to_log_model.py
+++ b/superset/migrations/versions/2022-07-07_00-00_cdcf3d64daf4_add_user_id_dttm_idx_to_log_model.py
@@ -22,19 +22,20 @@ Create Date: 2022-04-05 13:27:06.028908
 
 """
 
+from alembic import op
+
+from superset.migrations.shared.utils import create_index, drop_index
+
 # revision identifiers, used by Alembic.
 revision = "cdcf3d64daf4"
 down_revision = "7fb8bca906d2"
 
 
-from alembic import op  # noqa: E402
-
-
 def upgrade():
-    op.create_index(
-        op.f("ix_logs_user_id_dttm"), "logs", ["user_id", "dttm"], unique=False
+    create_index(
+        "logs", op.f("ix_logs_user_id_dttm"), ["user_id", "dttm"], unique=False
     )
 
 
 def downgrade():
-    op.drop_index(op.f("ix_logs_user_id_dttm"), table_name="logs")
+    drop_index(index_name=op.f("ix_logs_user_id_dttm"), table_name="logs")
diff --git a/superset/migrations/versions/2023-06-21_14-02_90139bf715e4_add_currency_column_to_metrics.py b/superset/migrations/versions/2023-06-21_14-02_90139bf715e4_add_currency_column_to_metrics.py
index 005f4ce40d65dcc1ce9e29b06b5822d2538251d1..a59dc329b2e0e237dacb4f7a184e7bc87f25fdf3 100644
--- a/superset/migrations/versions/2023-06-21_14-02_90139bf715e4_add_currency_column_to_metrics.py
+++ b/superset/migrations/versions/2023-06-21_14-02_90139bf715e4_add_currency_column_to_metrics.py
@@ -22,21 +22,20 @@ Create Date: 2023-06-21 14:02:08.200955
 
 """
 
+import sqlalchemy as sa
+
+from superset.migrations.shared.utils import add_columns, drop_columns
+
 # revision identifiers, used by Alembic.
 revision = "90139bf715e4"
 down_revision = "83e1abbe777f"
 
-import sqlalchemy as sa  # noqa: E402
-from alembic import op  # noqa: E402
-
 
 def upgrade():
-    op.add_column("metrics", sa.Column("currency", sa.String(128), nullable=True))
-    op.add_column("sql_metrics", sa.Column("currency", sa.String(128), nullable=True))
+    add_columns("metrics", sa.Column("currency", sa.String(128), nullable=True))
+    add_columns("sql_metrics", sa.Column("currency", sa.String(128), nullable=True))
 
 
 def downgrade():
-    with op.batch_alter_table("sql_metrics") as batch_op_sql_metrics:
-        batch_op_sql_metrics.drop_column("currency")
-    with op.batch_alter_table("metrics") as batch_op_metrics:
-        batch_op_metrics.drop_column("currency")
+    drop_columns("sql_metrics", "currency")
+    drop_columns("metrics", "currency")
diff --git a/superset/migrations/versions/2024-01-05_16-20_65a167d4c62e_add_indexes_to_report_models.py b/superset/migrations/versions/2024-01-05_16-20_65a167d4c62e_add_indexes_to_report_models.py
index 19fd18c5e5e3c65347ba62c85e6f551e42be1d0c..ec233f1958783d329de53fb17fdb76d05939e7bf 100644
--- a/superset/migrations/versions/2024-01-05_16-20_65a167d4c62e_add_indexes_to_report_models.py
+++ b/superset/migrations/versions/2024-01-05_16-20_65a167d4c62e_add_indexes_to_report_models.py
@@ -26,37 +26,41 @@ Create Date: 2024-01-05 16:20:31.598995
 revision = "65a167d4c62e"
 down_revision = "06dd9ff00fe8"
 
-from alembic import op  # noqa: E402
+
+from superset.migrations.shared.utils import create_index, drop_index  # noqa: E402
 
 
 def upgrade():
-    op.create_index(
-        "ix_report_execution_log_report_schedule_id",
+    create_index(
         "report_execution_log",
+        "ix_report_execution_log_report_schedule_id",
         ["report_schedule_id"],
         unique=False,
     )
-    op.create_index(
-        "ix_report_execution_log_start_dttm",
+    create_index(
         "report_execution_log",
+        "ix_report_execution_log_start_dttm",
         ["start_dttm"],
         unique=False,
     )
-    op.create_index(
-        "ix_report_recipient_report_schedule_id",
+    create_index(
         "report_recipient",
+        "ix_report_recipient_report_schedule_id",
         ["report_schedule_id"],
         unique=False,
     )
 
 
 def downgrade():
-    op.drop_index(
-        "ix_report_recipient_report_schedule_id", table_name="report_recipient"
+    drop_index(
+        index_name="ix_report_recipient_report_schedule_id",
+        table_name="report_recipient",
     )
-    op.drop_index(
-        "ix_report_execution_log_start_dttm", table_name="report_execution_log"
+    drop_index(
+        index_name="ix_report_execution_log_start_dttm",
+        table_name="report_execution_log",
     )
-    op.drop_index(
-        "ix_report_execution_log_report_schedule_id", table_name="report_execution_log"
+    drop_index(
+        index_name="ix_report_execution_log_report_schedule_id",
+        table_name="report_execution_log",
     )
diff --git a/superset/migrations/versions/2024-03-20_16-02_678eefb4ab44_add_access_token_table.py b/superset/migrations/versions/2024-03-20_16-02_678eefb4ab44_add_access_token_table.py
index 7d9c851285c51537dcb5d954f923651d693ce233..3c13803ad16085f715a8bd2c2f3165739977530f 100644
--- a/superset/migrations/versions/2024-03-20_16-02_678eefb4ab44_add_access_token_table.py
+++ b/superset/migrations/versions/2024-03-20_16-02_678eefb4ab44_add_access_token_table.py
@@ -27,6 +27,7 @@ from alembic import op
 from sqlalchemy_utils import EncryptedType
 
 from superset.migrations.shared.utils import (
+    create_index,
     create_table,
     drop_fks_for_table,
 )
@@ -77,9 +78,9 @@ def upgrade():
         ),
         sa.PrimaryKeyConstraint("id"),
     )
-    op.create_index(
-        "idx_user_id_database_id",
+    create_index(
         "database_user_oauth2_tokens",
+        "idx_user_id_database_id",
         ["user_id", "database_id"],
     )
 
diff --git a/superset/migrations/versions/2024-05-02_13-40_3dfd0e78650e_add_query_sql_editor_id_index.py b/superset/migrations/versions/2024-05-02_13-40_3dfd0e78650e_add_query_sql_editor_id_index.py
index d4eacaf5a2661af5219b14e39037c09f0b5e4b3a..4689d911804904efe1fbf1aef786da997e399e9b 100644
--- a/superset/migrations/versions/2024-05-02_13-40_3dfd0e78650e_add_query_sql_editor_id_index.py
+++ b/superset/migrations/versions/2024-05-02_13-40_3dfd0e78650e_add_query_sql_editor_id_index.py
@@ -22,28 +22,26 @@ Create Date: 2024-05-02 13:40:23.126659
 
 """
 
+from alembic import op
+
+from superset.migrations.shared.utils import create_index, drop_index
+
 # revision identifiers, used by Alembic.
 revision = "3dfd0e78650e"
 down_revision = "5f57af97bc3f"
 
-from alembic import op  # noqa: E402
-
-from superset.migrations.shared.utils import table_has_index  # noqa: E402
-
 table = "query"
 index = "ix_sql_editor_id"
 
 
 def upgrade():
-    if not table_has_index(table, index):
-        op.create_index(
-            op.f(index),
-            table,
-            ["sql_editor_id"],
-            unique=False,
-        )
+    create_index(
+        table,
+        op.f(index),
+        ["sql_editor_id"],
+        unique=False,
+    )
 
 
 def downgrade():
-    if table_has_index(table, index):
-        op.drop_index(op.f(index), table_name=table)
+    drop_index(index_name=op.f(index), table_name=table)
diff --git a/superset/migrations/versions/2025-04-30_11-04_f1edd4a4d4f2_metric_currency_should_be_json.py b/superset/migrations/versions/2025-04-30_11-04_f1edd4a4d4f2_metric_currency_should_be_json.py
new file mode 100644
index 0000000000000000000000000000000000000000..c01f2a33e9dc54e46b2ca06a30d6ec57e637e6ab
--- /dev/null
+++ b/superset/migrations/versions/2025-04-30_11-04_f1edd4a4d4f2_metric_currency_should_be_json.py
@@ -0,0 +1,46 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+"""metric currency should be JSON
+
+Revision ID: f1edd4a4d4f2
+Revises: 378cecfdba9f
+Create Date: 2025-04-30 11:04:39.105229
+
+"""
+
+from superset.migrations.shared.utils import (
+    cast_json_column_to_text,
+    cast_text_column_to_json,
+)
+
+# revision identifiers, used by Alembic.
+revision = "f1edd4a4d4f2"
+down_revision = "378cecfdba9f"
+
+
+def upgrade():
+    """
+    Convert the currency column to JSON.
+    """
+    cast_text_column_to_json("sql_metrics", "currency")
+
+
+def downgrade():
+    """
+    Convert the currency column back to text.
+    """
+    cast_json_column_to_text("sql_metrics", "currency")
diff --git a/superset/models/helpers.py b/superset/models/helpers.py
index 5dc97b602af248071b8aacb4998e3a427e3d55fa..db05b415848a5b701d5618443f5db360908a0aab 100644
--- a/superset/models/helpers.py
+++ b/superset/models/helpers.py
@@ -1585,10 +1585,6 @@ class ExploreMixin:  # pylint: disable=too-many-public-methods
                     # use the existing instance.
                     col = metrics_exprs_by_expr.get(str(col), col)
                     need_groupby = True
-            elif col in columns_by_name:
-                col = self.convert_tbl_column_to_sqla_col(
-                    columns_by_name[col], template_processor=template_processor
-                )
             elif col in metrics_exprs_by_label:
                 col = metrics_exprs_by_label[col]
                 need_groupby = True
@@ -1597,6 +1593,10 @@ class ExploreMixin:  # pylint: disable=too-many-public-methods
                     template_processor=template_processor
                 )
                 need_groupby = True
+            elif col in columns_by_name:
+                col = self.convert_tbl_column_to_sqla_col(
+                    columns_by_name[col], template_processor=template_processor
+                )
 
             if isinstance(col, ColumnElement):
                 orderby_exprs.append(col)
diff --git a/superset/sql/parse.py b/superset/sql/parse.py
index 9e006c280996985471d75ee530d2eb6143fcd931..dc9ca632bbabdea3d6567a7e9144d62edc85dc64 100644
--- a/superset/sql/parse.py
+++ b/superset/sql/parse.py
@@ -32,6 +32,7 @@ from deprecation import deprecated
 from sqlglot import exp
 from sqlglot.dialects.dialect import Dialect, Dialects
 from sqlglot.errors import ParseError
+from sqlglot.expressions import Func
 from sqlglot.optimizer.pushdown_predicates import pushdown_predicates
 from sqlglot.optimizer.scope import Scope, ScopeType, traverse_scope
 
@@ -453,6 +454,23 @@ class SQLStatement(BaseSQLStatement[exp.Expression]):
 
         return SQLStatement(sql, self.engine, optimized)
 
+    def check_functions_present(self, functions: set[str]) -> bool:
+        """
+        Check if any of the given functions are present in the script.
+
+        :param functions: List of functions to check for
+        :return: True if any of the functions are present
+        """
+        present = {
+            (
+                function.sql_name()
+                if function.sql_name() != "ANONYMOUS"
+                else function.name.upper()
+            )
+            for function in self._parsed.find_all(Func)
+        }
+        return any(function.upper() in present for function in functions)
+
 
 class KQLSplitState(enum.Enum):
     """
@@ -619,6 +637,16 @@ class KustoKQLStatement(BaseSQLStatement[str]):
         """
         return KustoKQLStatement(self._sql, self.engine, self._parsed)
 
+    def check_functions_present(self, functions: set[str]) -> bool:
+        """
+        Check if any of the given functions are present in the script.
+
+        :param functions: List of functions to check for
+        :return: True if any of the functions are present
+        """
+        logger.warning("Kusto KQL doesn't support checking for functions present.")
+        return True
+
 
 class SQLScript:
     """
@@ -684,6 +712,18 @@ class SQLScript:
 
         return script
 
+    def check_functions_present(self, functions: set[str]) -> bool:
+        """
+        Check if any of the given functions are present in the script.
+
+        :param functions: List of functions to check for
+        :return: True if any of the functions are present
+        """
+        return any(
+            statement.check_functions_present(functions)
+            for statement in self.statements
+        )
+
 
 def extract_tables_from_statement(
     statement: exp.Expression,
diff --git a/superset/sql_parse.py b/superset/sql_parse.py
index 2cd8d0ac9dc09f343998c52d0560aea3258dc899..8fae4507efa00cfbda795fd4f5fc538063b5b2ee 100644
--- a/superset/sql_parse.py
+++ b/superset/sql_parse.py
@@ -31,7 +31,6 @@ from sqlalchemy import and_
 from sqlparse import keywords
 from sqlparse.lexer import Lexer
 from sqlparse.sql import (
-    Function,
     Identifier,
     IdentifierList,
     Parenthesis,
@@ -181,7 +180,7 @@ def check_sql_functions_exist(
     :param function_list: The list of functions to search for
     :param engine: The engine to use for parsing the SQL statement
     """
-    return ParsedQuery(sql, engine=engine).check_functions_exist(function_list)
+    return SQLScript(sql, engine=engine).check_functions_present(function_list)
 
 
 def strip_comments_from_sql(statement: str, engine: str = "base") -> str:
@@ -229,34 +228,6 @@ class ParsedQuery:
             self._tables = self._extract_tables_from_sql()
         return self._tables
 
-    def _check_functions_exist_in_token(
-        self, token: Token, functions: set[str]
-    ) -> bool:
-        if (
-            isinstance(token, Function)
-            and token.get_name() is not None
-            and token.get_name().lower() in functions
-        ):
-            return True
-        if hasattr(token, "tokens"):
-            for inner_token in token.tokens:
-                if self._check_functions_exist_in_token(inner_token, functions):
-                    return True
-        return False
-
-    def check_functions_exist(self, functions: set[str]) -> bool:
-        """
-        Check if the SQL statement contains any of the specified functions.
-
-        :param functions: A set of functions to search for
-        :return: True if the statement contains any of the specified functions
-        """
-        for statement in self._parsed:
-            for token in statement.tokens:
-                if self._check_functions_exist_in_token(token, functions):
-                    return True
-        return False
-
     def _extract_tables_from_sql(self) -> set[Table]:
         """
         Extract all table references in a query.
diff --git a/superset/translations/ar/LC_MESSAGES/messages.po b/superset/translations/ar/LC_MESSAGES/messages.po
index 38e6732d0e6f2c7a6b07b326ad70e003aa396b0e..81e9a64574f0163361cdecd5162b14bbfaa51b21 100644
--- a/superset/translations/ar/LC_MESSAGES/messages.po
+++ b/superset/translations/ar/LC_MESSAGES/messages.po
@@ -24,7 +24,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version:  \n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-08-25 17:38+0300\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2024-07-14 15:10+0300\n"
 "Last-Translator: Abdalrahim G. Fakhouri <abdilra7eem@yahoo.com>\n"
 "Language: ar\n"
@@ -78,12 +78,12 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
-"\n"
-"خطأ: %(text)s\n"
-"            "
 
 msgid " (excluded)"
 msgstr " (مستبعد)"
@@ -99,9 +99,17 @@ msgstr " لوحة معلومات أو "
 msgid " a new one"
 msgstr " واحدة جديدة"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr " التعبير الذي يحتاج إلى الالتزام بـ "
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr " الكود المصدري لمحلل الحماية الخاص بـ Superset"
 
@@ -168,15 +176,9 @@ msgstr "النسبة المئوية من الإجمالي"
 msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr "لا يمكن استخدام %(dialect)s كمصدر بيانات لأسباب أمنية."
 
-#, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
-msgstr ""
-"%(message)s\n"
-"قد يحدث هذا بسبب: \n"
-"%(issues)s"
+#, fuzzy, python-format
+msgid "%(label)s file"
+msgstr "%(prefix)s %(title)s"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -190,22 +192,6 @@ msgstr "%(name)s.csv"
 msgid "%(object)s does not exist in this database."
 msgstr "%(object)s غير موجود في قاعدة البيانات هذه."
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr "ستظهر مخططات %(other)s هنا"
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr "ستظهر لوحات معلومات %(other)s هنا"
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr "%(other)s ستظهر الأخيرة هنا"
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s ستظهر الاستعلامات المحفوظة هنا"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr "%(prefix)s %(title)s"
@@ -221,16 +207,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr "%(rows)d الصفوف التي تم إرجاعها"
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-"%(subtitle)s\n"
-"قد يحدث هذا بسبب:\n"
-" %(issue)s"
-
 #, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -243,10 +219,6 @@ msgstr[3] ""
 msgstr[4] ""
 msgstr[5] ""
 
-#, fuzzy, python-format
-msgid "%(type)s File"
-msgstr "%(prefix)s %(title)s"
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -301,10 +273,6 @@ msgstr "%s المجاميع"
 msgid "%s column(s)"
 msgstr "%s عمود (أعمدة)"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -407,6 +375,10 @@ msgstr ""
 "بمسح ملفات تعريف الارتباط أو تغيير المتصفحات.\n"
 "\n"
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0 محدد"
 
@@ -468,6 +440,13 @@ msgstr "1 سنة تردد البدء"
 msgid "10 minute"
 msgstr "10 دقائق"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 النسب المئوية"
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr "أسابيع 104"
 
@@ -564,6 +543,10 @@ msgstr "5 ثوان"
 msgid "5 seconds"
 msgstr "5 ثوان"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 النسب المئوية"
+
 msgid "52 weeks"
 msgstr "أسابيع 52"
 
@@ -630,9 +613,6 @@ msgstr ">= (أكبر أو يساوي)"
 msgid "A Big Number"
 msgstr "عدد كبير"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "حدد أسماء الأعمدة من القائمة المنسدلة التي يجب معاملتها كتواريخ."
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr "قائمة مفصولة بفواصل من المخططات التي يسمح للملفات بالتحميل إليها."
 
@@ -642,6 +622,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr "قاعدة بيانات بنفس الاسم موجودة بالفعل."
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 #, fuzzy
 msgid ""
 "A dictionary with column names and their data types if you need to change"
@@ -728,13 +711,6 @@ msgstr ""
 "مجموعة من المعلمات التي تصبح متوفرة في الاستعلام باستخدام بناء جملة Jinja"
 " templating"
 
-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 "حدث انقاط أثناء تنفيذ الاستعلام."
 
@@ -836,33 +812,41 @@ msgstr ""
 msgid "Add CSS template"
 msgstr "إضافة قالب CSS"
 
-msgid "Add Chart"
-msgstr "إضافة مخطط"
-
-msgid "Add Column"
-msgstr "إضافة عمود"
-
 msgid "Add Dashboard"
 msgstr "إضافة لوحة معلومات"
 
-msgid "Add Database"
-msgstr "إضافة قاعدة بيانات"
+#, fuzzy
+msgid "Add Divider"
+msgstr "مقسم"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "إضافة فلتر"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "إخفاء الطبقة"
 
 msgid "Add Log"
 msgstr "إضافة سجل"
 
-msgid "Add Metric"
-msgstr "إضافة مقياس"
-
 msgid "Add Report"
 msgstr "إضافة تقرير"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "الأدوار المستبعدة"
+
 msgid "Add Rule"
 msgstr "إضافة قاعدة"
 
 msgid "Add Tag"
 msgstr "إضافة علامة"
 
+#, fuzzy
+msgid "Add User"
+msgstr "إضافة قاعدة"
+
 msgid "Add a Plugin"
 msgstr "إضافة مكون إضافي"
 
@@ -950,9 +934,6 @@ msgstr ""
 "                    من البيانات الأساسية أو الحد من القيم المتاحة "
 "المعروضة في عامل التصفية."
 
-msgid "Add filters and dividers"
-msgstr "إضافة فلاتر وفواصل"
-
 msgid "Add item"
 msgstr "إضافة عنصر"
 
@@ -968,6 +949,10 @@ msgstr "إضافة منسق لون جديد"
 msgid "Add new formatter"
 msgstr "إضافة منسق جديد"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "إضافة فلاتر وتعديلها"
+
 msgid "Add required control values to preview chart"
 msgstr "إضافة قيم التحكم المطلوبة لمعاينة المخطط"
 
@@ -989,12 +974,19 @@ msgstr "إضافة اسم لوحة المعلومات"
 msgid "Add to dashboard"
 msgstr "إضافة إلى لوحة القيادة"
 
-msgid "Add/Edit Filters"
-msgstr "إضافة/تحرير الفلاتر"
-
 msgid "Added"
 msgstr "مضاف"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -1014,9 +1006,6 @@ msgstr "قد تكون هناك حاجة إلى حقول إضافية"
 msgid "Additional information"
 msgstr "معلومات إضافية"
 
-msgid "Additional metadata"
-msgstr "بيانات وصفية إضافية"
-
 msgid "Additional padding for legend."
 msgstr "حشوة إضافية للأسطورة."
 
@@ -1081,6 +1070,14 @@ msgstr "نوع البيانات المتقدمة"
 msgid "Advanced-Analytics"
 msgstr "التحليلات المتقدمة"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "حدد الرسوم البيانية"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "حدد لوحات المعلومات"
+
 msgid "After"
 msgstr "بعد"
 
@@ -1115,6 +1112,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "تجميع"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "تجميع"
+
 msgid "Aggregation function"
 msgstr "وظيفة التجميع"
 
@@ -1196,6 +1197,10 @@ msgstr "محاذاة +/-"
 msgid "All"
 msgstr "كل"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "أعمدة الجدول"
+
 msgid "All Text"
 msgstr "كل النص"
 
@@ -1211,26 +1216,14 @@ msgstr "كل عوامل التصفية"
 msgid "All panels"
 msgstr "جميع اللوحات"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr "ستتأثر جميع اللوحات التي تحتوي على هذا العمود بهذا الفلتر"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "السماح بإنشاء جدول ك"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "السماح بالخيار \"إنشاء جدول باسم\" في SQL Lab"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "السماح بإنشاء طريقة عرض باسم"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "السماح بالخيار \"إنشاء طريقة عرض باسم\" في SQL Lab"
-
-msgid "Allow Csv Upload"
-msgstr "السماح بتحميل csv"
-
-msgid "Allow DML"
-msgstr "السماح ب DML"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr ""
@@ -1248,6 +1241,10 @@ msgstr "السماح بإعادة ترتيب الأعمدة"
 msgid "Allow creation of new tables based on queries"
 msgstr "السماح بإنشاء جداول جديدة استنادا إلى الاستعلامات"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "السماح بإنشاء طرق عرض جديدة استنادا إلى الاستعلامات"
+
 msgid "Allow creation of new views based on queries"
 msgstr "السماح بإنشاء طرق عرض جديدة استنادا إلى الاستعلامات"
 
@@ -1264,32 +1261,24 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr "السماح بتحميل الملفات إلى قاعدة البيانات"
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-"السماح بمعالجة قاعدة البيانات باستخدام عبارات غير محددة مثل التحديث "
-"والحذف والإنشاء وما إلى ذلك."
-
 msgid "Allow node selections"
 msgstr "السماح بتحديد العقدة"
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr "السماح بإرسال مضلعات متعددة كحدث تصفية"
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "السماح باستكشاف قاعدة البيانات هذه"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "السماح بالاستعلام عن قاعدة البيانات هذه في SQL Lab"
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
-msgstr ""
-"السماح للمستخدمين بتشغيل عبارات غير محددة (تحديث ، حذف ، إنشاء ، ...) في "
-"SQL Lab"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "المجالات المسموح بها (مفصولة بفواصل)"
 
@@ -1333,6 +1322,10 @@ msgstr "يجب تحديد المحرك عند تمرير المعلمات الف
 msgid "An error has occurred"
 msgstr "حدث خطأ"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "حدث خطأ أثناء جلب مجموعات البيانات: %s"
+
 msgid "An error occurred"
 msgstr "حدث خطأ"
 
@@ -1342,6 +1335,10 @@ msgstr "حدث خطأ أثناء حفظ مجموعة البيانات"
 msgid "An error occurred when running alert query"
 msgstr "حدث خطأ عند تشغيل استعلام التنبيه"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "حدث خطأ أثناء الوصول إلى القيمة."
+
 msgid "An error occurred while accessing the value."
 msgstr "حدث خطأ أثناء الوصول إلى القيمة."
 
@@ -1354,6 +1351,10 @@ msgstr "حدث خطأ أثناء طي مخطط الجدول. الرجاء الا
 msgid "An error occurred while creating %ss: %s"
 msgstr "حدث خطأ أثناء إنشاء %ss: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "حدث خطأ أثناء إنشاء القيمة."
+
 msgid "An error occurred while creating the data source"
 msgstr "حدث خطأ أثناء إنشاء مصدر البيانات"
 
@@ -1489,6 +1490,10 @@ msgstr ""
 "حدث خطأ أثناء تخزين الاستعلام في الواجهة الخلفية. لتجنب فقدان التغييرات ،"
 " يرجى حفظ استفسارك باستخدام زر \"حفظ الاستعلام\"."
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "حدث خطأ أثناء جلب %ss: %s"
+
 msgid "An error occurred while updating the value."
 msgstr "حدث خطأ أثناء تحديث القيمة."
 
@@ -1674,12 +1679,6 @@ msgstr "تطبيق الفلاتر"
 msgid "Apply metrics on"
 msgstr "تطبيق المقاييس على"
 
-msgid "Apply to all panels"
-msgstr "تنطبق على جميع اللوحات"
-
-msgid "Apply to specific panels"
-msgstr "تنطبق على لوحات محددة"
-
 msgid "April"
 msgstr "أبريل"
 
@@ -1721,6 +1720,10 @@ msgstr "هل أنت متأكد من أنك تريد حذف الطبقات الم
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "هل أنت متأكد من رغبتك في حذف الاستعلامات المحددة؟"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "هل أنت متأكد من أنك تريد حذف القواعد المحددة؟"
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "هل أنت متأكد من أنك تريد حذف القواعد المحددة؟"
 
@@ -1730,6 +1733,10 @@ msgstr "هل أنت متأكد من أنك تريد حذف العلامات ال
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "هل أنت متأكد من أنك تريد حذف القوالب المحددة؟"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "هل أنت متأكد من رغبتك في حذف الاستعلامات المحددة؟"
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "هل أنت متأكد من أنك تريد الكتابة فوق مجموعة البيانات هذه؟"
 
@@ -1769,15 +1776,13 @@ msgstr "تعيين مجموعة من المعلمات ك"
 msgid "Assist"
 msgstr "ساعد"
 
-msgid "Associated Charts"
-msgstr "الرسوم البيانية المرتبطة"
-
-msgid "Async Execution"
-msgstr "التنفيذ غير المتزامن"
-
 msgid "Asynchronous query execution"
 msgstr "تنفيذ استعلام غير متزامن"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "التوزيع"
+
 msgid "August"
 msgstr "أغسطس"
 
@@ -1802,12 +1807,26 @@ msgstr "استعلام الإكمال التلقائي المسند"
 msgid "Automatic Color"
 msgstr "اللون التلقائي"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "تخصيص الأعمدة"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "تخصيص الأعمدة"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "أوضاع الفرز المتاحة:"
 
 msgid "Average"
 msgstr "متوسط"
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr "متوسط القيمة"
 
@@ -1844,6 +1863,10 @@ msgstr "العودة إلى الكل"
 msgid "Backend"
 msgstr "الواجهة الخلفية"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "خلفية"
+
 msgid "Backward values"
 msgstr "القيم العكسية"
 
@@ -1859,9 +1882,6 @@ msgstr "بار"
 msgid "Bar Chart"
 msgstr "مخطط شريطي"
 
-msgid "Bar Chart (legacy)"
-msgstr "مخطط شريطي (قديم)"
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr "تستخدم المخططات الشريطية لإظهار المقاييس كسلسلة من الأشرطة."
 
@@ -1874,10 +1894,25 @@ msgstr "اتجاه الشريط"
 msgid "Base"
 msgstr "قاعدة"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "منفذ قاعدة البيانات"
+
+#, fuzzy
+msgid "Base height"
+msgstr "ارتفاع الرسم البياني"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr "نمط خريطة الطبقة الأساسية. راجع وثائق Mapbox: %s"
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "عرض الخط"
+
 msgid "Based on a metric"
 msgstr "استنادا إلى مقياس"
 
@@ -1897,9 +1932,6 @@ msgstr "المعلومات الأساسية"
 msgid "Batch editing %d filters:"
 msgstr "مرشحات تحرير الدفعات %d:"
 
-msgid "Battery level over time"
-msgstr "مستوى البطارية بمرور الوقت"
-
 msgid "Be careful."
 msgstr "انتبه."
 
@@ -1922,6 +1954,14 @@ msgstr "رقم كبير مع خط الاتجاه"
 msgid "Bins"
 msgstr "في"
 
+#, fuzzy
+msgid "Border color"
+msgstr "ألوان السلسلة"
+
+#, fuzzy
+msgid "Border width"
+msgstr "عرض الحافة"
+
 msgid "Bottom"
 msgstr "قاع"
 
@@ -2048,9 +2088,6 @@ msgstr "مخطط نقطي"
 msgid "Business"
 msgstr "مهنة"
 
-msgid "Business Data Type"
-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"
@@ -2119,7 +2156,8 @@ msgstr "قوالب CSS"
 msgid "CSS templates could not be deleted."
 msgstr "تعذر حذف قوالب CSS."
 
-msgid "CSV Upload"
+#, fuzzy
+msgid "CSV upload"
 msgstr "تحميل CSV"
 
 msgid "CTAS & CVAS SCHEMA"
@@ -2134,8 +2172,9 @@ msgstr ""
 "العبارة الأخيرة عبارة عن SELECT. يرجى التأكد من أن استفسارك يحتوي على "
 "SELECT كبيان أخير له. ثم حاول تشغيل الاستعلام مرة أخرى."
 
-msgid "CTAS Schema"
-msgstr "مخطط CTAS"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "تقليد"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2152,9 +2191,6 @@ msgstr "يحتوي استعلام CVAS (إنشاء طريقة عرض كتحدي
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "استعلام CVAS (إنشاء طريقة عرض كتحديد) ليس عبارة SELECT."
 
-msgid "Cache Timeout"
-msgstr "انقطاع ذاكرة التخزين المؤقت"
-
 msgid "Cache Timeout (seconds)"
 msgstr "مهلة ذاكرة التخزين المؤقت (بالثواني)"
 
@@ -2199,9 +2235,6 @@ msgstr "لا يمكن نقل علامة تبويب المستوى الأعلى 
 msgid "Can select multiple values"
 msgstr "يمكن تحديد قيم متعددة"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "لا يمكن أن يكون هناك تداخل بين السلسلة والأعطال"
-
 msgid "Cancel"
 msgstr "إلغاء الأمر"
 
@@ -2214,6 +2247,10 @@ msgstr "لا يمكن الوصول إلى الاستعلام"
 msgid "Cannot delete a database that has datasets attached"
 msgstr "لا يمكن حذف قاعدة بيانات تحتوي على مجموعات بيانات مرفقة"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr "لا يمكن أن يكون لديك بيانات اعتماد متعددة لنفق SSH"
 
@@ -2224,6 +2261,10 @@ msgstr "لا يمكن تحميل عامل التصفية"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "لا يمكن تحليل السلسلة الزمنية [%(human_readable)s]"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "مخطط التقسيم"
+
 #, fuzzy
 msgid "Catalog"
 msgstr "الوسم"
@@ -2301,12 +2342,13 @@ msgstr "تغيير ترتيب الأعمدة."
 msgid "Change order of rows."
 msgstr "تغيير ترتيب الصفوف."
 
-msgid "Changed By"
-msgstr "تم التغيير بواسطة"
-
 msgid "Changed by"
 msgstr "تم التغيير بواسطة"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "التغير"
+
 msgid "Changes saved."
 msgstr "التغييرات المحفوظة."
 
@@ -2358,9 +2400,6 @@ msgstr "جدول"
 msgid "Chart %(id)s not found"
 msgstr "لم يتم العثور على الرسم البياني %(id)s"
 
-msgid "Chart Cache Timeout"
-msgstr "مهلة ذاكرة التخزين المؤقت للمخطط"
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr "بيانات الرسم البياني: %s"
@@ -2459,6 +2498,10 @@ msgstr "معلمات الرسم البياني غير صالحة."
 msgid "Chart properties updated"
 msgstr "تم تحديث خصائص المخطط"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "الرسوم البيانية"
+
 msgid "Chart title"
 msgstr "عنوان الرسم البياني"
 
@@ -2508,6 +2551,10 @@ msgstr "يجب أن يكون اختيار [نصف قطر النقطة] موجو
 msgid "Choose File"
 msgstr "اختر ملف"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "اختر مخططا أو لوحة معلومات وليس كليهما"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "اختر مخططا أو لوحة معلومات وليس كليهما"
 
@@ -2530,9 +2577,6 @@ msgstr "اختر تنسيق أرقام"
 msgid "Choose a source"
 msgstr "اختر مصدرا"
 
-msgid "Choose a source and a target"
-msgstr "اختر مصدرا وهدفا"
-
 msgid "Choose a target"
 msgstr "اختر هدفا"
 
@@ -2618,9 +2662,6 @@ msgstr "شكل رادار دائري"
 msgid "Circular"
 msgstr "مدور"
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2643,7 +2684,10 @@ msgstr "مسح جميع البيانات"
 msgid "Clear form"
 msgstr "شكل واضح"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 "انقر فوق الزر \"+ إضافة / تحرير عوامل التصفية\" لإنشاء عوامل تصفية لوحة "
 "معلومات جديدة"
@@ -2676,6 +2720,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr "انقر لإضافة محيط"
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "انقر لإضافة محيط"
+
 msgid "Click to cancel sorting"
 msgstr "انقر لإلغاء الفرز"
 
@@ -2795,12 +2843,13 @@ msgstr "العمود \"%(column)s\" غير رقمي أو غير موجود في
 msgid "Column Configuration"
 msgstr "تكوين العمود"
 
-msgid "Column Data Types"
-msgstr "أنواع بيانات الأعمدة"
-
 msgid "Column Formatting"
 msgstr "تنسيق العمود"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "إعدادات المضلع"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2816,9 +2865,6 @@ msgstr "عمود يحتوي على بيانات خط الطول"
 msgid "Column data types"
 msgstr "نوع بيانات العمود"
 
-msgid "Column datatype"
-msgstr "نوع بيانات العمود"
-
 msgid "Column header tooltip"
 msgstr "تلميح أداة رأس العمود"
 
@@ -2848,17 +2894,19 @@ msgstr ""
 "عمود فهرس."
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
+msgstr "نوع بيانات العمود"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "ملف عمودي"
 
 msgid "Columns"
 msgstr "الاعمده"
 
-msgid "Columns To Be Parsed as Dates"
-msgstr "الأعمدة المراد تحليلها كتواريخ"
-
-msgid "Columns To Read"
-msgstr "أعمدة للقراءة"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s عمود (أعمدة)"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2871,6 +2919,10 @@ msgstr "الأعمدة مفقودة في مصدر البيانات: %(invalid_co
 msgid "Columns subtotal position"
 msgstr "موضع الإجمالي الفرعي للأعمدة"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "الأعمدة المراد تحليلها كتواريخ"
+
 msgid "Columns to calculate distribution across."
 msgstr "أعمدة لحساب التوزيع عبر."
 
@@ -2886,6 +2938,10 @@ msgstr "أعمدة للتجميع حسب الأعمدة"
 msgid "Columns to group by on the rows"
 msgstr "أعمدة للتجميع حسب الصفوف"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "عرض إجمالي الأعمدة"
+
 msgid "Combine metrics"
 msgstr "الجمع بين المقاييس"
 
@@ -2929,21 +2985,6 @@ msgstr ""
 "يقارن كيفية تغير المقياس بمرور الوقت بين المجموعات المختلفة. يتم تعيين كل"
 " مجموعة إلى صف ويتم تصور التغيير بمرور الوقت لأطوال الأشرطة واللون."
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-"يقارن أطوال الوقت الذي تستغرقه الأنشطة المختلفة في طريقة عرض المخطط "
-"الزمني المشترك."
-
 msgid "Comparison"
 msgstr "المقارنه"
 
@@ -3003,18 +3044,28 @@ msgstr "تكوين نطاقات التصفية"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "قم بتكوين أساسيات طبقة التعليقات التوضيحية."
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr "قم بتكوين لوحة المعلومات هذه لتضمينها في تطبيق ويب خارجي."
 
 msgid "Configure your how you overlay is displayed here."
 msgstr "تكوين كيفية عرض التراكب الخاص بك هنا."
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "عرض كلمة المرور."
+
 msgid "Confirm overwrite"
 msgstr "تأكيد الكتابة فوق"
 
 msgid "Confirm save"
 msgstr "تأكيد الحفظ"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "عشق"
 
@@ -3046,9 +3097,6 @@ msgstr "فشل الاتصال ، يرجى التحقق من إعدادات ال
 msgid "Connection failed, please check your connection settings."
 msgstr "فشل الاتصال ، يرجى التحقق من إعدادات الاتصال الخاصة بك"
 
-msgid "Connection looks good!"
-msgstr "الاتصال يبدو جيدا!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "تنسيق التاريخ"
@@ -3087,21 +3135,21 @@ msgstr "نسخ إلى الحافظة!"
 msgid "Copy"
 msgstr "نسخ"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "نسخ عبارة SELECT إلى الحافظة"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "نسخ بيانات اعتماد JSON ولصقها"
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "انسخ والصق ملف .json حساب الخدمة بالكامل هنا"
-
 msgid "Copy link"
 msgstr "نسخ الرابط"
 
-msgid "Copy message"
-msgstr "نسخ الرسالة"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "نسخة من %s"
@@ -3118,6 +3166,9 @@ msgstr "نسخ عنوان URL لطلب البحث"
 msgid "Copy query link to your clipboard"
 msgstr "نسخ رابط الاستعلام إلى الحافظة"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr "انسخ معرف الحساب الذي تحاول الاتصال به."
 
@@ -3133,6 +3184,10 @@ msgstr "نسخ إلى الحافظة"
 msgid "Copy to clipboard"
 msgstr "نسخ إلى الحافظة"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "الشعاع الداخلي"
+
 msgid "Correlation"
 msgstr "الارتباط"
 
@@ -3162,6 +3217,9 @@ msgstr "تعذر تحميل برنامج تشغيل قاعدة البيانات:
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr "تعذر حل اسم المضيف: \"%(host)s\"."
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr "عد"
 
@@ -3254,6 +3312,9 @@ msgstr "إنشاء مصدر بيانات وإنشاء علامة تبويب جد
 msgid "Creator"
 msgstr "خالق"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr "قرمزي"
 
@@ -3343,6 +3404,9 @@ msgstr "لا يمكن أن تحتوي حقول SQL المخصصة على است
 msgid "Custom color palettes"
 msgstr "الإكمال التلقائي"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "هي علامة مخصصة"
@@ -3379,9 +3443,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr "تم الكشف عن التبعية الدورية"
 
-msgid "D3 Format"
-msgstr "تنسيق D3"
-
 msgid "D3 format"
 msgstr "تنسيق D3"
 
@@ -3445,8 +3506,20 @@ msgstr "تمت إضافة لوحة المعلومات [{}] إليها"
 msgid "Dashboard cannot be copied due to invalid parameters."
 msgstr ""
 
-msgid "Dashboard could not be deleted."
-msgstr "تعذر حذف لوحة المعلومات."
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "تعذر تحديث لوحة المعلومات."
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "تعذر تحديث لوحة المعلومات."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "تعذر تحديث لوحة المعلومات."
+
+msgid "Dashboard could not be deleted."
+msgstr "تعذر حذف لوحة المعلومات."
 
 msgid "Dashboard could not be updated."
 msgstr "تعذر تحديث لوحة المعلومات."
@@ -3457,6 +3530,10 @@ msgstr "لوحة القيادة غير موجودة"
 msgid "Dashboard imported"
 msgstr "لوحة المعلومات المستوردة"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "تعذر تحديث لوحة المعلومات."
+
 msgid "Dashboard parameters are invalid."
 msgstr "معلمات لوحة المعلومات غير صالحة."
 
@@ -3502,10 +3579,6 @@ msgstr "متقطع"
 msgid "Data"
 msgstr "بيانات"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "مجموعة البيانات المستوردة"
-
 msgid "Data Table"
 msgstr "جدول البيانات"
 
@@ -3535,6 +3608,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr "بيانات إضافية لـ JS"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "مجموعة البيانات المستوردة"
+
 msgid "Data preview"
 msgstr "معاينة البيانات"
 
@@ -3695,17 +3772,6 @@ msgstr ""
 "يمكن إنشاء مجموعات البيانات من جداول قاعدة البيانات أو استعلامات SQL. حدد"
 " جدول قاعدة بيانات إلى اليسار أو "
 
-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 ""
-"يمكن أن تحتوي مجموعات البيانات على عمود زمني رئيسي (main_dttm_col) ، ولكن"
-" يمكن أن تحتوي أيضا على أعمدة زمنية ثانوية. عندما تكون هذه السمة صحيحة، "
-"كلما تمت تصفية الأعمدة الثانوية، يتم تطبيق عامل التصفية نفسه على عمود "
-"التاريخ والوقت الرئيسي."
-
 msgid "Datasets could not be deleted."
 msgstr "تعذر حذف مجموعات البيانات."
 
@@ -3739,9 +3805,6 @@ msgstr "سلسلة تنسيق التاريخ"
 msgid "Date/Time"
 msgstr "التاريخ/الوقت"
 
-msgid "Datetime Format"
-msgstr "تنسيق التاريخ والوقت"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3771,13 +3834,12 @@ msgstr "الغاء تنشيط"
 msgid "December"
 msgstr "ديسمبر"
 
-msgid "Decides which column to sort the base axis by."
-msgstr "يقرر العمود الذي سيتم فرز المحور الأساسي حسبه."
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "يقرر المقياس الذي يجب فرز المحور الأساسي حسبه."
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "حرف عشري"
 
 msgid "Deck.gl - 3D Grid"
@@ -3820,9 +3882,6 @@ msgstr "نقصان"
 msgid "Default Catalog"
 msgstr "القيمة الافتراضية"
 
-msgid "Default Endpoint"
-msgstr "نقطة النهاية الافتراضية"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "إفتراضي"
@@ -3830,10 +3889,11 @@ msgstr "إفتراضي"
 msgid "Default URL"
 msgstr "URL الافتراضي"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
-"عنوان URL الافتراضي لإعادة التوجيه إليه عند الوصول من صفحة قائمة مجموعة "
-"البيانات"
 
 msgid "Default Value"
 msgstr "القيمة الافتراضية"
@@ -3854,9 +3914,6 @@ msgstr ""
 "الحد الأدنى الافتراضي لعرض العمود بالبكسل، قد يظل العرض الفعلي أكبر من "
 "هذا إذا كانت الأعمدة الأخرى لا تحتاج إلى مساحة كبيرة"
 
-msgid "Default value is required"
-msgstr "القيمة الافتراضية مطلوبة"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr "يجب تعيين القيمة الافتراضية عند تحديد «عامل التصفية له قيمة افتراضية»"
 
@@ -3911,9 +3968,6 @@ msgstr ""
 "يحدد وظيفة النافذة الدوارة للتطبيق، ويعمل جنبًا إلى جنب مع مربع نص "
 "[الفترات]"
 
-msgid "Defines how each series is broken down"
-msgstr "يحدد كيفية تقسيم كل سلسلة"
-
 msgid "Defines the grid size in pixels"
 msgstr "يحدد حجم الشبكة بالبكسل"
 
@@ -3973,9 +4027,17 @@ msgstr "حذف الاستعلام؟"
 msgid "Delete Report?"
 msgstr "حذف التقرير؟"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "حذف"
+
 msgid "Delete Template?"
 msgstr "هل تريد حذف القالب؟"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "حذف الاستعلام؟"
+
 msgid "Delete all Really?"
 msgstr "حذف الكل حقًا?"
 
@@ -3994,12 +4056,20 @@ msgstr "حذف تقرير البريد الإلكتروني"
 msgid "Delete query"
 msgstr "حذف الاستعلام"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "حذف"
+
 msgid "Delete template"
 msgstr "حذف القالب"
 
 msgid "Delete this container and save to remove this message."
 msgstr "احذف هذه الحاوية واحفظها لإزالة هذه الرسالة."
 
+#, fuzzy
+msgid "Delete user"
+msgstr "حذف الاستعلام"
+
 msgid "Deleted"
 msgstr "تم الحذف"
 
@@ -4097,6 +4167,22 @@ msgstr[5] ""
 msgid "Deleted %s"
 msgstr "تم الحذف %s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "تم الحذف: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "تم الحذف: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "تم الحذف: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "تم الحذف: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "تم الحذف: %s"
@@ -4118,18 +4204,12 @@ msgstr "محدد"
 msgid "Delivery method"
 msgstr "طريقة التوصيل"
 
-msgid "Demographics"
-msgstr "التركيبة السكانية"
-
 msgid "Density"
 msgstr "الكثافة"
 
 msgid "Dependent on"
 msgstr "يعتمد على"
 
-msgid "Deprecated"
-msgstr "تم إهماله"
-
 msgid "Description"
 msgstr "وصف"
 
@@ -4229,9 +4309,6 @@ msgstr "لم يتم إرجاع أي عينات لمجموعة البيانات 
 msgid "Discard"
 msgstr "تجاهل"
 
-msgid "Display"
-msgstr "شاشة"
-
 msgid "Display Name"
 msgstr "اسم العرض"
 
@@ -4239,12 +4316,20 @@ msgstr "اسم العرض"
 msgid "Display all"
 msgstr "اسم العرض"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "إجمالي مستوى عمود العرض"
+
 msgid "Display column level subtotal"
 msgstr "المجموع الفرعي لمستوى عمود العرض"
 
 msgid "Display column level total"
 msgstr "إجمالي مستوى عمود العرض"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "إجمالي مستوى عمود العرض"
+
 msgid "Display configuration"
 msgstr "تكوين العرض"
 
@@ -4270,8 +4355,9 @@ msgstr "المجموع الفرعي لمستوى صف العرض"
 msgid "Display row level total"
 msgstr "إجمالي مستوى صف العرض"
 
-msgid "Display settings"
-msgstr "إعدادات العرض"
+#, fuzzy
+msgid "Display type icon"
+msgstr "رمز النوع المنطقي"
 
 msgid ""
 "Displays connections between entities in a graph structure. Useful for "
@@ -4290,9 +4376,6 @@ msgstr "قم بالتوزيع عبر"
 msgid "Distribution"
 msgstr "التوزيع"
 
-msgid "Distribution - Bar Chart"
-msgstr "التوزيع - مخطط شريطي"
-
 msgid "Divider"
 msgstr "مقسم"
 
@@ -4320,9 +4403,18 @@ msgstr "تنزيل كصورة"
 msgid "Download as image"
 msgstr "تنزيل كصورة"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "تنزيل إلى CSV"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "مسودة"
 
@@ -4429,6 +4521,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "مجموعة بيانات مكررة"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "مكرر"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "اسم (أسماء) الأعمدة المكررة: %(columns)s"
+
 msgid "Duplicate tab"
 msgstr "علامة تبويب مكررة"
 
@@ -4445,22 +4545,6 @@ 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 إلى أن ذاكرة التخزين المؤقت لا تنتهي أبدًا. لاحظ أن هذه "
-"الإعدادات الافتراضية هي المهلة العالمية إذا لم يتم تحديدها."
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-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 "
@@ -4470,15 +4554,6 @@ msgstr ""
 "ذاكرة التخزين المؤقت. لاحظ هذه الإعدادات الافتراضية لمهلة مجموعة البيانات"
 " إذا لم يتم تحديدها."
 
-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 ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4503,6 +4578,10 @@ msgstr ""
 "المدة بالمللي ثانية (100.40008 => 100 مللي ثانية 400 ميكرو ثانية 80 "
 "نانوثانية)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "المدة بالمللي ثانية (66000 => 1 م 6 ثانية)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "المدة بالمللي ثانية (66000 => 1 م 6 ثانية)"
 
@@ -4524,10 +4603,6 @@ msgstr "النهاية (حصرية)"
 msgid "ERROR"
 msgstr "خطأ"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "خطأ: %s"
-
 msgid "Edge length"
 msgstr "طول الحافة"
 
@@ -4552,45 +4627,38 @@ msgstr "تحرير CSS"
 msgid "Edit CSS template properties"
 msgstr "تحرير خصائص قالب CSS"
 
-msgid "Edit Chart"
-msgstr "تحرير المخطط"
-
 msgid "Edit Chart Properties"
 msgstr "تحرير خصائص المخطط"
 
-msgid "Edit Column"
-msgstr "تحرير العمود"
-
 msgid "Edit Dashboard"
 msgstr "تحرير لوحة التحكم"
 
-msgid "Edit Database"
-msgstr "تحرير قاعدة البيانات"
-
 msgid "Edit Dataset "
 msgstr "تحرير مجموعة البيانات "
 
 msgid "Edit Log"
 msgstr "تحرير السجل"
 
-msgid "Edit Metric"
-msgstr "تحرير المقياس"
-
 msgid "Edit Plugin"
 msgstr "تحرير المكون الإضافي"
 
 msgid "Edit Report"
 msgstr "تحرير التقرير"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "وضع التحرير"
+
 msgid "Edit Rule"
 msgstr "تحرير القاعدة"
 
-msgid "Edit Table"
-msgstr "تحرير الجدول"
-
 msgid "Edit Tag"
 msgstr "تحرير العلامة"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "تحرير استعلام"
+
 msgid "Edit annotation"
 msgstr "تحرير التعليق التوضيحي"
 
@@ -4627,6 +4695,10 @@ msgstr "تحرير الخصائص"
 msgid "Edit query"
 msgstr "تحرير استعلام"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "وضع التحرير"
+
 msgid "Edit template"
 msgstr "تحرير القالب"
 
@@ -4639,6 +4711,10 @@ msgstr "تحرير لوحة المعلومات"
 msgid "Edit time range"
 msgstr "تحرير النطاق الزمني"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "تحرير استعلام"
+
 msgid "Edited"
 msgstr "تم تحريره"
 
@@ -4666,6 +4742,14 @@ msgstr "إما أن اسم المستخدم أو كلمة المرور خاطئ
 msgid "Elevation"
 msgstr "الارتفاع"
 
+#, fuzzy
+msgid "Email"
+msgstr "التفاصيل"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "القيمة مطلوبة"
+
 msgid "Email reports active"
 msgstr "تقارير البريد الإلكتروني نشطة"
 
@@ -4694,9 +4778,6 @@ msgstr "أحداث تصفية الانبعاثات"
 msgid "Emphasis"
 msgstr "توكيد"
 
-msgid "Employment and education"
-msgstr "التوظيف والتعليم"
-
 msgid "Empty circle"
 msgstr "دائرة فارغة"
 
@@ -4720,9 +4801,6 @@ msgstr ""
 "قم بتمكين «السماح بتحميل الملفات إلى قاعدة البيانات» في إعدادات أي قاعدة "
 "بيانات"
 
-msgid "Enable Filter Select"
-msgstr "تمكين تحديد عامل التصفية"
-
 msgid "Enable cross-filtering"
 msgstr "تمكين التصفية المتقاطعة"
 
@@ -4822,12 +4900,26 @@ msgstr "اسم التقرير"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "أدخل %(dbModelName)s بيانات الاعتماد المطلوبة"
 
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "اسم التنبيه"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "اسم التنبيه"
+
+msgid "Enter the user's username"
+msgstr ""
+
 msgid "Entity"
 msgstr "الكيان"
 
-msgid "Entity ID"
-msgstr "معرف الكيان"
-
 msgid "Equal Date Sizes"
 msgstr "مقاسات متساوية للتواريخ"
 
@@ -4840,6 +4932,14 @@ msgstr "خطأ"
 msgid "Error Fetching Tagged Objects"
 msgstr "حدث خطأ أثناء جلب الكائنات ذات العلامات"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "حدث خطأ أثناء جلب البيانات: %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "حدث خطأ أثناء حفظ مجموعة البيانات"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr "خطأ في تعبير jinja في جملة Having: %(msg)s"
@@ -4862,6 +4962,10 @@ msgstr "حدث خطأ أثناء تحميل مصادر بيانات المخطط
 msgid "Error message"
 msgstr "رسالة خطأ"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "خطأ مظلم"
+
 msgid "Error reading CSV file"
 msgstr ""
 
@@ -4876,6 +4980,22 @@ msgstr "تحميل ملف إكسيل"
 msgid "Error saving dataset"
 msgstr "حدث خطأ أثناء حفظ مجموعة البيانات"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "حدث خطأ أثناء حفظ مجموعة البيانات"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "حدث خطأ أثناء جلب المخططات"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "حدث خطأ أثناء جلب المخططات"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "حدث خطأ أثناء جلب المخططات"
+
 msgid "Error while fetching charts"
 msgstr "حدث خطأ أثناء جلب المخططات"
 
@@ -4883,10 +5003,30 @@ msgstr "حدث خطأ أثناء جلب المخططات"
 msgid "Error while fetching data: %s"
 msgstr "حدث خطأ أثناء جلب البيانات: %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "حدث خطأ أثناء جلب المخططات"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "حدث خطأ أثناء جلب المخططات"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "حدث خطأ أثناء جلب المخططات"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "حدث خطأ أثناء عرض استعلام مجموعة البيانات الافتراضية: %(msg)s"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "حدث خطأ أثناء جلب المخططات"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "حدث خطأ أثناء جلب المخططات"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "خطأ: %(error)s"
@@ -4910,15 +5050,6 @@ msgstr "قم بتقدير التكلفة قبل تشغيل الاستعلام"
 msgid "Event"
 msgstr "حدث"
 
-msgid "Event Flow"
-msgstr "تدفق الأحداث"
-
-msgid "Event Names"
-msgstr "أسماء الأحداث"
-
-msgid "Event definition"
-msgstr "تعريف الحدث"
-
 msgid "Event flow"
 msgstr "تدفق الأحداث"
 
@@ -4940,13 +5071,13 @@ msgstr "مثال"
 msgid "Examples"
 msgstr "أمثلة"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "تحميل CSV"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "تحميل CSV"
+
 msgid "Exclude selected values"
 msgstr "استبعاد القيم المحددة"
 
@@ -5037,12 +5168,6 @@ msgstr "تصدير إلى PDF"
 msgid "Export to Pivoted .CSV"
 msgstr "التصدير إلى ملف CSV المحوري"
 
-msgid "Export to YAML"
-msgstr "التصدير إلى YAML"
-
-msgid "Export to YAML?"
-msgstr "التصدير إلى YAML؟"
-
 msgid "Export to full .CSV"
 msgstr "تصدير إلى ملف CSV الكامل"
 
@@ -5061,11 +5186,9 @@ msgstr "عرض قاعدة البيانات في SQL Lab"
 msgid "Expose in SQL Lab"
 msgstr "كشف في مختبر SQL"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "قم بكشف قاعدة البيانات هذه في مختبر SQL"
-
-msgid "Expression"
-msgstr "التعبير"
+#, fuzzy
+msgid "Extent"
+msgstr "حديث"
 
 msgid "Extra"
 msgstr "-إضافي"
@@ -5090,10 +5213,6 @@ msgstr ""
 "Team\", \"details\": \"This table is the source of truth.\" }, "
 "«warning_markdown»: «هذا تحذير.»}`."
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "لا يمكن فك تشفير الحقل الإضافي بواسطة JSON. %(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "المعلمات الإضافية للاستخدام في استعلامات jinja النموذجية"
 
@@ -5113,6 +5232,10 @@ msgstr "مقذوف"
 msgid "FEB"
 msgstr "فبراير"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "تحرير مجموعة البيانات "
+
 msgid "FRI"
 msgstr "جمعة"
 
@@ -5122,16 +5245,15 @@ msgstr "عامل"
 msgid "Factor to multiply the metric by"
 msgstr "عامل ضرب المقياس به"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "فشلت"
 
 msgid "Failed at retrieving results"
 msgstr "فشل في استرداد النتائج"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "فشل في إيقاف الاستعلام. %s"
-
 msgid "Failed to create report"
 msgstr "فشلت عملية إنشاء التقرير"
 
@@ -5160,6 +5282,10 @@ msgstr "فشلت عملية حفظ تحديد نطاق عوامل التصفية
 msgid "Failed to start remote query on a worker."
 msgstr "فشل بدء الاستعلام عن بعد على عامل."
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "فشل في إيقاف الاستعلام. %s"
+
 msgid "Failed to tag items"
 msgstr "فشلت عملية وضع علامة على العناصر"
 
@@ -5183,9 +5309,6 @@ msgstr ""
 msgid "February"
 msgstr "شهر فبراير"
 
-msgid "Fetch Values Predicate"
-msgstr "مسند قيم الإحضار"
-
 msgid "Fetch data preview"
 msgstr "إحضار معاينة البيانات"
 
@@ -5210,16 +5333,13 @@ msgstr "الحقل مطلوب"
 msgid "File"
 msgstr "الملف"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "إعدادات التصفية"
-
 #, fuzzy
 msgid "File extension is not allowed."
 msgstr "لا يسمح باستخدام عنوان URI للبيانات."
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "إعدادات التصفية"
 
 #, fuzzy
 msgid "File upload"
@@ -5287,9 +5407,6 @@ msgstr "لا يمكن أن تكون قائمة قيم التصفية فارغة"
 msgid "Filter your charts"
 msgstr "تصفية الرسوم البيانية الخاصة بك"
 
-msgid "Filterable"
-msgstr "قابل للفلترة"
-
 msgid "Filters"
 msgstr "مرشحات"
 
@@ -5302,6 +5419,16 @@ msgstr "الفلاتر حسب المقاييس"
 msgid "Filters for comparison must have a value"
 msgstr "يجب أن تحتوي الفلاتر للمقارنة على قيمة"
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "يجب أن يكون `row_limit` أكبر من أو يساوي 0"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "الفلاتر خارج النطاق (%d)"
@@ -5333,6 +5460,14 @@ msgstr "إنهاء"
 msgid "First"
 msgstr "الأولى"
 
+#, fuzzy
+msgid "First name"
+msgstr "اسم المخطط"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "الاسم مطلوب"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5422,6 +5557,10 @@ msgstr "صيغة تاريخ القوة"
 msgid "Force refresh"
 msgstr "تحديث القوة"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "قائمة مخطط تحديث القوة"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "قائمة جدول تحديث القوة"
@@ -5542,6 +5681,10 @@ msgstr "إعدادات جيوجسون"
 msgid "Geohash"
 msgstr "جيوهاش"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "عمود فارغ"
+
 msgid "Get the last date by the date unit."
 msgstr "احصل على التاريخ الأخير حسب وحدة التاريخ."
 
@@ -5599,9 +5742,6 @@ msgstr "مفتاح المجموعة"
 msgid "Group by"
 msgstr "مجموعة حسب"
 
-msgid "Groupable"
-msgstr "قابل للتجميع"
-
 msgid "Guest user cannot modify chart payload"
 msgstr "لا يمكن للمستخدم الضيف تعديل حمولة المخطط"
 
@@ -5618,22 +5758,12 @@ msgstr "قالب المقاود"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-"يتم تطبيق حدود القيمة الثابتة للترميز اللوني. تكون ذات صلة ويتم تطبيقها "
-"فقط عندما يتم تطبيق التطبيع على خريطة الحرارة بأكملها."
-
 msgid "Has created by"
 msgstr "تم إنشاؤه بواسطة"
 
 msgid "Header"
 msgstr "رأس الصفحة"
 
-msgid "Header Row"
-msgstr "صف رأس الصفحة"
-
 #, fuzzy
 msgid "Header row"
 msgstr "صف رأس الصفحة"
@@ -5641,19 +5771,16 @@ msgstr "صف رأس الصفحة"
 msgid "Heatmap"
 msgstr "خريطة الحرارة"
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "مخطط دائري (قديم)"
-
-msgid "Heatmap Options"
-msgstr "خيارات خريطة التمثيل اللوني"
-
 msgid "Height"
 msgstr "الارتفاع"
 
 msgid "Height of the sparkline"
 msgstr "ارتفاع خط الشرارة"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "عمود الوقت"
+
 msgid "Hide Line"
 msgstr "إخفاء الخط"
 
@@ -5678,10 +5805,6 @@ msgstr "التسلسل الهرمي"
 msgid "Histogram"
 msgstr "الرسم البياني"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "مخطط دائري (قديم)"
-
 msgid "Home"
 msgstr "Home"
 
@@ -5762,25 +5885,14 @@ msgstr ""
 "خدمة، ولكن مع انتحال شخصية المستخدم الذي قام بتسجيل الدخول حاليًا عبر "
 "خاصية hive.server2.proxy.user."
 
-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.<br/>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 Lab كمستخدم يقوم "
-"بتسجيل الدخول حاليًا والذي يجب أن يكون لديه إذن لتشغيلها. <br/>إذا تم "
-"تمكين Hive و Hive.server2.enable.doas، فسيتم تشغيل الاستعلامات كحساب "
-"خدمة، ولكن مع انتحال شخصية المستخدم الذي قام بتسجيل الدخول حاليًا عبر "
-"خاصية hive.server2.proxy.user."
-
-msgid "If Table Already Exists"
-msgstr "إذا كان الجدول موجودًا بالفعل"
-
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr "إذا تم تحديد مقياس، فسيتم الفرز استنادًا إلى قيمة المقياس"
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
@@ -5788,8 +5900,9 @@ msgstr ""
 "في حالة التمكين، يقوم عنصر التحكم هذا بفرز النتائج/القيم تنازليًا، وإلا "
 "فإنه يقوم بفرز النتائج تصاعديًا."
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr "في حالة التحديد، يرجى تعيين المخططات المسموح بها لتحميل csv في Extra."
+#, fuzzy
+msgid "If table already exists"
+msgstr "التسمية موجودة بالفعل"
 
 msgid "Ignore cache when generating report"
 msgstr "تجاهل ذاكرة التخزين المؤقت عند إنشاء التقرير"
@@ -5811,9 +5924,6 @@ msgstr ""
 "انتحال شخصية المستخدم الذي قام بتسجيل الدخول (بريستو، ترينو، دريل، هايف، "
 "وGSheets)"
 
-msgid "Impersonate the logged on user"
-msgstr "انتحال شخصية المستخدم الذي قام بتسجيل الدخول"
-
 msgid "Import"
 msgstr "الاستيراد"
 
@@ -5824,9 +5934,6 @@ msgstr "الاستيراد %s"
 msgid "Import Dashboard(s)"
 msgstr "لوحة (لوحات) الاستيراد"
 
-msgid "Import a table definition"
-msgstr "استيراد تعريف جدول"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "فشل مخطط الاستيراد لسبب غير معروف"
 
@@ -5857,16 +5964,14 @@ msgstr "استعلامات الاستيراد"
 msgid "Import saved query failed for an unknown reason."
 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 ""
-"هام! حدد هذا إذا لم يتم فرز الجدول بالفعل حسب معرف الكيان، وإلا فلن يكون "
-"هناك ضمان بإرجاع جميع الأحداث لكل كيان."
-
 msgid "In"
 msgstr "في"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "قم بتضمين السلسلة"
 
@@ -5889,17 +5994,18 @@ msgstr "زيادة"
 msgid "Index"
 msgstr "الفهرس"
 
-msgid "Index Column"
-msgstr "عمود الفهرس"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "ملصقات النطاق"
+msgid "Index column"
+msgstr "عمود الخطوط"
 
 #, fuzzy
 msgid "Index label"
 msgstr "ملصقات النطاق"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "عرض المفاتيح والفهارس (%s)"
+
 msgid "Info"
 msgstr "معلومات"
 
@@ -5918,6 +6024,13 @@ msgstr "عرض الإدخال المخصص بالبكسل"
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr "يدعم حقل الإدخال التدوير المخصص. على سبيل المثال 30 لـ 30 درجة"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "إخفاء الطبقة"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "الكثافة"
 
@@ -5948,9 +6061,6 @@ msgstr "عمود بدء الفاصل الزمني"
 msgid "Intervals"
 msgstr "فترات"
 
-msgid "Intesity"
-msgstr "الكثافة"
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -5999,6 +6109,9 @@ msgstr "رمز عملة غير صالح في المقاييس المحفوظة"
 msgid "Invalid date/timestamp format"
 msgstr "تنسيق تاريخ/طابع زمني غير صالح"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "نوع عملية التصفية غير صالح: %(op)s"
@@ -6062,6 +6175,10 @@ msgstr "اختيار معكوس"
 msgid "Invert current page"
 msgstr "عكس الصفحة الحالية"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "تقارير البريد الإلكتروني نشطة"
+
 msgid "Is certified"
 msgstr "حاصل على شهادة"
 
@@ -6238,12 +6355,6 @@ msgstr "كبير"
 msgid "Last"
 msgstr "الأخيرة"
 
-msgid "Last Changed"
-msgstr "آخر تغيير"
-
-msgid "Last Modified"
-msgstr "آخر تعديل"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "آخر تحديث %s"
@@ -6252,6 +6363,10 @@ msgstr "آخر تحديث %s"
 msgid "Last Updated %s by %s"
 msgstr "آخر تحديث %s بواسطة %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "القيمة المستهدفة"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr "آخر قيمة متاحة تمت مشاهدتها على %s"
@@ -6259,12 +6374,24 @@ msgstr "آخر قيمة متاحة تمت مشاهدتها على %s"
 msgid "Last day"
 msgstr "اليوم الأخير"
 
+#, fuzzy
+msgid "Last login"
+msgstr "الشهر الماضي"
+
 msgid "Last modified"
 msgstr "آخر تعديل"
 
 msgid "Last month"
 msgstr "الشهر الماضي"
 
+#, fuzzy
+msgid "Last name"
+msgstr "اسم مجموعة البيانات"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "الاسم مطلوب"
+
 msgid "Last quarter"
 msgstr "الربع الأخير"
 
@@ -6277,15 +6404,42 @@ msgstr "الأسبوع الماضي"
 msgid "Last year"
 msgstr "العام الماضي"
 
+#, fuzzy
+msgid "Lat"
+msgstr "مسطحة"
+
 msgid "Latitude"
 msgstr "خط العرض"
 
 msgid "Latitude of default viewport"
 msgstr "خط عرض منفذ العرض الافتراضي"
 
+#, fuzzy
+msgid "Layer"
+msgstr "عام"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "اسم التنبيه"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "تكوين الطبقة"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "عنوان الرسم البياني"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "نوع الفلتر"
+
+#, fuzzy
+msgid "Layers"
+msgstr "التنبيهات"
+
 msgid "Layout"
 msgstr "التخطيط"
 
@@ -6298,13 +6452,6 @@ msgstr "نوع تخطيط الرسم البياني"
 msgid "Layout type of tree"
 msgstr "نوع تخطيط الشجرة"
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-"سيتم إخفاء العقد الورقية التي تمثل أقل من هذا العدد من الأحداث مبدئيًا في"
-" التصور."
-
 msgid "Least recently modified"
 msgstr "الأقل تعديلًا مؤخرًا"
 
@@ -6369,13 +6516,6 @@ msgstr "أعجبني (غير حساس لحالة الأحرف)"
 msgid "Limit type"
 msgstr "نوع الحد"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-"قد يؤدي تحديد الصفوف إلى بيانات غير كاملة ومخططات مضللة. فكّر في تصفية "
-"أسماء المصدر/الهدف أو تجميعها بدلاً من ذلك."
-
 msgid "Limits the number of cells that get retrieved."
 msgstr "يحد من عدد الخلايا التي يتم استردادها."
 
@@ -6421,6 +6561,9 @@ msgstr ""
 "المتصلة بمقاطع الخط المستقيم. إنه نوع أساسي من المخططات الشائعة في العديد"
 " من الحقول."
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "إقحام الأسطر كما هو محدد بواسطة d3.js"
 
@@ -6448,9 +6591,16 @@ msgstr "ترميز الخطوط"
 msgid "Link Copied!"
 msgstr "تم نسخ الرابط!"
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr "قائمة القيم الفريدة"
 
+#, fuzzy
+msgid "List Users"
+msgstr "رقم منقسم"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr "قائمة الأعمدة الإضافية المتاحة في وظائف JavaScript"
 
@@ -6518,6 +6668,10 @@ msgstr "المحور الصادي اللوغاريتمي"
 msgid "Login"
 msgstr "تسجيل الدخول"
 
+#, fuzzy
+msgid "Login count"
+msgstr "العد"
+
 msgid "Login with"
 msgstr "تسجيل الدخول باستخدام"
 
@@ -6527,6 +6681,10 @@ msgstr "تسجيل الخروج"
 msgid "Logs"
 msgstr "السجلات"
 
+#, fuzzy
+msgid "Lon"
+msgstr "ON"
+
 msgid "Long dashed"
 msgstr "متقطع لفترة طويلة"
 
@@ -6568,9 +6726,6 @@ msgstr "الإثنين"
 msgid "Main"
 msgstr "دقيقة"
 
-msgid "Main Datetime Column"
-msgstr "عمود التاريخ والوقت الرئيسي"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6604,6 +6759,10 @@ msgstr "قم بتعيين قيم الحد الأدنى/الأقصى للمحور
 msgid "Map"
 msgstr "الخريطة"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "خيارات خريطة التمثيل اللوني"
+
 msgid "Map Style"
 msgstr "نمط الخريطة"
 
@@ -6646,14 +6805,17 @@ msgstr "علامات"
 msgid "Markup type"
 msgstr "نوع الترميز"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "الحد الأقصى"
 
 msgid "Max Bubble Size"
 msgstr "الحد الأقصى لحجم الفقاعة"
 
-msgid "Max Events"
-msgstr "أحداث ماكس"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "حد اقصى"
@@ -6664,6 +6826,9 @@ msgstr "الحد الأقصى لحجم الخط"
 msgid "Maximum Radius"
 msgstr "الحد الأقصى للشعاع"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6707,6 +6872,18 @@ msgstr "القيم المتوسطة"
 msgid "Medium"
 msgstr "متوسط"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr "مشغل إجراءات القائمة"
 
@@ -6804,13 +6981,6 @@ msgstr ""
 "يُستخدم المقياس لتحديد كيفية فرز السلسلة العليا في حالة وجود حد للسلسلة "
 "أو الصف. إذا كان undefined يعود إلى المقياس الأول (عند الاقتضاء)."
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-"يتم استخدام المقياس لترتيب الحد في حالة وجود حد السلسلة. إذا كان "
-"undefined يعود إلى المقياس الأول (عند الاقتضاء)."
-
 msgid "Metrics"
 msgstr "المقاييس"
 
@@ -6850,8 +7020,8 @@ msgstr "الحد الأدنى لحجم الخط"
 msgid "Minimum Radius"
 msgstr "الحد الأدنى من الشعاع"
 
-msgid "Minimum leaf node event count"
-msgstr "الحد الأدنى لعدد أحداث العقدة الورقية"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
 "Minimum radius size of the circle, in pixels. As the zoom level changes, "
@@ -6866,6 +7036,10 @@ msgstr "الحد الأدنى بالنقاط المئوية لعرض التصن
 msgid "Minimum value"
 msgstr "الحد الأدنى للقيمة"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "من التاريخ لا يمكن أن يكون أكبر من التاريخ"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "الحد الأدنى لقيمة التسمية التي سيتم عرضها على الرسم البياني."
 
@@ -6889,6 +7063,9 @@ msgstr "الدقائق %s"
 msgid "Minutes value"
 msgstr "قيمة واحدة"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr "معلمات URL المفقودة"
 
@@ -6905,6 +7082,16 @@ msgstr "تم التعديل"
 msgid "Modified %s"
 msgstr "تم التعديل %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
 msgid "Modified by"
 msgstr "تم التعديل بواسطة"
 
@@ -6912,10 +7099,6 @@ msgstr "تم التعديل بواسطة"
 msgid "Modified by: %s"
 msgstr "تم التعديل بواسطة: %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "الأعمدة المعدلة: %s"
-
 msgid "Monday"
 msgstr "الإثنين"
 
@@ -6978,9 +7161,6 @@ msgstr "يجب اختيار مخطط أو لوحة معلومات"
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr "يجب أن يحتوي عمود [Group By] على «count» كـ [Label]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "يجب تحديد عمود رقمي واحد على الأقل"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr "يجب تقديم بيانات اعتماد لنفق SSH"
 
@@ -7005,9 +7185,6 @@ msgstr "لم يتم تجميعها بواسطة"
 msgid "NOV"
 msgstr "نوفمبر"
 
-msgid "NOW"
-msgstr "الآن"
-
 msgid "NUMERIC"
 msgstr "رقمية"
 
@@ -7033,9 +7210,6 @@ msgstr "اسم عمود المعرف"
 msgid "Name of the source nodes"
 msgstr "اسم العقد المصدر"
 
-msgid "Name of the table that exists in the source database"
-msgstr "اسم الجدول الموجود في قاعدة البيانات المصدر"
-
 msgid "Name of the target nodes"
 msgstr "اسم العقد المستهدفة"
 
@@ -7051,19 +7225,23 @@ msgstr "هل تحتاج إلى مساعدة؟ تعرف على كيفية توص
 msgid "Need help? Learn more about"
 msgstr "هل تحتاج إلى مساعدة؟ تعرف على المزيد حول"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "خطأ في الشبكة"
+
 msgid "Network error"
 msgstr "خطأ في الشبكة"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "حدث خطأ أثناء إنشاء مصدر البيانات"
+
 msgid "Network error."
 msgstr "خطأ في الشبكة."
 
 msgid "New chart"
 msgstr "مخطط جديد"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "تمت إضافة أعمدة جديدة: %s"
-
 msgid "New dataset"
 msgstr "مجموعة بيانات جديدة"
 
@@ -7111,6 +7289,10 @@ msgstr "لا توجد قواعد حتى الآن"
 msgid "No Tags created"
 msgstr "لم يتم إنشاء أي علامات"
 
+#, fuzzy
+msgid "No actions"
+msgstr "التراجع عن الإجراء"
+
 msgid "No annotation layers"
 msgstr "لا توجد طبقات توضيحية"
 
@@ -7129,9 +7311,6 @@ msgstr "لا توجد فلاتر متاحة."
 msgid "No charts"
 msgstr "لا توجد رسوم بيانية"
 
-msgid "No charts yet"
-msgstr "لا توجد رسوم بيانية حتى الآن"
-
 msgid "No columns found"
 msgstr "لم يتم العثور على أي أعمدة"
 
@@ -7148,9 +7327,6 @@ msgstr "لم يتم العثور على مجموعات بيانات متوافق
 msgid "No compatible schema found"
 msgstr "لم يتم العثور على مخطط متوافق"
 
-msgid "No dashboards yet"
-msgstr "لا توجد لوحات معلومات حتى الآن"
-
 msgid "No data"
 msgstr "ما من بيانات"
 
@@ -7160,6 +7336,10 @@ msgstr "لا توجد بيانات بعد التصفية أو البيانات 
 msgid "No data in file"
 msgstr "لا توجد بيانات في الملف"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "لا توجد قواعد بيانات متاحة"
+
 msgid "No databases match your search"
 msgstr "لا توجد قواعد بيانات تطابق بحثك"
 
@@ -7190,12 +7370,6 @@ msgstr "لا توجد فلاتر عالمية مضافة حاليًا"
 msgid "No matching records found"
 msgstr "لم يتم العثور على سجلات مطابقة"
 
-msgid "No of Bins"
-msgstr "عدد الصناديق"
-
-msgid "No recents yet"
-msgstr "لا يوجد حديث حتى الآن"
-
 msgid "No records found"
 msgstr " لم يتم العثور على أية سجلات "
 
@@ -7220,6 +7394,10 @@ msgstr ""
 "من تكوين أي عوامل تصفية بشكل صحيح وأن مصدر البيانات يحتوي على بيانات "
 "للنطاق الزمني المحدد."
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "لا توجد قواعد حتى الآن"
+
 msgid "No rows were returned for this dataset"
 msgstr "لم يتم إرجاع أي صفوف لمجموعة البيانات هذه"
 
@@ -7232,9 +7410,6 @@ msgstr "لم يتم العثور على تعبيرات محفوظة"
 msgid "No saved metrics found"
 msgstr "لم يتم العثور على مقاييس محفوظة"
 
-msgid "No saved queries yet"
-msgstr "لا توجد استعلامات محفوظة حتى الآن"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr "لم يتم العثور على نتائج مخزنة، تحتاج إلى إعادة تشغيل الاستعلام"
 
@@ -7252,6 +7427,10 @@ msgstr "لم يتم العثور على أعمدة مؤقتة"
 msgid "No time columns"
 msgstr "لا توجد أعمدة زمنية"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "لا توجد قواعد حتى الآن"
+
 msgid "No validator found (configured for the engine)"
 msgstr "لم يتم العثور على مدقق (تم تكوينه للمحرك)"
 
@@ -7331,6 +7510,10 @@ msgstr "لم يتم تشغيله"
 msgid "Not up to date"
 msgstr "غير محدّث"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "لم يتم تشغيل أي شيء"
+
 msgid "Nothing triggered"
 msgstr "لم يتم تشغيل أي شيء"
 
@@ -7438,9 +7621,6 @@ msgstr "اكتوبر"
 msgid "Offline"
 msgstr "غير متصل على الانترنت"
 
-msgid "Offset"
-msgstr "تعويض"
-
 msgid "On Grace"
 msgstr "أون غرايس"
 
@@ -7469,6 +7649,10 @@ msgstr "عنصر تحكم واحد أو عدة عناصر للمحور كأعم
 msgid "One or many metrics to display"
 msgstr "مقياس واحد أو عدة مقاييس لعرضها"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "فشلت طبقة أخرى من التعليقات التوضيحية في التحميل."
+
 msgid "One or more columns already exist"
 msgstr "عمود واحد أو أكثر موجود بالفعل"
 
@@ -7496,12 +7680,6 @@ msgstr "تم تحديد معلمة واحدة أو أكثر في الاستعل
 msgid "One or more parameters specified in the query are missing."
 msgstr "هناك معلمة واحدة أو أكثر محددة في الاستعلام مفقودة."
 
-msgid "One ore more annotation layers failed loading."
-msgstr "فشلت طبقة أخرى من التعليقات التوضيحية في التحميل."
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "يُسمح فقط باستخدام عبارات SELECT مقابل قاعدة البيانات هذه."
-
 msgid "Only Total"
 msgstr "الإجمالي فقط"
 
@@ -7514,9 +7692,6 @@ msgstr "ينطبق فقط عندما لا يتم تعيين «نوع التسم
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr "لا ينطبق إلا عند تعيين «نوع التسمية» لإظهار القيم."
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "اللوحات المحددة فقط هي التي ستتأثر بهذا الفلتر"
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7598,15 +7773,19 @@ msgstr "خيارات"
 msgid "Or choose from a list of other databases we support:"
 msgstr "أو اختر من قائمة قواعد البيانات الأخرى التي ندعمها:"
 
-msgid "Order by entity id"
-msgstr "الترتيب حسب معرف الكيان"
-
 msgid "Order results by selected columns"
 msgstr "ترتيب النتائج حسب الأعمدة المحددة"
 
 msgid "Ordering"
 msgstr "الترتيب"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr "اتجاه"
 
@@ -7730,6 +7909,10 @@ msgstr ""
 "المالكون عبارة عن قائمة بالمستخدمين الذين يمكنهم تغيير لوحة المعلومات. "
 "يمكن البحث عن طريق الاسم أو اسم المستخدم."
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "فشل تنزيل الصورة، يرجى التحديث والمحاولة مرة أخرى."
+
 msgid "Page length"
 msgstr "طول الصفحة"
 
@@ -7789,6 +7972,14 @@ msgstr ""
 msgid "Password"
 msgstr "كلمه المرور"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "النوع مطلوب"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "لوحات المعلومات غير موجودة"
+
 msgid "Paste Private Key here"
 msgstr "قم بلصق المفتاح الخاص هنا"
 
@@ -7845,6 +8036,14 @@ msgstr "فترات"
 msgid "Periods must be a whole number"
 msgstr "يجب أن تكون الفترات عبارة عن رقم صحيح"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "الإصدار"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr "الشخص أو المجموعة التي اعتمدت هذا المخطط."
 
@@ -7860,9 +8059,6 @@ msgstr "فيزيائي"
 msgid "Physical (table or view)"
 msgstr "المادية (الجدول أو العرض)"
 
-msgid "Physical dataset"
-msgstr "مجموعة البيانات المادية"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr "اختر البعد الذي يتم من خلاله تحديد الألوان الفئوية"
 
@@ -7884,15 +8080,9 @@ msgstr "اختر مجموعة من مخططات deck.gl لوضعها فوق بع
 msgid "Pick a title for you annotation."
 msgstr "اختر عنوانًا للتعليق التوضيحي الخاص بك."
 
-msgid "Pick at least one field for [Series]"
-msgstr "اختر حقلاً واحدًا على الأقل لـ [السلسلة]"
-
 msgid "Pick at least one metric"
 msgstr "اختر مقياسًا واحدًا على الأقل"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-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."
@@ -7906,8 +8096,8 @@ msgstr "اختر لغة الترميز المفضلة لديك"
 msgid "Pie Chart"
 msgstr "مخطط دائري"
 
-msgid "Pie Chart (legacy)"
-msgstr "مخطط دائري (قديم)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "شكل فطيرة"
@@ -7918,6 +8108,14 @@ msgstr ""
 msgid "Pin"
 msgstr "الرقم السري"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "أعلى اليسار"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "أعلى اليمين"
+
 msgid "Pivot Table"
 msgstr "الجدول المحوري"
 
@@ -7976,6 +8174,9 @@ msgstr ""
 "تطابقها عبر استعلام SQL وتعيين المعلمات. ثم حاول تشغيل الاستعلام مرة "
 "أخرى."
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr "يرجى اختيار مجموعة واحدة على الأقل حسب"
 
@@ -7985,12 +8186,25 @@ msgstr "يرجى التأكيد"
 msgid "Please confirm the overwrite values."
 msgstr "يرجى تأكيد قيم الاستبدال."
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "يرجى التأكيد"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "يرجى إدخال عنوان URL الخاص بـ SQLalChemy للاختبار"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "يرجى إعادة إدخال كلمة المرور."
 
@@ -8006,9 +8220,6 @@ msgstr[3] ""
 msgstr[4] ""
 msgstr[5] ""
 
-msgid "Please save the query to enable sharing"
-msgstr "يرجى حفظ الاستعلام لتمكين المشاركة"
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr "يرجى حفظ المخطط أولاً، ثم محاولة إنشاء تقرير بريد إلكتروني جديد."
 
@@ -8084,9 +8295,6 @@ msgstr "متعدد الخطوط"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "قم بتعبئة «القيمة الافتراضية» لتمكين عنصر التحكم هذا"
 
-msgid "Population age data"
-msgstr "بيانات عمر السكان"
-
 msgid "Port"
 msgstr "ميناء"
 
@@ -8124,14 +8332,6 @@ msgstr "التصفية المسبقة للقيم المتاحة"
 msgid "Pre-filter is required"
 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 ""
-"يتم تطبيق المسند عند جلب قيمة مميزة لتعبئة مكون التحكم في التصفية. يدعم "
-"صيغة قالب جينجا. لا ينطبق إلا عند تشغيل «تمكين تحديد عامل التصفية»."
-
 msgid "Predictive"
 msgstr "تنبؤي"
 
@@ -8150,10 +8350,6 @@ msgstr "استطلاع"
 msgid "Preview uploaded file"
 msgstr ""
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "المعاينة: `%s`"
-
 msgid "Previous"
 msgstr "السابق"
 
@@ -8199,18 +8395,13 @@ msgstr "التقدم"
 msgid "Progressive"
 msgstr "التقدمية"
 
-msgid "Propagate"
-msgstr "نشر"
+#, fuzzy
+msgid "Project Id"
+msgstr "تم إهماله"
 
 msgid "Proportional"
 msgstr "نسبي"
 
-msgid "Public and privately shared sheets"
-msgstr "أوراق عامة ومشتركة بشكل خاص"
-
-msgid "Publicly shared sheets only"
-msgstr "أوراق تمت مشاركتها علنًا فقط"
-
 msgid "Published"
 msgstr "منشورة"
 
@@ -8229,9 +8420,6 @@ msgstr ""
 msgid "Put the labels outside of the pie?"
 msgstr "ضع الملصقات خارج الفطيرة؟"
 
-msgid "Put the labels outside the pie?"
-msgstr "ضع الملصقات خارج الفطيرة؟"
-
 msgid "Put your code here"
 msgstr "ضع الكود الخاص بك هنا"
 
@@ -8334,10 +8522,6 @@ msgstr "نصف القطر بالأمتار"
 msgid "Radius in miles"
 msgstr "الشعاع بالأميال"
 
-#, python-format
-msgid "Ran %s"
-msgstr "ران %s"
-
 msgid "Range"
 msgstr "النطاق"
 
@@ -8365,24 +8549,9 @@ msgstr "نسبة"
 msgid "Raw records"
 msgstr "السجلات الخام"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-"ستظهر هنا المخططات ولوحات المعلومات والاستعلامات المحفوظة التي تم إنشاؤها"
-" مؤخرًا"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-"ستظهر هنا المخططات ولوحات المعلومات والاستعلامات المحفوظة التي تم تحريرها"
-" مؤخرًا"
-
 msgid "Recently modified"
 msgstr "تم تعديله مؤخرًا"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-"ستظهر هنا المخططات ولوحات المعلومات والاستعلامات المحفوظة التي تمت "
-"مشاهدتها مؤخرًا"
-
 msgid "Recents"
 msgstr "الأخيرة"
 
@@ -8401,9 +8570,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr "يعيد التوجيه إلى نقطة النهاية هذه عند النقر على الجدول من قائمة الجدول"
-
 msgid "Redo the action"
 msgstr "أعد الإجراء"
 
@@ -8506,8 +8672,14 @@ msgid "Remove table preview"
 msgstr "إزالة معاينة الجدول"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "الأعمدة التي تمت إزالتها: %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
 
 msgid "Rename tab"
 msgstr "إعادة تسمية علامة"
@@ -8518,12 +8690,11 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
-msgid "Rendering"
-msgstr "التجسيد"
-
 msgid "Replace"
 msgstr "استبدال"
 
@@ -8620,6 +8791,9 @@ msgstr "تنافر"
 msgid "Repulsion strength between nodes"
 msgstr "قوة التنافر بين العقد"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "الطلب غير صحيح: %(error)s"
@@ -8652,6 +8826,10 @@ msgstr "تتطلب عملية إعادة التشكيل DateTimeIndex"
 msgid "Reset"
 msgstr "إعادة تعيين"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "حدد العمود"
+
 msgid "Reset state"
 msgstr "إعادة ضبط الحالة"
 
@@ -8677,6 +8855,10 @@ msgstr "لم يتم تكوين الواجهة الخلفية للنتائج."
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr "لم يتم تكوين الواجهة الخلفية للنتائج المطلوبة للاستعلامات غير المتزامنة."
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "نتائج إعادة البحث"
+
 msgid "Return to specific datetime."
 msgstr "ارجع إلى تاريخ/وقت محدد."
 
@@ -8718,6 +8900,28 @@ msgstr ""
 msgid "Role"
 msgstr "الدور"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "اسم التنبيه"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "القيمة مطلوبة"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "الاسم مطلوب"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "تم تغيير مجموعة البيانات بنجاح!"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "الأدوار"
 
@@ -8799,9 +9003,6 @@ msgstr "الصفوف لكل صفحة، 0 يعني عدم وجود ترقيم ل
 msgid "Rows subtotal position"
 msgstr "موضع المجموع الفرعي للصفوف"
 
-msgid "Rows to Read"
-msgstr "صفوف للقراءة"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "صفوف للقراءة"
@@ -8868,14 +9069,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "تم نسخ SQL!"
 
-msgid "SQL Expression"
-msgstr "تعبير SQL"
-
 msgid "SQL Lab"
 msgstr "مختبر إس كيو إل"
 
-msgid "SQL Lab View"
-msgstr "عرض مختبر SQL"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "الاستعلامات المحفوظة"
 
 #, python-format
 msgid ""
@@ -8967,20 +9166,10 @@ msgstr "لا يمكن استرداد عينات مجموعة البيانات."
 msgid "Samples for datasource could not be retrieved."
 msgstr "لا يمكن استرداد عينات لمصدر البيانات."
 
-msgid "Sankey"
-msgstr "سانكي"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "حفظ المخطط"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "مخطط سانكي"
-
-msgid "Sankey Diagram with Loops"
-msgstr "مخطط سانكي مع الحلقات"
-
 msgid "Satellite"
 msgstr "القمر الصناعي"
 
@@ -9041,9 +9230,6 @@ msgstr "حفظ مجموعة البيانات أو الكتابة فوقها"
 msgid "Save query"
 msgstr "حفظ الاستعلام"
 
-msgid "Save the query to enable this feature"
-msgstr "احفظ الاستعلام لتمكين هذه الميزة"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr "احفظ هذا الاستعلام كمجموعة بيانات افتراضية لمتابعة الاستكشاف"
 
@@ -9071,6 +9257,10 @@ msgstr "لم يتم العثور على الاستعلام المحفوظ."
 msgid "Saved query parameters are invalid."
 msgstr "معاملات الاستعلام المحفوظة غير صالحة."
 
+#, fuzzy
+msgid "Saving..."
+msgstr "جارٍ التحميل…"
+
 msgid "Scale and Move"
 msgstr "التحجيم والتحرك"
 
@@ -9125,11 +9315,6 @@ msgstr "مخطط"
 msgid "Schema cache timeout"
 msgstr "مهلة ذاكرة التخزين المؤقت للمخطط"
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr ""
-"المخطط، كما هو مستخدم فقط في بعض قواعد البيانات مثل Postgres و Redshift و"
-" DB2"
-
 msgid "Schemas allowed for File upload"
 msgstr "المخططات المسموح بها لتحميل الملفات"
 
@@ -9212,9 +9397,6 @@ msgstr "ثواني %s"
 msgid "Seconds value"
 msgstr "ثواني"
 
-msgid "Secure Extra"
-msgstr "سيكيور إكسترا"
-
 msgid "Secure extra"
 msgstr "سيكيور إكسترا"
 
@@ -9331,8 +9513,8 @@ msgstr "حدد جميع البيانات"
 msgid "Select all items"
 msgstr "تحديد كلّ العناصر"
 
-msgid "Select any columns for metadata inspection"
-msgstr "حدد أي أعمدة لفحص البيانات الوصفية"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 msgid "Select catalog or type to search catalogs"
 msgstr ""
@@ -9357,6 +9539,9 @@ msgstr "حدد نظام الألوان"
 msgid "Select column"
 msgstr "حدد العمود"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr "حدد أسماء الأعمدة من القائمة المنسدلة التي يجب معاملتها كتواريخ."
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9452,6 +9637,14 @@ msgstr "حدد اسم مجموعة البيانات أو اكتبه"
 msgid "Select owners"
 msgstr "حدد المالكين"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "حدد العلامات"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "حدد المالكين"
+
 msgid "Select saved metrics"
 msgstr "حدد المقاييس المحفوظة"
 
@@ -9464,6 +9657,12 @@ msgstr "حدد المخطط أو اكتب للبحث في المخططات"
 msgid "Select scheme"
 msgstr "حدد المخطط"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "حدد الموضوع"
 
@@ -9504,12 +9703,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr "حدد عمود geojson"
 
-msgid "Select the number of bins for the histogram"
-msgstr "حدد عدد الصناديق للرسم البياني"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "حدد الأعمدة الرقمية لرسم الرسم البياني"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9535,9 +9728,6 @@ msgstr "أرسل بصيغة PNG"
 msgid "Send as text"
 msgstr "إرسال كنص"
 
-msgid "Send range filter events to other charts"
-msgstr "إرسال أحداث تصفية النطاق إلى مخططات أخرى"
-
 msgid "September"
 msgstr "أيلول (سبتمبر)"
 
@@ -9550,12 +9740,6 @@ msgstr "سلسلة"
 msgid "Series Height"
 msgstr "ارتفاع السلسلة"
 
-msgid "Series Limit Sort By"
-msgstr "حد السلسلة: فرز حسب"
-
-msgid "Series Limit Sort Descending"
-msgstr "فرز حد السلسلة تنازليًا"
-
 msgid "Series Order"
 msgstr "ترتيب السلسلة"
 
@@ -9583,6 +9767,10 @@ msgstr "ترقيم صفحات الخادم"
 msgid "Service Account"
 msgstr "حساب الخدمة"
 
+#, fuzzy
+msgid "Service version"
+msgstr "حساب الخدمة"
+
 msgid "Set auto-refresh interval"
 msgstr "تعيين الفاصل الزمني للتحديث التلقائي"
 
@@ -9612,6 +9800,10 @@ msgstr "الإعدادات"
 msgid "Settings for time series"
 msgstr "إعدادات السلاسل الزمنية"
 
+#, fuzzy
+msgid "Shape"
+msgstr "شكل فطيرة"
+
 msgid "Share"
 msgstr "شارك"
 
@@ -9673,18 +9865,9 @@ msgstr "عرض بيان إنشاء عرض"
 msgid "Show Cell bars"
 msgstr "عرض أشرطة الخلايا"
 
-msgid "Show Chart"
-msgstr "عرض الرسم البياني"
-
-msgid "Show Column"
-msgstr "عرض العمود"
-
 msgid "Show Dashboard"
 msgstr "عرض لوحة التحكم"
 
-msgid "Show Database"
-msgstr "عرض قاعدة البيانات"
-
 msgid "Show Labels"
 msgstr "عرض الملصقات"
 
@@ -9694,18 +9877,12 @@ msgstr "سجل العرض"
 msgid "Show Markers"
 msgstr "إظهار العلامات"
 
-msgid "Show Metric"
-msgstr "عرض المقياس"
-
 msgid "Show Metric Names"
 msgstr "عرض أسماء المقاييس"
 
 msgid "Show Range Filter"
 msgstr "مرشح نطاق العرض"
 
-msgid "Show Table"
-msgstr "عرض الجدول"
-
 msgid "Show Timestamp"
 msgstr "عرض الطابع الزمني"
 
@@ -9740,9 +9917,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "عرض جميع الأعمدة"
 
-msgid "Show all..."
-msgstr "عرض الكل..."
-
 msgid "Show axis line ticks"
 msgstr "عرض علامات خط المحور"
 
@@ -9764,6 +9938,10 @@ msgstr "عرض نقاط البيانات كعلامات دائرة على الخ
 msgid "Show empty columns"
 msgstr "عرض الأعمدة الفارغة"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "إدخالات"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9786,9 +9964,6 @@ msgstr "عرض الأسطورة"
 msgid "Show less columns"
 msgstr "عرض عدد أقل من الأعمدة"
 
-msgid "Show less..."
-msgstr "عرض أقل..."
-
 msgid "Show minor ticks on axes."
 msgstr "أظهر علامات طفيفة على المحاور."
 
@@ -9825,6 +10000,10 @@ msgstr ""
 msgid "Show the value on top of the bar"
 msgstr "اعرض القيمة أعلى الشريط"
 
+#, fuzzy
+msgid "Show total"
+msgstr "عرض الإجمالي"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9870,8 +10049,8 @@ msgstr ""
 "يعرض تقدم مقياس واحد مقابل هدف معين. كلما زادت التعبئة، كلما اقترب "
 "المقياس من الهدف."
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "عرض %s لـ %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -9904,18 +10083,16 @@ msgstr "قيمة واحدة"
 msgid "Single value type"
 msgstr "نوع القيمة الفردية"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "يحدد حجم الشبكة بالبكسل"
+
 msgid "Size of edge symbols"
 msgstr "حجم رموز الحافة"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "حجم العلامة. ينطبق أيضًا على ملاحظات التنبؤ."
 
-msgid "Sizes of vehicles"
-msgstr "أحجام المركبات"
-
-msgid "Skip Rows"
-msgstr "تخطي الصفوف"
-
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
 msgstr "تخطي الأسطر الفارغة بدلاً من تفسيرها على أنها قيم Not A Number"
 
@@ -9987,9 +10164,6 @@ msgstr "آسف، حدث خطأ ما. يرجى المحاولة مرة أخرى."
 msgid "Sorry, something went wrong. Try again later."
 msgstr "آسف، حدث خطأ ما. حاول مرة أخرى لاحقًا."
 
-msgid "Sorry, there appears to be no data"
-msgstr "عذرًا، يبدو أنه لا توجد بيانات"
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr "عذرًا، حدث خطأ أثناء حفظ هذا%s: %s"
@@ -10007,9 +10181,6 @@ msgstr "عذرًا، متصفحك لا يدعم النسخ. استخدم Ctrl/Cm
 msgid "Sort"
 msgstr "فرز"
 
-msgid "Sort Bars"
-msgstr "أشرطة الفرز"
-
 msgid "Sort Descending"
 msgstr "فرز تنازلي"
 
@@ -10031,9 +10202,6 @@ msgstr "فرز المحور Y"
 msgid "Sort ascending"
 msgstr "فرز تصاعدي"
 
-msgid "Sort bars by x labels."
-msgstr "فرز الأشرطة حسب تصنيفات x."
-
 msgid "Sort by"
 msgstr "ترتيب حسب"
 
@@ -10059,6 +10227,10 @@ msgstr "فرز قيم التصفية"
 msgid "Sort metric"
 msgstr "مقياس الفرز"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "استعلام التصدير"
+
 msgid "Sort rows by"
 msgstr "فرز الصفوف حسب"
 
@@ -10071,9 +10243,6 @@ msgstr "نوع الفرز"
 msgid "Source"
 msgstr "مصدر"
 
-msgid "Source / Target"
-msgstr "المصدر/ الهدف"
-
 msgid "Source SQL"
 msgstr "مصدر SQL"
 
@@ -10117,9 +10286,6 @@ msgstr "أميال مربعة"
 msgid "Stack"
 msgstr "كومة"
 
-msgid "Stack Trace:"
-msgstr "ستاك ترايس:"
-
 msgid "Stack series"
 msgstr "سلسلة ستاك"
 
@@ -10135,9 +10301,6 @@ msgstr "أشرطة مكدسة"
 msgid "Stacked Style"
 msgstr "أسلوب مكدس"
 
-msgid "Stacked style"
-msgstr "أسلوب مكدس"
-
 msgid "Standard time series"
 msgstr "سلسلة زمنية قياسية"
 
@@ -10238,9 +10401,6 @@ msgstr "الشوارع"
 msgid "Strength to pull the graph toward center"
 msgstr "قوة سحب الرسم البياني نحو المركز"
 
-msgid "Stretched style"
-msgstr "أسلوب ممتد"
-
 msgid "Stroke Color"
 msgstr "لون السكتة الدماغية"
 
@@ -10262,15 +10422,20 @@ msgstr "قم بتصميم أطراف شريط التقدم بغطاء دائري
 msgid "Subdomain"
 msgstr "نطاق فرعي"
 
-msgid "Subheader"
-msgstr "عنوان فرعي"
-
 msgid "Subheader Font Size"
 msgstr "حجم خط العنوان الفرعي"
 
 msgid "Submit"
 msgstr "إرسال"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "عنوان علامة التبويب"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "حجم الفقاعة"
+
 msgid "Subtotal"
 msgstr "المجموع الفرعي"
 
@@ -10323,9 +10488,6 @@ msgstr "قم بتجميع وثائق SDK المضمنة."
 msgid "Superset chart"
 msgstr "مخطط المجموعة الشاملة"
 
-msgid "Superset dashboard"
-msgstr "لوحة تحكم شاملة"
-
 msgid "Superset encountered an error while running a command."
 msgstr "سورة سورة مصر العربية"
 
@@ -10335,9 +10497,6 @@ msgstr "سوره سوره مصر مالده"
 msgid "Supported databases"
 msgstr "سورة القيامة"
 
-msgid "Survey Responses"
-msgstr "ردود الاستطلاع"
-
 msgid "Swap dataset"
 msgstr "مجموعة بيانات المبادلة"
 
@@ -10353,6 +10512,12 @@ msgstr ""
 "والمبعثرة والشريطية. يحتوي هذا النوع من viz على العديد من خيارات التخصيص "
 "أيضًا."
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr "الرمز "
 
@@ -10362,9 +10527,20 @@ msgstr "رمز طرفي خط الحافة"
 msgid "Symbol size"
 msgstr "حجم الرمز"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "مزامنة الأعمدة من المصدر"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "بناء الجملة"
 
@@ -10414,6 +10590,10 @@ msgstr ""
 "تعذر العثور على الجدول [%(table_name)s]، يرجى التحقق مرة أخرى من اتصال "
 "قاعدة البيانات والمخطط واسم الجدول"
 
+#, fuzzy
+msgid "Table actions"
+msgstr "أعمدة الجدول"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10425,6 +10605,10 @@ msgstr "مهلة ذاكرة التخزين المؤقت للجدول"
 msgid "Table columns"
 msgstr "أعمدة الجدول"
 
+#, fuzzy
+msgid "Table name"
+msgstr "اسم الجدول"
+
 msgid "Table name undefined"
 msgstr "اسم الجدول غير محدد"
 
@@ -10488,13 +10672,6 @@ msgstr "لا يمكن حذف الكائن الذي تم وضع علامة علي
 msgid "Tags"
 msgstr "الوسوم"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-"خذ نقاط البيانات الخاصة بك وقم بتجميعها في «صناديق» لمعرفة أين تكمن مناطق"
-" المعلومات الأكثر كثافة"
-
 msgid "Target"
 msgstr "الهدف"
 
@@ -10579,9 +10756,6 @@ msgstr ""
 "يأخذ GeoJsonLayer البيانات المنسقة لـ GeoJSON ويعرضها كمضلعات وخطوط ونقاط"
 " تفاعلية (دوائر ورموز و/أو نصوص)."
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10614,6 +10788,10 @@ msgstr "تم حفظ التعليق التوضيحي"
 msgid "The annotation has been updated"
 msgstr "تم تحديث التعليق التوضيحي"
 
+#, fuzzy
+msgid "The background color of the charts."
+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."
@@ -10649,6 +10827,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr "لون النقاط والمجموعات في RGB"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "لون الإيزولين"
+
 msgid "The color of the isoband"
 msgstr "لون الإيزوبوند"
 
@@ -10665,6 +10847,15 @@ msgstr ""
 "يتم تحديد نظام الألوان من خلال لوحة المعلومات ذات الصلة.\n"
 " قم بتحرير نظام الألوان في خصائص لوحة المعلومات."
 
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+"يتم تجاوز نظام الألوان هذا من خلال ألوان التسمية المخصصة.\n"
+" تحقق من بيانات JSON الوصفية في الإعدادات المتقدمة"
+
 msgid "The column header label"
 msgstr "تسمية رأس العمود"
 
@@ -10677,6 +10868,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr "تم حذف العمود أو إعادة تسميته في قاعدة البيانات."
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10688,25 +10885,9 @@ msgstr "تم حفظ لوحة التحكم"
 msgid "The data source seems to have been deleted"
 msgstr "يبدو أن مصدر البيانات قد تم حذفه"
 
-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 ""
-"نوع البيانات الذي تم استنتاجه بواسطة قاعدة البيانات. قد يكون من الضروري "
-"إدخال نوع يدويًا للأعمدة المحددة بالتعبير في بعض الحالات. في معظم "
-"الحالات، يجب ألا يحتاج المستخدمون إلى تغيير هذا."
-
-#, 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 باستخدام قاعدة البيانات هذه "
-"مفتوحة. هل أنت متأكد أنك تريد المتابعة؟ سيؤدي حذف قاعدة البيانات إلى كسر "
-"هذه الكائنات."
+#, fuzzy
+msgid "The database"
+msgstr "حذف قاعدة البيانات"
 
 msgid "The database columns that contains lines information"
 msgstr "أعمدة قاعدة البيانات التي تحتوي على معلومات الأسطر"
@@ -10739,15 +10920,9 @@ msgstr "تم حذف قاعدة البيانات."
 msgid "The database was not found."
 msgstr "لم يتم العثور على قاعدة البيانات."
 
-#, 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. هل "
-"أنت متأكد أنك تريد المتابعة؟ سيؤدي حذف مجموعة البيانات إلى كسر هذه "
-"الكائنات."
+#, fuzzy
+msgid "The dataset"
+msgstr "مجموعة بيانات جديدة"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "لم تعد مجموعة البيانات المرتبطة بهذا المخطط موجودة"
@@ -10814,6 +10989,15 @@ msgid ""
 "call."
 msgstr "يتم تفكيك كائن engine_params في استدعاء sqlalchemy.create_engine."
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10831,6 +11015,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr "الوظيفة التي يجب استخدامها عند تجميع النقاط في مجموعات"
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10865,25 +11052,13 @@ msgstr "لا يمكن حل اسم المضيف المقدم."
 msgid "The id of the active 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 ""
-"قائمة المخططات المرتبطة بهذا الجدول. من خلال تغيير مصدر البيانات هذا، "
-"يمكنك تغيير طريقة عمل هذه المخططات المرتبطة. لاحظ أيضًا أن المخططات تحتاج"
-" إلى الإشارة إلى مصدر بيانات، لذلك سيفشل هذا النموذج في الحفظ في حالة "
-"إزالة المخططات من مصدر البيانات. إذا كنت تريد تغيير مصدر البيانات للمخطط،"
-" فاستبدل المخطط من «عرض الاستكشاف»"
+#, fuzzy
+msgid "The layer attribution"
+msgstr "سمات النموذج ذات الصلة بالوقت"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr "الحد الأدنى لنطاق عتبة Isoband"
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr "الحد الأقصى لعدد الأحداث المراد إرجاعها، أي ما يعادل عدد الصفوف"
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10924,6 +11099,19 @@ msgstr ""
 "7، بحيث تكون جميع نقاط البيانات المعروضة هي إجمالي 7 فترات. سيؤدي هذا إلى"
 " إخفاء «الزيادة» التي تحدث خلال الفترات السبع الأولى"
 
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "الحد الأقصى لقيمة المقاييس. إنه تكوين اختياري"
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "اسم عمود المعرف"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 msgid "The name of the rule must be unique"
 msgstr "يجب أن يكون اسم القاعدة فريدًا"
 
@@ -11164,6 +11352,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr "لم تعد الواجهة الخلفية للنتائج تحتوي على البيانات من الاستعلام."
 
@@ -11207,11 +11398,16 @@ msgstr "تم حذف المخطط أو إعادة تسميته في قاعدة ا
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "تم إنشاء التقرير"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
-msgstr ""
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "عرض قيم السلسلة على الرسم البياني"
 
 msgid "The size of each cell in meters"
 msgstr "حجم كل خلية بالأمتار"
@@ -11219,6 +11415,9 @@ msgstr "حجم كل خلية بالأمتار"
 msgid "The size of the square cell, in pixels"
 msgstr "حجم الخلية المربعة بالبكسل"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr "فشلت عملية التحقق من الحمولة المرسلة."
 
@@ -11244,13 +11443,6 @@ msgstr ""
 "الجدول \"%(table_name)s\" غير موجود. يجب استخدام جدول صالح لتشغيل هذا "
 "الاستعلام."
 
-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 "The table was deleted or renamed in the database."
 msgstr "تم حذف الجدول أو إعادة تسميته في قاعدة البيانات."
 
@@ -11314,6 +11506,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr "الوحدة الزمنية المستخدمة لتجميع الكتل"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "إضافة اسم المخطط"
+
 msgid "The type of visualization to display"
 msgstr "نوع التصور المراد عرضه"
 
@@ -11336,12 +11532,27 @@ msgstr "اسم المستخدم \"%(username)s\" غير موجود."
 msgid "The username provided when connecting to a database is not valid."
 msgstr "اسم المستخدم المقدم عند الاتصال بقاعدة بيانات غير صالح."
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "اختر موضع وسيلة الإيضاح"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "اعرض القيمة أعلى الشريط"
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "الطريقة التي يتم بها وضع القراد على المحور السيني"
 
 msgid "The width of the Isoline in pixels"
 msgstr "عرض Isoline بالبكسل"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "عرض الخطوط"
+
 msgid "The width of the lines"
 msgstr "عرض الخطوط"
 
@@ -11358,9 +11569,6 @@ msgstr "لا توجد مخططات مضافة إلى لوحة التحكم هذ
 msgid "There are no components added to this tab"
 msgstr "لا توجد مكونات مضافة إلى علامة التبويب هذه"
 
-msgid "There are no databases available"
-msgstr "لا توجد قواعد بيانات متاحة"
-
 msgid "There are no filters in this dashboard."
 msgstr "لا توجد فلاتر في لوحة التحكم هذه."
 
@@ -11374,6 +11582,10 @@ msgstr ""
 "يوجد خطأ في بناء الجملة في استعلام SQL. ربما كان هناك خطأ إملائي أو خطأ "
 "مطبعي."
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "نوع التصور المراد عرضه"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11397,6 +11609,10 @@ msgstr "حدث خطأ أثناء جلب الحالة المفضلة: %s"
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "حدث خطأ أثناء جلب نشاطك الأخير:"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "حدث خطأ أثناء تحميل المخططات"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "حدث خطأ أثناء تحميل الجداول"
@@ -11424,6 +11640,10 @@ msgstr "حدث خطأ أثناء حفظ الحالة المفضلة: %s"
 msgid "There was an error with your request"
 msgstr "حدث خطأ في طلبك"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "حدثت مشكلة أثناء الحذف: %s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "حدثت مشكلة أثناء الحذف%s: %s"
@@ -11507,24 +11727,9 @@ msgstr "حدثت مشكلة أثناء معاينة الاستعلام المح
 msgid "There was an issue previewing the selected query. %s"
 msgstr "حدثت مشكلة أثناء معاينة الاستعلام المحدد. %s"
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr "هناك حلقة في سانكي الخاص بك، يرجى تقديم شجرة. إليك رابط خاطئ: {}"
-
 msgid "These are the datasets this filter will be applied to."
 msgstr "هذه هي مجموعات البيانات التي سيتم تطبيق عامل التصفية عليها."
 
-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 ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11541,12 +11746,20 @@ msgstr "سيتم حذف هذا الإجراء نهائيًا%s."
 msgid "This action will permanently delete the layer."
 msgstr "سيؤدي هذا الإجراء إلى حذف الطبقة نهائيًا."
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "سيؤدي هذا الإجراء إلى حذف الطبقة نهائيًا."
+
 msgid "This action will permanently delete the saved query."
 msgstr "سيؤدي هذا الإجراء إلى حذف الاستعلام المحفوظ نهائيًا."
 
 msgid "This action will permanently delete the template."
 msgstr "سيؤدي هذا الإجراء إلى حذف القالب نهائيًا."
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "سيؤدي هذا الإجراء إلى حذف الطبقة نهائيًا."
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11577,13 +11790,6 @@ msgid ""
 "source. "
 msgstr "لا يتم دعم نوع المخطط هذا عند استخدام استعلام غير محفوظ كمصدر مخطط. "
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-"يتم تجاوز نظام الألوان هذا من خلال ألوان التسمية المخصصة.\n"
-" تحقق من بيانات JSON الوصفية في الإعدادات المتقدمة"
-
 msgid "This column might be incompatible with current dataset"
 msgstr "قد يكون هذا العمود غير متوافق مع مجموعة البيانات الحالية"
 
@@ -11668,6 +11874,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr "تم حفظ لوحة المعلومات هذه بنجاح."
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr "تتم إدارة قاعدة البيانات هذه خارجيًا، ولا يمكن تحريرها في Superset"
 
@@ -11685,6 +11897,9 @@ msgstr "لا يتم استخدام مجموعة البيانات هذه لتشغ
 msgid "This defines the element to be plotted on the chart"
 msgstr "هذا يحدد العنصر الذي سيتم رسمه على الرسم البياني"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11699,13 +11914,6 @@ msgstr ""
 "يتم استخدام هذا الحقل كمعرف فريد لإرفاق المقياس بالمخططات. يتم استخدامه "
 "أيضًا كاسم مستعار في استعلام SQL."
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr ""
-"تعمل هذه الحقول بطريقة عرض شاملة، مما يعني أن Superset ستقوم بتشغيل "
-"استعلام مقابل هذه السلسلة كاستعلام فرعي."
-
 msgid "This filter might be incompatible with current dataset"
 msgstr "قد يكون عامل التصفية هذا غير متوافق مع مجموعة البيانات الحالية"
 
@@ -11743,15 +11951,6 @@ msgstr "يوجد خطأ في مكون تخفيض السعر هذا. يرجى ا
 msgid "This may be triggered by:"
 msgstr "قد يتم تشغيل هذا من خلال:"
 
-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 ""
-"يُستخدم هذا المقياس لتعريف معايير اختيار الصفوف (كيفية فرز الصفوف) في "
-"حالة وجود حد للسلسلة أو الصف. إذا لم يتم تعريفه، فإنه يعود إلى المقياس "
-"الأول (عند الاقتضاء)."
-
 msgid "This metric might be incompatible with current dataset"
 msgstr "قد يكون هذا المقياس غير متوافق مع مجموعة البيانات الحالية"
 
@@ -11799,6 +11998,9 @@ msgstr ""
 "يحتوي هذا الجدول بالفعل على مجموعة بيانات مرتبطة به. يمكنك فقط ربط مجموعة"
 " بيانات واحدة بجدول.\n"
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr "يجب أن تكون هذه القيمة أكبر من القيمة المستهدفة اليسرى"
 
@@ -11878,9 +12080,6 @@ msgstr "نسبة الوقت"
 msgid "Time Series"
 msgstr "سلسلة زمنية"
 
-msgid "Time Series - Bar Chart"
-msgstr "السلاسل الزمنية - مخطط شريطي"
-
 msgid "Time Series - Line Chart"
 msgstr "السلاسل الزمنية - مخطط خطي"
 
@@ -11896,9 +12095,6 @@ msgstr "السلاسل الزمنية - النسبة المئوية للتغير
 msgid "Time Series - Period Pivot"
 msgstr "السلسلة الزمنية - محور الفترة"
 
-msgid "Time Series - Stacked"
-msgstr "سلسلة زمنية - مكدسة"
-
 msgid "Time Series Options"
 msgstr "خيارات السلاسل الزمنية"
 
@@ -11992,17 +12188,6 @@ msgstr ""
 "السلسلة الزمنية غامضة. يرجى تحديد [منذ %(human_readable)s] أو [بعد "
 "%(human_readable)s]."
 
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "مخطط شريطي للسلسلة الزمنية (قديم)"
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr "مخطط شريطي للسلسلة الزمنية (قديم)"
-
-#, fuzzy
-msgid "Time-series Line Chart (legacy)"
-msgstr "مخطط شريطي للسلسلة الزمنية (قديم)"
-
 msgid "Time-series Percent Change"
 msgstr "تغيير النسبة المئوية للسلسلة الزمنية"
 
@@ -12021,9 +12206,6 @@ msgstr "صيغة الطابع الزمني"
 msgid "Timezone"
 msgstr "المنطقة الزمنية"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "إزاحة المنطقة الزمنية (بالساعات) لمصدر البيانات هذا"
-
 msgid "Timezone selector"
 msgstr "محدد المنطقة الزمنية"
 
@@ -12042,6 +12224,11 @@ msgstr "العنوان مطلوب"
 msgid "Title or Slug"
 msgstr "العنوان أو البزاقة"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "للتصفية على مقياس، استخدم علامة تبويب SQL مخصصة."
 
@@ -12083,6 +12270,10 @@ msgstr "المجموع (%(aggfunc)s)"
 msgid "Total (%(aggregatorName)s)"
 msgstr "المجموع (%(aggregatorName)s)"
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "الإجمالي: %s"
+
 msgid "Total value"
 msgstr "القيمة الإجمالية"
 
@@ -12191,9 +12382,6 @@ msgstr "اكتب قيمة هنا"
 msgid "Type is required"
 msgstr "النوع مطلوب"
 
-msgid "Type of Google Sheets allowed"
-msgstr "نوع جداول بيانات Google المسموح بها"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "نوع المقارنة أو فرق القيمة أو النسبة المئوية"
 
@@ -12280,9 +12468,15 @@ msgstr ""
 "المحاولة من قبل Superset لاحقًا. يرجى الاتصال بالمسؤول إذا استمرت هذه "
 "المشكلة."
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr "غير قادر على استرداد ألوان لوحة المعلومات"
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "غير محدد"
 
@@ -12311,6 +12505,10 @@ msgstr ""
 msgid "Unexpected time range: %(error)s"
 msgstr "نطاق زمني غير متوقع: %(error)s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "التراجع"
+
 msgid "Unknown"
 msgstr "غير معروف"
 
@@ -12348,6 +12546,10 @@ msgstr "نوع غير معروف"
 msgid "Unknown value"
 msgstr "قيمة غير معروفة"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "قيد التشغيل"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr "نوع الإرجاع غير الآمن للوظيفة%(func)s: %(value_type)s"
@@ -12411,9 +12613,6 @@ msgstr "تحميل ملف عمودي"
 msgid "Upload Columnar file to database"
 msgstr "تحميل ملف عمودي إلى قاعدة البيانات"
 
-msgid "Upload Credentials"
-msgstr "تحميل بيانات الاعتماد"
-
 msgid "Upload Enabled"
 msgstr "تم تمكين التحميل"
 
@@ -12436,6 +12635,10 @@ msgstr "تحميل ملف إلى قاعدة البيانات"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "تحميل بيانات الاعتماد"
+
 msgid "Upload file to database"
 msgstr "تحميل ملف إلى قاعدة البيانات"
 
@@ -12489,12 +12692,13 @@ msgstr ""
 "استخدم مخططًا موجودًا آخر كمصدر للتعليقات التوضيحية والتراكبات.\n"
 " يجب أن يكون المخطط الخاص بك أحد أنواع التصور هذه: [%s]"
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "تشغيل الاستعلام الحالي"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr "استخدم تنسيق التاريخ حتى عندما لا تكون قيمة المقياس طابعًا زمنيًا"
 
-msgid "Use legacy datasource editor"
-msgstr "استخدم محرر مصدر البيانات القديم"
-
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr "استخدم المقاييس كمجموعة ذات مستوى أعلى للأعمدة أو للصفوف"
 
@@ -12504,11 +12708,6 @@ msgstr "استخدم قيمة واحدة فقط."
 msgid "Use the Advanced Analytics options below"
 msgstr "استخدم خيارات التحليلات المتقدمة أدناه"
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr "استخدم ملف JSON الذي قمت بتنزيله تلقائيًا عند إنشاء حساب الخدمة الخاص بك."
-
 msgid "Use the edit button to change this field"
 msgstr "استخدم زر التحرير لتغيير هذا الحقل"
 
@@ -12551,9 +12750,23 @@ msgstr "يجب على المستخدم تحديد قيمة قبل تطبيق ع
 msgid "User query"
 msgstr "استعلام المستخدم"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "اسم المُستخدم"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "الاسم مطلوب"
+
+#, fuzzy
+msgid "Users"
+msgstr "سلسلة"
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr "لا يُسمح للمستخدمين بتعيين مسار بحث لأسباب أمنية."
 
@@ -12580,6 +12793,10 @@ msgstr ""
 "الماوس فوق المسارات الفردية في التصور لفهم المراحل التي استغرقتها القيمة."
 " مفيد لمسارات وخطوط الأنابيب للتصور متعددة المراحل ومتعددة المجموعات."
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "القيمة "
 
@@ -12605,9 +12822,16 @@ msgstr ""
 msgid "Value format"
 msgstr "تنسيق القيمة"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "يجب أن تكون القيمة أكبر من 0"
+
 msgid "Value is required"
 msgstr "القيمة مطلوبة"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "يجب أن تكون القيمة أكبر من 0"
@@ -12628,12 +12852,6 @@ msgstr ""
 "ستؤثر القيم المحددة في عوامل التصفية الأخرى على خيارات التصفية لعرض القيم"
 " ذات الصلة فقط"
 
-msgid "Vehicle Types"
-msgstr "أنواع المركبات"
-
-msgid "Verbose Name"
-msgstr "اسم مطول"
-
 msgid "Version"
 msgstr "الإصدار"
 
@@ -12646,9 +12864,6 @@ msgstr "عمودي"
 msgid "Vertical (Left)"
 msgstr "عمودي (يسار)"
 
-msgid "Video game consoles"
-msgstr "أجهزة ألعاب الفيديو"
-
 msgid "View"
 msgstr "منظر"
 
@@ -12690,9 +12905,6 @@ msgstr "افتراضية"
 msgid "Virtual (SQL)"
 msgstr "افتراضية (SQL)"
 
-msgid "Virtual dataset"
-msgstr "مجموعة بيانات افتراضية"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "لا يمكن أن يكون استعلام مجموعة البيانات الافتراضية فارغًا"
 
@@ -12736,13 +12948,6 @@ msgstr ""
 "تصور البيانات الجغرافية المكانية مثل المباني ثلاثية الأبعاد أو المناظر "
 "الطبيعية أو الكائنات في عرض الشبكة."
 
-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."
@@ -12802,16 +13007,6 @@ msgstr ""
 "تصور العديد من كائنات السلاسل الزمنية المختلفة في مخطط واحد. تم إيقاف هذا"
 " المخطط ونوصي باستخدام مخطط السلاسل الزمنية بدلاً من ذلك."
 
-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 ""
-"تصور تدفق قيم المجموعة المختلفة عبر مراحل مختلفة من النظام. يتم تصور "
-"المراحل الجديدة في خط الأنابيب كعقد أو طبقات. يمثل سمك الأشرطة أو الحواف "
-"المقياس الذي يتم تصويره."
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -12828,6 +13023,12 @@ msgstr "نوع الفيز"
 msgid "WED"
 msgstr "تزوج"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, fuzzy, python-format
 msgid "Waiting on %s"
 msgstr "عرض %s لـ %s"
@@ -12842,9 +13043,6 @@ msgstr "هل تريد إضافة قاعدة بيانات جديدة؟"
 msgid "Warning"
 msgstr "تحذير"
 
-msgid "Warning Message"
-msgstr "رسالة تحذير"
-
 msgid "Warning!"
 msgstr "تحذير!"
 
@@ -12991,13 +13189,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr "عند توفير مقياس ثانوي، يتم استخدام مقياس لوني خطي."
 
-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 Lab، يفرض هذا الخيار إنشاء الجدول"
-" في هذا المخطط"
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr "عند التحقق، ستقوم الخريطة بتكبير بياناتك بعد كل استعلام"
 
@@ -13023,6 +13214,11 @@ msgstr ""
 "عندما تتم تصفية الأعمدة الزمنية الثانوية، قم بتطبيق نفس عامل التصفية على "
 "عمود التاريخ والوقت الرئيسي."
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -13042,20 +13238,14 @@ msgstr "عند استخدام «Group By»، فأنت مقيد باستخدام
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr "عند استخدام التنسيق بخلاف التنسيق التكيفي، قد تتداخل التسميات"
 
-msgid "When using this option, default value can’t be set"
-msgstr "عند استخدام هذا الخيار، لا يمكن تعيين القيمة الافتراضية"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr "ما إذا كان شريط التقدم يتداخل عند وجود مجموعات متعددة من البيانات"
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr "ما إذا كان الجدول قد تم إنشاؤه بواسطة تدفق «Visualize» في SQL Lab"
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr "ما إذا كان هذا العمود مكشوفًا في قسم «الفلاتر» من عرض الاستكشاف."
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -13093,6 +13283,10 @@ msgstr "ما إذا كنت تريد عرض وسيلة إيضاح للمخطط"
 msgid "Whether to display bubbles on top of countries"
 msgstr "ما إذا كنت تريد عرض الفقاعات فوق البلدان"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "ما إذا كنت تريد عرض وسيلة إيضاح للمخطط"
+
 msgid "Whether to display the aggregate count"
 msgstr "ما إذا كان سيتم عرض العدد الإجمالي"
 
@@ -13102,11 +13296,6 @@ msgstr "ما إذا كان سيتم عرض جدول البيانات التفا
 msgid "Whether to display the labels."
 msgstr "ما إذا كان سيتم عرض الملصقات."
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr "ما إذا كان سيتم عرض الملصقات. لاحظ أن التسمية تظهر فقط عند حد 5٪."
-
 msgid "Whether to display the legend (toggles)"
 msgstr "ما إذا كنت تريد عرض وسيلة الإيضاح (مفاتيح التبديل)"
 
@@ -13122,6 +13311,10 @@ msgstr "ما إذا كان سيتم عرض القيم الدنيا والقصو
 msgid "Whether to display the numerical values within the cells"
 msgstr "ما إذا كان سيتم عرض القيم العددية داخل الخلايا"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "ما إذا كان سيتم تضمين النسبة المئوية في تلميح الأدوات"
+
 msgid "Whether to display the stroke"
 msgstr "ما إذا كان سيتم عرض الحد"
 
@@ -13134,9 +13327,17 @@ msgstr "ما إذا كان سيتم عرض الطابع الزمني"
 msgid "Whether to display the tooltip labels."
 msgstr "ما إذا كنت تريد عرض تسميات تلميحات الأدوات."
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "ما إذا كان سيتم عرض القيم العددية داخل الخلايا"
+
 msgid "Whether to display the trend line"
 msgstr "ما إذا كان سيتم عرض خط الاتجاه"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "ما إذا كان سيتم عرض العدد الإجمالي"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr "ما إذا كان سيتم تمكين تغيير موضع الرسم البياني والتحجيم."
 
@@ -13161,37 +13362,17 @@ msgstr "ما إذا كان سيتم تضمين التفاصيل الزمنية 
 msgid "Whether to make the grid 3D"
 msgstr "ما إذا كنت تريد جعل الشبكة ثلاثية الأبعاد"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "ما إذا كان يجب جعل الرسم البياني تراكميًا"
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr ""
-"سواء كنت تريد إتاحة هذا العمود كخيار [Time Granularity]، يجب أن يكون "
-"العمود DATETIME أو يشبه DateTime"
-
-msgid "Whether to normalize the histogram"
-msgstr "ما إذا كان سيتم تطبيع الرسم البياني"
-
 msgid "Whether to populate autocomplete filters options"
 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 ""
-"ما إذا كنت تريد ملء القائمة المنسدلة للفلتر في قسم التصفية في عرض "
-"الاستكشاف بقائمة من القيم المميزة التي يتم جلبها من الواجهة الخلفية بسرعة"
-
 #, fuzzy
 msgid "Whether to show as Nightingale chart."
 msgstr "ما إذا كان سيتم إظهار تقدم مخطط القياس"
 
+#, fuzzy
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr ""
 "سواء لإظهار عناصر تحكم إضافية أم لا. تتضمن عناصر التحكم الإضافية أشياء "
 "مثل إنشاء مخططات MultiBar مكدسة أو جنبًا إلى جنب."
@@ -13214,9 +13395,6 @@ msgstr "ما إذا كان سيتم الفرز تصاعديًا أو تنازل
 msgid "Whether to sort descending or ascending"
 msgstr "ما إذا كنت تريد الفرز تنازليًا أو تصاعديًا"
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr "ما إذا كان سيتم الفرز تنازليًا أو تصاعديًا في حالة وجود حد للسلسلة"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr "ما إذا كان سيتم فرز النتائج حسب المقياس المحدد بترتيب تنازلي."
 
@@ -13274,9 +13452,6 @@ msgstr "اكتب وصفًا لاستعلامك"
 msgid "Write a handlebars template to render the data"
 msgstr "اكتب قالب المقاود لعرض البيانات"
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "عنوان المحور X (الهامش السفلي)"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "هامش عنوان المحور X"
 
@@ -13295,6 +13470,10 @@ msgstr "ملصق المحور X"
 msgid "X Axis Title"
 msgstr "عنوان المحور X"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "هامش عنوان المحور Y"
+
 msgid "X Log Scale"
 msgstr "مقياس اكس لوغ"
 
@@ -13316,6 +13495,9 @@ msgstr "المحور السيني"
 msgid "XScale Interval"
 msgstr "الفاصل الزمني للمقياس"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "حدود Y 2"
 
@@ -13438,6 +13620,19 @@ msgstr ""
 "تؤدي الكتابة الاستعلائية إلى فقدان بعض أعمالك. هل تريد بالتأكيد الكتابة "
 "فوقها؟"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr "يمكنك"
 
@@ -13514,9 +13709,6 @@ msgstr "لا يمكنك الوصول إلى مجموعة البيانات هذه
 msgid "You don't have access to this embedded dashboard config."
 msgstr "لا يمكنك الوصول إلى تكوين لوحة المعلومات المضمنة هذا."
 
-msgid "You don't have any favorites yet!"
-msgstr "ليس لديك أي مفضلات حتى الآن!"
-
 msgid "You don't have permission to modify the value."
 msgstr "ليس لديك إذن لتعديل القيمة."
 
@@ -13597,6 +13789,9 @@ msgstr "الرسم البياني الخاص بك ليس محدثًا"
 msgid "Your chart is ready to go!"
 msgstr "الرسم البياني الخاص بك جاهز للعمل!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr "لوحة التحكم الخاصة بك كبيرة جدًا. يرجى تقليل حجمها قبل حفظها."
 
@@ -13625,6 +13820,9 @@ msgstr "تم حفظ الاستعلام الخاص بك"
 msgid "Your query was updated"
 msgstr "تم تحديث الاستعلام الخاص بك"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "لا يمكن حذف التقرير"
 
@@ -13637,6 +13835,9 @@ msgstr "الإسناد الصفري"
 msgid "Zoom"
 msgstr "تكبير"
 
+msgid "Zoom level"
+msgstr ""
+
 msgid "Zoom level of the map"
 msgstr "مستوى التكبير/التصغير للخريطة"
 
@@ -13757,9 +13958,6 @@ msgstr "في"
 msgid "auto"
 msgstr "السيارات"
 
-msgid "auto (Smooth)"
-msgstr "تلقائي (ناعم)"
-
 msgid "background"
 msgstr "خلفية"
 
@@ -13806,9 +14004,6 @@ msgstr "التغير"
 msgid "chart"
 msgstr "مخطط"
 
-msgid "charts"
-msgstr "الرسوم البيانية"
-
 msgid "choose WHERE or HAVING..."
 msgstr "اختر المكان أو الحصول على..."
 
@@ -13818,6 +14013,10 @@ msgstr "مسح جميع الفلاتر"
 msgid "click here"
 msgstr "انقر هنا"
 
+#, fuzzy
+msgid "close"
+msgstr "غلق"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr "كود أيزو 3166-1 ألفا-2 (cca2)"
 
@@ -13871,15 +14070,9 @@ msgstr "قالب css"
 msgid "cumsum"
 msgstr "كمس"
 
-msgid "cumulative"
-msgstr "التراكمي"
-
 msgid "dashboard"
 msgstr "لوحة المعلومات"
 
-msgid "dashboards"
-msgstr "لوحات المعلومات"
-
 msgid "database"
 msgstr "قاعدة البيانات"
 
@@ -13943,9 +14136,6 @@ msgstr "سطح السفينة"
 msgid "default"
 msgstr "إفتراضي"
 
-msgid "delete"
-msgstr "حذف"
-
 msgid "descendant"
 msgstr "سليل"
 
@@ -13958,9 +14148,6 @@ msgstr "إنحراف"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr "dialect+driver://username:password@host:port/database"
 
-msgid "draft"
-msgstr "مسودة"
-
 msgid "dttm"
 msgstr "dtm"
 
@@ -14001,9 +14188,6 @@ msgstr "على سبيل المثال world_population"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "على سبيل المثال xy12345.us-east-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "على سبيل المثال، عمود «معرف المستخدم»"
-
 msgid "edit mode"
 msgstr "وضع التحرير"
 
@@ -14014,6 +14198,10 @@ msgstr "حدد الموضوع"
 msgid "entries"
 msgstr "إدخالات"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "إدخالات"
+
 msgid "error"
 msgstr "خطأ"
 
@@ -14080,13 +14268,6 @@ msgstr "هنا"
 msgid "hour"
 msgstr "ساعة"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-"سمة CSS لعرض الصور لكائن اللوحة القماشية التي تحدد كيفية قيام المتصفح "
-"بتوسيع نطاق الصورة"
-
 msgid "in"
 msgstr "في"
 
@@ -14096,6 +14277,10 @@ msgstr ""
 msgid "invalid email"
 msgstr ""
 
+#, fuzzy
+msgid "is"
+msgstr "في"
+
 msgid "is expected to be a Mapbox URL"
 msgstr "من المتوقع أن يكون عنوان URL الخاص بـ Mapbox"
 
@@ -14105,6 +14290,29 @@ msgstr "من المتوقع أن يكون رقمًا"
 msgid "is expected to be an integer"
 msgstr "من المتوقع أن يكون عددًا صحيحًا"
 
+#, fuzzy, python-format
+msgid ""
+"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 باستخدام قاعدة البيانات هذه "
+"مفتوحة. هل أنت متأكد أنك تريد المتابعة؟ سيؤدي حذف قاعدة البيانات إلى كسر "
+"هذه الكائنات."
+
+#, fuzzy, python-format
+msgid ""
+"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. هل "
+"أنت متأكد أنك تريد المتابعة؟ سيؤدي حذف مجموعة البيانات إلى كسر هذه "
+"الكائنات."
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "مفتاح من الألف إلى الياء"
 
@@ -14228,18 +14436,9 @@ msgstr "ص 99"
 msgid "page_size.all"
 msgstr "حجم_الصفحة.الكل"
 
-msgid "page_size.entries"
-msgstr "إدخالات حجم الصفحة"
-
-msgid "page_size.show"
-msgstr "حجم الصفحة. العرض"
-
 msgid "pending"
 msgstr "المعلقه"
 
-msgid "percentile (exclusive)"
-msgstr "المئوي (حصري)"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14250,24 +14449,22 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "لم يتم العثور على حالة الرابط الثابت"
 
-msgid "pixelated (Sharp)"
-msgstr "منقط (حاد)"
-
 msgid "pixels"
 msgstr "بكسل"
 
 msgid "previous calendar month"
 msgstr "الشهر التقويمي السابق"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "السنة التقويمية السابقة"
+
 msgid "previous calendar week"
 msgstr "الأسبوع التقويمي السابق"
 
 msgid "previous calendar year"
 msgstr "السنة التقويمية السابقة"
 
-msgid "published"
-msgstr "منشورة"
-
 msgid "quarter"
 msgstr "الربع"
 
@@ -14286,9 +14483,6 @@ msgstr "اعادة التشغيل"
 msgid "recent"
 msgstr "حديث"
 
-msgid "recents"
-msgstr "الأخيرة"
-
 #, fuzzy
 msgid "recipients"
 msgstr "الأخيرة"
@@ -14311,8 +14505,9 @@ msgstr "الأمان على مستوى الصف"
 msgid "running"
 msgstr "قيد التشغيل"
 
-msgid "saved queries"
-msgstr "الاستعلامات المحفوظة"
+#, fuzzy
+msgid "save"
+msgstr "وفر"
 
 msgid "seconds"
 msgstr "ثواني"
@@ -14328,10 +14523,6 @@ msgstr ""
 "السلسلة: تعامل مع كل سلسلة بشكل مستقل؛ بشكل عام: تستخدم جميع السلاسل نفس "
 "المقياس؛ التغيير: عرض التغييرات مقارنة بنقطة البيانات الأولى في كل سلسلة"
 
-#, fuzzy
-msgid "shift start date"
-msgstr "تاريخ البداية"
-
 msgid "sql"
 msgstr ""
 
@@ -14386,9 +14577,6 @@ msgstr "رمز النوع الزمني"
 msgid "textarea"
 msgstr "تيكستاريا"
 
-msgid "to"
-msgstr "الى"
-
 msgid "top"
 msgstr "قمة"
 
@@ -14398,6 +14586,14 @@ msgstr "التراجع"
 msgid "unknown type icon"
 msgstr "رمز نوع غير معروف"
 
+#, fuzzy
+msgid "unset"
+msgstr "حزيران (يونيو)"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "%s محدث"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14459,3 +14655,6 @@ msgstr "عام"
 
 msgid "zoom area"
 msgstr ""
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/de/LC_MESSAGES/messages.po b/superset/translations/de/LC_MESSAGES/messages.po
index 81c65007d6d21408ba9f31d5fb4cf12dc7e9d21c..47a034de22767f295396b99221acf1130d826d04 100644
--- a/superset/translations/de/LC_MESSAGES/messages.po
+++ b/superset/translations/de/LC_MESSAGES/messages.po
@@ -18,16 +18,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2023-04-07 19:45+0200\n"
 "Last-Translator: Holger Bruch <holger.bruch@wattbewerb.de>\n"
 "Language: de\n"
 "Language-Team: de <LL@li.org>\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -43,12 +43,12 @@ msgid ""
 "displayed."
 msgstr ""
 "\n"
-"                Mit der kumulativen Option können Sie sehen, wie sich Ihre "
-"Daten über verschiedene\n"
-"Werte. Wenn aktiviert, stellen die Histogrammstäbe die laufende Summe der "
-"Frequenzen dar\n"
-"bis zu jedem Bin. Dies hilft Ihnen zu verstehen, wie wahrscheinlich es ist, "
-"Werte zu begegnen\n"
+"                Mit der kumulativen Option können Sie sehen, wie sich "
+"Ihre Daten über verschiedene\n"
+"Werte. Wenn aktiviert, stellen die Histogrammstäbe die laufende Summe der"
+" Frequenzen dar\n"
+"bis zu jedem Bin. Dies hilft Ihnen zu verstehen, wie wahrscheinlich es "
+"ist, Werte zu begegnen\n"
 "unter einem bestimmten Punkt. Denken Sie daran, dass die Aktivierung "
 "kumulativ nicht ändern Sie\n"
 "Originaldaten, es ändert einfach die Art und Weise, wie das Histogramm "
@@ -68,12 +68,12 @@ msgid ""
 "within each bin."
 msgstr ""
 "\n"
-"                Die normalisieren Option verwandelt die Histogrammwerte in "
-"Proportionen oder\n"
+"                Die normalisieren Option verwandelt die Histogrammwerte "
+"in Proportionen oder\n"
 "Wahrscheinlichkeiten durch die Aufteilung der Anzahl der Bins durch die "
 "Gesamtzahl der Datenpunkte.\n"
-"Dieser Normalisierungsprozess sorgt dafür, dass die resultierenden Werte bis "
-"1 summieren.\n"
+"Dieser Normalisierungsprozess sorgt dafür, dass die resultierenden Werte "
+"bis 1 summieren.\n"
 "einen relativen Vergleich der Datenverteilung und Bereitstellung einer\n"
 "deutlicheres Verständnis des Anteils der Datenpunkte in jedem Bin."
 
@@ -91,12 +91,12 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
-"\n"
-"Fehler: %(text)s\n"
-"            "
 
 msgid " (excluded)"
 msgstr " (ausgeschlossen)"
@@ -114,9 +114,17 @@ msgstr " ein Dashboard ODER "
 msgid " a new one"
 msgstr " eine neue"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr " die dem "
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr " Quellcode des Sandbox-Parsers von Superset"
 
@@ -197,15 +205,9 @@ msgstr ""
 "%(dialect)s kann aus Sicherheitsgründen nicht als Datenquelle verwendet "
 "werden."
 
-#, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
-msgstr ""
-"%(message)s\n"
-"Dies kann ausgelöst werden durch: \n"
-"%(issues)s"
+#, fuzzy, python-format
+msgid "%(label)s file"
+msgstr "%(type)s Datei"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -219,22 +221,6 @@ msgstr "%(name)s.pdf"
 msgid "%(object)s does not exist in this database."
 msgstr "%(object)s existiert nicht in der Datenbank."
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr "%(other)s Diagramme werden hier angezeigt"
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr "%(other)s Dashboards werden hier angezeigt"
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr "Aktuelle %(other)s werden hier angezeigt"
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s gespeicherte Abfragen werden hier angezeigt"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr "%(prefix)s %(title)s"
@@ -245,24 +231,14 @@ msgid ""
 "schedule with a minimum interval of %(minimum_interval)d minutes per "
 "execution."
 msgstr ""
-"%(report_type)s Die Häufigkeit des Zeitplans überschreitet den Grenzwert. "
-"Bitte konfigurieren Sie einen Zeitplan mit einem Mindestintervall von "
+"%(report_type)s Die Häufigkeit des Zeitplans überschreitet den Grenzwert."
+" Bitte konfigurieren Sie einen Zeitplan mit einem Mindestintervall von "
 "%(minimum_interval)d Minuten pro Ausführung."
 
 #, python-format
 msgid "%(rows)d rows returned"
 msgstr "%(rows)d Zeilen zurückgegeben"
 
-#, 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"
-
 #, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -270,12 +246,8 @@ msgid_plural ""
 "\"%(undefinedParameter)s\"?"
 msgstr[0] "%(suggestion)s statt \"%(undefinedParameter)s“?"
 msgstr[1] ""
-"%(firstSuggestions)s oder %(lastSuggestion)s anstelle von \""
-"%(undefinedParameter)s\"?"
-
-#, python-format
-msgid "%(type)s File"
-msgstr "%(type)s Datei"
+"%(firstSuggestions)s oder %(lastSuggestion)s anstelle von "
+"\"%(undefinedParameter)s\"?"
 
 #, python-format
 msgid ""
@@ -331,10 +303,6 @@ msgstr "%s Aggregate"
 msgid "%s column(s)"
 msgstr "%s Spalte(n)"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr "%s ungeeignete Posten werden ausgeblendet"
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -442,6 +410,10 @@ msgstr ""
 "Browser wechseln.\n"
 "\n"
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0 ausgewählt"
 
@@ -502,6 +474,13 @@ msgstr "1 Jahres-Frequenz (Jahresanfang)"
 msgid "10 minute"
 msgstr "10 Minuten"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 Perzentile"
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr "104 Wochen"
 
@@ -598,6 +577,10 @@ msgstr "5 Sekunden"
 msgid "5 seconds"
 msgstr "5 Sekunden"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 Perzentile"
+
 msgid "52 weeks"
 msgstr "52 Wochen"
 
@@ -664,11 +647,6 @@ msgstr ">= (Größer oder gleich)"
 msgid "A Big Number"
 msgstr "Eine Große Zahl"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr ""
-"Wählen Sie aus der Dropdown-Liste die Namen der Spalten aus, die als Datum "
-"interpretiert werden sollen."
-
 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 "
@@ -680,14 +658,17 @@ msgstr "Bei der Verbindung über SSH-Tunnel ist ein Datenbank-Port erforderlich.
 msgid "A database with the same name already exists."
 msgstr "Eine Datenbank mit dem gleichen Namen existiert bereits."
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
 "library for supported data types."
 msgstr ""
 "Ein Wörterbuch mit Spaltennamen und deren Datentypen, wenn Sie die "
-"Standardwerte ändern müssen. Beispiel: {\"user_id\": \"int\"}. Überprüfen "
-"Sie die Pandas-Bibliothek von Python auf unterstützte Datentypen."
+"Standardwerte ändern müssen. Beispiel: {\"user_id\": \"int\"}. Überprüfen"
+" Sie die Pandas-Bibliothek von Python auf unterstützte Datentypen."
 
 msgid ""
 "A full URL pointing to the location of the built plugin (could be hosted "
@@ -771,14 +752,6 @@ msgstr ""
 "Ein Satz von Parametern, die in der Abfrage mithilfe der Jinja-"
 "Vorlagensyntax verfügbar werden"
 
-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."
-
 msgid "A timeout occurred while executing the query."
 msgstr "Beim Ausführen der Abfrage ist ein Timeout aufgetreten."
 
@@ -881,33 +854,41 @@ msgstr "CC-Empfänger hinzufügen"
 msgid "Add CSS template"
 msgstr "CSS Vorlagen"
 
-msgid "Add Chart"
-msgstr "Diagramm hinzufügen"
-
-msgid "Add Column"
-msgstr "Spalte einfügen"
-
 msgid "Add Dashboard"
 msgstr "Dashboard hinzufügen"
 
-msgid "Add Database"
-msgstr "Datenbank hinzufügen"
+#, fuzzy
+msgid "Add Divider"
+msgstr "Trenner"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Filter hinzufügen"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Ebene verstecken"
 
 msgid "Add Log"
 msgstr "Protokoll hinzufügen"
 
-msgid "Add Metric"
-msgstr "Metrik hinzufügen"
-
 msgid "Add Report"
 msgstr "Bericht hinzufügen"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "Ausgeschlossene Rollen"
+
 msgid "Add Rule"
 msgstr "Regel hinzufügen"
 
 msgid "Add Tag"
 msgstr "Schlagwort hinzufügen"
 
+#, fuzzy
+msgid "Add User"
+msgstr "Regel hinzufügen"
+
 msgid "Add a Plugin"
 msgstr "Plugin hinzufügen"
 
@@ -999,9 +980,6 @@ msgstr ""
 "                    der zugrunde liegenden Daten scannen oder die "
 "verfügbaren Werte einschränken, die im Filter angezeigt werden."
 
-msgid "Add filters and dividers"
-msgstr "Filter und Trennlinien hinzufügen"
-
 msgid "Add item"
 msgstr "Element hinzufügen"
 
@@ -1019,6 +997,10 @@ msgstr "Neuen Farbformatierer hinzufügen"
 msgid "Add new formatter"
 msgstr "Neuen Formatierer hinzufügen"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Hinzufügen und Bearbeiten von Filtern"
+
 msgid "Add required control values to preview chart"
 msgstr "Erforderliche Steuerelementwerte zur Diagramm-Vorschau hinzufügen"
 
@@ -1042,12 +1024,15 @@ msgstr "Name des Dashboards hinzufügen"
 msgid "Add to dashboard"
 msgstr "Zu Dashboard hinzufügen"
 
-msgid "Add/Edit Filters"
-msgstr "Filter hinzufügen/bearbeiten"
-
 msgid "Added"
 msgstr "Hinzugefügt"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 #, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -1063,9 +1048,6 @@ msgstr "Eventuell sind weitere Felder erforderlich"
 msgid "Additional information"
 msgstr "Zusätzliche Information"
 
-msgid "Additional metadata"
-msgstr "Zusätzliche Metadaten"
-
 msgid "Additional padding for legend."
 msgstr "Zusätzliche Einrückung für Legende."
 
@@ -1094,8 +1076,9 @@ msgid ""
 "Adjust column settings such as specifying the columns to read, how "
 "duplicates are handled, column data types, and more."
 msgstr ""
-"Passen Sie die Spalteneinstellungen an, z. B. die zu lesenden Spalten, die "
-"Behandlung von Duplikaten, die Datentypen der Spalten und vieles mehr."
+"Passen Sie die Spalteneinstellungen an, z. B. die zu lesenden Spalten, "
+"die Behandlung von Duplikaten, die Datentypen der Spalten und vieles "
+"mehr."
 
 msgid ""
 "Adjust how spaces, blank lines, null values are handled and other file "
@@ -1137,6 +1120,14 @@ msgstr "Erweiterter Datentyp"
 msgid "Advanced-Analytics"
 msgstr "Erweiterte Analysen"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Diagramme auswählen"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Dashboards auswählen"
+
 msgid "After"
 msgstr "Nach"
 
@@ -1153,8 +1144,8 @@ 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 Clusterbeschriftung zu erstellen."
+"Aggregatfunktion, die auf die Liste der Punkte in jedem Cluster "
+"angewendet wird, um die Clusterbeschriftung zu erstellen."
 
 msgid ""
 "Aggregate function to apply when pivoting and computing the total rows "
@@ -1173,6 +1164,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "Aggregation"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "Aggregation"
+
 msgid "Aggregation function"
 msgstr "Aggregationsfunktion"
 
@@ -1218,8 +1213,8 @@ msgstr "Die Alarm-Abfrage hat mehr als eine Spalte zurückgegeben."
 #, python-format
 msgid "Alert query returned more than one column. %(num_cols)s columns returned"
 msgstr ""
-"Alarm-Abfrage hat mehr als eine Spalte zurückgegeben. %(num_cols)s columns "
-"returned"
+"Alarm-Abfrage hat mehr als eine Spalte zurückgegeben. %(num_cols)s "
+"columns returned"
 
 msgid "Alert query returned more than one row."
 msgstr "Die Alarm-Abfrage hat mehr als eine Zeile zurückgegeben."
@@ -1254,6 +1249,10 @@ msgstr "Ausrichten +/-"
 msgid "All"
 msgstr "Alle"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Tabellenspalten"
+
 msgid "All Text"
 msgstr "Gesamter Texte"
 
@@ -1269,26 +1268,14 @@ msgstr "Alle Filter"
 msgid "All panels"
 msgstr "Alle Bereiche"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr "Alle Bereiche mit dieser Spalte sind von diesem Filter betroffen"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "CREATE TABLE AS zulassen"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Option CREATE TABLE AS in SQL Lab zulassen"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "CREATE VIEW AS zulassen"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Option CREATE VIEW AS in SQL Lab zulassen"
-
-msgid "Allow Csv Upload"
-msgstr "CSV-Upload zulassen"
-
-msgid "Allow DML"
-msgstr "DML zulassen"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr "Ändern von Katalogen zulassen"
@@ -1297,9 +1284,9 @@ msgid ""
 "Allow column names to be changed to case insensitive format, if supported"
 " (e.g. Oracle, Snowflake)."
 msgstr ""
-"Ermöglicht die Änderung von Spaltennamen in ein Format, bei dem die Groß-/"
-"Kleinschreibung keine Rolle spielt, sofern dies unterstützt wird (z. B. "
-"Oracle, Snowflake)."
+"Ermöglicht die Änderung von Spaltennamen in ein Format, bei dem die "
+"Groß-/Kleinschreibung keine Rolle spielt, sofern dies unterstützt wird "
+"(z. B. Oracle, Snowflake)."
 
 msgid "Allow columns to be rearranged"
 msgstr "Neuanordnung von Spalten zulassen"
@@ -1307,6 +1294,10 @@ msgstr "Neuanordnung von Spalten zulassen"
 msgid "Allow creation of new tables based on queries"
 msgstr "Erstellen neuer Tabellen basierend auf Abfragen zulassen"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "Erstellen neuer Ansichten basierend auf Abfragen zulassen"
+
 msgid "Allow creation of new views based on queries"
 msgstr "Erstellen neuer Ansichten basierend auf Abfragen zulassen"
 
@@ -1324,32 +1315,24 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr "Datei-Uploads in die Datenbank zulassen"
 
-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."
-
 msgid "Allow node selections"
 msgstr "Knotenauswahl zulassen"
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr "Senden mehrerer Polygone als Filterereignis zulassen"
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "Abfragen dieser Datenbank in SQL Lab zulassen"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "Abfragen dieser Datenbank in SQL Lab zulassen"
 
-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"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "Zulässige Domänen (durch Kommas getrennt)"
 
@@ -1398,6 +1381,10 @@ msgstr ""
 msgid "An error has occurred"
 msgstr "Ein Fehler ist aufgetreten"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Beim Abrufen von Datensätzen ist ein Fehler aufgetreten: %s"
+
 msgid "An error occurred"
 msgstr "Ein Fehler ist aufgetreten"
 
@@ -1407,6 +1394,10 @@ msgstr "Beim Speichern des Datensatz ist ein Fehler aufgetreten"
 msgid "An error occurred when running alert query"
 msgstr "Bei der Ausführung der Alarm-Abfrage ist ein Fehler aufgetreten"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Beim Zugriff auf den Wert ist ein Fehler aufgetreten."
+
 msgid "An error occurred while accessing the value."
 msgstr "Beim Zugriff auf den Wert ist ein Fehler aufgetreten."
 
@@ -1421,6 +1412,10 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr "Beim Erstellen von %s ist ein Fehler aufgetreten: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Beim Erstellen des Werts ist ein Fehler aufgetreten."
+
 msgid "An error occurred while creating the data source"
 msgstr "Beim Erstellen der Datenquelle ist ein Fehler aufgetreten"
 
@@ -1573,6 +1568,10 @@ msgstr ""
 "vermeiden, dass Ihre Änderungen verloren gehen, speichern Sie Ihre "
 "Abfrage bitte über die Schaltfläche \"Abfrage speichern\"."
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Beim Abrufen von %s ist ein Fehler aufgetreten: %s"
+
 msgid "An error occurred while updating the value."
 msgstr "Beim Aktualisieren des Werts ist ein Fehler aufgetreten."
 
@@ -1763,12 +1762,6 @@ msgstr "Filter anwenden"
 msgid "Apply metrics on"
 msgstr "Metriken anwenden auf"
 
-msgid "Apply to all panels"
-msgstr "Auf alle Bereiche anwenden"
-
-msgid "Apply to specific panels"
-msgstr "Anwenden auf bestimmte Bereiche"
-
 msgid "April"
 msgstr "April"
 
@@ -1810,6 +1803,10 @@ msgstr "Möchten Sie die ausgewählten Ebenen wirklich löschen?"
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "Möchten Sie die ausgewählten Abfragen wirklich löschen?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "Möchten Sie die ausgewählten Ebenen wirklich löschen?"
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "Möchten Sie die ausgewählten Ebenen wirklich löschen?"
 
@@ -1819,6 +1816,10 @@ msgstr "Möchten Sie die ausgewählten Schlagwörter wirklich löschen?"
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "Möchten Sie die ausgewählten Vorlagen wirklich löschen?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "Möchten Sie die ausgewählten Abfragen wirklich löschen?"
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "Möchten Sie diesen Datensatz wirklich überschreiben?"
 
@@ -1858,15 +1859,13 @@ msgstr "Eines Satz von Parametern zuweisen"
 msgid "Assist"
 msgstr "Assist"
 
-msgid "Associated Charts"
-msgstr "Zugehörige Diagramme"
-
-msgid "Async Execution"
-msgstr "Asynchrone Ausführung"
-
 msgid "Asynchronous query execution"
 msgstr "Asynchrone Abfrageausführung"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "Verteilung"
+
 msgid "August"
 msgstr "August"
 
@@ -1891,12 +1890,26 @@ msgstr "Abfrageprädikat für die automatische Vervollständigung"
 msgid "Automatic Color"
 msgstr "Automatische Farbe"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Spalten anpassen"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Spalten anpassen"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "Verfügbare Sortiermodi:"
 
 msgid "Average"
 msgstr "Durchschnitt"
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr "Durchschnittswert"
 
@@ -1933,6 +1946,10 @@ msgstr "Zurück zu allen"
 msgid "Backend"
 msgstr "Backend"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "Hintergrund"
+
 msgid "Backward values"
 msgstr "Rückwärtsinterpolation"
 
@@ -1948,9 +1965,6 @@ msgstr "Balken"
 msgid "Bar Chart"
 msgstr "Balkendiagramm"
 
-msgid "Bar Chart (legacy)"
-msgstr "Balkendiagramm (Legacy)"
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
 "Balkendiagramme werden verwendet, um Metriken als eine Reihe von Balken "
@@ -1965,10 +1979,25 @@ msgstr "Balken-Ausrichtung"
 msgid "Base"
 msgstr "Basis"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Datenbankport"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Diagrammhöhe"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr "Kartenstil der Basisebene. Siehe Mapbox-Dokumentation: %s"
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Linienbreite"
+
 msgid "Based on a metric"
 msgstr "Auf Metrik basierend"
 
@@ -1992,9 +2021,6 @@ msgstr "Basisangaben"
 msgid "Batch editing %d filters:"
 msgstr "Stapelbearbeitung %d Filter:"
 
-msgid "Battery level over time"
-msgstr "Akkustand im Laufe der Zeit"
-
 msgid "Be careful."
 msgstr "Seien Sie vorsichtig."
 
@@ -2016,6 +2042,14 @@ msgstr "Große Zahl mit Trendlinie"
 msgid "Bins"
 msgstr "Klassen"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Farben der Serie"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Kantenbreite"
+
 msgid "Bottom"
 msgstr "Unten"
 
@@ -2041,10 +2075,10 @@ msgid ""
 "range. It won't narrow the data's extent."
 msgstr ""
 "Grenzen für die numerische X-Achse. Gilt nicht für zeitliche oder "
-"kategoriale Achsen. Wenn diese Option leer gelassen wird, werden die Grenzen "
-"dynamisch auf der Grundlage der Minimal-/Maximalwerte der Daten definiert. "
-"Beachten Sie, dass diese Funktion nur den Achsenbereich erweitert. Sie "
-"schränkt den Umfang der Daten nicht ein."
+"kategoriale Achsen. Wenn diese Option leer gelassen wird, werden die "
+"Grenzen dynamisch auf der Grundlage der Minimal-/Maximalwerte der Daten "
+"definiert. Beachten Sie, dass diese Funktion nur den Achsenbereich "
+"erweitert. Sie schränkt den Umfang der Daten nicht ein."
 
 msgid ""
 "Bounds for the Y-axis. When left empty, the bounds are dynamically "
@@ -2072,10 +2106,10 @@ msgid ""
 "feature will only expand the axis range. It won't narrow the data's "
 "extent."
 msgstr ""
-"Begrenzungen für die primäre Y-Achse. Bleibt sie leer, werden die Grenzen "
-"dynamisch auf der Grundlage der Minimal-/Maximalwerte der Daten definiert. "
-"Beachten Sie, dass diese Funktion nur den Achsenbereich erweitert. Sie "
-"schränkt den Umfang der Daten nicht ein."
+"Begrenzungen für die primäre Y-Achse. Bleibt sie leer, werden die Grenzen"
+" dynamisch auf der Grundlage der Minimal-/Maximalwerte der Daten "
+"definiert. Beachten Sie, dass diese Funktion nur den Achsenbereich "
+"erweitert. Sie schränkt den Umfang der Daten nicht ein."
 
 msgid ""
 "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n"
@@ -2085,12 +2119,12 @@ msgid ""
 "will only expand\n"
 "                the axis range. It won't narrow the data's extent."
 msgstr ""
-"Begrenzungen für die sekundäre Y-Achse. Funktioniert nur, wenn Unabhängige Y-"
-"Achse\n"
+"Begrenzungen für die sekundäre Y-Achse. Funktioniert nur, wenn "
+"Unabhängige Y-Achse\n"
 "                Begrenzungen aktiviert sind. Bleibt diese Option leer, "
 "werden die Grenzen dynamisch definiert\n"
-"                basierend auf dem Minimum/Maximum der Daten. Beachten Sie, "
-"dass diese Funktion nur den\n"
+"                basierend auf dem Minimum/Maximum der Daten. Beachten "
+"Sie, dass diese Funktion nur den\n"
 "                den Achsenbereich erweitert. Sie schränkt den Umfang der "
 "Daten nicht ein."
 
@@ -2107,8 +2141,8 @@ msgid ""
 msgstr ""
 "Untergliedert die Reihe nach der in diesem Steuerelement angegebenen "
 "Kategorie.\n"
-"      Dies kann den Betrachtern helfen zu verstehen, wie jede Kategorie den "
-"Gesamtwert beeinflusst."
+"      Dies kann den Betrachtern helfen zu verstehen, wie jede Kategorie "
+"den Gesamtwert beeinflusst."
 
 msgid "Bubble Chart"
 msgstr "Blasen-Diagramm"
@@ -2149,9 +2183,6 @@ msgstr "Bullet-Diagramm"
 msgid "Business"
 msgstr "Geschäftlich"
 
-msgid "Business Data Type"
-msgstr "Business Datentyp"
-
 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"
@@ -2221,8 +2252,9 @@ msgstr "CSS Vorlagen"
 msgid "CSS templates could not be deleted."
 msgstr "CSS-Vorlagen konnten nicht gelöscht werden."
 
-msgid "CSV Upload"
-msgstr "CSV-Hochladen"
+#, fuzzy
+msgid "CSV upload"
+msgstr "Hochladen von Dateien"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "CTAS & CVAS SCHEMA"
@@ -2237,8 +2269,9 @@ msgstr ""
 "sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat."
 " Versuchen Sie dann erneut, die Abfrage auszuführen."
 
-msgid "CTAS Schema"
-msgstr "CTAS-Schema"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "Angepasst"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2256,9 +2289,6 @@ msgstr "CVAS-Abfrage (Create View as Select) hat mehr als eine Anweisung."
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "CVAS-Abfrage (Create View as Select) ist keine SELECT-Anweisung."
 
-msgid "Cache Timeout"
-msgstr "Cache Timeout"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Cache-Timeout (Sekunden)"
 
@@ -2305,9 +2335,6 @@ msgstr ""
 msgid "Can select multiple values"
 msgstr "Mehrere Werte können ausgewählt werden"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "Überschneidungen zwischen Zeitreihen und Aufschlüsselungen nicht zulässig"
-
 msgid "Cancel"
 msgstr "Abbrechen"
 
@@ -2320,6 +2347,10 @@ msgstr "Zugriff auf die Abfrage nicht möglich"
 msgid "Cannot delete a database that has datasets attached"
 msgstr "Eine Datenbank mit verknüpften Datensätzen kann nicht gelöscht werden"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr "Anmeldeinformationen für den SSH-Tunnel müssen eindeutig sein"
 
@@ -2330,6 +2361,10 @@ msgstr "Filter konnte nicht geladen werden"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "Zeitzeichenfolge [%(human_readable)s] kann nicht analysiert werden"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Partitionsdiagramm"
+
 msgid "Catalog"
 msgstr "Schlagwort"
 
@@ -2406,12 +2441,13 @@ msgstr "Reihenfolge der Spalten ändern."
 msgid "Change order of rows."
 msgstr "Reihenfolge der Zeilen ändern."
 
-msgid "Changed By"
-msgstr "Bearbeitet von"
-
 msgid "Changed by"
 msgstr "Geändert durch"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "ändern"
+
 msgid "Changes saved."
 msgstr "Änderungen gespeichert."
 
@@ -2465,9 +2501,6 @@ msgstr "Diagramm"
 msgid "Chart %(id)s not found"
 msgstr "Diagramm %(id)s nicht gefunden"
 
-msgid "Chart Cache Timeout"
-msgstr "Diagramm Cache-Timeout"
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr "Diagrammdaten: %s"
@@ -2564,6 +2597,10 @@ msgstr "Diagrammparameter sind ungültig."
 msgid "Chart properties updated"
 msgstr "Diagrammeigenschaften aktualisiert"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "Diagramme"
+
 msgid "Chart title"
 msgstr "Diagrammtitel"
 
@@ -2613,6 +2650,10 @@ msgstr "Die Auswahl von [Punktradius] muss in [Gruppieren nach] vorhanden sein."
 msgid "Choose File"
 msgstr "Datei wählen"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Diagramm oder Dashboard auswählen, nicht beides"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Diagramm oder Dashboard auswählen, nicht beides"
 
@@ -2634,9 +2675,6 @@ msgstr "Wählen Sie ein Zahlenformat"
 msgid "Choose a source"
 msgstr "Wählen Sie eine Quelle"
 
-msgid "Choose a source and a target"
-msgstr "Wählen Sie eine Quelle und ein Ziel"
-
 msgid "Choose a target"
 msgstr "Wählen Sie ein Ziel"
 
@@ -2686,8 +2724,8 @@ msgid ""
 "Choose values that should be treated as null. Warning: Hive database "
 "supports only a single value"
 msgstr ""
-"Wählen Sie Werte, die als Null behandelt werden sollen. Warnung: Die Hive-"
-"Datenbank unterstützt nur einen einzigen Wert"
+"Wählen Sie Werte, die als Null behandelt werden sollen. Warnung: Die "
+"Hive-Datenbank unterstützt nur einen einzigen Wert"
 
 msgid ""
 "Choose whether a country should be shaded by the metric, or assigned a "
@@ -2717,11 +2755,6 @@ msgstr "Kreisradarform"
 msgid "Circular"
 msgstr "Kreisförmig"
 
-msgid "Classic chart that visualizes how metrics change over time."
-msgstr ""
-"Klassisches Diagramm, das visualisiert, wie sich Metriken im Laufe der "
-"Zeit ändern."
-
 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."
@@ -2745,7 +2778,10 @@ msgstr "Alle Daten leeren"
 msgid "Clear form"
 msgstr "Formular zurücksetzen"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 "Klicken Sie auf die Schaltfläche \"+Filter hinzufügen/bearbeiten\", um "
 "neue Dashboard-Filter zu erstellen"
@@ -2783,6 +2819,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr "Klicken Sie, um eine Kontur hinzuzufügen"
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "Klicken Sie, um eine Kontur hinzuzufügen"
+
 msgid "Click to cancel sorting"
 msgstr "Klicken, um die Sortierung abzubrechen"
 
@@ -2905,12 +2945,13 @@ msgstr ""
 msgid "Column Configuration"
 msgstr "Spaltenkonfiguration"
 
-msgid "Column Data Types"
-msgstr "Spaltendatentypen"
-
 msgid "Column Formatting"
 msgstr "Spaltenformatierung"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Polygon-Einstellungen"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2925,9 +2966,6 @@ msgstr "Spalte mit Längengraddaten"
 msgid "Column data types"
 msgstr "Spaltendatentypen"
 
-msgid "Column datatype"
-msgstr "Datentyp der Spalte"
-
 msgid "Column header tooltip"
 msgstr "Tooltip zur Spaltenüberschrift"
 
@@ -2954,20 +2992,23 @@ msgid ""
 "Column to use as the index of the dataframe. If None is given, Index "
 "label is used."
 msgstr ""
-"Spalte, die als Index des Datenrahmens verwendet werden sollen. Wenn keine "
-"angegeben wird, dann wird die Index-Beschriftung verwendet."
+"Spalte, die als Index des Datenrahmens verwendet werden sollen. Wenn "
+"keine angegeben wird, dann wird die Index-Beschriftung verwendet."
+
+#, fuzzy
+msgid "Column type"
+msgstr "Datentyp der Spalte"
 
-msgid "Columnar Upload"
+#, fuzzy
+msgid "Columnar upload"
 msgstr "Tabellen-Datei"
 
 msgid "Columns"
 msgstr "Spalten"
 
-msgid "Columns To Be Parsed as Dates"
-msgstr "Spalten, die als Datumsangaben interpretiert werden sollen"
-
-msgid "Columns To Read"
-msgstr "Zu lesende Spalten"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s Spalte(n)"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2980,6 +3021,10 @@ msgstr "Fehlende Spalten in Datenquelle: %(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr "Zwischensummenposition der Spalten"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "Wählen Sie Spalten, die als Datumswerte analysiert werden sollen"
+
 msgid "Columns to calculate distribution across."
 msgstr "Spalten, über die Verteilung berechnet werden soll."
 
@@ -2995,6 +3040,10 @@ msgstr "Spalten, nach denen in den Spalten gruppiert werden soll"
 msgid "Columns to group by on the rows"
 msgstr "Spalten, nach denen in den Zeilen gruppiert werden soll"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Zu lesende Spalten"
+
 msgid "Combine metrics"
 msgstr "Metriken kombinieren"
 
@@ -3042,22 +3091,6 @@ msgstr ""
 " Gruppen ändert. Jede Gruppe wird einer Zeile zugeordnet und die Änderung"
 " im Laufe der Zeit werden als Balkenlängen und -farben visualisiert."
 
-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."
-
-msgid ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-"Vergleicht die Zeitspanne, die verschiedene Aktivitäten in einer "
-"freigegebenen Zeitachsenansicht benötigen."
-
 msgid "Comparison"
 msgstr "Vergleich"
 
@@ -3117,6 +3150,9 @@ msgstr "Filterbereiche konfigurieren"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "Konfigurieren Sie die Grundeinstellungen der Anmerkungsebene."
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 "Konfigurieren Sie dieses Dashboard, um es in eine externe Webanwendung "
@@ -3125,12 +3161,19 @@ msgstr ""
 msgid "Configure your how you overlay is displayed here."
 msgstr "Konfigurieren Sie hier, wie Ihr Overlay angezeigt wird."
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Passwort anzeigen."
+
 msgid "Confirm overwrite"
 msgstr "Überschreiben bestätigen"
 
 msgid "Confirm save"
 msgstr "Speichern bestätigen"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "Verbinden"
 
@@ -3169,9 +3212,6 @@ msgstr ""
 "Verbindung fehlgeschlagen, bitte überprüfen Sie Ihre "
 "Verbindungseinstellungen."
 
-msgid "Connection looks good!"
-msgstr "Verbindung möglich!"
-
 msgid "Content format"
 msgstr "Inhaltsformat"
 
@@ -3208,23 +3248,21 @@ msgstr "In Zwischenablage kopiert!"
 msgid "Copy"
 msgstr "Kopieren"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "SELECT-Anweisung in die Zwischenablage kopieren"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "Kopieren und Einfügen von JSON-Anmeldeinformationen"
 
-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"
-
 msgid "Copy link"
 msgstr "Link kopieren"
 
-msgid "Copy message"
-msgstr "Meldung kopieren"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Kopie von %s"
@@ -3241,10 +3279,13 @@ msgstr "Abfrage-URL kopieren"
 msgid "Copy query link to your clipboard"
 msgstr "Abfragelink in die Zwischenablage kopieren"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr ""
-"Kopieren Sie die Kennung des Kontos, mit dem Sie eine Verbindung herstellen "
-"möchten."
+"Kopieren Sie die Kennung des Kontos, mit dem Sie eine Verbindung "
+"herstellen möchten."
 
 msgid "Copy the name of the HTTP Path of your cluster."
 msgstr "Kopieren Sie den Namen des HTTP-Pfads Ihres Clusters."
@@ -3260,6 +3301,10 @@ msgstr "In Zwischenablage kopieren"
 msgid "Copy to clipboard"
 msgstr "In die Zwischenablage kopieren"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "Innenradius"
+
 msgid "Correlation"
 msgstr "Korrelation"
 
@@ -3269,7 +3314,8 @@ msgstr "Kostenschätzung"
 #, python-format
 msgid "Could not connect to database: \"%(database)s\""
 msgstr ""
-"Es konnte keine Verbindung zur Datenbank \"%(database)s\" hergestellt werden."
+"Es konnte keine Verbindung zur Datenbank \"%(database)s\" hergestellt "
+"werden."
 
 msgid "Could not determine datasource type"
 msgstr "Datenquellentyp konnte nicht ermittelt werden"
@@ -3290,6 +3336,9 @@ msgstr "Datenbanktreiber konnte nicht geladen werden: {}"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr "Hostname konnte nicht aufgelöst werden: \"%(host)s\"."
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr "Anzahl"
 
@@ -3382,6 +3431,9 @@ msgstr "Erstelle eine Datenquelle und eine neue Registerkarte"
 msgid "Creator"
 msgstr "Ersteller*in"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr "Purpur"
 
@@ -3465,6 +3517,9 @@ msgstr "Benutzerdefinierte SQL-Felder dürfen keine Unterabfragen enthalten."
 msgid "Custom color palettes"
 msgstr "Benutzerdefinierte Farbpaletten"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 msgid "Custom date"
 msgstr "Benutzerdefiniertes Datum"
 
@@ -3488,8 +3543,8 @@ msgid ""
 "suffixes. Choose a symbol from dropdown or type your own."
 msgstr ""
 "Passen Sie Diagrammmetriken oder Spalten mit Währungssymbolen als Präfix "
-"oder Suffix an. Wählen Sie ein Symbol aus der Dropdown-Liste oder geben Sie "
-"Ihr eigenes ein."
+"oder Suffix an. Wählen Sie ein Symbol aus der Dropdown-Liste oder geben "
+"Sie Ihr eigenes ein."
 
 msgid "Customize columns"
 msgstr "Spalten anpassen"
@@ -3500,9 +3555,6 @@ msgstr "Passen Sie Datenquelle, Filter und Layout an."
 msgid "Cyclic dependency detected"
 msgstr "Zyklische Abhängigkeit erkannt"
 
-msgid "D3 Format"
-msgstr "D3-Format"
-
 msgid "D3 format"
 msgstr "D3 Format"
 
@@ -3564,7 +3616,22 @@ msgstr "Dashboard [%s] wurde gerade erstellt und Diagramm [%s] hinzugefügt"
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr "Dashboard [{}] wurde gerade erstellt und Diagramm [{}] wurde hinzugefügt"
 
-msgid "Dashboard could not be deleted."
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "Das Dashboard konnte nicht aktualisiert werden."
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "Das Dashboard konnte nicht aktualisiert werden."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "Das Dashboard konnte nicht aktualisiert werden."
+
+msgid "Dashboard could not be deleted."
 msgstr "Dashboard konnte nicht gelöscht werden."
 
 msgid "Dashboard could not be updated."
@@ -3576,6 +3643,10 @@ msgstr "Dashboard existiert nicht"
 msgid "Dashboard imported"
 msgstr "Dashboard importiert"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "Das Dashboard konnte nicht aktualisiert werden."
+
 msgid "Dashboard parameters are invalid."
 msgstr "Dashboard-Parameter sind ungültig."
 
@@ -3621,9 +3692,6 @@ msgstr "Gestrichelt"
 msgid "Data"
 msgstr "Daten"
 
-msgid "Data Imported"
-msgstr "Datensatz importiert"
-
 msgid "Data Table"
 msgstr "Datentabelle"
 
@@ -3653,6 +3721,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr "Daten für %s"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Datensatz importiert"
+
 msgid "Data preview"
 msgstr "Datenvorschau"
 
@@ -3811,17 +3883,6 @@ msgstr ""
 "Datensätze können aus Datenbanktabellen oder SQL-Abfragen erstellt "
 "werden. Wählen Sie links eine Datenbanktabelle aus oder "
 
-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 ""
-"Datensätze können eine zeitliche Hauptspalte (main_dttm_col) haben, aber "
-"auch sekundäre Zeitspalten. Wenn dieses Attribut \"true\" ist, wird beim "
-"Filtern der sekundären Spalten derselbe Filter auf die Haupt-Zeitspalte "
-"angewendet."
-
 msgid "Datasets could not be deleted."
 msgstr "Datensatz konnte nicht gelöscht werden."
 
@@ -3855,9 +3916,6 @@ msgstr "Datumsformat-Zeichenfolge"
 msgid "Date/Time"
 msgstr "Datum/Zeit"
 
-msgid "Datetime Format"
-msgstr "Zeit/Datum-Format"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3887,13 +3945,12 @@ msgstr "Deaktivieren"
 msgid "December"
 msgstr "Dezember"
 
-msgid "Decides which column to sort the base axis by."
-msgstr "Entscheidet, nach welcher Spalte die Basisachse sortiert werden soll."
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "Legt fest, nach welchem Maß die Basisachse sortiert werden soll."
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "Dezimalzeichen"
 
 msgid "Deck.gl - 3D Grid"
@@ -3935,19 +3992,17 @@ msgstr "Verringern"
 msgid "Default Catalog"
 msgstr "Standard-Katalog"
 
-msgid "Default Endpoint"
-msgstr "Standard-Endpunkt"
-
 msgid "Default Schema"
 msgstr "Standard-Schema"
 
 msgid "Default URL"
 msgstr "Datenbank URL"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
-"Standard-URL, auf die beim Zugriff von der Datensatz-Listenseite aus "
-"zugegriffen werden soll"
 
 msgid "Default Value"
 msgstr "Standardwert"
@@ -3968,9 +4023,6 @@ msgstr ""
 "Standardmäßig minimale Spaltenbreite in Pixel, tatsächliche Breite kann "
 "immer noch größer sein, wenn andere Spalten nicht viel Platz benötigen"
 
-msgid "Default value is required"
-msgstr "Standardwert ist erforderlich"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 "Standardwert muss festgelegt werden, wenn \"Filter hat Standardwert\" "
@@ -4018,10 +4070,10 @@ msgid ""
 " a given threshold range."
 msgstr ""
 "Definieren Sie Konturebenen. Isolinien stellen eine Sammlung von "
-"Liniensegmenten dar, die den Bereich oberhalb und unterhalb eines bestimmten "
-"Schwellenwertes abgrenzen. Isobänder stellen eine Sammlung von Polygonen "
-"dar, die den Bereich mit Werten in einem bestimmten Schwellenwertbereich "
-"ausfüllen."
+"Liniensegmenten dar, die den Bereich oberhalb und unterhalb eines "
+"bestimmten Schwellenwertes abgrenzen. Isobänder stellen eine Sammlung von"
+" Polygonen dar, die den Bereich mit Werten in einem bestimmten "
+"Schwellenwertbereich ausfüllen."
 
 msgid "Define delivery schedule, timezone, and frequency settings."
 msgstr ""
@@ -4040,9 +4092,6 @@ msgstr ""
 "Definiert eine Funktion ‚Rollierendes Fenster‘, die angewendet werden "
 "soll. Arbeitet zusammen mit dem Textfeld [Punkte]"
 
-msgid "Defines how each series is broken down"
-msgstr "Definiert, wie jede Reihe aufgeschlüsselt wird"
-
 msgid "Defines the grid size in pixels"
 msgstr "Gibt die Rastergröße in Pixel an"
 
@@ -4050,8 +4099,8 @@ msgid ""
 "Defines the grouping of entities. Each series is represented by a "
 "specific color in the chart."
 msgstr ""
-"Legt die Gruppierung der Einheiten fest. Jede Serie wird im Diagramm durch "
-"eine bestimmte Farbe dargestellt."
+"Legt die Gruppierung der Einheiten fest. Jede Serie wird im Diagramm "
+"durch eine bestimmte Farbe dargestellt."
 
 msgid ""
 "Defines the grouping of entities. Each series is shown as a specific "
@@ -4106,9 +4155,17 @@ msgstr "Abfrage löschen?"
 msgid "Delete Report?"
 msgstr "Bericht löschen?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "Löschen"
+
 msgid "Delete Template?"
 msgstr "Vorlage löschen?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Abfrage löschen?"
+
 msgid "Delete all Really?"
 msgstr "Wirklich alle löschen?"
 
@@ -4127,6 +4184,10 @@ msgstr "E-Mail-Bericht löschen"
 msgid "Delete query"
 msgstr "Abfrage löschen"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "Löschen"
+
 msgid "Delete template"
 msgstr "Vorlage löschen"
 
@@ -4135,6 +4196,10 @@ msgstr ""
 "Löschen Sie diesen Container und speichern Sie, um diese Nachricht zu "
 "entfernen."
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Abfrage löschen"
+
 msgid "Deleted"
 msgstr "Gelöscht"
 
@@ -4196,13 +4261,30 @@ msgstr[1] "%(num)d gespeicherte Abfragen gelöscht"
 msgid "Deleted %s"
 msgstr "Gelöscht %s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Gelöscht: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Gelöscht: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Gelöscht: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Gelöscht: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Gelöscht: %s"
 
+#, fuzzy
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. 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, "
@@ -4217,18 +4299,12 @@ msgstr "Trennzeichen"
 msgid "Delivery method"
 msgstr "Übermittlungsmethode"
 
-msgid "Demographics"
-msgstr "Demographische Daten"
-
 msgid "Density"
 msgstr "Dichte"
 
 msgid "Dependent on"
 msgstr "Abhängig von"
 
-msgid "Deprecated"
-msgstr "Veraltet"
-
 msgid "Description"
 msgstr "Beschreibung"
 
@@ -4287,10 +4363,10 @@ msgid ""
 "geographical data. Use dimensions to categorize, segment, and reveal the "
 "details in your data. Dimensions affect the level of detail in the view."
 msgstr ""
-"Dimensionen enthalten qualitative Werte wie Namen, Daten oder geografische "
-"Daten. Verwenden Sie Dimensionen, um Ihre Daten zu kategorisieren, zu "
-"segmentieren und die Details aufzuzeigen. Dimensionen beeinflussen den "
-"Detaillierungsgrad der Ansicht."
+"Dimensionen enthalten qualitative Werte wie Namen, Daten oder "
+"geografische Daten. Verwenden Sie Dimensionen, um Ihre Daten zu "
+"kategorisieren, zu segmentieren und die Details aufzuzeigen. Dimensionen "
+"beeinflussen den Detaillierungsgrad der Ansicht."
 
 msgid "Directed Force Layout"
 msgstr "Kraftbasierte Anordnung"
@@ -4325,21 +4401,26 @@ msgstr "Deaktiviert die Drill-to-Detail-Funktion für diese Datenbank."
 msgid "Discard"
 msgstr "Verwerfen"
 
-msgid "Display"
-msgstr "Anzeige"
-
 msgid "Display Name"
 msgstr "Anzeigename"
 
 msgid "Display all"
 msgstr "Alle anzeigen"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "Summe auf Spaltenebene anzeigen"
+
 msgid "Display column level subtotal"
 msgstr "Zwischensumme auf Spaltenebene anzeigen"
 
 msgid "Display column level total"
 msgstr "Summe auf Spaltenebene anzeigen"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Summe auf Spaltenebene anzeigen"
+
 msgid "Display configuration"
 msgstr "Anzeige-Konfiguration"
 
@@ -4365,8 +4446,9 @@ msgstr "Zwischensumme auf Zeilenebene anzeigen"
 msgid "Display row level total"
 msgstr "Summe auf Zeilenebene anzeigen"
 
-msgid "Display settings"
-msgstr "Darstellungs-Einstellungen"
+#, fuzzy
+msgid "Display type icon"
+msgstr "Symbol für booleschen Typ"
 
 msgid ""
 "Displays connections between entities in a graph structure. Useful for "
@@ -4387,9 +4469,6 @@ msgstr "Verteilen über"
 msgid "Distribution"
 msgstr "Verteilung"
 
-msgid "Distribution - Bar Chart"
-msgstr "Verteilung - Balkendiagramm"
-
 msgid "Divider"
 msgstr "Trenner"
 
@@ -4417,9 +4496,18 @@ msgstr "Als Bild herunterladen"
 msgid "Download as image"
 msgstr "Als Bild herunterladen"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "Als CSV herunterladen"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "Entwurf"
 
@@ -4523,6 +4611,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "Datensatz duplizieren"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Duplizieren"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "Doppelte Spaltenname(n): %(columns)s"
+
 msgid "Duplicate tab"
 msgstr "Registerkarte duplizieren"
 
@@ -4539,24 +4635,6 @@ msgstr ""
 "Cache. Beachten Sie, dass standardmäßig das globale Timeout verwendet "
 "wird, wenn kein Wert definiert wurde."
 
-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."
-
-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."
-
 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 "
@@ -4567,16 +4645,6 @@ msgstr ""
 "standardmäßig das Timeout des Datensatzes verwendet wird, wenn kein Wert "
 "definiert wurde."
 
-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."
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4601,6 +4669,10 @@ msgstr "Dauer in ms (1,40008 => 1ms 400μs 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "Dauer in ms (100,40008 => 100ms 400μs 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "Dauer in ms (66000 => 1m 6s)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "Dauer in ms (66000 => 1m 6s)"
 
@@ -4622,10 +4694,6 @@ msgstr "ENDE (EXKLUSIV)"
 msgid "ERROR"
 msgstr "FEHLER"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "FEHLER: %s"
-
 msgid "Edge length"
 msgstr "Kantenlänge"
 
@@ -4650,45 +4718,38 @@ msgstr "CSS bearbeiten"
 msgid "Edit CSS template properties"
 msgstr "CSS Vorlagen"
 
-msgid "Edit Chart"
-msgstr "Diagramm bearbeiten"
-
 msgid "Edit Chart Properties"
 msgstr "Diagrammeigenschaften bearbeiten"
 
-msgid "Edit Column"
-msgstr "Spalte bearbeiten"
-
 msgid "Edit Dashboard"
 msgstr "Dashboard bearbeiten"
 
-msgid "Edit Database"
-msgstr "Datenbank bearbeiten"
-
 msgid "Edit Dataset "
 msgstr "Datensatz bearbeiten "
 
 msgid "Edit Log"
 msgstr "Protokoll bearbeiten"
 
-msgid "Edit Metric"
-msgstr "Metrik bearbeiten"
-
 msgid "Edit Plugin"
 msgstr "Plugin bearbeiten"
 
 msgid "Edit Report"
 msgstr "Bericht bearbeiten"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "Bearbeitungsmodus"
+
 msgid "Edit Rule"
 msgstr "Regel bearbeiten"
 
-msgid "Edit Table"
-msgstr "Tabelle bearbeiten"
-
 msgid "Edit Tag"
 msgstr "Schlagwort bearbeiten"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Abfrage bearbeiten"
+
 msgid "Edit annotation"
 msgstr "Anmerkung bearbeiten"
 
@@ -4725,6 +4786,10 @@ msgstr "Eigenschaften bearbeiten"
 msgid "Edit query"
 msgstr "Abfrage bearbeiten"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "Bearbeitungsmodus"
+
 msgid "Edit template"
 msgstr "Vorlage bearbeiten"
 
@@ -4737,6 +4802,10 @@ msgstr "Dashboard bearbeiten"
 msgid "Edit time range"
 msgstr "Zeitraum bearbeiten"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Abfrage bearbeiten"
+
 msgid "Edited"
 msgstr "Bearbeitet"
 
@@ -4766,6 +4835,14 @@ msgstr "Entweder der Benutzer*innenname oder das Kennwort ist falsch."
 msgid "Elevation"
 msgstr "Höhendaten"
 
+#, fuzzy
+msgid "Email"
+msgstr "Details"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "Wert ist erforderlich"
+
 msgid "Email reports active"
 msgstr "E-Mail-Bericht aktiv"
 
@@ -4781,6 +4858,10 @@ msgstr "Code einbetten"
 msgid "Embed dashboard"
 msgstr "Dashboard einbetten"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "Dashboard konnte nicht gelöscht werden."
+
 msgid "Embedding deactivated."
 msgstr "Einbetten deaktiviert."
 
@@ -4790,9 +4871,6 @@ msgstr "Filterereignisse ausgeben"
 msgid "Emphasis"
 msgstr "Hervorhebung"
 
-msgid "Employment and education"
-msgstr "Beschäftigung und Bildung"
-
 msgid "Empty circle"
 msgstr "Leerer Kreis"
 
@@ -4816,9 +4894,6 @@ msgstr ""
 "Aktivieren Sie \"Datei-Uploads in Datenbank zulassen\" in den "
 "Einstellungen einer beliebigen Datenbank"
 
-msgid "Enable Filter Select"
-msgstr "Filterauswahl aktivieren"
-
 msgid "Enable cross-filtering"
 msgstr "Kreuzfilterung aktivieren"
 
@@ -4924,12 +4999,26 @@ msgstr "Name des Berichts"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "Geben Sie die erforderlichen %(dbModelName)s Anmeldeinformationen ein."
 
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Name des Alarms"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "Name des Alarms"
+
+msgid "Enter the user's username"
+msgstr ""
+
 msgid "Entity"
 msgstr "Element"
 
-msgid "Entity ID"
-msgstr "Entitäts-ID"
-
 msgid "Equal Date Sizes"
 msgstr "Gleiche Datumsgrößen"
 
@@ -4942,6 +5031,14 @@ msgstr "Fehler"
 msgid "Error Fetching Tagged Objects"
 msgstr "Fehler beim Abrufen von markierten Objekten"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Fehler beim Abrufen von Daten: %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Fehler beim Speichern des Datensatzes"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr "Fehler im Jinja-Ausdruck in HAVING-Klausel: %(msg)s"
@@ -4966,6 +5063,10 @@ msgstr ""
 msgid "Error message"
 msgstr "Fehlermeldung"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "Fehler dunkel"
+
 msgid "Error reading CSV file"
 msgstr "Fehler beim Lesen der CSV-Datei"
 
@@ -4978,6 +5079,22 @@ msgstr "Fehler beim Lesen einer Excel-Datei"
 msgid "Error saving dataset"
 msgstr "Fehler beim Speichern des Datensatzes"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Fehler beim Speichern des Datensatzes"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Fehler beim Abrufen von Diagrammen"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Fehler beim Abrufen von Diagrammen"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Fehler beim Abrufen von Diagrammen"
+
 msgid "Error while fetching charts"
 msgstr "Fehler beim Abrufen von Diagrammen"
 
@@ -4985,10 +5102,30 @@ msgstr "Fehler beim Abrufen von Diagrammen"
 msgid "Error while fetching data: %s"
 msgstr "Fehler beim Abrufen von Daten: %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Fehler beim Abrufen von Diagrammen"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Fehler beim Abrufen von Diagrammen"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Fehler beim Abrufen von Diagrammen"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "Fehler bei Anzeige der virtuellen Datensatzabfrage: %(msg)s"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Fehler beim Abrufen von Diagrammen"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Fehler beim Abrufen von Diagrammen"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "Fehler: %(error)s"
@@ -5012,15 +5149,6 @@ msgstr "Schätzen der Kosten vor dem Ausführen einer Abfrage"
 msgid "Event"
 msgstr "Ereignis"
 
-msgid "Event Flow"
-msgstr "Ereignisablauf"
-
-msgid "Event Names"
-msgstr "Ereignisnamen"
-
-msgid "Event definition"
-msgstr "Ereignisdefinition"
-
 msgid "Event flow"
 msgstr "Ereignisablauf"
 
@@ -5042,12 +5170,13 @@ msgstr "Beispiel"
 msgid "Examples"
 msgstr "Beispiele"
 
-msgid "Excel Upload"
-msgstr "Excel-Upload"
-
 msgid "Excel file format cannot be determined"
 msgstr "Excel-Dateiformat kann nicht bestimmt werden"
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "Excel-Upload"
+
 msgid "Exclude selected values"
 msgstr "Auswahlwerte ausschließen"
 
@@ -5138,12 +5267,6 @@ msgstr "In PDF exportieren"
 msgid "Export to Pivoted .CSV"
 msgstr "Export in das pivotierte .CSV"
 
-msgid "Export to YAML"
-msgstr "Exportieren als YAML"
-
-msgid "Export to YAML?"
-msgstr "Als YAML exportieren?"
-
 msgid "Export to full .CSV"
 msgstr "Export in vollständiges . .CSV"
 
@@ -5162,11 +5285,9 @@ msgstr "Datenbank in SQL Lab verfügbar machen"
 msgid "Expose in SQL Lab"
 msgstr "Verfügbarmachen in SQL Lab"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Diese Datenbank in SQL Lab verfügbar machen"
-
-msgid "Expression"
-msgstr "Ausdruck"
+#, fuzzy
+msgid "Extent"
+msgstr "Kürzlich"
 
 msgid "Extra"
 msgstr "Extra"
@@ -5191,10 +5312,6 @@ msgstr ""
 "Platform Team\", \"details\": \"This table is the source of truth.\" }, "
 "\"warning_markdown\": \"This is a warning.\" } `."
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "Zusätzliches Feld kann nicht durch JSON decodiert werden. %(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "Zusätzliche Parameter für die Verwendung in Jinja-Vorlagenabfragen"
 
@@ -5214,6 +5331,10 @@ msgstr "extrudiert"
 msgid "FEB"
 msgstr "FEB"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Datensatz bearbeiten"
+
 msgid "FRI"
 msgstr "FR"
 
@@ -5223,16 +5344,15 @@ msgstr "Faktor"
 msgid "Factor to multiply the metric by"
 msgstr "Faktor, mit dem die Metrik multipliziert wird"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "Fehlgeschlagen"
 
 msgid "Failed at retrieving results"
 msgstr "Fehler beim Abrufen der Ergebnisse"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "Fehler beim Beenden der Abfrage. %s"
-
 msgid "Failed to create report"
 msgstr "Bericht konnte nicht erstellt werden"
 
@@ -5261,6 +5381,10 @@ msgstr "Cross-Filter-Scoping konnte nicht gespeichert werden"
 msgid "Failed to start remote query on a worker."
 msgstr "Remoteabfrage für einen Worker konnte nicht gestartet werden."
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "Fehler beim Beenden der Abfrage. %s"
+
 msgid "Failed to tag items"
 msgstr "Artikel konnten nicht markiert werden"
 
@@ -5283,9 +5407,6 @@ msgstr "Ausgewählte Farbpaletten"
 msgid "February"
 msgstr "Februar"
 
-msgid "Fetch Values Predicate"
-msgstr "Werte-Prädikate abrufen"
-
 msgid "Fetch data preview"
 msgstr "Datenvorschau abrufen"
 
@@ -5310,14 +5431,12 @@ msgstr "Dieses Feld ist erforderlich"
 msgid "File"
 msgstr "Datei"
 
-msgid "File Settings"
-msgstr "Datei-Einstellungen"
-
 msgid "File extension is not allowed."
 msgstr "Die Dateierweiterung ist nicht zulässig."
 
-msgid "File size exceeds the maximum allowed size."
-msgstr "Die Dateigröße überschreitet die maximal zulässige Größe."
+#, fuzzy
+msgid "File settings"
+msgstr "Datei-Einstellungen"
 
 msgid "File upload"
 msgstr "Hochladen von Dateien"
@@ -5386,9 +5505,6 @@ msgstr "Filterwertliste darf nicht leer sein"
 msgid "Filter your charts"
 msgstr "Filtern Sie Ihre Diagramme"
 
-msgid "Filterable"
-msgstr "Filterbar"
-
 msgid "Filters"
 msgstr "Filter"
 
@@ -5401,6 +5517,16 @@ msgstr "Nach Metriken filtern"
 msgid "Filters for comparison must have a value"
 msgstr "Filter für Vergleiche müssen einen Wert haben"
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "\"row_limit\" muss größer oder gleich 0 sein"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "Filter außerhalb des Gültigkeitsbereichs (%d)"
@@ -5434,6 +5560,14 @@ msgstr "Fertigstellen"
 msgid "First"
 msgstr "Erste"
 
+#, fuzzy
+msgid "First name"
+msgstr "Diagrammname"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "Name ist erforderlich"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5525,6 +5659,10 @@ msgstr "Datumsformat erzwingen"
 msgid "Force refresh"
 msgstr "Aktualisierung erzwingen"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Aktualisierung der Schemaliste erzwingen"
+
 msgid "Force refresh catalog list"
 msgstr "Aktualisierung der Katalogliste erzwingen"
 
@@ -5561,9 +5699,8 @@ msgid ""
 "represents a new line. ECharts compatibility:\n"
 "{a} (series), {b} (name), {c} (value), {d} (percentage)"
 msgstr ""
-"Datenbeschriftungen formatieren. Verwenden Sie Variablen: {Name}, {Wert}, "
-"{Prozent}. \\n"
-" stellt eine neue Zeile dar. ECharts-Kompatibilität:\n"
+"Datenbeschriftungen formatieren. Verwenden Sie Variablen: {Name}, {Wert},"
+" {Prozent}. \\n stellt eine neue Zeile dar. ECharts-Kompatibilität:\n"
 "{a} (Serie), {b} (Name), {c} (Wert), {d} (Prozentsatz)"
 
 msgid "Formatted CSV attached in email"
@@ -5647,6 +5784,10 @@ msgstr "GeoJson-Einstellungen"
 msgid "Geohash"
 msgstr "Geo Hashing"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Leere Spalte"
+
 msgid "Get the last date by the date unit."
 msgstr "Das letzte Datum anhand der Datumseinheit anfordern."
 
@@ -5708,9 +5849,6 @@ msgstr "Gruppenschlüssel"
 msgid "Group by"
 msgstr "Gruppieren nach"
 
-msgid "Groupable"
-msgstr "Gruppierbar"
-
 msgid "Guest user cannot modify chart payload"
 msgstr "Gastbenutzer kann keine Daten in den Diagrammen ändern"
 
@@ -5726,41 +5864,28 @@ msgstr "Handlebars-Vorlage"
 msgid "Hard value bounds applied for color coding."
 msgstr "Für die Farbkodierung werden harte Wertgrenzen verwendet."
 
-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."
-
 msgid "Has created by"
 msgstr "Hat „Erstellt von“"
 
 msgid "Header"
 msgstr "Header"
 
-msgid "Header Row"
-msgstr "Kopfzeile"
-
 msgid "Header row"
 msgstr "Kopfzeile"
 
 msgid "Heatmap"
 msgstr "Heatmap"
 
-msgid "Heatmap (legacy)"
-msgstr "Heatmap (Legacy)"
-
-msgid "Heatmap Options"
-msgstr "Heatmap-Optionen"
-
 msgid "Height"
 msgstr "Höhe"
 
 msgid "Height of the sparkline"
 msgstr "Höhe der Sparkline"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Zeitspalten"
+
 msgid "Hide Line"
 msgstr "Linie ausblenden"
 
@@ -5785,9 +5910,6 @@ msgstr "Hierarchie"
 msgid "Histogram"
 msgstr "Histogramm"
 
-msgid "Histogram (legacy)"
-msgstr "Histogramm (Legacy)"
-
 msgid "Home"
 msgstr "Startseite"
 
@@ -5870,28 +5992,16 @@ msgstr ""
 "die Identität der aktuell angemeldeten Benutzer*in jedoch über die "
 "hive.server2.proxy.user-Eigenschaft berücksichtigt."
 
-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.<br/>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.<br/>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."
-
-msgid "If Table Already Exists"
-msgstr "Wenn Tabelle bereits vorhanden ist"
-
 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"
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
@@ -5899,10 +6009,9 @@ msgstr ""
 "Wenn dieses Steuerelement aktiviert ist, werden die Ergebnisse/Werte "
 "absteigend sortiert, andernfalls werden sie aufsteigend sortiert."
 
-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."
+#, fuzzy
+msgid "If table already exists"
+msgstr "Beschriftung existiert bereits"
 
 msgid "Ignore cache when generating report"
 msgstr "Cache beim Erstellen von Berichten ignorieren"
@@ -5924,9 +6033,6 @@ msgstr ""
 "Identität von angemeldeter Benutzer*in annehmen (Presto, Trino, Drill & "
 "Hive)"
 
-msgid "Impersonate the logged on user"
-msgstr "Identität von angemeldeter Benutzer*in annehmen"
-
 msgid "Import"
 msgstr "Importieren"
 
@@ -5937,9 +6043,6 @@ msgstr "Importiere %s"
 msgid "Import Dashboard(s)"
 msgstr "Dashboards importieren"
 
-msgid "Import a table definition"
-msgstr "Tabellendefinition importieren"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "Fehler beim Importieren des Diagramms aus unbekanntem Grund"
 
@@ -5972,17 +6075,14 @@ msgstr ""
 "Der Import der gespeicherten Abfrage ist aus einem unbekannten Grund "
 "fehlgeschlagen."
 
-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."
-
 msgid "In"
 msgstr "in"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "Zeitreihen einschließen"
 
@@ -6005,15 +6105,17 @@ msgstr "Erhöhung"
 msgid "Index"
 msgstr "Index"
 
-msgid "Index Column"
-msgstr "Index Spalte"
-
-msgid "Index Label"
-msgstr "Index Beschriftung"
+#, fuzzy
+msgid "Index column"
+msgstr "Linien-Spalte"
 
 msgid "Index label"
 msgstr "Index Beschriftung"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Schlüssel und Indizes anzeigen (%s)"
+
 msgid "Info"
 msgstr "Info"
 
@@ -6032,6 +6134,13 @@ msgstr "Benutzerdefinierte Breite in Pixel eingeben"
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr "Das Eingabefeld unterstützt benutzerdefinierte Drehung. z.B. 30 für 30°"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "Ebene verstecken"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "Intensität"
 
@@ -6064,9 +6173,6 @@ msgstr "Spalte \"Intervallstart\""
 msgid "Intervals"
 msgstr "Intervalle"
 
-msgid "Intesity"
-msgstr "Intensität"
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -6115,6 +6221,9 @@ msgstr "Ungültiger Währungscode in gespeicherten Metriken"
 msgid "Invalid date/timestamp format"
 msgstr "Ungültiges Datums-/Zeitstempelformat"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "Ungültiger Filtervorgangstyp: %(op)s"
@@ -6178,6 +6287,10 @@ msgstr "Auswahl umkehren"
 msgid "Invert current page"
 msgstr "Aktuelle Seite umkehren"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Alarm ist aktiv"
+
 msgid "Is certified"
 msgstr "Zertifiziert"
 
@@ -6356,12 +6469,6 @@ msgstr "Groß"
 msgid "Last"
 msgstr "Letzte"
 
-msgid "Last Changed"
-msgstr "Zuletzt geändert"
-
-msgid "Last Modified"
-msgstr "Zuletzt geändert"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "Letzte Aktualisierung %s"
@@ -6370,6 +6477,10 @@ msgstr "Letzte Aktualisierung %s"
 msgid "Last Updated %s by %s"
 msgstr "Zuletzt aktualisiert %s von %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Zielwert"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr "Letzter verfügbarer Wert auf %s"
@@ -6377,12 +6488,24 @@ msgstr "Letzter verfügbarer Wert auf %s"
 msgid "Last day"
 msgstr "Letzter Tag"
 
+#, fuzzy
+msgid "Last login"
+msgstr "Letzter Monat"
+
 msgid "Last modified"
 msgstr "Zuletzt geändert"
 
 msgid "Last month"
 msgstr "Letzter Monat"
 
+#, fuzzy
+msgid "Last name"
+msgstr "Datensatzname"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Name ist erforderlich"
+
 msgid "Last quarter"
 msgstr "Letztes Quartal"
 
@@ -6395,15 +6518,42 @@ msgstr "Letzte Woche"
 msgid "Last year"
 msgstr "Letztes Jahr"
 
+#, fuzzy
+msgid "Lat"
+msgstr "flach"
+
 msgid "Latitude"
 msgstr "Breitengrad"
 
 msgid "Latitude of default viewport"
 msgstr "Breitengrad des Standardansichtsfensters"
 
+#, fuzzy
+msgid "Layer"
+msgstr "Jahr"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Name des Alarms"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "Ebenen-Konfiguration"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Diagrammtitel"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Filter Typ"
+
+#, fuzzy
+msgid "Layers"
+msgstr "Alarme"
+
 msgid "Layout"
 msgstr "Layout"
 
@@ -6416,13 +6566,6 @@ msgstr "Layouttyp des Diagramms"
 msgid "Layout type of tree"
 msgstr "Layouttyp des Baums"
 
-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."
-
 msgid "Least recently modified"
 msgstr "Zuletzt geändert"
 
@@ -6486,14 +6629,6 @@ msgstr "Like (Groß-/Kleinschreibung wird nicht beachtet)"
 msgid "Limit type"
 msgstr "Typ einschränken"
 
-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."
-
 msgid "Limits the number of cells that get retrieved."
 msgstr "Begrenzt die Anzahl der Zeilen, die angezeigt werden."
 
@@ -6518,8 +6653,8 @@ 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 ""
-"Begrenzt die Anzahl der Zeilen, die in der Abfrage, die die Quelle der für "
-"dieses Diagramm verwendeten Daten ist, berechnet werden."
+"Begrenzt die Anzahl der Zeilen, die in der Abfrage, die die Quelle der "
+"für dieses Diagramm verwendeten Daten ist, berechnet werden."
 
 msgid "Line"
 msgstr "Linie"
@@ -6542,6 +6677,9 @@ msgstr ""
 " durch gerade Liniensegmente verbunden sind. Es ist ein grundlegender "
 "Diagrammtyp, der in vielen Bereichen üblich ist."
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "Linieninterpolation gemäß d3.js"
 
@@ -6569,9 +6707,16 @@ msgstr "Zeilenkodierung"
 msgid "Link Copied!"
 msgstr "Link kopiert!"
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr "Eindeutige Werte auflisten"
 
+#, fuzzy
+msgid "List Users"
+msgstr "Zahl aufteilen"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr ""
 "Liste der zusätzlichen Spalten, die in JavaScript-Funktionen zur "
@@ -6640,6 +6785,10 @@ msgstr "Logarithmische y-Achse"
 msgid "Login"
 msgstr "Anmelden"
 
+#, fuzzy
+msgid "Login count"
+msgstr "Anzahl"
+
 msgid "Login with"
 msgstr "Anmelden mit"
 
@@ -6649,6 +6798,10 @@ msgstr "Abmelden"
 msgid "Logs"
 msgstr "Protokolle"
 
+#, fuzzy
+msgid "Lon"
+msgstr "an"
+
 msgid "Long dashed"
 msgstr "Lange gestrichelt"
 
@@ -6688,9 +6841,6 @@ msgstr "MO"
 msgid "Main"
 msgstr "Hauptseite"
 
-msgid "Main Datetime Column"
-msgstr "Haupt-Datums/Zeit-Spalte"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6726,6 +6876,10 @@ msgstr "Min/Max-Werte für die y-Achse manuell festlegen."
 msgid "Map"
 msgstr "Karte"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Heatmap-Optionen"
+
 msgid "Map Style"
 msgstr "Karten Stil"
 
@@ -6768,14 +6922,17 @@ msgstr "Marker"
 msgid "Markup type"
 msgstr "Markup-Typ"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "Max"
 
 msgid "Max Bubble Size"
 msgstr "Maximale Blasengröße"
 
-msgid "Max Events"
-msgstr "Maximale Anzahl von Ereignissen"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "Maximum"
@@ -6786,6 +6943,9 @@ msgstr "Maximale Schriftgrösse"
 msgid "Maximum Radius"
 msgstr "Maximaler Radius"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6828,6 +6988,18 @@ msgstr "Medianwerte"
 msgid "Medium"
 msgstr "Mittel"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr "Auslöser von Menüaktionen"
 
@@ -6929,14 +7101,6 @@ msgstr ""
 "Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls "
 "zutreffend)."
 
-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)."
-
 msgid "Metrics"
 msgstr "Metriken"
 
@@ -6976,8 +7140,8 @@ msgstr "Minimale Schriftgröße"
 msgid "Minimum Radius"
 msgstr "Minimaler Radius"
 
-msgid "Minimum leaf node event count"
-msgstr "Minimale Anzahl der Blattknotenereignisse"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
 "Minimum radius size of the circle, in pixels. As the zoom level changes, "
@@ -6992,6 +7156,10 @@ msgstr "Mindestschwelle in Prozentpunkten für die Anzeige von Beschriftungen."
 msgid "Minimum value"
 msgstr "Minimalwert"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "‚Von Datum' kann nicht größer als ‚Bis-Datum' sein"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "Mindestwert für die Beschriftung, die im Diagramm angezeigt werden soll."
 
@@ -7014,6 +7182,9 @@ msgstr "Minuten %s"
 msgid "Minutes value"
 msgstr "Wert in Minuten"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr "Fehlende URL-Parameter"
 
@@ -7030,6 +7201,12 @@ msgstr "Geändert"
 msgid "Modified %s"
 msgstr "Geändert %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 msgid "Modified by"
 msgstr "Geändert durch"
 
@@ -7037,10 +7214,6 @@ msgstr "Geändert durch"
 msgid "Modified by: %s"
 msgstr "Geändert von: %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "Geänderte Spalten: %s"
-
 msgid "Monday"
 msgstr "Montag"
 
@@ -7107,9 +7280,6 @@ msgstr ""
 "Muss eine Spalte [Gruppieren nach] haben, um 'count' als [Label] zu "
 "verwenden"
 
-msgid "Must have at least one numeric column specified"
-msgstr "Mindestens eine numerische Spalte erforderlich"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr "Anmeldeinformationen für den SSH-Tunnel sind verpflichtend"
 
@@ -7134,9 +7304,6 @@ msgstr "NICHT GRUPPIERT NACH"
 msgid "NOV"
 msgstr "NOV"
 
-msgid "NOW"
-msgstr "JETZT"
-
 msgid "NUMERIC"
 msgstr "NUMERISCH"
 
@@ -7161,9 +7328,6 @@ msgstr "Name der ID-Spalte"
 msgid "Name of the source nodes"
 msgstr "Name der Quellknoten"
 
-msgid "Name of the table that exists in the source database"
-msgstr "Name der Tabelle in der Quell-Datenbank"
-
 msgid "Name of the target nodes"
 msgstr "Name der Zielknoten"
 
@@ -7179,19 +7343,23 @@ msgstr "Benötigen Sie Hilfe? Erfahren Sie, wie Sie Ihre Datenbank verbinden"
 msgid "Need help? Learn more about"
 msgstr "Benötigen Sie Hilfe? Erfahren Sie mehr über"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Netzwerkfehler"
+
 msgid "Network error"
 msgstr "Netzwerkfehler"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Beim Erstellen der Datenquelle ist ein Fehler aufgetreten"
+
 msgid "Network error."
 msgstr "Netzwerk-Fehler."
 
 msgid "New chart"
 msgstr "Neues Diagramm"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "Neue Spalten hinzugefügt: %s"
-
 msgid "New dataset"
 msgstr "Neuer Datensatz"
 
@@ -7238,6 +7406,10 @@ msgstr "Noch keine Regeln"
 msgid "No Tags created"
 msgstr "Keine Schlagwörter erstellt"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Aktion rückgängig machen"
+
 msgid "No annotation layers"
 msgstr "Keine Anmerkungs-Layer"
 
@@ -7256,9 +7428,6 @@ msgstr "Keine Filter verfügbar."
 msgid "No charts"
 msgstr "Keine Diagramme"
 
-msgid "No charts yet"
-msgstr "Noch keine Diagramme"
-
 msgid "No columns found"
 msgstr "Keine Spalten gefunden"
 
@@ -7274,9 +7443,6 @@ msgstr "Keine kompatiblen Datensätze gefunden"
 msgid "No compatible schema found"
 msgstr "Kein kompatibles Schema gefunden"
 
-msgid "No dashboards yet"
-msgstr "Noch keine Dashboards"
-
 msgid "No data"
 msgstr "Keine Daten"
 
@@ -7288,6 +7454,10 @@ msgstr ""
 msgid "No data in file"
 msgstr "Keine Daten in Datei"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "Es sind keine Datenbanken verfügbar"
+
 msgid "No databases match your search"
 msgstr "Keine Datenbanken stimmen mit Ihrer Suche überein"
 
@@ -7318,12 +7488,6 @@ msgstr "Derzeit sind keine globalen Filter gesetzt"
 msgid "No matching records found"
 msgstr "Keine passenden Einträge gefunden"
 
-msgid "No of Bins"
-msgstr "Anzahl der Bis"
-
-msgid "No recents yet"
-msgstr "Noch keine aktuellen"
-
 msgid "No records found"
 msgstr "Keine Datensätze gefunden"
 
@@ -7349,6 +7513,10 @@ msgstr ""
 " dass alle Filter ordnungsgemäß konfiguriert sind und die Datenquelle "
 "Daten für den ausgewählten Zeitraum enthält."
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Noch keine Regeln"
+
 msgid "No rows were returned for this dataset"
 msgstr "Für diesen Datensatz wurden keine Zeilen zurückgegeben"
 
@@ -7361,9 +7529,6 @@ msgstr "Keine gespeicherten Ausdrücke gefunden"
 msgid "No saved metrics found"
 msgstr "Keine gespeicherten Metriken gefunden"
 
-msgid "No saved queries yet"
-msgstr "Noch keine gespeicherten Abfragen"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 "Keine gespeicherten Ergebnisse gefunden. Sie müssen Ihre Abfrage erneut "
@@ -7383,6 +7548,10 @@ msgstr "Keine Zeitspalten gefunden"
 msgid "No time columns"
 msgstr "Nicht-Zeitspalten"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Noch keine Regeln"
+
 msgid "No validator found (configured for the engine)"
 msgstr "Kein Validator gefunden (für das Modul konfiguriert)"
 
@@ -7391,8 +7560,8 @@ msgid ""
 "No validator named %(validator_name)s found (configured for the "
 "%(engine_spec)s engine)"
 msgstr ""
-"Kein Validator mit dem Namen %(validator_name)s gefunden (konfiguriert für "
-"die Engine %(engine_spec)s )"
+"Kein Validator mit dem Namen %(validator_name)s gefunden (konfiguriert "
+"für die Engine %(engine_spec)s )"
 
 msgid "Node label position"
 msgstr "Position der Knotenbeschriftung"
@@ -7438,8 +7607,8 @@ msgstr "Zu keinem Dashboard hinzugefügt"
 
 msgid "Not all required fields are complete. Please provide the following:"
 msgstr ""
-"Es sind nicht alle erforderlichen Felder ausgefüllt. Bitte machen Sie die "
-"folgenden Angaben:"
+"Es sind nicht alle erforderlichen Felder ausgefüllt. Bitte machen Sie die"
+" folgenden Angaben:"
 
 msgid "Not available"
 msgstr "Nicht verfügbar"
@@ -7462,6 +7631,10 @@ msgstr "Nicht ausgelöst"
 msgid "Not up to date"
 msgstr "Nicht aktuell"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "Nichts ausgelöst"
+
 msgid "Nothing triggered"
 msgstr "Nichts ausgelöst"
 
@@ -7526,8 +7699,8 @@ msgid ""
 "Number of periods to compare against. You can use negative numbers to "
 "compare from the beginning of the time range."
 msgstr ""
-"Anzahl der Perioden, mit denen verglichen werden soll. Sie können negative "
-"Zahlen verwenden, um vom Beginn des Zeitraums an zu vergleichen."
+"Anzahl der Perioden, mit denen verglichen werden soll. Sie können "
+"negative Zahlen verwenden, um vom Beginn des Zeitraums an zu vergleichen."
 
 msgid "Number of periods to ratio against"
 msgstr "Anzahl ins Verhältnis zu setzender Perioden"
@@ -7574,9 +7747,6 @@ msgstr "Oktober"
 msgid "Offline"
 msgstr "Offline"
 
-msgid "Offset"
-msgstr "Offset"
-
 msgid "On Grace"
 msgstr "Kulanz"
 
@@ -7606,6 +7776,10 @@ msgstr "Ein oder mehrere Steuerelemente, um zu Spalten zu pivotieren"
 msgid "One or many metrics to display"
 msgstr "Eine oder mehrere anzuzeigende Metriken"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "Eine oder mehrere Anmerkungsebenen konnten nicht geladen werden."
+
 msgid "One or more columns already exist"
 msgstr "Eine oder mehrere Spalten sind bereits vorhanden"
 
@@ -7636,12 +7810,6 @@ msgstr ""
 msgid "One or more parameters specified in the query are missing."
 msgstr "Ein oder mehrere in der Abfrage angegebene Parameter fehlen."
 
-msgid "One ore more annotation layers failed loading."
-msgstr "Eine oder mehrere Anmerkungsebenen konnten nicht geladen werden."
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "Nur 'SELECT'-Anweisungen sind für diese Datenbank zulässig."
-
 msgid "Only Total"
 msgstr "Nur Gesamtwert"
 
@@ -7658,9 +7826,6 @@ msgstr ""
 "Gilt nur, wenn \"Beschriftungstyp\" so eingestellt ist, dass Werte "
 "angezeigt werden."
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "Nur ausgewählte Bereiche sind von diesem Filter betroffen"
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7688,7 +7853,8 @@ msgstr "Deckkraft des Flächendiagramms."
 
 msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque"
 msgstr ""
-"Deckkraft der Blasen, 0 bedeutet völlig transparent, 1 bedeutet undurchsichtig"
+"Deckkraft der Blasen, 0 bedeutet völlig transparent, 1 bedeutet "
+"undurchsichtig"
 
 msgid "Opacity, expects values between 0 and 100"
 msgstr "Deckkraft, erwartet Werte zwischen 0 und 100"
@@ -7746,15 +7912,19 @@ msgstr "Optionen"
 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:"
 
-msgid "Order by entity id"
-msgstr "Nach Entitäts-ID sortieren"
-
 msgid "Order results by selected columns"
 msgstr "Ergebnisse nach ausgewählten Spalten sortieren"
 
 msgid "Ordering"
 msgstr "Sortierung"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr "Ausrichtung"
 
@@ -7823,12 +7993,13 @@ msgid ""
 "the comparison time range by the same length as your time range and use "
 "\"Custom\" to set a custom comparison range."
 msgstr ""
-"Überlagerung von Ergebnissen aus einem relativen Zeitraum. Erwartet relative "
-"Zeitdeltas in natürlicher Sprache (Beispiel: 24 Stunden, 7 Tage, 52 Wochen, "
-"365 Tage). Freier Text wird unterstützt. Verwenden Sie \"Bereich von "
-"Zeitfiltern erben\", um den Vergleichszeitbereich um die gleiche Länge wie "
-"Ihren Zeitbereich zu verschieben, und verwenden Sie \"Benutzerdefiniert\", "
-"um einen benutzerdefinierten Vergleichsbereich festzulegen."
+"Überlagerung von Ergebnissen aus einem relativen Zeitraum. Erwartet "
+"relative Zeitdeltas in natürlicher Sprache (Beispiel: 24 Stunden, 7 Tage,"
+" 52 Wochen, 365 Tage). Freier Text wird unterstützt. Verwenden Sie "
+"\"Bereich von Zeitfiltern erben\", um den Vergleichszeitbereich um die "
+"gleiche Länge wie Ihren Zeitbereich zu verschieben, und verwenden Sie "
+"\"Benutzerdefiniert\", um einen benutzerdefinierten Vergleichsbereich "
+"festzulegen."
 
 msgid ""
 "Overlays a hexagonal grid on a map, and aggregates data within the "
@@ -7883,6 +8054,10 @@ msgstr ""
 "Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern "
 "können. Durchsuchbar nach Name oder Benutzer*innenname."
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "Bilddownload fehlgeschlagen, bitte aktualisieren und erneut versuchen."
+
 msgid "Page length"
 msgstr "Seitenlänge"
 
@@ -7942,6 +8117,14 @@ msgstr ""
 msgid "Password"
 msgstr "Password"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "Typ ist erforderlich"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Dashboards existieren nicht"
+
 msgid "Paste Private Key here"
 msgstr "Privaten Schlüssel hier einfügen"
 
@@ -7998,6 +8181,14 @@ msgstr "Zeiträume"
 msgid "Periods must be a whole number"
 msgstr "Perioden müssen eine ganze Zahl sein"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Version"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr "Person oder Gruppe, die dieses Diagramm zertifiziert hat."
 
@@ -8013,9 +8204,6 @@ msgstr "Physisch"
 msgid "Physical (table or view)"
 msgstr "Physisch (Tabelle oder Ansicht)"
 
-msgid "Physical dataset"
-msgstr "Physischer Datensatz"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr "Wählen Sie eine Dimension aus, für die kategoriale Farben definiert werden"
 
@@ -8043,15 +8231,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr "Wählen Sie einen Titel für Ihre Anmerkung aus."
 
-msgid "Pick at least one field for [Series]"
-msgstr "Wählen Sie mindestens ein Feld für [Serie] aus."
-
 msgid "Pick at least one metric"
 msgstr "Wählen Sie mindestens eine Metrik aus"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "Wählen Sie genau 2 Spalten als [Quelle / Ziel]"
-
 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."
@@ -8065,8 +8247,8 @@ msgstr "Wählen Sie Ihre bevorzugte Markup-Sprache"
 msgid "Pie Chart"
 msgstr "Kreisdiagramm"
 
-msgid "Pie Chart (legacy)"
-msgstr "Kuchendiagramm (Legacy)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "Kreisform"
@@ -8077,6 +8259,14 @@ msgstr "Stückweise"
 msgid "Pin"
 msgstr "Pin"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "Oben links"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Oben rechts"
+
 msgid "Pivot Table"
 msgstr "Pivot-Tabelle"
 
@@ -8136,6 +8326,9 @@ msgstr ""
 "sicher, dass sie in Ihrer SQL-Abfrage und in den Parameter-Namen "
 "übereinstimmen. Versuchen Sie dann erneut, die Abfrage auszuführen."
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr "Bitte wählen Sie mindestens ein Gruppierungs-Kriterium"
 
@@ -8145,14 +8338,27 @@ msgstr "Bitte bestätigen"
 msgid "Please confirm the overwrite values."
 msgstr "Bitte bestätigen Sie die überschreibenden Werte."
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "Bitte bestätigen"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Bitten geben Sie eine SQL Alchemy URI zum Testen ein"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 "Bitte geben Sie einen gültigen Text ein. Leerzeichen allein sind nicht "
 "zulässig."
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "Bitte geben Sie das Passwort erneut ein."
 
@@ -8164,24 +8370,21 @@ msgstr ""
 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 den/die Diagramm-Besitzer*innen, um Unterstützung "
+"Bitte wenden Sie sich an den/die Diagramm-Besitzer*in, um Unterstützung "
 "zu erhalten."
-
-msgid "Please save the query to enable sharing"
-msgstr "Bitte speichern Sie die Abfrage, um die Freigabe zu aktivieren"
+msgstr[1] ""
+"Bitte wenden Sie sich an den/die Diagramm-Besitzer*innen, um "
+"Unterstützung zu erhalten."
 
 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-Bericht zu erstellen."
+"Bitte speichern Sie zuerst Ihr Diagramm und versuchen Sie dann, einen "
+"neuen E-Mail-Bericht zu erstellen."
 
 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-Bericht zu erstellen."
+"Bitte speichern Sie zuerst Ihr Dashboard und versuchen Sie dann, einen "
+"neuen E-Mail-Bericht zu erstellen."
 
 msgid "Please select both a Dataset and a Chart type to proceed"
 msgstr ""
@@ -8193,7 +8396,8 @@ msgid ""
 "Please specify the Dataset ID for the ``%(name)s`` metric in the Jinja "
 "macro."
 msgstr ""
-"Bitte geben Sie die Dataset-ID für die Metrik ``%(name)s`` im Jinja-Makro an."
+"Bitte geben Sie die Dataset-ID für die Metrik ``%(name)s`` im Jinja-Makro"
+" an."
 
 msgid "Please use 3 different metric labels"
 msgstr "Bitte verwenden Sie 3 verschiedene metrische Beschriftungen"
@@ -8258,9 +8462,6 @@ msgstr "Polylinie"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "Geben Sie den \"Standardwert\" an, um dieses Steuerelement zu aktivieren"
 
-msgid "Population age data"
-msgstr "Daten zum Bevölkerungsalter"
-
 msgid "Port"
 msgstr "Port"
 
@@ -8298,16 +8499,6 @@ msgstr "Verfügbare Werte vorfiltern"
 msgid "Pre-filter is required"
 msgstr "Vorfilterung erforderlich"
 
-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."
-
 msgid "Predictive"
 msgstr "Prädikativ"
 
@@ -8326,10 +8517,6 @@ msgstr "Vorschau"
 msgid "Preview uploaded file"
 msgstr "Vorschau der hochgeladenen Datei"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "Vorschau: `%s"
-
 msgid "Previous"
 msgstr "Zurück"
 
@@ -8375,18 +8562,13 @@ msgstr "Fortschritt"
 msgid "Progressive"
 msgstr "Progressiv"
 
-msgid "Propagate"
-msgstr "Propagieren"
+#, fuzzy
+msgid "Project Id"
+msgstr "Veraltet"
 
 msgid "Proportional"
 msgstr "Proportional"
 
-msgid "Public and privately shared sheets"
-msgstr "Öffentliche und privat freigegebene Blätter"
-
-msgid "Publicly shared sheets only"
-msgstr "Nur öffentlich freigegebene Blätter"
-
 msgid "Published"
 msgstr "Veröffentlicht"
 
@@ -8398,8 +8580,8 @@ msgstr "Beschriftung außerhalb darstellen"
 
 msgid "Put positive values and valid minute and second value less than 60"
 msgstr ""
-"Setzen Sie positive Werte und gültige Minuten- und Sekundenwerte kleiner als "
-"60"
+"Setzen Sie positive Werte und gültige Minuten- und Sekundenwerte kleiner "
+"als 60"
 
 msgid "Put some positive value greater than 0"
 msgstr "Setzen Sie einen positiven Wert größer als 0"
@@ -8407,9 +8589,6 @@ msgstr "Setzen Sie einen positiven Wert größer als 0"
 msgid "Put the labels outside of the pie?"
 msgstr "Sollen die Beschriftungen außerhalb der Torte dargestellt werden?"
 
-msgid "Put the labels outside the pie?"
-msgstr "Beschriftungen außerhalb des Kuchens anordnen?"
-
 msgid "Put your code here"
 msgstr "Geben Sie Ihren Code hier ein"
 
@@ -8511,10 +8690,6 @@ msgstr "Radius in Metern"
 msgid "Radius in miles"
 msgstr "Radius in Meilen"
 
-#, python-format
-msgid "Ran %s"
-msgstr "Ausgeführt %s"
-
 msgid "Range"
 msgstr "Bereich"
 
@@ -8542,24 +8717,9 @@ msgstr "Verhältnis"
 msgid "Raw records"
 msgstr "Rohdatensätze"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Kürzlich erstellte Diagramme, Dashboards und gespeicherte Abfragen werden"
-" hier angezeigt"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Kürzlich bearbeitete Diagramme, Dashboards und gespeicherte Abfragen "
-"werden hier angezeigt"
-
 msgid "Recently modified"
 msgstr "Kürzlich geändert"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Kürzlich angezeigte Diagramme, Dashboards und gespeicherte Abfragen "
-"werden hier angezeigt"
-
 msgid "Recents"
 msgstr "Kürzlich"
 
@@ -8578,11 +8738,6 @@ msgstr "Wiederkehrend (alle)"
 msgid "Red for increase, green for decrease"
 msgstr "Rot für Anstieg, grün für Rückgang"
 
-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"
-
 msgid "Redo the action"
 msgstr "Aktion wiederholen"
 
@@ -8624,6 +8779,10 @@ msgstr "Aktualisierungsinterval"
 msgid "Refresh interval saved"
 msgstr "Aktualisierungsintervall gespeichert"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "Siehe Tabellenschema"
+
 msgid "Refresh the default values"
 msgstr "Aktualisieren der Standardwerte"
 
@@ -8642,11 +8801,11 @@ msgid ""
 "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."
+"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."
 
 msgid "Relational"
 msgstr "Relational"
@@ -8682,8 +8841,10 @@ msgid "Remove table preview"
 msgstr "Tabellenvorschau entfernen"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "Entfernte Spalten: %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
 
 msgid "Rename tab"
 msgstr "Registerkarte umbenennen"
@@ -8694,11 +8855,10 @@ msgstr "HTML rendern"
 msgid "Render columns in HTML format"
 msgstr "Spalten im HTML-Format rendern"
 
-msgid "Render data in HTML format if applicable."
-msgstr "Rendering von Daten im HTML-Format, falls zutreffend."
-
-msgid "Rendering"
-msgstr "Darstellen"
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
+msgstr ""
 
 msgid "Replace"
 msgstr "Ersetzen"
@@ -8719,8 +8879,7 @@ msgid "Report Schedule delete failed."
 msgstr "Fehler beim Löschen des Berichts-Ausführungsplans."
 
 msgid "Report Schedule execution failed when generating a csv."
-msgstr ""
-"Bericht-Ausführungsplan Ausführungsfehler beim Generieren einer CSV-Datei."
+msgstr "Bericht-Ausführungsplan Ausführungsfehler beim Generieren einer CSV-Datei."
 
 msgid "Report Schedule execution failed when generating a dataframe."
 msgstr ""
@@ -8754,7 +8913,8 @@ msgstr "Bericht-Ausführungsplanparameter sind ungültig."
 
 msgid "Report Schedule reached a working timeout."
 msgstr ""
-"Die Erstellung des geplanten Berichts hat die zulässige Zeit überschritten."
+"Die Erstellung des geplanten Berichts hat die zulässige Zeit "
+"überschritten."
 
 msgid "Report Schedule state not found"
 msgstr "Geplanter Bericht Status nicht gefunden"
@@ -8801,6 +8961,9 @@ msgstr "Abstoßung"
 msgid "Repulsion strength between nodes"
 msgstr "Abstoßungsstärke zwischen Knoten"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "Anfrage ist falsch: %(error)s"
@@ -8832,6 +8995,10 @@ msgstr "Für den Stichprobenwiederholung ist ein Datetime-Index erforderlich."
 msgid "Reset"
 msgstr "Zurücksetzen"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Spalte auswählen"
+
 msgid "Reset state"
 msgstr "Status zurücksetzen"
 
@@ -8859,6 +9026,10 @@ msgstr ""
 "Das Ergebnis-Backend, das für asynchrone Abfragen benötigt wird, ist "
 "nicht konfiguriert."
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "Ergebnisse erneut anfordern"
+
 msgid "Return to specific datetime."
 msgstr "Kehren Sie zu bestimmtem Zeitpunkt zurück."
 
@@ -8900,6 +9071,28 @@ msgstr ""
 msgid "Role"
 msgstr "Rolle"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Name des Alarms"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "Wert ist erforderlich"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Name ist erforderlich"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "Datensatz erfolgreich geändert!"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Rollen"
 
@@ -8966,8 +9159,8 @@ msgid ""
 "Row containing the headers to use as column names (0 is first line of "
 "data)."
 msgstr ""
-"Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen (0 "
-"ist die erste Zeile der Daten)."
+"Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen"
+" (0 ist die erste Zeile der Daten)."
 
 msgid "Row limit"
 msgstr "Zeilenlimit"
@@ -8981,9 +9174,6 @@ msgstr "Zeilen pro Seite, 0 bedeutet keine Paginierung"
 msgid "Rows subtotal position"
 msgstr "Zeilen Zwischensummenposition"
 
-msgid "Rows to Read"
-msgstr "Zu lesende Zeilen"
-
 msgid "Rows to read"
 msgstr "Zu lesende Zeilen"
 
@@ -9048,14 +9238,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL kopiert!"
 
-msgid "SQL Expression"
-msgstr "SQL-Ausdruck"
-
 msgid "SQL Lab"
 msgstr "SQL Lab"
 
-msgid "SQL Lab View"
-msgstr "SQL Lab Anzeige"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "gespeicherte Abfragen"
 
 #, python-format
 msgid ""
@@ -9151,18 +9339,9 @@ msgstr "Beispiele für Datensatz konnten nicht abgerufen werden."
 msgid "Samples for datasource could not be retrieved."
 msgstr "Beispiele für die Datenquelle konnten nicht abgerufen werden."
 
-msgid "Sankey"
-msgstr "Sankey"
-
 msgid "Sankey Chart"
 msgstr "Sankey-Diagramm"
 
-msgid "Sankey Diagram (legacy)"
-msgstr "Sankey-Diagramm (Legacy)"
-
-msgid "Sankey Diagram with Loops"
-msgstr "Sankey-Diagramm mit Schleifen"
-
 msgid "Satellite"
 msgstr "Satellit"
 
@@ -9223,9 +9402,6 @@ msgstr "Speichern oder Überschreiben des Datensatzes"
 msgid "Save query"
 msgstr "Speichere Abfrage"
 
-msgid "Save the query to enable this feature"
-msgstr "Speichern Sie die Abfrage, um diese Funktion zu aktivieren"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
 "Speichern Sie diese Abfrage als virtuellen Datensatz, um mit der "
@@ -9255,6 +9431,10 @@ msgstr "Gespeicherte Abfrage nicht gefunden."
 msgid "Saved query parameters are invalid."
 msgstr "Gespeicherte Abfrageparameter sind ungültig."
 
+#, fuzzy
+msgid "Saving..."
+msgstr "Lade..."
+
 msgid "Scale and Move"
 msgstr "Skalieren und Verschieben"
 
@@ -9309,11 +9489,6 @@ msgstr "Schema"
 msgid "Schema cache timeout"
 msgstr "Zeitüberschreitung Schema-Zwischenspeicher"
 
-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"
-
 msgid "Schemas allowed for File upload"
 msgstr "Zulässige Schemata für den Datei-Upload"
 
@@ -9397,9 +9572,6 @@ msgstr "Sekunden %s"
 msgid "Seconds value"
 msgstr "Wert in Sekunden"
 
-msgid "Secure Extra"
-msgstr "Sicherheit Extra"
-
 msgid "Secure extra"
 msgstr "Sicherheit extra"
 
@@ -9474,15 +9646,16 @@ msgstr "Wählen Sie eine Dimension"
 
 msgid "Select a metric to display on the right axis"
 msgstr ""
-"Wählen Sie eine Metrik aus, die auf der rechten Achse angezeigt werden soll."
+"Wählen Sie eine Metrik aus, die auf der rechten Achse angezeigt werden "
+"soll."
 
 msgid ""
 "Select a metric to display. You can use an aggregation function on a "
 "column or write custom SQL to create a metric."
 msgstr ""
 "Wählen Sie eine anzuzeigende Metrik aus. Sie können eine "
-"Aggregationsfunktion für eine Spalte verwenden oder benutzerdefiniertes SQL "
-"schreiben, um eine Metrik zu erstellen."
+"Aggregationsfunktion für eine Spalte verwenden oder benutzerdefiniertes "
+"SQL schreiben, um eine Metrik zu erstellen."
 
 msgid "Select a schema"
 msgstr "Schema auswählen"
@@ -9493,13 +9666,17 @@ msgstr "Wählen Sie ein Schema aus, wenn die Datenbank dies unterstützt"
 msgid "Select a sheet name from the uploaded file"
 msgstr "Wählen Sie einen Blattnamen aus der hochgeladenen Datei"
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Datenbank auswählen"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
 msgstr ""
-"Wählen Sie eine Zeitspanne für die Visualisierung aus. Das Zeitraster ist "
-"das Zeitintervall, das durch einen einzelnen Punkt im Diagramm dargestellt "
-"wird."
+"Wählen Sie eine Zeitspanne für die Visualisierung aus. Das Zeitraster ist"
+" das Zeitintervall, das durch einen einzelnen Punkt im Diagramm "
+"dargestellt wird."
 
 msgid "Select a visualization type"
 msgstr "Visualisierungstyp wählen"
@@ -9513,8 +9690,8 @@ msgstr "Alle Daten auswählen"
 msgid "Select all items"
 msgstr "Alle Elemente auswählen"
 
-msgid "Select any columns for metadata inspection"
-msgstr "Auswählen beliebiger Spalten für die Metadatenüberprüfung"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 msgid "Select catalog or type to search catalogs"
 msgstr "Katalog oder Typ auswählen, um Kataloge zu durchsuchen"
@@ -9537,12 +9714,17 @@ msgstr "Farbschema auswählen"
 msgid "Select column"
 msgstr "Spalte auswählen"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+"Wählen Sie aus der Dropdown-Liste die Namen der Spalten aus, die als "
+"Datum interpretiert werden sollen."
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
 msgstr ""
-"Wählen Sie die Spalten aus, die in der Tabelle angezeigt werden sollen. Sie "
-"können Spalten mehrfach auswählen."
+"Wählen Sie die Spalten aus, die in der Tabelle angezeigt werden sollen. "
+"Sie können Spalten mehrfach auswählen."
 
 msgid "Select content type"
 msgstr "Inhaltstyp auswählen"
@@ -9598,19 +9780,20 @@ msgid ""
 "data within the row limit. You can use an aggregation function on a "
 "column or write custom SQL to create a percentage metric."
 msgstr ""
-"Wählen Sie eine oder mehrere anzuzeigende Metriken aus, die als Prozentsatz "
-"der Gesamtzahl angezeigt werden sollen. Prozentuale Metriken werden nur aus "
-"Daten innerhalb der Zeilengrenze berechnet. Sie können eine "
-"Aggregationsfunktion für eine Spalte verwenden oder benutzerdefiniertes SQL "
-"schreiben, um eine prozentuale Metrik zu erstellen."
+"Wählen Sie eine oder mehrere anzuzeigende Metriken aus, die als "
+"Prozentsatz der Gesamtzahl angezeigt werden sollen. Prozentuale Metriken "
+"werden nur aus Daten innerhalb der Zeilengrenze berechnet. Sie können "
+"eine Aggregationsfunktion für eine Spalte verwenden oder "
+"benutzerdefiniertes SQL schreiben, um eine prozentuale Metrik zu "
+"erstellen."
 
 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 ""
 "Wählen Sie eine oder mehrere Metriken zur Anzeige aus. Sie können eine "
-"Aggregationsfunktion für eine Spalte verwenden oder benutzerdefiniertes SQL "
-"schreiben, um eine Metrik zu erstellen."
+"Aggregationsfunktion für eine Spalte verwenden oder benutzerdefiniertes "
+"SQL schreiben, um eine Metrik zu erstellen."
 
 msgid "Select operator"
 msgstr "Operator auswählen"
@@ -9630,6 +9813,14 @@ msgstr "Datensatzname auswählen oder eingeben"
 msgid "Select owners"
 msgstr "Besitzende auswählen"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Schlagwörter auswählen"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Besitzende auswählen"
+
 msgid "Select saved metrics"
 msgstr "Gespeicherte Metriken auswählen"
 
@@ -9642,9 +9833,19 @@ msgstr "Schema auswählen oder tippen, um Schemas zu suchen"
 msgid "Select scheme"
 msgstr "Schema auswählen"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "Betreff auswählen"
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Alle abwählen"
+
 msgid "Select table or type to search tables"
 msgstr "Tabelle auswählen oder tippen, um Tabellen zu suchen"
 
@@ -9658,12 +9859,12 @@ msgid ""
 "\"All charts\" to apply cross-filters to all charts that use the same "
 "dataset or contain the same column name in the dashboard."
 msgstr ""
-"Wählen Sie die Diagramme aus, auf die Sie in diesem Dashboard Kreuzfilter "
-"anwenden möchten. Wenn Sie die Auswahl eines Diagramms aufheben, wird es bei "
-"der Anwendung von Kreuzfiltern auf ein beliebiges Diagramm im Dashboard "
-"nicht mehr gefiltert. Sie können \"Alle Diagramme\" auswählen, um "
-"Kreuzfilter auf alle Diagramme anzuwenden, die denselben Datensatz verwenden "
-"oder denselben Spaltennamen im Dashboard enthalten."
+"Wählen Sie die Diagramme aus, auf die Sie in diesem Dashboard Kreuzfilter"
+" anwenden möchten. Wenn Sie die Auswahl eines Diagramms aufheben, wird es"
+" bei der Anwendung von Kreuzfiltern auf ein beliebiges Diagramm im "
+"Dashboard nicht mehr gefiltert. Sie können \"Alle Diagramme\" auswählen, "
+"um Kreuzfilter auf alle Diagramme anzuwenden, die denselben Datensatz "
+"verwenden oder denselben Spaltennamen im Dashboard enthalten."
 
 msgid ""
 "Select the charts to which you want to apply cross-filters when "
@@ -9673,18 +9874,12 @@ msgid ""
 msgstr ""
 "Wählen Sie die Diagramme aus, auf die Sie bei der Interaktion mit diesem "
 "Diagramm Kreuzfilter anwenden möchten. Sie können \"Alle Diagramme\" "
-"auswählen, um Filter auf alle Diagramme anzuwenden, die denselben Datensatz "
-"verwenden oder denselben Spaltennamen im Dashboard enthalten."
+"auswählen, um Filter auf alle Diagramme anzuwenden, die denselben "
+"Datensatz verwenden oder denselben Spaltennamen im Dashboard enthalten."
 
 msgid "Select the geojson column"
 msgstr "Wählen Sie die GeoJSON-Spalte aus"
 
-msgid "Select the number of bins for the histogram"
-msgstr "Wählen Sie die Anzahl der Klassen für das Histogramm aus"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "Auswählen der numerischen Spalten zum Zeichnen des Histogramms"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9708,9 +9903,6 @@ msgstr "Als PNG senden"
 msgid "Send as text"
 msgstr "Als Text senden"
 
-msgid "Send range filter events to other charts"
-msgstr "Bereichsfilter-Ereignisse an andere Diagramme senden"
-
 msgid "September"
 msgstr "September"
 
@@ -9723,12 +9915,6 @@ msgstr "Zeitreihen"
 msgid "Series Height"
 msgstr "Zeitreihenhöhe"
 
-msgid "Series Limit Sort By"
-msgstr "Zeitreihenlimit Sortieren nach"
-
-msgid "Series Limit Sort Descending"
-msgstr "Zeitreihenlimit absteigend sortieren"
-
 msgid "Series Order"
 msgstr "Zeitreihen-Reihenfolge"
 
@@ -9756,6 +9942,10 @@ msgstr "Server-Paginierung"
 msgid "Service Account"
 msgstr "Dienstkonto"
 
+#, fuzzy
+msgid "Service version"
+msgstr "Dienstkonto"
+
 msgid "Set auto-refresh interval"
 msgstr "Auto-Aktualisieren-Interval setzen"
 
@@ -9764,8 +9954,8 @@ msgstr "Festlegen der Filterzuordnung"
 
 msgid "Set header rows and the number of rows to read or skip."
 msgstr ""
-"Legen Sie Kopfzeilen und die Anzahl der zu lesenden oder zu überspringenden "
-"Zeilen fest."
+"Legen Sie Kopfzeilen und die Anzahl der zu lesenden oder zu "
+"überspringenden Zeilen fest."
 
 msgid "Set up an email report"
 msgstr "E-Mail-Bericht einrichten"
@@ -9788,6 +9978,10 @@ msgstr "Einstellungen"
 msgid "Settings for time series"
 msgstr "Einstellungen für Zeitreihen"
 
+#, fuzzy
+msgid "Shape"
+msgstr "Kreisform"
+
 msgid "Share"
 msgstr "Teilen"
 
@@ -9852,18 +10046,9 @@ msgstr "CREATE VIEW-Anweisung anzeigen"
 msgid "Show Cell bars"
 msgstr "Zellenbalken anzeigen"
 
-msgid "Show Chart"
-msgstr "Diagramm anzeigen"
-
-msgid "Show Column"
-msgstr "Spalte anzeigen"
-
 msgid "Show Dashboard"
 msgstr "Dashboard anzeigen"
 
-msgid "Show Database"
-msgstr "Datenbank anzeigen"
-
 msgid "Show Labels"
 msgstr "Beschriftung anzeigen"
 
@@ -9873,18 +10058,12 @@ msgstr "Protokoll anzeigen"
 msgid "Show Markers"
 msgstr "Markierungen anzeigen"
 
-msgid "Show Metric"
-msgstr "Metrik anzeigen"
-
 msgid "Show Metric Names"
 msgstr "Metriknamen anzeigen"
 
 msgid "Show Range Filter"
 msgstr "Bereichsfilter anzeigen"
 
-msgid "Show Table"
-msgstr "Tabelle anzeigen"
-
 msgid "Show Timestamp"
 msgstr "Zeitstempel anzeigen"
 
@@ -9919,9 +10098,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "Alle Spalten anzeigen"
 
-msgid "Show all..."
-msgstr "Zeige alle …"
-
 msgid "Show axis line ticks"
 msgstr "Anzeigen von Achsenlinien-Ticks"
 
@@ -9943,6 +10119,10 @@ msgstr "Datenpunkte als Kreismarkierungen auf den Linien darstellen"
 msgid "Show empty columns"
 msgstr "Leere Spalten anzeigen"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "%s Einträge anzeigen"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9965,9 +10145,6 @@ msgstr "Legende anzeigen"
 msgid "Show less columns"
 msgstr "Weniger Spalten anzeigen"
 
-msgid "Show less..."
-msgstr "Weniger..."
-
 msgid "Show minor ticks on axes."
 msgstr "Kleinere Ticks auf den Achsen anzeigen."
 
@@ -10004,6 +10181,10 @@ msgstr "Zusammenfassung anzeigen"
 msgid "Show the value on top of the bar"
 msgstr "Anzeigen des Werts oben auf der Leiste"
 
+#, fuzzy
+msgid "Show total"
+msgstr "Gesamtsumme anzeigen"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -10053,8 +10234,8 @@ 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."
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "Sie sehen %s von %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -10087,18 +10268,16 @@ msgstr "Einzelner Wert"
 msgid "Single value type"
 msgstr "Einzelwerttyp"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "Gibt die Rastergröße in Pixel an"
+
 msgid "Size of edge symbols"
 msgstr "Größe der Kantensymbole"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "Größe des Markers. Gilt auch für Prognosebeobachtungen."
 
-msgid "Sizes of vehicles"
-msgstr "Fahrzeuggrößen"
-
-msgid "Skip Rows"
-msgstr "Zeilen überspringen"
-
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
 msgstr ""
 "Überspringen Sie Leerzeilen, anstatt sie als Nicht-Zahl-Werte zu "
@@ -10139,8 +10318,8 @@ msgid ""
 "Something went wrong with embedded authentication. Check the dev console "
 "for details."
 msgstr ""
-"Bei der eingebetteten Authentifizierung ist ein Fehler aufgetreten. Prüfen "
-"Sie die Dev-Konsole für Details."
+"Bei der eingebetteten Authentifizierung ist ein Fehler aufgetreten. "
+"Prüfen Sie die Dev-Konsole für Details."
 
 msgid "Something went wrong."
 msgstr "Etwas ist schief gelaufen."
@@ -10173,14 +10352,12 @@ msgstr ""
 
 msgid "Sorry, something went wrong. Please try again."
 msgstr ""
-"Entschuldigung, da ist etwas schief gelaufen. Bitte versuchen Sie es erneut."
+"Entschuldigung, da ist etwas schief gelaufen. Bitte versuchen Sie es "
+"erneut."
 
 msgid "Sorry, something went wrong. Try again later."
 msgstr "Entschuldigung, etwas ist schief gegangen. Versuchen Sie es später erneut."
 
-msgid "Sorry, there appears to be no data"
-msgstr "Leider scheint es keine Daten zu geben"
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr "Leider ist beim Speichern dieses %s ein Fehler aufgetreten: %s"
@@ -10200,9 +10377,6 @@ msgstr ""
 msgid "Sort"
 msgstr "Sortieren"
 
-msgid "Sort Bars"
-msgstr "Balken sortieren"
-
 msgid "Sort Descending"
 msgstr "Absteigend sortieren"
 
@@ -10224,9 +10398,6 @@ msgstr "Y-Achse sortieren"
 msgid "Sort ascending"
 msgstr "Aufsteigend sortieren"
 
-msgid "Sort bars by x labels."
-msgstr "Sortieren Sie Balken nach x-Beschriftungen."
-
 msgid "Sort by"
 msgstr "Sortieren nach"
 
@@ -10252,6 +10423,10 @@ msgstr "Filterwerte sortieren"
 msgid "Sort metric"
 msgstr "Metrik anzeigen"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "Abfrage exportieren"
+
 msgid "Sort rows by"
 msgstr "Zeilen sortieren nach"
 
@@ -10264,9 +10439,6 @@ msgstr "Art der Sortierung"
 msgid "Source"
 msgstr "Quelle"
 
-msgid "Source / Target"
-msgstr "Quelle / Ziel"
-
 msgid "Source SQL"
 msgstr "Quell-SQL"
 
@@ -10292,8 +10464,8 @@ 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."
+"Geben Sie die Datenbankversion an. Dies sollte mit Presto verwendet "
+"werden, um eine Abfragekostenschätzung zu ermöglichen."
 
 msgid "Split number"
 msgstr "Zahl aufteilen"
@@ -10310,9 +10482,6 @@ msgstr "Quadratmeilen"
 msgid "Stack"
 msgstr "Gestapelt"
 
-msgid "Stack Trace:"
-msgstr "Stacktrace"
-
 msgid "Stack series"
 msgstr "Stack-Serie"
 
@@ -10328,9 +10497,6 @@ msgstr "Gestapelte Balken"
 msgid "Stacked Style"
 msgstr "Gestapelter Stil"
 
-msgid "Stacked style"
-msgstr "Gestapelter Stil"
-
 msgid "Standard time series"
 msgstr "Standard-Zeitreihen"
 
@@ -10432,9 +10598,6 @@ msgstr "Straßen"
 msgid "Strength to pull the graph toward center"
 msgstr "Stärke, mit der Graph in Richtung Mitte gezogen wird"
 
-msgid "Stretched style"
-msgstr "Gestreckter Stil"
-
 msgid "Stroke Color"
 msgstr "Strichfarbe"
 
@@ -10456,15 +10619,20 @@ msgstr "Enden des Fortschrittsbalkens mit einer runden Kappe versehen"
 msgid "Subdomain"
 msgstr "Subdomain"
 
-msgid "Subheader"
-msgstr "Untertitel"
-
 msgid "Subheader Font Size"
 msgstr "Schriftgröße Untertitel"
 
 msgid "Submit"
 msgstr "Senden"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "Registerkartentitel"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Blasengröße"
+
 msgid "Subtotal"
 msgstr "Zwischensumme"
 
@@ -10516,9 +10684,6 @@ msgstr "Superset Embedded SDK-Dokumentation."
 msgid "Superset chart"
 msgstr "Superset Diagramm"
 
-msgid "Superset dashboard"
-msgstr "Superset Dashboard"
-
 msgid "Superset encountered an error while running a command."
 msgstr "Superset hat beim Ausführen eines Befehls einen Fehler festgestellt."
 
@@ -10528,9 +10693,6 @@ msgstr "Superset hat einen unerwarteten Fehler festgestellt."
 msgid "Supported databases"
 msgstr "Unterstützte Datenbanken"
 
-msgid "Survey Responses"
-msgstr "Umfrage-Antworten"
-
 msgid "Swap dataset"
 msgstr "Datensatz austauschen"
 
@@ -10546,6 +10708,12 @@ msgstr ""
 " Schritt-, Linien-, Punkt- und Balkendiagrammen. Dieser "
 "Visualisierungstyp hat auch viele Anpassungsoptionen."
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr "Symbol"
 
@@ -10555,23 +10723,30 @@ msgstr "Symbol für zwei Enden der Kantenlinie"
 msgid "Symbol size"
 msgstr "Symbolgröße"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "Spalten aus der Quelle synchronisieren"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "Syntax"
 
 #, python-format
 msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s"
-msgstr ""
-"Syntax Error: %(qualifier)s Eingabe \"%(input)s\" erwartet \"%(expected)s"
+msgstr "Syntax Error: %(qualifier)s Eingabe \"%(input)s\" erwartet \"%(expected)s"
 
 msgid "TABLES"
 msgstr "TABELLEN"
 
-msgid "TEMPORAL X-AXIS"
-msgstr "ZEITLICHE X-ACHSE"
-
 msgid "TEMPORAL_RANGE"
 msgstr "TEMPORAL_RANGE"
 
@@ -10606,16 +10781,20 @@ msgid ""
 "Table [%(table)s] could not be found, please double check your database "
 "connection, schema, and table name"
 msgstr ""
-"Tabelle [%(table)s] konnte nicht gefunden werden, bitte überprüfen Sie Ihre "
-"Datenbankverbindung, das Schema und den Tabellennamen"
+"Tabelle [%(table)s] konnte nicht gefunden werden, bitte überprüfen Sie "
+"Ihre Datenbankverbindung, das Schema und den Tabellennamen"
+
+#, fuzzy
+msgid "Table actions"
+msgstr "Tabellenspalten"
 
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
 msgstr ""
-"Tabelle existiert bereits. Sie können Ihre 'if table already exists'-"
-"Strategie ändern, um anzuhängen oder zu ersetzen oder einen anderen "
-"Tabellennamen zu verwenden."
+"Tabelle existiert bereits. Sie können Ihre 'if table already "
+"exists'-Strategie ändern, um anzuhängen oder zu ersetzen oder einen "
+"anderen Tabellennamen zu verwenden."
 
 msgid "Table cache timeout"
 msgstr "Tabellen-Cache Timeout"
@@ -10623,6 +10802,10 @@ msgstr "Tabellen-Cache Timeout"
 msgid "Table columns"
 msgstr "Tabellenspalten"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Tabellenname"
+
 msgid "Table name undefined"
 msgstr "Tabellenname nicht definiert"
 
@@ -10686,13 +10869,6 @@ msgstr "Getaggtes Object konnte nicht gelöscht werden."
 msgid "Tags"
 msgstr "Schlagwörter"
 
-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"
-
 msgid "Target"
 msgstr "Ziel"
 
@@ -10718,6 +10894,10 @@ msgstr ""
 "Vorlagen-Link. Es ist möglich, {{ metric }} oder andere Werte aus den "
 "Steuerelementen einzuschließen."
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "Ist zeitlich"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10776,9 +10956,6 @@ msgstr ""
 "interaktive Polygone, Linien und Punkte (Kreise, Symbole und/oder Texte) "
 "dar."
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr "Das SQL ist ungültig und kann nicht geparst werden."
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10788,12 +10965,12 @@ msgid ""
 "representation of\n"
 "          value distribution and transformation."
 msgstr ""
-"Das Sankey-Diagramm veranschaulicht die Bewegung und den Wandel von Werten "
-"über\n"
+"Das Sankey-Diagramm veranschaulicht die Bewegung und den Wandel von "
+"Werten über\n"
 "          Systemstufen. Die Knoten stellen Stufen dar, die durch "
 "Verbindungen verbunden sind, die den Wertefluss darstellen. Knoten\n"
-"          Höhe entspricht der visualisierten Metrik und bietet eine klare "
-"Darstellung der\n"
+"          Höhe entspricht der visualisierten Metrik und bietet eine klare"
+" Darstellung der\n"
 "          Werteverteilung und -umwandlung."
 
 msgid "The URL is missing the dataset_id or slice_id parameters."
@@ -10819,6 +10996,10 @@ msgstr "Die Anmerkung wurde erfolgreich gespeichert"
 msgid "The annotation has been updated"
 msgstr "Anmerkung wurde aktualisiert"
 
+#, fuzzy
+msgid "The background color of the charts."
+msgstr "Name des Diagramms hinzufügen"
+
 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."
@@ -10857,6 +11038,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr "Die Farbe für Punkte und Cluster in RGB"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "Die Farbe der Isolinie"
+
 msgid "The color of the isoband"
 msgstr "Die Farbe des Isobands"
 
@@ -10874,6 +11059,17 @@ msgstr ""
 "              Bearbeiten Sie das Farbschema in den Dashboard-"
 "Eigenschaften."
 
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\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"
+
 msgid "The column header label"
 msgstr "Die Spaltenüberschrift"
 
@@ -10886,6 +11082,12 @@ msgstr "Die Spalte, die als Ziel der Kante verwendet werden soll."
 msgid "The column was deleted or renamed in the database."
 msgstr "Die Spalte wurde in der Datenbank gelöscht oder umbenannt."
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10897,26 +11099,9 @@ msgstr "Dashboard wurde erfolgreich gespeichert"
 msgid "The data source seems to have been deleted"
 msgstr "Die Datenquelle scheint gelöscht worden zu sein"
 
-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."
-
-#, 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."
+#, fuzzy
+msgid "The database"
+msgstr "Datenbank löschen"
 
 msgid "The database columns that contains lines information"
 msgstr "Die Datenbankspalten, die Zeileninformationen enthalten"
@@ -10952,15 +11137,9 @@ msgstr "Die Datenbank wurde gelöscht."
 msgid "The database was not found."
 msgstr "Datenbank nicht gefunden."
 
-#, 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."
+#, fuzzy
+msgid "The dataset"
+msgstr "Neuer Datensatz"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "Der diesem Diagramm zugeordnete Datensatz ist nicht mehr vorhanden"
@@ -11037,6 +11216,15 @@ msgstr ""
 "Das engine_params Objekt wird in den sqlalchemy.create_engine Aufrufs "
 "entpackt."
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -11050,8 +11238,8 @@ msgid ""
 "preventing the dashboard\n"
 "                    from rendering: %s"
 msgstr ""
-"Bei den folgenden Filtern ist die Option 'Ersten Filterwert standardmäßig "
-"auswählen'\n"
+"Bei den folgenden Filtern ist die Option 'Ersten Filterwert standardmäßig"
+" auswählen'\n"
 "                    aktiviert und konnten nicht geladen werden, was die "
 "Darstellung des Dashboards\n"
 "                    am Rendern hindert: %s"
@@ -11059,6 +11247,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr "Die beim Aggregieren von Punkten in Gruppen zu verwendende Funktion"
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -11067,7 +11258,8 @@ msgid ""
 " and provides\n"
 "          insights into its shape, central tendency, and spread."
 msgstr ""
-"Das Histogrammdiagramm zeigt die Verteilung eines Datensatzes an, indem es\n"
+"Das Histogrammdiagramm zeigt die Verteilung eines Datensatzes an, indem "
+"es\n"
 "          die Häufigkeit oder Anzahl von Werten innerhalb verschiedener "
 "Bereiche oder Bins darstellt.\n"
 "          Es hilft bei der Visualisierung von Mustern, Clustern und "
@@ -11103,29 +11295,13 @@ msgstr "Der angegebene Hostname kann nicht aufgelöst werden."
 msgid "The id of the active chart"
 msgstr "Die ID des aktiven Diagramms"
 
-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\"."
+#, fuzzy
+msgid "The layer attribution"
+msgstr "Zeitbezogene Formularattribute"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr "Die untere Grenze des Schwellenbereichs der Isoband"
 
-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"
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -11172,6 +11348,19 @@ msgstr ""
 "Summe von 7 Perioden sind. Dies wird den \"Hochlauf\" verbergen, der in "
 "den ersten 7 Perioden stattfindet"
 
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "Der Maximalwert von Metriken. Optionale Konfiguration"
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Name der ID-Spalte"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 msgid "The name of the rule must be unique"
 msgstr "Der Name der Regel muss eindeutig sein"
 
@@ -11363,8 +11552,7 @@ 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"
 
 msgid "The provided table was not found in the provided database"
-msgstr ""
-"Die angegebene Tabelle wurde in der angegebenen Datenbank nicht gefunden"
+msgstr "Die angegebene Tabelle wurde in der angegebenen Datenbank nicht gefunden"
 
 msgid "The query associated with the results was deleted."
 msgstr "Die den Ergebnissen zugeordnete Abfrage wurde gelöscht."
@@ -11438,6 +11626,10 @@ msgstr ""
 "interpretierbar ist, z.B. 1, 1,0 oder \"1\" (kompatibel mit Pythons "
 "Float()-Funktion)."
 
+#, fuzzy
+msgid "The result size exceeds the allowed limit."
+msgstr "Die Dateigröße überschreitet die maximal zulässige Größe."
+
 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."
 
@@ -11457,8 +11649,8 @@ msgid ""
 "The row limit set for the chart was reached. The chart may show partial "
 "data."
 msgstr ""
-"Das für das Diagramm festgelegte Zeilenlimit wurde erreicht. Das Diagramm "
-"zeigt möglicherweise nur einen Teil der Daten an."
+"Das für das Diagramm festgelegte Zeilenlimit wurde erreicht. Das Diagramm"
+" zeigt möglicherweise nur einen Teil der Daten an."
 
 #, python-format
 msgid ""
@@ -11484,15 +11676,21 @@ msgstr "Das Schema wurde in der Datenbank gelöscht oder umbenannt."
 
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
-"Das Bildschirmfoto konnte nicht heruntergeladen werden. Bitte versuchen Sie "
-"es später noch einmal."
+"Das Bildschirmfoto konnte nicht heruntergeladen werden. Bitte versuchen "
+"Sie es später noch einmal."
+
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "Das Bildschirmfoto wird jetzt heruntergeladen."
 
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
-"Das Bildschirmfoto wird gerade erstellt. Bitte verlassen Sie die Seite nicht."
+"Das Bildschirmfoto wird gerade erstellt. Bitte verlassen Sie die Seite "
+"nicht."
 
-msgid "The screenshot is now being downloaded."
-msgstr "Das Bildschirmfoto wird jetzt heruntergeladen."
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "Reihenwerten im Diagramm anzeigen"
 
 msgid "The size of each cell in meters"
 msgstr "Die Größe jeder Zelle in Metern"
@@ -11500,6 +11698,9 @@ msgstr "Die Größe jeder Zelle in Metern"
 msgid "The size of the square cell, in pixels"
 msgstr "Die Größe der quadratischen Zelle in Pixel"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr "Die Validierung der übermittelten Nutzdaten ist fehlgeschlagen."
 
@@ -11525,14 +11726,6 @@ msgstr ""
 "Die Tabelle \"%(table_name)s\" existiert nicht. Zum Ausführen dieser "
 "Abfrage muss eine gültige Tabelle verwendet werden."
 
-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."
-
 msgid "The table was deleted or renamed in the database."
 msgstr "Die Tabelle wurde in der Datenbank gelöscht oder umbenannt."
 
@@ -11601,6 +11794,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr "Die Zeiteinheit, die für die Gruppierung von Blöcken verwendet wird"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "Name des Diagramms hinzufügen"
+
 msgid "The type of visualization to display"
 msgstr "Der anzuzeigende Visualisierungstyp"
 
@@ -11615,8 +11812,8 @@ msgstr "Der/die Benutzer*in scheint gelöscht worden zu sein"
 
 msgid "The user/password combination is not valid (Incorrect password for user)."
 msgstr ""
-"Die Benutzer/Kennwort-Kombination ist nicht gültig (Falsches Kennwort für "
-"den Benutzer)."
+"Die Benutzer/Kennwort-Kombination ist nicht gültig (Falsches Kennwort für"
+" den Benutzer)."
 
 #, python-format
 msgid "The username \"%(username)s\" does not exist."
@@ -11627,12 +11824,27 @@ msgstr ""
 "Der Benutzer*innenname, der beim Herstellen einer Datenbankverbindung "
 "angegeben wurde, ist ungültig."
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "Wählen Sie die Position der Legende"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "Anzeigen des Werts oben auf der Leiste"
+
 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"
 
 msgid "The width of the Isoline in pixels"
 msgstr "Die Breite der Isoline in Pixeln"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "Die Breite der Linien"
+
 msgid "The width of the lines"
 msgstr "Die Breite der Linien"
 
@@ -11649,9 +11861,6 @@ msgstr "Diesem Dashboard wurden keine Diagramme hinzugefügt."
 msgid "There are no components added to this tab"
 msgstr "Dieser Registerkarte wurden keine Komponenten hinzugefügt."
 
-msgid "There are no databases available"
-msgstr "Es sind keine Datenbanken verfügbar"
-
 msgid "There are no filters in this dashboard."
 msgstr "In diesem Dashboard gibt es keine Filter."
 
@@ -11665,6 +11874,10 @@ msgstr ""
 "In der SQL-Abfrage liegt ein Syntaxfehler vor. Vielleicht gab es einen "
 "Rechtschreibfehler oder einen Tippfehler."
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "Der anzuzeigende Visualisierungstyp"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11694,6 +11907,10 @@ msgstr ""
 "Beim Abrufen der gefilterten Diagramme und Dashboards ist ein Fehler "
 "aufgetreten:"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten"
+
 msgid "There was an error loading the catalogs"
 msgstr "Es ist ein Fehler beim Laden der Kataloge aufgetreten"
 
@@ -11709,6 +11926,10 @@ msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten"
 msgid "There was an error loading the tables"
 msgstr "Beim Laden der Tabellen ist ein Fehler aufgetreten"
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr "Leider ist beim Speichern dieses Dashboards ein Fehler aufgetreten: %s"
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr "Beim Speichern des Favoritenstatus ist ein Fehler aufgetreten: %s"
@@ -11716,6 +11937,10 @@ msgstr "Beim Speichern des Favoritenstatus ist ein Fehler aufgetreten: %s"
 msgid "There was an error with your request"
 msgstr "Bei Ihrer Anfrage ist ein Fehler aufgetreten"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Beim Löschen ist ein Problem aufgetreten: %s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "Beim Löschen von %s ist ein Problem aufgetreten: %s"
@@ -11805,27 +12030,9 @@ msgstr "Bei der Vorschau der ausgewählten Abfrage %s ist ein Problem aufgetrete
 msgid "There was an issue previewing the selected query. %s"
 msgstr "Bei der Vorschau der ausgewählten Abfrage ist ein Problem aufgetreten. %s"
 
-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: {}"
-
 msgid "These are the datasets this filter will be applied to."
 msgstr "Dies sind die Datensätze, auf die dieser Filter angewendet wird."
 
-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."
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11843,12 +12050,20 @@ msgstr "Mit dieser Aktion wird %s dauerhaft gelöscht."
 msgid "This action will permanently delete the layer."
 msgstr "Durch diese Aktion wird die Ebene dauerhaft gelöscht."
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "Durch diese Aktion wird die Ebene dauerhaft gelöscht."
+
 msgid "This action will permanently delete the saved query."
 msgstr "Durch diese Aktion wird die gespeicherte Abfrage dauerhaft gelöscht."
 
 msgid "This action will permanently delete the template."
 msgstr "Durch diese Aktion wird die Vorlage dauerhaft gelöscht."
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "Durch diese Aktion wird die Ebene dauerhaft gelöscht."
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11884,15 +12099,6 @@ msgstr ""
 "Dieser Diagrammtyp wird nicht unterstützt, wenn eine nicht gespeicherte "
 "Abfrage als Diagrammquelle verwendet wird. "
 
-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"
-
 msgid "This column might be incompatible with current dataset"
 msgstr ""
 "Diese Spalte ist möglicherweise nicht mit dem aktuellen Datensatz "
@@ -11911,13 +12117,14 @@ msgid ""
 " ISO 8601 format if specifying either the start and/or end time."
 msgstr ""
 "Dieses Steuerelement filtert das gesamte Diagramm auf der Grundlage des "
-"ausgewählten Zeitbereichs. Alle relativen Zeiten, z.B. \"Letzter Monat\", "
-"\"Letzte 7 Tage\", \"jetzt\", etc. werden auf dem Server unter Verwendung "
-"der lokalen Zeit des Servers (ohne Zeitzone) ausgewertet. Alle Tooltips und "
-"Platzhalterzeiten werden in UTC (ohne Zeitzone) angegeben. Die Zeitstempel "
-"werden dann von der Datenbank unter Verwendung der lokalen Zeitzone der "
-"Engine ausgewertet. Beachten Sie, dass Sie die Zeitzone explizit im ISO 8601-"
-"Format angeben können, wenn Sie entweder die Start- und/oder Endzeit angeben."
+"ausgewählten Zeitbereichs. Alle relativen Zeiten, z.B. \"Letzter Monat\","
+" \"Letzte 7 Tage\", \"jetzt\", etc. werden auf dem Server unter "
+"Verwendung der lokalen Zeit des Servers (ohne Zeitzone) ausgewertet. Alle"
+" Tooltips und Platzhalterzeiten werden in UTC (ohne Zeitzone) angegeben. "
+"Die Zeitstempel werden dann von der Datenbank unter Verwendung der "
+"lokalen Zeitzone der Engine ausgewertet. Beachten Sie, dass Sie die "
+"Zeitzone explizit im ISO 8601-Format angeben können, wenn Sie entweder "
+"die Start- und/oder Endzeit angeben."
 
 msgid ""
 "This controls whether the \"time_range\" field from the current\n"
@@ -11988,6 +12195,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr "Dieses Dashboard wurde erfolgreich gespeichert."
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 "Diese Datenbank wird extern verwaltet und kann nicht in Superset "
@@ -12011,6 +12224,9 @@ msgstr "Dieser Datesatz wird nicht von Diagrammen genutzt."
 msgid "This defines the element to be plotted on the chart"
 msgstr "Definiert das Element, das im Diagramm dargestellt werden soll"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -12024,14 +12240,8 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 "Dieses Feld wird als eindeutiger Bezeichner verwendet, um die Metrik mit "
-"Diagrammen zu verbinden. Es wird auch als Alias in der SQL-Abfrage verwendet."
-
-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."
+"Diagrammen zu verbinden. Es wird auch als Alias in der SQL-Abfrage "
+"verwendet."
 
 msgid "This filter might be incompatible with current dataset"
 msgstr ""
@@ -12075,17 +12285,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr "Dies kann ausgelöst werden durch:"
 
-#, 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)."
-
 msgid "This metric might be incompatible with current dataset"
 msgstr ""
 "Diese Metrik ist möglicherweise nicht mit dem aktuellen Datensatz "
@@ -12098,8 +12297,8 @@ msgid ""
 "This page is intended to be embedded in an iframe, but it looks like that"
 " is not the case."
 msgstr ""
-"Diese Seite sollte in einen iframe eingebettet werden, aber es sieht so aus, "
-"als wäre das nicht der Fall."
+"Diese Seite sollte in einen iframe eingebettet werden, aber es sieht so "
+"aus, als wäre das nicht der Fall."
 
 msgid ""
 "This section allows you to configure how to use the slice\n"
@@ -12139,6 +12338,9 @@ msgstr ""
 "Dieser Tabelle ist bereits ein Datensatz zugeordnet. Sie können einer "
 "Tabelle nur einen Datasatz zuordnen.\n"
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr "Dieser Wert sollte größer als der linke Zielwert sein"
 
@@ -12161,8 +12363,8 @@ msgid ""
 "to main columns for increase and decrease. Basic conditional formatting "
 "can be overwritten by conditional formatting below."
 msgstr ""
-"Dies wird auf die gesamte Tabelle angewendet. Pfeile (↑ und ↓) werden den "
-"Hauptspalten zum Erhöhen und Verringern hinzugefügt. Die grundlegende "
+"Dies wird auf die gesamte Tabelle angewendet. Pfeile (↑ und ↓) werden den"
+" Hauptspalten zum Erhöhen und Verringern hinzugefügt. Die grundlegende "
 "bedingte Formatierung kann durch die nachfolgende bedingte Formatierung "
 "überschrieben werden."
 
@@ -12200,8 +12402,7 @@ msgid "Time Grain"
 msgstr "Zeitgranularität"
 
 msgid "Time Grain must be specified when using Time Shift."
-msgstr ""
-"Bei Verwendung eines Zeitvergleichs muss eine Zeitspalte angegeben werden."
+msgstr "Bei Verwendung eines Zeitvergleichs muss eine Zeitspalte angegeben werden."
 
 msgid "Time Granularity"
 msgstr "Zeitgranularität"
@@ -12218,9 +12419,6 @@ msgstr "Zeitverhältnis"
 msgid "Time Series"
 msgstr "Zeitreihen"
 
-msgid "Time Series - Bar Chart"
-msgstr "Zeitreihen - Balkendiagramm"
-
 msgid "Time Series - Line Chart"
 msgstr "Zeitreihen - Liniendiagramm"
 
@@ -12236,9 +12434,6 @@ msgstr "Zeitreihen - Prozentuale Veränderung"
 msgid "Time Series - Period Pivot"
 msgstr "Zeitreihen - Perioden-Pivot"
 
-msgid "Time Series - Stacked"
-msgstr "Zeitreihen - Gestapelt"
-
 msgid "Time Series Options"
 msgstr "Zeitreihen-Optionen"
 
@@ -12334,15 +12529,6 @@ msgstr ""
 "Die Zeitzeichenfolge ist mehrdeutig. Bitte geben Sie [%(human_readable)s "
 "ago] oder [%(human_readable)s later] an."
 
-msgid "Time-series Area Chart (legacy)"
-msgstr "Flächendiagramm (Legacy)"
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Zeitreihen-Balkendiagramm (Legacy)"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr "Liniendiagramm (Legacy)"
-
 msgid "Time-series Percent Change"
 msgstr "Zeitreihen - Prozentuale Veränderung"
 
@@ -12361,9 +12547,6 @@ msgstr "Zeitstempelformat"
 msgid "Timezone"
 msgstr "Zeitzone"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Zeitzonen-Offset (in Stunden) für diese Datenquelle"
-
 msgid "Timezone selector"
 msgstr "Zeitzonen-Auswahl"
 
@@ -12382,6 +12565,11 @@ msgstr "Titel ist erforderlich"
 msgid "Title or Slug"
 msgstr "Titel oder Kopfzeile"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr ""
 "Um nach einer Metrik zu filtern, verwenden Sie die Registerkarte "
@@ -12425,6 +12613,10 @@ msgstr "Insgesamt (%(aggfunc)s)"
 msgid "Total (%(aggregatorName)s)"
 msgstr "Insgesamt (%(aggregatorName)s)"
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "Gesamt: %s"
+
 msgid "Total value"
 msgstr "Gesamtwert"
 
@@ -12536,9 +12728,6 @@ msgstr "Geben Sie hier einen Wert ein"
 msgid "Type is required"
 msgstr "Typ ist erforderlich"
 
-msgid "Type of Google Sheets allowed"
-msgstr "Art der zulässigen Google Tabellen"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "Art des Vergleichs, Wertdifferenz oder Prozentsatz"
 
@@ -12631,9 +12820,15 @@ msgstr ""
 "Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n "
 "Administrator*in, wenn dieses Problem weiterhin besteht."
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr "Dashboardfarben können nicht abgerufen werden"
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "Undefiniert"
 
@@ -12664,6 +12859,10 @@ msgstr "Unerwartet keine Dateierweiterung gefunden"
 msgid "Unexpected time range: %(error)s"
 msgstr "Unerwartete Zeitspanne: %(error)s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "Rückgängig"
+
 msgid "Unknown"
 msgstr "Unbekannt"
 
@@ -12701,6 +12900,10 @@ msgstr "Unbekannter Typ"
 msgid "Unknown value"
 msgstr "Unbekannter Wert"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "laufend"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr "Unsicherer Rückgabetyp für %(func)s: %(value_type)s"
@@ -12762,9 +12965,6 @@ msgstr "Columnar hochladen"
 msgid "Upload Columnar file to database"
 msgstr "Hochladen einer Columnar-Datei in die Datenbank"
 
-msgid "Upload Credentials"
-msgstr "Anmeldeinformationen hochladen"
-
 msgid "Upload Enabled"
 msgstr "Hochladen aktiviert"
 
@@ -12787,6 +12987,10 @@ msgstr "Datei in Datenbank hochladen"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr "Laden Sie eine Datei mit einer gültigen Erweiterung hoch. Gültig: [%s]"
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Anmeldeinformationen hochladen"
+
 msgid "Upload file to database"
 msgstr "Datei in Datenbank hochladen"
 
@@ -12841,14 +13045,15 @@ msgstr ""
 "          Ihr Diagramm muss einer der folgenden Visualisierungstypen "
 "sein: [%s]"
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "Aktuelle Abfrage ausführen"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 "Verwenden Sie die Datumsformatierung, auch wenn der Metrikwert kein "
 "Zeitstempel ist"
 
-msgid "Use legacy datasource editor"
-msgstr "Verwenden des Legacy-Datenquellen-Editors"
-
 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 "
@@ -12860,13 +13065,6 @@ msgstr "Verwenden Sie nur einen einzigen Wert."
 msgid "Use the Advanced Analytics options below"
 msgstr "Verwenden Sie die untenstehenden fortgeschrittenen Analytik-Optionen"
 
-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."
-
 msgid "Use the edit button to change this field"
 msgstr "Verwenden Sie die Schaltfläche Bearbeiten, um dieses Feld zu ändern"
 
@@ -12914,9 +13112,23 @@ msgstr "Benutzer*in muss einen Wert für diesen Filter auswählen"
 msgid "User query"
 msgstr "Benutzer*innen-Abfrage"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "Benutzer*innenname"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Name ist erforderlich"
+
+#, fuzzy
+msgid "Users"
+msgstr "Zeitreihen"
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
 "Aus Sicherheitsgründen ist es Benutzern nicht gestattet, einen Suchpfad "
@@ -12926,8 +13138,8 @@ msgid ""
 "Uses Gaussian Kernel Density Estimation to visualize spatial distribution"
 " of data"
 msgstr ""
-"Verwendet die Gaußsche Kerndichteschätzung zur Visualisierung der räumlichen "
-"Verteilung von Daten"
+"Verwendet die Gaußsche Kerndichteschätzung zur Visualisierung der "
+"räumlichen Verteilung von Daten"
 
 msgid ""
 "Uses a gauge to showcase progress of a metric towards a target. The "
@@ -12950,6 +13162,10 @@ msgstr ""
 "durchlaufen hat. Nützlich für die Visualisierung von Trichtern und "
 "Pipelines in mehreren Gruppen."
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "Wert"
 
@@ -12975,9 +13191,16 @@ msgstr "Wertdifferenz zwischen den Zeiträumen"
 msgid "Value format"
 msgstr "Wertformat"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "Der Wert muss größer als 0 sein"
+
 msgid "Value is required"
 msgstr "Wert ist erforderlich"
 
+msgid "Value less than"
+msgstr ""
+
 msgid "Value must be 0 or greater"
 msgstr "Wert muss 0 oder größer sein"
 
@@ -12997,12 +13220,6 @@ msgstr ""
 "In anderen Filtern ausgewählte Werte wirken sich auf die Filteroptionen "
 "aus, sodass nur relevante Werte angezeigt werden"
 
-msgid "Vehicle Types"
-msgstr "Fahrzeugtypen"
-
-msgid "Verbose Name"
-msgstr "Ausführlicher Name"
-
 msgid "Version"
 msgstr "Version"
 
@@ -13015,9 +13232,6 @@ msgstr "Vertikal"
 msgid "Vertical (Left)"
 msgstr "Vertikal (links)"
 
-msgid "Video game consoles"
-msgstr "Videospielkonsolen"
-
 msgid "View"
 msgstr "Ansicht"
 
@@ -13059,9 +13273,6 @@ msgstr "Virtuell"
 msgid "Virtual (SQL)"
 msgstr "Virtuell (SQL)"
 
-msgid "Virtual dataset"
-msgstr "Virtueller Datensatz"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "Virtuelle Datensatzabfrage darf nicht leer sein"
 
@@ -13106,14 +13317,6 @@ msgstr ""
 "Visualisieren Sie Geodaten wie 3D-Gebäude, Landschaften oder Objekte in "
 "der Rasteransicht."
 
-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."
-
 msgid ""
 "Visualize multiple levels of hierarchy using a familiar tree-like "
 "structure."
@@ -13181,17 +13384,6 @@ msgstr ""
 "Diagramm. Dieses Diagramm ist überholt, und wir empfehlen, stattdessen "
 "das Zeitreihendiagramm zu verwenden."
 
-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."
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -13208,6 +13400,12 @@ msgstr "Visualisierungstyp"
 msgid "WED"
 msgstr "MI"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr "Warten auf %s"
@@ -13221,9 +13419,6 @@ msgstr "Möchten Sie eine neue Datenbank hinzufügen?"
 msgid "Warning"
 msgstr "Warnung"
 
-msgid "Warning Message"
-msgstr "Warnmeldung"
-
 msgid "Warning!"
 msgstr "Warnung!"
 
@@ -13334,11 +13529,11 @@ 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)."
+"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)."
+"Wir haben Probleme beim Laden dieser Ergebnisse. Abfragen überschreiten "
+"nach %s Sekunden die Ausführungszeit (Timeout)."
 
 #, python-format
 msgid ""
@@ -13348,11 +13543,11 @@ 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)."
+"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)."
+"Wir haben Probleme beim Laden dieser Visualisierung. Abfragen "
+"überschreiten nach %s Sekunden die Ausführungszeit (Timeout)."
 
 msgid "What should be shown as the label"
 msgstr "Was sollte als Beschriftung angezeigt werden?"
@@ -13379,13 +13574,6 @@ msgstr ""
 "Wenn eine sekundäre Metrik bereitgestellt wird, wird eine lineare "
 "Farbskala verwendet."
 
-msgid ""
-"When allowing CREATE TABLE AS option in SQL Lab, this option forces the "
-"table to be created in this schema"
-msgstr ""
-"Wenn Sie die Option CREATE TABLE AS in SQL Lab zulassen, erzwingt diese "
-"Option, dass die Tabelle in diesem Schema erstellt wird"
-
 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 "
@@ -13414,8 +13602,13 @@ msgid ""
 "When the secondary temporal columns are filtered, apply the same filter "
 "to the main datetime column."
 msgstr ""
-"Wenn die sekundären Zeitspalten gefiltert sind, wenden Sie denselben Filter "
-"auf die Haupt-Zeitspalte an."
+"Wenn die sekundären Zeitspalten gefiltert sind, wenden Sie denselben "
+"Filter auf die Haupt-Zeitspalte an."
+
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
 
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
@@ -13442,24 +13635,16 @@ msgstr ""
 "Bei Verwendung einer anderen als der adaptiven Formatierung können sich "
 "Beschriftungen überschneiden"
 
-msgid "When using this option, default value can’t be set"
-msgstr "Bei Verwendung dieser Option kann der Standardwert nicht festgelegt werden"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr ""
 "Ob sich der Fortschrittsbalken überschneidet, wenn mehrere Datengruppen "
 "vorhanden sind"
 
-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"
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-"Ob diese Spalte im Abschnitt \"Filter\" der Erkunden-Ansicht verfügbar "
-"gemacht wird."
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -13508,6 +13693,10 @@ msgstr "Ob eine Legende für das Diagramm angezeigt werden soll"
 msgid "Whether to display bubbles on top of countries"
 msgstr "Ob Blasen über Ländern angezeigt werden sollen"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Ob eine Legende für das Diagramm angezeigt werden soll"
+
 msgid "Whether to display the aggregate count"
 msgstr "Ob die Gesamtanzahl angezeigt werden soll"
 
@@ -13517,14 +13706,6 @@ msgstr "Ob die interaktive Datentabelle angezeigt werden soll"
 msgid "Whether to display the labels."
 msgstr "Ob die Beschriftungen angezeigt werden sollen."
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-"Ob die Beschriftungen angezeigt werden sollen. Beachten Sie, dass die "
-"Beschriftung nur angezeigt wird, wenn der Schwellenwert von 5 % erreicht "
-"ist."
-
 msgid "Whether to display the legend (toggles)"
 msgstr "Ob die Legende angezeigt werden soll (Wechselschalter)"
 
@@ -13540,6 +13721,10 @@ msgstr "Ob die Min- und Max-Werte der Y-Achse angezeigt werden sollen"
 msgid "Whether to display the numerical values within the cells"
 msgstr "Ob die numerischen Werte innerhalb der Zellen angezeigt werden sollen"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Ob der Prozentsatz in Tooltip aufgenommen werden soll"
+
 msgid "Whether to display the stroke"
 msgstr "Ob der Strich dargestellt werden soll"
 
@@ -13552,9 +13737,17 @@ msgstr "Ob der Zeitstempel angezeigt werden soll"
 msgid "Whether to display the tooltip labels."
 msgstr "Ob die Tooltip-Beschriftungen angezeigt werden sollen."
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Ob die numerischen Werte innerhalb der Zellen angezeigt werden sollen"
+
 msgid "Whether to display the trend line"
 msgstr "Ob die Trendlinie angezeigt werden soll"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Ob die Gesamtanzahl angezeigt werden soll"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr "Ob das Ändern der Diagrammposition und -skalierung aktiviert werden soll."
 
@@ -13581,37 +13774,16 @@ msgstr "Ob die im Zeitabschnitt definierte Zeitgranularität einbezogen werden s
 msgid "Whether to make the grid 3D"
 msgstr "Ob das Raster in 3D umgewandelt werden soll"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "Ob das Histogramm kumulativ dargestellt werden soll"
-
-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"
-
-msgid "Whether to normalize the histogram"
-msgstr "Ob das Histogramm normalisiert werden soll"
-
 msgid "Whether to populate autocomplete filters options"
 msgstr "Ob Optionen für Auto-Vervollständigen-Filter vorgefühlt werden sollen"
 
-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"
-
 msgid "Whether to show as Nightingale chart."
 msgstr "Ob als Nightingale-Diagramm angezeigt werden soll."
 
+#, fuzzy
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar 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 "
@@ -13635,11 +13807,6 @@ msgstr "Ob aufsteigend oder absteigend auf der Basisachse sortiert werden soll."
 msgid "Whether to sort descending or ascending"
 msgstr "Ob absteigend oder aufsteigend sortiert werden soll"
 
-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"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 "Ob die Ergebnisse nach der ausgewählten Metrik in absteigender "
@@ -13701,9 +13868,6 @@ msgstr "Beschreibung Ihrer Anfrage"
 msgid "Write a handlebars template to render the data"
 msgstr "Handlebars-Template zur Darstellung der Daten verfassen"
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "X-ACHSE TITEL UNTERER RAND"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "X AXIS TITLE MARGIN"
 
@@ -13722,6 +13886,10 @@ msgstr "X Achsenbeschriftung"
 msgid "X Axis Title"
 msgstr "Titel der X-Achse"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Y-Achse Titelrand"
+
 msgid "X Log Scale"
 msgstr "X-Log-Skala"
 
@@ -13743,6 +13911,9 @@ msgstr "X-Achse"
 msgid "XScale Interval"
 msgstr "X-Skalen-Intervall"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Y 2 Grenzen"
 
@@ -13868,6 +14039,19 @@ msgstr ""
 "vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil "
 "Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie überschreiben möchten?"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr "Sie können"
 
@@ -13952,9 +14136,6 @@ msgstr "Sie haben keinen Zugriff auf dieses Dataset."
 msgid "You don't have access to this embedded dashboard config."
 msgstr "Sie haben keinen Zugriff auf diese eingebettete Dashboard-Konfiguration."
 
-msgid "You don't have any favorites yet!"
-msgstr "Sie haben noch keine Favoriten!"
-
 msgid "You don't have permission to modify the value."
 msgstr "Sie sind nicht berechtigt, den Wert zu ändern."
 
@@ -14041,6 +14222,9 @@ msgstr "Ihr Diagramm ist nicht aktuell"
 msgid "Your chart is ready to go!"
 msgstr "Ihr Chart ist startklar!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 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 "
@@ -14071,6 +14255,9 @@ msgstr "Ihre Abfrage wurde gespeichert"
 msgid "Your query was updated"
 msgstr "Ihre Abfrage wurde angehalten"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "Ihr Bericht konnte nicht gelöscht werden"
 
@@ -14083,6 +14270,10 @@ msgstr "Fehlende-Werte-Ersetzung"
 msgid "Zoom"
 msgstr "Zoom"
 
+#, fuzzy
+msgid "Zoom level"
+msgstr "Zoombereich"
+
 msgid "Zoom level of the map"
 msgstr "Zoomstufe der Karte"
 
@@ -14209,9 +14400,6 @@ msgstr "bei"
 msgid "auto"
 msgstr "automatisch"
 
-msgid "auto (Smooth)"
-msgstr "automatisch (geglättet)"
-
 msgid "background"
 msgstr "Hintergrund"
 
@@ -14257,9 +14445,6 @@ msgstr "ändern"
 msgid "chart"
 msgstr "Diagramm"
 
-msgid "charts"
-msgstr "Diagramme"
-
 msgid "choose WHERE or HAVING..."
 msgstr "Wählen Sie WHERE oder HAVING…"
 
@@ -14269,6 +14454,10 @@ msgstr "Alle Filter löschen"
 msgid "click here"
 msgstr "klicken Sie hier"
 
+#, fuzzy
+msgid "close"
+msgstr "Schließen"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr "Code ISO 3166-1 alpha-2 (cca2)"
 
@@ -14318,15 +14507,9 @@ msgstr "css_template"
 msgid "cumsum"
 msgstr "cumsum"
 
-msgid "cumulative"
-msgstr "kumulativ"
-
 msgid "dashboard"
 msgstr "Dashboard"
 
-msgid "dashboards"
-msgstr "Dashboards"
-
 msgid "database"
 msgstr "Datenbank"
 
@@ -14391,9 +14574,6 @@ msgstr "deckGL"
 msgid "default"
 msgstr "Standard"
 
-msgid "delete"
-msgstr "Löschen"
-
 msgid "descendant"
 msgstr "Nachkomme"
 
@@ -14406,9 +14586,6 @@ msgstr "Abweichung"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr "dialect+driver://username:password@host:port/database"
 
-msgid "draft"
-msgstr "Entwurf"
-
 msgid "dttm"
 msgstr "dttm"
 
@@ -14448,9 +14625,6 @@ msgstr "z.B. world_population"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "z.B. xy12345.us-east-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "z. B. eine Spalte „user id“"
-
 msgid "edit mode"
 msgstr "Bearbeitungsmodus"
 
@@ -14460,6 +14634,10 @@ msgstr "E-Mail-Betreff"
 msgid "entries"
 msgstr "Einträge"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "Einträge"
+
 msgid "error"
 msgstr "Fehler"
 
@@ -14526,13 +14704,6 @@ msgstr "hier"
 msgid "hour"
 msgstr "Stunde"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-"CSS-Attribut zum Rendern von Bildern des Canvas-Objekts, das definiert, "
-"wie der Browser das Bild hochskaliert"
-
 msgid "in"
 msgstr "in"
 
@@ -14542,6 +14713,10 @@ msgstr " "
 msgid "invalid email"
 msgstr "ungültige E-Mail"
 
+#, fuzzy
+msgid "is"
+msgstr "Klassen"
+
 msgid "is expected to be a Mapbox URL"
 msgstr "soll eine Mapbox-URL sein"
 
@@ -14551,6 +14726,29 @@ msgstr "wird als Zahl erwartet"
 msgid "is expected to be an integer"
 msgstr "wird als Ganzzahl erwartet"
 
+#, fuzzy, python-format
+msgid ""
+"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."
+
+#, fuzzy, python-format
+msgid ""
+"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."
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "Schlüssel a-z"
 
@@ -14673,18 +14871,9 @@ msgstr "P99"
 msgid "page_size.all"
 msgstr "page_size.all"
 
-msgid "page_size.entries"
-msgstr "page_size.entries"
-
-msgid "page_size.show"
-msgstr "page_size.show"
-
 msgid "pending"
 msgstr "ausstehend"
 
-msgid "percentile (exclusive)"
-msgstr "Perzentil (exklusiv)"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14695,24 +14884,22 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "Permalink-Status nicht gefunden"
 
-msgid "pixelated (Sharp)"
-msgstr "Gepixelt (scharf)"
-
 msgid "pixels"
 msgstr "Pixel"
 
 msgid "previous calendar month"
 msgstr "vorheriger Kalendermonat"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "vorheriges Kalenderjahr"
+
 msgid "previous calendar week"
 msgstr "vorherige Kalenderwoche"
 
 msgid "previous calendar year"
 msgstr "vorheriges Kalenderjahr"
 
-msgid "published"
-msgstr "veröffentlicht"
-
 msgid "quarter"
 msgstr "Quartal"
 
@@ -14731,9 +14918,6 @@ msgstr "Neu starten"
 msgid "recent"
 msgstr "Kürzlich"
 
-msgid "recents"
-msgstr "Kürzlich"
-
 msgid "recipients"
 msgstr "Empfänger"
 
@@ -14755,8 +14939,9 @@ msgstr "Sicherheit auf Zeilenebene"
 msgid "running"
 msgstr "laufend"
 
-msgid "saved queries"
-msgstr "gespeicherte Abfragen"
+#, fuzzy
+msgid "save"
+msgstr "Speichern"
 
 msgid "seconds"
 msgstr "Sekunden"
@@ -14773,9 +14958,6 @@ msgstr ""
 "Zeitreihen verwenden den gleichen Maßstab; Änderung: Änderungen im "
 "Vergleich zum ersten Datenpunkt in jeder Datenreihe anzeigen"
 
-msgid "shift start date"
-msgstr "Datum des Schichtbeginns"
-
 msgid "sql"
 msgstr "sql"
 
@@ -14831,9 +15013,6 @@ msgstr "Symbol für Zeittyp"
 msgid "textarea"
 msgstr "Textfeld"
 
-msgid "to"
-msgstr "bis"
-
 msgid "top"
 msgstr "Oben"
 
@@ -14843,6 +15022,14 @@ msgstr "Rückgängig"
 msgid "unknown type icon"
 msgstr "Symbol für unbekannten Typ"
 
+#, fuzzy
+msgid "unset"
+msgstr "Juni"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "%s aktualisiert"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14868,9 +15055,6 @@ msgstr "Varianz"
 msgid "view instructions"
 msgstr "Anleitung anzeigen"
 
-msgid "virtual"
-msgstr "virtuell"
-
 msgid "viz type"
 msgstr "Visualisierungstyp"
 
@@ -14906,3 +15090,6 @@ msgstr "Jahr"
 
 msgid "zoom area"
 msgstr "Zoombereich"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/en/LC_MESSAGES/messages.po b/superset/translations/en/LC_MESSAGES/messages.po
index 8b060e4a208b062dd10b6977b67b333667b0d2c5..14e86739a6d1afae102dea7a75a584e72b4c05ad 100644
--- a/superset/translations/en/LC_MESSAGES/messages.po
+++ b/superset/translations/en/LC_MESSAGES/messages.po
@@ -17,16 +17,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2016-05-02 08:49-0700\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language: en\n"
 "Language-Team: en <LL@li.org>\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -66,7 +66,10 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
 
@@ -84,9 +87,17 @@ msgstr ""
 msgid " a new one"
 msgstr ""
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr ""
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr ""
 
@@ -145,10 +156,7 @@ msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr ""
 
 #, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
+msgid "%(label)s file"
 msgstr ""
 
 #, python-format
@@ -163,22 +171,6 @@ msgstr ""
 msgid "%(object)s does not exist in this database."
 msgstr ""
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr ""
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr ""
@@ -194,13 +186,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr ""
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -209,10 +194,6 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#, python-format
-msgid "%(type)s File"
-msgstr ""
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -264,10 +245,6 @@ msgstr ""
 msgid "%s column(s)"
 msgstr ""
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -357,6 +334,10 @@ msgid ""
 "\n"
 msgstr ""
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr ""
 
@@ -417,6 +398,12 @@ msgstr ""
 msgid "10 minute"
 msgstr ""
 
+msgid "10/90 percentiles"
+msgstr ""
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr ""
 
@@ -513,6 +500,9 @@ msgstr ""
 msgid "5 seconds"
 msgstr ""
 
+msgid "5/95 percentiles"
+msgstr ""
+
 msgid "52 weeks"
 msgstr ""
 
@@ -579,9 +569,6 @@ msgstr ""
 msgid "A Big Number"
 msgstr ""
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr ""
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr ""
 
@@ -591,6 +578,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr ""
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -663,11 +653,6 @@ msgid ""
 "templating syntax"
 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 ""
 
@@ -764,25 +749,25 @@ msgstr ""
 msgid "Add CSS template"
 msgstr ""
 
-msgid "Add Chart"
+msgid "Add Dashboard"
 msgstr ""
 
-msgid "Add Column"
+msgid "Add Divider"
 msgstr ""
 
-msgid "Add Dashboard"
+msgid "Add Filter"
 msgstr ""
 
-msgid "Add Database"
+msgid "Add Layer"
 msgstr ""
 
 msgid "Add Log"
 msgstr ""
 
-msgid "Add Metric"
+msgid "Add Report"
 msgstr ""
 
-msgid "Add Report"
+msgid "Add Role"
 msgstr ""
 
 msgid "Add Rule"
@@ -791,6 +776,9 @@ msgstr ""
 msgid "Add Tag"
 msgstr ""
 
+msgid "Add User"
+msgstr ""
+
 msgid "Add a Plugin"
 msgstr ""
 
@@ -867,9 +855,6 @@ msgid ""
 "displayed in the filter."
 msgstr ""
 
-msgid "Add filters and dividers"
-msgstr ""
-
 msgid "Add item"
 msgstr ""
 
@@ -885,6 +870,9 @@ msgstr ""
 msgid "Add new formatter"
 msgstr ""
 
+msgid "Add or edit filters"
+msgstr ""
+
 msgid "Add required control values to preview chart"
 msgstr ""
 
@@ -906,12 +894,15 @@ msgstr ""
 msgid "Add to dashboard"
 msgstr ""
 
-msgid "Add/Edit Filters"
-msgstr ""
-
 msgid "Added"
 msgstr ""
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -927,9 +918,6 @@ msgstr ""
 msgid "Additional information"
 msgstr ""
 
-msgid "Additional metadata"
-msgstr ""
-
 msgid "Additional padding for legend."
 msgstr ""
 
@@ -993,6 +981,13 @@ msgstr ""
 msgid "Advanced-Analytics"
 msgstr ""
 
+msgid "Affected Charts"
+msgstr ""
+
+#, fuzzy, python-format
+msgid "Affected Dashboards"
+msgstr ""
+
 msgid "After"
 msgstr ""
 
@@ -1023,6 +1018,9 @@ msgstr ""
 msgid "Aggregation"
 msgstr ""
 
+msgid "Aggregation Method"
+msgstr ""
+
 msgid "Aggregation function"
 msgstr ""
 
@@ -1100,6 +1098,10 @@ msgstr ""
 msgid "All"
 msgstr ""
 
+#, python-format
+msgid "All %s hidden columns"
+msgstr ""
+
 msgid "All Text"
 msgstr ""
 
@@ -1115,25 +1117,13 @@ msgstr ""
 msgid "All panels"
 msgstr ""
 
-msgid "All panels with this column will be affected by this filter"
-msgstr ""
-
 msgid "Allow CREATE TABLE AS"
 msgstr ""
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr ""
-
 msgid "Allow CREATE VIEW AS"
 msgstr ""
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr ""
-
-msgid "Allow Csv Upload"
-msgstr ""
-
-msgid "Allow DML"
+msgid "Allow DDL and DML"
 msgstr ""
 
 msgid "Allow changing catalogs"
@@ -1150,6 +1140,9 @@ msgstr ""
 msgid "Allow creation of new tables based on queries"
 msgstr ""
 
+msgid "Allow creation of new values"
+msgstr ""
+
 msgid "Allow creation of new views based on queries"
 msgstr ""
 
@@ -1164,26 +1157,22 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr ""
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-
 msgid "Allow node selections"
 msgstr ""
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr ""
 
-msgid "Allow this database to be explored"
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
 msgstr ""
 
-msgid "Allow this database to be queried in SQL Lab"
+msgid "Allow this database to be explored"
 msgstr ""
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
+msgid "Allow this database to be queried in SQL Lab"
 msgstr ""
 
 msgid "Allowed Domains (comma separated)"
@@ -1225,6 +1214,9 @@ msgstr ""
 msgid "An error has occurred"
 msgstr ""
 
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr ""
+
 msgid "An error occurred"
 msgstr ""
 
@@ -1234,6 +1226,9 @@ msgstr ""
 msgid "An error occurred when running alert query"
 msgstr ""
 
+msgid "An error occurred while accessing the copy link."
+msgstr ""
+
 msgid "An error occurred while accessing the value."
 msgstr ""
 
@@ -1246,6 +1241,9 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr ""
 
+msgid "An error occurred while creating the copy link."
+msgstr ""
+
 msgid "An error occurred while creating the data source"
 msgstr ""
 
@@ -1379,6 +1377,10 @@ msgid ""
 "button."
 msgstr ""
 
+#, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr ""
+
 msgid "An error occurred while updating the value."
 msgstr ""
 
@@ -1558,12 +1560,6 @@ msgstr ""
 msgid "Apply metrics on"
 msgstr ""
 
-msgid "Apply to all panels"
-msgstr ""
-
-msgid "Apply to specific panels"
-msgstr ""
-
 msgid "April"
 msgstr ""
 
@@ -1605,6 +1601,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected queries?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected roles?"
+msgstr ""
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr ""
 
@@ -1614,6 +1613,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected templates?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected users?"
+msgstr ""
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr ""
 
@@ -1650,13 +1652,10 @@ msgstr ""
 msgid "Assist"
 msgstr ""
 
-msgid "Associated Charts"
-msgstr ""
-
-msgid "Async Execution"
+msgid "Asynchronous query execution"
 msgstr ""
 
-msgid "Asynchronous query execution"
+msgid "Attribution"
 msgstr ""
 
 msgid "August"
@@ -1683,12 +1682,24 @@ msgstr ""
 msgid "Automatic Color"
 msgstr ""
 
+msgid "Autosize Column"
+msgstr ""
+
+msgid "Autosize all columns"
+msgstr ""
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr ""
 
 msgid "Average"
 msgstr ""
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr ""
 
@@ -1725,6 +1736,9 @@ msgstr ""
 msgid "Backend"
 msgstr ""
 
+msgid "Background Color"
+msgstr ""
+
 msgid "Backward values"
 msgstr ""
 
@@ -1740,9 +1754,6 @@ msgstr ""
 msgid "Bar Chart"
 msgstr ""
 
-msgid "Bar Chart (legacy)"
-msgstr ""
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
 
@@ -1755,10 +1766,22 @@ msgstr ""
 msgid "Base"
 msgstr ""
 
+msgid "Base exponent"
+msgstr ""
+
+msgid "Base height"
+msgstr ""
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+msgid "Base width"
+msgstr ""
+
 msgid "Based on a metric"
 msgstr ""
 
@@ -1778,9 +1801,6 @@ msgstr ""
 msgid "Batch editing %d filters:"
 msgstr ""
 
-msgid "Battery level over time"
-msgstr ""
-
 msgid "Be careful."
 msgstr ""
 
@@ -1802,6 +1822,12 @@ msgstr ""
 msgid "Bins"
 msgstr ""
 
+msgid "Border color"
+msgstr ""
+
+msgid "Border width"
+msgstr ""
+
 msgid "Bottom"
 msgstr ""
 
@@ -1906,9 +1932,6 @@ msgstr ""
 msgid "Business"
 msgstr ""
 
-msgid "Business Data Type"
-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"
@@ -1973,7 +1996,7 @@ msgstr ""
 msgid "CSS templates could not be deleted."
 msgstr ""
 
-msgid "CSV Upload"
+msgid "CSV upload"
 msgstr ""
 
 msgid "CTAS & CVAS SCHEMA"
@@ -1985,7 +2008,7 @@ msgid ""
 "last statement. Then, try running your query again."
 msgstr ""
 
-msgid "CTAS Schema"
+msgid "CUSTOM"
 msgstr ""
 
 msgid ""
@@ -2000,9 +2023,6 @@ msgstr ""
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr ""
 
-msgid "Cache Timeout"
-msgstr ""
-
 msgid "Cache Timeout (seconds)"
 msgstr ""
 
@@ -2047,9 +2067,6 @@ msgstr ""
 msgid "Can select multiple values"
 msgstr ""
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr ""
-
 msgid "Cancel"
 msgstr ""
 
@@ -2062,6 +2079,10 @@ msgstr ""
 msgid "Cannot delete a database that has datasets attached"
 msgstr ""
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr ""
 
@@ -2072,6 +2093,9 @@ msgstr ""
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr ""
 
+msgid "Cartodiagram"
+msgstr ""
+
 msgid "Catalog"
 msgstr ""
 
@@ -2148,10 +2172,10 @@ msgstr ""
 msgid "Change order of rows."
 msgstr ""
 
-msgid "Changed By"
+msgid "Changed by"
 msgstr ""
 
-msgid "Changed by"
+msgid "Changed on"
 msgstr ""
 
 msgid "Changes saved."
@@ -2201,9 +2225,6 @@ msgstr ""
 msgid "Chart %(id)s not found"
 msgstr ""
 
-msgid "Chart Cache Timeout"
-msgstr ""
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr ""
@@ -2298,6 +2319,9 @@ msgstr ""
 msgid "Chart properties updated"
 msgstr ""
 
+msgid "Chart size"
+msgstr ""
+
 msgid "Chart title"
 msgstr ""
 
@@ -2345,6 +2369,9 @@ msgstr ""
 msgid "Choose File"
 msgstr ""
 
+msgid "Choose a chart for displaying on the map"
+msgstr ""
+
 msgid "Choose a chart or dashboard not both"
 msgstr ""
 
@@ -2366,9 +2393,6 @@ msgstr ""
 msgid "Choose a source"
 msgstr ""
 
-msgid "Choose a source and a target"
-msgstr ""
-
 msgid "Choose a target"
 msgstr ""
 
@@ -2442,9 +2466,6 @@ msgstr ""
 msgid "Circular"
 msgstr ""
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2465,7 +2486,9 @@ msgstr ""
 msgid "Clear form"
 msgstr ""
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 
 msgid ""
@@ -2492,6 +2515,9 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr ""
 
+msgid "Click to add new layer"
+msgstr ""
+
 msgid "Click to cancel sorting"
 msgstr ""
 
@@ -2609,10 +2635,10 @@ msgstr ""
 msgid "Column Configuration"
 msgstr ""
 
-msgid "Column Data Types"
+msgid "Column Formatting"
 msgstr ""
 
-msgid "Column Formatting"
+msgid "Column Settings"
 msgstr ""
 
 msgid ""
@@ -2629,9 +2655,6 @@ msgstr ""
 msgid "Column data types"
 msgstr ""
 
-msgid "Column datatype"
-msgstr ""
-
 msgid "Column header tooltip"
 msgstr ""
 
@@ -2657,16 +2680,17 @@ msgid ""
 "label is used."
 msgstr ""
 
-msgid "Columnar Upload"
+msgid "Column type"
 msgstr ""
 
-msgid "Columns"
+msgid "Columnar upload"
 msgstr ""
 
-msgid "Columns To Be Parsed as Dates"
+msgid "Columns"
 msgstr ""
 
-msgid "Columns To Read"
+#, python-format
+msgid "Columns (%s)"
 msgstr ""
 
 #, python-format
@@ -2680,6 +2704,9 @@ msgstr ""
 msgid "Columns subtotal position"
 msgstr ""
 
+msgid "Columns to be parsed as dates"
+msgstr ""
+
 msgid "Columns to calculate distribution across."
 msgstr ""
 
@@ -2695,6 +2722,9 @@ msgstr ""
 msgid "Columns to group by on the rows"
 msgstr ""
 
+msgid "Columns to read"
+msgstr ""
+
 msgid "Combine metrics"
 msgstr ""
 
@@ -2729,17 +2759,6 @@ msgid ""
 "and color."
 msgstr ""
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-
 msgid "Comparison"
 msgstr ""
 
@@ -2797,18 +2816,27 @@ msgstr ""
 msgid "Configure the basics of your Annotation Layer."
 msgstr ""
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 
 msgid "Configure your how you overlay is displayed here."
 msgstr ""
 
+msgid "Confirm Password"
+msgstr ""
+
 msgid "Confirm overwrite"
 msgstr ""
 
 msgid "Confirm save"
 msgstr ""
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr ""
 
@@ -2839,9 +2867,6 @@ msgstr ""
 msgid "Connection failed, please check your connection settings."
 msgstr ""
 
-msgid "Connection looks good!"
-msgstr ""
-
 msgid "Content format"
 msgstr ""
 
@@ -2878,19 +2903,19 @@ msgstr ""
 msgid "Copy"
 msgstr ""
 
-msgid "Copy SELECT statement to the clipboard"
+msgid "Copy SELECT statement"
 msgstr ""
 
-msgid "Copy and Paste JSON credentials"
+msgid "Copy SELECT statement to the clipboard"
 msgstr ""
 
-msgid "Copy and paste the entire service account .json file here"
+msgid "Copy URL"
 msgstr ""
 
-msgid "Copy link"
+msgid "Copy and Paste JSON credentials"
 msgstr ""
 
-msgid "Copy message"
+msgid "Copy link"
 msgstr ""
 
 #, python-format
@@ -2909,6 +2934,9 @@ msgstr ""
 msgid "Copy query link to your clipboard"
 msgstr ""
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr ""
 
@@ -2924,6 +2952,9 @@ msgstr ""
 msgid "Copy to clipboard"
 msgstr ""
 
+msgid "Corner Radius"
+msgstr ""
+
 msgid "Correlation"
 msgstr ""
 
@@ -2953,6 +2984,9 @@ msgstr ""
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr ""
 
@@ -3043,6 +3077,9 @@ msgstr ""
 msgid "Creator"
 msgstr ""
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr ""
 
@@ -3122,6 +3159,9 @@ msgstr ""
 msgid "Custom color palettes"
 msgstr ""
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 msgid "Custom date"
 msgstr ""
 
@@ -3154,9 +3194,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr ""
 
-msgid "D3 Format"
-msgstr ""
-
 msgid "D3 format"
 msgstr ""
 
@@ -3215,6 +3252,18 @@ msgstr ""
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr ""
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+msgid "Dashboard cannot be favorited."
+msgstr ""
+
+msgid "Dashboard cannot be unfavorited."
+msgstr ""
+
+msgid "Dashboard color configuration could not be updated."
+msgstr ""
+
 msgid "Dashboard could not be deleted."
 msgstr ""
 
@@ -3227,6 +3276,9 @@ msgstr ""
 msgid "Dashboard imported"
 msgstr ""
 
+msgid "Dashboard native filters could not be patched."
+msgstr ""
+
 msgid "Dashboard parameters are invalid."
 msgstr ""
 
@@ -3267,9 +3319,6 @@ msgstr ""
 msgid "Data"
 msgstr ""
 
-msgid "Data Imported"
-msgstr ""
-
 msgid "Data Table"
 msgstr ""
 
@@ -3294,6 +3343,9 @@ msgstr ""
 msgid "Data for %s"
 msgstr ""
 
+msgid "Data imported"
+msgstr ""
+
 msgid "Data preview"
 msgstr ""
 
@@ -3447,13 +3499,6 @@ msgid ""
 "database table to the left or "
 msgstr ""
 
-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 "Datasets could not be deleted."
 msgstr ""
 
@@ -3487,9 +3532,6 @@ msgstr ""
 msgid "Date/Time"
 msgstr ""
 
-msgid "Datetime Format"
-msgstr ""
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3517,13 +3559,10 @@ msgstr ""
 msgid "December"
 msgstr ""
 
-msgid "Decides which column to sort the base axis by."
+msgid "Decides which column or measure to sort the base axis by."
 msgstr ""
 
-msgid "Decides which measure to sort the base axis by."
-msgstr ""
-
-msgid "Decimal Character"
+msgid "Decimal character"
 msgstr ""
 
 msgid "Deck.gl - 3D Grid"
@@ -3565,16 +3604,16 @@ msgstr ""
 msgid "Default Catalog"
 msgstr ""
 
-msgid "Default Endpoint"
-msgstr ""
-
 msgid "Default Schema"
 msgstr ""
 
 msgid "Default URL"
 msgstr ""
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
 
 msgid "Default Value"
@@ -3594,9 +3633,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr ""
 
-msgid "Default value is required"
-msgstr ""
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 
@@ -3641,9 +3677,6 @@ msgid ""
 "[Periods] text box"
 msgstr ""
 
-msgid "Defines how each series is broken down"
-msgstr ""
-
 msgid "Defines the grid size in pixels"
 msgstr ""
 
@@ -3697,9 +3730,15 @@ msgstr ""
 msgid "Delete Report?"
 msgstr ""
 
+msgid "Delete Role?"
+msgstr ""
+
 msgid "Delete Template?"
 msgstr ""
 
+msgid "Delete User?"
+msgstr ""
+
 msgid "Delete all Really?"
 msgstr ""
 
@@ -3718,12 +3757,18 @@ msgstr ""
 msgid "Delete query"
 msgstr ""
 
+msgid "Delete role"
+msgstr ""
+
 msgid "Delete template"
 msgstr ""
 
 msgid "Delete this container and save to remove this message."
 msgstr ""
 
+msgid "Delete user"
+msgstr ""
+
 msgid "Deleted"
 msgstr ""
 
@@ -3786,33 +3831,43 @@ msgid "Deleted %s"
 msgstr ""
 
 #, python-format
-msgid "Deleted: %s"
+msgid "Deleted role: %s"
 msgstr ""
 
-msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+#, python-format
+msgid "Deleted roles: %s"
 msgstr ""
 
-msgid "Delimited long & lat single column"
+#, python-format
+msgid "Deleted user: %s"
 msgstr ""
 
-msgid "Delimiter"
+#, python-format
+msgid "Deleted users: %s"
 msgstr ""
 
-msgid "Delivery method"
+#, python-format
+msgid "Deleted: %s"
 msgstr ""
 
-msgid "Demographics"
+msgid ""
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 
-msgid "Density"
+msgid "Delimited long & lat single column"
 msgstr ""
 
-msgid "Dependent on"
+msgid "Delimiter"
+msgstr ""
+
+msgid "Delivery method"
 msgstr ""
 
-msgid "Deprecated"
+msgid "Density"
+msgstr ""
+
+msgid "Dependent on"
 msgstr ""
 
 msgid "Description"
@@ -3904,21 +3959,24 @@ msgstr ""
 msgid "Discard"
 msgstr ""
 
-msgid "Display"
-msgstr ""
-
 msgid "Display Name"
 msgstr ""
 
 msgid "Display all"
 msgstr ""
 
+msgid "Display column in the chart"
+msgstr ""
+
 msgid "Display column level subtotal"
 msgstr ""
 
 msgid "Display column level total"
 msgstr ""
 
+msgid "Display column name"
+msgstr ""
+
 msgid "Display configuration"
 msgstr ""
 
@@ -3939,7 +3997,7 @@ msgstr ""
 msgid "Display row level total"
 msgstr ""
 
-msgid "Display settings"
+msgid "Display type icon"
 msgstr ""
 
 msgid ""
@@ -3955,9 +4013,6 @@ msgstr ""
 msgid "Distribution"
 msgstr ""
 
-msgid "Distribution - Bar Chart"
-msgstr ""
-
 msgid "Divider"
 msgstr ""
 
@@ -3985,9 +4040,18 @@ msgstr ""
 msgid "Download as image"
 msgstr ""
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr ""
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr ""
 
@@ -4082,6 +4146,13 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr ""
 
+msgid "Duplicate role"
+msgstr ""
+
+#, python-format
+msgid "Duplicate role %(name)s"
+msgstr ""
+
 msgid "Duplicate tab"
 msgstr ""
 
@@ -4094,29 +4165,12 @@ msgid ""
 "the cache. Note this defaults to the global timeout if undefined."
 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 ""
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-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."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4133,6 +4187,9 @@ msgstr ""
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr ""
 
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr ""
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr ""
 
@@ -4154,10 +4211,6 @@ msgstr ""
 msgid "ERROR"
 msgstr ""
 
-#, python-format
-msgid "ERROR: %s"
-msgstr ""
-
 msgid "Edge length"
 msgstr ""
 
@@ -4182,45 +4235,36 @@ msgstr ""
 msgid "Edit CSS template properties"
 msgstr ""
 
-msgid "Edit Chart"
-msgstr ""
-
 msgid "Edit Chart Properties"
 msgstr ""
 
-msgid "Edit Column"
-msgstr ""
-
 msgid "Edit Dashboard"
 msgstr ""
 
-msgid "Edit Database"
-msgstr ""
-
 msgid "Edit Dataset "
 msgstr ""
 
 msgid "Edit Log"
 msgstr ""
 
-msgid "Edit Metric"
-msgstr ""
-
 msgid "Edit Plugin"
 msgstr ""
 
 msgid "Edit Report"
 msgstr ""
 
-msgid "Edit Rule"
+msgid "Edit Role"
 msgstr ""
 
-msgid "Edit Table"
+msgid "Edit Rule"
 msgstr ""
 
 msgid "Edit Tag"
 msgstr ""
 
+msgid "Edit User"
+msgstr ""
+
 msgid "Edit annotation"
 msgstr ""
 
@@ -4258,6 +4302,9 @@ msgstr ""
 msgid "Edit query"
 msgstr ""
 
+msgid "Edit role"
+msgstr ""
+
 msgid "Edit template"
 msgstr ""
 
@@ -4271,6 +4318,9 @@ msgstr ""
 msgid "Edit time range"
 msgstr ""
 
+msgid "Edit user"
+msgstr ""
+
 msgid "Edited"
 msgstr ""
 
@@ -4296,6 +4346,12 @@ msgstr ""
 msgid "Elevation"
 msgstr ""
 
+msgid "Email"
+msgstr ""
+
+msgid "Email is required"
+msgstr ""
+
 msgid "Email reports active"
 msgstr ""
 
@@ -4312,6 +4368,9 @@ msgstr ""
 msgid "Embed dashboard"
 msgstr ""
 
+msgid "Embedded dashboard could not be deleted."
+msgstr ""
+
 msgid "Embedding deactivated."
 msgstr ""
 
@@ -4321,9 +4380,6 @@ msgstr ""
 msgid "Emphasis"
 msgstr ""
 
-msgid "Employment and education"
-msgstr ""
-
 msgid "Empty circle"
 msgstr ""
 
@@ -4345,9 +4401,6 @@ msgstr ""
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr ""
 
-msgid "Enable Filter Select"
-msgstr ""
-
 msgid "Enable cross-filtering"
 msgstr ""
 
@@ -4445,10 +4498,22 @@ msgstr ""
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr ""
 
-msgid "Entity"
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
 msgstr ""
 
-msgid "Entity ID"
+msgid "Enter the user's first name"
+msgstr ""
+
+msgid "Enter the user's last name"
+msgstr ""
+
+msgid "Enter the user's username"
+msgstr ""
+
+msgid "Entity"
 msgstr ""
 
 msgid "Equal Date Sizes"
@@ -4463,6 +4528,13 @@ msgstr ""
 msgid "Error Fetching Tagged Objects"
 msgstr ""
 
+#, python-format
+msgid "Error deleting %s"
+msgstr ""
+
+msgid "Error faving chart"
+msgstr ""
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr ""
@@ -4485,6 +4557,9 @@ msgstr ""
 msgid "Error message"
 msgstr ""
 
+msgid "Error parsing"
+msgstr ""
+
 msgid "Error reading CSV file"
 msgstr ""
 
@@ -4497,6 +4572,18 @@ msgstr ""
 msgid "Error saving dataset"
 msgstr ""
 
+msgid "Error unfaving chart"
+msgstr ""
+
+msgid "Error while adding role!"
+msgstr ""
+
+msgid "Error while adding user!"
+msgstr ""
+
+msgid "Error while duplicating role!"
+msgstr ""
+
 msgid "Error while fetching charts"
 msgstr ""
 
@@ -4504,10 +4591,25 @@ msgstr ""
 msgid "Error while fetching data: %s"
 msgstr ""
 
+msgid "Error while fetching permissions"
+msgstr ""
+
+msgid "Error while fetching roles"
+msgstr ""
+
+msgid "Error while fetching users"
+msgstr ""
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr ""
 
+msgid "Error while updating role!"
+msgstr ""
+
+msgid "Error while updating user!"
+msgstr ""
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr ""
@@ -4531,15 +4633,6 @@ msgstr ""
 msgid "Event"
 msgstr ""
 
-msgid "Event Flow"
-msgstr ""
-
-msgid "Event Names"
-msgstr ""
-
-msgid "Event definition"
-msgstr ""
-
 msgid "Event flow"
 msgstr ""
 
@@ -4561,10 +4654,10 @@ msgstr ""
 msgid "Examples"
 msgstr ""
 
-msgid "Excel Upload"
+msgid "Excel file format cannot be determined"
 msgstr ""
 
-msgid "Excel file format cannot be determined"
+msgid "Excel upload"
 msgstr ""
 
 msgid "Exclude selected values"
@@ -4653,12 +4746,6 @@ msgstr ""
 msgid "Export to Pivoted .CSV"
 msgstr ""
 
-msgid "Export to YAML"
-msgstr ""
-
-msgid "Export to YAML?"
-msgstr ""
-
 msgid "Export to full .CSV"
 msgstr ""
 
@@ -4677,10 +4764,7 @@ msgstr ""
 msgid "Expose in SQL Lab"
 msgstr ""
 
-msgid "Expose this DB in SQL Lab"
-msgstr ""
-
-msgid "Expression"
+msgid "Extent"
 msgstr ""
 
 msgid "Extra"
@@ -4702,10 +4786,6 @@ msgid ""
 "\"warning_markdown\": \"This is a warning.\" }`."
 msgstr ""
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr ""
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr ""
 
@@ -4723,6 +4803,9 @@ msgstr ""
 msgid "FEB"
 msgstr ""
 
+msgid "FIT DATA"
+msgstr ""
+
 msgid "FRI"
 msgstr ""
 
@@ -4732,14 +4815,13 @@ msgstr ""
 msgid "Factor to multiply the metric by"
 msgstr ""
 
-msgid "Failed"
+msgid "Fail login count"
 msgstr ""
 
-msgid "Failed at retrieving results"
+msgid "Failed"
 msgstr ""
 
-#, python-format
-msgid "Failed at stopping query. %s"
+msgid "Failed at retrieving results"
 msgstr ""
 
 msgid "Failed to create report"
@@ -4770,6 +4852,9 @@ msgstr ""
 msgid "Failed to start remote query on a worker."
 msgstr ""
 
+msgid "Failed to stop query."
+msgstr ""
+
 msgid "Failed to tag items"
 msgstr ""
 
@@ -4792,9 +4877,6 @@ msgstr ""
 msgid "February"
 msgstr ""
 
-msgid "Fetch Values Predicate"
-msgstr ""
-
 msgid "Fetch data preview"
 msgstr ""
 
@@ -4819,13 +4901,10 @@ msgstr ""
 msgid "File"
 msgstr ""
 
-msgid "File Settings"
-msgstr ""
-
 msgid "File extension is not allowed."
 msgstr ""
 
-msgid "File size exceeds the maximum allowed size."
+msgid "File settings"
 msgstr ""
 
 msgid "File upload"
@@ -4891,9 +4970,6 @@ msgstr ""
 msgid "Filter your charts"
 msgstr ""
 
-msgid "Filterable"
-msgstr ""
-
 msgid "Filters"
 msgstr ""
 
@@ -4906,6 +4982,15 @@ msgstr ""
 msgid "Filters for comparison must have a value"
 msgstr ""
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+msgid "Filters for values greater than or equal."
+msgstr ""
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr ""
@@ -4930,6 +5015,12 @@ msgstr ""
 msgid "First"
 msgstr ""
 
+msgid "First name"
+msgstr ""
+
+msgid "First name is required"
+msgstr ""
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5006,6 +5097,9 @@ msgstr ""
 msgid "Force refresh"
 msgstr ""
 
+msgid "Force refresh Slack channels list"
+msgstr ""
+
 msgid "Force refresh catalog list"
 msgstr ""
 
@@ -5120,6 +5214,9 @@ msgstr ""
 msgid "Geohash"
 msgstr ""
 
+msgid "Geometry Column"
+msgstr ""
+
 msgid "Get the last date by the date unit."
 msgstr ""
 
@@ -5177,9 +5274,6 @@ msgstr ""
 msgid "Group by"
 msgstr ""
 
-msgid "Groupable"
-msgstr ""
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5195,38 +5289,27 @@ msgstr ""
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-
 msgid "Has created by"
 msgstr ""
 
 msgid "Header"
 msgstr ""
 
-msgid "Header Row"
-msgstr ""
-
 msgid "Header row"
 msgstr ""
 
 msgid "Heatmap"
 msgstr ""
 
-msgid "Heatmap (legacy)"
-msgstr ""
-
-msgid "Heatmap Options"
-msgstr ""
-
 msgid "Height"
 msgstr ""
 
 msgid "Height of the sparkline"
 msgstr ""
 
+msgid "Hide Column"
+msgstr ""
+
 msgid "Hide Line"
 msgstr ""
 
@@ -5251,9 +5334,6 @@ msgstr ""
 msgid "Histogram"
 msgstr ""
 
-msgid "Histogram (legacy)"
-msgstr ""
-
 msgid "Home"
 msgstr ""
 
@@ -5326,18 +5406,12 @@ msgid ""
 "hive.server2.proxy.user property."
 msgstr ""
 
-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.<br/>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 ""
-
-msgid "If Table Already Exists"
+msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr ""
 
-msgid "If a metric is specified, sorting will be done based on the metric value"
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
 msgstr ""
 
 msgid ""
@@ -5345,7 +5419,7 @@ msgid ""
 "it sorts the results ascending."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
+msgid "If table already exists"
 msgstr ""
 
 msgid "Ignore cache when generating report"
@@ -5366,9 +5440,6 @@ msgstr ""
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr ""
 
-msgid "Impersonate the logged on user"
-msgstr ""
-
 msgid "Import"
 msgstr ""
 
@@ -5379,9 +5450,6 @@ msgstr ""
 msgid "Import Dashboard(s)"
 msgstr ""
 
-msgid "Import a table definition"
-msgstr ""
-
 msgid "Import chart failed for an unknown reason"
 msgstr ""
 
@@ -5412,12 +5480,12 @@ msgstr ""
 msgid "Import saved query failed for an unknown reason."
 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."
+msgid "In"
 msgstr ""
 
-msgid "In"
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
 msgstr ""
 
 msgid "Include Series"
@@ -5442,13 +5510,14 @@ msgstr ""
 msgid "Index"
 msgstr ""
 
-msgid "Index Column"
+msgid "Index column"
 msgstr ""
 
-msgid "Index Label"
+msgid "Index label"
 msgstr ""
 
-msgid "Index label"
+#, python-format
+msgid "Indexes (%s)"
 msgstr ""
 
 msgid "Info"
@@ -5469,6 +5538,12 @@ msgstr ""
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr ""
 
+msgid "Insert Layer URL"
+msgstr ""
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr ""
 
@@ -5499,9 +5574,6 @@ msgstr ""
 msgid "Intervals"
 msgstr ""
 
-msgid "Intensity"
-msgstr ""
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -5542,6 +5614,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr ""
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr ""
@@ -5605,6 +5680,9 @@ msgstr ""
 msgid "Invert current page"
 msgstr ""
 
+msgid "Is active?"
+msgstr ""
+
 msgid "Is certified"
 msgstr ""
 
@@ -5777,12 +5855,6 @@ msgstr ""
 msgid "Last"
 msgstr ""
 
-msgid "Last Changed"
-msgstr ""
-
-msgid "Last Modified"
-msgstr ""
-
 #, python-format
 msgid "Last Updated %s"
 msgstr ""
@@ -5791,6 +5863,9 @@ msgstr ""
 msgid "Last Updated %s by %s"
 msgstr ""
 
+msgid "Last Value"
+msgstr ""
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr ""
@@ -5798,12 +5873,21 @@ msgstr ""
 msgid "Last day"
 msgstr ""
 
+msgid "Last login"
+msgstr ""
+
 msgid "Last modified"
 msgstr ""
 
 msgid "Last month"
 msgstr ""
 
+msgid "Last name"
+msgstr ""
+
+msgid "Last name is required"
+msgstr ""
+
 msgid "Last quarter"
 msgstr ""
 
@@ -5816,15 +5900,36 @@ msgstr ""
 msgid "Last year"
 msgstr ""
 
+msgid "Lat"
+msgstr ""
+
 msgid "Latitude"
 msgstr ""
 
 msgid "Latitude of default viewport"
 msgstr ""
 
+msgid "Layer"
+msgstr ""
+
+msgid "Layer Name"
+msgstr ""
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr ""
 
+msgid "Layer title"
+msgstr ""
+
+msgid "Layer type"
+msgstr ""
+
+msgid "Layers"
+msgstr ""
+
 msgid "Layout"
 msgstr ""
 
@@ -5837,11 +5942,6 @@ msgstr ""
 msgid "Layout type of tree"
 msgstr ""
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-
 msgid "Least recently modified"
 msgstr ""
 
@@ -5905,11 +6005,6 @@ msgstr ""
 msgid "Limit type"
 msgstr ""
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-
 msgid "Limits the number of cells that get retrieved."
 msgstr ""
 
@@ -5945,6 +6040,9 @@ msgid ""
 "chart common in many fields."
 msgstr ""
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr ""
 
@@ -5972,9 +6070,15 @@ msgstr ""
 msgid "Link Copied!"
 msgstr ""
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr ""
 
+msgid "List Users"
+msgstr ""
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr ""
 
@@ -6041,6 +6145,9 @@ msgstr ""
 msgid "Login"
 msgstr ""
 
+msgid "Login count"
+msgstr ""
+
 msgid "Login with"
 msgstr ""
 
@@ -6050,6 +6157,9 @@ msgstr ""
 msgid "Logs"
 msgstr ""
 
+msgid "Lon"
+msgstr ""
+
 msgid "Long dashed"
 msgstr ""
 
@@ -6089,9 +6199,6 @@ msgstr ""
 msgid "Main"
 msgstr ""
 
-msgid "Main Datetime Column"
-msgstr ""
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6123,6 +6230,10 @@ msgstr ""
 msgid "Map"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "Map Options"
+msgstr ""
+
 msgid "Map Style"
 msgstr ""
 
@@ -6165,13 +6276,16 @@ msgstr ""
 msgid "Markup type"
 msgstr ""
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr ""
 
 msgid "Max Bubble Size"
 msgstr ""
 
-msgid "Max Events"
+msgid "Max. features"
 msgstr ""
 
 msgid "Maximum"
@@ -6183,6 +6297,9 @@ msgstr ""
 msgid "Maximum Radius"
 msgstr ""
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6222,6 +6339,18 @@ msgstr ""
 msgid "Medium"
 msgstr ""
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -6315,11 +6444,6 @@ msgid ""
 "appropriate)."
 msgstr ""
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-
 msgid "Metrics"
 msgstr ""
 
@@ -6359,7 +6483,7 @@ msgstr ""
 msgid "Minimum Radius"
 msgstr ""
 
-msgid "Minimum leaf node event count"
+msgid "Minimum must be strictly less than maximum"
 msgstr ""
 
 msgid ""
@@ -6373,6 +6497,9 @@ msgstr ""
 msgid "Minimum value"
 msgstr ""
 
+msgid "Minimum value cannot be higher than maximum value"
+msgstr ""
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr ""
 
@@ -6395,6 +6522,9 @@ msgstr ""
 msgid "Minutes value"
 msgstr ""
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr ""
 
@@ -6411,6 +6541,12 @@ msgstr ""
 msgid "Modified %s"
 msgstr ""
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 msgid "Modified by"
 msgstr ""
 
@@ -6418,10 +6554,6 @@ msgstr ""
 msgid "Modified by: %s"
 msgstr ""
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr ""
-
 msgid "Monday"
 msgstr ""
 
@@ -6482,9 +6614,6 @@ msgstr ""
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr ""
 
-msgid "Must have at least one numeric column specified"
-msgstr ""
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr ""
 
@@ -6509,9 +6638,6 @@ msgstr ""
 msgid "NOV"
 msgstr ""
 
-msgid "NOW"
-msgstr ""
-
 msgid "NUMERIC"
 msgstr ""
 
@@ -6536,9 +6662,6 @@ msgstr ""
 msgid "Name of the source nodes"
 msgstr ""
 
-msgid "Name of the table that exists in the source database"
-msgstr ""
-
 msgid "Name of the target nodes"
 msgstr ""
 
@@ -6554,17 +6677,19 @@ msgstr ""
 msgid "Need help? Learn more about"
 msgstr ""
 
+msgid "Network Error"
+msgstr ""
+
 msgid "Network error"
 msgstr ""
 
-msgid "Network error."
+msgid "Network error while attempting to fetch resource"
 msgstr ""
 
-msgid "New chart"
+msgid "Network error."
 msgstr ""
 
-#, python-format
-msgid "New columns added: %s"
+msgid "New chart"
 msgstr ""
 
 msgid "New dataset"
@@ -6613,6 +6738,9 @@ msgstr ""
 msgid "No Tags created"
 msgstr ""
 
+msgid "No actions"
+msgstr ""
+
 #, fuzzy
 msgid "No annotation layers"
 msgstr ""
@@ -6632,9 +6760,6 @@ msgstr ""
 msgid "No charts"
 msgstr ""
 
-msgid "No charts yet"
-msgstr ""
-
 msgid "No columns found"
 msgstr ""
 
@@ -6650,9 +6775,6 @@ msgstr ""
 msgid "No compatible schema found"
 msgstr ""
 
-msgid "No dashboards yet"
-msgstr ""
-
 msgid "No data"
 msgstr ""
 
@@ -6662,6 +6784,9 @@ msgstr ""
 msgid "No data in file"
 msgstr ""
 
+msgid "No databases available"
+msgstr ""
+
 msgid "No databases match your search"
 msgstr ""
 
@@ -6692,12 +6817,6 @@ msgstr ""
 msgid "No matching records found"
 msgstr ""
 
-msgid "No of Bins"
-msgstr ""
-
-msgid "No recents yet"
-msgstr ""
-
 msgid "No records found"
 msgstr ""
 
@@ -6719,6 +6838,9 @@ msgid ""
 "contains data for the selected time range."
 msgstr ""
 
+msgid "No roles yet"
+msgstr ""
+
 msgid "No rows were returned for this dataset"
 msgstr ""
 
@@ -6731,9 +6853,6 @@ msgstr ""
 msgid "No saved metrics found"
 msgstr ""
 
-msgid "No saved queries yet"
-msgstr ""
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 
@@ -6749,6 +6868,9 @@ msgstr ""
 msgid "No time columns"
 msgstr ""
 
+msgid "No users yet"
+msgstr ""
+
 msgid "No validator found (configured for the engine)"
 msgstr ""
 
@@ -6824,6 +6946,9 @@ msgstr ""
 msgid "Not up to date"
 msgstr ""
 
+msgid "Nothing here yet"
+msgstr ""
+
 msgid "Nothing triggered"
 msgstr ""
 
@@ -6923,9 +7048,6 @@ msgstr ""
 msgid "Offline"
 msgstr ""
 
-msgid "Offset"
-msgstr ""
-
 msgid "On Grace"
 msgstr ""
 
@@ -6950,6 +7072,9 @@ msgstr ""
 msgid "One or many metrics to display"
 msgstr ""
 
+msgid "One or more annotation layers failed loading."
+msgstr ""
+
 msgid "One or more columns already exist"
 msgstr ""
 
@@ -6977,12 +7102,6 @@ msgstr ""
 msgid "One or more parameters specified in the query are missing."
 msgstr ""
 
-msgid "One or more annotation layers failed loading."
-msgstr ""
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr ""
-
 msgid "Only Total"
 msgstr ""
 
@@ -6995,9 +7114,6 @@ msgstr ""
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
 
-msgid "Only selected panels will be affected by this filter"
-msgstr ""
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7073,15 +7189,19 @@ msgstr ""
 msgid "Or choose from a list of other databases we support:"
 msgstr ""
 
-msgid "Order by entity id"
-msgstr ""
-
 msgid "Order results by selected columns"
 msgstr ""
 
 msgid "Ordering"
 msgstr ""
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr ""
 
@@ -7191,6 +7311,9 @@ msgid ""
 " or username."
 msgstr ""
 
+msgid "PDF download failed, please refresh and try again."
+msgstr ""
+
 msgid "Page length"
 msgstr ""
 
@@ -7248,6 +7371,12 @@ msgstr ""
 msgid "Password"
 msgstr ""
 
+msgid "Password is required"
+msgstr ""
+
+msgid "Passwords do not match!"
+msgstr ""
+
 msgid "Paste Private Key here"
 msgstr ""
 
@@ -7302,6 +7431,13 @@ msgstr ""
 msgid "Periods must be a whole number"
 msgstr ""
 
+msgid "Permissions"
+msgstr ""
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr ""
 
@@ -7317,9 +7453,6 @@ msgstr ""
 msgid "Physical (table or view)"
 msgstr ""
 
-msgid "Physical dataset"
-msgstr ""
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
 
@@ -7341,15 +7474,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr ""
 
-msgid "Pick at least one field for [Series]"
-msgstr ""
-
 msgid "Pick at least one metric"
 msgstr ""
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-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."
@@ -7361,7 +7488,7 @@ msgstr ""
 msgid "Pie Chart"
 msgstr ""
 
-msgid "Pie Chart (legacy)"
+msgid "Pie charts on a map"
 msgstr ""
 
 msgid "Pie shape"
@@ -7373,6 +7500,12 @@ msgstr ""
 msgid "Pin"
 msgstr ""
 
+msgid "Pin Left"
+msgstr ""
+
+msgid "Pin Right"
+msgstr ""
+
 msgid "Pivot Table"
 msgstr ""
 
@@ -7421,6 +7554,9 @@ msgid ""
 "your query again."
 msgstr ""
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr ""
 
@@ -7430,12 +7566,24 @@ msgstr ""
 msgid "Please confirm the overwrite values."
 msgstr ""
 
+msgid "Please confirm your password"
+msgstr ""
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr ""
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr ""
 
@@ -7448,9 +7596,6 @@ msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] ""
 msgstr[1] ""
 
-msgid "Please save the query to enable sharing"
-msgstr ""
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
 
@@ -7523,9 +7668,6 @@ msgstr ""
 msgid "Populate \"Default value\" to enable this control"
 msgstr ""
 
-msgid "Population age data"
-msgstr ""
-
 msgid "Port"
 msgstr ""
 
@@ -7563,12 +7705,6 @@ msgstr ""
 msgid "Pre-filter is required"
 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 ""
-
 msgid "Predictive"
 msgstr ""
 
@@ -7587,10 +7723,6 @@ msgstr ""
 msgid "Preview uploaded file"
 msgstr ""
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr ""
-
 msgid "Previous"
 msgstr ""
 
@@ -7636,18 +7768,12 @@ msgstr ""
 msgid "Progressive"
 msgstr ""
 
-msgid "Propagate"
+msgid "Project Id"
 msgstr ""
 
 msgid "Proportional"
 msgstr ""
 
-msgid "Public and privately shared sheets"
-msgstr ""
-
-msgid "Publicly shared sheets only"
-msgstr ""
-
 msgid "Published"
 msgstr ""
 
@@ -7666,9 +7792,6 @@ msgstr ""
 msgid "Put the labels outside of the pie?"
 msgstr ""
 
-msgid "Put the labels outside the pie?"
-msgstr ""
-
 msgid "Put your code here"
 msgstr ""
 
@@ -7770,10 +7893,6 @@ msgstr ""
 msgid "Radius in miles"
 msgstr ""
 
-#, python-format
-msgid "Ran %s"
-msgstr ""
-
 msgid "Range"
 msgstr ""
 
@@ -7801,18 +7920,9 @@ msgstr ""
 msgid "Raw records"
 msgstr ""
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 msgid "Recently modified"
 msgstr ""
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 msgid "Recents"
 msgstr ""
 
@@ -7831,9 +7941,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr ""
-
 msgid "Redo the action"
 msgstr ""
 
@@ -7871,6 +7978,9 @@ msgstr ""
 msgid "Refresh interval saved"
 msgstr ""
 
+msgid "Refresh table schema"
+msgstr ""
+
 msgid "Refresh the default values"
 msgstr ""
 
@@ -7924,8 +8034,10 @@ msgid "Remove table preview"
 msgstr ""
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr ""
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
 
 msgid "Rename tab"
 msgstr ""
@@ -7936,10 +8048,9 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
-msgstr ""
-
-msgid "Rendering"
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
 msgid "Replace"
@@ -8035,6 +8146,9 @@ msgstr ""
 msgid "Repulsion strength between nodes"
 msgstr ""
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr ""
@@ -8066,6 +8180,9 @@ msgstr ""
 msgid "Reset"
 msgstr ""
 
+msgid "Reset columns"
+msgstr ""
+
 msgid "Reset state"
 msgstr ""
 
@@ -8091,6 +8208,9 @@ msgstr ""
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr ""
 
+msgid "Retry fetching results"
+msgstr ""
+
 msgid "Return to specific datetime."
 msgstr ""
 
@@ -8130,6 +8250,24 @@ msgstr ""
 msgid "Role"
 msgstr ""
 
+msgid "Role Name"
+msgstr ""
+
+msgid "Role is required"
+msgstr ""
+
+msgid "Role name is required"
+msgstr ""
+
+msgid "Role successfully updated!"
+msgstr ""
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr ""
 
@@ -8201,9 +8339,6 @@ msgstr ""
 msgid "Rows subtotal position"
 msgstr ""
 
-msgid "Rows to Read"
-msgstr ""
-
 msgid "Rows to read"
 msgstr ""
 
@@ -8268,13 +8403,10 @@ msgstr ""
 msgid "SQL Copied!"
 msgstr ""
 
-msgid "SQL Expression"
-msgstr ""
-
 msgid "SQL Lab"
 msgstr ""
 
-msgid "SQL Lab View"
+msgid "SQL Lab queries"
 msgstr ""
 
 #, python-format
@@ -8361,18 +8493,9 @@ msgstr ""
 msgid "Samples for datasource could not be retrieved."
 msgstr ""
 
-msgid "Sankey"
-msgstr ""
-
 msgid "Sankey Chart"
 msgstr ""
 
-msgid "Sankey Diagram (legacy)"
-msgstr ""
-
-msgid "Sankey Diagram with Loops"
-msgstr ""
-
 msgid "Satellite"
 msgstr ""
 
@@ -8433,9 +8556,6 @@ msgstr ""
 msgid "Save query"
 msgstr ""
 
-msgid "Save the query to enable this feature"
-msgstr ""
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
 
@@ -8463,6 +8583,9 @@ msgstr ""
 msgid "Saved query parameters are invalid."
 msgstr ""
 
+msgid "Saving..."
+msgstr ""
+
 msgid "Scale and Move"
 msgstr ""
 
@@ -8514,9 +8637,6 @@ msgstr ""
 msgid "Schema cache timeout"
 msgstr ""
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr ""
-
 msgid "Schemas allowed for File upload"
 msgstr ""
 
@@ -8598,9 +8718,6 @@ msgstr ""
 msgid "Seconds value"
 msgstr ""
 
-msgid "Secure Extra"
-msgstr ""
-
 msgid "Secure extra"
 msgstr ""
 
@@ -8691,6 +8808,9 @@ msgstr ""
 msgid "Select a sheet name from the uploaded file"
 msgstr ""
 
+msgid "Select a tab"
+msgstr ""
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -8708,7 +8828,7 @@ msgstr ""
 msgid "Select all items"
 msgstr ""
 
-msgid "Select any columns for metadata inspection"
+msgid "Select an aggregation method to apply to the metric."
 msgstr ""
 
 msgid "Select catalog or type to search catalogs"
@@ -8733,6 +8853,9 @@ msgstr ""
 msgid "Select column"
 msgstr ""
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -8815,6 +8938,12 @@ msgstr ""
 msgid "Select owners"
 msgstr ""
 
+msgid "Select page size"
+msgstr ""
+
+msgid "Select roles"
+msgstr ""
+
 msgid "Select saved metrics"
 msgstr ""
 
@@ -8828,9 +8957,18 @@ msgstr ""
 msgid "Select scheme"
 msgstr ""
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr ""
 
+msgid "Select tab"
+msgstr ""
+
 msgid "Select table or type to search tables"
 msgstr ""
 
@@ -8855,12 +8993,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr ""
 
-msgid "Select the number of bins for the histogram"
-msgstr ""
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr ""
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -8882,9 +9014,6 @@ msgstr ""
 msgid "Send as text"
 msgstr ""
 
-msgid "Send range filter events to other charts"
-msgstr ""
-
 msgid "September"
 msgstr ""
 
@@ -8897,12 +9026,6 @@ msgstr ""
 msgid "Series Height"
 msgstr ""
 
-msgid "Series Limit Sort By"
-msgstr ""
-
-msgid "Series Limit Sort Descending"
-msgstr ""
-
 msgid "Series Order"
 msgstr ""
 
@@ -8930,6 +9053,9 @@ msgstr ""
 msgid "Service Account"
 msgstr ""
 
+msgid "Service version"
+msgstr ""
+
 msgid "Set auto-refresh interval"
 msgstr ""
 
@@ -8957,6 +9083,9 @@ msgstr ""
 msgid "Settings for time series"
 msgstr ""
 
+msgid "Shape"
+msgstr ""
+
 msgid "Share"
 msgstr ""
 
@@ -9015,18 +9144,9 @@ msgstr ""
 msgid "Show Cell bars"
 msgstr ""
 
-msgid "Show Chart"
-msgstr ""
-
-msgid "Show Column"
-msgstr ""
-
 msgid "Show Dashboard"
 msgstr ""
 
-msgid "Show Database"
-msgstr ""
-
 msgid "Show Labels"
 msgstr ""
 
@@ -9036,18 +9156,12 @@ msgstr ""
 msgid "Show Markers"
 msgstr ""
 
-msgid "Show Metric"
-msgstr ""
-
 msgid "Show Metric Names"
 msgstr ""
 
 msgid "Show Range Filter"
 msgstr ""
 
-msgid "Show Table"
-msgstr ""
-
 msgid "Show Timestamp"
 msgstr ""
 
@@ -9080,9 +9194,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr ""
 
-msgid "Show all..."
-msgstr ""
-
 msgid "Show axis line ticks"
 msgstr ""
 
@@ -9104,6 +9215,9 @@ msgstr ""
 msgid "Show empty columns"
 msgstr ""
 
+msgid "Show entries per page"
+msgstr ""
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9124,9 +9238,6 @@ msgstr ""
 msgid "Show less columns"
 msgstr ""
 
-msgid "Show less..."
-msgstr ""
-
 msgid "Show minor ticks on axes."
 msgstr ""
 
@@ -9163,6 +9274,9 @@ msgstr ""
 msgid "Show the value on top of the bar"
 msgstr ""
 
+msgid "Show total"
+msgstr ""
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9197,7 +9311,7 @@ msgid ""
 msgstr ""
 
 #, python-format
-msgid "Showing %s of %s"
+msgid "Showing %s of %s items"
 msgstr ""
 
 msgid "Shows a list of all series available at that point in time"
@@ -9230,16 +9344,13 @@ msgstr ""
 msgid "Single value type"
 msgstr ""
 
-msgid "Size of edge symbols"
-msgstr ""
-
-msgid "Size of marker. Also applies to forecast observations."
+msgid "Size in pixels"
 msgstr ""
 
-msgid "Sizes of vehicles"
+msgid "Size of edge symbols"
 msgstr ""
 
-msgid "Skip Rows"
+msgid "Size of marker. Also applies to forecast observations."
 msgstr ""
 
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
@@ -9310,9 +9421,6 @@ msgstr ""
 msgid "Sorry, something went wrong. Try again later."
 msgstr ""
 
-msgid "Sorry, there appears to be no data"
-msgstr ""
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr ""
@@ -9330,9 +9438,6 @@ msgstr ""
 msgid "Sort"
 msgstr ""
 
-msgid "Sort Bars"
-msgstr ""
-
 msgid "Sort Descending"
 msgstr ""
 
@@ -9354,9 +9459,6 @@ msgstr ""
 msgid "Sort ascending"
 msgstr ""
 
-msgid "Sort bars by x labels."
-msgstr ""
-
 msgid "Sort by"
 msgstr ""
 
@@ -9382,6 +9484,9 @@ msgstr ""
 msgid "Sort metric"
 msgstr ""
 
+msgid "Sort query by"
+msgstr ""
+
 msgid "Sort rows by"
 msgstr ""
 
@@ -9394,9 +9499,6 @@ msgstr ""
 msgid "Source"
 msgstr ""
 
-msgid "Source / Target"
-msgstr ""
-
 msgid "Source SQL"
 msgstr ""
 
@@ -9438,9 +9540,6 @@ msgstr ""
 msgid "Stack"
 msgstr ""
 
-msgid "Stack Trace:"
-msgstr ""
-
 msgid "Stack series"
 msgstr ""
 
@@ -9456,9 +9555,6 @@ msgstr ""
 msgid "Stacked Style"
 msgstr ""
 
-msgid "Stacked style"
-msgstr ""
-
 msgid "Standard time series"
 msgstr ""
 
@@ -9553,9 +9649,6 @@ msgstr ""
 msgid "Strength to pull the graph toward center"
 msgstr ""
 
-msgid "Stretched style"
-msgstr ""
-
 msgid "Stroke Color"
 msgstr ""
 
@@ -9577,15 +9670,18 @@ msgstr ""
 msgid "Subdomain"
 msgstr ""
 
-msgid "Subheader"
-msgstr ""
-
 msgid "Subheader Font Size"
 msgstr ""
 
 msgid "Submit"
 msgstr ""
 
+msgid "Subtitle"
+msgstr ""
+
+msgid "Subtitle Font Size"
+msgstr ""
+
 msgid "Subtotal"
 msgstr ""
 
@@ -9637,9 +9733,6 @@ msgstr ""
 msgid "Superset chart"
 msgstr ""
 
-msgid "Superset dashboard"
-msgstr ""
-
 msgid "Superset encountered an error while running a command."
 msgstr ""
 
@@ -9649,9 +9742,6 @@ msgstr ""
 msgid "Supported databases"
 msgstr ""
 
-msgid "Survey Responses"
-msgstr ""
-
 msgid "Swap dataset"
 msgstr ""
 
@@ -9664,6 +9754,12 @@ msgid ""
 "well."
 msgstr ""
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr ""
 
@@ -9673,9 +9769,20 @@ msgstr ""
 msgid "Symbol size"
 msgstr ""
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr ""
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr ""
 
@@ -9686,9 +9793,6 @@ msgstr ""
 msgid "TABLES"
 msgstr ""
 
-msgid "TEMPORAL X-AXIS"
-msgstr ""
-
 msgid "TEMPORAL_RANGE"
 msgstr ""
 
@@ -9724,6 +9828,9 @@ msgid ""
 "connection, schema, and table name"
 msgstr ""
 
+msgid "Table actions"
+msgstr ""
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -9735,6 +9842,9 @@ msgstr ""
 msgid "Table columns"
 msgstr ""
 
+msgid "Table name"
+msgstr ""
+
 msgid "Table name undefined"
 msgstr ""
 
@@ -9796,11 +9906,6 @@ msgstr ""
 msgid "Tags"
 msgstr ""
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-
 msgid "Target"
 msgstr ""
 
@@ -9824,6 +9929,9 @@ msgid ""
 "coming from the controls."
 msgstr ""
 
+msgid "Temporal X-Axis"
+msgstr ""
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -9868,9 +9976,6 @@ msgid ""
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -9900,6 +10005,9 @@ msgstr ""
 msgid "The annotation has been updated"
 msgstr ""
 
+msgid "The background color of the charts."
+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."
@@ -9927,6 +10035,9 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr ""
 
+msgid "The color of the elements border"
+msgstr ""
+
 msgid "The color of the isoband"
 msgstr ""
 
@@ -9941,6 +10052,12 @@ msgid ""
 "        Edit the color scheme in the dashboard properties."
 msgstr ""
 
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+
 msgid "The column header label"
 msgstr ""
 
@@ -9953,6 +10070,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr ""
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -9964,17 +10087,7 @@ msgstr ""
 msgid "The data source seems to have been deleted"
 msgstr ""
 
-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 ""
-
-#, 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 "The database"
 msgstr ""
 
 msgid "The database columns that contains lines information"
@@ -10006,11 +10119,7 @@ msgstr ""
 msgid "The database was not found."
 msgstr ""
 
-#, 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."
+msgid "The dataset"
 msgstr ""
 
 msgid "The dataset associated with this chart no longer exists"
@@ -10061,12 +10170,21 @@ msgid ""
 "-1 to bypass the cache."
 msgstr ""
 
-msgid "The encoding format of the lines"
+msgid "The encoding format of the lines"
+msgstr ""
+
+msgid ""
+"The engine_params object gets unpacked into the sqlalchemy.create_engine "
+"call."
+msgstr ""
+
+msgid "The exponent to compute all sizes from. \"EXP\" only"
 msgstr ""
 
 msgid ""
-"The engine_params object gets unpacked into the sqlalchemy.create_engine "
-"call."
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
 msgstr ""
 
 #, python-format
@@ -10086,6 +10204,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr ""
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10118,20 +10239,12 @@ msgstr ""
 msgid "The id of the active 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'"
+msgid "The layer attribution"
 msgstr ""
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10164,6 +10277,17 @@ msgid ""
 "periods"
 msgstr ""
 
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr ""
+
+msgid "The name of the geometry column"
+msgstr ""
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 msgid "The name of the rule must be unique"
 msgstr ""
 
@@ -10355,6 +10479,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr ""
 
@@ -10392,10 +10519,13 @@ msgstr ""
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+msgid "The screenshot has been downloaded."
+msgstr ""
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
+msgid "The service url of the layer"
 msgstr ""
 
 msgid "The size of each cell in meters"
@@ -10404,6 +10534,9 @@ msgstr ""
 msgid "The size of the square cell, in pixels"
 msgstr ""
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr ""
 
@@ -10425,11 +10558,6 @@ msgid ""
 "to run this query."
 msgstr ""
 
-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 "The table was deleted or renamed in the database."
 msgstr ""
 
@@ -10474,6 +10602,9 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr ""
 
+msgid "The type of the layer"
+msgstr ""
+
 msgid "The type of visualization to display"
 msgstr ""
 
@@ -10496,12 +10627,24 @@ msgstr ""
 msgid "The username provided when connecting to a database is not valid."
 msgstr ""
 
+msgid "The version of the service"
+msgstr ""
+
+msgid "The visible title of the layer"
+msgstr ""
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr ""
 
 msgid "The width of the Isoline in pixels"
 msgstr ""
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+msgid "The width of the elements border"
+msgstr ""
+
 msgid "The width of the lines"
 msgstr ""
 
@@ -10518,9 +10661,6 @@ msgstr ""
 msgid "There are no components added to this tab"
 msgstr ""
 
-msgid "There are no databases available"
-msgstr ""
-
 msgid "There are no filters in this dashboard."
 msgstr ""
 
@@ -10532,6 +10672,9 @@ msgid ""
 " or a typo."
 msgstr ""
 
+msgid "There is currently no information to display."
+msgstr ""
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -10555,6 +10698,9 @@ msgstr ""
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr ""
 
+msgid "There was an error generating the permalink."
+msgstr ""
+
 msgid "There was an error loading the catalogs"
 msgstr ""
 
@@ -10570,6 +10716,9 @@ msgstr ""
 msgid "There was an error loading the tables"
 msgstr ""
 
+msgid "There was an error retrieving dashboard tabs."
+msgstr ""
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr ""
@@ -10577,6 +10726,10 @@ msgstr ""
 msgid "There was an error with your request"
 msgstr ""
 
+#, python-format
+msgid "There was an issue deleting %s"
+msgstr ""
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr ""
@@ -10660,21 +10813,9 @@ msgstr ""
 msgid "There was an issue previewing the selected query. %s"
 msgstr ""
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr ""
-
 msgid "These are the datasets this filter will be applied to."
 msgstr ""
 
-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 ""
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -10688,12 +10829,18 @@ msgstr ""
 msgid "This action will permanently delete the layer."
 msgstr ""
 
+msgid "This action will permanently delete the role."
+msgstr ""
+
 msgid "This action will permanently delete the saved query."
 msgstr ""
 
 msgid "This action will permanently delete the template."
 msgstr ""
 
+msgid "This action will permanently delete the user."
+msgstr ""
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -10718,11 +10865,6 @@ msgid ""
 "source. "
 msgstr ""
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-
 msgid "This column might be incompatible with current dataset"
 msgstr ""
 
@@ -10788,6 +10930,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr ""
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 
@@ -10805,6 +10953,9 @@ msgstr ""
 msgid "This defines the element to be plotted on the chart"
 msgstr ""
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -10815,11 +10966,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr ""
-
 msgid "This filter might be incompatible with current dataset"
 msgstr ""
 
@@ -10849,12 +10995,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr ""
 
-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 ""
-
 msgid "This metric might be incompatible with current dataset"
 msgstr ""
 
@@ -10893,6 +11033,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr ""
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr ""
 
@@ -10968,9 +11111,6 @@ msgstr ""
 msgid "Time Series"
 msgstr ""
 
-msgid "Time Series - Bar Chart"
-msgstr ""
-
 msgid "Time Series - Line Chart"
 msgstr ""
 
@@ -10986,9 +11126,6 @@ msgstr ""
 msgid "Time Series - Period Pivot"
 msgstr ""
 
-msgid "Time Series - Stacked"
-msgstr ""
-
 msgid "Time Series Options"
 msgstr ""
 
@@ -11076,15 +11213,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr ""
 
-msgid "Time-series Area Chart (legacy)"
-msgstr ""
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr ""
-
-msgid "Time-series Line Chart (legacy)"
-msgstr ""
-
 msgid "Time-series Percent Change"
 msgstr ""
 
@@ -11103,9 +11231,6 @@ msgstr ""
 msgid "Timezone"
 msgstr ""
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr ""
-
 msgid "Timezone selector"
 msgstr ""
 
@@ -11124,6 +11249,11 @@ msgstr ""
 msgid "Title or Slug"
 msgstr ""
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr ""
 
@@ -11165,6 +11295,9 @@ msgstr ""
 msgid "Total (%(aggregatorName)s)"
 msgstr ""
 
+msgid "Total (Sum)"
+msgstr ""
+
 msgid "Total value"
 msgstr ""
 
@@ -11268,9 +11401,6 @@ msgstr ""
 msgid "Type is required"
 msgstr ""
 
-msgid "Type of Google Sheets allowed"
-msgstr ""
-
 msgid "Type of comparison, value difference or percentage"
 msgstr ""
 
@@ -11344,9 +11474,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr ""
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr ""
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr ""
 
@@ -11375,6 +11511,9 @@ msgstr ""
 msgid "Unexpected time range: %(error)s"
 msgstr ""
 
+msgid "Unhide"
+msgstr ""
+
 msgid "Unknown"
 msgstr ""
 
@@ -11412,6 +11551,9 @@ msgstr ""
 msgid "Unknown value"
 msgstr ""
 
+msgid "Unpin"
+msgstr ""
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr ""
@@ -11473,9 +11615,6 @@ msgstr ""
 msgid "Upload Columnar file to database"
 msgstr ""
 
-msgid "Upload Credentials"
-msgstr ""
-
 msgid "Upload Enabled"
 msgstr ""
 
@@ -11495,6 +11634,9 @@ msgstr ""
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+msgid "Upload credentials"
+msgstr ""
+
 msgid "Upload file to database"
 msgstr ""
 
@@ -11545,10 +11687,10 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr ""
 
-msgid "Use date formatting even when metric value is not a timestamp"
+msgid "Use current extent"
 msgstr ""
 
-msgid "Use legacy datasource editor"
+msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 
 msgid "Use metrics as a top level group for columns or for rows"
@@ -11560,11 +11702,6 @@ msgstr ""
 msgid "Use the Advanced Analytics options below"
 msgstr ""
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-
 msgid "Use the edit button to change this field"
 msgstr ""
 
@@ -11601,9 +11738,21 @@ msgstr ""
 msgid "User query"
 msgstr ""
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr ""
 
+msgid "Username is required"
+msgstr ""
+
+msgid "Users"
+msgstr ""
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
 
@@ -11625,6 +11774,10 @@ msgid ""
 "funnels and pipelines."
 msgstr ""
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr ""
 
@@ -11650,9 +11803,15 @@ msgstr ""
 msgid "Value format"
 msgstr ""
 
+msgid "Value greater than"
+msgstr ""
+
 msgid "Value is required"
 msgstr ""
 
+msgid "Value less than"
+msgstr ""
+
 msgid "Value must be 0 or greater"
 msgstr ""
 
@@ -11670,12 +11829,6 @@ msgid ""
 "show relevant values"
 msgstr ""
 
-msgid "Vehicle Types"
-msgstr ""
-
-msgid "Verbose Name"
-msgstr ""
-
 msgid "Version"
 msgstr ""
 
@@ -11688,9 +11841,6 @@ msgstr ""
 msgid "Vertical (Left)"
 msgstr ""
 
-msgid "Video game consoles"
-msgstr ""
-
 msgid "View"
 msgstr ""
 
@@ -11732,9 +11882,6 @@ msgstr ""
 msgid "Virtual (SQL)"
 msgstr ""
 
-msgid "Virtual dataset"
-msgstr ""
-
 msgid "Virtual dataset query cannot be empty"
 msgstr ""
 
@@ -11770,11 +11917,6 @@ msgid ""
 "grid view."
 msgstr ""
 
-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."
@@ -11819,13 +11961,6 @@ msgid ""
 "instead."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -11840,6 +11975,12 @@ msgstr ""
 msgid "WED"
 msgstr ""
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr ""
@@ -11853,9 +11994,6 @@ msgstr ""
 msgid "Warning"
 msgstr ""
 
-msgid "Warning Message"
-msgstr ""
-
 msgid "Warning!"
 msgstr ""
 
@@ -11985,11 +12123,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr ""
 
-msgid ""
-"When allowing CREATE TABLE AS option in SQL Lab, this option forces the "
-"table to be created in this schema"
-msgstr ""
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr ""
 
@@ -12010,6 +12143,11 @@ msgid ""
 "to the main datetime column."
 msgstr ""
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -12024,20 +12162,14 @@ msgstr ""
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
 
-msgid "When using this option, default value can’t be set"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
 msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr ""
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr ""
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -12075,6 +12207,9 @@ msgstr ""
 msgid "Whether to display bubbles on top of countries"
 msgstr ""
 
+msgid "Whether to display in the chart"
+msgstr ""
+
 msgid "Whether to display the aggregate count"
 msgstr ""
 
@@ -12084,11 +12219,6 @@ msgstr ""
 msgid "Whether to display the labels."
 msgstr ""
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-
 msgid "Whether to display the legend (toggles)"
 msgstr ""
 
@@ -12104,6 +12234,9 @@ msgstr ""
 msgid "Whether to display the numerical values within the cells"
 msgstr ""
 
+msgid "Whether to display the percentage value in the tooltip"
+msgstr ""
+
 msgid "Whether to display the stroke"
 msgstr ""
 
@@ -12116,9 +12249,15 @@ msgstr ""
 msgid "Whether to display the tooltip labels."
 msgstr ""
 
+msgid "Whether to display the total value in the tooltip"
+msgstr ""
+
 msgid "Whether to display the trend line"
 msgstr ""
 
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr ""
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr ""
 
@@ -12143,26 +12282,9 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr ""
 
-msgid "Whether to make the histogram cumulative"
-msgstr ""
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr ""
-
-msgid "Whether to normalize the histogram"
-msgstr ""
-
 msgid "Whether to populate autocomplete filters options"
 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 ""
-
 msgid "Whether to show as Nightingale chart."
 msgstr ""
 
@@ -12189,9 +12311,6 @@ msgstr ""
 msgid "Whether to sort descending or ascending"
 msgstr ""
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr ""
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 
@@ -12249,9 +12368,6 @@ msgstr ""
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr ""
-
 msgid "X AXIS TITLE MARGIN"
 msgstr ""
 
@@ -12270,6 +12386,9 @@ msgstr ""
 msgid "X Axis Title"
 msgstr ""
 
+msgid "X Axis Title Margin"
+msgstr ""
+
 msgid "X Log Scale"
 msgstr ""
 
@@ -12291,6 +12410,9 @@ msgstr ""
 msgid "XScale Interval"
 msgstr ""
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr ""
 
@@ -12401,6 +12523,19 @@ msgid ""
 "want to overwrite?"
 msgstr ""
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr ""
 
@@ -12470,9 +12605,6 @@ msgstr ""
 msgid "You don't have access to this embedded dashboard config."
 msgstr ""
 
-msgid "You don't have any favorites yet!"
-msgstr ""
-
 msgid "You don't have permission to modify the value."
 msgstr ""
 
@@ -12545,6 +12677,9 @@ msgstr ""
 msgid "Your chart is ready to go!"
 msgstr ""
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr ""
 
@@ -12571,6 +12706,9 @@ msgstr ""
 msgid "Your query was updated"
 msgstr ""
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr ""
 
@@ -12583,6 +12721,9 @@ msgstr ""
 msgid "Zoom"
 msgstr ""
 
+msgid "Zoom level"
+msgstr ""
+
 msgid "Zoom level of the map"
 msgstr ""
 
@@ -12696,9 +12837,6 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
-msgid "auto (Smooth)"
-msgstr ""
-
 msgid "background"
 msgstr ""
 
@@ -12744,9 +12882,6 @@ msgstr ""
 msgid "chart"
 msgstr ""
 
-msgid "charts"
-msgstr ""
-
 msgid "choose WHERE or HAVING..."
 msgstr ""
 
@@ -12756,6 +12891,9 @@ msgstr ""
 msgid "click here"
 msgstr ""
 
+msgid "close"
+msgstr ""
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr ""
 
@@ -12805,15 +12943,9 @@ msgstr ""
 msgid "cumsum"
 msgstr ""
 
-msgid "cumulative"
-msgstr ""
-
 msgid "dashboard"
 msgstr ""
 
-msgid "dashboards"
-msgstr ""
-
 msgid "database"
 msgstr ""
 
@@ -12877,9 +13009,6 @@ msgstr ""
 msgid "default"
 msgstr ""
 
-msgid "delete"
-msgstr ""
-
 msgid "descendant"
 msgstr ""
 
@@ -12892,9 +13021,6 @@ msgstr ""
 msgid "dialect+driver://username:password@host:port/database"
 msgstr ""
 
-msgid "draft"
-msgstr ""
-
 msgid "dttm"
 msgstr ""
 
@@ -12934,9 +13060,6 @@ msgstr ""
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr ""
 
-msgid "e.g., a \"user id\" column"
-msgstr ""
-
 msgid "edit mode"
 msgstr ""
 
@@ -12946,6 +13069,9 @@ msgstr ""
 msgid "entries"
 msgstr ""
 
+msgid "entries per page"
+msgstr ""
+
 msgid "error"
 msgstr ""
 
@@ -13012,11 +13138,6 @@ msgstr ""
 msgid "hour"
 msgstr ""
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-
 msgid "in"
 msgstr ""
 
@@ -13026,6 +13147,9 @@ msgstr ""
 msgid "invalid email"
 msgstr ""
 
+msgid "is"
+msgstr ""
+
 msgid "is expected to be a Mapbox URL"
 msgstr ""
 
@@ -13035,6 +13159,22 @@ msgstr ""
 msgid "is expected to be an integer"
 msgstr ""
 
+#, python-format
+msgid ""
+"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 ""
+
+#, python-format
+msgid ""
+"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 ""
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr ""
 
@@ -13155,18 +13295,9 @@ msgstr ""
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr ""
-
-msgid "page_size.show"
-msgstr ""
-
 msgid "pending"
 msgstr ""
 
-msgid "percentile (exclusive)"
-msgstr ""
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -13175,22 +13306,19 @@ msgstr ""
 msgid "permalink state not found"
 msgstr ""
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 msgid "pixels"
 msgstr ""
 
 msgid "previous calendar month"
 msgstr ""
 
-msgid "previous calendar week"
+msgid "previous calendar quarter"
 msgstr ""
 
-msgid "previous calendar year"
+msgid "previous calendar week"
 msgstr ""
 
-msgid "published"
+msgid "previous calendar year"
 msgstr ""
 
 msgid "quarter"
@@ -13211,9 +13339,6 @@ msgstr ""
 msgid "recent"
 msgstr ""
 
-msgid "recents"
-msgstr ""
-
 msgid "recipients"
 msgstr ""
 
@@ -13235,7 +13360,7 @@ msgstr ""
 msgid "running"
 msgstr ""
 
-msgid "saved queries"
+msgid "save"
 msgstr ""
 
 msgid "seconds"
@@ -13250,9 +13375,6 @@ msgid ""
 "series"
 msgstr ""
 
-msgid "shift start date"
-msgstr ""
-
 msgid "sql"
 msgstr ""
 
@@ -13307,9 +13429,6 @@ msgstr ""
 msgid "textarea"
 msgstr ""
 
-msgid "to"
-msgstr ""
-
 msgid "top"
 msgstr ""
 
@@ -13319,6 +13438,12 @@ msgstr ""
 msgid "unknown type icon"
 msgstr ""
 
+msgid "unset"
+msgstr ""
+
+msgid "updated"
+msgstr ""
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -13342,9 +13467,6 @@ msgstr ""
 msgid "view instructions"
 msgstr ""
 
-msgid "virtual"
-msgstr ""
-
 msgid "viz type"
 msgstr ""
 
@@ -13380,3 +13502,6 @@ msgstr ""
 
 msgid "zoom area"
 msgstr ""
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/es/LC_MESSAGES/messages.po b/superset/translations/es/LC_MESSAGES/messages.po
index 748d1fa7ddf7914eb16189e370c5461dd2b542e5..e14bb749d2c19756617fc3eb1b38d732959b111e 100644
--- a/superset/translations/es/LC_MESSAGES/messages.po
+++ b/superset/translations/es/LC_MESSAGES/messages.po
@@ -17,16 +17,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2018-11-03 00:11+0100\n"
 "Last-Translator: Ruben Sastre <ruben.sastre@decathlon.com>\n"
 "Language: es\n"
 "Language-Team: Español; Castellano <>\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -66,7 +66,10 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
 
@@ -86,9 +89,17 @@ msgstr "Guardar Dashboard"
 msgid " a new one"
 msgstr "Cambiado el"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr ""
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr ""
 
@@ -152,10 +163,7 @@ msgstr ""
 "razones de seguridad."
 
 #, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
+msgid "%(label)s file"
 msgstr ""
 
 #, python-format
@@ -170,24 +178,6 @@ msgstr ""
 msgid "%(object)s does not exist in this database."
 msgstr ""
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr ""
-
-#, 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"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr ""
@@ -203,13 +193,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr "líneas obtenidas"
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -218,10 +201,6 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#, python-format
-msgid "%(type)s File"
-msgstr ""
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -273,10 +252,6 @@ msgstr "%s aggregación(es)"
 msgid "%s column(s)"
 msgstr "%s columnas(s)"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -366,6 +341,10 @@ msgid ""
 "\n"
 msgstr ""
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0 Seleccionados"
 
@@ -434,6 +413,12 @@ msgstr "Frecuencia de actualización"
 msgid "10 minute"
 msgstr "1 minuto"
 
+msgid "10/90 percentiles"
+msgstr ""
+
+msgid "10000"
+msgstr ""
+
 #, fuzzy
 msgid "104 weeks"
 msgstr "semana"
@@ -543,6 +528,9 @@ msgstr "30 segundos"
 msgid "5 seconds"
 msgstr "30 segundos"
 
+msgid "5/95 percentiles"
+msgstr ""
+
 #, fuzzy
 msgid "52 weeks"
 msgstr "semana"
@@ -617,12 +605,6 @@ msgstr ">= (Mayor o igual)"
 msgid "A Big Number"
 msgstr "Número Grande"
 
-#, fuzzy
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr ""
-"Seleccione en la lista desplegable los nombres de las columnas que deben analizarse como "
-"fechas."
-
 #, fuzzy
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr ""
@@ -636,6 +618,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr "La fuente de datos %(name)s ya existe"
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -713,11 +698,6 @@ msgid ""
 "templating syntax"
 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 ""
-
 #, fuzzy
 msgid "A timeout occurred while executing the query."
 msgstr "La alerta encontró un error al ejecutar una consulta."
@@ -827,28 +807,32 @@ msgstr "Recientes"
 msgid "Add CSS template"
 msgstr "Cargar una plantilla CSS"
 
-msgid "Add Chart"
-msgstr "Añadir Gráfico"
-
-msgid "Add Column"
-msgstr "Añadir Columna"
-
 msgid "Add Dashboard"
 msgstr "Añadir Dashboard"
 
-msgid "Add Database"
-msgstr "Añadir Base de Datos"
+#, fuzzy
+msgid "Add Divider"
+msgstr "División"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Añadir filtro"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Ocultar capa"
 
 msgid "Add Log"
 msgstr "Agregar Registro"
 
-msgid "Add Metric"
-msgstr "Añadir Métrica"
-
 #, fuzzy
 msgid "Add Report"
 msgstr "informe"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "Formato Fecha/Hora"
+
 #, fuzzy
 msgid "Add Rule"
 msgstr "Formato Fecha/Hora"
@@ -856,6 +840,10 @@ msgstr "Formato Fecha/Hora"
 msgid "Add Tag"
 msgstr ""
 
+#, fuzzy
+msgid "Add User"
+msgstr "Formato Fecha/Hora"
+
 msgid "Add a Plugin"
 msgstr "Añadir Columna"
 
@@ -941,9 +929,6 @@ msgid ""
 "displayed in the filter."
 msgstr ""
 
-msgid "Add filters and dividers"
-msgstr ""
-
 msgid "Add item"
 msgstr "Añadir elemento"
 
@@ -959,6 +944,10 @@ msgstr ""
 msgid "Add new formatter"
 msgstr ""
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Filtro de Fecha"
+
 msgid "Add required control values to preview chart"
 msgstr ""
 
@@ -983,13 +972,15 @@ msgstr "Guardar e ir al Dashboard"
 msgid "Add to dashboard"
 msgstr "Añadir a un nuevo Dashboard"
 
-#, fuzzy
-msgid "Add/Edit Filters"
-msgstr "Añadir filtro"
-
 msgid "Added"
 msgstr "Añadido"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -1006,10 +997,6 @@ msgstr ""
 msgid "Additional information"
 msgstr "Información adicional"
 
-#, fuzzy
-msgid "Additional metadata"
-msgstr "Información adicional"
-
 #, fuzzy
 msgid "Additional padding for legend."
 msgstr "Información adicional"
@@ -1084,6 +1071,14 @@ msgstr "Datos cargados en caché"
 msgid "Advanced-Analytics"
 msgstr "Analíticos Avanzadas"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Todos los gráficos"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Dashboard Superset"
+
 #, fuzzy
 msgid "After"
 msgstr "fecha"
@@ -1119,6 +1114,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "agregación"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "agregación"
+
 #, fuzzy
 msgid "Aggregation function"
 msgstr "Probar Conexión"
@@ -1199,6 +1198,10 @@ msgstr ""
 msgid "All"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Columna de Tiempo"
+
 msgid "All Text"
 msgstr "Todo el Texto"
 
@@ -1215,26 +1218,14 @@ msgstr "Todos los filtros"
 msgid "All panels"
 msgstr "Aplicar a todos los páneles"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr ""
-
 msgid "Allow CREATE TABLE AS"
 msgstr "Permitir CREATE TABLE AS"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Permitir la opción CREAR TABLA COMO en el laboratorio SQL"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "Permitir CREATE VIEW AS"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Permitie opción CREATE VIEW AS en el laboratorio SQL"
-
-msgid "Allow Csv Upload"
-msgstr "Permitir carga de CSV"
-
-msgid "Allow DML"
-msgstr "Permitir DML"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr ""
@@ -1250,6 +1241,9 @@ msgstr ""
 msgid "Allow creation of new tables based on queries"
 msgstr ""
 
+msgid "Allow creation of new values"
+msgstr ""
+
 msgid "Allow creation of new views based on queries"
 msgstr ""
 
@@ -1265,11 +1259,6 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos."
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-
 #, fuzzy
 msgid "Allow node selections"
 msgstr "Permitir selección múltiple"
@@ -1277,18 +1266,17 @@ msgstr "Permitir selección múltiple"
 msgid "Allow sending multiple polygons as a filter event"
 msgstr ""
 
-msgid "Allow this database to be explored"
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
 msgstr ""
 
-msgid "Allow this database to be queried in SQL Lab"
+msgid "Allow this database to be explored"
 msgstr ""
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
+msgid "Allow this database to be queried in SQL Lab"
 msgstr ""
-"Permitir que los usuarios ejecuten instrucciones que no sean SELECT "
-"(UPDATE, DELETE, CREATE, ...) en el laboratorio SQL"
 
 msgid "Allowed Domains (comma separated)"
 msgstr ""
@@ -1332,6 +1320,10 @@ msgstr ""
 msgid "An error has occurred"
 msgstr "Ha ocurrido un error"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Se produjo un error al obtener conjuntos de datos: %s"
+
 msgid "An error occurred"
 msgstr "Se produjo un error"
 
@@ -1342,6 +1334,10 @@ msgstr "Se produjo un error al crear el origen de datos"
 msgid "An error occurred when running alert query"
 msgstr "Se produjo un error al limpiar los registros"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Se produjo un error al crear el origen de datos"
+
 #, fuzzy
 msgid "An error occurred while accessing the value."
 msgstr "Se produjo un error al crear el origen de datos"
@@ -1355,6 +1351,10 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr "Se produjo un error al obtener conjuntos de datos: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Se produjo un error al crear el origen de datos"
+
 msgid "An error occurred while creating the data source"
 msgstr "Se produjo un error al crear el origen de datos"
 
@@ -1507,6 +1507,10 @@ msgid ""
 "button."
 msgstr ""
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Se produjo un error al obtener conjuntos de datos: %s"
+
 #, fuzzy
 msgid "An error occurred while updating the value."
 msgstr "Se produjo un error al crear el origen de datos"
@@ -1708,12 +1712,6 @@ msgstr "Todos los filtros"
 msgid "Apply metrics on"
 msgstr "Métrica"
 
-msgid "Apply to all panels"
-msgstr "Aplicar a todos los páneles"
-
-msgid "Apply to specific panels"
-msgstr "Aplicar a páneles específicos"
-
 msgid "April"
 msgstr "Abril"
 
@@ -1757,6 +1755,10 @@ msgstr "¿Estas seguro de que quieres eliminar las capas seleccionadas?"
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "¿Estás seguro de que quieres eliminar las consultas seleccionadas?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "¿Estas seguro de que quieres eliminar las capas seleccionadas?"
+
 #, fuzzy
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "¿Estas seguro de que quieres eliminar las capas seleccionadas?"
@@ -1768,6 +1770,10 @@ msgstr "¿Está seguro de que desea eliminar los %s seleccionados?"
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "¿Estas seguro de que quieres eliminar las plantillas seleccionadas?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "¿Estás seguro de que quieres eliminar las consultas seleccionadas?"
+
 #, fuzzy
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "¿Está seguro de que desea eliminar los conjuntos de datos seleccionados?"
@@ -1812,15 +1818,13 @@ msgstr "Los parametros del conjunto de datos son inválidos."
 msgid "Assist"
 msgstr "Básico"
 
-msgid "Associated Charts"
-msgstr "Gráficos asociados"
-
-msgid "Async Execution"
-msgstr "Ejecución Asincrónica"
-
 msgid "Asynchronous query execution"
 msgstr "Ejecución asíncrona de consultas"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "Contribución"
+
 msgid "August"
 msgstr "Agosto"
 
@@ -1847,6 +1851,17 @@ msgstr "Autocompletar predicado de consulta"
 msgid "Automatic Color"
 msgstr ""
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Columnas calculadas"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Columnas calculadas"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr ""
 
@@ -1854,6 +1869,9 @@ msgstr ""
 msgid "Average"
 msgstr "Compartir"
 
+msgid "Average (Mean)"
+msgstr ""
+
 #, fuzzy
 msgid "Average value"
 msgstr "Iniciar en"
@@ -1898,6 +1916,9 @@ msgstr ""
 msgid "Backend"
 msgstr "Backend"
 
+msgid "Background Color"
+msgstr ""
+
 #, fuzzy
 msgid "Backward values"
 msgstr "Valores Nulos"
@@ -1916,10 +1937,6 @@ msgstr ""
 msgid "Bar Chart"
 msgstr "Compartir gráfico"
 
-#, fuzzy
-msgid "Bar Chart (legacy)"
-msgstr "Compartir gráfico"
-
 #, fuzzy
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
@@ -1938,10 +1955,25 @@ msgstr "Eliminar anotación"
 msgid "Base"
 msgstr "Base de datos"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Base de datos"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Tipo de dato"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Grosor de línea"
+
 #, fuzzy
 msgid "Based on a metric"
 msgstr "Consultas Guardadas"
@@ -1962,9 +1994,6 @@ msgstr "Información Basica"
 msgid "Batch editing %d filters:"
 msgstr "Editando %d filtros simultáneamente:"
 
-msgid "Battery level over time"
-msgstr ""
-
 msgid "Be careful."
 msgstr "Se precavido."
 
@@ -1988,6 +2017,14 @@ msgstr "Número Grande con Línea de Tendencia"
 msgid "Bins"
 msgstr "en"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Columna de Tiempo"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Grosor de línea"
+
 #, fuzzy
 msgid "Bottom"
 msgstr "dttm"
@@ -2101,9 +2138,6 @@ msgstr "Gráfico de Puntos"
 msgid "Business"
 msgstr ""
 
-msgid "Business Data Type"
-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"
@@ -2173,8 +2207,8 @@ msgid "CSS templates could not be deleted."
 msgstr "El Gráfico no ha podido eliminarse"
 
 #, fuzzy
-msgid "CSV Upload"
-msgstr "Subida de archivos CSV"
+msgid "CSV upload"
+msgstr "Subir"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr ""
@@ -2185,8 +2219,9 @@ msgid ""
 "last statement. Then, try running your query again."
 msgstr ""
 
-msgid "CTAS Schema"
-msgstr "Esquema CTAS"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "Personalizar"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2200,9 +2235,6 @@ msgstr ""
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr ""
 
-msgid "Cache Timeout"
-msgstr "Tiempo máximo de memoria caché"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Tiempo de espera de caché (segundos)"
 
@@ -2250,9 +2282,6 @@ msgstr ""
 msgid "Can select multiple values"
 msgstr "Limitar valores del selector"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "No puede haber solapamiento entre Series y Distribuciones"
-
 msgid "Cancel"
 msgstr "Cancelar"
 
@@ -2266,6 +2295,10 @@ msgstr ""
 msgid "Cannot delete a database that has datasets attached"
 msgstr "No se puede eliminar una base de datos que tiene tablas adjuntas"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr ""
 
@@ -2277,6 +2310,10 @@ msgstr "Filtro de padre"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr ""
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Partición de diagrama"
+
 #, fuzzy
 msgid "Catalog"
 msgstr "registro"
@@ -2364,13 +2401,14 @@ msgstr ""
 msgid "Change order of rows."
 msgstr ""
 
-msgid "Changed By"
-msgstr "Cambiado por"
-
 #, fuzzy
 msgid "Changed by"
 msgstr "Cambiado por"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "Administrar"
+
 msgid "Changes saved."
 msgstr ""
 
@@ -2422,9 +2460,6 @@ msgstr "Gráfico"
 msgid "Chart %(id)s not found"
 msgstr "Gráfico %(id)s no encontrado"
 
-msgid "Chart Cache Timeout"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "Chart Data: %s"
 msgstr "Última actualización %s"
@@ -2531,6 +2566,10 @@ msgstr "Los parametros del Gráfico son invalidos"
 msgid "Chart properties updated"
 msgstr "Editar propiedades de gráfico"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "gráfico"
+
 #, fuzzy
 msgid "Chart title"
 msgstr "Tipo de dato"
@@ -2580,6 +2619,10 @@ msgstr "La opción de [Radio de Puntos] debe estar presente en [Group By]"
 msgid "Choose File"
 msgstr "Seleccionar archivo"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Elija un gráfico o un dashboard, no ambos"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Elija un gráfico o un dashboard, no ambos"
 
@@ -2605,10 +2648,6 @@ msgstr "Elige una métrica para el eje derecho"
 msgid "Choose a source"
 msgstr "Selecciona una base de datos"
 
-#, fuzzy
-msgid "Choose a source and a target"
-msgstr "Selecciona una base de datos"
-
 #, fuzzy
 msgid "Choose a target"
 msgstr "Selecciona una base de datos"
@@ -2696,9 +2735,6 @@ msgstr ""
 msgid "Circular"
 msgstr ""
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2721,7 +2757,9 @@ msgstr "Todos los gráficos"
 msgid "Clear form"
 msgstr "Formato D3"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 
 msgid ""
@@ -2748,6 +2786,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr ""
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "Click para editar"
+
 msgid "Click to cancel sorting"
 msgstr ""
 
@@ -2880,14 +2922,14 @@ msgstr ""
 msgid "Column Configuration"
 msgstr "Configuración"
 
-#, fuzzy
-msgid "Column Data Types"
-msgstr "Datos cargados en caché"
-
 #, fuzzy
 msgid "Column Formatting"
 msgstr "Información adicional"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Configuracion"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2903,10 +2945,6 @@ msgstr ""
 msgid "Column data types"
 msgstr "Datos cargados en caché"
 
-#, fuzzy
-msgid "Column datatype"
-msgstr "Nombre(s) de columna(s) "
-
 msgid "Column header tooltip"
 msgstr ""
 
@@ -2938,21 +2976,19 @@ msgid ""
 msgstr ""
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
+msgstr "Nombre(s) de columna(s) "
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "Columna"
 
 msgid "Columns"
 msgstr "Columnas"
 
-#, fuzzy
-msgid "Columns To Be Parsed as Dates"
-msgstr ""
-"Una lista separada por comas de columnas que deben ser parseadas como "
-"fechas."
-
-#, fuzzy
-msgid "Columns To Read"
-msgstr "Mostrar Columna"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s columnas(s)"
 
 #, fuzzy, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2965,6 +3001,12 @@ msgstr "La fuente de datos no tiene las columnas: %(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr ""
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr ""
+"Una lista separada por comas de columnas que deben ser parseadas como "
+"fechas."
+
 msgid "Columns to calculate distribution across."
 msgstr ""
 
@@ -2982,6 +3024,10 @@ msgstr ""
 msgid "Columns to group by on the rows"
 msgstr ""
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Mostrar Columna"
+
 #, fuzzy
 msgid "Combine metrics"
 msgstr "Métroca de orden"
@@ -3017,17 +3063,6 @@ msgid ""
 "and color."
 msgstr ""
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-
 #, fuzzy
 msgid "Comparison"
 msgstr "Columna de Tiempo"
@@ -3094,12 +3129,19 @@ msgstr "Configurar ámbito de filtros"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "Configurar los elementos básicos de la capa de anotaciones."
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 
 msgid "Configure your how you overlay is displayed here."
 msgstr ""
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Mostrar Dashboard"
+
 #, fuzzy
 msgid "Confirm overwrite"
 msgstr "Confirmar guardado"
@@ -3107,6 +3149,9 @@ msgstr "Confirmar guardado"
 msgid "Confirm save"
 msgstr "Confirmar guardado"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 #, fuzzy
 msgid "Connect"
 msgstr "Probar Conexión"
@@ -3141,9 +3186,6 @@ msgstr "La conexión ha fallado, por favor verifique sus ajustes de conexión"
 msgid "Connection failed, please check your connection settings."
 msgstr "La conexión ha fallado, por favor verifique sus ajustes de conexión"
 
-msgid "Connection looks good!"
-msgstr "¡La conexión parece correcta!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "Formato Fecha/Hora"
@@ -3187,21 +3229,21 @@ msgstr "Copiar al portapapeles"
 msgid "Copy"
 msgstr ""
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "Copiar instrucción SELECT al portapapeles"
 
-msgid "Copy and Paste JSON credentials"
+msgid "Copy URL"
 msgstr ""
 
-msgid "Copy and paste the entire service account .json file here"
+msgid "Copy and Paste JSON credentials"
 msgstr ""
 
 msgid "Copy link"
 msgstr "Copiar enlace"
 
-msgid "Copy message"
-msgstr "Mensaje de Aviso"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Copia de %s"
@@ -3219,6 +3261,9 @@ msgstr "Copiar URL de la consulta"
 msgid "Copy query link to your clipboard"
 msgstr "Copiar consulta de partición al portapapeles"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr ""
 
@@ -3235,6 +3280,9 @@ msgstr "Copiar al portapapeles"
 msgid "Copy to clipboard"
 msgstr "Copiar al portapapeles"
 
+msgid "Corner Radius"
+msgstr ""
+
 #, fuzzy
 msgid "Correlation"
 msgstr "Duración"
@@ -3265,6 +3313,9 @@ msgstr "No se ha podido cargar el controlador de la base de datos: {}"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 #, fuzzy
 msgid "Count"
 msgstr "Columna"
@@ -3368,6 +3419,9 @@ msgstr "Creando un origen de datos y creando una nueva pestaña"
 msgid "Creator"
 msgstr "Creador"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 #, fuzzy
 msgid "Crimson"
 msgstr "Acción"
@@ -3463,6 +3517,9 @@ msgstr ""
 msgid "Custom color palettes"
 msgstr "Autocompletar filtros"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "Personalizar"
@@ -3499,9 +3556,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr ""
 
-msgid "D3 Format"
-msgstr "Formato D3"
-
 msgid "D3 format"
 msgstr "Formato D3"
 
@@ -3561,6 +3615,21 @@ msgstr "El dashboard [{}] ha sido creado y el gráfico [{}] ha sido añadido a 
 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"
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "El Dashboard no pudo ser actualizado."
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "El Dashboard no pudo ser actualizado."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "El Dashboard no pudo ser actualizado."
+
 msgid "Dashboard could not be deleted."
 msgstr "El Dashboard no pudo ser eliminado."
 
@@ -3574,6 +3643,10 @@ msgstr "El dashboard no existe"
 msgid "Dashboard imported"
 msgstr "Propiedades del Dashboard"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "El Dashboard no pudo ser actualizado."
+
 msgid "Dashboard parameters are invalid."
 msgstr "Parámetros de Dashboard inválidos."
 
@@ -3620,10 +3693,6 @@ msgstr "en cache"
 msgid "Data"
 msgstr "Datos"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "Base de datos"
-
 #, fuzzy
 msgid "Data Table"
 msgstr "Esitar Tabla"
@@ -3652,6 +3721,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr ""
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Base de datos"
+
 msgid "Data preview"
 msgstr "Previsualización de Datos"
 
@@ -3827,13 +3900,6 @@ msgid ""
 "database table to the left or "
 msgstr ""
 
-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 ""
-
 #, fuzzy
 msgid "Datasets could not be deleted."
 msgstr "El conjunto de datos no pudo ser eliminado."
@@ -3876,9 +3942,6 @@ msgstr "Formato Fecha/Hora"
 msgid "Date/Time"
 msgstr "Fecha/Hora"
 
-msgid "Datetime Format"
-msgstr "Formato FechaHora"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3910,13 +3973,11 @@ msgstr "Activo"
 msgid "December"
 msgstr "Diciembre"
 
-msgid "Decides which column to sort the base axis by."
+msgid "Decides which column or measure to sort the base axis by."
 msgstr ""
 
-msgid "Decides which measure to sort the base axis by."
-msgstr ""
-
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "Caracter Decimal"
 
 msgid "Deck.gl - 3D Grid"
@@ -3962,9 +4023,6 @@ msgstr "crear un "
 msgid "Default Catalog"
 msgstr "Valores Nulos"
 
-msgid "Default Endpoint"
-msgstr "Endpoint predeterminado"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "Selecciona un esquema (%s)"
@@ -3972,7 +4030,10 @@ msgstr "Selecciona un esquema (%s)"
 msgid "Default URL"
 msgstr "Url por defecto"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
 
 #, fuzzy
@@ -3994,10 +4055,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr ""
 
-#, fuzzy
-msgid "Default value is required"
-msgstr "Fuentes de datos"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 
@@ -4044,9 +4101,6 @@ msgstr ""
 "Define un una ventana de desplazamiento móvil para aplicar, funciona "
 "junto con el cuadro de texto [Periods]"
 
-msgid "Defines how each series is broken down"
-msgstr ""
-
 msgid "Defines the grid size in pixels"
 msgstr ""
 
@@ -4108,9 +4162,17 @@ msgstr "¿Realmente quieres eliminar la consulta?"
 msgid "Delete Report?"
 msgstr "Plantillas CSS"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "eliminar"
+
 msgid "Delete Template?"
 msgstr "Plantillas CSS"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "¿Realmente quieres eliminar la consulta?"
+
 msgid "Delete all Really?"
 msgstr "¿Realmente quieres borrar todo?"
 
@@ -4130,12 +4192,20 @@ msgstr "Alertas e informes"
 msgid "Delete query"
 msgstr "Eliminar consulta"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "eliminar"
+
 msgid "Delete template"
 msgstr "Eliminar plantilla"
 
 msgid "Delete this container and save to remove this message."
 msgstr ""
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Eliminar consulta"
+
 #, fuzzy
 msgid "Deleted"
 msgstr "eliminar"
@@ -4198,13 +4268,29 @@ msgstr[1] ""
 msgid "Deleted %s"
 msgstr "Eliminado: %s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Eliminado: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Eliminado: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Eliminado: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Eliminado: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Eliminado: %s"
 
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 
 msgid "Delimited long & lat single column"
@@ -4217,9 +4303,6 @@ msgstr "Delimitador"
 msgid "Delivery method"
 msgstr "Agregar método de entrega"
 
-msgid "Demographics"
-msgstr ""
-
 #, fuzzy
 msgid "Density"
 msgstr "Entidad"
@@ -4228,10 +4311,6 @@ msgstr "Entidad"
 msgid "Dependent on"
 msgstr "Orden descendente"
 
-#, fuzzy
-msgid "Deprecated"
-msgstr "Creado"
-
 msgid "Description"
 msgstr "Descripción"
 
@@ -4329,10 +4408,6 @@ msgstr ""
 msgid "Discard"
 msgstr ""
 
-#, fuzzy
-msgid "Display"
-msgstr "Valor del Filtro"
-
 #, fuzzy
 msgid "Display Name"
 msgstr "Valor del Filtro"
@@ -4341,12 +4416,19 @@ msgstr "Valor del Filtro"
 msgid "Display all"
 msgstr "Valor del Filtro"
 
+msgid "Display column in the chart"
+msgstr ""
+
 msgid "Display column level subtotal"
 msgstr ""
 
 msgid "Display column level total"
 msgstr ""
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Nombre(s) de columna(s) "
+
 msgid "Display configuration"
 msgstr "Configuración de visualización"
 
@@ -4368,7 +4450,7 @@ msgid "Display row level total"
 msgstr ""
 
 #, fuzzy
-msgid "Display settings"
+msgid "Display type icon"
 msgstr "Configuracion"
 
 msgid ""
@@ -4386,9 +4468,6 @@ msgstr "Estimar costo"
 msgid "Distribution"
 msgstr "Contribución"
 
-msgid "Distribution - Bar Chart"
-msgstr "Distribución - Gráfico de Barra"
-
 msgid "Divider"
 msgstr "División"
 
@@ -4421,9 +4500,18 @@ msgstr "Descargar como imagen"
 msgid "Download as image"
 msgstr "Descargar como imagen"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr ""
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "Borrador"
 
@@ -4520,6 +4608,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "Editar Base de Datos"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Duplicar pestaña"
+
+#, python-format
+msgid "Duplicate role %(name)s"
+msgstr ""
+
 msgid "Duplicate tab"
 msgstr "Duplicar pestaña"
 
@@ -4532,29 +4628,12 @@ msgid ""
 "the cache. Note this defaults to the global timeout if undefined."
 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 ""
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-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."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4571,6 +4650,9 @@ msgstr ""
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr ""
 
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr ""
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr ""
 
@@ -4596,10 +4678,6 @@ msgstr ""
 msgid "ERROR"
 msgstr "%s Error"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr ""
-
 msgid "Edge length"
 msgstr ""
 
@@ -4626,31 +4704,19 @@ msgstr "Editar CSS"
 msgid "Edit CSS template properties"
 msgstr "Editar propiedades de plantilla CSS"
 
-msgid "Edit Chart"
-msgstr "Editar Gráfico"
-
 #, fuzzy
 msgid "Edit Chart Properties"
 msgstr "Editar propiedades de gráfico"
 
-msgid "Edit Column"
-msgstr "Editar Columna"
-
 msgid "Edit Dashboard"
 msgstr "Editar Dashboard"
 
-msgid "Edit Database"
-msgstr "Editar Base de Datos"
-
 msgid "Edit Dataset "
 msgstr "Editar Base de Datos"
 
 msgid "Edit Log"
 msgstr "Editar Registro"
 
-msgid "Edit Metric"
-msgstr "Editar Métrica"
-
 msgid "Edit Plugin"
 msgstr "Editar Columna"
 
@@ -4659,16 +4725,21 @@ msgid "Edit Report"
 msgstr "informe"
 
 #, fuzzy
-msgid "Edit Rule"
+msgid "Edit Role"
 msgstr "Nombre de la consulta"
 
-msgid "Edit Table"
-msgstr "Esitar Tabla"
+#, fuzzy
+msgid "Edit Rule"
+msgstr "Nombre de la consulta"
 
 #, fuzzy
 msgid "Edit Tag"
 msgstr "Editar Registro"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "ditar consulta"
+
 msgid "Edit annotation"
 msgstr "Editar anotación"
 
@@ -4708,6 +4779,10 @@ msgstr "Editar propiedades"
 msgid "Edit query"
 msgstr "ditar consulta"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "Nombre de la consulta"
+
 msgid "Edit template"
 msgstr "Cargar una plantilla"
 
@@ -4721,6 +4796,10 @@ msgstr "Editar Dashboard"
 msgid "Edit time range"
 msgstr "Editar rango de tiempo"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "ditar consulta"
+
 msgid "Edited"
 msgstr "Editado"
 
@@ -4747,6 +4826,14 @@ msgstr ""
 msgid "Elevation"
 msgstr "Duración"
 
+#, fuzzy
+msgid "Email"
+msgstr "Totales"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "Nombre es requerido"
+
 msgid "Email reports active"
 msgstr ""
 
@@ -4764,6 +4851,10 @@ msgstr ""
 msgid "Embed dashboard"
 msgstr "Guardar Dashboard"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "El Dashboard no pudo ser eliminado."
+
 msgid "Embedding deactivated."
 msgstr ""
 
@@ -4774,9 +4865,6 @@ msgstr "Es filtrable"
 msgid "Emphasis"
 msgstr ""
 
-msgid "Employment and education"
-msgstr ""
-
 msgid "Empty circle"
 msgstr ""
 
@@ -4801,9 +4889,6 @@ msgstr ""
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr ""
 
-msgid "Enable Filter Select"
-msgstr "Habilitar selección de filtro"
-
 msgid "Enable cross-filtering"
 msgstr ""
 
@@ -4915,11 +5000,24 @@ msgstr "Nombre de informe"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr ""
 
-msgid "Entity"
-msgstr "Entidad"
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Nombre de la alerta"
 
 #, fuzzy
-msgid "Entity ID"
+msgid "Enter the user's last name"
+msgstr "Nombre de la alerta"
+
+msgid "Enter the user's username"
+msgstr ""
+
+msgid "Entity"
 msgstr "Entidad"
 
 msgid "Equal Date Sizes"
@@ -4938,6 +5036,14 @@ msgstr ""
 "Lo sentimos, hubo un error al obtener la información de la base de datos:"
 " %s"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Error obteniendo datos"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Se produjo un error al crear el origen de datos"
+
 #, 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"
@@ -4960,6 +5066,9 @@ msgstr ""
 msgid "Error message"
 msgstr "Mensaje de error"
 
+msgid "Error parsing"
+msgstr ""
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "Se produjo un error al crear el origen de datos"
@@ -4976,6 +5085,22 @@ msgstr "Subir Excel"
 msgid "Error saving dataset"
 msgstr "Se produjo un error al crear el origen de datos"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Se produjo un error al crear el origen de datos"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Error obteniendo datos"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Error obteniendo datos"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Error obteniendo datos"
+
 #, fuzzy
 msgid "Error while fetching charts"
 msgstr "Error obteniendo datos"
@@ -4984,10 +5109,30 @@ msgstr "Error obteniendo datos"
 msgid "Error while fetching data: %s"
 msgstr "Error obteniendo datos"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Error obteniendo datos"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Error obteniendo datos"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Error obteniendo datos"
+
 #, fuzzy, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "Error al guardar el conjunto de datos: %s"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Error obteniendo datos"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Error obteniendo datos"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr ""
@@ -5013,17 +5158,6 @@ msgstr "Estimar el costo antes de ejecutar una consulta"
 msgid "Event"
 msgstr "Recientes"
 
-#, fuzzy
-msgid "Event Flow"
-msgstr "Flujo de Eventos"
-
-#, fuzzy
-msgid "Event Names"
-msgstr "Nombre de Hoja"
-
-msgid "Event definition"
-msgstr ""
-
 msgid "Event flow"
 msgstr "Flujo de Eventos"
 
@@ -5048,13 +5182,13 @@ msgstr "Ver ejemplos"
 msgid "Examples"
 msgstr "Ver ejemplos"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "Subida de archivos CSV"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "Subida de archivos CSV"
+
 #, fuzzy
 msgid "Exclude selected values"
 msgstr "Limitar valores del selector"
@@ -5155,12 +5289,6 @@ msgstr "Exportar a YAML"
 msgid "Export to Pivoted .CSV"
 msgstr "Exportar a YAML"
 
-msgid "Export to YAML"
-msgstr "Exportar a YAML"
-
-msgid "Export to YAML?"
-msgstr "¿Exportar a YAML?"
-
 msgid "Export to full .CSV"
 msgstr ""
 
@@ -5180,11 +5308,9 @@ msgstr ""
 msgid "Expose in SQL Lab"
 msgstr "Mostrar en el laboratorio SQL"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Mostrar esta base de datos en el laboratorio SQL"
-
-msgid "Expression"
-msgstr "Expresión"
+#, fuzzy
+msgid "Extent"
+msgstr "Recientes"
 
 msgid "Extra"
 msgstr "Extra"
@@ -5206,10 +5332,6 @@ msgid ""
 "\"warning_markdown\": \"This is a warning.\" }`."
 msgstr ""
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "El campo adicional no se puede decodificar por JSON. %(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "Parámetros extra para usar en consultas con plantillas jinja"
 
@@ -5230,6 +5352,10 @@ msgstr "caja de texto"
 msgid "FEB"
 msgstr "FEB"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Editar Base de Datos"
+
 msgid "FRI"
 msgstr "VIE"
 
@@ -5240,16 +5366,15 @@ msgstr "Octubre"
 msgid "Factor to multiply the metric by"
 msgstr ""
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "Falló"
 
 msgid "Failed at retrieving results"
 msgstr "Falla al recuperar los resultados"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr ""
-
 msgid "Failed to create report"
 msgstr ""
 
@@ -5280,6 +5405,10 @@ msgstr "Filtro de padre"
 msgid "Failed to start remote query on a worker."
 msgstr ""
 
+#, fuzzy
+msgid "Failed to stop query."
+msgstr "¿Realmente quieres borrar todo?"
+
 #, fuzzy
 msgid "Failed to tag items"
 msgstr "¿Realmente quieres borrar todo?"
@@ -5304,9 +5433,6 @@ msgstr ""
 msgid "February"
 msgstr "Febrero"
 
-msgid "Fetch Values Predicate"
-msgstr "Predicado Obtención de Valores"
-
 msgid "Fetch data preview"
 msgstr "Obtener previsualización de datos"
 
@@ -5332,15 +5458,12 @@ msgstr "El campo es obligatorio"
 msgid "File"
 msgstr "Archivo"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "Configurar ámbito de filtros"
-
 msgid "File extension is not allowed."
 msgstr ""
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "Configurar ámbito de filtros"
 
 #, fuzzy
 msgid "File upload"
@@ -5417,9 +5540,6 @@ msgstr ""
 msgid "Filter your charts"
 msgstr "Filtrar tus Gráficos"
 
-msgid "Filterable"
-msgstr "Filtrable"
-
 msgid "Filters"
 msgstr "Filtros"
 
@@ -5432,6 +5552,16 @@ msgstr "Filtrar por estado"
 msgid "Filters for comparison must have a value"
 msgstr ""
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "`row_limit` debe ser mayor o igual a 1"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr ""
@@ -5457,6 +5587,14 @@ msgstr ""
 msgid "First"
 msgstr ""
 
+#, fuzzy
+msgid "First name"
+msgstr "El Gráfico ha cambiado"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "Nombre es requerido"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5540,6 +5678,10 @@ msgstr "Formato Fecha/Hora"
 msgid "Force refresh"
 msgstr "Forzar actualización"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Forzar actualización"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "Forzar actualización"
@@ -5673,6 +5815,10 @@ msgstr "Configuracion"
 msgid "Geohash"
 msgstr ""
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Columna"
+
 msgid "Get the last date by the date unit."
 msgstr ""
 
@@ -5737,9 +5883,6 @@ msgstr "Agrupar por"
 msgid "Group by"
 msgstr "Agrupar por"
 
-msgid "Groupable"
-msgstr "Agrupable"
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5758,11 +5901,6 @@ msgstr "Eliminar plantilla"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-
 #, fuzzy
 msgid "Has created by"
 msgstr "fue creada"
@@ -5770,9 +5908,6 @@ msgstr "fue creada"
 msgid "Header"
 msgstr "Encabezado"
 
-msgid "Header Row"
-msgstr "Fila de Encabezado"
-
 #, fuzzy
 msgid "Header row"
 msgstr "Fila de Encabezado"
@@ -5780,19 +5915,16 @@ msgstr "Fila de Encabezado"
 msgid "Heatmap"
 msgstr "Mapa de Calor"
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "Compartir gráfico"
-
-msgid "Heatmap Options"
-msgstr ""
-
 msgid "Height"
 msgstr "Altura"
 
 msgid "Height of the sparkline"
 msgstr ""
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Columna de Tiempo"
+
 #, fuzzy
 msgid "Hide Line"
 msgstr "Ocultar capa"
@@ -5822,10 +5954,6 @@ msgstr "Buscar"
 msgid "Histogram"
 msgstr "Histograma"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "Compartir gráfico"
-
 msgid "Home"
 msgstr "Inicio"
 
@@ -5906,37 +6034,29 @@ msgid ""
 "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."
-
-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.<br/>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 ""
-
-#, fuzzy
-msgid "If Table Already Exists"
-msgstr "La fuente de datos %(name)s ya existe"
+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."
 
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr ""
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
 msgstr ""
 
-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"
+#, fuzzy
+msgid "If table already exists"
+msgstr "La fuente de datos %(name)s ya existe"
 
 #, fuzzy
 msgid "Ignore cache when generating report"
@@ -5960,9 +6080,6 @@ msgstr ""
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr "Suplantar Usuario Conectado (Presto, Trino, Drill & Hive)"
 
-msgid "Impersonate the logged on user"
-msgstr "Suplantar el usuario conectado"
-
 msgid "Import"
 msgstr "Import"
 
@@ -5973,9 +6090,6 @@ msgstr "Importar %s"
 msgid "Import Dashboard(s)"
 msgstr "Importar Dashboard(s)"
 
-msgid "Import a table definition"
-msgstr "Importar definición de tabla"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "Importar el gráfico falló por una razón desconocida"
 
@@ -6011,15 +6125,15 @@ msgstr "¿Consulta vacía?"
 msgid "Import saved query failed for an unknown reason."
 msgstr "Importar el gráfico falló por una razón desconocida"
 
-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 ""
-
 #, fuzzy
 msgid "In"
 msgstr "en"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr ""
 
@@ -6045,17 +6159,18 @@ msgstr "crear un "
 msgid "Index"
 msgstr "Desconectado"
 
-msgid "Index Column"
-msgstr "Columna de Índice"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "Ocultar capa"
+msgid "Index column"
+msgstr "Columna de Tiempo"
 
 #, fuzzy
 msgid "Index label"
 msgstr "Ocultar capa"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Ver claves e índices (%s)"
+
 msgid "Info"
 msgstr "Información"
 
@@ -6074,6 +6189,13 @@ msgstr ""
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr ""
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "Ocultar capa"
+
+msgid "Insert Layer title"
+msgstr ""
+
 #, fuzzy
 msgid "Intensity"
 msgstr "Entidad"
@@ -6112,10 +6234,6 @@ msgstr "Filtrar por estado"
 msgid "Intervals"
 msgstr "Intérvalo de actualización"
 
-#, fuzzy
-msgid "Intesity"
-msgstr "Entidad"
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -6156,6 +6274,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr "Formato de fecha/hora inválido"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "Tipo de operación de filtrado inválida: %(op)s"
@@ -6221,6 +6342,10 @@ msgstr "Selección inversa"
 msgid "Invert current page"
 msgstr "El Gráfico ha cambiado"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Informe fallido"
+
 #, fuzzy
 msgid "Is certified"
 msgstr "Certificado por"
@@ -6417,12 +6542,6 @@ msgstr "Compartir"
 msgid "Last"
 msgstr "en"
 
-msgid "Last Changed"
-msgstr "Último cambio"
-
-msgid "Last Modified"
-msgstr "Última modificación"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "Última actualización %s"
@@ -6431,6 +6550,10 @@ msgstr "Última actualización %s"
 msgid "Last Updated %s by %s"
 msgstr "Última actualización %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Iniciar en"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr ""
@@ -6439,6 +6562,10 @@ msgstr ""
 msgid "Last day"
 msgstr "Sábado"
 
+#, fuzzy
+msgid "Last login"
+msgstr "mes"
+
 msgid "Last modified"
 msgstr "Última modificación"
 
@@ -6446,6 +6573,14 @@ msgstr "Última modificación"
 msgid "Last month"
 msgstr "mes"
 
+#, fuzzy
+msgid "Last name"
+msgstr "Nombre de la Fuente de Datos"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Nombre es requerido"
+
 #, fuzzy
 msgid "Last quarter"
 msgstr "consulta"
@@ -6461,15 +6596,42 @@ msgstr "Semana anterior"
 msgid "Last year"
 msgstr "Cluster"
 
+#, fuzzy
+msgid "Lat"
+msgstr "en"
+
 msgid "Latitude"
 msgstr ""
 
 msgid "Latitude of default viewport"
 msgstr ""
 
+#, fuzzy
+msgid "Layer"
+msgstr "año"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Nombre de la alerta"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "Configuración"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Tipo de dato"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Filtrar por usuario"
+
+#, fuzzy
+msgid "Layers"
+msgstr "alertas"
+
 msgid "Layout"
 msgstr ""
 
@@ -6482,11 +6644,6 @@ msgstr ""
 msgid "Layout type of tree"
 msgstr ""
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-
 #, fuzzy
 msgid "Least recently modified"
 msgstr "Última modificación"
@@ -6562,11 +6719,6 @@ msgstr "Valor del filtro (sensible a mayúsculas/minúsculas)"
 msgid "Limit type"
 msgstr "Tipo"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-
 msgid "Limits the number of cells that get retrieved."
 msgstr ""
 
@@ -6610,6 +6762,9 @@ msgstr ""
 "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 "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr ""
 
@@ -6641,10 +6796,17 @@ msgstr "Orden Descendente"
 msgid "Link Copied!"
 msgstr "Enlace Copiado!"
 
+msgid "List Roles"
+msgstr ""
+
 #, fuzzy
 msgid "List Unique Values"
 msgstr "Limitar valores del selector"
 
+#, fuzzy
+msgid "List Users"
+msgstr "Número Grande"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr ""
 
@@ -6717,6 +6879,10 @@ msgstr ""
 msgid "Login"
 msgstr "Acceder"
 
+#, fuzzy
+msgid "Login count"
+msgstr "Columna"
+
 #, fuzzy
 msgid "Login with"
 msgstr "Grosor de línea"
@@ -6727,6 +6893,10 @@ msgstr "Salir"
 msgid "Logs"
 msgstr "Registros"
 
+#, fuzzy
+msgid "Lon"
+msgstr "en"
+
 msgid "Long dashed"
 msgstr ""
 
@@ -6770,9 +6940,6 @@ msgstr "LUN"
 msgid "Main"
 msgstr "en"
 
-msgid "Main Datetime Column"
-msgstr "Columna principal de fecha y hora"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6810,6 +6977,10 @@ msgstr "Usar escala logarítimica para el Eje Y"
 msgid "Map"
 msgstr "Mapa de Árbol"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Editar propiedades de gráfico"
+
 #, fuzzy
 msgid "Map Style"
 msgstr "Tipo de Markup"
@@ -6855,6 +7026,9 @@ msgstr "alertas"
 msgid "Markup type"
 msgstr "Tipo de Markup"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "Máx"
 
@@ -6862,7 +7036,7 @@ msgstr "Máx"
 msgid "Max Bubble Size"
 msgstr "Tamaño burbuja"
 
-msgid "Max Events"
+msgid "Max. features"
 msgstr ""
 
 msgid "Maximum"
@@ -6874,6 +7048,9 @@ msgstr ""
 msgid "Maximum Radius"
 msgstr ""
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6916,6 +7093,18 @@ msgstr "Limitar valores del selector"
 msgid "Medium"
 msgstr ""
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -7016,11 +7205,6 @@ msgid ""
 "appropriate)."
 msgstr ""
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-
 msgid "Metrics"
 msgstr "Métricas"
 
@@ -7065,7 +7249,7 @@ msgstr ""
 msgid "Minimum Radius"
 msgstr ""
 
-msgid "Minimum leaf node event count"
+msgid "Minimum must be strictly less than maximum"
 msgstr ""
 
 msgid ""
@@ -7080,6 +7264,10 @@ msgstr ""
 msgid "Minimum value"
 msgstr "Valores Nulos"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "La fecha de inicio no puede ser posterior a la fecha final"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr ""
 
@@ -7105,6 +7293,9 @@ msgstr "minuto"
 msgid "Minutes value"
 msgstr "Valores Nulos"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 #, fuzzy
 msgid "Missing URL parameters"
 msgstr "Editar parámetros de la plantilla"
@@ -7124,6 +7315,12 @@ msgstr "Modificado"
 msgid "Modified %s"
 msgstr "Última modificación en %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 msgid "Modified by"
 msgstr "Modificado por"
 
@@ -7131,10 +7328,6 @@ msgstr "Modificado por"
 msgid "Modified by: %s"
 msgstr "Última modificación por %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "Columnas modificadas: %s"
-
 msgid "Monday"
 msgstr "Lunes"
 
@@ -7202,9 +7395,6 @@ msgstr "Elija un gráfico o un dashboard, no ambos"
 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]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "Debe especificarse al menos una columna numérica"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr ""
 
@@ -7231,9 +7421,6 @@ msgstr "Uno o varios controles para agrupar por"
 msgid "NOV"
 msgstr "NOV"
 
-msgid "NOW"
-msgstr ""
-
 #, fuzzy
 msgid "NUMERIC"
 msgstr "Métrica"
@@ -7261,9 +7448,6 @@ msgstr "Columna de Tiempo"
 msgid "Name of the source nodes"
 msgstr ""
 
-msgid "Name of the table that exists in the source database"
-msgstr "Nombre de la tabla que existe en la fuente de datos."
-
 #, fuzzy
 msgid "Name of the target nodes"
 msgstr "Propietarios del dataset"
@@ -7282,20 +7466,24 @@ msgstr ""
 msgid "Need help? Learn more about"
 msgstr ""
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Error de red."
+
 #, fuzzy
 msgid "Network error"
 msgstr "Error de red."
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Se produjo un error al crear el origen de datos"
+
 msgid "Network error."
 msgstr "Error de red."
 
 msgid "New chart"
 msgstr "Nuevo gráfico"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "Nuevas columnas añadidas: %s"
-
 #, fuzzy
 msgid "New dataset"
 msgstr "Cambiar fuente"
@@ -7351,6 +7539,10 @@ msgstr "Recientes"
 msgid "No Tags created"
 msgstr "fue creada"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Probar Conexión"
+
 #, fuzzy
 msgid "No annotation layers"
 msgstr "Capas de Anotación"
@@ -7372,10 +7564,6 @@ msgstr "Todos los filtros"
 msgid "No charts"
 msgstr "No hay gráficos"
 
-#, fuzzy
-msgid "No charts yet"
-msgstr "No hay gráficos"
-
 #, fuzzy
 msgid "No columns found"
 msgstr "Filtros Incompatibles (%d)"
@@ -7396,10 +7584,6 @@ msgstr "Filtros Incompatibles (%d)"
 msgid "No compatible schema found"
 msgstr "Filtros Incompatibles (%d)"
 
-#, fuzzy
-msgid "No dashboards yet"
-msgstr "No hay dashboards"
-
 msgid "No data"
 msgstr "No hay datos"
 
@@ -7409,6 +7593,10 @@ msgstr ""
 msgid "No data in file"
 msgstr "No hay datos en el archivo"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "descripción"
+
 msgid "No databases match your search"
 msgstr ""
 
@@ -7444,14 +7632,6 @@ msgstr ""
 msgid "No matching records found"
 msgstr "No se encontraron registros"
 
-#, fuzzy
-msgid "No of Bins"
-msgstr "Copia de %s"
-
-#, fuzzy
-msgid "No recents yet"
-msgstr "Recientes"
-
 msgid "No records found"
 msgstr "No se encontraron registros"
 
@@ -7474,6 +7654,10 @@ msgid ""
 "contains data for the selected time range."
 msgstr ""
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Recientes"
+
 msgid "No rows were returned for this dataset"
 msgstr ""
 
@@ -7488,10 +7672,6 @@ msgstr "Expresión SQL"
 msgid "No saved metrics found"
 msgstr "%s métrica(s) guardada(s)"
 
-#, fuzzy
-msgid "No saved queries yet"
-msgstr "Consultas Guardadas"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 "No se encontraron resultados almacenados, necesitas ejecutar tu consulta "
@@ -7514,6 +7694,10 @@ msgstr "Filtros Incompatibles (%d)"
 msgid "No time columns"
 msgstr "Columna de Tiempo"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Recientes"
+
 msgid "No validator found (configured for the engine)"
 msgstr ""
 
@@ -7601,6 +7785,10 @@ msgstr "Nada disparado"
 msgid "Not up to date"
 msgstr ""
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "Nada disparado"
+
 msgid "Nothing triggered"
 msgstr "Nada disparado"
 
@@ -7710,9 +7898,6 @@ msgstr "Octubre"
 msgid "Offline"
 msgstr "Desconectado"
 
-msgid "Offset"
-msgstr "Desplazamiento"
-
 msgid "On Grace"
 msgstr ""
 
@@ -7737,6 +7922,10 @@ msgstr "Uno o varios controles para pivotar como columnas"
 msgid "One or many metrics to display"
 msgstr "Una o varias métricas para mostrar"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "Una o más capas de anotación fallaron al cargar."
+
 msgid "One or more columns already exist"
 msgstr "Una o más columnas ya existen"
 
@@ -7767,13 +7956,6 @@ msgstr "Issue 1006 - Faltan uno o más parámetros especificados en la consulta.
 msgid "One or more parameters specified in the query are missing."
 msgstr "Issue 1006 - Faltan uno o más parámetros especificados en la consulta."
 
-msgid "One ore more annotation layers failed loading."
-msgstr "Una o más capas de anotación fallaron al cargar."
-
-#, fuzzy
-msgid "Only SELECT statements are allowed against this database."
-msgstr "Solo las consultas `SELECT` están permitidas en esta base de datos"
-
 msgid "Only Total"
 msgstr ""
 
@@ -7786,9 +7968,6 @@ msgstr ""
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
 
-msgid "Only selected panels will be affected by this filter"
-msgstr ""
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7871,9 +8050,6 @@ msgstr "%s opción(es)"
 msgid "Or choose from a list of other databases we support:"
 msgstr ""
 
-msgid "Order by entity id"
-msgstr ""
-
 msgid "Order results by selected columns"
 msgstr ""
 
@@ -7881,6 +8057,13 @@ msgstr ""
 msgid "Ordering"
 msgstr "Orden descendente"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 #, fuzzy
 msgid "Orientation"
 msgstr "Eliminar anotación"
@@ -8012,6 +8195,9 @@ msgid ""
 " or username."
 msgstr ""
 
+msgid "PDF download failed, please refresh and try again."
+msgstr ""
+
 msgid "Page length"
 msgstr ""
 
@@ -8073,6 +8259,14 @@ msgstr ""
 msgid "Password"
 msgstr "Contraseña de Broker"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "El tipo es obligatorio"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "El dashboard no existe"
+
 msgid "Paste Private Key here"
 msgstr ""
 
@@ -8136,6 +8330,14 @@ msgstr "Periodos"
 msgid "Periods must be a whole number"
 msgstr "Los periodos deben ser un valor entero positivo"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Expresión"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr ""
 
@@ -8151,9 +8353,6 @@ msgstr "Tabla física"
 msgid "Physical (table or view)"
 msgstr "Tabla física"
 
-msgid "Physical dataset"
-msgstr "Conjunto de datos físico"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
 
@@ -8175,15 +8374,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr ""
 
-msgid "Pick at least one field for [Series]"
-msgstr "Elige al menos un campo para [Series]"
-
 msgid "Pick at least one metric"
 msgstr "Elige al menos una métrica"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "Elige exactamente 2 columnas como [Origen / Destino]"
-
 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."
@@ -8196,9 +8389,8 @@ msgstr "Elige tu idioma favorito de markup"
 msgid "Pie Chart"
 msgstr "Nuevo gráfico"
 
-#, fuzzy
-msgid "Pie Chart (legacy)"
-msgstr "Compartir gráfico"
+msgid "Pie charts on a map"
+msgstr ""
 
 #, fuzzy
 msgid "Pie shape"
@@ -8211,6 +8403,14 @@ msgstr ""
 msgid "Pin"
 msgstr "en"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "alerta"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Altura"
+
 msgid "Pivot Table"
 msgstr "Tabla Dinámica"
 
@@ -8260,6 +8460,9 @@ msgid ""
 "your query again."
 msgstr ""
 
+msgid "Please choose a valid value"
+msgstr ""
+
 #, fuzzy
 msgid "Please choose at least one groupby"
 msgstr "Por favor elige al menos un campo en 'Group by'"
@@ -8270,12 +8473,25 @@ msgstr "Confirme"
 msgid "Please confirm the overwrite values."
 msgstr ""
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "Confirme"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Por favor, introduce un URI SQLAlchemy para probar"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr ""
 
@@ -8288,9 +8504,6 @@ msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] ""
 msgstr[1] ""
 
-msgid "Please save the query to enable sharing"
-msgstr "Por favor, guarda la consulta para habilitar el compartir"
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
 
@@ -8369,9 +8582,6 @@ msgstr ""
 msgid "Populate \"Default value\" to enable this control"
 msgstr ""
 
-msgid "Population age data"
-msgstr ""
-
 #, fuzzy
 msgid "Port"
 msgstr "informe"
@@ -8412,16 +8622,6 @@ msgstr ""
 msgid "Pre-filter is required"
 msgstr "El tipo es obligatorio"
 
-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."
-
 #, fuzzy
 msgid "Predictive"
 msgstr "Activo"
@@ -8443,10 +8643,6 @@ msgstr "Previsualizar"
 msgid "Preview uploaded file"
 msgstr "Subir Excel"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "Previsualizar: `%s`"
-
 msgid "Previous"
 msgstr "Anterior"
 
@@ -8498,18 +8694,13 @@ msgstr ""
 msgid "Progressive"
 msgstr ""
 
-msgid "Propagate"
-msgstr ""
+#, fuzzy
+msgid "Project Id"
+msgstr "Creado"
 
 msgid "Proportional"
 msgstr ""
 
-msgid "Public and privately shared sheets"
-msgstr ""
-
-msgid "Publicly shared sheets only"
-msgstr ""
-
 msgid "Published"
 msgstr "Publicado"
 
@@ -8530,9 +8721,6 @@ msgstr "`row_offset` debe ser mayor o igual a 0"
 msgid "Put the labels outside of the pie?"
 msgstr ""
 
-msgid "Put the labels outside the pie?"
-msgstr ""
-
 msgid "Put your code here"
 msgstr "Pon tu código aquí"
 
@@ -8649,10 +8837,6 @@ msgstr "Parámetros"
 msgid "Radius in miles"
 msgstr ""
 
-#, fuzzy, python-format
-msgid "Ran %s"
-msgstr "Duración: %s"
-
 #, fuzzy
 msgid "Range"
 msgstr "Administrar"
@@ -8685,25 +8869,10 @@ msgstr "Duración"
 msgid "Raw records"
 msgstr ""
 
-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"
-
-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"
-
 #, fuzzy
 msgid "Recently modified"
 msgstr "Última modificación"
 
-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"
-
 msgid "Recents"
 msgstr "Recientes"
 
@@ -8722,9 +8891,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-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"
-
 msgid "Redo the action"
 msgstr ""
 
@@ -8764,6 +8930,10 @@ msgstr "Intérvalo de actualización"
 msgid "Refresh interval saved"
 msgstr "Intérvalo de actualización"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "Ver esquema de tabla"
+
 msgid "Refresh the default values"
 msgstr ""
 
@@ -8824,8 +8994,10 @@ msgid "Remove table preview"
 msgstr "Eliminar vista previa de la tabla"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "Columnas eliminadas: %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
 
 msgid "Rename tab"
 msgstr "Renombrar pestaña"
@@ -8836,13 +9008,11 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
-#, fuzzy
-msgid "Rendering"
-msgstr "Orden Descendente"
-
 msgid "Replace"
 msgstr "Remplazar"
 
@@ -8958,6 +9128,9 @@ msgstr "Expresión"
 msgid "Repulsion strength between nodes"
 msgstr ""
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "Petición incorrecta: %(error)s"
@@ -8994,6 +9167,10 @@ msgstr "La operación de pivote requiere al menos un índice"
 msgid "Reset"
 msgstr "Recientes"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Columna de Tiempo"
+
 msgid "Reset state"
 msgstr "Restablecer estado"
 
@@ -9021,6 +9198,10 @@ msgstr ""
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr ""
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "ver resultados"
+
 msgid "Return to specific datetime."
 msgstr ""
 
@@ -9065,6 +9246,28 @@ msgstr ""
 msgid "Role"
 msgstr "Perfil"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Nombre de la alerta"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "Nombre es requerido"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Nombre es requerido"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "Cambiar fuente"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Roles"
 
@@ -9141,9 +9344,6 @@ msgstr ""
 msgid "Rows subtotal position"
 msgstr ""
 
-msgid "Rows to Read"
-msgstr "Filas a Leer"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "Filas a Leer"
@@ -9214,14 +9414,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "Copiado!"
 
-msgid "SQL Expression"
-msgstr "Expresión SQL"
-
 msgid "SQL Lab"
 msgstr "Laboratorio SQL"
 
-msgid "SQL Lab View"
-msgstr "Vista de Laboratorio SQL"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "Consultas Guardadas"
 
 #, python-format
 msgid ""
@@ -9316,20 +9514,10 @@ msgstr "El conjunto de datos no pudo ser creado."
 msgid "Samples for datasource could not be retrieved."
 msgstr "El conjunto de datos no pudo ser creado."
 
-msgid "Sankey"
-msgstr ""
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Guardar gráfico"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "Compartir gráfico"
-
-msgid "Sankey Diagram with Loops"
-msgstr ""
-
 #, fuzzy
 msgid "Satellite"
 msgstr "Filtro de Fecha"
@@ -9396,10 +9584,6 @@ msgstr ""
 msgid "Save query"
 msgstr "Guardar Consulta"
 
-#, fuzzy
-msgid "Save the query to enable this feature"
-msgstr "Por favor, guarda la consulta para habilitar el compartir"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
 
@@ -9429,6 +9613,9 @@ msgstr "No se encuentra la consulta guardada."
 msgid "Saved query parameters are invalid."
 msgstr "Los parametros del Gráfico son invalidos"
 
+msgid "Saving..."
+msgstr ""
+
 msgid "Scale and Move"
 msgstr ""
 
@@ -9490,11 +9677,6 @@ msgstr "Esquema"
 msgid "Schema cache timeout"
 msgstr "Tiempo de espera de caché"
 
-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"
-
 #, fuzzy
 msgid "Schemas allowed for File upload"
 msgstr ""
@@ -9587,9 +9769,6 @@ msgstr "30 segundos"
 msgid "Seconds value"
 msgstr "30 segundos"
 
-msgid "Secure Extra"
-msgstr ""
-
 msgid "Secure extra"
 msgstr "Seguridad"
 
@@ -9695,6 +9874,10 @@ msgstr "Especifica un esquema (si el sistema de base de datos lo soporta)."
 msgid "Select a sheet name from the uploaded file"
 msgstr ""
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Eliminar base de datos"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -9715,7 +9898,7 @@ msgstr "¿Realmente quieres borrar todo?"
 msgid "Select all items"
 msgstr "¿Realmente quieres borrar todo?"
 
-msgid "Select any columns for metadata inspection"
+msgid "Select an aggregation method to apply to the metric."
 msgstr ""
 
 #, fuzzy
@@ -9746,6 +9929,12 @@ msgstr "Esquema de Color Lineal"
 msgid "Select column"
 msgstr "Columna de Tiempo"
 
+#, fuzzy
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+"Seleccione en la lista desplegable los nombres de las columnas que deben "
+"analizarse como fechas."
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9843,6 +10032,14 @@ msgstr "Selecciona tabla o introduce su nombre"
 msgid "Select owners"
 msgstr "Probar Conexión"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "¿Realmente quieres borrar todo?"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Probar Conexión"
+
 #, fuzzy
 msgid "Select saved metrics"
 msgstr "%s métrica(s) guardada(s)"
@@ -9859,9 +10056,19 @@ msgstr "Selecciona tabla o introduce su nombre"
 msgid "Select scheme"
 msgstr "Selecciona un esquema (%s)"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr ""
 
+#, fuzzy
+msgid "Select tab"
+msgstr "¿Realmente quieres borrar todo?"
+
 #, fuzzy
 msgid "Select table or type to search tables"
 msgstr "Selecciona tabla o introduce su nombre"
@@ -9889,12 +10096,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr "¿Realmente quieres borrar todo?"
 
-msgid "Select the number of bins for the histogram"
-msgstr ""
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr ""
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9917,9 +10118,6 @@ msgstr ""
 msgid "Send as text"
 msgstr ""
 
-msgid "Send range filter events to other charts"
-msgstr ""
-
 msgid "September"
 msgstr "Septiembre"
 
@@ -9933,14 +10131,6 @@ msgstr "Series"
 msgid "Series Height"
 msgstr "Límite de Serie"
 
-#, fuzzy
-msgid "Series Limit Sort By"
-msgstr "Límite de Serie"
-
-#, fuzzy
-msgid "Series Limit Sort Descending"
-msgstr "Orden descendente"
-
 #, fuzzy
 msgid "Series Order"
 msgstr "Series"
@@ -9972,6 +10162,9 @@ msgstr ""
 msgid "Service Account"
 msgstr ""
 
+msgid "Service version"
+msgstr ""
+
 msgid "Set auto-refresh interval"
 msgstr "Configurar intervalo de actualización automática"
 
@@ -10000,6 +10193,10 @@ msgstr "Configuración"
 msgid "Settings for time series"
 msgstr ""
 
+#, fuzzy
+msgid "Shape"
+msgstr "Ver ejemplos"
+
 msgid "Share"
 msgstr "Compartir"
 
@@ -10065,18 +10262,9 @@ msgstr "Ver instrucción CREATE VIEW"
 msgid "Show Cell bars"
 msgstr "Todos los gráficos"
 
-msgid "Show Chart"
-msgstr "Mostrar Gráfico"
-
-msgid "Show Column"
-msgstr "Mostrar Columna"
-
 msgid "Show Dashboard"
 msgstr "Mostrar Dashboard"
 
-msgid "Show Database"
-msgstr "Mostrar Base de Datos"
-
 #, fuzzy
 msgid "Show Labels"
 msgstr "Mostrar Tabla"
@@ -10087,9 +10275,6 @@ msgstr "Mostrar Registro"
 msgid "Show Markers"
 msgstr ""
 
-msgid "Show Metric"
-msgstr "Mostrar Métrica"
-
 #, fuzzy
 msgid "Show Metric Names"
 msgstr "Mostrar Métrica"
@@ -10098,9 +10283,6 @@ msgstr "Mostrar Métrica"
 msgid "Show Range Filter"
 msgstr "Filtro de Fecha"
 
-msgid "Show Table"
-msgstr "Mostrar Tabla"
-
 msgid "Show Timestamp"
 msgstr ""
 
@@ -10138,9 +10320,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "Mostrar Columna"
 
-msgid "Show all..."
-msgstr ""
-
 msgid "Show axis line ticks"
 msgstr ""
 
@@ -10166,6 +10345,10 @@ msgstr ""
 msgid "Show empty columns"
 msgstr "Mostrar columna de tiempo SQL"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "Mostrar Métrica"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -10188,9 +10371,6 @@ msgstr ""
 msgid "Show less columns"
 msgstr "Mostrar columna de tiempo SQL"
 
-msgid "Show less..."
-msgstr ""
-
 msgid "Show minor ticks on axes."
 msgstr ""
 
@@ -10231,6 +10411,10 @@ msgstr "Mostrar Gráfico"
 msgid "Show the value on top of the bar"
 msgstr ""
 
+#, fuzzy
+msgid "Show total"
+msgstr "Mostrar Columna"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -10264,8 +10448,8 @@ msgid ""
 "higher the fill, the closer the metric is to the target."
 msgstr ""
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "Mostrando %s de %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -10302,18 +10486,15 @@ msgstr "Valores Nulos"
 msgid "Single value type"
 msgstr ""
 
-msgid "Size of edge symbols"
+msgid "Size in pixels"
 msgstr ""
 
-msgid "Size of marker. Also applies to forecast observations."
+msgid "Size of edge symbols"
 msgstr ""
 
-msgid "Sizes of vehicles"
+msgid "Size of marker. Also applies to forecast observations."
 msgstr ""
 
-msgid "Skip Rows"
-msgstr "Omitir Filas"
-
 #, 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."
@@ -10391,9 +10572,6 @@ msgstr ""
 msgid "Sorry, something went wrong. Try again later."
 msgstr ""
 
-msgid "Sorry, there appears to be no data"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr ""
@@ -10416,10 +10594,6 @@ msgstr "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!"
 msgid "Sort"
 msgstr "informe"
 
-#, fuzzy
-msgid "Sort Bars"
-msgstr "Ordenar por"
-
 #, fuzzy
 msgid "Sort Descending"
 msgstr "Orden descendente"
@@ -10445,9 +10619,6 @@ msgstr ""
 msgid "Sort ascending"
 msgstr "Orden Descendente"
 
-msgid "Sort bars by x labels."
-msgstr ""
-
 msgid "Sort by"
 msgstr "Ordenar por"
 
@@ -10476,6 +10647,10 @@ msgstr "Es filtrable"
 msgid "Sort metric"
 msgstr "Métroca de orden"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "Ver consulta"
+
 #, fuzzy
 msgid "Sort rows by"
 msgstr "Ordenar por"
@@ -10490,10 +10665,6 @@ msgstr "Tipo de dato"
 msgid "Source"
 msgstr "Fuente"
 
-#, fuzzy
-msgid "Source / Target"
-msgstr "Nombre de la Fuente de Datos"
-
 msgid "Source SQL"
 msgstr "Fuente SQL"
 
@@ -10541,9 +10712,6 @@ msgstr "Series"
 msgid "Stack"
 msgstr "Backend"
 
-msgid "Stack Trace:"
-msgstr ""
-
 msgid "Stack series"
 msgstr ""
 
@@ -10560,9 +10728,6 @@ msgstr ""
 msgid "Stacked Style"
 msgstr ""
 
-msgid "Stacked style"
-msgstr ""
-
 msgid "Standard time series"
 msgstr ""
 
@@ -10674,10 +10839,6 @@ msgstr "Recientes"
 msgid "Strength to pull the graph toward center"
 msgstr ""
 
-#, fuzzy
-msgid "Stretched style"
-msgstr "Obtenido %s"
-
 #, fuzzy
 msgid "Stroke Color"
 msgstr "Color fijo"
@@ -10702,16 +10863,20 @@ msgstr ""
 msgid "Subdomain"
 msgstr ""
 
-#, fuzzy
-msgid "Subheader"
-msgstr "Encabezado"
-
 msgid "Subheader Font Size"
 msgstr ""
 
 msgid "Submit"
 msgstr ""
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "%s - sin título"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Tamaño burbuja"
+
 msgid "Subtotal"
 msgstr ""
 
@@ -10768,9 +10933,6 @@ msgstr ""
 msgid "Superset chart"
 msgstr "Gráfico Superset"
 
-msgid "Superset dashboard"
-msgstr "Dashboard Superset"
-
 #, fuzzy
 msgid "Superset encountered an error while running a command."
 msgstr "La alerta encontró un error al ejecutar una consulta."
@@ -10783,9 +10945,6 @@ msgstr "Error inesperado del informe programado"
 msgid "Supported databases"
 msgstr "Eliminar base de datos"
 
-msgid "Survey Responses"
-msgstr ""
-
 #, fuzzy
 msgid "Swap dataset"
 msgstr "Conjunto de datos físico"
@@ -10799,6 +10958,12 @@ msgid ""
 "well."
 msgstr ""
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 #, fuzzy
 msgid "Symbol"
 msgstr "tornillo"
@@ -10810,9 +10975,20 @@ msgstr ""
 msgid "Symbol size"
 msgstr "Tamaño burbuja"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "Sincronizar las columnas desde la fuente"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr ""
 
@@ -10823,10 +10999,6 @@ msgstr ""
 msgid "TABLES"
 msgstr "TABLAS"
 
-#, fuzzy
-msgid "TEMPORAL X-AXIS"
-msgstr "Es temporal"
-
 #, fuzzy
 msgid "TEMPORAL_RANGE"
 msgstr "Es temporal"
@@ -10863,6 +11035,10 @@ msgid ""
 "connection, schema, and table name"
 msgstr ""
 
+#, fuzzy
+msgid "Table actions"
+msgstr "Columna de Tiempo"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10876,6 +11052,10 @@ msgstr "Tiempo de espera de caché"
 msgid "Table columns"
 msgstr "Columna de Tiempo"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Nombre Tabla"
+
 msgid "Table name undefined"
 msgstr "Nombre de tabla indefinido"
 
@@ -10947,11 +11127,6 @@ msgstr "El conjunto de datos no pudo ser eliminado."
 msgid "Tags"
 msgstr "Estado"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-
 #, fuzzy
 msgid "Target"
 msgstr "Iniciar"
@@ -10980,6 +11155,10 @@ msgid ""
 "coming from the controls."
 msgstr ""
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "Es temporal"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -11027,9 +11206,6 @@ msgid ""
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -11061,6 +11237,10 @@ msgstr "El dashboard ha sido guardado"
 msgid "The annotation has been updated"
 msgstr "El Gráfico no ha podido guardarse"
 
+#, fuzzy
+msgid "The background color of the charts."
+msgstr "El id del gráfico activo"
+
 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."
@@ -11091,6 +11271,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr ""
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "Métrica con la cual ordenar los resultados."
+
 #, fuzzy
 msgid "The color of the isoband"
 msgstr "Métrica con la cual ordenar los resultados."
@@ -11107,6 +11291,12 @@ msgid ""
 "        Edit the color scheme in the dashboard properties."
 msgstr ""
 
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+
 #, fuzzy
 msgid "The column header label"
 msgstr "Ordenar columnas alfabéticamente"
@@ -11121,6 +11311,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr "Issue 1004 - La columna fue eliminada o renombrada en la base de datos."
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -11132,25 +11328,9 @@ msgstr "El dashboard ha sido guardado"
 msgid "The data source seems to have been deleted"
 msgstr "La fuente de datos parece haber sido eliminada"
 
-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 ""
-"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."
-
-#, 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."
+#, fuzzy
+msgid "The database"
+msgstr "Eliminar base de datos"
 
 msgid "The database columns that contains lines information"
 msgstr ""
@@ -11187,15 +11367,9 @@ msgstr "La base de datos no han podido ser eliminada."
 msgid "The database was not found."
 msgstr "La base de datos no existe"
 
-#, 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."
+#, fuzzy
+msgid "The dataset"
+msgstr "Cambiar fuente"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr ""
@@ -11260,6 +11434,15 @@ msgstr ""
 "sqlalchemy.create_engine, mientras que el objeto metadata_params se "
 "descompone en la llamada a sqlalchemy.MetaData."
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -11277,6 +11460,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr ""
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -11309,20 +11495,13 @@ msgstr ""
 msgid "The id of the active chart"
 msgstr "El id del gráfico activo"
 
-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 ""
+#, fuzzy
+msgid "The layer attribution"
+msgstr "Atributos de formulario relacionados con el tiempo"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -11360,6 +11539,18 @@ msgstr ""
 "puntos de datos mostrados sean el total de 7 períodos. Esto ocultará el "
 "\"incremento\" que tendrá lugar durante los primeros 7 períodos."
 
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr ""
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Columna de Tiempo"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 #, fuzzy
 msgid "The name of the rule must be unique"
 msgstr "El nombre debe ser único"
@@ -11570,6 +11761,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr ""
 
@@ -11608,10 +11802,14 @@ msgstr "Issue 1004 - La columna fue eliminada o renombrada en la base de datos."
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "El dashboard ha sido guardado"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
+msgid "The service url of the layer"
 msgstr ""
 
 msgid "The size of each cell in meters"
@@ -11620,6 +11818,9 @@ msgstr ""
 msgid "The size of the square cell, in pixels"
 msgstr ""
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr ""
 
@@ -11641,11 +11842,6 @@ msgid ""
 "to run this query."
 msgstr ""
 
-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 ""
-
 #, 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."
@@ -11702,6 +11898,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr ""
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "El id del gráfico activo"
+
 msgid "The type of visualization to display"
 msgstr "El tipo de visualización a mostrar."
 
@@ -11724,6 +11924,14 @@ msgstr "La métrica '%(metric)s' no existe"
 msgid "The username provided when connecting to a database is not valid."
 msgstr ""
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "Calcular la contribución al total"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "Ingresa un nuevo título para la pestaña"
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr ""
 
@@ -11731,6 +11939,13 @@ msgstr ""
 msgid "The width of the Isoline in pixels"
 msgstr "El id del gráfico activo"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "El id del gráfico activo"
+
 #, fuzzy
 msgid "The width of the lines"
 msgstr "El id del gráfico activo"
@@ -11749,9 +11964,6 @@ msgstr "No hay filtros en este dashboard"
 msgid "There are no components added to this tab"
 msgstr ""
 
-msgid "There are no databases available"
-msgstr ""
-
 msgid "There are no filters in this dashboard."
 msgstr "No hay filtros en este dashboard"
 
@@ -11764,6 +11976,10 @@ msgid ""
 " or a typo."
 msgstr ""
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "El tipo de visualización a mostrar."
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11794,6 +12010,10 @@ msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s"
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Hubo un error con tu solicitud"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "Hubo un error con tu solicitud"
@@ -11814,6 +12034,12 @@ msgstr "Hubo un error con tu solicitud"
 msgid "There was an error loading the tables"
 msgstr "Hubo un error con tu solicitud"
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr ""
+"Lo sentimos, hubo un error al obtener la información de la base de datos:"
+" %s"
+
 #, fuzzy, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s"
@@ -11821,6 +12047,10 @@ msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s"
 msgid "There was an error with your request"
 msgstr "Hubo un error con tu solicitud"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Hubo un problema al eliminar: %s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "Hubo un problema al eliminar %s: %s"
@@ -11906,28 +12136,10 @@ msgstr "Ocurrió un problema al previsualizar la consulta seleccionada %s"
 msgid "There was an issue previewing the selected query. %s"
 msgstr "Hubo un problema al previsualizar la consulta seleccionada. %s"
 
-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: {}"
-
 #, fuzzy
 msgid "These are the datasets this filter will be applied to."
 msgstr "Estas son las tablas a las que se aplicará este filtro."
 
-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."
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11945,12 +12157,20 @@ msgstr "Esta acción eliminará permanentemente %s."
 msgid "This action will permanently delete the layer."
 msgstr "Esta acción eliminará permanentemente la capa."
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "Esta acción eliminará permanentemente la capa."
+
 msgid "This action will permanently delete the saved query."
 msgstr "Esta acción eliminará la consulta guardada de forma permanente"
 
 msgid "This action will permanently delete the template."
 msgstr "Esta acción eliminará permanentemente la plantilla."
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "Esta acción eliminará permanentemente la capa."
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11975,11 +12195,6 @@ msgid ""
 "source. "
 msgstr ""
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-
 msgid "This column might be incompatible with current dataset"
 msgstr ""
 
@@ -12051,6 +12266,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr "Este Dashboard se guardó con éxito."
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 
@@ -12068,6 +12289,9 @@ msgstr ""
 msgid "This defines the element to be plotted on the chart"
 msgstr "Esto define el elemento a trazar en el gráfico."
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -12078,13 +12302,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-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."
-
 msgid "This filter might be incompatible with current dataset"
 msgstr ""
 
@@ -12118,12 +12335,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr ""
 
-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 ""
-
 msgid "This metric might be incompatible with current dataset"
 msgstr ""
 
@@ -12164,6 +12375,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr ""
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr ""
 
@@ -12249,9 +12463,6 @@ msgstr "Granularidad Temporal"
 msgid "Time Series"
 msgstr "Columna de Tiempo"
 
-msgid "Time Series - Bar Chart"
-msgstr "Serie Temporal - Gráfico de Barras"
-
 msgid "Time Series - Line Chart"
 msgstr "Serie Temporal - Gráfico de Líneas"
 
@@ -12267,9 +12478,6 @@ msgstr "Serie Temporal - Cambio Porcentual"
 msgid "Time Series - Period Pivot"
 msgstr "Serie Temporal - Pivote de periodo"
 
-msgid "Time Series - Stacked"
-msgstr "Serie Temporal - Apiladas"
-
 #, fuzzy
 msgid "Time Series Options"
 msgstr "Columna de Tiempo"
@@ -12365,17 +12573,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr ""
 
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "Compartir gráfico"
-
-#, fuzzy
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Serie Temporal - Gráfico de Barras"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr ""
-
 #, fuzzy
 msgid "Time-series Percent Change"
 msgstr "Serie Temporal - Cambio Porcentual"
@@ -12397,9 +12594,6 @@ msgstr "Formato de fecha/hora inválido"
 msgid "Timezone"
 msgstr ""
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Desplazamiento de zona horaria (en horas) para esta fuente de datos"
-
 #, fuzzy
 msgid "Timezone selector"
 msgstr "Probar Conexión"
@@ -12422,6 +12616,11 @@ msgstr "El título es obligatorio"
 msgid "Title or Slug"
 msgstr "Título o Slug"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "Para filtrar por una métrica, usa la pestaña SQL Personalizado"
 
@@ -12470,6 +12669,10 @@ msgstr ""
 msgid "Total (%(aggregatorName)s)"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "Totales"
+
 #, fuzzy
 msgid "Total value"
 msgstr "Valores Nulos"
@@ -12593,9 +12796,6 @@ msgstr "Introduce un valor"
 msgid "Type is required"
 msgstr "El tipo es obligatorio"
 
-msgid "Type of Google Sheets allowed"
-msgstr ""
-
 msgid "Type of comparison, value difference or percentage"
 msgstr ""
 
@@ -12671,9 +12871,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr ""
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr ""
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "Indefinido"
 
@@ -12707,6 +12913,10 @@ msgstr "Expresión SQL"
 msgid "Unexpected time range: %(error)s"
 msgstr "Error inesperado: "
 
+#, fuzzy
+msgid "Unhide"
+msgstr "¿Deshacer?"
+
 #, fuzzy
 msgid "Unknown"
 msgstr "Error desconocido"
@@ -12747,6 +12957,10 @@ msgstr "Valor desconocido"
 msgid "Unknown value"
 msgstr "Valor desconocido"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "Ejecutando"
+
 #, 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"
@@ -12815,10 +13029,6 @@ msgstr "Columna"
 msgid "Upload Columnar file to database"
 msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos."
 
-#, fuzzy
-msgid "Upload Credentials"
-msgstr "Subir Credenciales"
-
 #, fuzzy
 msgid "Upload Enabled"
 msgstr "Subir Excel"
@@ -12842,6 +13052,10 @@ msgstr "Editar Base de Datos"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Subir Credenciales"
+
 #, fuzzy
 msgid "Upload file to database"
 msgstr "Editar Base de Datos"
@@ -12899,12 +13113,13 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "Ejecutar consulta"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 
-msgid "Use legacy datasource editor"
-msgstr "Usar editor de datasource legado"
-
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr ""
 
@@ -12914,11 +13129,6 @@ msgstr "Usar un único valor"
 msgid "Use the Advanced Analytics options below"
 msgstr "Usar la opción de Analítica Avanzada debajo "
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-
 #, fuzzy
 msgid "Use the edit button to change this field"
 msgstr "Usa el botón 'editar' para cambiar este campo"
@@ -12958,10 +13168,24 @@ msgstr "El usuario debe elegir un valor para este filtro"
 msgid "User query"
 msgstr "Ver consulta"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 #, fuzzy
 msgid "Username"
 msgstr "Nombre de la consulta"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Nombre es requerido"
+
+#, fuzzy
+msgid "Users"
+msgstr "Series"
+
 #, fuzzy
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
@@ -12986,6 +13210,10 @@ msgid ""
 "funnels and pipelines."
 msgstr ""
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "Valor"
 
@@ -13014,10 +13242,17 @@ msgstr ""
 msgid "Value format"
 msgstr "Formato de correo electrónico"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "`row_offset` debe ser mayor o igual a 0"
+
 #, fuzzy
 msgid "Value is required"
 msgstr "Nombre es requerido"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "`row_offset` debe ser mayor o igual a 0"
@@ -13038,12 +13273,6 @@ msgid ""
 "show relevant values"
 msgstr ""
 
-msgid "Vehicle Types"
-msgstr ""
-
-msgid "Verbose Name"
-msgstr "Nombre detallado"
-
 msgid "Version"
 msgstr ""
 
@@ -13056,9 +13285,6 @@ msgstr ""
 msgid "Vertical (Left)"
 msgstr ""
 
-msgid "Video game consoles"
-msgstr ""
-
 #, fuzzy
 msgid "View"
 msgstr "Previsualizar"
@@ -13105,9 +13331,6 @@ msgstr ""
 msgid "Virtual (SQL)"
 msgstr ""
 
-msgid "Virtual dataset"
-msgstr "Conjunto de datos virtual"
-
 #, fuzzy
 msgid "Virtual dataset query cannot be empty"
 msgstr "La consulta de conjunto virtual debe ser de solo lectura"
@@ -13145,11 +13368,6 @@ msgid ""
 "grid view."
 msgstr ""
 
-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."
@@ -13194,13 +13412,6 @@ msgid ""
 "instead."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -13215,6 +13426,12 @@ msgstr "Tipo"
 msgid "WED"
 msgstr "MIÉ"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, fuzzy, python-format
 msgid "Waiting on %s"
 msgstr "Mostrando %s de %s"
@@ -13230,9 +13447,6 @@ msgstr ""
 msgid "Warning"
 msgstr "Mensaje de Aviso"
 
-msgid "Warning Message"
-msgstr "Mensaje de Aviso"
-
 msgid "Warning!"
 msgstr "Mensaje de Aviso"
 
@@ -13372,13 +13586,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr ""
 
-msgid ""
-"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"
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr ""
 
@@ -13399,6 +13606,11 @@ msgid ""
 "to the main datetime column."
 msgstr ""
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -13413,22 +13625,14 @@ msgstr "Cuando usas 'Group By', estás limitado a una sola métrica"
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
 
-msgid "When using this option, default value can’t be set"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
 msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr ""
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr ""
-
-msgid ""
-"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."
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -13466,6 +13670,10 @@ msgstr ""
 msgid "Whether to display bubbles on top of countries"
 msgstr ""
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Métrica con la cual ordenar los resultados."
+
 msgid "Whether to display the aggregate count"
 msgstr ""
 
@@ -13475,11 +13683,6 @@ msgstr ""
 msgid "Whether to display the labels."
 msgstr ""
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-
 msgid "Whether to display the legend (toggles)"
 msgstr ""
 
@@ -13495,6 +13698,10 @@ msgstr ""
 msgid "Whether to display the numerical values within the cells"
 msgstr ""
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Mostrar un filtro de tiempo"
+
 #, fuzzy
 msgid "Whether to display the stroke"
 msgstr "Métrica con la cual ordenar los resultados."
@@ -13509,9 +13716,17 @@ msgstr ""
 msgid "Whether to display the tooltip labels."
 msgstr "Métrica con la cual ordenar los resultados."
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Mostrar un filtro de tiempo"
+
 msgid "Whether to display the trend line"
 msgstr ""
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Métrica con la cual ordenar los resultados."
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr ""
 
@@ -13540,38 +13755,16 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr "Métrica con la cual ordenar los resultados."
 
-msgid "Whether to make the histogram cumulative"
-msgstr ""
-
-msgid ""
-"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"
-
-msgid "Whether to normalize the histogram"
-msgstr ""
-
 msgid "Whether to populate autocomplete filters options"
 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 ""
-"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"
-
 #, fuzzy
 msgid "Whether to show as Nightingale chart."
 msgstr "Serie Temporal - Gráfico de Nightingale Rose"
 
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr ""
 
 msgid "Whether to show minor ticks on the axis"
@@ -13593,10 +13786,6 @@ msgstr "Ordenar descendente o ascendente"
 msgid "Whether to sort descending or ascending"
 msgstr "Ordenar descendente o ascendente"
 
-#, fuzzy
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr "Ordenar descendente o ascendente"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 
@@ -13658,9 +13847,6 @@ msgstr "Escribe una descripción para tu consulta"
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr ""
-
 msgid "X AXIS TITLE MARGIN"
 msgstr ""
 
@@ -13681,6 +13867,10 @@ msgstr ""
 msgid "X Axis Title"
 msgstr ""
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "última partición:"
+
 msgid "X Log Scale"
 msgstr ""
 
@@ -13705,6 +13895,9 @@ msgstr "Eje Y"
 msgid "XScale Interval"
 msgstr "Intérvalo de actualización"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr ""
 
@@ -13828,6 +14021,19 @@ msgstr ""
 "Sobreescribir puede causar que se pierdan algunos de sus trabajos. ¿Está "
 "seguro de que quiere sobrescribir?"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 #, fuzzy
 msgid "You can"
 msgstr "Mapa de País"
@@ -13904,9 +14110,6 @@ msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s."
 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."
 
-msgid "You don't have any favorites yet!"
-msgstr "¡Aún no tienes favoritos!"
-
 #, fuzzy
 msgid "You don't have permission to modify the value."
 msgstr "No tienes permiso para aprobar esta solicitud."
@@ -13985,6 +14188,9 @@ msgstr ""
 msgid "Your chart is ready to go!"
 msgstr ""
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 #, fuzzy
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr ""
@@ -14015,6 +14221,9 @@ msgstr "Tu consulta fue guardada"
 msgid "Your query was updated"
 msgstr "Tu consulta fue actualizada"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 #, fuzzy
 msgid "Your report could not be deleted"
 msgstr "El Gráfico no ha podido eliminarse"
@@ -14029,6 +14238,9 @@ msgstr "descripción"
 msgid "Zoom"
 msgstr ""
 
+msgid "Zoom level"
+msgstr ""
+
 msgid "Zoom level of the map"
 msgstr ""
 
@@ -14152,9 +14364,6 @@ msgstr "en"
 msgid "auto"
 msgstr "en"
 
-msgid "auto (Smooth)"
-msgstr ""
-
 msgid "background"
 msgstr ""
 
@@ -14205,10 +14414,6 @@ msgstr "Administrar"
 msgid "chart"
 msgstr "gráfico"
 
-#, fuzzy
-msgid "charts"
-msgstr "gráfico"
-
 msgid "choose WHERE or HAVING..."
 msgstr "elige WHERE o HAVING..."
 
@@ -14219,6 +14424,10 @@ msgstr "Buscar / Filtrar"
 msgid "click here"
 msgstr ""
 
+#, fuzzy
+msgid "close"
+msgstr "Cerrar"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr ""
 
@@ -14275,17 +14484,9 @@ msgstr ""
 msgid "cumsum"
 msgstr ""
 
-#, fuzzy
-msgid "cumulative"
-msgstr "Activo"
-
 msgid "dashboard"
 msgstr ""
 
-#, fuzzy
-msgid "dashboards"
-msgstr "Dashboards"
-
 msgid "database"
 msgstr "Base de datos"
 
@@ -14355,9 +14556,6 @@ msgstr ""
 msgid "default"
 msgstr "Por defecto"
 
-msgid "delete"
-msgstr "eliminar"
-
 #, fuzzy
 msgid "descendant"
 msgstr "Orden descendente"
@@ -14372,10 +14570,6 @@ msgstr "descripción"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr ""
 
-#, fuzzy
-msgid "draft"
-msgstr "Borrador"
-
 msgid "dttm"
 msgstr "dttm"
 
@@ -14417,10 +14611,6 @@ msgstr ""
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr ""
 
-#, fuzzy
-msgid "e.g., a \"user id\" column"
-msgstr "Columna de Tiempo"
-
 #, fuzzy
 msgid "edit mode"
 msgstr "Nombre de la consulta"
@@ -14432,6 +14622,10 @@ msgstr ""
 msgid "entries"
 msgstr "Series"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "Series"
+
 #, fuzzy
 msgid "error"
 msgstr "%s Error"
@@ -14509,11 +14703,6 @@ msgstr "Compartir"
 msgid "hour"
 msgstr "hora"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-
 msgid "in"
 msgstr "en"
 
@@ -14524,6 +14713,10 @@ msgstr "en modal"
 msgid "invalid email"
 msgstr "Certificado Inválido"
 
+#, fuzzy
+msgid "is"
+msgstr "en"
+
 msgid "is expected to be a Mapbox URL"
 msgstr ""
 
@@ -14533,6 +14726,28 @@ msgstr ""
 msgid "is expected to be an integer"
 msgstr ""
 
+#, fuzzy, python-format
+msgid ""
+"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."
+
+#, fuzzy, python-format
+msgid ""
+"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."
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr ""
 
@@ -14670,19 +14885,10 @@ msgstr ""
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr ""
-
-msgid "page_size.show"
-msgstr ""
-
 #, fuzzy
 msgid "pending"
 msgstr "Orden Descendente"
 
-msgid "percentile (exclusive)"
-msgstr ""
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14692,25 +14898,21 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "No se encontró el estado del informe programado"
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 msgid "pixels"
 msgstr ""
 
 msgid "previous calendar month"
 msgstr ""
 
+msgid "previous calendar quarter"
+msgstr ""
+
 msgid "previous calendar week"
 msgstr ""
 
 msgid "previous calendar year"
 msgstr ""
 
-#, fuzzy
-msgid "published"
-msgstr "No publicado"
-
 #, fuzzy
 msgid "quarter"
 msgstr "consulta"
@@ -14733,10 +14935,6 @@ msgstr ""
 msgid "recent"
 msgstr "Recientes"
 
-#, fuzzy
-msgid "recents"
-msgstr "Recientes"
-
 #, fuzzy
 msgid "recipients"
 msgstr "Recientes"
@@ -14763,8 +14961,8 @@ msgid "running"
 msgstr "Ejecutando"
 
 #, fuzzy
-msgid "saved queries"
-msgstr "Consultas Guardadas"
+msgid "save"
+msgstr "Guardar"
 
 #, fuzzy
 msgid "seconds"
@@ -14780,10 +14978,6 @@ msgid ""
 "series"
 msgstr ""
 
-#, fuzzy
-msgid "shift start date"
-msgstr "El Gráfico ha cambiado"
-
 msgid "sql"
 msgstr ""
 
@@ -14847,10 +15041,6 @@ msgstr ""
 msgid "textarea"
 msgstr "caja de texto"
 
-#, fuzzy
-msgid "to"
-msgstr "Detener"
-
 #, fuzzy
 msgid "top"
 msgstr "Detener"
@@ -14863,6 +15053,14 @@ msgstr "¿Deshacer?"
 msgid "unknown type icon"
 msgstr "Valor desconocido"
 
+#, fuzzy
+msgid "unset"
+msgstr "Junio"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "Última actualización %s"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14893,9 +15091,6 @@ msgstr "Triángulo"
 msgid "view instructions"
 msgstr "Tiempo en segundos"
 
-msgid "virtual"
-msgstr ""
-
 #, fuzzy
 msgid "viz type"
 msgstr "Tipo"
@@ -14933,3 +15128,6 @@ msgstr "año"
 
 msgid "zoom area"
 msgstr ""
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/fa/LC_MESSAGES/messages.po b/superset/translations/fa/LC_MESSAGES/messages.po
new file mode 100644
index 0000000000000000000000000000000000000000..b4912a3b57ed1693d3c8194801071551a34ac896
--- /dev/null
+++ b/superset/translations/fa/LC_MESSAGES/messages.po
@@ -0,0 +1,14640 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# Persian translations for Superset.
+# Copyright (C) 2024 Superset
+# This file is distributed under the same license as the Superset project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
+msgid ""
+msgstr ""
+"Project-Id-Version: Superset VERSION\n"
+"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
+"PO-Revision-Date: 2024-10-20 00:07+0330\n"
+"Last-Translator: Emad Rad <codewithemad@gmail.com>\n"
+"Language: fa\n"
+"Language-Team: fa <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.9.1\n"
+
+msgid ""
+"\n"
+"                The cumulative option allows you to see how your data "
+"accumulates over different\n"
+"                values. When enabled, the histogram bars represent the "
+"running total of frequencies\n"
+"                up to each bin. This helps you understand how likely it "
+"is to encounter values\n"
+"                below a certain point. Keep in mind that enabling "
+"cumulative doesn't change your\n"
+"                original data, it just changes the way the histogram is "
+"displayed."
+msgstr ""
+"گزینه تجمعی به شما اجازه می دهد تا ببینید چگونه داده های شما بر روی "
+"مقادیر مختلف تجمع پیدا می کند. وقتی فعال می شود، نوارهای هیستوگرام "
+"نمایانگر مجموع در حال اجرا فرکانس ها تا هر سطل است. این کمک می کند تا شما"
+" بفهمید چقدر احتمال دارد که مقادیری زیر یک نقطه خاص را ملاقات کنید. توجه "
+"داشته باشید که فعال کردن تجمعی تغییری در داده های اصلی شما ایجاد نمی کند،"
+" فقط روش نمایش هیستوگرام را تغییر می دهد."
+
+msgid ""
+"\n"
+"                The normalize option transforms the histogram values into"
+" proportions or\n"
+"                probabilities by dividing each bin's count by the total "
+"count of data points.\n"
+"                This normalization process ensures that the resulting "
+"values sum up to 1,\n"
+"                enabling a relative comparison of the data's distribution"
+" and providing a\n"
+"                clearer understanding of the proportion of data points "
+"within each bin."
+msgstr ""
+"گزینه نرمال سازی، مقادیر هیستوگرام را با تقسیم کردن تعداد هر دسته به "
+"تعداد کل نقاط داده به سهم یا احتمال تبدیل می کند.\n"
+"این فرآیند نرمال سازی اطمینان می دهد که مقادیر نهایی به ۱ می رسد،\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"
+"هنگام ذخیره سازی نمودار ذخیره نمی شود."
+
+#, python-format
+msgid ""
+"\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
+"            "
+msgstr ""
+
+msgid " (excluded)"
+msgstr "(محروم)"
+
+msgid ""
+" Set the opacity to 0 if you do not want to override the color specified "
+"in the GeoJSON"
+msgstr ""
+"اگر نمی‌خواهید رنگ مشخص شده در GeoJSON را بازنویسی کنید، شفافیت را بر روی"
+" ۰ تنظیم کنید."
+
+msgid " a dashboard OR "
+msgstr "یک داشبورد یا"
+
+msgid " a new one"
+msgstr "یکی جدید"
+
+#, python-format
+msgid " at line %(line)d"
+msgstr "در خط %(line)"
+
+msgid " expression which needs to adhere to the "
+msgstr "عبارتی که باید به دستور العمل‌ها پایبند باشد"
+
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr " نزدیک '%(highlight)ها'"
+
+msgid " source code of Superset's sandboxed parser"
+msgstr "کد منبع تجزیه‌کننده‌ی محافظت‌شده‌ی Superset"
+
+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` یا `epoch_ms` را قرار دهید. اگر الگویی مشخص نشده است، ما به "
+"استفاده از پیش‌فرض‌های اختیاری در سطح پایگاه داده / نام ستون از طریق "
+"پارامتر اضافی باز می‌گردیم."
+
+msgid " to add calculated columns"
+msgstr "برای اضافه کردن ستون‌های محاسبه‌شده"
+
+msgid " to add metrics"
+msgstr "برای افزودن معیارها"
+
+msgid " to edit or add columns and metrics."
+msgstr "برای ویرایش یا اضافه کردن ستون‌ها و معیارها."
+
+msgid " to mark a column as a time column"
+msgstr "برای علامت‌گذاری یک ستون به عنوان ستون زمان"
+
+msgid " to open SQL Lab. From there you can save the query as a dataset."
+msgstr ""
+"برای باز کردن SQL Lab. از اینجا شما می‌توانید کوئری را به عنوان یک مجموعه"
+" داده ذخیره کنید."
+
+msgid " to visualize your data."
+msgstr "برای تصویرسازی داده‌های شما."
+
+msgid "!= (Is not equal)"
+msgstr "!= (برابر نیست)"
+
+#, python-format
+msgid "% calculation"
+msgstr "% محاسبه"
+
+#, python-format
+msgid "% of parent"
+msgstr "% از والد"
+
+#, python-format
+msgid "% of total"
+msgstr "% از کل"
+
+#, python-format
+msgid "%(dialect)s cannot be used as a data source for security reasons."
+msgstr "%(dialect)s به دلایل امنیتی نمی‌تواند به عنوان منبع داده استفاده شود."
+
+#, fuzzy, python-format
+msgid "%(label)s file"
+msgstr "فایل %(type)s"
+
+#, python-format
+msgid "%(name)s.csv"
+msgstr "%(name)s.csv"
+
+#, python-format
+msgid "%(name)s.pdf"
+msgstr "%(name)s.pdf"
+
+#, python-format
+msgid "%(object)s does not exist in this database."
+msgstr "%(object)s در این پایگاه داده وجود ندارد."
+
+#, python-format
+msgid "%(prefix)s %(title)s"
+msgstr "%(prefix)s %(title)s"
+
+#, python-format
+msgid ""
+"%(report_type)s schedule frequency exceeding limit. Please configure a "
+"schedule with a minimum interval of %(minimum_interval)d minutes per "
+"execution."
+msgstr ""
+"فرکانس برنامه %(report_type)s از حد مجاز فراتر رفته است. لطفاً یک "
+"برنامه‌ریزی با فاصله حداقل %(minimum_interval)d دقیقه در هر اجرا تنظیم "
+"کنید."
+
+#, python-format
+msgid "%(rows)d rows returned"
+msgstr "%(rows)d سطر برگشت داده شد"
+
+#, python-format
+msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
+msgid_plural ""
+"%(firstSuggestions)s or %(lastSuggestion)s instead of "
+"\"%(undefinedParameter)s\"?"
+msgstr[0] ""
+msgstr[1] ""
+
+#, 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"
+
+#, python-format
+msgid "%s Error"
+msgstr "%s خطا"
+
+#, python-format
+msgid "%s PASSWORD"
+msgstr "%s رمز عبور"
+
+#, python-format
+msgid "%s SSH TUNNEL PASSWORD"
+msgstr "رمز عبور تونل SSH %s"
+
+#, python-format
+msgid "%s SSH TUNNEL PRIVATE KEY"
+msgstr "کلید خصوصی تونل %s SSH"
+
+#, python-format
+msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD"
+msgstr "رمز عبور کلید خصوصی تونل SSH %s"
+
+#, python-format
+msgid "%s Selected"
+msgstr "%s انتخاب شد"
+
+#, python-format
+msgid "%s Selected (%s Physical, %s Virtual)"
+msgstr "%s انتخاب شد (%s فیزیکی، %s مجازی)"
+
+#, python-format
+msgid "%s Selected (Physical)"
+msgstr "%s انتخاب شد (فیزیکی)"
+
+#, python-format
+msgid "%s Selected (Virtual)"
+msgstr "%s انتخاب شده (مجازی)"
+
+#, python-format
+msgid "%s aggregates(s)"
+msgstr "%s مجموع(ها)"
+
+#, python-format
+msgid "%s column(s)"
+msgstr "ستون (%s)"
+
+#, python-format
+msgid ""
+"%s items could not be tagged because you don’t have edit permissions to "
+"all selected objects."
+msgstr ""
+"%s تا از اقلام نمی‌توانند برچسب گذاری شوند زیرا شما مجوز ویرایش تمام "
+"اشیاء انتخاب شده را ندارید."
+
+#, python-format
+msgid "%s operator(s)"
+msgstr "%s اپراتور(ها)"
+
+#, python-format
+msgid "%s option"
+msgid_plural "%s options"
+msgstr[0] ""
+msgstr[1] ""
+
+#, python-format
+msgid "%s option(s)"
+msgstr "گزینه(های) %s"
+
+#, python-format
+msgid "%s recipients"
+msgstr "%s دریافت کننده"
+
+#, python-format
+msgid "%s row"
+msgid_plural "%s rows"
+msgstr[0] ""
+msgstr[1] ""
+
+#, python-format
+msgid "%s saved metric(s)"
+msgstr "%s معیار(ها) ذخیره شد(شدند)"
+
+#, python-format
+msgid "%s updated"
+msgstr "%s به روز شد"
+
+#, python-format
+msgid "%s%s"
+msgstr "%s%s"
+
+#, python-format
+msgid "%s-%s of %s"
+msgstr "%s-%s از %s"
+
+msgid "(Removed)"
+msgstr ""
+"Dear assistant, your task doesn't contain any text for translation. "
+"Please provide a valid text."
+
+msgid "(deleted or invalid type)"
+msgstr "نوع مشاهده شده حذف شده است یا نامعتبر است."
+
+msgid "(no description, click to see stack trace)"
+msgstr "(بدون توضیحات، برای دیدن ردیابی خطا کلیک کنید)"
+
+msgid "), and they become available in your SQL (example:"
+msgstr ") و آنها در SQL شما در دسترس می شوند (مثال:"
+
+#, fuzzy, 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"
+
+#, 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|در سوپرست کاوش کنید>\n"
+"\n"
+"%(table)s"
+
+#, python-format
+msgid "+ %s more"
+msgstr "+%s بیشتر"
+
+msgid ""
+"-- Note: Unless you save your query, these tabs will NOT persist if you "
+"clear your cookies or change browsers.\n"
+"\n"
+msgstr ""
+"-- توجه: مگر اینکه کوئریی خود را ذخیره کنید، این زبانه ها اگر کوکی های "
+"خود را پاک کنید یا مرورگر را تغییر دهید، پایدار نخواهند ماند."
+
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
+msgid "0 Selected"
+msgstr "۰ انتخاب شد"
+
+msgid "1 calendar day frequency"
+msgstr "فرکانس ۱ روز تقویمی"
+
+msgid "1 day"
+msgstr "۱ روز"
+
+msgid "1 day ago"
+msgstr "۱ روز پیش"
+
+msgid "1 hour"
+msgstr "۱ ساعت"
+
+msgid "1 hourly frequency"
+msgstr "فرکانس ساعتی ۱"
+
+msgid "1 minute"
+msgstr "۱ دقیقه"
+
+msgid "1 minutely frequency"
+msgstr "فرکانس هر ۱ دقیقه یک بار"
+
+msgid "1 month ago"
+msgstr "یک ماه پیش"
+
+msgid "1 month end frequency"
+msgstr "فرکانس پایان هر ۱ ماه"
+
+msgid "1 month start frequency"
+msgstr "فرکانس شروع ۱ ماه"
+
+msgid "1 week"
+msgstr "۱ هفته"
+
+msgid "1 week ago"
+msgstr "۱ هفته پیش"
+
+msgid "1 week starting Monday (freq=W-MON)"
+msgstr "۱ هفته از دوشنبه شروع می‌شود (freq=W-MON)"
+
+msgid "1 week starting Sunday (freq=W-SUN)"
+msgstr "۱ هفته از یکشنبه شروع می شود (freq=W-SUN)"
+
+msgid "1 year"
+msgstr "۱ سال"
+
+msgid "1 year ago"
+msgstr "۱ سال پیش"
+
+msgid "1 year end frequency"
+msgstr "فرکانس پایان ۱ سال"
+
+msgid "1 year start frequency"
+msgstr "فرکانس شروع ۱ ساله"
+
+msgid "10 minute"
+msgstr "۱۰ دقیقه"
+
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "نای سادهم / نود و یکم درصدی"
+
+msgid "10000"
+msgstr ""
+
+msgid "104 weeks"
+msgstr "۱۰۴ هفته"
+
+msgid "104 weeks ago"
+msgstr "۱۰۴ هفته پیش"
+
+msgid "15 minute"
+msgstr "۱۵ دقیقه"
+
+msgid "156 weeks"
+msgstr "۱۵۶ هفته"
+
+msgid "156 weeks ago"
+msgstr "۱۵۶ هفته پیش"
+
+msgid "1AS"
+msgstr ""
+"۱AS\n"
+"(Note: AS is not translated as it looks like some kind of code that "
+"usually should not be translated)"
+
+msgid "1D"
+msgstr "۱D"
+
+msgid "1H"
+msgstr "۱H"
+
+msgid "1M"
+msgstr "۱M"
+
+msgid "1T"
+msgstr "۱ترابایت"
+
+msgid "2 years"
+msgstr "۲ سال"
+
+msgid "2 years ago"
+msgstr "دو سال پیش"
+
+msgid "2/98 percentiles"
+msgstr "دو درصد ۹۸ ایم"
+
+msgid "22"
+msgstr "۲۲"
+
+msgid "28 days"
+msgstr "۲۸ روز"
+
+msgid "28 days ago"
+msgstr "۲۸ روز پیش"
+
+msgid "2D"
+msgstr "۲D"
+
+msgid "3 letter code of the country"
+msgstr "کد سه حرفی کشور"
+
+msgid "3 years"
+msgstr "۳ سال"
+
+msgid "3 years ago"
+msgstr "سه سال پیش"
+
+msgid "30 days"
+msgstr "۳۰ روز"
+
+msgid "30 days ago"
+msgstr "۳۰ روز پیش"
+
+msgid "30 minute"
+msgstr "۳۰ دقیقه"
+
+msgid "30 minutes"
+msgstr "۳۰ دقیقه"
+
+msgid "30 second"
+msgstr "۳۰ ثانیه"
+
+msgid "30 seconds"
+msgstr "۳۰ ثانیه"
+
+msgid "3D"
+msgstr "۳D"
+
+msgid "4 weeks (freq=4W-MON)"
+msgstr "۴ هفته (freq=۴W-MON)"
+
+msgid "5 minute"
+msgstr "۵ دقیقه"
+
+msgid "5 minutes"
+msgstr "۵ دقیقه"
+
+msgid "5 second"
+msgstr "۵ ثانیه"
+
+msgid "5 seconds"
+msgstr "۵ ثانیه"
+
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "نای سادهم / نود و یکم درصدی"
+
+msgid "52 weeks"
+msgstr "۵۲ هفته"
+
+msgid "52 weeks ago"
+msgstr "۵۲ هفته پیش"
+
+msgid "52 weeks starting Monday (freq=52W-MON)"
+msgstr "۵۲ هفته شروع شده از دوشنبه (freq=۵۲W-MON)"
+
+msgid "6 hour"
+msgstr "۶ ساعت"
+
+msgid "60 days"
+msgstr "۶۰ روز"
+
+msgid "7 calendar day frequency"
+msgstr "فرکانس ۷ روز تقویمی"
+
+msgid "7 days"
+msgstr "۷ روز"
+
+msgid "7D"
+msgstr "۷D"
+
+msgid "9/91 percentiles"
+msgstr "نای سادهم / نود و یکم درصدی"
+
+msgid "90 days"
+msgstr "۹۰ روز"
+
+msgid ":"
+msgstr ":"
+
+msgid "< (Smaller than)"
+msgstr "کوچکتر از (۱)"
+
+msgid "<= (Smaller or equal)"
+msgstr "کوچکتر یا مساوی"
+
+msgid "<enter SQL expression here>"
+msgstr "<عبارت SQL خود را اینجا وارد کنید>"
+
+msgid "<new column>"
+msgstr "<ستون جدید>"
+
+msgid "<new metric>"
+msgstr "<شاخص جدید>"
+
+msgid "<new spatial>"
+msgstr "<جدید فضایی>"
+
+msgid "<no type>"
+msgstr "<no type>"
+
+msgid "== (Is equal)"
+msgstr "== (مساوی است)"
+
+msgid "> (Larger than)"
+msgstr "بزرگ‌تر از"
+
+msgid ">= (Larger or equal)"
+msgstr "بزرگتر یا برابر"
+
+msgid "A Big Number"
+msgstr "یک عدد بزرگ"
+
+msgid "A comma-separated list of schemas that files are allowed to upload to."
+msgstr ""
+"یک لیست جدا شده با کاما از طرح‌هایی که فایل‌ها مجاز به بارگذاری در آن "
+"هستند."
+
+msgid "A database port is required when connecting via SSH Tunnel."
+msgstr "برای اتصال از طریق تونل SSH، پورت پایگاه داده الزامی است."
+
+msgid "A database with the same name already exists."
+msgstr "یک پایگاه داده با همین نام از قبل وجود دارد."
+
+msgid "A date is required when using custom date shift"
+msgstr ""
+
+msgid ""
+"A dictionary with column names and their data types if you need to change"
+" the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
+"library for supported data types."
+msgstr ""
+"یک دیکشنری با نام ستون‌ها و نوع داده‌های آن‌ها در صورتی که بخواهید "
+"پیش‌فرض‌ها را تغییر دهید. مثال: {\"user_id\":\"int\"} . برای نوع داده‌های"
+" پشتیبانی شده به کتابخانه پانداهای پایتون مراجعه کنید."
+
+msgid ""
+"A full URL pointing to the location of the built plugin (could be hosted "
+"on a CDN for example)"
+msgstr ""
+"یک URL کامل که به مکان پلاگین ساخته‌شده اشاره دارد (به عنوان مثال، "
+"می‌تواند در یک CDN میزبان باشد)"
+
+msgid "A handlebars template that is applied to the data"
+msgstr "یک الگوی هندل‌بارز که به داده‌ها اعمال می‌شود."
+
+msgid "A human-friendly name"
+msgstr "یک نام دوستانه برای انسان"
+
+msgid ""
+"A list of domain names that can embed this dashboard. Leaving this field "
+"empty will allow embedding from any domain."
+msgstr ""
+"لیستی از نام‌های دامنه که می‌توانند این داشبورد را در خود بگنجانند. خالی "
+"گذاشتن این فیلد اجازه می‌دهد تا از هر دامنه‌ای گنجانش انجام شود."
+
+msgid "A list of tags that have been applied to this chart."
+msgstr "فهرست برچسب‌هایی که به این نمودار اعمال شده‌اند."
+
+msgid "A list of users who can alter the chart. Searchable by name or username."
+msgstr ""
+"لیستی از کاربرانی که می‌توانند نمودار را تغییر دهند. قابلیت جستجو با نام "
+"یا نام کاربری."
+
+msgid "A map of the world, that can indicate values in different countries."
+msgstr "نقشه‌ای از جهان که می‌تواند مقادیر را در کشورهای مختلف نشان دهد."
+
+msgid ""
+"A map that takes rendering circles with a variable radius at "
+"latitude/longitude coordinates"
+msgstr ""
+"نقشه‌ای که دایره‌های رندر شده با شعاع متغیر را در مختصات عرض جغرافیایی / "
+"طول جغرافیایی نمایش می‌دهد"
+
+msgid "A metric to use for color"
+msgstr "معیاری برای استفاده از رنگ"
+
+msgid "A new chart and dashboard will be created."
+msgstr "یک نمودار و داشبورد جدید ایجاد خواهد شد."
+
+msgid "A new chart will be created."
+msgstr "یک نمودار جدید ایجاد خواهد شد."
+
+msgid "A new dashboard will be created."
+msgstr "یک داشبورد جدید ایجاد خواهد شد."
+
+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 "A readable URL for your dashboard"
+msgstr "یک آدرس اینترنتی قابل خواندن برای داشبورد شما"
+
+msgid "A reference to the [Time] configuration, taking granularity into account"
+msgstr "ارجاع به پیکربندی [زمان] با در نظر گرفتن جزئیات"
+
+#, python-format
+msgid "A report named \"%(name)s\" already exists"
+msgstr "گزارشی به نام \"%(name)s\" قبلاً وجود دارد"
+
+msgid "A reusable dataset will be saved with your chart."
+msgstr "یک مجموعه داده قابل استفاده مجدد با چارت شما ذخیره خواهد شد."
+
+msgid ""
+"A set of parameters that become available in the query using Jinja "
+"templating syntax"
+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 ""
+"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 "APPLY"
+msgstr "اعمال"
+
+msgid "APR"
+msgstr "آوریل"
+
+msgid "AQE"
+msgstr ""
+
+msgid "AUG"
+msgstr "آگوست"
+
+msgid "AXIS TITLE MARGIN"
+msgstr "حاشیه عنوان محور"
+
+msgid "AXIS TITLE POSITION"
+msgstr "محل عنوان محور"
+
+msgid "About"
+msgstr "در مورد"
+
+msgid "Access"
+msgstr "دسترسی"
+
+msgid "Access token"
+msgstr "توکن دسترسی"
+
+msgid "Action"
+msgstr "عملیات"
+
+msgid "Action Log"
+msgstr "گزارش فعالیت"
+
+msgid "Actions"
+msgstr "عملیات"
+
+msgid "Active"
+msgstr "فعال"
+
+msgid "Actual Values"
+msgstr "مقادیر واقعی"
+
+msgid "Actual range for comparison"
+msgstr "محدوده واقعی برای مقایسه"
+
+msgid "Actual time range"
+msgstr "محدوده زمانی واقعی"
+
+msgid "Actual value"
+msgstr "ارزش واقعی"
+
+msgid "Actual values"
+msgstr "مقادیر واقعی"
+
+msgid "Adaptive formatting"
+msgstr "فرمت‌بندی تطبیقی"
+
+msgid "Add"
+msgstr "اضافه کردن"
+
+msgid "Add Alert"
+msgstr "اضافه کردن هشدار"
+
+#, fuzzy
+msgid "Add BCC Recipients"
+msgstr "گیرندگان"
+
+#, fuzzy
+msgid "Add CC Recipients"
+msgstr "گیرندگان"
+
+msgid "Add CSS template"
+msgstr "افزودن قالب CSS"
+
+msgid "Add Dashboard"
+msgstr "افزودن داشبورد"
+
+#, fuzzy
+msgid "Add Divider"
+msgstr "تقسیم‌کننده"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "فیلتر اضافه کنید"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "لایه را مخفی کنید"
+
+msgid "Add Log"
+msgstr "افزودن لاگ"
+
+msgid "Add Report"
+msgstr "افزودن گزارش"
+
+#, fuzzy
+msgid "Add Role"
+msgstr "نقش‌های مستثنی شده"
+
+msgid "Add Rule"
+msgstr "افزودن قانون"
+
+msgid "Add Tag"
+msgstr "برچسب اضافه کنید"
+
+#, fuzzy
+msgid "Add User"
+msgstr "افزودن قانون"
+
+msgid "Add a Plugin"
+msgstr "یک افزونه اضافه کنید"
+
+msgid "Add a dataset"
+msgstr "یک مجموعه داده اضافه کنید"
+
+msgid "Add a new tab"
+msgstr "یک زبانه جدید اضافه کنید"
+
+msgid "Add a new tab to create SQL Query"
+msgstr "یک برگه جدید برای ایجاد کوئری SQL اضافه کنید"
+
+msgid "Add additional custom parameters"
+msgstr "پارامترهای سفارشی اضافی را اضافه کنید"
+
+msgid "Add an annotation layer"
+msgstr "یک لایه حاشیه‌نویسی اضافه کنید"
+
+msgid "Add an item"
+msgstr "یک مورد اضافه کنید"
+
+msgid "Add and edit filters"
+msgstr "فیلترها را اضافه و ویرایش کنید"
+
+msgid "Add annotation"
+msgstr "اضافه کردن حاشیه‌نویسی"
+
+msgid "Add annotation layer"
+msgstr "لایه‌ی حاشیه‌نویسی را اضافه کنید"
+
+msgid "Add another notification method"
+msgstr "یک روش اعلان دیگر اضافه کنید"
+
+msgid "Add calculated columns to dataset in \"Edit datasource\" modal"
+msgstr "ستون‌های محاسباتی را به داده‌نما در پنجره \"ویرایش منبع داده\" اضافه کنید"
+
+msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal"
+msgstr ""
+"به ستون‌های زمان‌بندی محاسبه‌شده به مجموعه‌داده در مودال \"ویرایش منبع "
+"داده\" اضافه کنید."
+
+msgid "Add color for positive/negative change"
+msgstr "رنگی برای تغییرات مثبت/منفی اضافه کنید"
+
+msgid "Add cross-filter"
+msgstr "فیلتر متقاطع اضافه کنید"
+
+msgid "Add custom scoping"
+msgstr "اضافه کردن دامنه سفارشی"
+
+msgid "Add dataset columns here to group the pivot table columns."
+msgstr ""
+"ستون‌های مجموعه داده را اینجا اضافه کنید تا ستون‌های جدول محوری را "
+"گروه‌بندی کنید."
+
+msgid "Add delivery method"
+msgstr "روش تحویل را اضافه کنید"
+
+msgid "Add description of your tag"
+msgstr "توضیحات برچسب خود را اضافه کنید"
+
+msgid "Add extra connection information."
+msgstr "اطلاعات اتصال اضافی را اضافه کنید."
+
+msgid "Add filter"
+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 ""
+"عبارت‌های فیلتر را اضافه کنید تا منبع کوئری فیلتر را کنترل کنید، هرچند که"
+" این تنها در زمینه تکمیل خودکار است، به این معنا که این شرایط تأثیری بر "
+"نحوه اعمال فیلتر در داشبورد ندارد. این کار زمانی مفید است که بخواهید "
+"عملکرد کوئری را با اسکن تنها یک زیرمجموعه از داده‌های زیرین بهبود بخشید "
+"یا مقادیر موجود را که در فیلتر نمایش داده می‌شوند، محدود کنید."
+
+msgid "Add item"
+msgstr "آیتم اضافه کنید"
+
+msgid "Add metric"
+msgstr "افزودن معیار"
+
+msgid "Add metrics to dataset in \"Edit datasource\" modal"
+msgstr "متریک‌ها را به مجموعه داده در کادر \"ویرایش منبع داده\" اضافه کنید."
+
+msgid "Add new color formatter"
+msgstr "فرمت‌کننده رنگ جدیدی اضافه کنید."
+
+msgid "Add new formatter"
+msgstr "فرمت‌کننده جدید اضافه کن"
+
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "فیلترها را اضافه و ویرایش کنید"
+
+msgid "Add required control values to preview chart"
+msgstr "مقدارهای کنترل لازم را به پیش نمایش نمودار اضافه کنید"
+
+msgid "Add required control values to save chart"
+msgstr "مقدارهای کنترل لازم را برای ذخیره نمودار اضافه کنید."
+
+msgid "Add sheet"
+msgstr "برگه اضافه کن"
+
+msgid "Add tag to entities"
+msgstr "برچسب به موجودیت‌ها اضافه کنید"
+
+msgid "Add the name of the chart"
+msgstr "نام نمودار را اضافه کنید"
+
+msgid "Add the name of the dashboard"
+msgstr "نام داشبورد را اضافه کنید"
+
+msgid "Add to dashboard"
+msgstr "به داشبورد اضافه کن"
+
+msgid "Added"
+msgstr "اضافه شد"
+
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
+#, python-format
+msgid "Added to 1 dashboard"
+msgid_plural "Added to %s dashboards"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Additional Parameters"
+msgstr "پارامترهای اضافی"
+
+msgid "Additional fields may be required"
+msgstr "ممکن است فیلدهای اضافی مورد نیاز باشند"
+
+msgid "Additional information"
+msgstr "اطلاعات اضافی"
+
+msgid "Additional padding for legend."
+msgstr "پدینگ اضافی برای افسانه."
+
+msgid "Additional parameters"
+msgstr "پارامترهای اضافی"
+
+msgid "Additional settings."
+msgstr "تنظیمات اضافی."
+
+msgid "Additional text to add before or after the value, e.g. unit"
+msgstr "متن اضافی برای افزودن قبل یا بعد از مقدار، مانند واحد"
+
+msgid "Additive"
+msgstr "مضافی"
+
+msgid ""
+"Adds color to the chart symbols based on the positive or negative change "
+"from the comparison value."
+msgstr ""
+"رنگی به نمادهای نمودار اضافه می‌کند بر اساس تغییر مثبت یا منفی از مقدار "
+"مقایسه."
+
+msgid ""
+"Adjust column settings such as specifying the columns to read, how "
+"duplicates are handled, column data types, and more."
+msgstr ""
+"تنظیمات ستون‌ها را تنظیم کنید، مانند تعیین ستون‌هایی که باید خوانده شوند،"
+" نحوه مدیریت نسخه‌های تکراری، نوع داده‌های ستون و موارد دیگر."
+
+msgid ""
+"Adjust how spaces, blank lines, null values are handled and other file "
+"wide settings."
+msgstr ""
+"تنظیم نحوه مدیریت فضاها، خطوط خالی، مقادیر خالی و سایر تنظیمات مربوط به "
+"کل فایل."
+
+msgid "Adjust how this database will interact with SQL Lab."
+msgstr "تنظیم نحوه تعامل این پایگاه داده با آزمایشگاه SQL."
+
+msgid "Adjust performance settings of this database."
+msgstr "تنظیمات عملکرد این پایگاه داده را تنظیم کنید."
+
+msgid "Advanced"
+msgstr "پیشرفته"
+
+msgid "Advanced Analytics"
+msgstr "تحلیل‌های پیشرفته"
+
+msgid "Advanced Data type"
+msgstr "نوع داده پیشرفته"
+
+msgid "Advanced analytics"
+msgstr "تحلیل‌های پیشرفته"
+
+msgid "Advanced analytics Query A"
+msgstr "تحلیل‌های پیشرفته کوئری A"
+
+msgid "Advanced analytics Query B"
+msgstr "تحلیل‌های پیشرفته کوئری ب"
+
+msgid "Advanced analytics post processing"
+msgstr "پردازش پس از تحلیل‌های پیشرفته"
+
+msgid "Advanced data type"
+msgstr "نوع داده پیشرفته"
+
+msgid "Advanced-Analytics"
+msgstr "تحلیل‌های پیشرفته"
+
+#, fuzzy
+msgid "Affected Charts"
+msgstr "نمودارها را انتخاب کنید"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "داشبوردها را انتخاب کنید"
+
+msgid "After"
+msgstr "بعد از"
+
+msgid "Aggregate"
+msgstr "تجمیع"
+
+msgid "Aggregate Mean"
+msgstr "میانگین تجمعی"
+
+msgid "Aggregate Sum"
+msgstr "جمع تجمعی"
+
+msgid ""
+"Aggregate function applied to the list of points in each cluster to "
+"produce the cluster label."
+msgstr "توابع تجمیع به لیست نقاط در هر خوشه اعمال می‌شوند تا برچسب خوشه تولید شود."
+
+msgid ""
+"Aggregate function to apply when pivoting and computing the total rows "
+"and columns"
+msgstr "تابع تجمیع برای اعمال هنگام چرخش و محاسبه مجموع ردیف‌ها و ستون‌ها"
+
+msgid ""
+"Aggregates data within the boundary of grid cells and maps the aggregated"
+" values to a dynamic color scale"
+msgstr ""
+"داده‌ها را درون مرزهای سلول‌های شبکه جمع‌آوری کرده و مقادیر جمع‌آوری‌شده "
+"را به یک مقیاس رنگی دینامیک نقشه‌برداری می‌کند."
+
+msgid "Aggregation"
+msgstr "تجمیع"
+
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "تجمیع"
+
+msgid "Aggregation function"
+msgstr "توابع تجمیع"
+
+msgid "Alert"
+msgstr "هشدار"
+
+msgid "Alert Triggered, In Grace Period"
+msgstr "هشدار فعال شده، در دوره‌ی مهلت"
+
+msgid "Alert condition"
+msgstr "شرط هشدار"
+
+msgid "Alert contents"
+msgstr "محتوای هشدار"
+
+msgid "Alert ended grace period."
+msgstr "منبعد مهلت هشدار پایان یافت."
+
+msgid "Alert failed"
+msgstr "هشدار ناموفق بود"
+
+msgid "Alert fired during grace period."
+msgstr "هشدار در طول دوره مرحمت فعال شد."
+
+msgid "Alert found an error while executing a query."
+msgstr "هشدار: در حین اجرای یک کوئری خطایی یافت شد."
+
+msgid "Alert is active"
+msgstr "هشدار فعال است"
+
+msgid "Alert name"
+msgstr "نام هشدار"
+
+msgid "Alert on grace period"
+msgstr "هشدار در مورد دوره مهلت"
+
+msgid "Alert query returned a non-number value."
+msgstr "کوئری هشدار مقداری غیر عددی را بازگرداند."
+
+msgid "Alert query returned more than one column."
+msgstr "انتخاب هشدار بیش از یک ستون را برگشت داد."
+
+#, python-format
+msgid "Alert query returned more than one column. %(num_cols)s columns returned"
+msgstr "کوئری هشدار بیش از یک ستون بازگشت داد. %(num_cols)s ستون بازگشت داده شد."
+
+msgid "Alert query returned more than one row."
+msgstr "کوئری هشدار بیش از یک ردیف برگرداند."
+
+#, python-format
+msgid "Alert query returned more than one row. %(num_rows)s rows returned"
+msgstr ""
+"کوئری هشدار بیش از یک ردیف بازگشت داده است. %(num_rows)s ردیف بازگشت داده"
+" شده است."
+
+msgid "Alert running"
+msgstr "هشدار در حال اجرا"
+
+msgid "Alert triggered, notification sent"
+msgstr "هشدار فعال شد، اعلان ارسال شد"
+
+msgid "Alert validator config error."
+msgstr "خطای تنظیمات اعتبارسنجی هشدار."
+
+msgid "Alerts"
+msgstr "هشدارها"
+
+msgid "Alerts & Reports"
+msgstr "هشدارها و گزارش‌ها"
+
+msgid "Alerts & reports"
+msgstr "هشدارها و گزارش‌ها"
+
+msgid "Align +/-"
+msgstr "هم‌تراز کردن +/-"
+
+msgid "All"
+msgstr "همه"
+
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "ستون‌های جدول"
+
+msgid "All Text"
+msgstr "تمام متن"
+
+msgid "All charts"
+msgstr "تمام نمودارها"
+
+msgid "All charts/global scoping"
+msgstr "کلیه نمودارها/دامنه‌سازی جهانی"
+
+msgid "All filters"
+msgstr "تمام فیلترها"
+
+msgid "All panels"
+msgstr "همه پنل‌ها"
+
+msgid "Allow CREATE TABLE AS"
+msgstr "اجازه دهید CREATE TABLE AS"
+
+msgid "Allow CREATE VIEW AS"
+msgstr "اجازه دهید CREATE VIEW AS"
+
+msgid "Allow DDL and DML"
+msgstr ""
+
+msgid "Allow changing catalogs"
+msgstr "اجازه تغییر کاتالوگ‌ها را بدهید"
+
+msgid ""
+"Allow column names to be changed to case insensitive format, if supported"
+" (e.g. Oracle, Snowflake)."
+msgstr ""
+"اجازه دهید نام ستون‌ها به صورت غیر حساس به حروف بزرگ و کوچک تغییر یابند، "
+"اگر پشتیبانی شود (برای مثال، اوراکل، اسنوفلیک)."
+
+msgid "Allow columns to be rearranged"
+msgstr "اجازه دهید ستون‌ها جابه‌جا شوند"
+
+msgid "Allow creation of new tables based on queries"
+msgstr "اجازه ایجاد جداول جدید بر اساس کوئری‌ها را بدهید."
+
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "اجازه دهید ایجاد نماهای جدید بر اساس کوئریها انجام شود"
+
+msgid "Allow creation of new views based on queries"
+msgstr "اجازه دهید ایجاد نماهای جدید بر اساس کوئریها انجام شود"
+
+msgid "Allow data manipulation language"
+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 ""
+"به کاربر نهایی اجازه دهید تا هدرهای ستون‌ها را بکشند و رها کنند تا ترتیب "
+"آن‌ها را تغییر دهند. توجه داشته باشید که تغییرات آن‌ها برای بار بعدی که "
+"چارت را باز می‌کنند، حفظ نخواهد شد."
+
+msgid "Allow file uploads to database"
+msgstr "اجازه بارگذاری فایل‌ها به پایگاه داده"
+
+msgid "Allow node selections"
+msgstr "اجازه انتخاب گره‌ها را بدهید"
+
+msgid "Allow sending multiple polygons as a filter event"
+msgstr "اجازه ارسال چندین چندضلعی به عنوان یک رویداد فیلتر را بدهید"
+
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
+msgid "Allow this database to be explored"
+msgstr "اجازه دهید این پایگاه داده کاوش شود"
+
+msgid "Allow this database to be queried in SQL Lab"
+msgstr "اجازه دهید این پایگاه داده در آزمایشگاه SQL مورد کوئری قرار گیرد."
+
+msgid "Allowed Domains (comma separated)"
+msgstr "دامنه‌های مجاز (با ممیز ویرگول جدا شده)"
+
+msgid "Alphabetical"
+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."
+msgstr ""
+"این تصویرسازی که به عنوان نمودار جعبه و شاخک نیز شناخته می‌شود، توزیع‌های"
+" یک معیار مرتبط را در چندین گروه مقایسه می‌کند. جعبه در وسط میانگین، "
+"میانه و دو ربع داخلی را به نمایش می‌گذارد. شاخک‌های اطراف هر جعبه حداقل، "
+"حداکثر، دامنه و دو ربع خارجی را بصری‌سازی می‌کنند."
+
+msgid "Altered"
+msgstr "ویرایش شده"
+
+msgid "Always filter main datetime column"
+msgstr "همیشه ستون اصلی تاریخ و زمان را فیلتر کنید"
+
+msgid "An Error Occurred"
+msgstr "یک خطا رخ داد"
+
+#, python-format
+msgid "An alert named \"%(name)s\" already exists"
+msgstr "هشدار با نام \"%(name)s\" قبلاً وجود دارد"
+
+msgid ""
+"An enclosed time range (both start and end) must be specified when using "
+"a Time Comparison."
+msgstr ""
+"هنگام استفاده از مقایسه زمان، باید یک بازه زمانی محصور (هم شروع و هم "
+"پایان) مشخص شود."
+
+msgid ""
+"An engine must be specified when passing individual parameters to a "
+"database."
+msgstr "یک موتور باید هنگام عبور پارامترهای فردی به یک پایگاه داده مشخص شود."
+
+msgid "An error has occurred"
+msgstr "یک خطا رخ داده است"
+
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "در حین دریافت مجموعه داده‌ها خطایی رخ داد: %s"
+
+msgid "An error occurred"
+msgstr "یک خطا رخ داد"
+
+msgid "An error occurred saving dataset"
+msgstr "خطایی در هنگام ذخیره مجموعه داده رخ داد"
+
+msgid "An error occurred when running alert query"
+msgstr "هنگام اجرای کوئریی هشدار، خطایی رخ داد."
+
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "هنگام دسترسی به مقدار، خطایی رخ داد."
+
+msgid "An error occurred while accessing the value."
+msgstr "هنگام دسترسی به مقدار، خطایی رخ داد."
+
+msgid ""
+"An error occurred while collapsing the table schema. Please contact your "
+"administrator."
+msgstr "در حین جمع‌آوری ساختار جدول خطایی رخ داد. لطفاً با مدیر خود تماس بگیرید."
+
+#, python-format
+msgid "An error occurred while creating %ss: %s"
+msgstr "یک خطا در حین ایجاد %ss رخ داد: %s"
+
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "هنگام ایجاد مقدار، خطایی رخ داد."
+
+msgid "An error occurred while creating the data source"
+msgstr "هنگام ایجاد منبع داده خطایی رخ داد"
+
+msgid "An error occurred while creating the value."
+msgstr "هنگام ایجاد مقدار، خطایی رخ داد."
+
+msgid "An error occurred while deleting the value."
+msgstr "هنگام حذف مقدار، خطایی رخ داد."
+
+msgid ""
+"An error occurred while expanding the table schema. Please contact your "
+"administrator."
+msgstr "هنگام گسترش طرح جدول، خطایی رخ داد. لطفاً با مدیر خود تماس بگیرید."
+
+#, python-format
+msgid "An error occurred while fetching %s info: %s"
+msgstr "هنگام بازیابی اطلاعات %s خطایی رخ داد: %s"
+
+#, python-format
+msgid "An error occurred while fetching %ss: %s"
+msgstr "خطایی در حین دریافت %ss: %s رخ داد"
+
+msgid "An error occurred while fetching available CSS templates"
+msgstr "در هنگام بارگیری الگوهای CSS موجود یک خطا رخ داد"
+
+#, python-format
+msgid "An error occurred while fetching chart owners values: %s"
+msgstr "هنگام بازیابی مقادیر مالکین نمودار خطایی رخ داده است: %s"
+
+#, python-format
+msgid "An error occurred while fetching dashboard owner values: %s"
+msgstr "در حین دریافت مقادیر مالک داشبورد خطایی رخ داد: %s"
+
+msgid "An error occurred while fetching dashboards"
+msgstr "هنگام دریافت داشبوردها خطایی رخ داد"
+
+#, python-format
+msgid "An error occurred while fetching dashboards: %s"
+msgstr "در حین بارگذاری داشبوردها خطایی رخ داد: %s"
+
+#, python-format
+msgid "An error occurred while fetching database related data: %s"
+msgstr "یک خطا در حین دریافت داده‌های مربوط به پایگاه داده رخ داد: %s"
+
+#, python-format
+msgid "An error occurred while fetching database values: %s"
+msgstr "هنگام گرفتن مقادیر پایگاه داده خطایی رخ داد: %s"
+
+#, python-format
+msgid "An error occurred while fetching dataset datasource values: %s"
+msgstr "در حین دریافت مقادیر منبع داده مجموعه داده، خطایی رخ داد: %s"
+
+#, python-format
+msgid "An error occurred while fetching dataset owner values: %s"
+msgstr "خطا در حین دریافت مقادیر مالک مجموعه داده رخ داد: %s"
+
+msgid "An error occurred while fetching dataset related data"
+msgstr "یک خطا در حین دریافت داده‌های مرتبط با مجموعه داده‌ها رخ داد."
+
+#, python-format
+msgid "An error occurred while fetching dataset related data: %s"
+msgstr "در حین دریافت اطلاعات مربوط به مجموعه داده خطایی رخ داده است: %s"
+
+#, python-format
+msgid "An error occurred while fetching datasets: %s"
+msgstr "در حین دریافت مجموعه داده‌ها خطایی رخ داد: %s"
+
+msgid "An error occurred while fetching function names."
+msgstr "در حین بازیابی نام‌های تابع، خطایی رخ داد."
+
+#, python-format
+msgid "An error occurred while fetching owners values: %s"
+msgstr "یک خطا در حین دریافت مقادیر مالکین رخ داد: %s"
+
+#, python-format
+msgid "An error occurred while fetching schema values: %s"
+msgstr "در حین دریافت ارزش‌های طرح خطایی رخ داد: %s"
+
+msgid "An error occurred while fetching tab state"
+msgstr "در حین دریافت حالت تب، خطایی رخ داد."
+
+msgid "An error occurred while fetching table metadata"
+msgstr "خطایی در حین دریافت متادیتای جدول رخ داد"
+
+msgid ""
+"An error occurred while fetching table metadata. Please contact your "
+"administrator."
+msgstr "در حین دریافت متادیتای جدول خطایی رخ داد. لطفاً با مدیر خود تماس بگیرید."
+
+#, python-format
+msgid "An error occurred while fetching user values: %s"
+msgstr "هنگام دریافت مقادیر کاربر، خطایی رخ داد: %s"
+
+#, python-format
+msgid "An error occurred while importing %s: %s"
+msgstr "هنگام وارد کردن %s خطایی رخ داد: %s"
+
+msgid "An error occurred while loading dashboard information."
+msgstr "هنگام بارگذاری اطلاعات داشبورد خطایی رخ داده است."
+
+msgid "An error occurred while loading the SQL"
+msgstr "یک خطا در حین بارگذاری SQL رخ داد."
+
+msgid "An error occurred while opening Explore"
+msgstr "هنگام باز کردن حالت اکتشاف، خطایی رخ داد."
+
+msgid "An error occurred while parsing the key."
+msgstr "یک خطا در حین تجزیه کلید رخ داد."
+
+msgid "An error occurred while pruning logs "
+msgstr "در حین قطع کردن گزارش‌ها خطایی رخ داد"
+
+msgid "An error occurred while removing query. Please contact your administrator."
+msgstr "در حین حذف کوئری خطایی رخ داده است. لطفاً با مدیر سیستم خود تماس بگیرید."
+
+msgid ""
+"An error occurred while removing the table schema. Please contact your "
+"administrator."
+msgstr "هنگام حذف ساختار جدول، خطایی رخ داد. لطفاً با مدیر خود تماس بگیرید."
+
+#, python-format
+msgid "An error occurred while rendering the visualization: %s"
+msgstr "یک خطا در هنگام رسم تجسم رخ داده است: %s"
+
+msgid "An error occurred while starring this chart"
+msgstr "هنگام ستاره‌دار کردن این نمودار خطایی رخ داد"
+
+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 ""
+"هنگام ذخیره‌سازی کوئری شما در پشت‌صحنه خطایی رخ داده است. برای جلوگیری از"
+" از دست دادن تغییراتتان، لطفاً از دکمه \"ذخیره کوئری\" برای ذخیره‌سازی "
+"کوئریتان استفاده کنید."
+
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "خطایی در حین دریافت %ss: %s رخ داد"
+
+msgid "An error occurred while updating the value."
+msgstr "در حین بروزرسانی مقدار، خطایی رخ داد."
+
+msgid "An error occurred while upserting the value."
+msgstr "هنگام به‌روز رسانی مقدار، خطایی رخ داد."
+
+msgid "An unexpected error occurred"
+msgstr "یک خطای غیرمنتظره رخ داد"
+
+msgid "Anchor to"
+msgstr "لنگر به"
+
+msgid "Angle at which to end progress axis"
+msgstr "زاویه‌ای که برای پایان محور پیشرفت مشخص می‌شود"
+
+msgid "Angle at which to start progress axis"
+msgstr "زاویه‌ای که باید محور پیشرفت را شروع کرد"
+
+msgid "Animation"
+msgstr "انیمیشن"
+
+msgid "Annotation"
+msgstr "تفسیر"
+
+#, python-format
+msgid "Annotation Layer %s"
+msgstr "لایه حاشیه‌نویسی %s"
+
+msgid "Annotation Layers"
+msgstr "لایه‌های حاشیه‌نویسی"
+
+msgid "Annotation Slice Configuration"
+msgstr "پیکربندی برش حاشیه‌نویسی"
+
+msgid "Annotation could not be created."
+msgstr "نمونه‌برداری نتوانست ایجاد شود."
+
+msgid "Annotation could not be updated."
+msgstr "تنظیمات یادداشت قابل به‌روزرسانی نیستند."
+
+msgid "Annotation layer"
+msgstr "لایه توضیحی"
+
+msgid "Annotation layer could not be created."
+msgstr "لایه حاشیه‌نویسی نمی‌تواند ایجاد شود."
+
+msgid "Annotation layer could not be updated."
+msgstr "لایه یادداشت قابل بروزرسانی نیست."
+
+msgid "Annotation layer description columns"
+msgstr "توضیحات ستون لایه حاشیه‌نویسی"
+
+msgid "Annotation layer has associated annotations."
+msgstr "لایه حاشیه‌نویسی دارای حاشیه‌نویسی‌های مرتبط است."
+
+msgid "Annotation layer interval end"
+msgstr "پایان بازه لایه تفسیر"
+
+msgid "Annotation layer name"
+msgstr "نام لایه الحاقیه"
+
+msgid "Annotation layer not found."
+msgstr "لایه یادداشت پیدا نشد."
+
+msgid "Annotation layer opacity"
+msgstr "Opacity لایه یادداشت"
+
+msgid "Annotation layer parameters are invalid."
+msgstr "پارامترهای لایه حاشیه‌نویسی نامعتبر هستند."
+
+msgid "Annotation layer stroke"
+msgstr "لایه حاشیهٔ حاشیه‌نویسی"
+
+msgid "Annotation layer time column"
+msgstr "ستون زمان لایه حاشیه‌نویسی"
+
+msgid "Annotation layer title column"
+msgstr "ستون عنوان لایه حاشیه‌نویسی"
+
+msgid "Annotation layer type"
+msgstr "نوع لایه‌ی حاشیه‌نویسی"
+
+msgid "Annotation layer value"
+msgstr "مقدار لایه توضیحی"
+
+msgid "Annotation layers"
+msgstr "لایه‌های حاشیه‌نویسی"
+
+msgid "Annotation layers are still loading."
+msgstr "لایه‌های نشانه‌گذاری هنوز در حال بارگیری هستند."
+
+msgid "Annotation layers could not be deleted."
+msgstr "لیست لایه‌های حاشیه‌نگاری قابل حذف نیستند."
+
+msgid "Annotation not found."
+msgstr "حاشیه نویسی پیدا نشد."
+
+msgid "Annotation parameters are invalid."
+msgstr "پارامترهای حاشیه‌نویسی نامعتبر هستند."
+
+msgid "Annotation source"
+msgstr "منبع یادداشت"
+
+msgid "Annotation source type"
+msgstr "نوع منبع یادداشت"
+
+msgid "Annotation template created"
+msgstr "قالب حاشیه‌نویسی ایجاد شد"
+
+msgid "Annotation template updated"
+msgstr "قالب یادداشت به‌روز شد"
+
+msgid "Annotations and Layers"
+msgstr "تفسیرها و لایه‌ها"
+
+msgid "Annotations and layers"
+msgstr "حاشیه‌نویسی‌ها و لایه‌ها"
+
+msgid "Annotations could not be deleted."
+msgstr "نمی‌توان انnotations را حذف کرد."
+
+msgid "Any"
+msgstr "هرگونه"
+
+msgid "Any additional detail to show in the certification tooltip."
+msgstr "جزئیات اضافی برای نمایش در راهنمای صدور گواهینامه."
+
+msgid ""
+"Any color palette selected here will override the colors applied to this "
+"dashboard's individual charts"
+msgstr ""
+"هر پالت رنگی که در اینجا انتخاب شود، رنگ‌های اعمال شده به نمودارهای فردی "
+"این داشبورد را نادیده خواهد گرفت."
+
+msgid "Any databases that allow connections via SQL Alchemy URIs can be added. "
+msgstr ""
+"هر پایگاه داده‌ای که امکان اتصال از طریق URI های SQL Alchemy را داشته "
+"باشد، می‌تواند اضافه شود."
+
+msgid ""
+"Any databases that allow connections via SQL Alchemy URIs can be added. "
+"Learn about how to connect a database driver "
+msgstr ""
+"هر پایگاه داده‌ای که اجازه اتصال از طریق URI های SQL Alchemy را بدهد، "
+"می‌تواند اضافه شود. درباره نحوه اتصال یک درایور پایگاه داده بیاموزید."
+
+#, python-format
+msgid "Applied cross-filters (%d)"
+msgstr "فیلترهای متقاطع اعمال شده (%d)"
+
+#, python-format
+msgid "Applied filters (%d)"
+msgstr "فیلترهای اعمال شده (%d)"
+
+#, python-format
+msgid "Applied filters (%s)"
+msgstr "فیلترهای اعمال شده (%s)"
+
+#, python-format
+msgid "Applied filters: %s"
+msgstr "فیلترهای اعمال شده: %s"
+
+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 "Apply"
+msgstr "اعمال کنید"
+
+msgid "Apply conditional color formatting to metric"
+msgstr "رنگ‌آمیزی شرطی را به متریک اعمال کنید"
+
+msgid "Apply conditional color formatting to metrics"
+msgstr "رنگ‌آمیزی شرطی را به معیارها اعمال کنید"
+
+msgid "Apply conditional color formatting to numeric columns"
+msgstr "قالب‌بندی رنگی شرطی را به ستون‌های عددی اعمال کنید"
+
+msgid "Apply filters"
+msgstr "فیلترها را اعمال کنید"
+
+msgid "Apply metrics on"
+msgstr "اعمال متریک‌ها بر روی"
+
+msgid "April"
+msgstr "آپریل"
+
+msgid "Arc"
+msgstr "قوس"
+
+msgid "Are you sure you intend to overwrite the following values?"
+msgstr "آیا مطمئن هستید که قصد دارید مقادیر زیر را بازنویسی کنید؟"
+
+msgid "Are you sure you want to cancel?"
+msgstr "آیا مطمئن هستید که می‌خواهید لغو کنید؟"
+
+msgid "Are you sure you want to delete"
+msgstr "آیا از پاک کردن مطمئن هستید؟"
+
+#, python-format
+msgid "Are you sure you want to delete %s?"
+msgstr "آیا مطمئن هستید که می‌خواهید %s را حذف کنید؟"
+
+#, python-format
+msgid "Are you sure you want to delete the selected %s?"
+msgstr "آیا مطمئن هستید که می‌خواهید %s انتخاب‌شده را پاک کنید؟"
+
+msgid "Are you sure you want to delete the selected annotations?"
+msgstr "آیا از حذف یادداشت‌های انتخاب شده مطمئن هستید؟"
+
+msgid "Are you sure you want to delete the selected charts?"
+msgstr "آیا مطمئن هستید که می‌خواهید نمودارهای انتخاب‌شده را حذف کنید؟"
+
+msgid "Are you sure you want to delete the selected dashboards?"
+msgstr "آیا مطمئن هستید که می‌خواهید داشبوردهای انتخاب‌شده را حذف کنید؟"
+
+msgid "Are you sure you want to delete the selected datasets?"
+msgstr "آیا مطمئن هستید که می‌خواهید داده‌های انتخاب‌شده را حذف کنید؟"
+
+msgid "Are you sure you want to delete the selected layers?"
+msgstr "آیا از حذف لایه‌های انتخاب‌شده مطمئن هستید؟"
+
+msgid "Are you sure you want to delete the selected queries?"
+msgstr "آیا از حذف کوئری‌های انتخاب‌شده مطمئن هستید؟"
+
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "آیا مطمئن هستید که می‌خواهید قوانین انتخاب شده را حذف کنید؟"
+
+msgid "Are you sure you want to delete the selected rules?"
+msgstr "آیا مطمئن هستید که می‌خواهید قوانین انتخاب شده را حذف کنید؟"
+
+msgid "Are you sure you want to delete the selected tags?"
+msgstr "آیا از حذف برچسب‌های انتخاب‌شده مطمئن هستید؟"
+
+msgid "Are you sure you want to delete the selected templates?"
+msgstr "آیا مطمئن هستید که می‌خواهید الگوهای انتخاب‌شده را حذف کنید؟"
+
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "آیا از حذف کوئری‌های انتخاب‌شده مطمئن هستید؟"
+
+msgid "Are you sure you want to overwrite this dataset?"
+msgstr "آیا مطمئن هستید که می‌خواهید این مجموعه داده را جایگزین کنید؟"
+
+msgid "Are you sure you want to proceed?"
+msgstr "آیا مطمئن هستید که می‌خواهید ادامه دهید؟"
+
+msgid "Are you sure you want to save and apply changes?"
+msgstr "آیا مطمئن هستید که می‌خواهید تغییرات را ذخیره و اعمال کنید؟"
+
+msgid "Area"
+msgstr "منطقه"
+
+msgid "Area Chart"
+msgstr "نمودار ناحیه"
+
+msgid "Area chart"
+msgstr "نمودار منطقه‌ای"
+
+msgid "Area chart opacity"
+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 ""
+"نمودارهای área مشابه نمودارهای خطی هستند زیرا متغیرها را با مقیاس یکسان "
+"نمایش می‌دهند، اما نمودارهای área مقادیر را بر روی یکدیگر انباشته "
+"می‌کنند."
+
+msgid "Arrow"
+msgstr "فلش"
+
+msgid "Assign a set of parameters as"
+msgstr "یک مجموعه از پارامترها را به عنوان"
+
+msgid "Assist"
+msgstr "کمک کنید"
+
+msgid "Asynchronous query execution"
+msgstr "اجرای کوئری به صورت ناهمزمان"
+
+#, fuzzy
+msgid "Attribution"
+msgstr "توزیع"
+
+msgid "August"
+msgstr "اوت"
+
+msgid "Authorization needed"
+msgstr "نیاز به مجوز دارد"
+
+msgid "Auto"
+msgstr "خودکار"
+
+msgid "Auto Zoom"
+msgstr "زوم خودکار"
+
+msgid "Autocomplete"
+msgstr "تکمیل خودکار"
+
+msgid "Autocomplete filters"
+msgstr "فیلترهای تکمیل خودکار"
+
+msgid "Autocomplete query predicate"
+msgstr "پیشنهاد خودکار کوئری"
+
+msgid "Automatic Color"
+msgstr "رنگ خودکار"
+
+#, fuzzy
+msgid "Autosize Column"
+msgstr "ستون‌ها را سفارشی‌سازی کنید"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "ستون‌ها را سفارشی‌سازی کنید"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
+msgid "Available sorting modes:"
+msgstr "حالت‌های مرتب‌سازی در دسترس:"
+
+msgid "Average"
+msgstr "میانگین"
+
+msgid "Average (Mean)"
+msgstr ""
+
+msgid "Average value"
+msgstr "ارزش میانگین"
+
+msgid "Axis"
+msgstr "محور"
+
+msgid "Axis Bounds"
+msgstr "محدوده‌های محور"
+
+msgid "Axis Format"
+msgstr "فرمت محور"
+
+msgid "Axis Title"
+msgstr "عنوان محور"
+
+msgid "Axis ascending"
+msgstr "محور صعودی"
+
+msgid "Axis descending"
+msgstr "محور نزولی"
+
+#, fuzzy
+msgid "BCC recipients"
+msgstr "گیرندگان"
+
+msgid "BOOLEAN"
+msgstr "بولیّن"
+
+msgid "Back"
+msgstr "بازگشت"
+
+msgid "Back to all"
+msgstr "بازگشت به همه"
+
+msgid "Backend"
+msgstr "پشتیبان"
+
+#, fuzzy
+msgid "Background Color"
+msgstr "پس‌زمینه"
+
+msgid "Backward values"
+msgstr "مقادیر معکوس"
+
+msgid "Bad formula."
+msgstr "فرمول نادرست."
+
+msgid "Bad spatial key"
+msgstr "کلید فضایی نامعتبر"
+
+msgid "Bar"
+msgstr "بار"
+
+msgid "Bar Chart"
+msgstr "نمودار میله‌ای"
+
+msgid "Bar Charts are used to show metrics as a series of bars."
+msgstr ""
+"نمودارهای میله‌ای برای نمایش معیارها به عنوان سری از میله‌ها استفاده "
+"می‌شوند."
+
+msgid "Bar Values"
+msgstr "مقادیر میله‌ای"
+
+msgid "Bar orientation"
+msgstr "جهت‌گیری نوار"
+
+msgid "Base"
+msgstr "پایه"
+
+#, fuzzy
+msgid "Base exponent"
+msgstr "پورت پایگاه داده"
+
+#, fuzzy
+msgid "Base height"
+msgstr "ارتفاع نمودار"
+
+#, python-format
+msgid "Base layer map style. See Mapbox documentation: %s"
+msgstr "سبک نقشه لایه پایه. به مستندات Mapbox مراجعه کنید: %s"
+
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "عرض خط"
+
+msgid "Based on a metric"
+msgstr "بر اساس یک شاخص"
+
+msgid "Based on granularity, number of time periods to compare against"
+msgstr "بر اساس جزئیات، تعداد دوره‌های زمانی برای مقایسه"
+
+msgid "Based on what should series be ordered on the chart and legend"
+msgstr "بر اساس چه ترتیبی باید سری‌ها در نمودار و افسانه مرتب شوند؟"
+
+msgid "Basic"
+msgstr "پایه"
+
+msgid "Basic information"
+msgstr "اطلاعات پایه"
+
+#, python-format
+msgid "Batch editing %d filters:"
+msgstr "ویرایش دسته‌ای %d فیلتر:"
+
+msgid "Be careful."
+msgstr "مواظب باش."
+
+msgid "Before"
+msgstr "قبل از"
+
+msgid "Big Number"
+msgstr "عدد بزرگ"
+
+msgid "Big Number Font Size"
+msgstr "اندازه فونت عدد بزرگ"
+
+msgid "Big Number with Time Period Comparison"
+msgstr "عدد بزرگ با مقایسه دوره زمانی"
+
+msgid "Big Number with Trendline"
+msgstr "عدد بزرگ با خط روند"
+
+msgid "Bins"
+msgstr "باین‌ها"
+
+#, fuzzy
+msgid "Border color"
+msgstr "رنگ‌های سری‌ها"
+
+#, fuzzy
+msgid "Border width"
+msgstr "عرض لبه"
+
+msgid "Bottom"
+msgstr "پایین"
+
+msgid "Bottom Margin"
+msgstr "حاشیه پایین"
+
+msgid "Bottom left"
+msgstr "پایین چپ"
+
+msgid "Bottom margin, in pixels, allowing for more room for axis labels"
+msgstr "حاشیه پایین، به پیکسل، که فضای بیشتری برای برچسب‌های محور فراهم می‌کند"
+
+msgid "Bottom right"
+msgstr "پایین راست"
+
+msgid "Bottom to Top"
+msgstr "از پایین به بالا"
+
+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 ""
+"محدوده‌های محور X عددی. این ویژگی برای محورها زمان‌بندی شده یا دسته‌ای "
+"قابل اعمال نیست. وقتی خالی رها شود، محدوده‌ها به طور دینامیکی بر اساس "
+"کمینه/بیشینه داده‌ها تعریف می‌شوند. توجه داشته باشید که این ویژگی فقط "
+"دامنه محور را گسترش می‌دهد و عرض داده‌ها را کاهش نمی‌دهد."
+
+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. هنگامی که خالی bırak شود، محدودیت‌ها به‌طور "
+"دینامیک بر اساس حداقل/حداکثر داده‌ها تعریف می‌شوند. توجه داشته باشید که "
+"این ویژگی تنها دامنه محور را گسترش خواهد داد و محدوده داده‌ها را کاهش "
+"نخواهد داد."
+
+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 ""
+"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 ""
+"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 مستقل فعال باشند. وقتی خالی بگذارید، محدوده‌ها به‌طور "
+"دینامیک بر اساس حداقل/حداکثر داده‌ها تعریف می‌شوند. توجه داشته باشید که "
+"این ویژگی فقط دامنه محور را گسترش می‌دهد و دامنه داده‌ها را تنگ نمی‌کند."
+
+msgid "Box Plot"
+msgstr "نمودار جعبه‌ای"
+
+msgid "Breakdowns"
+msgstr "تحلیل‌ها"
+
+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 "Bubble Chart"
+msgstr "نمودار حبابی"
+
+msgid "Bubble Chart (legacy)"
+msgstr "نمودار حبابی (نسخه قدیمی)"
+
+msgid "Bubble Color"
+msgstr "رنگ حباب"
+
+msgid "Bubble Opacity"
+msgstr "شفافیت حباب"
+
+msgid "Bubble Size"
+msgstr "اندازه حباب"
+
+msgid "Bubble size"
+msgstr "اندازه حباب"
+
+msgid "Bubble size number format"
+msgstr "فرمت عدد اندازه حباب"
+
+msgid "Bucket break points"
+msgstr "نقاط شکسته سطل"
+
+msgid "Build"
+msgstr "ساخت"
+
+msgid "Bulk select"
+msgstr "انتخاب گروهی"
+
+msgid "Bulk tag"
+msgstr "برچسب انبوه"
+
+msgid "Bullet Chart"
+msgstr "نمودار گلوله‌ای"
+
+msgid "Business"
+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 ""
+"به طور پیش‌فرض، هر فیلتر حداکثر ۱۰۰۰ گزینه را در بارگذاری اولیه صفحه "
+"بارگذاری می‌کند. اگر بیش از ۱۰۰۰ مقدار فیلتر دارید و می‌خواهید جستجوی "
+"دینامیک را فعال کنید که مقادیر فیلتر را در حین تایپ کاربران بارگذاری "
+"می‌کند (این ممکن است به پایگاه داده شما فشار وارد کند)، این کادر را علامت"
+" بزنید."
+
+msgid "By key: use column names as sorting key"
+msgstr "با کلید: از نام ستون‌ها به‌عنوان کلید مرتب‌سازی استفاده کنید"
+
+msgid "By key: use row names as sorting key"
+msgstr "با کلید: از نام‌های ردیف به عنوان کلید مرتب‌سازی استفاده کنید"
+
+msgid "By value: use metric values as sorting key"
+msgstr "بر اساس مقدار: از مقادیر متریک به‌عنوان کلید مرتب‌سازی استفاده کنید"
+
+msgid "CANCEL"
+msgstr "لغو"
+
+#, fuzzy
+msgid "CC recipients"
+msgstr "گیرندگان"
+
+msgid "CREATE DATASET"
+msgstr "ایجاد مجموعه داده"
+
+msgid "CREATE TABLE AS"
+msgstr "جدول را ایجاد کنید به عنوان"
+
+msgid "CREATE VIEW AS"
+msgstr "ایجاد نما به عنوان"
+
+msgid "CREATE VIEW statement"
+msgstr "جمله CREATE VIEW"
+
+msgid "CRON Schedule"
+msgstr "برنامه زمانبندی CRON"
+
+msgid "CRON expression"
+msgstr "عبارت CRON"
+
+msgid "CSS"
+msgstr "سی‌اس‌اس"
+
+msgid "CSS Styles"
+msgstr "سبک‌های CSS"
+
+msgid "CSS Templates"
+msgstr "قالب‌های CSS"
+
+msgid "CSS applied to the chart"
+msgstr "CSS اعمال شده بر روی چارت"
+
+msgid "CSS template"
+msgstr "قالب CSS"
+
+msgid "CSS template not found."
+msgstr "قالب CSS پیدا نشد."
+
+msgid "CSS templates"
+msgstr "قالب‌های CSS"
+
+msgid "CSS templates could not be deleted."
+msgstr "قالب‌های CSS قابل حذف نیستند."
+
+#, fuzzy
+msgid "CSV upload"
+msgstr "آپلود فایل"
+
+msgid "CTAS & CVAS SCHEMA"
+msgstr "طرح CTAS و CVAS"
+
+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 (ایجاد جدول به عنوان انتخاب) فقط می‌تواند با یک کوئری که آخرین دستور"
+" آن یک SELECT است اجرا شود. لطفاً مطمئن شوید که کوئری شما یک SELECT به "
+"عنوان آخرین دستور دارد. سپس دوباره تلاش کنید تا کوئری خود را اجرا کنید."
+
+#, fuzzy
+msgid "CUSTOM"
+msgstr "سفارشی"
+
+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 (ایجاد نما به عنوان انتخاب) فقط می‌تواند با یک کوئری که شامل یک "
+"عبارت SELECT واحد باشد، اجرا شود. لطفاً اطمینان حاصل کنید که کوئری شما "
+"فقط یک عبارت SELECT دارد. سپس، دوباره سعی کنید کوئری خود را اجرا کنید."
+
+msgid "CVAS (create view as select) query has more than one statement."
+msgstr "کوئری CVAS (ایجاد نما به صورت انتخاب) دارای بیش از یک بیانیه است."
+
+msgid "CVAS (create view as select) query is not a SELECT statement."
+msgstr "کوئری CVAS (ایجاد نما به عنوان انتخاب) یک عبارت SELECT نیست."
+
+msgid "Cache Timeout (seconds)"
+msgstr "زمان انقضای کش (ثانیه)"
+
+msgid "Cache timeout"
+msgstr "زمان انقضای کش"
+
+msgid "Cached"
+msgstr "کشیده شده"
+
+#, python-format
+msgid "Cached %s"
+msgstr "کش شده %s"
+
+msgid "Cached value not found"
+msgstr "مقدار کش شده یافت نشد"
+
+msgid "Calculate contribution per series or row"
+msgstr "محاسبه سهم به ازای هر سری یا ردیف"
+
+msgid "Calculate from first step"
+msgstr "محاسبه از مرحله اول"
+
+msgid "Calculate from previous step"
+msgstr "از مرحله قبلی محاسبه کنید"
+
+#, python-format
+msgid "Calculated column [%s] requires an expression"
+msgstr "ستون محاسبه شده [%s] نیاز به یک بیان دارد"
+
+msgid "Calculated columns"
+msgstr "ستون‌های محاسباتی"
+
+msgid "Calculation type"
+msgstr "نوع محاسبه"
+
+msgid "Calendar Heatmap"
+msgstr "نقشه دما تقویم"
+
+msgid "Can not move top level tab into nested tabs"
+msgstr "نمی‌توان برگه سطح بالای را به برگه‌های تو در تو منتقل کرد"
+
+msgid "Can select multiple values"
+msgstr "می‌توانید چندین مقدار را انتخاب کنید"
+
+msgid "Cancel"
+msgstr "انصراف"
+
+msgid "Cancel query on window unload event"
+msgstr "لغو کوئری در رویداد بارگذاری مجدد پنجره"
+
+msgid "Cannot access the query"
+msgstr "نمی‌توان به کوئری دسترسی پیدا کرد"
+
+msgid "Cannot delete a database that has datasets attached"
+msgstr "نمی‌توان یک پایگاه داده را که دارای دیتاست‌های متصل است حذف کرد."
+
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
+msgid "Cannot have multiple credentials for the SSH Tunnel"
+msgstr "نمی‌توان چندین اعتبارنامه برای تونل SSH داشت"
+
+msgid "Cannot load filter"
+msgstr "نمی‌توان فیلتر را بارگذاری کرد"
+
+#, python-format
+msgid "Cannot parse time string [%(human_readable)s]"
+msgstr "نمی‌توان رشته زمان [%(human_readable)s] را تجزیه کرد"
+
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "نمودار پارتیشن"
+
+msgid "Catalog"
+msgstr "فهرست"
+
+msgid "Categorical"
+msgstr "دسته‌ای"
+
+msgid "Categorical Color"
+msgstr "رنگ طبقه‌بندی‌شده"
+
+msgid "Categories to group by on the x-axis."
+msgstr "دسته‌بندی‌ها برای گروه‌بندی در محور x."
+
+msgid "Category"
+msgstr "دسته‌بندی"
+
+msgid "Category Name"
+msgstr "نام دسته‌ بندی"
+
+msgid "Category and Percentage"
+msgstr "دسته‌بندی و درصد"
+
+msgid "Category and Value"
+msgstr "دسته‌بندی و ارزش"
+
+msgid "Category name"
+msgstr "نام دسته بندی"
+
+msgid "Category of target nodes"
+msgstr "دسته‌بندی گره‌های هدف"
+
+msgid "Category, Value and Percentage"
+msgstr "دسته‌بندی، ارزش و درصد"
+
+msgid "Cell Padding"
+msgstr "فاصله سلولی"
+
+msgid "Cell Radius"
+msgstr "شعاع سلول"
+
+msgid "Cell Size"
+msgstr "اندازه سلول"
+
+msgid "Cell content"
+msgstr "محتوای سلول"
+
+msgid "Cell limit"
+msgstr "محدودیت سلول"
+
+msgid "Centroid (Longitude and Latitude): "
+msgstr "مرکز (طول جغرافیایی و عرض جغرافیایی):"
+
+msgid "Certification"
+msgstr "گواهینامه"
+
+msgid "Certification details"
+msgstr "جزئیات گواهی‌نامه"
+
+msgid "Certified"
+msgstr "گواهی شده"
+
+msgid "Certified By"
+msgstr "گواهی شده توسط"
+
+msgid "Certified by"
+msgstr "تأیید شده توسط"
+
+#, python-format
+msgid "Certified by %s"
+msgstr "تأیید شده توسط %s"
+
+msgid "Change order of columns."
+msgstr "ترتیب ستون‌ها را تغییر دهید."
+
+msgid "Change order of rows."
+msgstr "ترتیب ردیف‌ها را تغییر دهید."
+
+msgid "Changed by"
+msgstr "ویرایش شده توسط"
+
+#, fuzzy
+msgid "Changed on"
+msgstr "تغییر"
+
+msgid "Changes saved."
+msgstr "تغییرات ذخیره شد."
+
+msgid "Changing one or more of these dashboards is forbidden"
+msgstr "تغییر یکی یا چند تا از این داشبوردها ممنوع است."
+
+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 ""
+"تغییر مجموعه داده ممکن است نمودار را خراب کند اگر نمودار به ستون‌ها یا "
+"فراداده‌هایی وابسته باشد که در مجموعه داده هدف وجود ندارد."
+
+msgid ""
+"Changing these settings will affect all charts using this dataset, "
+"including charts owned by other people."
+msgstr ""
+"تغییر این تنظیمات بر روی تمام نمودارهایی که از این مجموعه داده استفاده "
+"می‌کنند تأثیر خواهد گذاشت، از جمله نمودارهایی که متعلق به افراد دیگر است."
+
+msgid "Changing this Dashboard is forbidden"
+msgstr "تغییر این داشبورد ممنوع است"
+
+msgid "Changing this chart is forbidden"
+msgstr "تغییر این نمودار ممنوع است"
+
+msgid "Changing this control takes effect instantly"
+msgstr "تغییر این کنترل بلافاصله اثر می‌گذارد."
+
+msgid "Changing this dataset is forbidden"
+msgstr "تغییر این مجموعه داده ممنوع است"
+
+msgid "Changing this dataset is forbidden."
+msgstr "تغییر این مجموعه داده ممنوع است."
+
+msgid "Changing this datasource is forbidden"
+msgstr "تغییر این منبع داده ممنوع است"
+
+msgid "Changing this report is forbidden"
+msgstr "تغییر این گزارش ممنوع است"
+
+msgid "Character to interpret as decimal point"
+msgstr "کاراکتر برای تفسیر به عنوان نقطه اعشاری"
+
+msgid "Chart"
+msgstr "نمودار"
+
+#, python-format
+msgid "Chart %(id)s not found"
+msgstr "چارت %(id)s پیدا نشد"
+
+#, python-format
+msgid "Chart Data: %s"
+msgstr "داده‌های نمودار: %s"
+
+msgid "Chart ID"
+msgstr "شماره نمودار"
+
+msgid "Chart Options"
+msgstr "گزینه‌های نمودار"
+
+msgid "Chart Orientation"
+msgstr "چرخش نمودار"
+
+#, python-format
+msgid "Chart Owner: %s"
+msgid_plural "Chart Owners: %s"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Chart Source"
+msgstr "منبع نمودار"
+
+msgid "Chart Title"
+msgstr "عنوان نمودار"
+
+#, python-format
+msgid "Chart [%s] has been overwritten"
+msgstr "چارت [%s] بازنویسی شده است."
+
+#, python-format
+msgid "Chart [%s] has been saved"
+msgstr "چارت [%s] ذخیره شد"
+
+#, python-format
+msgid "Chart [%s] was added to dashboard [%s]"
+msgstr "چارت [%s] به داشبورد [%s] اضافه شد"
+
+msgid "Chart [{}] has been overwritten"
+msgstr "چارت [{}] مجدداً نوشته شده است"
+
+msgid "Chart [{}] has been saved"
+msgstr "چارت [{}] ذخیره شد"
+
+msgid "Chart [{}] was added to dashboard [{}]"
+msgstr "چارت [{}] به داشبورد [{}] اضافه شد"
+
+msgid "Chart cache timeout"
+msgstr "زمان انقضای کش نمودار"
+
+msgid "Chart changes"
+msgstr "تغییرات نمودار"
+
+msgid "Chart could not be created."
+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 "نمودار وارد شده است"
+
+msgid "Chart last modified"
+msgstr "آخرین باری که چارت تغییر کرد"
+
+msgid "Chart last modified by"
+msgstr "نمودار آخرین بار ویرایش شده توسط"
+
+msgid "Chart name"
+msgstr "نام نمودار"
+
+msgid "Chart not found"
+msgstr "نمودار یافت نشد"
+
+msgid "Chart options"
+msgstr "گزینه‌های نمودار"
+
+msgid "Chart owners"
+msgstr "مالکان نمودار"
+
+msgid "Chart parameters are invalid."
+msgstr "پارامترهای چارت نامعتبر هستند."
+
+msgid "Chart properties updated"
+msgstr "خصوصیات نمودار به‌روزرسانی شد"
+
+#, fuzzy
+msgid "Chart size"
+msgstr "نمودارها"
+
+msgid "Chart title"
+msgstr "عنوان نمودار"
+
+msgid "Chart type requires a dataset"
+msgstr "نوع نمودار به یک مجموعه داده نیاز دارد"
+
+msgid "Chart width"
+msgstr "عرض نمودار"
+
+msgid "Charts"
+msgstr "نمودارها"
+
+msgid "Charts could not be deleted."
+msgstr "نمودارها نمی‌توانند حذف شوند."
+
+msgid "Check for sorting ascending"
+msgstr "بررسی مرتب‌سازی به صورت صعودی"
+
+msgid ""
+"Check if the Rose Chart should use segment area instead of segment radius"
+" for proportioning"
+msgstr ""
+"بررسی کنید که آیا نمودار گل باید به جای استفاده از شعاع بخش، از مساحت بخش"
+" برای تناسب استفاده کند یا خیر."
+
+msgid "Check out this chart in dashboard:"
+msgstr "این نمودار را در داشبورد بررسی کنید:"
+
+msgid "Check out this chart: "
+msgstr "این نمودار را بررسی کنید:"
+
+msgid "Check out this dashboard: "
+msgstr "این داشبورد را بررسی کنید:"
+
+msgid "Check to force date partitions to have the same height"
+msgstr "بررسی برای اجباری کردن پارتیشن‌های تاریخ تا ارتفاع یکسانی داشته باشند"
+
+msgid "Child label position"
+msgstr "موقعیت برچسب کودک"
+
+msgid "Choice of [Label] must be present in [Group By]"
+msgstr "انتخاب [برچسب] باید در [گروه‌بندی] وجود داشته باشد."
+
+msgid "Choice of [Point Radius] must be present in [Group By]"
+msgstr "انتخاب [شعاع نقطه] باید در [گروه‌بندی] وجود داشته باشد."
+
+msgid "Choose File"
+msgstr "فایل را انتخاب کنید"
+
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "یک چارت یا داشبورد را انتخاب کنید نه هر دو"
+
+msgid "Choose a chart or dashboard not both"
+msgstr "یک چارت یا داشبورد را انتخاب کنید نه هر دو"
+
+msgid "Choose a database..."
+msgstr "یک پایگاه داده انتخاب کنید..."
+
+msgid "Choose a dataset"
+msgstr "یک مجموعه داده را انتخاب کنید"
+
+msgid "Choose a delimiter"
+msgstr "یک جداکننده را انتخاب کنید"
+
+msgid "Choose a metric for right axis"
+msgstr "یک معیار برای محور راست انتخاب کنید"
+
+msgid "Choose a number format"
+msgstr "فرمت شماره را انتخاب کنید"
+
+msgid "Choose a source"
+msgstr "منبع را انتخاب کنید"
+
+msgid "Choose a target"
+msgstr "یک هدف را انتخاب کنید"
+
+msgid "Choose already exists"
+msgstr "انتخاب قبلاً وجود دارد"
+
+msgid "Choose chart type"
+msgstr "نوع نمودار را انتخاب کنید"
+
+msgid "Choose columns to be parsed as dates"
+msgstr "ستون‌ها را برای تجزیه به عنوان تاریخ انتخاب کنید"
+
+msgid "Choose columns to read"
+msgstr "ستون‌ها را برای خواندن انتخاب کنید"
+
+msgid "Choose index column"
+msgstr "ستون اندیس را انتخاب کنید"
+
+msgid "Choose notification method and recipients."
+msgstr "روش و دریافت‌کنندگان اعلان را انتخاب کنید."
+
+msgid "Choose one of the available databases from the panel on the left."
+msgstr "یکی از پایگاه‌های داده موجود را از پنل سمت چپ انتخاب کنید."
+
+#, fuzzy
+msgid "Choose one of the available databases on the left panel."
+msgstr "یکی از پایگاه‌های داده موجود را از پنل سمت چپ انتخاب کنید."
+
+msgid "Choose sheet name"
+msgstr "نام شیت را انتخاب کنید"
+
+msgid "Choose the annotation layer type"
+msgstr "نوع لایه حاشیه‌نویسی را انتخاب کنید"
+
+msgid "Choose the format for legend values"
+msgstr "فرمت مقادیر راهنما را انتخاب کنید"
+
+msgid "Choose the position of the legend"
+msgstr "موقعیت افسانه را انتخاب کنید"
+
+msgid "Choose the source of your annotations"
+msgstr "منبع یادداشت‌های خود را انتخاب کنید"
+
+msgid ""
+"Choose values that should be treated as null. Warning: Hive database "
+"supports only a single value"
+msgstr ""
+"مقدارهایی را که باید به عنوان تهی در نظر گرفته شوند، انتخاب کنید. هشدار: "
+"پایگاه داده Hive تنها یک مقدار را پشتیبانی می‌کند."
+
+msgid ""
+"Choose whether a country should be shaded by the metric, or assigned a "
+"color based on a categorical color palette"
+msgstr ""
+"انتخاب کنید که آیا یک کشور باید بر اساس معیار سایه‌زده شود یا رنگی بر "
+"اساس پالت رنگ‌های دسته‌ای به آن تخصیص داده شود."
+
+msgid "Chord Diagram"
+msgstr "نمودار چرخشی"
+
+msgid "Chosen non-numeric column"
+msgstr "ستون غیر عددی انتخاب شده"
+
+msgid "Circle"
+msgstr "دایره"
+
+msgid "Circle -> Arrow"
+msgstr "دایره -> فلش"
+
+msgid "Circle -> Circle"
+msgstr "دایره -> دایره"
+
+msgid "Circle radar shape"
+msgstr "شکل رادار دایره‌ای"
+
+msgid "Circular"
+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 ""
+"نمای کلاسیک جدولی از یک داده با ردیف و ستون. از جداول برای نشان دادن "
+"نمایی از داده‌های پایه یا برای نمایش معیارهای تجمیع‌شده استفاده کنید."
+
+msgid "Clause"
+msgstr "بند"
+
+msgid "Clear"
+msgstr "پاک کردن"
+
+msgid "Clear all"
+msgstr "پاک کردن همه"
+
+msgid "Clear all data"
+msgstr "تمام داده‌ها را پاک کنید"
+
+msgid "Clear form"
+msgstr "فرم را پاک کن"
+
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
+msgstr ""
+"روی دکمه \"+افزودن/ویرایش فیلترها\" کلیک کنید تا فیلترهای جدید داشبورد "
+"ایجاد کنید."
+
+msgid ""
+"Click on \"Create chart\" button in the control panel on the left to "
+"preview a visualization or"
+msgstr ""
+"روی دکمه \"ایجاد نمودار\" در پنل کنترلی در سمت چپ کلیک کنید تا یک "
+"پیش‌نمایش از تجسم را مشاهده کنید یا"
+
+msgid "Click the lock to make changes."
+msgstr "برای ایجاد تغییرات قفل را کلیک کنید."
+
+msgid "Click the lock to prevent further changes."
+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 این "
+"پایگاه داده را به صورت دستی وارد کنید، روی این لینک کلیک کنید."
+
+msgid ""
+"Click this link to switch to an alternate form that exposes only the "
+"required fields needed to connect this database."
+msgstr ""
+"برای تغییر به فرم جایگزینی که فقط فیلدهای مورد نیاز برای اتصال به این "
+"پایگاه داده را نمایش می‌دهد، روی این لینک کلیک کنید."
+
+msgid "Click to add a contour"
+msgstr "برای اضافه کردن یک کانتورها کلیک کنید"
+
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "برای اضافه کردن یک کانتورها کلیک کنید"
+
+msgid "Click to cancel sorting"
+msgstr "برای لغو مرتب‌سازی کلیک کنید"
+
+msgid "Click to edit"
+msgstr "برای ویرایش کلیک کنید"
+
+#, python-format
+msgid "Click to edit %s."
+msgstr "برای ویرایش %s کلیک کنید."
+
+msgid "Click to edit chart."
+msgstr "برای ویرایش نمودار کلیک کنید."
+
+msgid "Click to edit label"
+msgstr "برای ویرایش برچسب کلیک کنید"
+
+msgid "Click to favorite/unfavorite"
+msgstr "برای اضافه کردن به لیست مورد علاقه/حذف از لیست مورد علاقه کلیک کنید"
+
+msgid "Click to force-refresh"
+msgstr "کلیک کنید تا دوباره بارگذاری کنید"
+
+msgid "Click to see difference"
+msgstr "کلیک کنید تا تفاوت را مشاهده کنید"
+
+msgid "Click to sort ascending"
+msgstr "برای مرتب‌سازی به صورت صعودی کلیک کنید"
+
+msgid "Click to sort descending"
+msgstr "برای مرتب‌سازی به ترتیب نزولی کلیک کنید"
+
+msgid "Close"
+msgstr "بستن"
+
+msgid "Close all other tabs"
+msgstr "تمام تب‌های دیگر را ببندید"
+
+msgid "Close tab"
+msgstr "بستن برگه"
+
+msgid "Cluster label aggregator"
+msgstr "جمع‌آوری برچسب خوشه"
+
+msgid "Clustering Radius"
+msgstr "شعاع خوشه‌بندی"
+
+msgid "Code"
+msgstr "کد"
+
+msgid "Collapse all"
+msgstr "همه را جمع کردن"
+
+msgid "Collapse data panel"
+msgstr "جمع کردن پنل داده"
+
+msgid "Collapse row"
+msgstr "جمع کردن ردیف"
+
+msgid "Collapse tab content"
+msgstr "محتوای زبانه را جمع کنید"
+
+msgid "Collapse table preview"
+msgstr "مشاهده پیش‌نمایش جدول را جمع کنید"
+
+msgid "Color"
+msgstr "رنگ"
+
+msgid "Color +/-"
+msgstr "رنگ +/-"
+
+msgid "Color Metric"
+msgstr "معیار رنگ"
+
+msgid "Color Scheme"
+msgstr "طرح رنگ"
+
+msgid "Color Steps"
+msgstr "مراحل رنگی"
+
+msgid "Color bounds"
+msgstr "محدوده‌های رنگی"
+
+msgid "Color by"
+msgstr "رنگ بر اساس"
+
+msgid "Color metric"
+msgstr "معیار رنگ"
+
+msgid "Color of the target location"
+msgstr "رنگ مکان هدف"
+
+msgid "Color scheme"
+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 ""
+"رنگ بر اساس ارزش نرمال‌شده (۰٪ تا ۱۰۰٪) یک سلول خاص نسبت به دیگر سلول‌ها "
+"در محدوده انتخاب‌شده سایه‌دار خواهد شد:"
+
+msgid "Color: "
+msgstr "رنگ:"
+
+msgid "Colors"
+msgstr "رنگ‌ها"
+
+msgid "Column"
+msgstr "ستون"
+
+#, python-format
+msgid ""
+"Column \"%(column)s\" is not numeric or does not exists in the query "
+"results."
+msgstr "ستون \"%(column)s\" عددی نیست یا در نتایج کوئری وجود ندارد."
+
+msgid "Column Configuration"
+msgstr "پیکربندی ستون"
+
+msgid "Column Formatting"
+msgstr "فرمت‌بندی ستون"
+
+#, fuzzy
+msgid "Column Settings"
+msgstr "تنظیمات چندضلعی"
+
+msgid ""
+"Column containing ISO 3166-2 codes of region/province/department in your "
+"table."
+msgstr "ستون حاوی کدهای ISO ۳۱۶۶-۲ منطقه/استان/بخش در جدول شما."
+
+msgid "Column containing latitude data"
+msgstr "ستون حاوی داده‌های عرض جغرافیایی"
+
+msgid "Column containing longitude data"
+msgstr "ستون حاوی داده‌های طول جغرافیایی"
+
+msgid "Column data types"
+msgstr "نوع داده‌های ستون"
+
+msgid "Column header tooltip"
+msgstr "راهنمای تیتر ستون"
+
+msgid "Column is required"
+msgstr "ستون الزامی است"
+
+msgid "Column name"
+msgstr "نام ستون"
+
+#, python-format
+msgid "Column name [%s] is duplicated"
+msgstr "نام ستون [%s] تکراری است"
+
+#, python-format
+msgid "Column referenced by aggregate is undefined: %(column)s"
+msgstr "ستون ارجاع شده توسط تجمیع نامشخص است: %(column)s"
+
+msgid "Column select"
+msgstr "انتخاب ستون"
+
+msgid ""
+"Column to use as the index of the dataframe. If None is given, Index "
+"label is used."
+msgstr ""
+"ستونی که باید به عنوان شاخص داده‌فریم استفاده شود. اگر هیچ مقداری داده "
+"نشود، برچسب شاخص استفاده می‌شود."
+
+#, fuzzy
+msgid "Column type"
+msgstr "نوع داده ستون"
+
+#, fuzzy
+msgid "Columnar upload"
+msgstr "بارگذاری ستونی"
+
+msgid "Columns"
+msgstr "ستون‌ها"
+
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "ستون (%s)"
+
+#, python-format
+msgid "Columns missing in dataset: %(invalid_columns)s"
+msgstr "ستون‌های گم‌شده در مجموعه داده: %(invalid_columns)s"
+
+#, python-format
+msgid "Columns missing in datasource: %(invalid_columns)s"
+msgstr "ستون‌های گمشده در منبع داده: %(invalid_columns)s"
+
+msgid "Columns subtotal position"
+msgstr "موقعیت زیرمجموعه ستون‌ها"
+
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "ستون‌ها را برای تجزیه به عنوان تاریخ انتخاب کنید"
+
+msgid "Columns to calculate distribution across."
+msgstr "ستون‌هایی برای محاسبه توزیع."
+
+msgid "Columns to display"
+msgstr "ستون‌هایی برای نمایش"
+
+msgid "Columns to group by"
+msgstr "ستون‌هایی برای گروه‌بندی"
+
+msgid "Columns to group by on the columns"
+msgstr "ستون‌هایی برای گروه‌بندی بر روی ستون‌ها"
+
+msgid "Columns to group by on the rows"
+msgstr "ستون‌هایی برای گروه‌بندی در ردیف‌ها"
+
+#, fuzzy
+msgid "Columns to read"
+msgstr "ستون‌ها را برای خواندن انتخاب کنید"
+
+msgid "Combine metrics"
+msgstr "ترکیب معیارها"
+
+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 ""
+"انتخاب رنگ به صورت جدا شده با ویرگول برای بازه‌ها، به عنوان مثال ۱، ۲، ۴."
+" اعداد صحیح رنگ‌ها را از طرح رنگ انتخابی نشان می‌دهند و از شماره‌گذاری ۱ "
+"شروع می‌شوند. طول باید مطابق با حدود بازه باشد."
+
+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 ""
+"مرزهای بازه جداشده با ویرگول، مثل ۲،۴،۵ برای بازه‌های ۰-۲، ۲-۴ و ۴-۵. "
+"آخرین شماره باید با مقداری که برای MAX ارائه شده مطابقت داشته باشد."
+
+msgid "Comparator option"
+msgstr "گزینه مقایسه کننده"
+
+msgid ""
+"Compare multiple time series charts (as sparklines) and related metrics "
+"quickly."
+msgstr ""
+"چارت‌های چندگانه سری زمانی را به‌سرعت مقایسه کنید (به‌صورت اسپارک‌لاین) و"
+" معیارهای مرتبط را مشاهده کنید."
+
+msgid "Compare results with other time periods."
+msgstr "نتایج را با دوره‌های زمانی دیگر مقایسه کنید."
+
+msgid "Compare the same summarized metric across multiple groups."
+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 ""
+"مقایسه نحوه تغییر یک معیار در طول زمان بین گروه‌های مختلف. هر گروه به یک "
+"ردیف نسبت داده شده و تغییرات زمانی با استفاده از طول و رنگ میله‌ها به "
+"تصویر کشیده می‌شود."
+
+msgid "Comparison"
+msgstr "مقایسه"
+
+msgid "Comparison Period Lag"
+msgstr "تاخیر دوره مقایسه"
+
+msgid "Comparison font size"
+msgstr "اندازه فونت مقایسه"
+
+msgid "Comparison suffix"
+msgstr "پسوند مقایسه"
+
+msgid "Compose multiple layers together to form complex visuals."
+msgstr "چندین لایه را با هم ترکیب کنید تا تصاویری پیچیده تشکیل دهید."
+
+msgid "Compute the contribution to the total"
+msgstr "مقدار مشارکت در مجموع را محاسبه کنید"
+
+msgid "Condition"
+msgstr "شرط"
+
+msgid "Conditional Formatting"
+msgstr "فرمت‌دهی شرطی"
+
+msgid "Conditional formatting"
+msgstr "فرمت‌بندی شرطی"
+
+msgid "Confidence interval"
+msgstr "فاصله اطمینان"
+
+msgid "Confidence interval must be between 0 and 1 (exclusive)"
+msgstr "فاصله اطمینان باید بین ۰ و ۱ (به‌جز این دو عدد) باشد."
+
+msgid "Configuration"
+msgstr "پیکربندی"
+
+msgid "Configure Advanced Time Range "
+msgstr "تنظیم محدوده زمانی پیشرفته"
+
+msgid "Configure Time Range: Current..."
+msgstr "تنظیم بازه زمانی: کنونی..."
+
+msgid "Configure Time Range: Last..."
+msgstr "تنظیم بازه زمانی: آخرین..."
+
+msgid "Configure Time Range: Previous..."
+msgstr "تنظیم بازه زمانی: قبلی..."
+
+msgid "Configure custom time range"
+msgstr "تنظیم بازه زمانی سفارشی"
+
+msgid "Configure filter scopes"
+msgstr "تنظیم دامنه‌های فیلتر"
+
+msgid "Configure the basics of your Annotation Layer."
+msgstr "تنظیمات ابتدایی لایه حاشیه‌نویسی خود را پیکربندی کنید."
+
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
+msgid "Configure this dashboard to embed it into an external web application."
+msgstr "این داشبورد را برای گنجاندن در یک برنامه وب خارجی پیکربندی کنید."
+
+msgid "Configure your how you overlay is displayed here."
+msgstr "تنظیمات نمایش لایه شما را در اینجا پیکربندی کنید."
+
+#, fuzzy
+msgid "Confirm Password"
+msgstr "نمایش رمز عبور."
+
+msgid "Confirm overwrite"
+msgstr "تأیید بازنویسی"
+
+msgid "Confirm save"
+msgstr "تأیید ذخیره سازی"
+
+msgid "Confirm the user's password"
+msgstr ""
+
+msgid "Connect"
+msgstr "اتصال"
+
+msgid "Connect Google Sheet"
+msgstr "اتصال به گوگل شیت"
+
+msgid "Connect Google Sheets as tables to this database"
+msgstr "جداول گوگل شیت را به این پایگاه داده متصل کنید"
+
+msgid "Connect a database"
+msgstr "یک پایگاه داده را متصل کنید"
+
+msgid "Connect database"
+msgstr "اتصال به پایگاه داده"
+
+msgid "Connect this database using the dynamic form instead"
+msgstr "این پایگاه داده را به جای آن با استفاده از فرم پویا متصل کنید."
+
+msgid "Connect this database with a SQLAlchemy URI string instead"
+msgstr "به جای آن، این پایگاه داده را با یک رشته URI SQLAlchemy متصل کنید."
+
+msgid "Connection"
+msgstr "اتصال"
+
+msgid "Connection failed, please check your connection settings"
+msgstr "اتصال ناموفق بود، لطفاً تنظیمات اتصال خود را بررسی کنید."
+
+msgid "Connection failed, please check your connection settings."
+msgstr "اتصال ناموفق بود، لطفاً تنظیمات اتصال خود را بررسی کنید."
+
+msgid "Content format"
+msgstr "قالب محتوا"
+
+msgid "Content type"
+msgstr "نوع محتوا"
+
+msgid "Continue"
+msgstr "ادامه دهید"
+
+msgid "Continuous"
+msgstr "پیوسته"
+
+msgid "Contours"
+msgstr "کانتور ها"
+
+msgid "Contribution"
+msgstr "مشارکت"
+
+msgid "Contribution Mode"
+msgstr "حالت مشارکت"
+
+msgid "Control"
+msgstr "کنترل"
+
+msgid "Control labeled "
+msgstr "کنترل برچسب‌گذاری شده"
+
+msgid "Controls labeled "
+msgstr "کنترل‌های دارای برچسب"
+
+msgid "Copied to clipboard!"
+msgstr "کپی شده به کلیپ‌بورد!"
+
+msgid "Copy"
+msgstr "کپی"
+
+msgid "Copy SELECT statement"
+msgstr ""
+
+msgid "Copy SELECT statement to the clipboard"
+msgstr "عبارت SELECT را در کلیپ بورد کپی کنید"
+
+msgid "Copy URL"
+msgstr ""
+
+msgid "Copy and Paste JSON credentials"
+msgstr "کپی و جای‌گذاری اعتبارنامه‌های JSON"
+
+msgid "Copy link"
+msgstr "کپی لینک"
+
+#, python-format
+msgid "Copy of %s"
+msgstr "کپی از %s"
+
+msgid "Copy partition query to clipboard"
+msgstr "کپی کوئری پارتیشن به کلیپ بورد"
+
+msgid "Copy permalink to clipboard"
+msgstr "لینک دائمی را به کلیپ بورد کپی کنید"
+
+msgid "Copy query URL"
+msgstr "کپی کردن نشانی درخواست"
+
+msgid "Copy query link to your clipboard"
+msgstr "لینک کوئری را به کلیپ بورد خود کپی کنید"
+
+msgid "Copy the current data"
+msgstr ""
+
+msgid "Copy the identifier of the account you are trying to connect to."
+msgstr "شناسه حسابی که سعی در اتصال به آن دارید را کپی کنید."
+
+msgid "Copy the name of the HTTP Path of your cluster."
+msgstr "نام مسیر HTTP کلاستر خود را کپی کنید."
+
+msgid "Copy the name of the database you are trying to connect to."
+msgstr "نام پایگاه داده‌ای که در حال تلاش برای اتصال به آن هستید را کپی کنید."
+
+msgid "Copy to Clipboard"
+msgstr "کپی به کلیپ بورد"
+
+msgid "Copy to clipboard"
+msgstr "کپی به کلیپ بورد"
+
+#, fuzzy
+msgid "Corner Radius"
+msgstr "شعاع داخلی"
+
+msgid "Correlation"
+msgstr "همبستگی"
+
+msgid "Cost estimate"
+msgstr "برآورد هزینه"
+
+#, python-format
+msgid "Could not connect to database: \"%(database)s\""
+msgstr "نمی‌توان به پایگاه داده متصل شد: \"%(database)s\""
+
+msgid "Could not determine datasource type"
+msgstr "نمی‌توان نوع منبع داده را تعیین کرد"
+
+msgid "Could not fetch all saved charts"
+msgstr "نتوانستیم همه نمودارهای ذخیره شده را بارگذاری کنیم"
+
+msgid "Could not find viz object"
+msgstr "توانایی پیدا کردن شیء نمایشی وجود ندارد"
+
+msgid "Could not load database driver"
+msgstr "نمی‌توان درایور پایگاه داده را بارگذاری کرد"
+
+msgid "Could not load database driver: {}"
+msgstr "نمی‌توان درایور پایگاه داده را بارگذاری کرد: {}"
+
+#, python-format
+msgid "Could not resolve hostname: \"%(host)s\"."
+msgstr "نتوانستم نام میزبان را شناسایی کنم: \"%(host)s\"."
+
+msgid "Could not validate the user in the current session."
+msgstr ""
+
+msgid "Count"
+msgstr "شمارش"
+
+msgid "Count Unique Values"
+msgstr "شمارش مقادیر منحصر به فرد"
+
+msgid "Count as Fraction of Columns"
+msgstr "تعداد به عنوان کسر از ستون‌ها"
+
+msgid "Count as Fraction of Rows"
+msgstr "شمارش به عنوان کسر ردیف‌ها"
+
+msgid "Count as Fraction of Total"
+msgstr "شمارش به عنوان کسر از کل"
+
+msgid "Country"
+msgstr "کشور"
+
+msgid "Country Color Scheme"
+msgstr "طرح رنگ کشور"
+
+msgid "Country Column"
+msgstr "ستون کشور"
+
+msgid "Country Field Type"
+msgstr "نوع فیلد کشور"
+
+msgid "Country Map"
+msgstr "نقشه کشور"
+
+msgid "Create"
+msgstr "ایجاد کنید"
+
+msgid "Create Chart"
+msgstr "چارت ایجاد کن"
+
+msgid "Create a dataset"
+msgstr "یک مجموعه داده ایجاد کنید"
+
+msgid ""
+"Create a dataset to begin visualizing your data as a chart or go to\n"
+"          SQL Lab to query your data."
+msgstr ""
+"یک مجموعه داده ایجاد کنید تا داده‌های خود را به عنوان نمودار تجسم کنید یا"
+" به SQL Lab بروید تا داده‌های خود را جستجو کنید."
+
+msgid "Create a new chart"
+msgstr "نمودار جدیدی ایجاد کنید"
+
+msgid "Create chart"
+msgstr "نمودار بسازید"
+
+msgid "Create chart with dataset"
+msgstr "نمودار را با مجموعه داده ایجاد کنید"
+
+msgid "Create dataframe index"
+msgstr "ایجاد ایندکس داده‌فریم"
+
+msgid "Create dataset"
+msgstr "ایجاد مجموعه داده"
+
+msgid "Create dataset and create chart"
+msgstr "ایجاد مجموعه داده و ایجاد نمودار"
+
+msgid "Create new chart"
+msgstr "چارت جدید ایجاد کنید"
+
+msgid "Create or select schema..."
+msgstr "یک اسکیمای جدید بسازید یا انتخاب کنید..."
+
+msgid "Created"
+msgstr "ایجاد شده"
+
+msgid "Created by"
+msgstr "ایجاد شده توسط"
+
+msgid "Created by me"
+msgstr "ساخته شده توسط من"
+
+msgid "Created on"
+msgstr "ایجاد شده در"
+
+msgid "Creating SSH Tunnel failed for an unknown reason"
+msgstr "ایجاد تونل SSH به دلایل نامشخص ناموفق بود"
+
+msgid "Creating a data source and creating a new tab"
+msgstr "ایجاد یک منبع داده و ایجاد یک تب جدید"
+
+msgid "Creator"
+msgstr "سازنده"
+
+msgid "Credentials uploaded"
+msgstr ""
+
+msgid "Crimson"
+msgstr "قرمز پررنگ"
+
+msgid "Cross-filter will be applied to all of the charts that use this dataset."
+msgstr ""
+"فیلتر متقابل بر تمامی نمودارهایی که از این مجموعه داده استفاده می‌کنند، "
+"اعمال خواهد شد."
+
+msgid "Cross-filtering is not enabled for this dashboard."
+msgstr "فیلترگذاری متقاطع برای این داشبورد فعال نیست."
+
+msgid "Cross-filtering is not enabled in this dashboard"
+msgstr "فیلتر کردن متقاطع در این داشبورد فعال نیست"
+
+msgid "Cross-filtering scoping"
+msgstr "محدوده فیلترگذاری متقابل"
+
+msgid "Cross-filters"
+msgstr "فیلترهای متقابل"
+
+msgid "Cumulative"
+msgstr "تجمعی"
+
+msgid "Currency"
+msgstr "ارز"
+
+msgid "Currency format"
+msgstr "قالب ارز"
+
+msgid "Currency prefix or suffix"
+msgstr "پیشوند یا پسوند ارز"
+
+msgid "Currency symbol"
+msgstr "نماد ارز"
+
+msgid "Current"
+msgstr "جاری"
+
+msgid "Current day"
+msgstr "روز جاری"
+
+msgid "Current month"
+msgstr "ماه جاری"
+
+msgid "Current quarter"
+msgstr "سه ماهه جاری"
+
+msgid "Current week"
+msgstr "هفتهٔ جاری"
+
+msgid "Current year"
+msgstr "سال جاری"
+
+#, python-format
+msgid "Currently rendered: %s"
+msgstr "در حال حاضر رندر شده: %s"
+
+msgid "Custom"
+msgstr "سفارشی"
+
+msgid "Custom Conditional Formatting"
+msgstr "قالب‌بندی شرطی سفارشی"
+
+msgid "Custom Plugin"
+msgstr "پلاگین سفارشی"
+
+msgid "Custom Plugins"
+msgstr "پلاگین‌های سفارشی"
+
+msgid "Custom SQL"
+msgstr "SQL سفارشی"
+
+msgid "Custom SQL ad-hoc metrics are not enabled for this dataset"
+msgstr "متریک‌های SQL سفارشی ad-hoc برای این مجموعه داده فعال نیستند."
+
+msgid "Custom SQL fields cannot contain sub-queries."
+msgstr "فیلدهای SQL سفارشی نمی‌توانند شامل زیرکوئریها باشند."
+
+msgid "Custom color palettes"
+msgstr "پالت‌های رنگی سفارشی"
+
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
+msgid "Custom date"
+msgstr "تاریخ سفارشی"
+
+msgid "Custom interval"
+msgstr "فاصله دلخواه"
+
+msgid "Custom time filter plugin"
+msgstr "افزونه فیلتر زمان سفارشی"
+
+msgid "Custom width of the screenshot in pixels"
+msgstr "عرض سفارشی اسکرین‌شات به پیکسل"
+
+msgid "Customize"
+msgstr "سفارشی‌سازی"
+
+msgid "Customize Metrics"
+msgstr "سفارشی‌سازی معیارها"
+
+msgid ""
+"Customize chart metrics or columns with currency symbols as prefixes or "
+"suffixes. Choose a symbol from dropdown or type your own."
+msgstr ""
+"معیارها یا ستون‌های نمودار را با نمادهای ارزی به عنوان پیشوند یا پسوند "
+"سفارشی کنید. نماد را از لیست کشویی انتخاب کنید یا خودتان وارد کنید."
+
+msgid "Customize columns"
+msgstr "ستون‌ها را سفارشی‌سازی کنید"
+
+msgid "Customize data source, filters, and layout."
+msgstr "منبع داده، فیلترها و طرح را سفارشی کنید."
+
+msgid "Cyclic dependency detected"
+msgstr "وابستگی دایره‌ای شناسایی شد"
+
+msgid "D3 format"
+msgstr "فرمت D3"
+
+msgid "D3 format syntax: https://github.com/d3/d3-format"
+msgstr "نحوۀ فرمت D3: https://github.com/d3/d3-format"
+
+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 برای اعداد بین -۱.۰ و ۱.۰، که زمانی مفید است که می‌خواهید "
+"برای اعداد کوچک و بزرگ ارقام معنادار متفاوتی داشته باشید."
+
+msgid "D3 time format for datetime columns"
+msgstr "فرمت زمان D3 برای ستون‌های تاریخ و زمان"
+
+msgid "D3 time format syntax: https://github.com/d3/d3-time-format"
+msgstr "سینتکس فرمت زمان D3: https://github.com/d3/d3-time-format"
+
+msgid "DATETIME"
+msgstr "تاریخ و زمان"
+
+#, python-format
+msgid "DB column %(col_name)s has unknown type: %(value_type)s"
+msgstr "ستون پایگاه داده %(col_name)s نوع ناشناخته دارد: %(value_type)s"
+
+msgid "DD/MM format dates, international and European format"
+msgstr "تاریخ‌ها به فرمت DD/MM، فرمت بین‌المللی و اروپایی"
+
+msgid "DEC"
+msgstr "دسامبر"
+
+msgid "DELETE"
+msgstr "حذف"
+
+msgid "DML"
+msgstr "دی‌ام‌ال"
+
+msgid "Daily seasonality"
+msgstr "فصل‌زدگی روزانه"
+
+msgid "Dark"
+msgstr "تاریک"
+
+msgid "Dark Cyan"
+msgstr "سایان تیره"
+
+msgid "Dark mode"
+msgstr "حالت تاریک"
+
+msgid "Dashboard"
+msgstr "داشبورد"
+
+#, python-format
+msgid "Dashboard [%s] just got created and chart [%s] was added to it"
+msgstr "داشبورد [%s] به تازگی ایجاد شد و نمودار [%s] به آن اضافه گردید."
+
+msgid "Dashboard [{}] just got created and chart [{}] was added to it"
+msgstr "داشبورد [{}] تازه ایجاد شد و نمودار [{}] به آن اضافه شد"
+
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "داشبورد قابل به‌روزرسانی نیست."
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "داشبورد قابل به‌روزرسانی نیست."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "داشبورد قابل به‌روزرسانی نیست."
+
+msgid "Dashboard could not be deleted."
+msgstr "داشبورد نمی‌تواند حذف شود."
+
+msgid "Dashboard could not be updated."
+msgstr "داشبورد قابل به‌روزرسانی نیست."
+
+msgid "Dashboard does not exist"
+msgstr "داشبورد وجود ندارد"
+
+msgid "Dashboard imported"
+msgstr "داشبورد وارد شد"
+
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "داشبورد قابل به‌روزرسانی نیست."
+
+msgid "Dashboard parameters are invalid."
+msgstr "پارامترهای داشبورد نامعتبر هستند."
+
+msgid "Dashboard properties"
+msgstr "خصوصیات داشبورد"
+
+msgid "Dashboard properties updated"
+msgstr "ویژگی‌های داشبورد به‌روز شد."
+
+msgid "Dashboard scheme"
+msgstr "طرح داشبورد"
+
+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 ""
+"فیلترهای بازه زمانی داشبورد بر روی ستون‌های زمانی تعریف شده در بخش فیلتر "
+"هر نمودار اعمال می‌شوند. ستون‌های زمانی را به فیلترهای نمودار اضافه کنید "
+"تا این فیلتر داشبورد بر روی آن نمودارها تأثیر بگذارد."
+
+msgid "Dashboard title"
+msgstr "عنوان داشبورد"
+
+msgid "Dashboard usage"
+msgstr "استفاده از داشبورد"
+
+msgid "Dashboards"
+msgstr "داشبوردها"
+
+msgid "Dashboards could not be created."
+msgstr "صفحه‌نمایش‌ها نمی‌توانستند ایجاد شوند."
+
+msgid "Dashboards do not exist"
+msgstr "داشبوردها وجود ندارند"
+
+msgid "Dashed"
+msgstr "خط چین"
+
+msgid "Data"
+msgstr "داده"
+
+msgid "Data Table"
+msgstr "جدول داده"
+
+msgid "Data URI is not allowed."
+msgstr "استفاده از URI داده مجاز نیست."
+
+msgid "Data Zoom"
+msgstr "زوم داده"
+
+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 ""
+"داده‌ها نتوانستند از backend نتایج بی‌ساز شوند. فرمت ذخیره‌سازی ممکن است "
+"تغییر کرده باشد و داده‌های قدیمی غیرقابل استفاده شده‌اند. شما باید دوباره"
+" کوئریی اصلی را اجرا کنید."
+
+msgid ""
+"Data could not be retrieved from the results backend. You need to re-run "
+"the original query."
+msgstr ""
+"دیتا نمی‌تواند از پایگاه داده نتایج بازیابی شود. شما باید کوئری اصلی را "
+"دوباره اجرا کنید."
+
+#, python-format
+msgid "Data for %s"
+msgstr "داده‌ها برای %s"
+
+#, fuzzy
+msgid "Data imported"
+msgstr "داده‌ها وارد شدند"
+
+msgid "Data preview"
+msgstr "پیش‌نمایش داده‌ها"
+
+msgid "Data refreshed"
+msgstr "داده‌ها به‌روز شد"
+
+msgid "Data type"
+msgstr "نوع داده"
+
+msgid "DataFrame include at least one series"
+msgstr "DataFrame شامل حداقل یک سری است."
+
+msgid "DataFrame must include temporal column"
+msgstr "فریم داده‌ها باید شامل ستون زمانی باشد"
+
+msgid "Database"
+msgstr "پایگاه داده"
+
+msgid "Database Connections"
+msgstr "اتصالات پایگاه داده"
+
+msgid "Database Creation Error"
+msgstr "خطای ایجاد پایگاه داده"
+
+msgid "Database connected"
+msgstr "پایگاه داده متصل شد"
+
+msgid "Database could not be created."
+msgstr "پایگاه داده ایجاد نشد."
+
+msgid "Database could not be deleted."
+msgstr "امکان حذف پایگاه داده وجود ندارد."
+
+msgid "Database could not be updated."
+msgstr "پایگاه داده نمی‌تواند به‌روزرسانی شود."
+
+msgid "Database does not allow data manipulation."
+msgstr "پایگاه داده اجازه دستکاری داده‌ها را نمی‌دهد."
+
+msgid "Database does not exist"
+msgstr "پایگاه داده وجود ندارد"
+
+msgid "Database does not support subqueries"
+msgstr "پایگاه‌داده از زیرکوئریها پشتیبانی نمی‌کند."
+
+msgid ""
+"Database driver for importing maybe not installed. Visit the Superset "
+"documentation page for installation instructions: "
+msgstr ""
+"درایور پایگاه داده برای وارد کردن ممکن است نصب نشده باشد. برای "
+"دستورالعمل‌های نصب به صفحه مستندات Superset مراجعه کنید:"
+
+msgid "Database error"
+msgstr "خطای پایگاه داده"
+
+msgid "Database is offline."
+msgstr "پایگاه داده آفلاین است."
+
+msgid "Database is required for alerts"
+msgstr "داده‌بان برای هشدارها الزامی است"
+
+msgid "Database name"
+msgstr "نام پایگاه داده"
+
+msgid "Database not allowed to change"
+msgstr "تغییر پایگاه داده مجاز نیست"
+
+msgid "Database not found."
+msgstr "پایگاه داده یافت نشد."
+
+msgid "Database parameters are invalid."
+msgstr "پارامترهای پایگاه داده نامعتبر هستند."
+
+msgid "Database passwords"
+msgstr "پسوردهای پایگاه داده"
+
+msgid "Database port"
+msgstr "پورت پایگاه داده"
+
+msgid "Database schema is not allowed for csv uploads."
+msgstr "بارگذاری فایل‌های CSV مجاز به استفاده از اسکیمای پایگاه داده نیست."
+
+msgid "Database settings updated"
+msgstr "تنظیمات پایگاه داده به‌روزرسانی شدند"
+
+msgid "Database type does not support file uploads."
+msgstr "نوع پایگاه داده از بارگذاری فایل پشتیبانی نمی‌کند."
+
+msgid "Database upload file failed"
+msgstr "بارگذاری فایل پایگاه داده ناموفق بود"
+
+msgid "Database upload file failed, while saving metadata"
+msgstr "بارگذاری فایل پایگاه داده ناموفق بود، در حین ذخیره‌سازی متاداده"
+
+msgid "Databases"
+msgstr "پایگاه‌های داده"
+
+msgid "Dataset"
+msgstr "مجموعه داده"
+
+#, python-format
+msgid "Dataset %(table)s already exists"
+msgstr "مجموعه داده %(table)s قبلاً وجود دارد"
+
+msgid "Dataset Name"
+msgstr "نام مجموعه داده"
+
+msgid "Dataset column delete failed."
+msgstr "حذف ستون مجموعه داده ناموفق بود."
+
+msgid "Dataset column not found."
+msgstr "ستون مجموعه‌داده پیدا نشد."
+
+msgid "Dataset could not be created."
+msgstr "گزارش نمی‌تواند ایجاد شود."
+
+msgid "Dataset could not be duplicated."
+msgstr "مجموعه داده نمی‌تواند تکرار شود."
+
+msgid "Dataset could not be updated."
+msgstr "مجموعه داده نتوانست به‌روزرسانی شود."
+
+msgid "Dataset does not exist"
+msgstr "دیتاست وجود ندارد"
+
+msgid "Dataset imported"
+msgstr "داده‌نما وارد شد"
+
+msgid "Dataset is required"
+msgstr "داده­‌نما لازم است"
+
+msgid "Dataset metric delete failed."
+msgstr "حذف معیار مجموعه داده با شکست مواجه شد."
+
+msgid "Dataset metric not found."
+msgstr "متریک داده‌ست نایافت شد."
+
+msgid "Dataset name"
+msgstr "نام مجموعه داده"
+
+msgid "Dataset parameters are invalid."
+msgstr "پارامترهای مجموعه داده نامعتبر هستند."
+
+#, python-format
+msgid "Dataset schema is invalid, caused by: %(error)s"
+msgstr "طرح داده نادرست است، به دلیل: %(error)s"
+
+msgid "Datasets"
+msgstr "مجموعه‌های داده"
+
+msgid ""
+"Datasets can be created from database tables or SQL queries. Select a "
+"database table to the left or "
+msgstr ""
+"دیتاست‌ها می‌توانند از جداول پایگاه داده یا کوئری‌های SQL ایجاد شوند. یک "
+"جدول پایگاه داده را در سمت چپ انتخاب کنید یا"
+
+msgid "Datasets could not be deleted."
+msgstr "امکان حذف مجموعه‌های داده وجود ندارد."
+
+msgid "Datasets do not contain a temporal column"
+msgstr "مجموعه داده‌ها شامل یک ستون زمانی نمی‌باشند."
+
+msgid "Datasource"
+msgstr "منبع داده"
+
+msgid "Datasource & Chart Type"
+msgstr "منبع داده و نوع نمودار"
+
+msgid "Datasource does not exist"
+msgstr "منبع داده وجود ندارد"
+
+msgid "Datasource type is invalid"
+msgstr "نوع منبع داده نامعتبر است"
+
+msgid "Datasource type is required when datasource_id is given"
+msgstr "نوع منبع داده زمانی که شناسه منبع داده ارائه می‌شود، لازم است."
+
+msgid "Date Time Format"
+msgstr "فرمت تاریخ و زمان"
+
+msgid "Date format"
+msgstr "قالب تاریخ"
+
+msgid "Date format string"
+msgstr "رشته قالب تاریخ"
+
+msgid "Date/Time"
+msgstr "تاریخ/زمان"
+
+msgid ""
+"Datetime column not provided as part table configuration and is required "
+"by this type of chart"
+msgstr ""
+"ستون تاریخ و زمان به عنوان بخشی از پیکربندی جدول ارائه نشده است و برای "
+"این نوع نمودار الزامی است."
+
+msgid "Datetime format"
+msgstr "قالب تاریخ و زمان"
+
+msgid "Day"
+msgstr "روز"
+
+msgid "Day (freq=D)"
+msgstr "روز (فرکانس=D)"
+
+#, python-format
+msgid "Days %s"
+msgstr "روزها %s"
+
+msgid "Db engine did not return all queried columns"
+msgstr "موتور پایگاه داده تمامی ستون‌های درخواست شده را باز نگرداند."
+
+msgid "Deactivate"
+msgstr "غیرفعال کردن"
+
+msgid "December"
+msgstr "دسامبر"
+
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
+msgstr "تعیین می‌کند که کدام معیار برای مرتب‌سازی محور پایه استفاده شود."
+
+#, fuzzy
+msgid "Decimal character"
+msgstr "کاراکتر اعشاری"
+
+msgid "Deck.gl - 3D Grid"
+msgstr "دک.gl - شبکه ۳ بعدی"
+
+msgid "Deck.gl - 3D HEX"
+msgstr "داک.جی ال - هگزاگون ۳بعدی"
+
+msgid "Deck.gl - Arc"
+msgstr "دک.gl - کمان"
+
+msgid "Deck.gl - Contour"
+msgstr "دک.gl - کانتور"
+
+msgid "Deck.gl - GeoJSON"
+msgstr "دک.gl - جئو‌جی‌اس‌اِن"
+
+msgid "Deck.gl - Heatmap"
+msgstr "دک.گل - نقشه حرارتی"
+
+msgid "Deck.gl - Multiple Layers"
+msgstr "Deck.gl - لایه‌های چندگانه"
+
+msgid "Deck.gl - Paths"
+msgstr "دک گلس - مسیرها"
+
+msgid "Deck.gl - Polygon"
+msgstr "دک.gl - چندضلعی"
+
+msgid "Deck.gl - Scatter plot"
+msgstr "دک.جی‌ال - نمودار پخش"
+
+msgid "Deck.gl - Screen Grid"
+msgstr "دک.gl - شبکه صفحه"
+
+msgid "Decrease"
+msgstr "کاهش دهید"
+
+msgid "Default Catalog"
+msgstr "کاتالوگ پیش‌فرض"
+
+msgid "Default Schema"
+msgstr "طرح پیش‌فرض"
+
+msgid "Default URL"
+msgstr "آدرس پیش‌فرض"
+
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
+msgstr ""
+
+msgid "Default Value"
+msgstr "مقدار پیش‌فرض"
+
+msgid "Default datetime"
+msgstr "تاریخ و زمان پیش‌فرض"
+
+msgid "Default latitude"
+msgstr "عرض جغرافیایی پیش‌فرض"
+
+msgid "Default longitude"
+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 ""
+"عرض حداقل پیش‌فرض ستون به پیکسل، عرض واقعی ممکن است هنوز بزرگتر از این "
+"باشد اگر ستون‌های دیگر به فضای زیادی نیاز نداشته باشند."
+
+msgid "Default value must be set when \"Filter has default value\" is checked"
+msgstr ""
+"زمانی که گزینه \"فیلتر دارای مقدار پیش‌فرض است\" انتخاب شده باشد، باید "
+"مقدار پیش‌فرض تنظیم شود."
+
+msgid "Default value must be set when \"Filter value is required\" is checked"
+msgstr ""
+"زمانی که \"نیاز به مقدار فیلتر\" انتخاب شده است، باید مقدار پیش‌فرض تعیین"
+" شود."
+
+msgid ""
+"Default value set automatically when \"Select first filter value by "
+"default\" is checked"
+msgstr ""
+"مقدار پیش‌فرض به‌طور خودکار تنظیم می‌شود زمانی که \"انتخاب اولین مقدار "
+"فیلتر به‌طور پیش‌فرض\" تیک زده شده باشد."
+
+msgid ""
+"Define a function that receives the input and outputs the content for a "
+"tooltip"
+msgstr ""
+"یک تابع تعریف کنید که ورودی را دریافت کرده و محتوا را برای یک راهنما "
+"(Tooltip) خروجی دهد."
+
+msgid "Define a function that returns a URL to navigate to when user clicks"
+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 ""
+"یک تابع جاوااسکریپت تعریف کنید که آرایه داده‌های استفاده شده در تجسم را "
+"دریافت کرده و انتظار می‌رود نسخه‌ای تغییریافته از آن آرایه را بازگرداند. "
+"این می‌تواند برای تغییر ویژگی‌های داده، فیلتر کردن یا غنی‌سازی آرایه "
+"استفاده شود."
+
+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 "Define delivery schedule, timezone, and frequency settings."
+msgstr "برنامه تحویل، منطقه زمانی و تنظیمات فرکانس را تعیین کنید."
+
+msgid "Define the database, SQL query, and triggering conditions for alert."
+msgstr "پایگاه داده، کوئریی SQL و شرایط فعال‌سازی هشدار را تعریف کنید."
+
+msgid ""
+"Defines a rolling window function to apply, works along with the "
+"[Periods] text box"
+msgstr ""
+"یک تابع پنجره متحرک تعریف می‌کند که باید اعمال شود، در کنار جعبه متن "
+"[دوره‌ها] کار می‌کند."
+
+msgid "Defines the grid size in pixels"
+msgstr "اندازه شبکه را به پیکسل تعیین می‌کند"
+
+msgid ""
+"Defines the grouping of entities. Each series is represented by a "
+"specific color in the chart."
+msgstr ""
+"تعریف می‌کند که گروه‌بندی موجودیت‌ها چگونه باشد. هر سری با یک رنگ خاص در "
+"نمودار نمایش داده می‌شود."
+
+msgid ""
+"Defines the grouping of entities. Each series is shown as a specific "
+"color on the chart and has a legend toggle"
+msgstr ""
+"گروه‌بندی نهادها را تعریف می‌کند. هر سری به عنوان یک رنگ خاص در نمودار "
+"نشان داده می‌شود و دارای تغییر دهنده‌ی راهنما است."
+
+msgid ""
+"Defines the size of the rolling window function, relative to the time "
+"granularity selected"
+msgstr "اندازه تابع پنجره متحرک را نسبت به دقت زمانی انتخاب شده تعیین می‌کند."
+
+msgid ""
+"Defines the value that determines the boundary between different regions "
+"or levels in the data "
+msgstr ""
+"مقداری را تعریف می‌کند که مرز بین مناطق یا سطوح مختلف در داده‌ها را تعیین"
+" می‌کند."
+
+msgid ""
+"Defines whether the step should appear at the beginning, middle or end "
+"between two data points"
+msgstr ""
+"تعیین می‌کند که آیا مرحله باید در ابتدای، میانه یا انتهای بین دو نقطه "
+"داده ظاهر شود."
+
+msgid "Delete"
+msgstr "حذف کنید"
+
+#, python-format
+msgid "Delete %s?"
+msgstr "آیا می‌خواهید %s را حذف کنید؟"
+
+msgid "Delete Annotation?"
+msgstr "حذف یادداشت؟"
+
+msgid "Delete Database?"
+msgstr "آیا می‌خواهید پایگاه داده را حذف کنید؟"
+
+msgid "Delete Dataset?"
+msgstr "آیا می‌خواهید داده‌نما را حذف کنید؟"
+
+msgid "Delete Layer?"
+msgstr "لایه را حذف کنید؟"
+
+msgid "Delete Query?"
+msgstr "حذف کوئری؟"
+
+msgid "Delete Report?"
+msgstr "آیا گزارش را حذف کنید؟"
+
+#, fuzzy
+msgid "Delete Role?"
+msgstr "آیا الگو را حذف می‌کنید؟"
+
+msgid "Delete Template?"
+msgstr "آیا الگو را حذف می‌کنید؟"
+
+#, fuzzy
+msgid "Delete User?"
+msgstr "حذف کوئری؟"
+
+msgid "Delete all Really?"
+msgstr "همه را واقعاً حذف کن؟"
+
+msgid "Delete annotation"
+msgstr "حذفی Annotate"
+
+msgid "Delete dashboard tab?"
+msgstr "آیا می‌خواهید زبانه داشبورد را حذف کنید؟"
+
+msgid "Delete database"
+msgstr "حذف پایگاه داده"
+
+msgid "Delete email report"
+msgstr "حذف گزارش ایمیل"
+
+msgid "Delete query"
+msgstr "حذف کوئری"
+
+#, fuzzy
+msgid "Delete role"
+msgstr "فایل را انتخاب کنید"
+
+msgid "Delete template"
+msgstr "قالب را حذف کنید"
+
+msgid "Delete this container and save to remove this message."
+msgstr "این کانتینر را حذف کنید و ذخیره کنید تا این پیام حذف شود."
+
+#, fuzzy
+msgid "Delete user"
+msgstr "حذف کوئری"
+
+msgid "Deleted"
+msgstr "حذف شد"
+
+#, python-format
+msgid "Deleted %(num)d annotation"
+msgid_plural "Deleted %(num)d annotations"
+msgstr[0] "حاشیه‌نویسی %(num)d حذف شد"
+msgstr[1] "حاشیه‌نویسی %(num)d حذف شدند"
+
+#, python-format
+msgid "Deleted %(num)d annotation layer"
+msgid_plural "Deleted %(num)d annotation layers"
+msgstr[0] "لایه حاشیه‌نویسی %(num)d حذف شد"
+msgstr[1] "لایه‌های حاشیه‌نویسی %(num)d حذف شدند"
+
+#, python-format
+msgid "Deleted %(num)d chart"
+msgid_plural "Deleted %(num)d charts"
+msgstr[0] "نمودار %(num)d حذف شد"
+msgstr[1] "نمودارهای %(num)d حذف شدند"
+
+#, python-format
+msgid "Deleted %(num)d css template"
+msgid_plural "Deleted %(num)d css templates"
+msgstr[0] "قالب CSS %(num)d حذف شد"
+msgstr[1] "قالب‌های CSS %(num)d حذف شدند"
+
+#, python-format
+msgid "Deleted %(num)d dashboard"
+msgid_plural "Deleted %(num)d dashboards"
+msgstr[0] "داشبورد %(num)d حذف شد"
+msgstr[1] "داشبوردهای %(num)d حذف شدند"
+
+#, python-format
+msgid "Deleted %(num)d dataset"
+msgid_plural "Deleted %(num)d datasets"
+msgstr[0] "مجموعه داده %(num)d حذف شد"
+msgstr[1] "مجموعه داده‌های %(num)d حذف شدند"
+
+#, python-format
+msgid "Deleted %(num)d report schedule"
+msgid_plural "Deleted %(num)d report schedules"
+msgstr[0] "برنامه زمان‌بندی گزارش %(num)d حذف شد"
+msgstr[1] "برنامه‌های زمان‌بندی گزارش %(num)d حذف شدند"
+
+#, python-format
+msgid "Deleted %(num)d rules"
+msgid_plural "Deleted %(num)d rules"
+msgstr[0] "قوانین %(num)d حذف شد"
+msgstr[1] "قوانین %(num)d حذف شدند"
+
+#, python-format
+msgid "Deleted %(num)d saved query"
+msgid_plural "Deleted %(num)d saved queries"
+msgstr[0] "پرس و جوی ذخیره شده %(num)d حذف شد"
+msgstr[1] "پرس و جوی ذخیره شده %(num)d حذف شدند"
+
+#, python-format
+msgid "Deleted %s"
+msgstr "%s حذف شد"
+
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "حذف شده: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "حذف شده: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "حذف شده: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "حذف شده: %s"
+
+#, python-format
+msgid "Deleted: %s"
+msgstr "حذف شده: %s"
+
+#, fuzzy
+msgid ""
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
+msgstr ""
+"حذف یک برگه باعث می‌شود تمامی محتویات داخل آن حذف شود. شما هنوز هم "
+"می‌توانید این عمل را با کمک"
+
+msgid "Delimited long & lat single column"
+msgstr "ستون تکی با مختصات طول و عرض جداسازی شده"
+
+msgid "Delimiter"
+msgstr "جداساز"
+
+msgid "Delivery method"
+msgstr "روش تحویل"
+
+msgid "Density"
+msgstr "چگالی"
+
+msgid "Dependent on"
+msgstr "وابسته به"
+
+msgid "Description"
+msgstr "توضیحات"
+
+msgid "Description (this can be seen in the list)"
+msgstr "شرح (این می‌تواند در لیست دیده شود)"
+
+msgid "Description Columns"
+msgstr "ستون‌های توضیحات"
+
+msgid "Description text that shows up below your Big Number"
+msgstr "متن توضیحی که در زیر عدد بزرگ شما نمایش داده می‌شود"
+
+msgid "Deselect all"
+msgstr "غیرفعال کردن همه"
+
+msgid "Details"
+msgstr "جزئیات"
+
+msgid "Details of the certification"
+msgstr "جزئیات مدرک تصدیق"
+
+msgid "Determines how whiskers and outliers are calculated."
+msgstr "تعیین می‌کند که چطور شاخک‌ها و داده‌های پرت محاسبه می‌شوند."
+
+msgid ""
+"Determines whether or not this dashboard is visible in the list of all "
+"dashboards"
+msgstr ""
+"تعیین می‌کند که آیا این داشبورد در لیست تمام داشبوردها قابل مشاهده است یا"
+" خیر."
+
+msgid "Diamond"
+msgstr "الماس"
+
+msgid "Did you mean:"
+msgstr "آیا منظورتان این بود:"
+
+msgid "Difference"
+msgstr "تفاوت"
+
+msgid "Dim Gray"
+msgstr "خاکستری کدر"
+
+msgid "Dimension"
+msgstr "ابعاد"
+
+msgid "Dimension to use on x-axis."
+msgstr "ابعاد مورد استفاده در محور x."
+
+msgid "Dimension to use on y-axis."
+msgstr "ابعادی که باید در محور y استفاده شود."
+
+msgid "Dimensions"
+msgstr "ابعاد"
+
+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 "Directed Force Layout"
+msgstr "چیدمان نیروی هدایت شده"
+
+msgid "Directional"
+msgstr "جهتی"
+
+msgid "Disable SQL Lab data preview queries"
+msgstr "غیرفعال کردن پیش‌نمایش داده‌های SQL Lab"
+
+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 غیرفعال "
+"کنید. این کار به منظور جلوگیری از مسائل عملکرد مرورگر هنگام استفاده از "
+"پایگاه‌داده‌هایی با جداول بسیار عریض مفید است."
+
+msgid "Disable drill to detail"
+msgstr "غیرفعال کردن جستجوی جزئیات"
+
+msgid "Disable embedding?"
+msgstr "غیرفعال کردن جاسازی؟"
+
+msgid "Disabled"
+msgstr "غیرفعال"
+
+msgid "Disables the drill to detail feature for this database."
+msgstr "این ویژگی جستجوی جزئیات برای این پایگاه داده غیرفعال می‌شود."
+
+msgid "Discard"
+msgstr "رد کنید"
+
+msgid "Display Name"
+msgstr "نام نمایشی"
+
+msgid "Display all"
+msgstr "نمایش همه"
+
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "نمایش مجموع سطح ستون"
+
+msgid "Display column level subtotal"
+msgstr "نمایش مجموع جزئی در سطح ستون"
+
+msgid "Display column level total"
+msgstr "نمایش مجموع سطح ستون"
+
+#, fuzzy
+msgid "Display column name"
+msgstr "نمایش مجموع سطح ستون"
+
+msgid "Display configuration"
+msgstr "تنظیمات نمایش"
+
+msgid ""
+"Display metrics side by side within each column, as opposed to each "
+"column being displayed side by side for each metric."
+msgstr ""
+"متریک‌ها را در هر ستون به صورت کنار هم نمایش دهید، به جای اینکه هر ستون "
+"به صورت کنار هم برای هر متریک نمایش داده شود."
+
+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 ""
+"در برچسب و نکته راهنما، درصدها را به عنوان درصدی از کل ارزش، از اولین "
+"مرحله قیف، یا از مرحله قبلی در قیف نمایش دهید."
+
+msgid "Display row level subtotal"
+msgstr "نمایش subtotal در سطح ردیف"
+
+msgid "Display row level total"
+msgstr "نمایش مجموع سطح ردیف"
+
+#, fuzzy
+msgid "Display type icon"
+msgstr "آیکون نوع بولیانی"
+
+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 "Distribute across"
+msgstr "توزیع در میان"
+
+msgid "Distribution"
+msgstr "توزیع"
+
+msgid "Divider"
+msgstr "تقسیم‌کننده"
+
+msgid "Do you want a donut or a pie?"
+msgstr "آیا شما دونات می‌خواهید یا پای؟"
+
+msgid "Documentation"
+msgstr "مستندات"
+
+msgid "Domain"
+msgstr "دامنه"
+
+msgid "Donut"
+msgstr "دونات"
+
+msgid "Dotted"
+msgstr "نقطه‌دار"
+
+msgid "Download"
+msgstr "دانلود"
+
+msgid "Download as Image"
+msgstr "دانلود به عنوان تصویر"
+
+msgid "Download as image"
+msgstr "به‌عنوان تصویر دانلود کنید"
+
+msgid "Download is on the way"
+msgstr ""
+
+msgid "Download to CSV"
+msgstr "دانلود به CSV"
+
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
+msgid "Draft"
+msgstr "پیش‌نویس"
+
+msgid "Drag and drop components and charts to the dashboard"
+msgstr "اجزاء و نمودارها را به داشبورد بکشید و رها کنید"
+
+msgid "Drag and drop components to this tab"
+msgstr "اجزا را به این زبانه بکشید و رها کنید"
+
+msgid "Draw a marker on data points. Only applicable for line types."
+msgstr "نشان‌گذاری بر روی نقاط داده. فقط برای انواع خطی قابل‌اجرا است."
+
+msgid "Draw area under curves. Only applicable for line types."
+msgstr "مساحت زیر منحنی‌ها را رسم کنید. فقط برای انواع خطی قابل اعمال است."
+
+msgid "Draw line from Pie to label when labels outside?"
+msgstr "خطی از دایره‌ی دایره‌ای به برچسب بکشید وقتی که برچسب‌ها در خارج هستند؟"
+
+msgid "Draw split lines for minor axis ticks"
+msgstr "خطوط تقسیم را برای نشانه‌های محور فرعی بکشید"
+
+msgid "Draw split lines for minor y-axis ticks"
+msgstr "خطوط تقسیم برای تیک‌های محور y کوچک رسم کنید"
+
+msgid "Drill by"
+msgstr "حفر بر اساس"
+
+msgid "Drill by is not available for this data point"
+msgstr "گذرش به این نقطه داده در دسترس نیست"
+
+msgid "Drill by is not yet supported for this chart type"
+msgstr "عملیات Drill by برای این نوع نمودار هنوز پشتیبانی نمی‌شود."
+
+#, python-format
+msgid "Drill by: %s"
+msgstr "بررسی با: %s"
+
+msgid "Drill to detail"
+msgstr "عمق‌کاوی به جزئیات"
+
+msgid "Drill to detail by"
+msgstr "جزئیات را با غور کردن بررسی کنید"
+
+msgid "Drill to detail by value is not yet supported for this chart type."
+msgstr ""
+"اکنون این نوع نمودار از قابلیت جستجو به جزئیات بر اساس ارزش پشتیبانی "
+"نمی‌کند."
+
+msgid ""
+"Drill to detail is disabled because this chart does not group data by "
+"dimension value."
+msgstr ""
+"عمق به جزئیات غیرفعال است زیرا این نمودار داده‌ها را بر اساس مقدار بعد "
+"گروه‌بندی نمی‌کند."
+
+msgid ""
+"Drill to detail is disabled for this database. Change the database "
+"settings to enable it."
+msgstr ""
+"ویژگی جزئیات حفاری برای این پایگاه داده غیرفعال است. تنظیمات پایگاه داده "
+"را تغییر دهید تا آن را فعال کنید."
+
+#, python-format
+msgid "Drill to detail: %s"
+msgstr "عمق به جزئیات: %s"
+
+msgid "Drop a column here or click"
+msgid_plural "Drop columns here or click"
+msgstr[0] "یک ستون را اینجا رها کنید یا کلیک کنید"
+msgstr[1] "ستون‌ها را اینجا رها کنید یا کلیک کنید"
+
+msgid "Drop a column/metric here or click"
+msgid_plural "Drop columns/metrics here or click"
+msgstr[0] "یک ستون/معیار را اینجا رها کنید یا کلیک کنید"
+msgstr[1] "ستون‌ها/معیارها را اینجا رها کنید یا کلیک کنید"
+
+msgid "Drop a temporal column here or click"
+msgstr "یک ستون موقتی را اینجا رها کنید یا کلیک کنید"
+
+msgid "Drop columns/metrics here or click"
+msgstr "ستون‌ها/معیارها را اینجا رها کنید یا کلیک کنید"
+
+msgid "Duplicate"
+msgstr "تکراری"
+
+#, python-format
+msgid "Duplicate column name(s): %(columns)s"
+msgstr "نام ستون تکراری: %(columns)s"
+
+#, python-format
+msgid ""
+"Duplicate column/metric labels: %(labels)s. Please make sure all columns "
+"and metrics have a unique label."
+msgstr ""
+"برچسب‌های تکراری برای ستون/متریک: %(labels)s. لطفاً مطمئن شوید که تمام "
+"ستون‌ها و متریک‌ها دارای برچسب منحصر به فردی هستند."
+
+msgid "Duplicate dataset"
+msgstr "مجموعه داده تکراری"
+
+#, fuzzy
+msgid "Duplicate role"
+msgstr "تکراری"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "نام ستون تکراری: %(columns)s"
+
+msgid "Duplicate tab"
+msgstr "تب تکراری"
+
+msgid "Duration"
+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 ""
+"مدت زمان (به ثانیه) زمان برابر برای کش نمودارهای این پایگاه داده. یک زمان"
+" برابر ۰ نشان می‌دهد که کش هرگز منقضی نمی‌شود و -۱ کش را نادیده می‌گیرد. "
+"توجه داشته باشید که اگر تعریف نشده باشد، این به زمان برابر جهانی پیش‌فرض "
+"می‌شود."
+
+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 ""
+"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 ""
+"مدت زمان به میلی‌ثانیه (۱.۴۰۰۰۸ => ۱ میلی‌ثانیه ۴۰۰ میکروثانیه ۸۰ "
+"نانوثانیه)"
+
+msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
+msgstr ""
+"مدت زمان بر حسب میلی‌ثانیه (۱۰۰.۴۰۰۰۸ => ۱۰۰ میلی‌ثانیه ۴۰۰ میکروثانیه ۸۰"
+" نانوثانیه)"
+
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "مدت زمان به میلی‌ثانیه (۶۶۰۰۰ => ۱د ۶ث)"
+
+msgid "Duration in ms (66000 => 1m 6s)"
+msgstr "مدت زمان به میلی‌ثانیه (۶۶۰۰۰ => ۱د ۶ث)"
+
+msgid "Dynamic Aggregation Function"
+msgstr "تابع تجمیع پویا"
+
+msgid "Dynamically search all filter values"
+msgstr "به‌صورت پویا تمام مقادیر فیلتر را جستجو کنید"
+
+msgid "ECharts"
+msgstr "ای چارتس"
+
+msgid "EMAIL_REPORTS_CTA"
+msgstr "ایمیل گزارشات"
+
+msgid "END (EXCLUSIVE)"
+msgstr "پایان (غیر قابل شامل)"
+
+msgid "ERROR"
+msgstr "خطا"
+
+msgid "Edge length"
+msgstr "طول لبه"
+
+msgid "Edge length between nodes"
+msgstr "طول لبه بین گره‌ها"
+
+msgid "Edge symbols"
+msgstr "نمادهای لبه"
+
+msgid "Edge width"
+msgstr "عرض لبه"
+
+msgid "Edit"
+msgstr "ویرایش"
+
+msgid "Edit Alert"
+msgstr "ویرایش هشدار"
+
+msgid "Edit CSS"
+msgstr "ویرایش CSS"
+
+msgid "Edit CSS template properties"
+msgstr "ویرایش ویژگی‌های الگوی CSS"
+
+msgid "Edit Chart Properties"
+msgstr "ویرایش ویژگی‌های نمودار"
+
+msgid "Edit Dashboard"
+msgstr "ویرایش داشبورد"
+
+msgid "Edit Dataset "
+msgstr "ویرایش مجموعه داده"
+
+msgid "Edit Log"
+msgstr "ثبت ویرایش"
+
+msgid "Edit Plugin"
+msgstr "ویرایش افزونه"
+
+msgid "Edit Report"
+msgstr "ویرایش گزارش"
+
+#, fuzzy
+msgid "Edit Role"
+msgstr "حالت ویرایش"
+
+msgid "Edit Rule"
+msgstr "ویرایش قانون"
+
+msgid "Edit Tag"
+msgstr "ویرایش برچسب"
+
+#, fuzzy
+msgid "Edit User"
+msgstr "ویرایش کوئری"
+
+msgid "Edit annotation"
+msgstr "ویرایش یادداشت"
+
+msgid "Edit annotation layer"
+msgstr "ویرایش لایه یادداشت"
+
+msgid "Edit annotation layer properties"
+msgstr "ویژگی‌های لایه یادداشت را ویرایش کنید"
+
+msgid "Edit chart"
+msgstr "ویرایش نمودار"
+
+msgid "Edit chart properties"
+msgstr "ویژگی‌های چارت را ویرایش کنید"
+
+msgid "Edit dashboard"
+msgstr "ویرایش داشبورد"
+
+msgid "Edit database"
+msgstr "ویرایش پایگاه داده"
+
+msgid "Edit dataset"
+msgstr "ویرایش مجموعه داده"
+
+msgid "Edit email report"
+msgstr "گزارش ایمیل را ویرایش کنید"
+
+msgid "Edit formatter"
+msgstr "ویرایش فرمت کننده"
+
+msgid "Edit properties"
+msgstr "ویرایش ویژگی‌ها"
+
+msgid "Edit query"
+msgstr "ویرایش کوئری"
+
+#, fuzzy
+msgid "Edit role"
+msgstr "حالت ویرایش"
+
+msgid "Edit template"
+msgstr "ویرایش الگو"
+
+msgid "Edit template parameters"
+msgstr "ویرایش پارامترهای الگو"
+
+msgid "Edit the dashboard"
+msgstr "داشبورد را ویرایش کنید"
+
+msgid "Edit time range"
+msgstr "زمان محدوده را ویرایش کنید"
+
+#, fuzzy
+msgid "Edit user"
+msgstr "ویرایش کوئری"
+
+msgid "Edited"
+msgstr "ویرایش شده"
+
+msgid "Editing 1 filter:"
+msgstr "ویرایش ۱ فیلتر:"
+
+msgid "Either the database is spelled incorrectly or does not exist."
+msgstr "یا نام پایگاه داده به درستی نوشته نشده است یا وجود ندارد."
+
+#, python-format
+msgid "Either the username \"%(username)s\" or the password is incorrect."
+msgstr "نام کاربری \"%(username)s\" یا رمز عبور نادرست است."
+
+#, python-format
+msgid ""
+"Either the username \"%(username)s\", password, or database name "
+"\"%(database)s\" is incorrect."
+msgstr ""
+"نام کاربری \"%(username)s\"، رمز عبور یا نام پایگاه داده \"%(database)s\""
+" نادرست است."
+
+msgid "Either the username or the password is wrong."
+msgstr "نام کاربری یا رمز عبور اشتباه است."
+
+msgid "Elevation"
+msgstr "ارتفاع"
+
+#, fuzzy
+msgid "Email"
+msgstr "جزئیات"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "ارزش الزامی است"
+
+msgid "Email reports active"
+msgstr "گزارش‌های ایمیلی فعال"
+
+msgid "Email subject name (optional)"
+msgstr "موضوع ایمیل (اختیاری)"
+
+msgid "Embed"
+msgstr "گنجاندن"
+
+msgid "Embed code"
+msgstr "کد جاسازی"
+
+msgid "Embed dashboard"
+msgstr "داشبورد را درون‌ریز کنید"
+
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "داشبورد نمی‌تواند حذف شود."
+
+msgid "Embedding deactivated."
+msgstr "گنجاندن غیرفعال شده است."
+
+msgid "Emit Filter Events"
+msgstr "تولید رویدادهای فیلتر"
+
+msgid "Emphasis"
+msgstr "تأکید"
+
+msgid "Empty circle"
+msgstr "دایره خالی"
+
+msgid "Empty collection"
+msgstr "مجموعه خالی"
+
+msgid "Empty column"
+msgstr "ستون خالی"
+
+msgid "Empty query result"
+msgstr "نتیجه جستجوی خالی"
+
+msgid "Empty query?"
+msgstr "کوئری خالی؟"
+
+msgid "Empty row"
+msgstr "ردیف خالی"
+
+msgid "Enable 'Allow file uploads to database' in any database's settings"
+msgstr ""
+"گزینه 'اجازه بارگذاری فایل به پایگاه داده' را در تنظیمات هر پایگاه داده "
+"فعال کنید."
+
+msgid "Enable cross-filtering"
+msgstr "فیلترگذاری متقابل را فعال کنید"
+
+msgid "Enable data zooming controls"
+msgstr "کنترل‌های زوم داده را فعال کنید"
+
+msgid "Enable embedding"
+msgstr "فعال‌سازی جاسازی"
+
+msgid "Enable forecast"
+msgstr "پیش‌بینی را فعال کنید"
+
+msgid "Enable forecasting"
+msgstr "پیش‌بینی را فعال کنید"
+
+msgid "Enable graph roaming"
+msgstr "فعال‌سازی جست‌و‌خیز گراف"
+
+msgid "Enable node dragging"
+msgstr "اجازه تغییر مکان گره را فعال کنید"
+
+msgid "Enable query cost estimation"
+msgstr "فعال‌سازی برآورد هزینه‌ی کوئری"
+
+msgid "Enable row expansion in schemas"
+msgstr "فعال‌سازی گسترش ردیف در اسکیماها"
+
+msgid "Enable server side pagination of results (experimental feature)"
+msgstr "فعال‌سازی صفحه‌بندی سمت سرور نتایج (ویژگی آزمایشی)"
+
+msgid ""
+"Encountered invalid NULL spatial entry,"
+"                                        please consider filtering those "
+"out"
+msgstr ""
+"وارد یک ورودی فضایی NULL نامعتبر شد، لطفاً در نظر داشته باشید که آنها را "
+"فیلتر کنید."
+
+msgid "End"
+msgstr "پایان"
+
+msgid "End (Longitude, Latitude): "
+msgstr "پایان (طول جغرافیایی، عرض جغرافیایی):"
+
+msgid "End Longitude & Latitude"
+msgstr "طول جغرافیایی و عرض جغرافیایی انتهایی"
+
+msgid "End angle"
+msgstr "زاویه انتهایی"
+
+msgid "End date"
+msgstr "تاریخ پایان"
+
+msgid "End date excluded from time range"
+msgstr "تاریخ پایان از بازه زمانی مستثنی شده است"
+
+msgid "End date must be after start date"
+msgstr "تاریخ پایان باید بعد از تاریخ شروع باشد."
+
+#, python-format
+msgid "Engine \"%(engine)s\" cannot be configured through parameters."
+msgstr "موتور \"%(engine)s\" نمی‌تواند از طریق پارامترها پیکربندی شود."
+
+msgid "Engine Parameters"
+msgstr "پارامترهای موتور"
+
+msgid ""
+"Engine spec \"InvalidEngine\" does not support being configured via "
+"individual parameters."
+msgstr ""
+"مشخصات موتور \"InvalidEngine\" از پیکربندی از طریق پارامترهای مجزا "
+"پشتیبانی نمی‌کند."
+
+msgid "Enter CA_BUNDLE"
+msgstr "CA_BUNDLE را وارد کنید"
+
+msgid "Enter Primary Credentials"
+msgstr "وارد کردن اعتبارنامه‌های اصلی"
+
+msgid "Enter a name for this sheet"
+msgstr "نامی برای این صفحه وارد کنید"
+
+msgid "Enter a new title for the tab"
+msgstr "عنوان جدیدی برای زبانه وارد کنید"
+
+msgid "Enter alert name"
+msgstr "نام هشدار را وارد کنید"
+
+msgid "Enter duration in seconds"
+msgstr "مدت را به ثانیه وارد کنید"
+
+msgid "Enter fullscreen"
+msgstr "ورود به حالت تمام صفحه"
+
+msgid "Enter report name"
+msgstr "نام گزارش را وارد کنید"
+
+#, python-format
+msgid "Enter the required %(dbModelName)s credentials"
+msgstr "اطلاعات اعتبارسنجی مورد نیاز %(dbModelName)s را وارد کنید"
+
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "نام هشدار را وارد کنید"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "نام هشدار را وارد کنید"
+
+msgid "Enter the user's username"
+msgstr ""
+
+msgid "Entity"
+msgstr "موجودیت"
+
+msgid "Equal Date Sizes"
+msgstr "اندازه‌های تاریخ برابر"
+
+msgid "Equal to (=)"
+msgstr "برابر با (=)"
+
+msgid "Error"
+msgstr "خطا"
+
+msgid "Error Fetching Tagged Objects"
+msgstr "خطا در بازیابی اشیاء برچسب‌گذاری شده"
+
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "خطا در حین دریافت داده‌ها: %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "خطا در ذخیره‌سازی مجموعه داده"
+
+#, python-format
+msgid "Error in jinja expression in HAVING clause: %(msg)s"
+msgstr "خطا در عبارت جینجا در بند HAVING: %(msg)s"
+
+#, python-format
+msgid "Error in jinja expression in RLS filters: %(msg)s"
+msgstr "خطا در عبارت جینجا در فیلترهای RLS: %(msg)s"
+
+#, python-format
+msgid "Error in jinja expression in WHERE clause: %(msg)s"
+msgstr "خطا در عبارت جینجا در cláusula WHERE: %(msg)s"
+
+#, python-format
+msgid "Error in jinja expression in fetch values predicate: %(msg)s"
+msgstr "خطا در عبارت جینجا در پیش شرط بازیابی مقادیر: %(msg)s"
+
+msgid "Error loading chart datasources. Filters may not work correctly."
+msgstr "خطا در بارگذاری منابع داده چارت. فیلترها ممکن است به درستی کار نکنند."
+
+msgid "Error message"
+msgstr "پیام خطا"
+
+#, fuzzy
+msgid "Error parsing"
+msgstr "خطای تاریک"
+
+msgid "Error reading CSV file"
+msgstr "خطا در خواندن فایل CSV"
+
+msgid "Error reading Columnar file"
+msgstr "خطا در خواندن فایل ستونی"
+
+msgid "Error reading Excel file"
+msgstr "خطا در خواندن فایل اکسل"
+
+msgid "Error saving dataset"
+msgstr "خطا در ذخیره‌سازی مجموعه داده"
+
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "خطا در ذخیره‌سازی مجموعه داده"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "خطا در هنگام دریافت نمودارها"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "خطا در هنگام دریافت نمودارها"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "خطا در هنگام دریافت نمودارها"
+
+msgid "Error while fetching charts"
+msgstr "خطا در هنگام دریافت نمودارها"
+
+#, python-format
+msgid "Error while fetching data: %s"
+msgstr "خطا در حین دریافت داده‌ها: %s"
+
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "خطا در هنگام دریافت نمودارها"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "خطا در هنگام دریافت نمودارها"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "خطا در هنگام دریافت نمودارها"
+
+#, python-format
+msgid "Error while rendering virtual dataset query: %(msg)s"
+msgstr "خطا در هنگام نمایش کوئری مجموعه داده مجازی: %(msg)s"
+
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "خطا در هنگام دریافت نمودارها"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "خطا در هنگام دریافت نمودارها"
+
+#, python-format
+msgid "Error: %(error)s"
+msgstr "خطا: %(error)s"
+
+#, python-format
+msgid "Error: %(msg)s"
+msgstr "خطا: %(msg)s"
+
+msgid "Error: permalink state not found"
+msgstr "خطا: وضعیت پیوند دائمی پیدا نشد"
+
+msgid "Estimate cost"
+msgstr "برآورد هزینه"
+
+msgid "Estimate selected query cost"
+msgstr "برآورد هزینه کوئری انتخاب شده"
+
+msgid "Estimate the cost before running a query"
+msgstr "قبل از اجرای یک کوئری، هزینه را برآورد کنید."
+
+msgid "Event"
+msgstr "رویداد"
+
+msgid "Event flow"
+msgstr "جریان رویداد"
+
+msgid "Event time column"
+msgstr "ستون زمان رویداد"
+
+msgid "Every"
+msgstr "هر"
+
+msgid "Evolution"
+msgstr "تکامل"
+
+msgid "Exact"
+msgstr "دقیق"
+
+msgid "Example"
+msgstr "مثال"
+
+msgid "Examples"
+msgstr "نمونه‌ها"
+
+msgid "Excel file format cannot be determined"
+msgstr "فرمت فایل اکسل قابل شناسایی نیست"
+
+#, fuzzy
+msgid "Excel upload"
+msgstr "بارگذاری اکسل"
+
+msgid "Exclude selected values"
+msgstr "مقادیر انتخاب شده را مستثنا کنید"
+
+msgid "Excluded roles"
+msgstr "نقش‌های مستثنی شده"
+
+msgid "Executed SQL"
+msgstr "SQL اجرا شده"
+
+msgid "Executed query"
+msgstr "کوئری اجرا شده"
+
+msgid "Execution ID"
+msgstr "شناسه اجرای کد"
+
+msgid "Execution log"
+msgstr "بعضی از اطلاعات لاگ اجرای عملیات"
+
+msgid "Existing dataset"
+msgstr "دیتاست موجود"
+
+msgid "Exit fullscreen"
+msgstr "خروج از حالت تمام‌صفحه"
+
+msgid "Expand"
+msgstr "گسترش دهید"
+
+msgid "Expand all"
+msgstr "همه را گسترش دهید"
+
+msgid "Expand data panel"
+msgstr "پانل داده را گسترش دهید"
+
+msgid "Expand row"
+msgstr "گسترش ردیف"
+
+msgid "Expand table preview"
+msgstr "گسترش پیش‌نمایش جدول"
+
+msgid "Expand tool bar"
+msgstr "گسترش نوار ابزار"
+
+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 ""
+"یک فرمول با پارامتر زمان وابسته 'x' انتظار می‌رود \n"
+"که به میلی‌ثانیه از زمان اولیه اندازه‌گیری شده است. mathjs برای ارزیابی "
+"فرمول‌ها استفاده می‌شود.\n"
+"مثال: '۲x+۵'"
+
+msgid "Experimental"
+msgstr "آزمایشی"
+
+msgid "Explore"
+msgstr "کاوش کنید"
+
+#, python-format
+msgid "Explore - %(table)s"
+msgstr "کاوش - %(table)s"
+
+msgid "Explore the result set in the data exploration view"
+msgstr "مجموعه نتایج را در نمای اکتشاف داده بررسی کنید"
+
+msgid "Export"
+msgstr "خروجی"
+
+msgid "Export dashboards?"
+msgstr "داشبوردها را صادر کنید؟"
+
+msgid "Export query"
+msgstr "خروجی کوئری"
+
+msgid "Export to .CSV"
+msgstr "صادرات به .CSV"
+
+msgid "Export to .JSON"
+msgstr "صادر کردن به .JSON"
+
+msgid "Export to Excel"
+msgstr "صادرات به اکسل"
+
+msgid "Export to PDF"
+msgstr "صادرات به PDF"
+
+msgid "Export to Pivoted .CSV"
+msgstr "صادرات به .CSV محوربندی شده"
+
+msgid "Export to full .CSV"
+msgstr "خروجی به .CSV کامل"
+
+msgid "Export to full Excel"
+msgstr "صادر کردن به اکسل کامل"
+
+msgid "Export to original .CSV"
+msgstr "صادر کردن به .CSV اصلی"
+
+msgid "Export to pivoted .CSV"
+msgstr "صادرات به فایل .CSV محور شده"
+
+msgid "Expose database in SQL Lab"
+msgstr "پایگاه داده را در آزمایشگاه SQL نمایش دهید."
+
+msgid "Expose in SQL Lab"
+msgstr "در آزمایشگاه SQL نمایان کنید"
+
+#, fuzzy
+msgid "Extent"
+msgstr "اخیراً"
+
+msgid "Extra"
+msgstr "اضافی"
+
+msgid "Extra Controls"
+msgstr "کنترل‌های اضافی"
+
+msgid "Extra Parameters"
+msgstr "پارامترهای اضافی"
+
+msgid "Extra data for JS"
+msgstr "داده‌های اضافی برای JS"
+
+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\": \"این یک هشدار است.\" }`."
+
+msgid "Extra parameters for use in jinja templated queries"
+msgstr "پارامترهای اضافی برای استفاده در کوئری‌های قالب‌بندی شده با جینجا"
+
+msgid ""
+"Extra parameters that any plugins can choose to set for use in Jinja "
+"templated queries"
+msgstr ""
+"پارامترهای اضافی که هر پلاگینی می‌تواند برای استفاده در کوئری‌های "
+"قالب‌بندی شده با جینجا انتخاب کند."
+
+msgid "Extra url parameters for use in Jinja templated queries"
+msgstr "پارامترهای اضافی URL برای استفاده در کوئری‌های قالب‌بندی شده با Jinja"
+
+msgid "Extruded"
+msgstr "برآمده"
+
+msgid "FEB"
+msgstr "فوریه"
+
+#, fuzzy
+msgid "FIT DATA"
+msgstr "ویرایش مجموعه داده"
+
+msgid "FRI"
+msgstr "جمعه"
+
+msgid "Factor"
+msgstr "عامل"
+
+msgid "Factor to multiply the metric by"
+msgstr "عامل برای ضرب در واحد اندازه‌گیری"
+
+msgid "Fail login count"
+msgstr ""
+
+msgid "Failed"
+msgstr "ناموفق"
+
+msgid "Failed at retrieving results"
+msgstr "در بازیابی نتایج شکست خورد."
+
+msgid "Failed to create report"
+msgstr "ایجاد گزارش موفق نبود"
+
+#, python-format
+msgid "Failed to execute %(query)s"
+msgstr "اجرای %(query)s با شکست مواجه شد"
+
+msgid "Failed to generate chart edit URL"
+msgstr "عدم توانایی در تولید URL ویرایش نمودار"
+
+msgid "Failed to load chart data"
+msgstr "بارگذاری داده‌های نمودار شکست خورد"
+
+msgid "Failed to load chart data."
+msgstr "بارگذاری داده‌های نمودار ناموفق بود."
+
+msgid "Failed to load dimensions for drill by"
+msgstr "بارگذاری ابعاد برای حفاری با شکست مواجه شد"
+
+msgid "Failed to retrieve advanced type"
+msgstr "عدم توانایی در بازیابی نوع پیشرفته"
+
+msgid "Failed to save cross-filter scoping"
+msgstr "خطا در ذخیره‌سازی دامنه فیلتر متقاطع"
+
+msgid "Failed to start remote query on a worker."
+msgstr "شروع کوئری ریموت بر روی یک کارگر با شکست مواجه شد."
+
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "متوقف کردن کوئری با شکست مواجه شد. %s"
+
+msgid "Failed to tag items"
+msgstr "برچسب زدن به موارد با شکست مواجه شد"
+
+msgid "Failed to update report"
+msgstr "به‌روزرسانی گزارش ناموفق بود"
+
+#, python-format
+msgid "Failed to verify select options: %s"
+msgstr "تأیید گزینه‌های انتخابی ناموفق بود: %s"
+
+msgid "Favorite"
+msgstr "علاقه‌مند"
+
+msgid "Featured"
+msgstr "برگزیده"
+
+msgid "Featured color palettes"
+msgstr "پالت‌های رنگی برگزیده"
+
+msgid "February"
+msgstr "فوریه"
+
+msgid "Fetch data preview"
+msgstr "پیش‌نمایش داده‌ها را بارگذاری کنید"
+
+#, python-format
+msgid "Fetched %s"
+msgstr "دریافت شده %s"
+
+msgid "Fetching"
+msgstr "در حال دریافت"
+
+#, python-format
+msgid "Field cannot be decoded by JSON. %(json_error)s"
+msgstr "فیلد نمی‌تواند توسط JSON رمزگشایی شود. %(json_error)s"
+
+#, python-format
+msgid "Field cannot be decoded by JSON. %(msg)s"
+msgstr "فیلد نمی‌تواند توسط JSON رمزگشایی شود. %(msg)s"
+
+msgid "Field is required"
+msgstr "فیلد الزامی است"
+
+msgid "File"
+msgstr "فایل"
+
+msgid "File extension is not allowed."
+msgstr "پسوند فایل مجاز نیست."
+
+#, fuzzy
+msgid "File settings"
+msgstr "تنظیمات فایل"
+
+msgid "File upload"
+msgstr "آپلود فایل"
+
+msgid "Fill Color"
+msgstr "رنگ پرکننده"
+
+msgid "Fill all required fields to enable \"Default Value\""
+msgstr "تمام فیلدهای مورد نیاز را پر کنید تا \"مقدار پیش‌فرض\" فعال شود."
+
+msgid "Fill method"
+msgstr "روش پر کردن"
+
+msgid "Filled"
+msgstr "پر شده"
+
+msgid "Filter"
+msgstr "فیلتر"
+
+msgid "Filter Configuration"
+msgstr "پیکربندی فیلتر"
+
+msgid "Filter List"
+msgstr "لیست فیلتر شده"
+
+msgid "Filter Settings"
+msgstr "تنظیمات فیلتر"
+
+msgid "Filter Type"
+msgstr "نوع فیلتر"
+
+msgid "Filter charts"
+msgstr "فیلتر چارت‌ها"
+
+msgid "Filter has default value"
+msgstr "فیلتر دارای مقدار پیش‌فرض است"
+
+msgid "Filter menu"
+msgstr "منوی فیلتر"
+
+msgid "Filter name"
+msgstr "نام فیلتر"
+
+msgid "Filter only displays values relevant to selections made in other filters."
+msgstr ""
+"فیلتر فقط مقادیر مرتبط با انتخاب‌های انجام شده در سایر فیلترها را نمایش "
+"می‌دهد."
+
+msgid "Filter results"
+msgstr "نتایج فیلتر شده"
+
+msgid "Filter type"
+msgstr "نوع فیلتر"
+
+msgid "Filter value (case sensitive)"
+msgstr "مقدار فیلتر (حساس به حروف بزرگ و کوچک)"
+
+msgid "Filter value is required"
+msgstr "مقدار فیلتر ضروری است"
+
+msgid "Filter value list cannot be empty"
+msgstr "لیست مقادیر فیلتر نمی‌تواند خالی باشد"
+
+msgid "Filter your charts"
+msgstr "چارت‌های خود را فیلتر کنید"
+
+msgid "Filters"
+msgstr "فیلترها"
+
+msgid "Filters by columns"
+msgstr "فیلترها بر اساس ستون‌ها"
+
+msgid "Filters by metrics"
+msgstr "فیلترها بر اساس شاخص‌ها"
+
+msgid "Filters for comparison must have a value"
+msgstr "فیلترهای مقایسه باید دارای یک مقدار باشند"
+
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "مقدار `row_limit` باید بزرگتر یا برابر با ۰ باشد."
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
+#, python-format
+msgid "Filters out of scope (%d)"
+msgstr "فیلترهای خارج از محدوده (%d)"
+
+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 ""
+"فیلترهایی که کلید گروه یکسانی دارند، درون همان گروه به صورت OR اعمال "
+"می‌شوند، در حالی که گروه‌های فیلتر مختلف به صورت AND با هم ترکیب می‌شوند."
+" کلیدهای گروه تعریف‌نشده به عنوان گروه‌های منحصر به فرد در نظر گرفته "
+"می‌شوند، یعنی با هم گروه‌بندی نمی‌شوند. برای مثال، اگر یک جدول دارای سه "
+"فیلتر باشد، که دو فیلتر برای دپارتمان‌های مالی و بازاریابی (کلید گروه = "
+"'department') و یکی به منطقه اروپا (کلید گروه = 'region') اشاره دارد، بند"
+" فیلتر به صورت زیر اعمال می‌شود: (department = 'Finance' OR department = "
+"'Marketing') AND (region = 'Europe')."
+
+msgid "Find"
+msgstr "یابید"
+
+msgid "Finish"
+msgstr "پایان"
+
+msgid "First"
+msgstr "اولین"
+
+#, fuzzy
+msgid "First name"
+msgstr "نام نمودار"
+
+#, fuzzy
+msgid "First name is required"
+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 ""
+"لطفاً خط روند را به محدوده زمانی کامل مشخص شده اصلاح کنید در صورتی که "
+"نتایج فیلتر شده شامل تاریخ‌های شروع یا پایان نباشند."
+
+msgid "Fix to selected Time Range"
+msgstr "تعیین بازه زمانی انتخاب شده"
+
+msgid "Fixed"
+msgstr "رفع شد"
+
+msgid "Fixed Color"
+msgstr "رنگ ثابت"
+
+msgid "Fixed color"
+msgstr "رنگ ثابت"
+
+msgid "Fixed point radius"
+msgstr "شعاع نقطه ثابت"
+
+msgid "Flow"
+msgstr "جریان"
+
+msgid "Font size"
+msgstr "اندازه فونت"
+
+msgid "Font size for axis labels, detail value and other text elements"
+msgstr "اندازه قلم برای برچسب‌های محور، مقدار جزئیات و سایر عناصر متنی"
+
+msgid "Font size for the biggest value in the list"
+msgstr "اندازه فونت برای بزرگترین مقدار در فهرست"
+
+msgid "Font size for the smallest value in the list"
+msgstr "اندازه فونت برای کوچکترین مقدار در لیست"
+
+msgid ""
+"For Bigquery, Presto and Postgres, shows a button to compute cost before "
+"running a query."
+msgstr ""
+"برای بیگ‌کوئری، پرستو و پستگرس، دکمه‌ای برای محاسبه هزینه قبل از اجرای یک"
+" کوئری نمایش داده می‌شود."
+
+msgid ""
+"For Trino, describe full schemas of nested ROW types, expanding them with"
+" dotted paths"
+msgstr ""
+"برای Trino، توصیف الگوی کامل نوع ROW تو در تو، با استفاده از مسیرهای "
+"نقطه‌ای."
+
+msgid "For further instructions, consult the"
+msgstr "برای دستورالعمل‌های بیشتر، با مشورت کنید"
+
+msgid ""
+"For more information about objects are in context in the scope of this "
+"function, refer to the"
+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 ""
+"برای فیلترهای عادی، این‌ها نقشی هستند که این فیلتر بر آن‌ها اعمال خواهد "
+"شد. برای فیلترهای پایه، این‌ها نقشی هستند که فیلتر به آن‌ها اعمال "
+"نمی‌شود، به عنوان مثال: مدیر اگر مدیر باید تمامی داده‌ها را ببیند."
+
+msgid "Force"
+msgstr "قوّت"
+
+msgid ""
+"Force all tables and views to be created in this schema when clicking "
+"CTAS or CVAS in SQL Lab."
+msgstr ""
+"همه جداول و نماها را مجبور کنید تا در این طرح‌واره ایجاد شوند زمانی که بر"
+" روی CTAS یا CVAS در آزمایشگاه SQL کلیک می‌شود."
+
+msgid "Force categorical"
+msgstr "اجباری کردن دسته‌بندی"
+
+msgid "Force date format"
+msgstr "قالب تاریخ اجباری"
+
+msgid "Force refresh"
+msgstr "بارگذاری مجدد اجباری"
+
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "اجبار به تازه‌سازی لیست طرح‌واره‌ها"
+
+msgid "Force refresh catalog list"
+msgstr "فورس بروزرسانی لیست کاتالوگ"
+
+msgid "Force refresh schema list"
+msgstr "اجبار به تازه‌سازی لیست طرح‌واره‌ها"
+
+msgid "Force refresh table list"
+msgstr "اجبار به بروزرسانی لیست جداول"
+
+msgid "Forecast periods"
+msgstr "دوره‌های پیش‌بینی"
+
+msgid "Foreign key"
+msgstr "کلید خارجی"
+
+msgid "Forest Green"
+msgstr "سبز جنگلی"
+
+msgid "Form data not found in cache, reverting to chart metadata."
+msgstr "داده‌های فرم در کش پیدا نشد، به متادیتای چارت بازمی‌گردیم."
+
+msgid "Form data not found in cache, reverting to dataset metadata."
+msgstr "داده‌های فرم در کش یافت نشد، به متاداده‌ی مجموعه‌داده بازگشت می‌شود."
+
+msgid "Format SQL"
+msgstr "فرمت SQL"
+
+msgid ""
+"Format data labels. Use variables: {name}, {value}, {percent}. \\n "
+"represents a new line. ECharts compatibility:\n"
+"{a} (series), {b} (name), {c} (value), {d} (percentage)"
+msgstr ""
+"برچسب‌های داده را فرمت کنید. از متغیرها استفاده کنید: {name}، {value}، "
+"{percent}. \\n نشان‌دهنده یک خط جدید است. سازگاری با ECharts: {a} (سری)، "
+"{b} (نام)، {c} (مقدار)، {d} (درصد)"
+
+msgid "Formatted CSV attached in email"
+msgstr "فرمت‌شده CSV در ایمیل پیوست شده است"
+
+msgid "Formatted date"
+msgstr "تاریخ فرمت شده"
+
+msgid "Formatted value"
+msgstr "مقدار قالب بندی شده"
+
+msgid "Formatting"
+msgstr "فرمت‌بندی"
+
+msgid "Formula"
+msgstr "فرمول"
+
+msgid "Forward values"
+msgstr "مقادیر Forward"
+
+msgid "Found invalid orderby options"
+msgstr "گزینه‌های مرتب‌سازی نامعتبر پیدا شد"
+
+msgid "Fraction digits"
+msgstr "رقم‌های اعشاری"
+
+msgid "Frequency"
+msgstr "فرکانس"
+
+msgid "Friction"
+msgstr "اصطکاک"
+
+msgid "Friction between nodes"
+msgstr "فشار بین گره‌ها"
+
+msgid "Friday"
+msgstr "جمعه"
+
+msgid "From date cannot be larger than to date"
+msgstr "تاریخ از نمی‌تواند بزرگتر از تاریخ به باشد."
+
+msgid "Full name"
+msgstr "نام کامل"
+
+msgid "Funnel Chart"
+msgstr "نمودار قیف"
+
+msgid "Further customize how to display each column"
+msgstr "سفارشی‌سازی بیشتر نحوه نمایش هر ستون"
+
+msgid "Further customize how to display each metric"
+msgstr "نحوه نمایش هر معیار را بیشتر سفارشی‌سازی کنید."
+
+msgid "GROUP BY"
+msgstr "گروه‌بندی"
+
+msgid "Gauge Chart"
+msgstr "چارت مقیاس"
+
+msgid "General"
+msgstr "کلی"
+
+msgid "General information"
+msgstr "اطلاعات عمومی"
+
+msgid "Generating link, please wait.."
+msgstr "در حال ایجاد لینک، لطفاً صبر کنید.."
+
+msgid "Generic Chart"
+msgstr "چارت عمومی"
+
+msgid "Geo"
+msgstr "جغرافیا"
+
+msgid "GeoJson Column"
+msgstr "ستون GeoJson"
+
+msgid "GeoJson Settings"
+msgstr "تنظیمات GeoJson"
+
+msgid "Geohash"
+msgstr "ژئوهش"
+
+#, fuzzy
+msgid "Geometry Column"
+msgstr "ستون خالی"
+
+msgid "Get the last date by the date unit."
+msgstr "آخرین تاریخ را بر اساس واحد تاریخ بگیرید."
+
+msgid "Get the specify date for the holiday"
+msgstr "تاریخ مشخص تعطیلات را دریافت کنید."
+
+msgid "Give access to multiple catalogs in a single database connection."
+msgstr "دسترسی به چندین کاتالوگ در یک اتصال پایگاه داده را فراهم کنید."
+
+msgid "Go to the edit mode to configure the dashboard and add charts"
+msgstr "به حالت ویرایش بروید تا داشبورد را پیکربندی کرده و نمودارها را اضافه کنید."
+
+msgid "Gold"
+msgstr "طلا"
+
+msgid "Google Sheet Name and URL"
+msgstr "نام و آدرس URL برگه Google"
+
+msgid "Grace period"
+msgstr "مهلت بخشش"
+
+msgid "Graph Chart"
+msgstr "نمودار گراف"
+
+msgid "Graph layout"
+msgstr "چیدمان گراف"
+
+msgid "Gravity"
+msgstr "جاذبه"
+
+msgid "Greater or equal (>=)"
+msgstr "بزرگتر یا مساوی (≥)"
+
+msgid "Greater than (>)"
+msgstr "بزرگتر از (>)"
+
+msgid "Green for increase, red for decrease"
+msgstr "سبز برای افزایش، قرمز برای کاهش"
+
+msgid "Grid"
+msgstr "شبکه"
+
+msgid "Grid Size"
+msgstr "اندازه شبکه"
+
+msgid "Group By"
+msgstr "گروه بندی"
+
+msgid "Group By, Metrics or Percentage Metrics must have a value"
+msgstr "گروه‌بندی، معیارها یا معیارهای درصدی باید دارای یک مقدار باشند"
+
+msgid "Group Key"
+msgstr "کلید گروه"
+
+msgid "Group by"
+msgstr "گروه‌بندی بر اساس"
+
+msgid "Guest user cannot modify chart payload"
+msgstr "کاربر مهمان نمی‌تواند بارگذاری نمودار را تغییر دهد"
+
+msgid "HOUR"
+msgstr "ساعت"
+
+msgid "Handlebars"
+msgstr "هندلBars"
+
+msgid "Handlebars Template"
+msgstr "قالب هندل‌بارز"
+
+msgid "Hard value bounds applied for color coding."
+msgstr "محدودیت‌های سخت به ارزش‌ها برای کدگذاری رنگ اعمال شده است."
+
+msgid "Has created by"
+msgstr "توسط ایجاد شده است"
+
+msgid "Header"
+msgstr "سرفصل"
+
+msgid "Header row"
+msgstr "ردیف سرعنوان"
+
+msgid "Heatmap"
+msgstr "نقشه حرارتی"
+
+msgid "Height"
+msgstr "ارتفاع"
+
+msgid "Height of the sparkline"
+msgstr "ارتفاع اسپارک‌لاین"
+
+#, fuzzy
+msgid "Hide Column"
+msgstr "ستون زمان"
+
+msgid "Hide Line"
+msgstr "خط را پنهان کن"
+
+msgid "Hide chart description"
+msgstr "توضیحات نمودار را پنهان کن"
+
+msgid "Hide layer"
+msgstr "لایه را مخفی کنید"
+
+msgid "Hide password."
+msgstr "رمز عبور را پنهان کنید."
+
+msgid "Hide tool bar"
+msgstr "مخفی کردن نوار ابزار"
+
+msgid "Hides the Line for the time series"
+msgstr "خط زمانبندی را پنهان می‌کند"
+
+msgid "Hierarchy"
+msgstr "سلسله‌مراتب"
+
+msgid "Histogram"
+msgstr "هیستوگرام"
+
+msgid "Home"
+msgstr "خانه"
+
+msgid "Horizon Chart"
+msgstr "نمودار افق"
+
+msgid "Horizon Charts"
+msgstr "نمودارهای افق"
+
+msgid "Horizontal"
+msgstr "افقی"
+
+msgid "Horizontal (Top)"
+msgstr "افقی (بالا)"
+
+msgid "Horizontal alignment"
+msgstr "تراز افقی"
+
+msgid "Host"
+msgstr "میزبان"
+
+msgid "Hostname or IP address"
+msgstr "نام میزبان یا آدرس IP"
+
+msgid "Hour"
+msgstr "ساعت"
+
+#, python-format
+msgid "Hours %s"
+msgstr "ساعت‌های %s"
+
+msgid "Hours offset"
+msgstr "اختلاف ساعت"
+
+msgid "How do you want to enter service account credentials?"
+msgstr "چگونه می‌خواهید اعتبارنامه‌های حساب سرویس را وارد کنید؟"
+
+msgid "How many buckets should the data be grouped in."
+msgstr "داده‌ها باید در چند سطل گروه‌بندی شوند؟"
+
+msgid "How many periods into the future do we want to predict"
+msgstr "چند دوره به آینده می‌خواهیم پیش‌بینی کنیم؟"
+
+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 ""
+"چگونه تغییرات زمانی را نمایش دهیم: به صورت خطوط جداگانه؛ به عنوان تفاوت "
+"بین سری زمانی اصلی و هر تغییر زمانی؛ به عنوان تغییر درصدی؛ یا به عنوان "
+"نسبت بین سری‌ها و تغییرات زمانی."
+
+msgid "Huge"
+msgstr "بسیار بزرگ"
+
+msgid "ISO 3166-2 Codes"
+msgstr "کدهای ISO ۳۱۶۶-۲"
+
+msgid "ISO 8601"
+msgstr "استاندارد ISO ۸۶۰۱"
+
+msgid "Id"
+msgstr "شناسه"
+
+msgid "Id of root node of the tree."
+msgstr "شناسه گره ریشه درخت."
+
+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 Lab به عنوان کاربری که در "
+"حال حاضر وارد سیستم شده است اجرا خواهند شد و این کاربر باید اجازه اجرای "
+"آنها را داشته باشد. اگر Hive و hive.server2.enable.doAs فعال باشد، "
+"کوئریها به عنوان حساب سرویس اجرا می‌شوند، اما کاربر فعلی وارد شده است از "
+"طریق خاصیت hive.server2.proxy.user جعل هویت خواهد شد."
+
+msgid "If a metric is specified, sorting will be done based on the metric value"
+msgstr "اگر یک معیار مشخص شده باشد، مرتب‌سازی بر اساس ارزش معیار انجام خواهد شد."
+
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
+msgid ""
+"If enabled, this control sorts the results/values descending, otherwise "
+"it sorts the results ascending."
+msgstr ""
+"اگر فعال شود، این کنترل نتایج/مقادیر را به صورت نزولی مرتب می‌کند، در غیر"
+" این صورت نتایج را به صورت صعودی مرتب می‌کند."
+
+#, fuzzy
+msgid "If table already exists"
+msgstr "برچسب قبلاً وجود دارد"
+
+msgid "Ignore cache when generating report"
+msgstr "هنگام تولید گزارش، کش را نادیده بگیرید"
+
+msgid "Ignore null locations"
+msgstr "موقعیت‌های Null را نادیده بگیرید"
+
+msgid "Ignore time"
+msgstr "زمان را نادیده بگیرید."
+
+msgid "Image (PNG) embedded in email"
+msgstr "تصویر (پی‌ان‌جی) درج‌شده در ایمیل"
+
+msgid "Image download failed, please refresh and try again."
+msgstr "دانلود تصویر ناموفق بود، لطفاً صفحه را تازه‌سازی کرده و دوباره تلاش کنید."
+
+msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
+msgstr "شخصیت کاربر وارد شده را تقلید کنید (پرستو، ترینو، دریل، هایو و جی‌اسیت)"
+
+msgid "Import"
+msgstr "وارد کردن"
+
+#, python-format
+msgid "Import %s"
+msgstr "وارد کردن %s"
+
+msgid "Import Dashboard(s)"
+msgstr "وارد کردن داشبورد(ها)"
+
+msgid "Import chart failed for an unknown reason"
+msgstr "وارد کردن نمودار به دلایل نامعلوم شکست خورد"
+
+msgid "Import charts"
+msgstr "وارد کردن نمودارها"
+
+msgid "Import dashboard failed for an unknown reason"
+msgstr "وارد کردن داشبورد به دلایل نامعلوم ناموفق بود"
+
+msgid "Import dashboards"
+msgstr "داشبوردها را وارد کنید"
+
+msgid "Import database failed for an unknown reason"
+msgstr "وارد کردن پایگاه داده به دلیل یک دلیل ناشناخته ناموفق بود."
+
+msgid "Import database from file"
+msgstr "پیش‌فرض پایگاه داده از فایل وارد کنید"
+
+msgid "Import dataset failed for an unknown reason"
+msgstr "ورود مجموعه داده به دلایل نامشخصی ناموفق بود"
+
+msgid "Import datasets"
+msgstr "وارد کردن مجموعه داده‌ها"
+
+msgid "Import queries"
+msgstr "وارد کردن کوئریها"
+
+msgid "Import saved query failed for an unknown reason."
+msgstr "وارد کردن کوئری ذخیره‌شده به دلیل نامشخصی ناموفق بود."
+
+msgid "In"
+msgstr "در"
+
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
+msgid "Include Series"
+msgstr "شامل سری‌ها"
+
+msgid "Include a description that will be sent with your report"
+msgstr "توضیحی را شامل کنید که با گزارش شما ارسال خواهد شد."
+
+#, python-format
+msgid "Include description to be sent with %s"
+msgstr "توضیحاتی را که باید با %s ارسال شود، شامل کنید."
+
+msgid "Include series name as an axis"
+msgstr "نام سری را به عنوان محور شامل کنید"
+
+msgid "Include time"
+msgstr "زمان را شامل کنید"
+
+msgid "Increase"
+msgstr "افزایش"
+
+msgid "Index"
+msgstr "فهرست"
+
+#, fuzzy
+msgid "Index column"
+msgstr "ستون خطوط"
+
+msgid "Index label"
+msgstr "برچسب نمایه"
+
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "نمایش کلیدها و ایندکس‌ها (%s)"
+
+msgid "Info"
+msgstr "اطلاعات"
+
+msgid "Inherit range from time filter"
+msgstr "از فیلتر زمان بازه را به ارث ببرید"
+
+msgid "Inner Radius"
+msgstr "شعاع داخلی"
+
+msgid "Inner radius of donut hole"
+msgstr "شعاع داخلی سوراخ دونات"
+
+msgid "Input custom width in pixels"
+msgstr "عرض سفارشی را به پیکسل وارد کنید"
+
+msgid "Input field supports custom rotation. e.g. 30 for 30°"
+msgstr "فیلد ورودی از چرخش سفارشی پشتیبانی می‌کند. به عنوان مثال، ۳۰ برای ۳۰°"
+
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "لایه را مخفی کنید"
+
+msgid "Insert Layer title"
+msgstr ""
+
+msgid "Intensity"
+msgstr "شدت"
+
+msgid "Intensity Radius"
+msgstr "شعاع شدت"
+
+msgid "Intensity Radius is the radius at which the weight is distributed"
+msgstr "شعاع شدت، شعاعی است که در آن وزن توزیع می‌شود."
+
+msgid "Intensity is the value multiplied by the weight to obtain the final weight"
+msgstr "شدت مقداری است که با وزن ضرب می‌شود تا وزن نهایی به دست آید."
+
+msgid "Interval"
+msgstr "بازه"
+
+msgid "Interval End column"
+msgstr "ستون پایان بازه"
+
+msgid "Interval bounds"
+msgstr "محدوده‌های بازه"
+
+msgid "Interval colors"
+msgstr "رنگ‌های بازه‌ای"
+
+msgid "Interval start column"
+msgstr "ستون شروع بازه"
+
+msgid "Intervals"
+msgstr "فاصله‌ها"
+
+msgid ""
+"Invalid Connection String: Expecting String of the form "
+"'ocient://user:pass@host:port/database'."
+msgstr ""
+"رشته اتصال نامعتبر: انتظار می‌رود رشته‌ای به صورت 'ocient://کاربر:رمز "
+"عبور@میزبان:پورت/پایه داده‌ها' باشد."
+
+msgid "Invalid JSON"
+msgstr "JSON نادرست"
+
+#, python-format
+msgid "Invalid advanced data type: %(advanced_data_type)s"
+msgstr "نوع داده پیشرفته نامعتبر است: %(advanced_data_type)s"
+
+msgid "Invalid certificate"
+msgstr "گواهی‌نامه نامعتبر"
+
+msgid ""
+"Invalid connection string, a valid string usually follows: "
+"backend+driver://user:password@database-host/database-name"
+msgstr ""
+"رشته اتصال نامعتبر است، یک رشته معتبر معمولاً به صورت زیر است: "
+"backend+driver://user:password@database-host/database-name"
+
+msgid ""
+"Invalid connection string, a valid string usually "
+"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-"
+"NAME'<p>Example:'postgresql://user:password@your-postgres-"
+"db/database'</p>"
+msgstr ""
+"رشته اتصال نامعتبر است، یک رشته معتبر معمولاً به صورت زیر است: "
+"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'<p>مثال: "
+"'postgresql://user:password@your-postgres-db/database'</p>"
+
+msgid "Invalid cron expression"
+msgstr "عبارت کرون نامعتبر است"
+
+#, python-format
+msgid "Invalid cumulative operator: %(operator)s"
+msgstr "عملگر تجمعی نامعتبر: %(operator)s"
+
+msgid "Invalid currency code in saved metrics"
+msgstr "کد ارز نامعتبر در معیارهای ذخیره شده"
+
+msgid "Invalid date/timestamp format"
+msgstr "فرمت تاریخ/زمان نامعتبر است"
+
+msgid "Invalid executor type"
+msgstr ""
+
+#, python-format
+msgid "Invalid filter operation type: %(op)s"
+msgstr "نوع عمل فیلتر نامعتبر است: %(op)s"
+
+msgid "Invalid geodetic string"
+msgstr "رشته جغرافیایی نامعتبر است"
+
+msgid "Invalid geohash string"
+msgstr "رشته جغرافیایی نادرست است"
+
+msgid "Invalid input"
+msgstr "ورودی نامعتبر"
+
+msgid "Invalid lat/long configuration."
+msgstr "پیکربندی عرض/طول جغرافیایی نامعتبر است."
+
+msgid "Invalid longitude/latitude"
+msgstr "طول جغرافیایی/عرض جغرافیایی نامعتبر"
+
+#, python-format
+msgid "Invalid metric object: %(metric)s"
+msgstr "شیء متریک نامعتبر: %(metric)s"
+
+#, python-format
+msgid "Invalid numpy function: %(operator)s"
+msgstr "تابع نان‌پای نامعتبر: %(operator)s"
+
+#, python-format
+msgid "Invalid options for %(rolling_type)s: %(options)s"
+msgstr "گزینه‌های نامعتبر برای %(rolling_type)s: %(options)s"
+
+msgid "Invalid permalink key"
+msgstr "کلید پیوند دائمی نامعتبر است"
+
+#, python-format
+msgid "Invalid reference to column: \"%(column)s\""
+msgstr "ارجاع نامعتبر به ستون: \"%(column)s\""
+
+#, python-format
+msgid "Invalid result type: %(result_type)s"
+msgstr "نوع نتیجه نامعتبر است: %(result_type)s"
+
+#, python-format
+msgid "Invalid rolling_type: %(type)s"
+msgstr "نوع rolling_type نامعتبر است: %(type)s"
+
+#, python-format
+msgid "Invalid spatial point encountered: %(latlong)s"
+msgstr "نقطه فضایی نامعتبر شناسایی شد: %(latlong)s"
+
+msgid "Invalid state."
+msgstr "وضعیت نامعتبر."
+
+#, python-format
+msgid "Invalid tab ids: %s(tab_ids)"
+msgstr "شناسه‌های زبانه نامعتبر: %s(tab_ids)"
+
+msgid "Inverse selection"
+msgstr "انتخاب معکوس"
+
+msgid "Invert current page"
+msgstr "برعکس کردن صفحه فعلی"
+
+#, fuzzy
+msgid "Is active?"
+msgstr "هشدار فعال است"
+
+msgid "Is certified"
+msgstr "تأیید شده است"
+
+msgid "Is custom tag"
+msgstr "آیا برچسب سفارشی است"
+
+msgid "Is dimension"
+msgstr "بعدی است"
+
+msgid "Is false"
+msgstr "غلط است"
+
+msgid "Is favorite"
+msgstr "علاقه‌مندی است"
+
+msgid "Is filterable"
+msgstr "قابل فیلتر است"
+
+msgid "Is not null"
+msgstr "خالی نیست"
+
+msgid "Is null"
+msgstr "تهی است"
+
+msgid "Is tagged"
+msgstr "برچسب‌گذاری شده است"
+
+msgid "Is temporal"
+msgstr "زمانی است"
+
+msgid "Is true"
+msgstr "درست است"
+
+msgid "Isoband"
+msgstr "ایزوبند"
+
+msgid "Isoline"
+msgstr "ایزولین"
+
+msgid "Issue 1000 - The dataset is too large to query."
+msgstr "مسئله ۱۰۰۰ - مجموعه داده برای کوئری خیلی بزرگ است."
+
+msgid "Issue 1001 - The database is under an unusual load."
+msgstr "مسئله ۱۰۰۱ - پایگاه داده تحت بار غیرمعمولی قرار دارد."
+
+msgid "It’s not recommended to truncate axis in Bar chart."
+msgstr "تراشیدن محور در نمودار میله‌ای توصیه نمی‌شود."
+
+msgid "JAN"
+msgstr "ژانویه"
+
+msgid "JSON"
+msgstr "جی‌سان"
+
+msgid "JSON Metadata"
+msgstr "متاداده JSON"
+
+msgid "JSON metadata"
+msgstr "متاداده JSON"
+
+msgid "JSON metadata is invalid!"
+msgstr "متاداده JSON نامعتبر است!"
+
+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 "JUL"
+msgstr "ژوئیه"
+
+msgid "JUN"
+msgstr "ژوئن"
+
+msgid "January"
+msgstr "ژانویه"
+
+msgid "JavaScript data interceptor"
+msgstr "اینترسپتور داده‌های جاوااسکریپت"
+
+msgid "JavaScript onClick href"
+msgstr "جاوااسکریپت onClick href"
+
+msgid "JavaScript tooltip generator"
+msgstr "ژنراتور ابزارک جاوااسکریپت"
+
+msgid "Jinja templating"
+msgstr "قالب‌سازی جینجا"
+
+msgid "July"
+msgstr "جولای"
+
+msgid "June"
+msgstr "ژوئن"
+
+msgid "KPI"
+msgstr "شاخص کلیدی عملکرد (KPI)"
+
+msgid "Keep control settings?"
+msgstr "تنظیمات کنترل را حفظ کنیم؟"
+
+msgid "Keep editing"
+msgstr "ادامه ویرایش را حفظ کنید"
+
+msgid "Key"
+msgstr "کلید"
+
+msgid "Keyboard shortcuts"
+msgstr "میانبرهای صفحه کلید"
+
+msgid "Keys for table"
+msgstr "کلیدها برای جدول"
+
+msgid "Kilometers"
+msgstr "کیلومترها"
+
+msgid "LIMIT"
+msgstr "حدود"
+
+msgid "Label"
+msgstr "برچسب"
+
+msgid "Label Contents"
+msgstr "محتویات برچسب"
+
+msgid "Label Line"
+msgstr "برچسب خط"
+
+msgid "Label Template"
+msgstr "قالب برچسب"
+
+msgid "Label Type"
+msgstr "نوع برچسب"
+
+msgid "Label already exists"
+msgstr "برچسب قبلاً وجود دارد"
+
+msgid "Label for the index column. Don't use an existing column name."
+msgstr "برچسب برای ستون ایندکس. از نام یک ستون موجود استفاده نکنید."
+
+msgid "Label for your query"
+msgstr "برچسب برای کوئریی شما"
+
+msgid "Label position"
+msgstr "موقعیت برچسب"
+
+msgid "Label threshold"
+msgstr "آستانه برچسب"
+
+msgid "Labelling"
+msgstr "برچسب‌گذاری"
+
+msgid "Labels"
+msgstr "برچسب‌ها"
+
+msgid "Labels for the marker lines"
+msgstr "برچسب‌ها برای خطوط نشانگر"
+
+msgid "Labels for the markers"
+msgstr "برچسب‌ها برای نشانگرها"
+
+msgid "Labels for the ranges"
+msgstr "برچسب‌ها برای محدوده‌ها"
+
+msgid "Large"
+msgstr "بزرگ"
+
+msgid "Last"
+msgstr "آخرین"
+
+#, python-format
+msgid "Last Updated %s"
+msgstr "آخرین بروزرسانی %s"
+
+#, python-format
+msgid "Last Updated %s by %s"
+msgstr "آخرین به‌روزرسانی %s توسط %s"
+
+#, fuzzy
+msgid "Last Value"
+msgstr "مقدار هدف"
+
+#, python-format
+msgid "Last available value seen on %s"
+msgstr "آخرین مقدار موجود مشاهده شده در %s"
+
+msgid "Last day"
+msgstr "آخرین روز"
+
+#, fuzzy
+msgid "Last login"
+msgstr "ماه گذشته"
+
+msgid "Last modified"
+msgstr "آخرین بروزرسانی"
+
+msgid "Last month"
+msgstr "ماه گذشته"
+
+#, fuzzy
+msgid "Last name"
+msgstr "نام مجموعه داده"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "نام الزامی است"
+
+msgid "Last quarter"
+msgstr "سه ماهه آخر"
+
+msgid "Last run"
+msgstr "آخرین اجرا"
+
+msgid "Last week"
+msgstr "هفته گذشته"
+
+msgid "Last year"
+msgstr "سال گذشته"
+
+#, fuzzy
+msgid "Lat"
+msgstr "ساده"
+
+msgid "Latitude"
+msgstr "عرض جغرافیایی"
+
+msgid "Latitude of default viewport"
+msgstr "عرض جغرافیایی نمای پیش‌فرض"
+
+#, fuzzy
+msgid "Layer"
+msgstr "سال"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "نام هشدار"
+
+msgid "Layer URL"
+msgstr ""
+
+msgid "Layer configuration"
+msgstr "پیکربندی لایه"
+
+#, fuzzy
+msgid "Layer title"
+msgstr "عنوان نمودار"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "نوع فیلتر"
+
+#, fuzzy
+msgid "Layers"
+msgstr "هشدارها"
+
+msgid "Layout"
+msgstr "ترتیب"
+
+msgid "Layout elements"
+msgstr "اجزای طرح‌بندی"
+
+msgid "Layout type of graph"
+msgstr "نوع لایه گراف"
+
+msgid "Layout type of tree"
+msgstr "نوع چیدمان درخت"
+
+msgid "Least recently modified"
+msgstr "آخرین تغییرات کمتر شده"
+
+msgid "Left"
+msgstr "چپ"
+
+msgid "Left Margin"
+msgstr "حاشیه چپ"
+
+msgid "Left margin, in pixels, allowing for more room for axis labels"
+msgstr ""
+"حاشیه سمت چپ، به پیکسل، که اجازه می‌دهد فضا بیشتری برای برچسب‌های محور "
+"فراهم شود"
+
+msgid "Left to Right"
+msgstr "چپ به راست"
+
+msgid "Left value"
+msgstr "مقدار سمت چپ"
+
+msgid "Legacy"
+msgstr "میراث"
+
+msgid "Legend"
+msgstr "افسانه"
+
+msgid "Legend Format"
+msgstr "قالب افسانه"
+
+msgid "Legend Orientation"
+msgstr "جهت‌گیری افسانه"
+
+msgid "Legend Position"
+msgstr "موقعیت افسانه"
+
+msgid "Legend Type"
+msgstr "نوع افسانه"
+
+msgid "Legend type"
+msgstr "نوع افسانه"
+
+msgid "Less or equal (<=)"
+msgstr "کمتر یا مساوی (<=)"
+
+msgid "Less than (<)"
+msgstr "کمتراز (<)"
+
+msgid "Lift percent precision"
+msgstr "دقت درصد افزایش را بالا ببرید"
+
+msgid "Light"
+msgstr "نور"
+
+msgid "Light mode"
+msgstr "حالت روشن"
+
+msgid "Like"
+msgstr "مانند"
+
+msgid "Like (case insensitive)"
+msgstr "مانند (بی‌توجهی به حروف بزرگ و کوچک)"
+
+msgid "Limit type"
+msgstr "نوع محدودیت"
+
+msgid "Limits the number of cells that get retrieved."
+msgstr "تعداد سلول‌هایی که بازیابی می‌شوند را محدود می‌کند."
+
+msgid "Limits the number of rows that get displayed."
+msgstr "تعداد ردیف‌هایی که نمایش داده می‌شوند را محدود می‌کند."
+
+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 ""
+"تعداد سری‌هایی که نمایش داده می‌شوند را محدود می‌کند. یک زیرکوئری پیوسته "
+"(یا یک مرحله اضافی که در آن زیرکوئری‌ها پشتیبانی نمی‌شوند) برای محدود "
+"کردن تعداد سری‌هایی که به دست آمده و نمایش داده می‌شوند، اعمال می‌شود. "
+"این ویژگی زمانی که بر اساس ستون(های) با کاردیناسیون بالا گروه‌بندی "
+"می‌شود، مفید است، اگرچه پیچیدگی و هزینه کوئری را افزایش می‌دهد."
+
+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 "Line"
+msgstr "خط"
+
+msgid "Line Chart"
+msgstr "نمودار خطی"
+
+msgid "Line Style"
+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 ""
+"نمودار خطی برای تجسم اندازه‌گیری‌های انجام شده در یک دسته خاص استفاده "
+"می‌شود. نمودار خطی نوعی از نمودار است که اطلاعات را به‌صورت مجموعه‌ای از "
+"نقاط داده به‌هم‌متصل با خطوط مستقیم نمایش می‌دهد. این نوع نمودار یکی از "
+"انواع ابتدایی نمودارهاست که در بسیاری از زمینه‌ها رایج می‌باشد."
+
+msgid "Line charts on a map"
+msgstr ""
+
+msgid "Line interpolation as defined by d3.js"
+msgstr "درون‌یابی خطوط به‌طور مشخص شده توسط d3.js"
+
+msgid "Line width"
+msgstr "عرض خط"
+
+msgid "Line width unit"
+msgstr "واحد عرض خط"
+
+msgid "Linear Color Scheme"
+msgstr "طرح رنگ خطی"
+
+msgid "Linear color scheme"
+msgstr "طرح رنگ خطی"
+
+msgid "Linear interpolation"
+msgstr "درون‌یابی خطی"
+
+msgid "Lines column"
+msgstr "ستون خطوط"
+
+msgid "Lines encoding"
+msgstr "رمزگذاری خطوط"
+
+msgid "Link Copied!"
+msgstr "لینک کپی شد!"
+
+msgid "List Roles"
+msgstr ""
+
+msgid "List Unique Values"
+msgstr "لیست مقادیر منحصر به فرد"
+
+#, fuzzy
+msgid "List Users"
+msgstr "عدد را تقسیم کن"
+
+msgid "List of extra columns made available in JavaScript functions"
+msgstr "فهرست ستون‌های اضافی که در توابع جاوااسکریپت در دسترس قرار می‌گیرند"
+
+msgid "List of n+1 values for bucketing metric into n buckets."
+msgstr "لیست n+۱ مقدار برای دسته بندی معیار به n سطل."
+
+msgid "List of the column names that should be read"
+msgstr "لیست نام ستون‌هایی که باید خوانده شوند"
+
+msgid "List of values to mark with lines"
+msgstr "لیست مقادیری که باید با خط مشخص شوند"
+
+msgid "List of values to mark with triangles"
+msgstr "لیست مقادیر برای علامت‌گذاری با مثلث‌ها"
+
+msgid "List updated"
+msgstr "لیست بروزرسانی شده"
+
+msgid "Live CSS editor"
+msgstr "ویرایشگر CSS زنده"
+
+msgid "Live render"
+msgstr "رندر زنده"
+
+msgid "Load a CSS template"
+msgstr "بارگذاری یک الگوی CSS"
+
+msgid "Loaded data cached"
+msgstr "داده‌های بارگذاری‌شده در کش ذخیره شد"
+
+msgid "Loaded from cache"
+msgstr "از کش بارگذاری شد"
+
+msgid "Loading"
+msgstr "بارگذاری در حال انجام است"
+
+msgid "Loading..."
+msgstr "در حال بارگذاری..."
+
+msgid "Locate the chart"
+msgstr "نقشه را پیدا کنید"
+
+msgid "Log Scale"
+msgstr "مقیاس لگاریتمی"
+
+msgid "Log retention"
+msgstr "نگهداری لاگ‌ها"
+
+msgid "Logarithmic axis"
+msgstr "محور لگاریتمی"
+
+msgid "Logarithmic scale on primary y-axis"
+msgstr "مقياس لگاریتمی در محور عمودی اصلی"
+
+msgid "Logarithmic scale on secondary y-axis"
+msgstr "مقیاس لگاریتمی در محور y ثانویه"
+
+msgid "Logarithmic x-axis"
+msgstr "محور x لگاریتمی"
+
+msgid "Logarithmic y-axis"
+msgstr "محور y لگاریتمی"
+
+msgid "Login"
+msgstr "ورود"
+
+#, fuzzy
+msgid "Login count"
+msgstr "شمارش"
+
+msgid "Login with"
+msgstr "ورود با"
+
+msgid "Logout"
+msgstr "خروج"
+
+msgid "Logs"
+msgstr "گزارش‌ها"
+
+#, fuzzy
+msgid "Lon"
+msgstr "روی"
+
+msgid "Long dashed"
+msgstr "طولانی با خط چین"
+
+msgid "Longitude"
+msgstr "طول جغرافیایی"
+
+msgid "Longitude & Latitude"
+msgstr "طول جغرافیایی و عرض جغرافیایی"
+
+msgid "Longitude & Latitude columns"
+msgstr "ستون‌های طول جغرافیایی و عرض جغرافیایی"
+
+msgid "Longitude and Latitude"
+msgstr "طول و عرض جغرافیایی"
+
+msgid "Longitude of default viewport"
+msgstr "طول جغرافیایی نمای پیش‌فرض"
+
+msgid "Lower Threshold"
+msgstr "آستانه پایین"
+
+msgid "Lower threshold must be lower than upper threshold"
+msgstr "آستانه پایین باید کمتر از آستانه بالا باشد."
+
+msgid "MAR"
+msgstr "مار"
+
+msgid "MAY"
+msgstr "مه"
+
+msgid "MINUTE"
+msgstr "دقیقه"
+
+msgid "MON"
+msgstr "دوشنبه"
+
+msgid "Main"
+msgstr "اصلی"
+
+msgid ""
+"Make sure that the controls are configured properly and the datasource "
+"contains data for the selected time range"
+msgstr ""
+"اطمینان حاصل کنید که کنترل‌ها به درستی تنظیم شده‌اند و منبع داده شامل "
+"داده‌ها برای بازه زمانی انتخاب شده است."
+
+msgid "Make the x-axis categorical"
+msgstr "محور x را دسته‌بندی کنید."
+
+msgid ""
+"Malformed request. slice_id or table_name and db_name arguments are "
+"expected"
+msgstr ""
+"درخواست شکل نادرست است. آرگومان‌های slice_id یا table_name و db_name مورد"
+" انتظار هستند."
+
+msgid "Manage"
+msgstr "مدیریت"
+
+msgid "Manage email report"
+msgstr "مدیریت گزارش ایمیل"
+
+msgid "Manage your databases"
+msgstr "پایگاه‌های داده خود را مدیریت کنید"
+
+msgid "Mandatory"
+msgstr "اجباری"
+
+msgid "Manually set min/max values for the y-axis."
+msgstr "مقادیر حداقل/حداکثر محور y را به صورت دستی تنظیم کنید."
+
+msgid "Map"
+msgstr "نقشه"
+
+#, fuzzy
+msgid "Map Options"
+msgstr "گزینه‌های نقشه حرارتی"
+
+msgid "Map Style"
+msgstr "سبک نقشه"
+
+msgid "MapBox"
+msgstr "مپ باکس"
+
+msgid "Mapbox"
+msgstr "مپ باکس"
+
+msgid "March"
+msgstr "مارس"
+
+msgid "Margin"
+msgstr "حاشیه"
+
+msgid "Mark a column as temporal in \"Edit datasource\" modal"
+msgstr "یک ستون را به عنوان زمانی در \"ویرایش منبع داده\" مدال علامت‌گذاری کنید."
+
+msgid "Marker"
+msgstr "نشانگر"
+
+msgid "Marker Size"
+msgstr "اندازه نشانگر"
+
+msgid "Marker labels"
+msgstr "برچسب‌های نشانگر"
+
+msgid "Marker line labels"
+msgstr "برچسب‌های خط نشانگر"
+
+msgid "Marker lines"
+msgstr "خطوط نشانگر"
+
+msgid "Marker size"
+msgstr "اندازه نشانگر"
+
+msgid "Markers"
+msgstr "نشانگرها"
+
+msgid "Markup type"
+msgstr "نوع نشانه‌گذاری"
+
+msgid "Match time shift color with original series"
+msgstr ""
+
+msgid "Max"
+msgstr "حداکثر"
+
+msgid "Max Bubble Size"
+msgstr "حداکثر اندازه حباب"
+
+msgid "Max. features"
+msgstr ""
+
+msgid "Maximum"
+msgstr "حداکثر"
+
+msgid "Maximum Font Size"
+msgstr "حداکثر اندازه فونت"
+
+msgid "Maximum Radius"
+msgstr "حداکثر شعاع"
+
+msgid "Maximum number of features to fetch from service"
+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 ""
+"حداکثر اندازه شعاع دایره، به پیکسل. با تغییر سطح زوم، این تضمین می‌کند که"
+" دایره این حداکثر شعاع را رعایت کند."
+
+msgid "Maximum value"
+msgstr "بیشینه مقدار"
+
+msgid "Maximum value on the gauge axis"
+msgstr "حداکثر مقدار روی محور گیج"
+
+msgid "May"
+msgstr "مه"
+
+msgid "Mean of values over specified period"
+msgstr "میانگین مقادیر در دوره مشخص شده"
+
+msgid "Mean values"
+msgstr "مقادیر میانگین"
+
+msgid "Median"
+msgstr "میانگین"
+
+msgid ""
+"Median edge width, the thickest edge will be 4 times thicker than the "
+"thinnest."
+msgstr "عرض لبه میانه، ضخیم‌ترین لبه ۴ برابر ضخیم‌تر از نازک‌ترین لبه خواهد بود."
+
+msgid ""
+"Median node size, the largest node will be 4 times larger than the "
+"smallest"
+msgstr ""
+"اندازه گره میانه، بزرگ‌ترین گره ۴ برابر بزرگ‌تر از کوچک‌ترین گره خواهد "
+"بود."
+
+msgid "Median values"
+msgstr "مقدارهای میانه"
+
+msgid "Medium"
+msgstr "متوسط"
+
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr "حافظه به بایت - دودویی (1024B => 1KiB)"
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr "حافظه به بایت - اعشاری (1024B => 1.024kB)"
+
+#, fuzzy
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr "حافظه به بایت - دودویی (1024B => 1KiB)"
+
+#, fuzzy
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr "حافظه به بایت - اعشاری (1024B => 1.024kB)"
+
+msgid "Menu actions trigger"
+msgstr "فعال‌سازی اقدامات منو"
+
+msgid "Message content"
+msgstr "محتوای پیام"
+
+msgid "Metadata"
+msgstr "متادیتا"
+
+msgid "Metadata Parameters"
+msgstr "پارامترهای متا داده"
+
+msgid "Metadata has been synced"
+msgstr "متاداده همگام‌سازی شده است"
+
+msgid "Method"
+msgstr "روش"
+
+msgid "Metric"
+msgstr "معیار"
+
+#, python-format
+msgid "Metric '%(metric)s' does not exist"
+msgstr "متریک '%(metric)s' وجود ندارد"
+
+msgid "Metric Key"
+msgstr "کلید معیار"
+
+#, python-format
+msgid "Metric ``%(metric_name)s`` not found in %(dataset_name)s."
+msgstr "متریک ``%(metric_name)s`` در %(dataset_name)s پیدا نشد."
+
+msgid "Metric ascending"
+msgstr "معیار به ترتیب صعودی"
+
+msgid "Metric assigned to the [X] axis"
+msgstr "متریک اختصاص داده شده به محور [X]"
+
+msgid "Metric assigned to the [Y] axis"
+msgstr "معیار اختصاص داده شده به محور [Y]"
+
+msgid "Metric change in value from `since` to `until`"
+msgstr "تغییر متریک در ارزش از `از` تا `تا`"
+
+msgid "Metric currency"
+msgstr "واحد ارزی متریک"
+
+msgid "Metric descending"
+msgstr "متریک به ترتیب نزولی"
+
+msgid "Metric factor change from `since` to `until`"
+msgstr "تغییر عامل معیار از `از` به `تا`"
+
+msgid "Metric for node values"
+msgstr "معیار برای ارزش‌های گره"
+
+msgid "Metric name"
+msgstr "نام متریک"
+
+#, python-format
+msgid "Metric name [%s] is duplicated"
+msgstr "نام متریک [%s] تکراری است"
+
+msgid "Metric percent change in value from `since` to `until`"
+msgstr "درصد تغییر متریک در ارزش از `از` تا `تا`"
+
+msgid "Metric that defines the size of the bubble"
+msgstr "معیاری که اندازه حباب را تعیین می‌کند"
+
+msgid "Metric to display bottom title"
+msgstr "معیار برای نمایش عنوان پایین"
+
+msgid "Metric used as a weight for the grid's coloring"
+msgstr "معیار استفاده شده به عنوان وزنی برای رنگ آمیزی شبکه"
+
+msgid "Metric used to calculate bubble size"
+msgstr "معیار مورد استفاده برای محاسبه اندازه حباب"
+
+msgid "Metric used to control height"
+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 ""
+"معیاری که برای تعیین نحوه مرتب‌سازی سری‌های بالاتر استفاده می‌شود اگر "
+"محدودیت سری یا سلول وجود داشته باشد. اگر تعریف نشده باشد، به اولین معیار "
+"(جایی که مناسب است) بازمی‌گردد."
+
+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 ""
+"معیاری که برای تعیین نحوه مرتب‌سازی سری‌های برتر استفاده می‌شود اگر یک "
+"محدودیت برای سری یا ردیف وجود داشته باشد. اگر تعریف نشده باشد، به متریک "
+"اول (در صورت مناسب بودن) باز می‌گردد."
+
+msgid "Metrics"
+msgstr "متریک‌ها"
+
+msgid "Middle"
+msgstr "میانه"
+
+msgid "Midnight"
+msgstr "نیمه شب"
+
+msgid "Miles"
+msgstr "مایل‌ها"
+
+msgid "Min"
+msgstr "حداقل"
+
+msgid "Min Periods"
+msgstr "دوره‌های حداقل"
+
+msgid "Min Width"
+msgstr "عرض حداقل"
+
+msgid "Min periods"
+msgstr "حداقل دوره‌ها"
+
+msgid "Min/max (no outliers)"
+msgstr "حداکثر/حداقل (بدون نقاط دورافتاده)"
+
+msgid "Mine"
+msgstr "مال من"
+
+msgid "Minimum"
+msgstr "حداقل"
+
+msgid "Minimum Font Size"
+msgstr "اندازه حداقل قلم"
+
+msgid "Minimum Radius"
+msgstr "حداقل شعاع"
+
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
+
+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 "Minimum threshold in percentage points for showing labels."
+msgstr "آستانه حداقل به نقاط درصدی برای نمایش برچسب‌ها."
+
+msgid "Minimum value"
+msgstr "حداقل مقدار"
+
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "تاریخ از نمی‌تواند بزرگتر از تاریخ به باشد."
+
+msgid "Minimum value for label to be displayed on graph."
+msgstr "حداقل مقدار برای نمایش برچسب در نمودار."
+
+msgid "Minimum value on the gauge axis"
+msgstr "حداقل مقدار در محور گیج"
+
+msgid "Minor Split Line"
+msgstr "خط شکاف جزئی"
+
+msgid "Minor ticks"
+msgstr "تیک‌های جزئی"
+
+msgid "Minute"
+msgstr "دقیقه"
+
+#, python-format
+msgid "Minutes %s"
+msgstr "دقایق %s"
+
+msgid "Minutes value"
+msgstr "مقدار دقیقه"
+
+msgid "Missing OAuth2 token"
+msgstr ""
+
+msgid "Missing URL parameters"
+msgstr "پارامترهای URL گم شده‌اند"
+
+msgid "Missing dataset"
+msgstr "دیتاست گم شده است"
+
+msgid "Mixed Chart"
+msgstr "نمودار ترکیبی"
+
+msgid "Modified"
+msgstr "ویرایش شده"
+
+#, python-format
+msgid "Modified %s"
+msgstr "ویرایش شده %s"
+
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Modified by"
+msgstr "ویرایش شده توسط"
+
+#, python-format
+msgid "Modified by: %s"
+msgstr "ویرایش شده توسط: %s"
+
+msgid "Monday"
+msgstr "دوشنبه"
+
+msgid "Month"
+msgstr "ماه"
+
+#, python-format
+msgid "Months %s"
+msgstr "ماه‌ها %s"
+
+msgid "More"
+msgstr "بیشتر"
+
+msgid "More filters"
+msgstr "فیلترهای بیشتر"
+
+msgid "MotherDuck token"
+msgstr "توکن مادر غاز"
+
+msgid "Move only"
+msgstr "تنها جابجا کنید"
+
+msgid "Moves the given set of dates by a specified interval."
+msgstr "تاریخ‌های تعیین‌شده را به میزان مشخصی جابه‌جا می‌کند."
+
+msgid "Multi-Dimensions"
+msgstr "چندبعدی"
+
+msgid "Multi-Layers"
+msgstr "چند لایه"
+
+msgid "Multi-Levels"
+msgstr "چند سطحی"
+
+msgid "Multi-Variables"
+msgstr "متغیرهای چندگانه"
+
+msgid "Multiple"
+msgstr "چندگانه"
+
+msgid "Multiple filtering"
+msgstr "فیلتر کردن چندگانه"
+
+msgid ""
+"Multiple formats accepted, look the geopy.points Python library for more "
+"details"
+msgstr ""
+"فرمت‌های متنوعی پذیرفته می‌شوند، به کتابخانه پایتون geopy.points برای "
+"جزئیات بیشتر مراجعه کنید."
+
+msgid "Multiplier"
+msgstr "ضریب"
+
+msgid "Must be unique"
+msgstr "باید منحصر به فرد باشد"
+
+msgid "Must choose either a chart or a dashboard"
+msgstr "باید یک نمودار یا یک داشبورد را انتخاب کنید."
+
+msgid "Must have a [Group By] column to have 'count' as the [Label]"
+msgstr "باید یک ستون [Group By] داشته باشید تا 'count' به عنوان [Label] قرار گیرد."
+
+msgid "Must provide credentials for the SSH Tunnel"
+msgstr "باید مدارک لازم برای تونل SSH را ارائه دهید."
+
+msgid "Must specify a value for filters with comparison operators"
+msgstr "باید برای فیلترهایی که دارای اپراتورهای مقایسه هستند، یک مقدار مشخص کنید."
+
+msgid "My beautiful colors"
+msgstr "رنگ‌های زیباى من"
+
+msgid "My column"
+msgstr "ستون من"
+
+msgid "My metric"
+msgstr "معیار من"
+
+msgid "N/A"
+msgstr "غیرقابل انتشار"
+
+msgid "NOT GROUPED BY"
+msgstr "غیر گروه‌بندی شده توسط"
+
+msgid "NOV"
+msgstr "نوامبر"
+
+msgid "NUMERIC"
+msgstr "عدد"
+
+msgid "Name"
+msgstr "نام"
+
+msgid "Name is required"
+msgstr "نام الزامی است"
+
+msgid "Name must be unique"
+msgstr "نام باید منحصر به فرد باشد"
+
+msgid "Name of table to be created"
+msgstr "نام جدولی که باید ایجاد شود"
+
+msgid "Name of the column containing the id of the parent node"
+msgstr "نام ستونی که شامل شناسه گره والد است"
+
+msgid "Name of the id column"
+msgstr "نام ستون شناسه"
+
+msgid "Name of the source nodes"
+msgstr "نام گره‌های منبع"
+
+msgid "Name of the target nodes"
+msgstr "نام گره‌های هدف"
+
+msgid "Name of your tag"
+msgstr "نام برچسب شما"
+
+msgid "Name your database"
+msgstr "نام پایگاه داده خود را وارد کنید"
+
+msgid "Need help? Learn how to connect your database"
+msgstr "نیاز به کمک دارید؟ یاد بگیرید چگونه پایگاه داده خود را متصل کنید."
+
+msgid "Need help? Learn more about"
+msgstr "به کمک نیاز دارید؟ بیشتر بیاموزید درباره"
+
+#, fuzzy
+msgid "Network Error"
+msgstr "خطای شبکه"
+
+msgid "Network error"
+msgstr "خطای شبکه"
+
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "هنگام ایجاد منبع داده خطایی رخ داد"
+
+msgid "Network error."
+msgstr "خطای شبکه."
+
+msgid "New chart"
+msgstr "چارت جدید"
+
+msgid "New dataset"
+msgstr "مجموعه داده جدید"
+
+msgid "New dataset name"
+msgstr "نام مجموعه داده جدید"
+
+msgid "New header"
+msgstr "عنوان جدید"
+
+msgid "New tab"
+msgstr "زبان جدید"
+
+msgid "New tab (Ctrl + q)"
+msgstr "برگه جدید (Ctrl + q)"
+
+msgid "New tab (Ctrl + t)"
+msgstr "تب جدید (Ctrl + t)"
+
+msgid "Next"
+msgstr "بعدی"
+
+msgid "Nightingale"
+msgstr "پرنده شب‌زنده‌دار"
+
+msgid "Nightingale Rose Chart"
+msgstr "نمودار گل نی كوچی"
+
+msgid "No"
+msgstr "نه"
+
+#, python-format
+msgid "No %s yet"
+msgstr "هنوز هیچ %s وجود ندارد"
+
+msgid "No Data"
+msgstr "هیچ داده‌ای وجود ندارد"
+
+msgid "No Results"
+msgstr "نتیجه‌ای یافت نشد"
+
+msgid "No Rules yet"
+msgstr "هنوز هیچ قانونی وجود ندارد"
+
+msgid "No Tags created"
+msgstr "هیچ برچسبی ایجاد نشده است"
+
+#, fuzzy
+msgid "No actions"
+msgstr "عملیات را لغو کنید"
+
+msgid "No annotation layers"
+msgstr "هیچ لایه‌ای برای یادداشت وجود ندارد"
+
+msgid "No annotation layers yet"
+msgstr "هیچ لایهٔ حاشیه‌نویسی هنوز وجود ندارد"
+
+msgid "No annotation yet"
+msgstr "هنوز هیچ نشانه‌گذاری وجود ندارد"
+
+msgid "No applied filters"
+msgstr "هیچ فیلتری اعمال نشده است"
+
+msgid "No available filters."
+msgstr "هیچ فیلتری موجود نیست."
+
+msgid "No charts"
+msgstr "هیچ نموداری وجود ندارد"
+
+msgid "No columns found"
+msgstr "ستون‌ها یافت نشدند"
+
+msgid "No compatible catalog found"
+msgstr "هیچ فهرست سازگاری پیدا نشد"
+
+msgid "No compatible columns found"
+msgstr "هیچ ستونی با همخوانی پیدا نشد"
+
+msgid "No compatible datasets found"
+msgstr "هیچ دیتاست سازگاری پیدا نشد"
+
+msgid "No compatible schema found"
+msgstr "هیچ طرح سازگاری پیدا نشد"
+
+msgid "No data"
+msgstr "هیچ داده‌ای وجود ندارد"
+
+msgid "No data after filtering or data is NULL for the latest time record"
+msgstr ""
+"هیچ داده‌ای پس از فیلتر کردن وجود ندارد یا داده برای جدیدترین رکورد زمانی"
+" NULL است."
+
+msgid "No data in file"
+msgstr "فایل خالی است"
+
+#, fuzzy
+msgid "No databases available"
+msgstr "هیچ پایگاه داده‌ای در دسترس نیست"
+
+msgid "No databases match your search"
+msgstr "هیچ پایگاه داده‌ای با جستجوی شما مطابقت ندارد"
+
+msgid "No description available."
+msgstr "توضیحی موجود نیست."
+
+msgid "No entities have this tag currently assigned"
+msgstr "هیچ موجودیتی در حال حاضر به این برچسب اختصاص داده نشده است."
+
+msgid "No filter"
+msgstr "بدون فیلتر"
+
+msgid "No filter is selected."
+msgstr "هیچ فیلتری انتخاب نشده است."
+
+msgid "No filters"
+msgstr "هیچ فیلترى نیست"
+
+msgid "No filters are currently added to this dashboard."
+msgstr "فعلاً هیچ فیلتری به این داشبورد اضافه نشده است."
+
+msgid "No form settings were maintained"
+msgstr "هیچ تنظیمات فرمی حفظ نشده است"
+
+msgid "No global filters are currently added"
+msgstr "در حال حاضر فیلترهای جهانی اضافه نشده‌اند."
+
+msgid "No matching records found"
+msgstr "هیچ رکوردی پیدا نشد"
+
+msgid "No records found"
+msgstr "هیچ رکوردی یافت نشد"
+
+msgid "No results"
+msgstr "هیچ نتیجه‌ای یافت نشد"
+
+msgid "No results found"
+msgstr "نتیجه‌ای پیدا نشد"
+
+msgid "No results match your filter criteria"
+msgstr "هیچ نتیجه‌ای با معیارهای فیلتر شما مطابقت ندارد."
+
+msgid "No results were returned for this query"
+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 ""
+"هیچ نتیجه‌ای برای این کوئری برنگردانده شد. اگر انتظار داشتید نتایجی "
+"برگردانده شود، اطمینان حاصل کنید که هر گونه فیلتر به درستی پیکربندی شده و"
+" منبع داده حاوی داده‌های مورد نیاز برای بازه زمانی انتخاب شده است."
+
+#, fuzzy
+msgid "No roles yet"
+msgstr "هنوز هیچ قانونی وجود ندارد"
+
+msgid "No rows were returned for this dataset"
+msgstr "برای این مجموعه داده، ردیفی بازگشت داده نشد."
+
+msgid "No samples were returned for this dataset"
+msgstr "هیچ نمونه‌ای برای این مجموعه داده بازگردانده نشد"
+
+msgid "No saved expressions found"
+msgstr "هیچ عبارت ذخیره‌شده‌ای یافت نشد"
+
+msgid "No saved metrics found"
+msgstr "هیچ متریک ذخیره‌شده‌ای پیدا نشد"
+
+msgid "No stored results found, you need to re-run your query"
+msgstr "هیچ نتیجه‌ای ذخیره شده یافت نشد، شما باید کوئریی خود را دوباره اجرا کنید."
+
+msgid "No such column found. To filter on a metric, try the Custom SQL tab."
+msgstr ""
+"ستون مورد نظر پیدا نشد. برای فیلتر کردن بر اساس یک معیار، به تب SQL "
+"سفارشی مراجعه کنید."
+
+msgid "No table columns"
+msgstr "هیچ ستونی در جدول وجود ندارد."
+
+msgid "No temporal columns found"
+msgstr "عمودهای زمانی یافت نشدند"
+
+msgid "No time columns"
+msgstr "بدون ستون‌های زمانی"
+
+#, fuzzy
+msgid "No users yet"
+msgstr "هنوز هیچ قانونی وجود ندارد"
+
+msgid "No validator found (configured for the engine)"
+msgstr "هیچ تاییدکننده‌ای پیدا نشد (برای موتور پیکربندی شده است)"
+
+#, python-format
+msgid ""
+"No validator named %(validator_name)s found (configured for the "
+"%(engine_spec)s engine)"
+msgstr ""
+"هیچ اعتبارسنجی با نام %(validator_name)s پیدا نشد (برای موتور "
+"%(engine_spec)s پیکربندی شده است)"
+
+msgid "Node label position"
+msgstr "موقعیت برچسب گره"
+
+msgid "Node select mode"
+msgstr "حالت انتخاب نود"
+
+msgid "Node size"
+msgstr "اندازه نود"
+
+msgid "None"
+msgstr "هیچ موردی"
+
+msgid "None -> Arrow"
+msgstr "هیچ -> پیکان"
+
+msgid "None -> None"
+msgstr "هیچ -> هیچ"
+
+msgid "Normal"
+msgstr "عادی"
+
+msgid "Normalize"
+msgstr "نرمال‌سازی"
+
+msgid "Normalize Across"
+msgstr "نرمال‌سازی در سراسر"
+
+msgid "Normalize column names"
+msgstr "نام‌های ستون را نرمال‌سازی کنید"
+
+msgid "Normalized"
+msgstr "نرمال‌سازی"
+
+msgid "Not Time Series"
+msgstr "غیر از سری زمانی"
+
+msgid "Not a valid ZIP file"
+msgstr "فایل فشرده معتبری نیست"
+
+msgid "Not added to any dashboard"
+msgstr "به هیچ داشبوردی اضافه نشده است"
+
+msgid "Not all required fields are complete. Please provide the following:"
+msgstr "تمام فیلدهای مورد نیاز پر نشده‌اند. لطفاً موارد زیر را ارائه دهید:"
+
+msgid "Not available"
+msgstr "در دسترس نیست"
+
+msgid "Not defined"
+msgstr "تعریف نشده است"
+
+msgid "Not equal to (≠)"
+msgstr "نابرابر با (≠)"
+
+msgid "Not in"
+msgstr "نه در"
+
+msgid "Not null"
+msgstr "غیر خالی"
+
+msgid "Not triggered"
+msgstr "ایجاد نشده است"
+
+msgid "Not up to date"
+msgstr "به‌روز نیست"
+
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "هیچ چیزی تحریک نشد"
+
+msgid "Nothing triggered"
+msgstr "هیچ چیزی تحریک نشد"
+
+msgid "Notification Method"
+msgstr "روش اعلان"
+
+msgid "Notification method"
+msgstr "روش اعلان"
+
+msgid "November"
+msgstr "نوامبر"
+
+msgid "Now"
+msgstr "الان"
+
+msgid "Null Values"
+msgstr "مقادیر خالی"
+
+msgid "Null imputation"
+msgstr "جایگزینی مقادیر خالی"
+
+msgid "Null or Empty"
+msgstr "NULL یا خالی"
+
+msgid "Number Format"
+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"
+"               برای معکوس کردن اعداد به آبی به قرمز، می‌توانید تنها مقدار"
+" حداقل یا حداکثر را وارد کنید تا رنگ خالص قرمز یا آبی دریافت کنید."
+
+msgid "Number format"
+msgstr "قالب عددی"
+
+msgid "Number format string"
+msgstr "رشته فرمت شماره"
+
+msgid "Number formatting"
+msgstr "فرمت‌بندی اعداد"
+
+msgid "Number of buckets to group data"
+msgstr "تعداد سطل ها برای گروه بندی داده ها"
+
+msgid "Number of decimal digits to round numbers to"
+msgstr "تعداد ارقام اعشاری برای گرد کردن اعداد به"
+
+msgid "Number of decimal places with which to display lift values"
+msgstr "تعداد ارقام اعشاری که باید برای نمایش مقادیر لیفت استفاده شود"
+
+msgid "Number of decimal places with which to display p-values"
+msgstr "تعداد ارقام اعشاری که باید p-value ها نمایش داده شوند"
+
+msgid ""
+"Number of periods to compare against. You can use negative numbers to "
+"compare from the beginning of the time range."
+msgstr ""
+"تعداد دوره‌هایی که می‌خواهید با آن‌ها مقایسه کنید. می‌توانید از اعداد "
+"منفی برای مقایسه از ابتدای بازه زمانی استفاده کنید."
+
+msgid "Number of periods to ratio against"
+msgstr "تعداد دوره‌ها برای نسبت‌سنجی"
+
+msgid "Number of rows of file to read. Leave empty (default) to read all rows"
+msgstr ""
+"تعداد ردیف‌های فایل برای خواندن. برای خواندن تمامی ردیف‌ها، خالی بگذارید "
+"(پیش‌فرض)"
+
+msgid "Number of rows to skip at start of file."
+msgstr "تعداد ردیف‌هایی که در ابتدای فایل باید نادیده گرفته شوند."
+
+msgid "Number of split segments on the axis"
+msgstr "تعداد بخش‌های تقسیم شده بر روی محور"
+
+msgid "Number of steps to take between ticks when displaying the X scale"
+msgstr "تعداد گام‌هایی که باید بین تیک‌ها هنگام نمایش مقیاس X برداشته شود"
+
+msgid "Number of steps to take between ticks when displaying the Y scale"
+msgstr "تعداد مراحل برای طی کردن بین تیک‌ها هنگام نمایش مقیاس Y"
+
+msgid "Numeric column used to calculate the histogram."
+msgstr "ستون عددی که برای محاسبه هیستوگرام استفاده می‌شود."
+
+msgid "Numerical range"
+msgstr "محدوده عددی"
+
+msgid "OCT"
+msgstr "اکتبر"
+
+msgid "OK"
+msgstr "باشه"
+
+msgid "OVERWRITE"
+msgstr "بازنویسی"
+
+msgid "October"
+msgstr "اکتبر"
+
+msgid "Offline"
+msgstr "آفلاین"
+
+msgid "On Grace"
+msgstr "در مورد خلوص"
+
+msgid "On dashboards"
+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 ""
+"یک یا چند ستون برای گروه‌بندی. گروه‌بندی با کاردینالیته بالا باید شامل "
+"محدودیت سری باشد تا تعداد سری‌های دریافت شده و رندر شده محدود شود."
+
+msgid ""
+"One or many controls to group by. If grouping, latitude and longitude "
+"columns must be present."
+msgstr ""
+"کنترل‌های یکی یا چند تا برای گروه‌بندی. اگر گروه‌بندی انجام می‌شود، "
+"ستون‌های عرض جغرافیایی و طول جغرافیایی باید موجود باشند."
+
+msgid "One or many controls to pivot as columns"
+msgstr "یک یا چند کنترل برای چرخش به عنوان ستون‌ها"
+
+msgid "One or many metrics to display"
+msgstr "یک یا چند متریک برای نمایش"
+
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "یک یا چند لایه الحاقی در بارگذاری شکست خوردند."
+
+msgid "One or more columns already exist"
+msgstr "یک یا چند ستون قبلاً وجود دارد"
+
+msgid "One or more columns are duplicated"
+msgstr "یک یا چند ستون تکراری هستند"
+
+msgid "One or more columns do not exist"
+msgstr "یک یا چند ستون وجود ندارند"
+
+msgid "One or more metrics already exist"
+msgstr "یک یا چند متریک از قبل وجود دارد"
+
+msgid "One or more metrics are duplicated"
+msgstr "یک یا چندین متریک تکراری هستند"
+
+msgid "One or more metrics do not exist"
+msgstr "یک یا چند معیار وجود ندارد"
+
+msgid "One or more parameters needed to configure a database are missing."
+msgstr "یک یا چند پارامتر مورد نیاز برای پیکربندی یک پایگاه داده Missing هستند."
+
+msgid "One or more parameters specified in the query are malformed."
+msgstr "یک یا چند پارامتر مشخص شده در کوئری به درستی فرمت نشده‌اند."
+
+msgid "One or more parameters specified in the query are missing."
+msgstr "یک یا چند پارامتر مشخص شده در کوئری وجود ندارد."
+
+msgid "Only Total"
+msgstr "فقط مجموع"
+
+msgid "Only `SELECT` statements are allowed"
+msgstr "فقط عبارات `SELECT` مجاز هستند"
+
+msgid "Only applies when \"Label Type\" is not set to a percentage."
+msgstr "فقط زمانی اعمال می‌شود که \"نوع برچسب\" بر روی درصد تنظیم نشده باشد."
+
+msgid "Only applies when \"Label Type\" is set to show values."
+msgstr "تنها زمانی اعمال می‌شود که \"نوع برچسب\" برای نمایش مقادیر تنظیم شده باشد."
+
+msgid ""
+"Only show the total value on the stacked chart, and not show on the "
+"selected category"
+msgstr ""
+"تنها مقدار کل را در نمودار انباشته نمایش دهید و آن را در دسته انتخاب شده "
+"نمایش ندهید."
+
+msgid "Only single queries supported"
+msgstr "فقط تماس‌های تکی پشتیبانی می‌شوند"
+
+msgid "Oops! An error occurred!"
+msgstr "اوه! یک خطا رخ داده است!"
+
+msgid "Opacity"
+msgstr "شفافیت"
+
+msgid "Opacity of Area Chart. Also applies to confidence band."
+msgstr "-opacity نمودار ناحیه. همچنین به باند اعتماد نیز اعمال می‌شود."
+
+msgid "Opacity of all clusters, points, and labels. Between 0 and 1."
+msgstr "حداکثر شفافیت تمامی خوشه‌ها، نقاط و برچسب‌ها. بین ۰ و ۱."
+
+msgid "Opacity of area chart."
+msgstr "شفافیت نمودار منطقه‌ای."
+
+msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque"
+msgstr "شفافیت حباب‌ها، ۰ به معنی کاملاً شفاف و ۱ به معنی کدر است"
+
+msgid "Opacity, expects values between 0 and 100"
+msgstr "شفافیت، انتظار مقادیر بین ۰ تا ۱۰۰ دارد."
+
+msgid "Open Datasource tab"
+msgstr "برگه داده‌منبع را باز کنید"
+
+msgid "Open in SQL Lab"
+msgstr "در SQL Lab باز کنید"
+
+msgid "Open query in SQL Lab"
+msgstr "باز کردن کوئری در آزمایشگاه SQL"
+
+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 ""
+"بانک اطلاعاتی را در حالت نامتقارن (asynchronous) اجرا کنید، به این معنی "
+"که جستجوها بر روی کارگران راه دور به جای خود سرور وب انجام می‌شوند. این "
+"فرض می‌کند که شما یک کارگر Celery و همچنین یک سیستم ذخیره نتایج "
+"راه‌اندازی کرده‌اید. برای اطلاعات بیشتر به مستندات نصب مراجعه کنید."
+
+msgid "Operator"
+msgstr "عملگر"
+
+#, python-format
+msgid "Operator undefined for aggregator: %(name)s"
+msgstr "عملگر برای تجمیع‌کننده تعریف نشده است: %(name)s"
+
+msgid ""
+"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on"
+" certain database engines."
+msgstr ""
+"محتویات CA_BUNDLE اختیاری برای اعتبارسنجی درخواست‌های HTTPS. فقط در برخی "
+"موتورهای پایگاه داده موجود است."
+
+msgid "Optional d3 date format string"
+msgstr "رشته فرمت تاریخ d3 اختیاری"
+
+msgid "Optional d3 number format string"
+msgstr "رشته فرمت عدد d3 اختیاری"
+
+msgid "Optional name of the data column."
+msgstr "نام اختیاری ستون داده."
+
+msgid "Optional warning about use of this metric"
+msgstr "هشدار اختیاری درباره استفاده از این معیار"
+
+msgid "Options"
+msgstr "گزینه‌ها"
+
+msgid "Or choose from a list of other databases we support:"
+msgstr "یا از فهرست سایر پایگاه‌های داده‌ای که پشتیبانی می‌کنیم، انتخاب کنید:"
+
+msgid "Order results by selected columns"
+msgstr "نتایج را بر اساس ستون‌های انتخاب شده ترتیب دهید."
+
+msgid "Ordering"
+msgstr "سفارش‌دادن"
+
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
+msgid "Orientation"
+msgstr "جهت‌گیری"
+
+msgid "Orientation of bar chart"
+msgstr "زاویه نمودار ستونی"
+
+msgid "Orientation of filter bar"
+msgstr "جهت نوار فیلتر"
+
+msgid "Orientation of tree"
+msgstr "جهت‌گیری درخت"
+
+msgid "Original"
+msgstr "متن اصلی"
+
+msgid "Original table column order"
+msgstr "ترتیب ستون‌های جدول اصلی"
+
+msgid "Original value"
+msgstr "مقدار اصلی"
+
+msgid "Orthogonal"
+msgstr "عمودى"
+
+msgid "Other"
+msgstr "دیگر"
+
+msgid "Other color palettes"
+msgstr "پالت‌های رنگی دیگر"
+
+msgid "Outdoors"
+msgstr "بیرون از خانه"
+
+msgid "Outer Radius"
+msgstr "شعاع بیرونی"
+
+msgid "Outer edge of Pie chart"
+msgstr "لبه خارجی نمودار دایره‌ای"
+
+msgid "Overlap"
+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 ""
+"یک یا چند سری زمانی را از یک دوره زمانی نسبی اضافه کنید. انتظار می‌رود که"
+" انحرافات زمانی نسبی به زبان طبیعی باشد (مثال: ۲۴ ساعت، ۷ روز، ۵۲ هفته، "
+"۳۶۵ روز). متن آزاد پشتیبانی می‌شود."
+
+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 ""
+"یک یا چند سری زمانی را از یک دوره زمانی نسبی.overlay کنید. دلتای زمان "
+"نسبی را به زبان طبیعی انتظار دارد (مثال: ۲۴ ساعت، ۷ روز، ۵۲ هفته، ۳۶۵ "
+"روز). متن آزاد پشتیبانی می‌شود."
+
+msgid ""
+"Overlay results 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. Use \"Inherit range from time filters\" to shift "
+"the comparison time range by the same length as your time range and use "
+"\"Custom\" to set a custom comparison range."
+msgstr ""
+"نتایج را از یک دوره زمانی نسبی روی هم بگذارید. انتظار می‌رود دلتاهای "
+"زمانی نسبی به زبان طبیعی باشند (به عنوان مثال: ۲۴ ساعت، ۷ روز، ۵۲ هفته، "
+"۳۶۵ روز). متن آزاد پشتیبانی می‌شود. از گزینه \"وراثت دامنه از فیلترهای "
+"زمانی\" برای تغییر دامنه زمانی مقایسه به همان طول دامنه زمانی خود استفاده"
+" کنید و از گزینه \"سفارشی\" برای تعیین دامنه مقایسه سفارشی استفاده کنید."
+
+msgid ""
+"Overlays a hexagonal grid on a map, and aggregates data within the "
+"boundary of each cell."
+msgstr ""
+"یک شبکه شش‌ضلعی را روی نقشه قرار می‌دهد و داده‌ها را درون مرز هر سلول "
+"تجمیع می‌کند."
+
+msgid "Override time grain"
+msgstr "بازنویسی دانه زمانی"
+
+msgid "Override time range"
+msgstr "بازنویسی بازه زمانی"
+
+msgid "Overwrite"
+msgstr "نوشته را بازنویسی کن"
+
+msgid "Overwrite & Explore"
+msgstr "بازنویسی و بررسی"
+
+#, python-format
+msgid "Overwrite Dashboard [%s]"
+msgstr "داشبورد [%s] را بازنویسی کنید"
+
+msgid "Overwrite existing"
+msgstr "بازنویسی موجود"
+
+msgid "Overwrite text in the editor with a query on this table"
+msgstr "متن را در ویرایشگر با یک کوئری در این جدول بازنویسی کنید"
+
+msgid "Owned Created or Favored"
+msgstr "مالکیت ایجاد شده یا مورد علاقه"
+
+msgid "Owner"
+msgstr "مالک"
+
+msgid "Owners"
+msgstr "مالکین"
+
+msgid "Owners are invalid"
+msgstr "مالکین نامعتبر هستند"
+
+msgid "Owners is a list of users who can alter the dashboard."
+msgstr "مالکین فهرستی از کاربرانی هستند که می‌توانند داشبورد را تغییر دهند."
+
+msgid ""
+"Owners is a list of users who can alter the dashboard. Searchable by name"
+" or username."
+msgstr ""
+"مالکین فهرستی از کاربران هستند که می‌توانند داشبورد را تغییر دهند. قابل "
+"جستجو بر اساس نام یا نام کاربری."
+
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "دانلود تصویر ناموفق بود، لطفاً صفحه را تازه‌سازی کرده و دوباره تلاش کنید."
+
+msgid "Page length"
+msgstr "طول صفحه"
+
+msgid "Paired t-test Table"
+msgstr "جدول تست t جفتی"
+
+msgid "Pandas resample method"
+msgstr "متد ریسامپل در پانداس"
+
+msgid "Pandas resample rule"
+msgstr "قانون بازنمونه‌گیری پانداس"
+
+msgid "Parallel Coordinates"
+msgstr "مختصات موازی"
+
+msgid "Parameter error"
+msgstr "خطای پارامتر"
+
+msgid "Parameters"
+msgstr "پارامترها"
+
+msgid "Parameters "
+msgstr "پارامترها"
+
+msgid "Parameters related to the view and perspective on the map"
+msgstr "پارامترهای مربوط به نمایش و دیدگاه در نقشه"
+
+msgid "Parent"
+msgstr "والد"
+
+#, python-format
+msgid "Parsing error: %(error)s"
+msgstr "خطای تجزیه: %(error)s"
+
+msgid "Part of a Whole"
+msgstr "قسمتی از کل"
+
+msgid "Partition Chart"
+msgstr "چارت پارتیشن"
+
+msgid "Partition Diagram"
+msgstr "نمودار پارتیشن"
+
+msgid "Partition Limit"
+msgstr "محدودیت پارتیشن"
+
+msgid "Partition Threshold"
+msgstr "آستانه پارتیشن"
+
+msgid ""
+"Partitions whose height to parent height proportions are below this value"
+" are pruned"
+msgstr ""
+"بخش‌هایی که نسبت ارتفاع آنها به ارتفاع والدین کمتر از این مقدار است، حذف "
+"می‌شوند."
+
+msgid "Password"
+msgstr "رمز عبور"
+
+#, fuzzy
+msgid "Password is required"
+msgstr "نوع الزامی است"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "داشبوردها وجود ندارند"
+
+msgid "Paste Private Key here"
+msgstr "کلید خصوصی را اینجا بچسبانید"
+
+msgid "Paste content of service credentials JSON file here"
+msgstr "محتوای فایل JSON اعتبارنامه‌های سرویس را اینجا بچسبانید"
+
+msgid "Paste the shareable Google Sheet URL here"
+msgstr "لینک قابل اشتراک‌گذاری گوگل شیت را اینجا قرار دهید"
+
+msgid "Paste your access token here"
+msgstr "تِوَنگ خود را اینجا بچسبانید"
+
+msgid "Pattern"
+msgstr "الگو"
+
+msgid "Percent Change"
+msgstr "درصد تغییر"
+
+msgid "Percent Difference format"
+msgstr "قالب اختلاف درصدی"
+
+msgid "Percent of total"
+msgstr "درصد کل"
+
+msgid "Percentage"
+msgstr "درصد"
+
+msgid "Percentage change"
+msgstr "درصد تغییر"
+
+msgid "Percentage difference between the time periods"
+msgstr "اختلاف درصدی بین دوره‌های زمانی"
+
+msgid "Percentage metrics"
+msgstr "معیارهای درصدی"
+
+msgid "Percentage threshold"
+msgstr "آستانه درصدی"
+
+msgid "Percentages"
+msgstr "درصدها"
+
+msgid "Performance"
+msgstr "عملکرد"
+
+msgid "Period average"
+msgstr "میانگین دوره"
+
+msgid "Periods"
+msgstr "دوره‌ها"
+
+msgid "Periods must be a whole number"
+msgstr "دوره‌ها باید یک عدد صحیح باشند."
+
+#, fuzzy
+msgid "Permissions"
+msgstr "نسخه"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
+msgid "Person or group that has certified this chart."
+msgstr "شخص یا گروهی که این نمودار را تأیید کرده است."
+
+msgid "Person or group that has certified this dashboard."
+msgstr "شخص یا گروهی که این داشبورد را تأیید کرده است."
+
+msgid "Person or group that has certified this metric"
+msgstr "شخص یا گروهی که این معیار را تأیید کرده است"
+
+msgid "Physical"
+msgstr "فیزیکی"
+
+msgid "Physical (table or view)"
+msgstr "فیزیکی (جدول یا نمایه)"
+
+msgid "Pick a dimension from which categorical colors are defined"
+msgstr "یک بعد را انتخاب کنید که رنگ‌های دسته‌ای از آن تعریف شده‌اند."
+
+msgid "Pick a metric for x, y and size"
+msgstr "یک معیار برای x، y و اندازه انتخاب کنید."
+
+msgid "Pick a metric to display"
+msgstr "یک معیار برای نمایش انتخاب کنید"
+
+msgid "Pick a name to help you identify this database."
+msgstr "یک نام انتخاب کنید تا به شما در شناسایی این پایگاه داده کمک کند."
+
+msgid "Pick a nickname for how the database will display in Superset."
+msgstr "یک نام مستعار برای نحوه نمایش پایگاه داده در Superset انتخاب کنید."
+
+msgid "Pick a set of deck.gl charts to layer on top of one another"
+msgstr "یک مجموعه از نمودارهای deck.gl را برای پوشاندن روی یکدیگر انتخاب کنید."
+
+msgid "Pick a title for you annotation."
+msgstr "یک عنوان برای یادداشت خود انتخاب کنید."
+
+msgid "Pick at least one metric"
+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 ""
+"یک یا چند ستون را انتخاب کنید که باید در حاشیه‌نویسی نمایش داده شوند. اگر"
+" ستونی را انتخاب نکنید، همه آن‌ها نمایش داده خواهند شد."
+
+msgid "Pick your favorite markup language"
+msgstr "زبان نشانه‌گذاری مورد علاقه خود را انتخاب کنید"
+
+msgid "Pie Chart"
+msgstr "چارت دایره‌ای"
+
+msgid "Pie charts on a map"
+msgstr ""
+
+msgid "Pie shape"
+msgstr "شکل پای"
+
+msgid "Piecewise"
+msgstr "بخش‌بخش"
+
+msgid "Pin"
+msgstr "پین"
+
+#, fuzzy
+msgid "Pin Left"
+msgstr "بالای چپ"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "بالا سمت راست"
+
+msgid "Pivot Table"
+msgstr "جدول محوری"
+
+msgid "Pivot operation must include at least one aggregate"
+msgstr "عملیات پیوت باید حداقل شامل یک تجمیع باشد."
+
+msgid "Pivot operation requires at least one index"
+msgstr "عملیات پیوت حداقل به یک ایندکس نیاز دارد"
+
+msgid "Pivoted"
+msgstr "محور بندی شده"
+
+msgid "Pixel height of each series"
+msgstr "ارتفاع پیکسل هر سری"
+
+msgid "Pixels"
+msgstr "پیکسل‌ها"
+
+msgid "Plain"
+msgstr "ساده"
+
+msgid "Please DO NOT overwrite the \"filter_scopes\" key."
+msgstr "لطفاً کلید \"filter_scopes\" را بازنویسی نکنید."
+
+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 }}\". سپس دوباره سعی "
+"کنید کوئری خود را اجرا کنید."
+
+#, 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\" "
+"بررسی کنید. سپس، دوباره سعی کنید عبارت جستجوی خود را اجرا کنید."
+
+#, 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 ""
+"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 "Please choose a valid value"
+msgstr ""
+
+msgid "Please choose at least one groupby"
+msgstr "لطفاً حداقل یک گروه‌بندی انتخاب کنید."
+
+msgid "Please confirm"
+msgstr "لطفاً تأیید کنید"
+
+msgid "Please confirm the overwrite values."
+msgstr "لطفاً مقادیر جایگزین را تأیید کنید."
+
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "لطفاً تأیید کنید"
+
+msgid "Please enter a SQLAlchemy URI to test"
+msgstr "لطفاً یک URI SQLAlchemy برای آزمایش وارد کنید."
+
+msgid "Please enter a valid email address"
+msgstr ""
+
+msgid "Please enter valid text. Spaces alone are not permitted."
+msgstr "لطفاً متن معتبر وارد کنید. تنها فضاها مجاز نیستند."
+
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
+msgid "Please re-enter the password."
+msgstr "لطفاً رمز عبور را دوباره وارد کنید."
+
+msgid "Please re-export your file and try importing again"
+msgstr ""
+"لطفاً فایل خود را دوباره صادر کنید و دوباره سعی در وارد کردن آن داشته "
+"باشید."
+
+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 "Please save your chart first, then try creating a new email report."
+msgstr ""
+"لطفاً ابتدا نمودار خود را ذخیره کنید، سپس سعی کنید یک گزارش ایمیلی جدید "
+"ایجاد کنید."
+
+msgid "Please save your dashboard first, then try creating a new email report."
+msgstr ""
+"لطفاً ابتدا داشبورد خود را ذخیره کنید، سپس سعی کنید یک گزارش ایمیلی جدید "
+"ایجاد کنید."
+
+msgid "Please select both a Dataset and a Chart type to proceed"
+msgstr "لطفاً هم یک مجموعه داده و هم نوع نمودار را برای ادامه انتخاب کنید."
+
+#, python-format
+msgid ""
+"Please specify the Dataset ID for the ``%(name)s`` metric in the Jinja "
+"macro."
+msgstr "لطفاً شناسه دیتاست برای متریک ``%(name)s`` را در ماکرو جینیجا مشخص کنید."
+
+msgid "Please use 3 different metric labels"
+msgstr "لطفاً از ۳ برچسب مختلف متریک استفاده کنید."
+
+msgid "Plot the distance (like flight paths) between origin and destination."
+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 ""
+"معیارهای فردی هر ردیف در داده‌ها را به صورت عمودی ترسیم می‌کند و آن‌ها را"
+" به عنوان یک خط به هم متصل می‌سازد. این نمودار برای مقایسه چندین معیار در"
+" تمام نمونه‌ها یا ردیف‌های داده‌ها مفید است."
+
+msgid "Plugins"
+msgstr "پلاگین‌ها"
+
+msgid "Point Color"
+msgstr "رنگ نقطه"
+
+msgid "Point Radius"
+msgstr "شعاع نقطه"
+
+msgid "Point Radius Scale"
+msgstr "مقیاس شعاع نقطه"
+
+msgid "Point Radius Unit"
+msgstr "واحد شعاع نقطه"
+
+msgid "Point Size"
+msgstr "اندازه نقطه"
+
+msgid "Point Unit"
+msgstr "واحد امتیاز"
+
+msgid "Point to your spatial columns"
+msgstr "نقطه به ستون‌های فضایی شما"
+
+msgid "Points"
+msgstr "نقاط"
+
+msgid "Points and clusters will update as the viewport is being changed"
+msgstr "نقاط و خوشه‌ها هنگام تغییر نمای دید به‌روز خواهند شد"
+
+msgid "Polygon Column"
+msgstr "ستون چندضلعی"
+
+msgid "Polygon Encoding"
+msgstr "رمزگذاری چندضلعی"
+
+msgid "Polygon Settings"
+msgstr "تنظیمات چندضلعی"
+
+msgid "Polyline"
+msgstr "چندخطی"
+
+msgid "Populate \"Default value\" to enable this control"
+msgstr "برای فعال‌سازی این کنترل، \"مقدار پیش‌فرض\" را پر کنید."
+
+msgid "Port"
+msgstr "پورت"
+
+#, python-format
+msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection."
+msgstr "پورت %(port)s بر روی نام میزبان \"%(hostname)s\" اتصال را رد کرد."
+
+msgid "Port out of range 0-65535"
+msgstr "پورت خارج از محدوده ۰-۶۵۵۳۵"
+
+msgid "Position JSON"
+msgstr "موقعیت JSON"
+
+msgid "Position of child node label on tree"
+msgstr "موقعیت برچسب گره فرزند در درخت"
+
+msgid "Position of column level subtotal"
+msgstr "موقعیت مجموع جزئی سطح ستون"
+
+msgid "Position of intermediate node label on tree"
+msgstr "موقعیت برچسب گره میانی در درخت"
+
+msgid "Position of row level subtotal"
+msgstr "موقعیت جمع جزئی ردیف"
+
+msgid "Powered by Apache Superset"
+msgstr "قدرت گرفته از آپاچی سوپرست"
+
+msgid "Pre-filter"
+msgstr "پیش‌فیلتر"
+
+msgid "Pre-filter available values"
+msgstr "پیش‌فیلتر مقادیر موجود"
+
+msgid "Pre-filter is required"
+msgstr "پیش‌فیلتر ضروری است"
+
+msgid "Predictive"
+msgstr "پیش‌بینی‌کننده"
+
+msgid "Predictive Analytics"
+msgstr "تحلیل پیشگویانه"
+
+msgid "Prefix"
+msgstr "پیشوند"
+
+msgid "Prefix or suffix"
+msgstr "پیشوند یا پسوند"
+
+msgid "Preview"
+msgstr "پیش‌نمایش"
+
+msgid "Preview uploaded file"
+msgstr "پیش‌نمایش فایل بارگذاری‌شده"
+
+msgid "Previous"
+msgstr "قبلی"
+
+msgid "Previous Line"
+msgstr "خط قبلی"
+
+msgid "Primary"
+msgstr "اصلی"
+
+msgid "Primary Metric"
+msgstr "معیار اصلی"
+
+msgid "Primary key"
+msgstr "کلید اصلی"
+
+msgid "Primary or secondary y-axis"
+msgstr "محور y اصلی یا فرعی"
+
+msgid "Primary y-axis Bounds"
+msgstr "محدودیت‌های محور y اصلی"
+
+msgid "Primary y-axis format"
+msgstr "قالب محور y اصلی"
+
+msgid "Private Channels (Bot in channel)"
+msgstr ""
+
+msgid "Private Key"
+msgstr "کلید خصوصی"
+
+msgid "Private Key & Password"
+msgstr "کلید خصوصی و رمز عبور"
+
+msgid "Private Key Password"
+msgstr "رمزعبور کلید خصوصی"
+
+msgid "Proceed"
+msgstr "ادامه دهید"
+
+msgid "Progress"
+msgstr "پیشرفت"
+
+msgid "Progressive"
+msgstr "پیشرفته"
+
+#, fuzzy
+msgid "Project Id"
+msgstr "منسوخ شده"
+
+msgid "Proportional"
+msgstr "تناسبی"
+
+msgid "Published"
+msgstr "منتشر شده"
+
+msgid "Purple"
+msgstr "بنفش"
+
+msgid "Put labels outside"
+msgstr "برچسب‌ها را بیرون قرار دهید"
+
+msgid "Put positive values and valid minute and second value less than 60"
+msgstr ""
+"مقدارهای مثبت و مقادیر دقیقه و ثانیه معتبر را که کمتر از ۶۰ هستند وارد "
+"کنید."
+
+msgid "Put some positive value greater than 0"
+msgstr "یک مقدار مثبت بزرگ‌تر از ۰ وارد کنید."
+
+msgid "Put the labels outside of the pie?"
+msgstr "برچسب‌ها را در خارج از دایره قرار دهید؟"
+
+msgid "Put your code here"
+msgstr "کد خود را اینجا قرار دهید"
+
+msgid "Python datetime string pattern"
+msgstr "الگوی رشته تاریخ و زمان پایتون"
+
+msgid "QUERY DATA IN SQL LAB"
+msgstr "کوئری داده‌ها در آزمایشگاه SQL"
+
+msgid "Quarter"
+msgstr "سه‌ماه"
+
+#, python-format
+msgid "Quarters %s"
+msgstr "ربع‌ها %s"
+
+msgid "Queries"
+msgstr "کوئری‌ها"
+
+msgid "Query"
+msgstr "کوئری"
+
+#, python-format
+msgid "Query %s: %s"
+msgstr "کوئری %s: %s"
+
+msgid "Query A"
+msgstr "کوئری A"
+
+msgid "Query B"
+msgstr "کوئریی ب"
+
+msgid "Query History"
+msgstr "تاریخچه درخواست‌ها"
+
+msgid "Query does not exist"
+msgstr "کوئری وجود ندارد"
+
+msgid "Query history"
+msgstr "تاریخچه جستجو"
+
+msgid "Query imported"
+msgstr "کوئری وارد شده است"
+
+msgid "Query in a new tab"
+msgstr "کوئری در یک برگه جدید"
+
+msgid "Query is too complex and takes too long to run."
+msgstr "کوئری خیلی پیچیده است و برای اجرا زمان زیادی می‌برد."
+
+msgid "Query mode"
+msgstr "حالت کوئری"
+
+msgid "Query name"
+msgstr "نام کوئری"
+
+msgid "Query preview"
+msgstr "پیش‌نمایش کوئری"
+
+msgid "Query was stopped"
+msgstr "کوئری متوقف شد"
+
+msgid "Query was stopped."
+msgstr "کوئری متوقف شد."
+
+msgid "RANGE TYPE"
+msgstr "نوع دامنه"
+
+msgid "RGB Color"
+msgstr "رنگ RGB"
+
+msgid "RLS Rule not found."
+msgstr "قانون RLS پیدا نشد."
+
+msgid "RLS rules could not be deleted."
+msgstr "قوانین RLS نمی‌توانند حذف شوند."
+
+msgid "Radar"
+msgstr "رادار"
+
+msgid "Radar Chart"
+msgstr "چارت راداری"
+
+msgid "Radar render type, whether to display 'circle' shape."
+msgstr "نوع نمایش رادار، آیا شکل 'دایره' را نمایش دهد."
+
+msgid "Radial"
+msgstr "مدور"
+
+msgid "Radius"
+msgstr "شعاع"
+
+msgid "Radius in kilometers"
+msgstr "شعاع به کیلومتر"
+
+msgid "Radius in meters"
+msgstr "شعاع به متر"
+
+msgid "Radius in miles"
+msgstr "شعاع به مایل"
+
+msgid "Range"
+msgstr "محدوده"
+
+msgid "Range filter"
+msgstr "فیلتر محدوده"
+
+msgid "Range filter plugin using AntD"
+msgstr "پلاگین فیلتر بازه‌ای با استفاده از AntD"
+
+msgid "Range labels"
+msgstr "برچسب‌های محدوده"
+
+msgid "Ranges"
+msgstr "محدوده‌ها"
+
+msgid "Ranges to highlight with shading"
+msgstr "محدوده‌هایی برای هایلایت با سایه‌زنی"
+
+msgid "Ranking"
+msgstr "رتبه‌بندی"
+
+msgid "Ratio"
+msgstr "نسبت"
+
+msgid "Raw records"
+msgstr "رکوردهای خام"
+
+msgid "Recently modified"
+msgstr "به‌تازگی ویرایش شده"
+
+msgid "Recents"
+msgstr "جدیدترین‌ها"
+
+msgid "Recipients are separated by \",\" or \";\""
+msgstr "گیرندگان با \",\" یا \";\" جدا می‌شوند."
+
+msgid "Record Count"
+msgstr "تعداد رکوردها"
+
+msgid "Rectangle"
+msgstr "مستطیل"
+
+msgid "Recurring (every)"
+msgstr "تکراری (هر)"
+
+msgid "Red for increase, green for decrease"
+msgstr "قرمز برای افزایش، سبز برای کاهش"
+
+msgid "Redo the action"
+msgstr "عملیات را دوباره انجام دهید"
+
+msgid "Reduce X ticks"
+msgstr "تعداد ایکس تیک‌ها را کاهش دهید."
+
+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 را که باید رندر شود کاهش می‌دهد. اگر درست باشد، "
+"محور X سرریز نخواهد شد و ممکن است برچسب‌ها وجود نداشته باشند. اگر نادرست "
+"باشد، عرض حداقلی به ستون‌ها اعمال خواهد شد و عرض ممکن است به اسکرول افقی "
+"سرریز شود."
+
+msgid "Refer to the"
+msgstr "به مورد اشاره کنید"
+
+msgid "Referenced columns not available in DataFrame."
+msgstr "ستون‌های مرجع در DataFrame موجود نیستند."
+
+msgid "Refetch results"
+msgstr "دوباره دریافت نتایج"
+
+msgid "Refresh"
+msgstr "به‌روز رسانی"
+
+msgid "Refresh dashboard"
+msgstr "بروزرسانی داشبورد"
+
+msgid "Refresh frequency"
+msgstr "فرکانس بروزرسانی"
+
+msgid "Refresh interval"
+msgstr "فاصله به‌روزرسانی"
+
+msgid "Refresh interval saved"
+msgstr "فاصله‌ زمانی بروزرسانی ذخیره شد"
+
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "بروزرسانی جدول"
+
+msgid "Refresh the default values"
+msgstr "مقادیر پیش‌فرض را به‌روز کنيد"
+
+msgid "Refreshing charts"
+msgstr "به‌روزرسانی نمودارها"
+
+msgid "Refreshing columns"
+msgstr "بارگذاری مجدد ستون‌ها"
+
+msgid "Regular"
+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 ""
+"فیلترهای عادی جملات where را به کوئری‌ها اضافه می‌کنند اگر یک کاربر به "
+"نقشی که در فیلتر اشاره شده متعلق باشد، فیلترهای پایه به تمام کوئری‌ها "
+"اعمال می‌شوند به جز نقش‌های تعریف‌شده در فیلتر، و می‌توانند برای تعریف "
+"اینکه چه کاربران می‌توانند ببینند در صورتی‌که هیچ فیلتر RLS در یک گروه "
+"فیلتر به آن‌ها اعمال نشود، مورد استفاده قرار گیرند."
+
+msgid "Relational"
+msgstr "رابطه‌ای"
+
+msgid "Relationships between community channels"
+msgstr "روابط میان کانال‌های اجتماعی"
+
+msgid "Relative Date/Time"
+msgstr "تاریخ/زمان نسبی"
+
+msgid "Relative period"
+msgstr "دوره نسبی"
+
+msgid "Relative quantity"
+msgstr "کمیت نسبی"
+
+msgid "Reload"
+msgstr "بارگذاری مجدد"
+
+msgid "Remove"
+msgstr "حذف"
+
+msgid "Remove cross-filter"
+msgstr "فیلتر متقابل را حذف کنید"
+
+msgid "Remove item"
+msgstr "حذف آیتم"
+
+msgid "Remove query from log"
+msgstr "کوئری را از لاگ حذف کنید"
+
+msgid "Remove table preview"
+msgstr "پیش‌نمایش جدول را حذف کنید"
+
+#, python-format
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
+msgid "Rename tab"
+msgstr "تغییر نام تب"
+
+msgid "Render HTML"
+msgstr "رندر HTML"
+
+msgid "Render columns in HTML format"
+msgstr "نمایش ستون‌ها بصورت فرمت HTML"
+
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
+msgstr ""
+
+msgid "Replace"
+msgstr "جایگزین کنید"
+
+msgid "Report"
+msgstr "گزارش"
+
+msgid "Report Name"
+msgstr "نام گزارش"
+
+msgid "Report Schedule could not be created."
+msgstr "برنامه زمانبندی گزارش ساخته نشد."
+
+msgid "Report Schedule could not be updated."
+msgstr "زمان‌بندی گزارش قابل به‌روزرسانی نیست."
+
+msgid "Report Schedule delete failed."
+msgstr "حذف برنامه گزارش ناموفق بود."
+
+msgid "Report Schedule execution failed when generating a csv."
+msgstr "اجرای زمانبندی گزارش هنگام تولید یک فایل csv با شکست مواجه شد."
+
+msgid "Report Schedule execution failed when generating a dataframe."
+msgstr "اجرای برنامه زمانبندی گزارش هنگام تولید یک دیتا فریم ناموفق بود."
+
+msgid "Report Schedule execution failed when generating a pdf."
+msgstr "اجرای زمانبندی گزارش هنگام تولید یک فایل pdf با خطا مواجه شد."
+
+msgid "Report Schedule execution failed when generating a screenshot."
+msgstr "اجرای زمانبندی گزارش هنگام تولید اسکرین شات با خطا مواجه شد."
+
+msgid "Report Schedule execution got an unexpected error."
+msgstr "اجرای زمانبندی گزارش با خطای غیرمنتظره‌ای مواجه شد."
+
+msgid "Report Schedule is still working, refusing to re-compute."
+msgstr "برنامه‌ریزی گزارش هنوز در حال کار است و از محاسبه مجدد خودداری می‌کند."
+
+msgid "Report Schedule log prune failed."
+msgstr "گزارش زمان‌بندی لاگ حذف ناموفق بود."
+
+msgid "Report Schedule not found."
+msgstr "برنامه گزارش یافت نشد."
+
+msgid "Report Schedule parameters are invalid."
+msgstr "پارامترهای برنامه‌ریزی گزارش نامعتبر هستند."
+
+msgid "Report Schedule reached a working timeout."
+msgstr "زمانبندی گزارش به یک زمان معین کاری رسید."
+
+msgid "Report Schedule state not found"
+msgstr "وضعیت زمانبندی گزارش یافت نشد"
+
+msgid "Report a bug"
+msgstr "گزارش یک اشکال"
+
+msgid "Report contents"
+msgstr "محتوای گزارش"
+
+msgid "Report failed"
+msgstr "گزارش شکست خورد"
+
+msgid "Report is active"
+msgstr "گزارش فعال است"
+
+msgid "Report name"
+msgstr "نام گزارش"
+
+msgid "Report schedule client error"
+msgstr "خطای کلاینت در زمانبندی گزارش"
+
+msgid "Report schedule system error"
+msgstr "خطای سیستم برنامه‌ریزی گزارش"
+
+msgid "Report schedule unexpected error"
+msgstr "گزارش زمانبندی خطای غیرمنتظره"
+
+msgid "Report sending"
+msgstr "ارسال گزارش"
+
+msgid "Report sent"
+msgstr "گزارش ارسال شد"
+
+msgid "Report updated"
+msgstr "گزارش به‌روز شد"
+
+msgid "Reports"
+msgstr "گزارش‌ها"
+
+msgid "Repulsion"
+msgstr "دفع"
+
+msgid "Repulsion strength between nodes"
+msgstr "قدرت دفع بین گره‌ها"
+
+msgid "Request Access"
+msgstr ""
+
+#, python-format
+msgid "Request is incorrect: %(error)s"
+msgstr "درخواست نادرست است: %(error)s"
+
+msgid "Request is not JSON"
+msgstr "درخواست JSON نیست"
+
+msgid "Request missing data field."
+msgstr "درخواست فیلد داده‌ گم‌شده."
+
+msgid "Request timed out"
+msgstr "درخواست زمان زیادی طول کشید"
+
+msgid "Required"
+msgstr "مورد نیاز"
+
+msgid "Required control values have been removed"
+msgstr "مقادیر کنترل مورد نیاز حذف شده‌اند"
+
+msgid "Resample"
+msgstr "نمونه‌برداری مجدد"
+
+msgid "Resample method should be in "
+msgstr "روش نمونه‌برداری باید در"
+
+msgid "Resample operation requires DatetimeIndex"
+msgstr "عملیات دوباره نمونه‌گیری به DatetimeIndex نیاز دارد."
+
+msgid "Reset"
+msgstr "بازنشانی"
+
+#, fuzzy
+msgid "Reset columns"
+msgstr "ستون را انتخاب کنید"
+
+msgid "Reset state"
+msgstr "تنظیم مجدد وضعیت"
+
+msgid "Resource already has an attached report."
+msgstr "منبع قبلاً یک گزارش ضمایم شده دارد."
+
+msgid "Resource was not found."
+msgstr "منبع پیدا نشد."
+
+msgid "Restore Filter"
+msgstr "بازیابی فیلتر"
+
+msgid "Results"
+msgstr "نتایج"
+
+#, python-format
+msgid "Results %s"
+msgstr "نتایج %s"
+
+msgid "Results backend is not configured."
+msgstr "پشتیبان نتایج تنظیم نشده است."
+
+msgid "Results backend needed for asynchronous queries is not configured."
+msgstr "پشتوانه نتایج برای کوئریهای غیرهمزمان پیکربندی نشده است."
+
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "دوباره دریافت نتایج"
+
+msgid "Return to specific datetime."
+msgstr "بازگشت به تاریخ و زمان مشخص."
+
+msgid "Reverse Lat & Long"
+msgstr "معکوس کردن عرض و طول جغرافیایی"
+
+msgid "Reverse lat/long "
+msgstr "برعکس عرض/طول جغرافیایی"
+
+msgid "Rich Tooltip"
+msgstr "ابزاری با اطلاعات غنی"
+
+msgid "Rich tooltip"
+msgstr "نوار ابزار غنی"
+
+msgid "Right"
+msgstr "درست"
+
+msgid "Right Axis Format"
+msgstr "فرمت محور راست"
+
+msgid "Right Axis Metric"
+msgstr "معیار محور راست"
+
+msgid "Right axis metric"
+msgstr "متریک محور راست"
+
+msgid "Right to Left"
+msgstr "راست به چپ"
+
+msgid "Right value"
+msgstr "ارزش صحیح"
+
+msgid "Right-click on a dimension value to drill to detail by that value."
+msgstr ""
+"برای دسترسی به جزئیات بر اساس آن مقدار، بر روی یک مقدار بعدی کلیک راست "
+"کنید."
+
+msgid "Role"
+msgstr "نقش"
+
+#, fuzzy
+msgid "Role Name"
+msgstr "نام هشدار"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "ارزش الزامی است"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "نام الزامی است"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "دیتاست با موفقیت تغییر کرد!"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
+msgid "Roles"
+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 ""
+"نقش‌ها فهرستی هستند که دسترسی به داشبورد را تعریف می‌کنند. اعطای دسترسی "
+"یک نقش به یک داشبورد، بررسی‌های سطح داده‌ را نادیده می‌گیرد. اگر هیچ نقشی"
+" تعریف نشده باشد، مجوزهای دسترسی معمولی اعمال می‌شوند."
+
+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 "Rolling Function"
+msgstr "توابع متحرک"
+
+msgid "Rolling Window"
+msgstr "پنجره متحرک"
+
+msgid "Rolling function"
+msgstr "تابع پیمایش"
+
+msgid "Rolling window"
+msgstr "پنجره متحرک"
+
+msgid "Root certificate"
+msgstr "گواهی ریشه"
+
+msgid "Root node id"
+msgstr "شناسه گره ریشه"
+
+msgid "Rose Type"
+msgstr "نوع گل رز"
+
+msgid "Rotate x axis label"
+msgstr "چرخش برچسب محور x"
+
+msgid "Rotate y axis label"
+msgstr "دایره‌ای کردن برچسب محور y"
+
+msgid "Rotation to apply to words in the cloud"
+msgstr "چرخش برای اعمال بر روی کلمات در ابر"
+
+msgid "Round cap"
+msgstr "سرپوش گرد"
+
+msgid "Row"
+msgstr "ردیف"
+
+msgid "Row Level Security"
+msgstr "امنیت سطح ردیف"
+
+msgid ""
+"Row containing the headers to use as column names (0 is first line of "
+"data)."
+msgstr ""
+"ردیفی که شامل سرعنوان‌ها برای استفاده به عنوان نام ستون‌ها است (۰ اولین "
+"خط داده‌ها است)."
+
+msgid "Row limit"
+msgstr "محدودیت ردیف"
+
+msgid "Rows"
+msgstr "ردیف‌ها"
+
+msgid "Rows per page, 0 means no pagination"
+msgstr "تعداد ردیف‌ها در هر صفحه، ۰ به معنای عدم صفحه‌بندی است"
+
+msgid "Rows subtotal position"
+msgstr "موقعیت زیرفضای سطرها"
+
+msgid "Rows to read"
+msgstr "تعداد سطرهایی که باید خوانده شوند"
+
+msgid "Rule"
+msgstr "قاعده"
+
+msgid "Rule Name"
+msgstr "نام قاعده"
+
+msgid "Rule added"
+msgstr "قانون اضافه شد"
+
+msgid "Run"
+msgstr "اجرا کنید"
+
+msgid "Run a query to display query history"
+msgstr "یک کوئری اجرا کنید تا تاریخچه کوئری‌ها را نمایش دهید."
+
+msgid "Run a query to display results"
+msgstr "یک کوئری اجرا کنید تا نتایج را نمایش دهد."
+
+msgid "Run current query"
+msgstr "اجرای کوئری جاری"
+
+msgid "Run in SQL Lab"
+msgstr "در SQL Lab اجرا کنید"
+
+msgid "Run query"
+msgstr "اجرای کوئری"
+
+msgid "Run query (Ctrl + Return)"
+msgstr "اجرای کوئری (Ctrl + Enter)"
+
+msgid "Run query in a new tab"
+msgstr "در یک تب جدید کوئری را اجرا کنید"
+
+msgid "Run selection"
+msgstr "اجرای انتخاب"
+
+msgid "Running"
+msgstr "در حال اجرا"
+
+#, python-format
+msgid "Running statement %(statement_num)s out of %(statement_count)s"
+msgstr "در حال اجرای بیانیه %(statement_num)s از %(statement_count)s"
+
+msgid "SAT"
+msgstr "سَت"
+
+msgid "SECOND"
+msgstr "دوم"
+
+msgid "SEP"
+msgstr "سپتامبر"
+
+msgid "SHA"
+msgstr "شَهادت"
+
+msgid "SQL"
+msgstr "اس کیو ال"
+
+msgid "SQL Copied!"
+msgstr "SQL کپی شد!"
+
+msgid "SQL Lab"
+msgstr "آزمایشگاه SQL"
+
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "کوئری‌های ذخیره‌شده"
+
+#, 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 از فضای ذخیره‌سازی محلی مرورگر شما برای ذخیره کوئری‌ها و نتایج "
+"استفاده می‌کند. در حال حاضر، شما از %(currentUsage)s کیلوبایت از فضای "
+"ذخیره‌سازی %(maxStorage)d کیلوبایت استفاده کرده‌اید. برای جلوگیری از خراب"
+" شدن SQL Lab، لطفاً چند برگه کوئری را حذف کنید. شما می‌توانید با استفاده "
+"از ویژگی ذخیره‌سازی قبل از حذف برگه، دوباره به این کوئری‌ها دسترسی پیدا "
+"کنید. توجه داشته باشید که قبل از انجام این کار، باید سایر پنجره‌های SQL "
+"Lab را ببندید."
+
+msgid "SQL Query"
+msgstr "کوئری SQL"
+
+msgid "SQL expression"
+msgstr "عبارت SQL"
+
+msgid "SQL query"
+msgstr "کوئری SQL"
+
+msgid "SQLAlchemy URI"
+msgstr "URI SQLAlchemy"
+
+msgid "SSH Host"
+msgstr "میزبان SSH"
+
+msgid "SSH Password"
+msgstr "رمز عبور SSH"
+
+msgid "SSH Port"
+msgstr "پورت SSH"
+
+msgid "SSH Tunnel"
+msgstr "تونل SSH"
+
+msgid "SSH Tunnel configuration parameters"
+msgstr "پارامترهای پیکربندی تونل SSH"
+
+msgid "SSH Tunnel could not be deleted."
+msgstr "تونل SSH نمی‌تواند حذف شود."
+
+msgid "SSH Tunnel could not be updated."
+msgstr "تونل SSH قابل به‌روزرسانی نبود."
+
+msgid "SSH Tunnel not found."
+msgstr "تونل SSH پیدا نشد."
+
+msgid "SSH Tunnel parameters are invalid."
+msgstr "پارامترهای تونل SSH نامعتبر هستند."
+
+msgid "SSH Tunneling is not enabled"
+msgstr "تکمیل تونل SSH فعال نیست"
+
+msgid "SSL Mode \"require\" will be used."
+msgstr "حالت SSL \"الزامی\" استفاده خواهد شد."
+
+msgid "START (INCLUSIVE)"
+msgstr "شروع (شامل)"
+
+#, python-format
+msgid "STEP %(stepCurr)s OF %(stepLast)s"
+msgstr "مرحله %(stepCurr)s از %(stepLast)s"
+
+msgid "STRING"
+msgstr "رشته"
+
+msgid "SUN"
+msgstr "خورشید"
+
+msgid "Sample Standard Deviation"
+msgstr "انحراف معیار نمونه"
+
+msgid "Sample Variance"
+msgstr "واریانس نمونه"
+
+msgid "Samples"
+msgstr "نمونه‌ها"
+
+msgid "Samples for dataset could not be retrieved."
+msgstr "نمونه‌ها برای مجموعه داده قابل بازیابی نبودند."
+
+msgid "Samples for datasource could not be retrieved."
+msgstr "نمونه‌ها برای منبع داده قابل بازیابی نیستند."
+
+msgid "Sankey Chart"
+msgstr "نقشه سازه سانکی"
+
+msgid "Satellite"
+msgstr "ماهواره"
+
+msgid "Satellite Streets"
+msgstr "خیابان‌های ماهواره‌ای"
+
+msgid "Saturday"
+msgstr "شنبه"
+
+msgid "Save"
+msgstr "ذخیره کنید"
+
+msgid "Save & Explore"
+msgstr "ذخیره و کاوش"
+
+msgid "Save & go to dashboard"
+msgstr "ذخیره و رفتن به داشبورد"
+
+msgid "Save (Overwrite)"
+msgstr "ذخیره (نوشته مجدد)"
+
+msgid "Save as"
+msgstr "ذخیره به عنوان"
+
+msgid "Save as Dataset"
+msgstr "ذخیره به عنوان مجموعه داده"
+
+msgid "Save as dataset"
+msgstr "ذخیره به عنوان مجموعه داده"
+
+msgid "Save as new"
+msgstr "ذخیره به عنوان جدید"
+
+msgid "Save as..."
+msgstr "ذخیره به عنوان..."
+
+msgid "Save as:"
+msgstr "ذخیره به عنوان:"
+
+msgid "Save changes"
+msgstr "تغییرات را ذخیره کنید"
+
+msgid "Save chart"
+msgstr "نمودار را ذخیره کن"
+
+msgid "Save dashboard"
+msgstr "داشبورد را ذخیره کنید"
+
+msgid "Save dataset"
+msgstr "ذخیره مجموعه داده"
+
+msgid "Save for this session"
+msgstr "برای این نشست ذخیره کن"
+
+msgid "Save or Overwrite Dataset"
+msgstr "ذخیره یا بازنویسی مجموعه داده"
+
+msgid "Save query"
+msgstr "ذخیره کوئری"
+
+msgid "Save this query as a virtual dataset to continue exploring"
+msgstr ""
+"این کوئری را به عنوان یک مجموعه داده مجازی ذخیره کنید تا بتوانید به کاوش "
+"ادامه دهید."
+
+msgid "Saved"
+msgstr "ذخیره شد"
+
+msgid "Saved Queries"
+msgstr "سوالات ذخیره شده"
+
+msgid "Saved expressions"
+msgstr "عبارات ذخیره شده"
+
+msgid "Saved metric"
+msgstr "متریک ذخیره شده"
+
+msgid "Saved queries"
+msgstr "کوئری‌های ذخیره‌شده"
+
+msgid "Saved queries could not be deleted."
+msgstr "کوئری‌های ذخیره‌شده قابل حذف نیستند."
+
+msgid "Saved query not found."
+msgstr "کوئری ذخیره شده یافت نشد."
+
+msgid "Saved query parameters are invalid."
+msgstr "پارامترهای کوئری ذخیره شده نامعتبر هستند."
+
+#, fuzzy
+msgid "Saving..."
+msgstr "در حال بارگذاری..."
+
+msgid "Scale and Move"
+msgstr "مقیاس و جابجایی"
+
+msgid "Scale only"
+msgstr "تنها مقیاس"
+
+msgid "Scatter"
+msgstr "پراکندگی"
+
+msgid "Scatter Plot"
+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 ""
+"نمودار پراکندگی دارای محور افقی در واحدهای خطی است و نقاط به ترتیب متصل "
+"شده‌اند. این نمودار رابطه آماری بین دو متغیر را نشان می‌دهد."
+
+msgid "Schedule"
+msgstr "برنامه‌ریزی"
+
+msgid "Schedule a new email report"
+msgstr "یک گزارش ایمیلی جدید برنامه‌ریزی کنید"
+
+msgid "Schedule email report"
+msgstr "زمانبندی گزارش ایمیل"
+
+msgid "Schedule query"
+msgstr "زمان‌بندی کوئری"
+
+msgid "Schedule the query periodically"
+msgstr "استعلام را به صورت دوره‌ای زمان‌بندی کنید."
+
+msgid "Schedule type"
+msgstr "نوع زمانبندی"
+
+msgid "Scheduled"
+msgstr "زمانبندی شده"
+
+msgid "Scheduled at (UTC)"
+msgstr "برنامه‌ریزی شده در (UTC)"
+
+msgid "Scheduled task executor not found"
+msgstr "اجزای اجرایی وظیفه زمان‌بندی شده پیدا نشدند"
+
+msgid "Schema"
+msgstr "طرح‌بندی"
+
+msgid "Schema cache timeout"
+msgstr "زمان محدودیت کش схемه"
+
+msgid "Schemas allowed for File upload"
+msgstr "طرح‌های مجاز برای بارگذاری فایل"
+
+msgid "Scope"
+msgstr "دامنه"
+
+msgid "Scoping"
+msgstr "دامنه‌گذاری"
+
+msgid "Screenshot width"
+msgstr "عرض عکس‌برداری"
+
+#, python-format
+msgid "Screenshot width must be between %(min)spx and %(max)spx"
+msgstr "عرض تصویر باید بین %(min)spx و %(max)spx باشد"
+
+msgid "Scroll"
+msgstr "اسکرول"
+
+msgid "Scroll down to the bottom to enable overwriting changes. "
+msgstr "برای فعال‌سازی تغییرات بازنویسی، به پایین اسکرول کنید."
+
+msgid "Search"
+msgstr "جستجو"
+
+#, python-format
+msgid "Search %s records"
+msgstr "جستجوی %s رکورد"
+
+msgid "Search / Filter"
+msgstr "جستجو / فیلتر"
+
+msgid "Search Metrics & Columns"
+msgstr "جستجوی معیارها و ستون‌ها"
+
+msgid "Search all charts"
+msgstr "جستجوی تمام نمودارها"
+
+msgid "Search box"
+msgstr "جعبه جستجو"
+
+msgid "Search by query text"
+msgstr "جستجو بر اساس متن کوئری"
+
+msgid "Search columns"
+msgstr "جستجوی ستون‌ها"
+
+msgid "Search in filters"
+msgstr "جستجو در فیلترها"
+
+msgid "Search..."
+msgstr "جستجو..."
+
+msgid "Second"
+msgstr "دوم"
+
+msgid "Secondary"
+msgstr "ثانویه"
+
+msgid "Secondary Metric"
+msgstr "معیار ثانویه"
+
+msgid "Secondary currency format"
+msgstr "قالب ارز ثانویه"
+
+msgid "Secondary y-axis Bounds"
+msgstr "محدودیت‌های محور ثانویه y"
+
+msgid "Secondary y-axis format"
+msgstr "فرمت محور ثانویه y"
+
+msgid "Secondary y-axis title"
+msgstr "عنوان محور y ثانویه"
+
+#, python-format
+msgid "Seconds %s"
+msgstr "ثانیه‌ها %s"
+
+msgid "Seconds value"
+msgstr "مقدار ثانیه"
+
+msgid "Secure extra"
+msgstr "ایمن اضافه"
+
+msgid "Security"
+msgstr "امنیت"
+
+#, python-format
+msgid "See all %(tableName)s"
+msgstr "تمام %(tableName)s را مشاهده کنید"
+
+msgid "See less"
+msgstr "کمتر ببینید"
+
+msgid "See more"
+msgstr "بیشتر ببینید"
+
+msgid "See query details"
+msgstr "جزئیات کوئری را ببینید"
+
+msgid "See table schema"
+msgstr "جدول طرح را ببینید"
+
+msgid "Select"
+msgstr "انتخاب کنید"
+
+msgid "Select ..."
+msgstr "انتخاب کنید ..."
+
+msgid "Select Delivery Method"
+msgstr "روش تحویل را انتخاب کنید"
+
+msgid "Select Tags"
+msgstr "برچسب‌ها را انتخاب کنید"
+
+msgid "Select Viz Type"
+msgstr "نوع بصری را انتخاب کنید"
+
+msgid "Select a column"
+msgstr "یک ستون را انتخاب کنید"
+
+msgid "Select a dashboard"
+msgstr "داشبوردی را انتخاب کنید"
+
+msgid "Select a database"
+msgstr "یک پایگاه داده را انتخاب کنید"
+
+msgid "Select a database table and create dataset"
+msgstr "یک جدول پایگاه داده را انتخاب کرده و مجموعه داده ایجاد کنید."
+
+msgid "Select a database table."
+msgstr "یک جدول پایگاه داده را انتخاب کنید."
+
+msgid "Select a database to connect"
+msgstr "یک پایگاه داده برای اتصال انتخاب کنید"
+
+msgid "Select a database to upload the file to"
+msgstr "یک پایگاه داده را برای بارگذاری فایل انتخاب کنید"
+
+msgid "Select a database to write a query"
+msgstr "یک پایگاه داده را برای نوشتن یک کوئری انتخاب کنید"
+
+msgid "Select a dataset"
+msgstr "یک مجموعه داده را انتخاب کنید"
+
+msgid "Select a delimiter for this data"
+msgstr "یک جداکننده برای این داده‌ها انتخاب کنید"
+
+msgid "Select a dimension"
+msgstr "ابعادی را انتخاب کنید"
+
+msgid "Select a metric to display on the right axis"
+msgstr "یک معیار را برای نمایش در محور راست انتخاب کنید"
+
+msgid ""
+"Select a metric to display. You can use an aggregation function on a "
+"column or write custom SQL to create a metric."
+msgstr ""
+"یک متریک برای نمایش انتخاب کنید. می‌توانید از یک تابع تجمیع در یک ستون "
+"استفاده کنید یا SQL سفارشی بنویسید تا یک متریک ایجاد کنید."
+
+msgid "Select a schema"
+msgstr "یک طرح را انتخاب کنید"
+
+msgid "Select a schema if the database supports this"
+msgstr "یک اسکیما انتخاب کنید اگر پایگاه داده از این گزینه پشتیبانی می‌کند."
+
+msgid "Select a sheet name from the uploaded file"
+msgstr "یک نام برگه را از فایل بارگذاری شده انتخاب کنید"
+
+#, fuzzy
+msgid "Select a tab"
+msgstr "یک پایگاه داده را انتخاب کنید"
+
+msgid ""
+"Select a time grain for the visualization. The grain is the time interval"
+" represented by a single point on the chart."
+msgstr ""
+"یک دانه زمانی برای بصری‌سازی انتخاب کنید. دانه زمان، بازه‌ای از زمان است "
+"که توسط یک نقطه واحد در نمودار نشان داده می‌شود."
+
+msgid "Select a visualization type"
+msgstr "یک نوع تجسم را انتخاب کنید"
+
+msgid "Select aggregate options"
+msgstr "گزینه‌های تجمعی را انتخاب کنید"
+
+msgid "Select all data"
+msgstr "تمام داده‌ها را انتخاب کنید"
+
+msgid "Select all items"
+msgstr "همه اقلام را انتخاب کنید"
+
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
+
+msgid "Select catalog or type to search catalogs"
+msgstr "فهرست یا نوع را برای جستجوی فهرست‌ها انتخاب کنید"
+
+#, fuzzy
+msgid "Select channels"
+msgstr "نمودارها را انتخاب کنید"
+
+msgid "Select chart"
+msgstr "نمودار را انتخاب کنید"
+
+msgid "Select chart to use"
+msgstr "نمودار مورد نظر را انتخاب کنید"
+
+msgid "Select charts"
+msgstr "نمودارها را انتخاب کنید"
+
+msgid "Select color scheme"
+msgstr "انتخاب طرح رنگ"
+
+msgid "Select column"
+msgstr "ستون را انتخاب کنید"
+
+#, fuzzy
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr "یک لیست جدا شده با ویرگول از ستون‌هایی که باید به‌عنوان تاریخ تجزیه شوند"
+
+msgid ""
+"Select columns that will be displayed in the table. You can multiselect "
+"columns."
+msgstr ""
+"ستون‌هایی را که در جدول نمایش داده می‌شوند انتخاب کنید. می‌توانید چندین "
+"ستون را همزمان انتخاب کنید."
+
+msgid "Select content type"
+msgstr "نوع محتوا را انتخاب کنید"
+
+msgid "Select current page"
+msgstr "انتخاب صفحه جاری"
+
+msgid "Select dashboard"
+msgstr "داشبورد را انتخاب کنید"
+
+msgid "Select dashboard to use"
+msgstr "داشبورد مورد نظر را انتخاب کنید"
+
+msgid "Select dashboards"
+msgstr "داشبوردها را انتخاب کنید"
+
+msgid "Select database"
+msgstr "پایگاه داده را انتخاب کنید"
+
+msgid "Select database or type to search databases"
+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 "
+msgstr ""
+"برای اتصال موفق به پایگاه داده، انتخاب پایگاه‌های داده نیاز به تکمیل "
+"فیلدهای اضافی در زبانه پیشرفته دارد. بیاموزید که پایگاه‌های داده شما چه "
+"الزامات مالی دارند."
+
+msgid "Select dataset source"
+msgstr "منبع مجموعه داده را انتخاب کنید"
+
+msgid "Select file"
+msgstr "فایل را انتخاب کنید"
+
+msgid "Select filter"
+msgstr "فیلتر را انتخاب کنید"
+
+msgid "Select filter plugin using AntD"
+msgstr "انتخاب پلاگین فیلتر با استفاده از AntD"
+
+msgid "Select first filter value by default"
+msgstr "به طور پیش‌فرض اولین مقدار فیلتر را انتخاب کنید"
+
+msgid "Select format"
+msgstr "انتخاب فرمت"
+
+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 ""
+"یک یا چند متریک را برای نمایش انتخاب کنید که به درصد کل نمایش داده خواهد "
+"شد. متریک‌های درصدی تنها از داده‌های داخل محدودیت ردیف محاسبه خواهند شد. "
+"می‌توانید از یک تابع تجمیع بر روی یک ستون استفاده کنید یا SQL سفارشی "
+"بنویسید تا یک متریک درصدی ایجاد کنید."
+
+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 ""
+"یک یا چند معیار را برای نمایش انتخاب کنید. می‌توانید از یک تابع تجمیع بر "
+"روی یک ستون استفاده کنید یا SQL سفارشی بنویسید تا یک معیار بسازید."
+
+msgid "Select operator"
+msgstr "عملگر انتخاب"
+
+msgid "Select or type a custom value..."
+msgstr "یک مقدار سفارشی را انتخاب کنید یا تایپ کنید..."
+
+msgid "Select or type a value"
+msgstr "یک مقدار را انتخاب یا وارد کنید"
+
+msgid "Select or type currency symbol"
+msgstr "نماد ارز را انتخاب کنید یا وارد کنید"
+
+msgid "Select or type dataset name"
+msgstr "نام مجموعه داده را انتخاب یا تایپ کنید"
+
+msgid "Select owners"
+msgstr "مالکین را انتخاب کنید"
+
+#, fuzzy
+msgid "Select page size"
+msgstr "برچسب‌ها را انتخاب کنید"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "مالکین را انتخاب کنید"
+
+msgid "Select saved metrics"
+msgstr "ماتریس‌های ذخیره شده را انتخاب کنید"
+
+msgid "Select saved queries"
+msgstr "انتخاب کوئری‌های ذخیره‌شده"
+
+msgid "Select schema or type to search schemas"
+msgstr "طرح یا نوعی را برای جستجوی طرح‌ها انتخاب کنید"
+
+msgid "Select scheme"
+msgstr "انتخاب طرح"
+
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
+msgid "Select subject"
+msgstr "موضوع را انتخاب کنید"
+
+#, fuzzy
+msgid "Select tab"
+msgstr "غیرفعال کردن همه"
+
+msgid "Select table or type to search tables"
+msgstr "جدول را انتخاب کنید یا برای جستجوی جداول تایپ کنید"
+
+msgid "Select the Annotation Layer you would like to use."
+msgstr "لایه یادداشت (Annotation Layer) مورد نظر خود را انتخاب کنید."
+
+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 ""
+"چارت‌هایی را که می‌خواهید فیلترهای متقاطع به آن‌ها اعمال شود، در این "
+"داشبورد انتخاب کنید. عدم انتخاب یک چارت به این معنی است که آن چارت از "
+"فیلتر شدن هنگام اعمال فیلترهای متقاطع از هر چارت موجود در داشبورد مستثنی "
+"خواهد شد. می‌توانید گزینه \"تمام چارت‌ها\" را انتخاب کنید تا فیلترهای "
+"متقاطع به همه چارت‌هایی که از یک مجموعه داده مشابه استفاده می‌کنند یا "
+"دارای همان نام ستون در داشبورد هستند، اعمال شود."
+
+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 "Select the geojson column"
+msgstr "ستون geojson را انتخاب کنید"
+
+#, python-format
+msgid ""
+"Select values in highlighted field(s) in the control panel. Then run the "
+"query by clicking on the %s button."
+msgstr ""
+"مقدارهای highlighted شده را در فیلد(های) پنل کنترل انتخاب کنید. سپس با "
+"کلیک روی دکمه %s، کوئری را اجرا کنید."
+
+msgid "Selecting a database is required"
+msgstr "انتخاب یک پایگاه داده الزامی است"
+
+msgid "Send as CSV"
+msgstr "به‌عنوان CSV ارسال کنید"
+
+msgid "Send as PDF"
+msgstr "به صورت PDF ارسال کنید"
+
+msgid "Send as PNG"
+msgstr "به‌صورت PNG ارسال کنید"
+
+msgid "Send as text"
+msgstr "متن را ارسال کنید"
+
+msgid "September"
+msgstr "سپتامبر"
+
+msgid "Sequential"
+msgstr "متوالی"
+
+msgid "Series"
+msgstr "سری"
+
+msgid "Series Height"
+msgstr "ارتفاع سری"
+
+msgid "Series Order"
+msgstr "ترتیب سری‌ها"
+
+msgid "Series Style"
+msgstr "سبک سری"
+
+msgid "Series chart type (line, bar etc)"
+msgstr "نوع نمودار سری (خطی، میله‌ای و غیره)"
+
+msgid "Series colors"
+msgstr "رنگ‌های سری‌ها"
+
+msgid "Series limit"
+msgstr "محدودیت سری"
+
+msgid "Series type"
+msgstr "نوع سری"
+
+msgid "Server Page Length"
+msgstr "طول صفحه سرور"
+
+msgid "Server pagination"
+msgstr "صفحه‌بندی سرور"
+
+msgid "Service Account"
+msgstr "حساب خدمات"
+
+#, fuzzy
+msgid "Service version"
+msgstr "حساب خدمات"
+
+msgid "Set auto-refresh interval"
+msgstr "فواصل تازه‌سازی خودکار را تنظیم کنید"
+
+msgid "Set filter mapping"
+msgstr "تنظیم نگاشتی فیلتر"
+
+msgid "Set header rows and the number of rows to read or skip."
+msgstr ""
+"تعداد سطرهای هدر و تعداد سطرهایی که باید خوانده یا نادیده گرفته شوند را "
+"تنظیم کنید."
+
+msgid "Set up an email report"
+msgstr "یک گزارش ایمیلی تنظیم کنید"
+
+msgid "Set up basic details, such as name and description."
+msgstr "جزئیات اولیه را تنظیم کنید، مانند نام و توضیحات."
+
+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 ""
+"سطوح سلسله‌مراتب نمودار را تنظیم می‌کند. هر سطح توسط یک حلقه نمایش داده "
+"می‌شود و دایره داخلی‌ترین به‌عنوان بالاترین سطح سلسله‌مراتب شناخته "
+"می‌شود."
+
+msgid "Settings"
+msgstr "تنظیمات"
+
+msgid "Settings for time series"
+msgstr "تنظیمات برای سری زمانی"
+
+#, fuzzy
+msgid "Shape"
+msgstr "شکل پای"
+
+msgid "Share"
+msgstr "به اشتراک گذاری"
+
+msgid "Share chart by email"
+msgstr "نمودار را از طریق ایمیل به اشتراک بگذارید"
+
+msgid "Share permalink by email"
+msgstr "لینک دائمی را از طریق ایمیل به اشتراک بگذارید"
+
+msgid "Shared query"
+msgstr "کوئری مشترک"
+
+msgid "Shared query fields"
+msgstr "فیلدهای کوئری مشترک"
+
+msgid "Sheet name"
+msgstr "نام شیت"
+
+msgid "Shift + Click to sort by multiple columns"
+msgstr "شیفت + کلیک برای مرتب‌سازی بر اساس چندین ستون"
+
+#, fuzzy
+msgid "Shift start date"
+msgstr "تاریخ شروع شیفت"
+
+msgid "Short description must be unique for this layer"
+msgstr "توصیف کوتاه باید برای این لایه منحصر به فرد باشد."
+
+msgid ""
+"Should daily seasonality be applied. An integer value will specify "
+"Fourier order of seasonality."
+msgstr ""
+"آیا باید فصلیت روزانه اعمال شود؟ یک عدد صحیح میزان مرتبه فوریه فصلیت را "
+"مشخص خواهد کرد."
+
+msgid ""
+"Should weekly seasonality be applied. An integer value will specify "
+"Fourier order of seasonality."
+msgstr ""
+"آیا باید فصلی‌سازی هفتگی اعمال شود؟ یک مقدار صحیح ترتیب فوریه فصلی‌سازی "
+"را مشخص خواهد کرد."
+
+msgid ""
+"Should yearly seasonality be applied. An integer value will specify "
+"Fourier order of seasonality."
+msgstr ""
+"باید فصلی سالانه اعمال شود. یک مقدار عدد صحیح ترتیب فوریه فصلیت را مشخص "
+"خواهد کرد."
+
+msgid "Show"
+msgstr "نمایش بده"
+
+#, python-format
+msgid "Show %s entries"
+msgstr "نمایش %s ورودی‌ها"
+
+msgid "Show Bubbles"
+msgstr "نمایش حباب‌ها"
+
+msgid "Show CREATE VIEW statement"
+msgstr "بیان CREATE VIEW را نشان بدهید"
+
+msgid "Show Cell bars"
+msgstr "نمودار میله‌ای سلول‌ها را نمایش بدهید"
+
+msgid "Show Dashboard"
+msgstr "نمایش داشبورد"
+
+msgid "Show Labels"
+msgstr "نمایش برچسب‌ها"
+
+msgid "Show Log"
+msgstr "نمایش لاگ"
+
+msgid "Show Markers"
+msgstr "نمایش نشانگرها"
+
+msgid "Show Metric Names"
+msgstr "نمایش نام‌های متریک"
+
+msgid "Show Range Filter"
+msgstr "نمایش فیلتر بازه"
+
+msgid "Show Timestamp"
+msgstr "نمایش زمان‌سنج"
+
+msgid "Show Tooltip Labels"
+msgstr "نمایش برچسب‌های راهنما"
+
+msgid "Show Total"
+msgstr "نمایش مجموع"
+
+msgid "Show Trend Line"
+msgstr "نمودار خط روند را نشان دهید"
+
+msgid "Show Upper Labels"
+msgstr "نمایش برچسب‌های بالایی"
+
+msgid "Show Value"
+msgstr "نمایش مقدار"
+
+msgid "Show Values"
+msgstr "نمایش مقادیر"
+
+msgid "Show Y-axis"
+msgstr "نمایش محور Y"
+
+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 را در نمودار خطی نمایش دهید. در صورتی که حداقل/حداکثر به صورت دستی"
+" تنظیم شده باشد، این مقادیر نمایش داده می‌شوند و در غیر این صورت از "
+"مقادیر حداقل/حداکثر داده‌ها استفاده خواهد شد."
+
+msgid "Show all columns"
+msgstr "همه ستون‌ها را نمایش بدهید"
+
+msgid "Show axis line ticks"
+msgstr "خطوط و علامت‌های محور را نشان بدهید"
+
+msgid "Show cell bars"
+msgstr "نوارهای سلولی را نمایش بده"
+
+msgid "Show chart description"
+msgstr "نمایش توضیحات نمودار"
+
+msgid "Show columns subtotal"
+msgstr "نمایش زیرمجموعه ستون‌ها"
+
+msgid "Show columns total"
+msgstr "نمایش مجموع ستون‌ها"
+
+msgid "Show data points as circle markers on the lines"
+msgstr "نقاط داده را به عنوان نشانگرهای دایره‌ای روی خطوط نمایش دهید."
+
+msgid "Show empty columns"
+msgstr "ستون‌های خالی را نمایش بدهید"
+
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "نمایش %s ورودی‌ها"
+
+msgid ""
+"Show hierarchical relationships of data, with the value represented by "
+"area, showing proportion and contribution to the whole."
+msgstr ""
+"روابط سلسله مراتبی داده‌ها را نشان دهید، به طوری که ارزش با مساحت نشان "
+"داده شود و سهم و مشارکت در کل را نمایش دهد."
+
+msgid "Show info tooltip"
+msgstr "نمایش اطلاعات باکس راهنما"
+
+msgid "Show label"
+msgstr "برچسب را نمایش دهید"
+
+msgid "Show labels when the node has children."
+msgstr "برچسب‌ها را زمانی نمایش دهید که گره دارای فرزندان باشد."
+
+msgid "Show legend"
+msgstr "نمایش افسانه"
+
+msgid "Show less columns"
+msgstr "ستون‌های کمتری را نشان بدهید"
+
+msgid "Show minor ticks on axes."
+msgstr "نشان دادن نوارهای فرعی روی محور‌ها."
+
+msgid "Show only my charts"
+msgstr "فقط نمودارهای من را نمایش بده"
+
+msgid "Show password."
+msgstr "نمایش رمز عبور."
+
+msgid "Show percentage"
+msgstr "درصد را نشان بدهید"
+
+msgid "Show pointer"
+msgstr "نمایش نشانگر"
+
+msgid "Show progress"
+msgstr "نمایش پیشرفت"
+
+msgid "Show rows subtotal"
+msgstr "نمایش زیرمجموعه ردیف‌ها"
+
+msgid "Show rows total"
+msgstr "نمایش مجموع سطرها"
+
+msgid "Show series values on the chart"
+msgstr "نمایش مقادیر سری در نمودار"
+
+msgid "Show split lines"
+msgstr "نمایش خطوط تقسیم"
+
+msgid "Show summary"
+msgstr "نمایش خلاصه"
+
+msgid "Show the value on top of the bar"
+msgstr "نمایش مقدار بر روی نوار"
+
+#, fuzzy
+msgid "Show total"
+msgstr "نمایش مجموع"
+
+msgid ""
+"Show total aggregations of selected metrics. Note that row limit does not"
+" apply to the result."
+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 یا یک مورد خاصی که می‌خواهید مخاطبانتان بر روی آن "
+"تمرکز کنند، دارد."
+
+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 ""
+"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 ""
+"Showcases the flow or link between categories using thickness of chords. "
+"The value and corresponding thickness can be different for each side."
+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 ""
+"پیشرفت یک متریک واحد در مقابل یک هدف مشخص را نمایش می‌دهد. هرچه پرشدگی "
+"بیشتر باشد، متریک به هدف نزدیک‌تر است."
+
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
+msgstr "نمایش %s از %s"
+
+msgid "Shows a list of all series available at that point in time"
+msgstr "فهرستی از تمام سری‌های موجود در آن زمان را نمایش می‌دهد."
+
+msgid "Shows or hides markers for the time series"
+msgstr "نشان دادن یا پنهان کردن نشانگرها برای سری‌های زمانی"
+
+msgid "Significance Level"
+msgstr "سطح معناداری"
+
+msgid "Simple"
+msgstr "ساده"
+
+msgid "Simple ad-hoc metrics are not enabled for this dataset"
+msgstr "متریک‌های ساده و موردی برای این مجموعه داده فعال نیستند."
+
+msgid "Single"
+msgstr "تک نفره"
+
+msgid "Single Metric"
+msgstr "متریک تکی"
+
+msgid "Single Value"
+msgstr "مقدار تک‌گانه"
+
+msgid "Single value"
+msgstr "مقدار تنها"
+
+msgid "Single value type"
+msgstr "نوع مقدار واحد"
+
+#, fuzzy
+msgid "Size in pixels"
+msgstr "اندازه شبکه را به پیکسل تعیین می‌کند"
+
+msgid "Size of edge symbols"
+msgstr "اندازه نمادهای لبه"
+
+msgid "Size of marker. Also applies to forecast observations."
+msgstr "اندازه نشانگر. همچنین برای پیش‌بینی مشاهدات اعمال می‌شود."
+
+msgid "Skip blank lines rather than interpreting them as Not A Number values"
+msgstr ""
+"خطوط خالی را رد کنید به جای اینکه آنها را به عنوان مقادیر عددی غیرمعتبر "
+"تفسیر کنید."
+
+msgid "Skip rows"
+msgstr "ردیف‌ها را رد کن"
+
+msgid "Skip spaces after delimiter"
+msgstr "فضاها را بعد از جداکننده نادیده بگیرید"
+
+msgid "Slug"
+msgstr "اسلاگ"
+
+msgid "Small"
+msgstr "کوچک"
+
+msgid "Small number format"
+msgstr "فرمت عدد کوچک"
+
+msgid "Smooth Line"
+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 ""
+"نمودار خطی صاف یک نوع از نمودار خطی است. بدون زاویه‌ها و لبه‌های تیز، "
+"نمودار خطی صاف گاهی اوقات هوشمندتر و حرفه‌ای‌تر به نظر می‌رسد."
+
+msgid "Solid"
+msgstr "سخت"
+
+msgid "Some roles do not exist"
+msgstr "برخی از نقش‌ها وجود ندارند"
+
+msgid ""
+"Something went wrong with embedded authentication. Check the dev console "
+"for details."
+msgstr ""
+
+msgid "Something went wrong."
+msgstr "چیزی اشتباه پیش رفت."
+
+#, python-format
+msgid "Sorry there was an error fetching database information: %s"
+msgstr "متأسفیم، در بازیابی اطلاعات پایگاه داده خطایی رخ داده است: %s"
+
+msgid "Sorry there was an error fetching saved charts: "
+msgstr "متأسفم، خطایی در بارگذاری نمودارهای ذخیره شده وجود داشت:"
+
+msgid "Sorry, An error occurred"
+msgstr "متاسفم، یک خطا رخ داده است"
+
+msgid "Sorry, an error occurred"
+msgstr "متأسفم، یک خطا رخ داد"
+
+msgid "Sorry, an unknown error occurred"
+msgstr "متاسفیم، یک خطای ناشناخته رخ داده است."
+
+msgid "Sorry, an unknown error occurred."
+msgstr "متأسفم، یک خطای ناشناس رخ داد."
+
+msgid "Sorry, something went wrong. Embedding could not be deactivated."
+msgstr "متأسفم، مشکلی پیش آمد. غیر فعال کردن جاسازی امکان‌پذیر نیست."
+
+msgid "Sorry, something went wrong. Please try again."
+msgstr "متأسفم، مشکلی پیش آمده است. لطفاً دوباره تلاش کنید."
+
+msgid "Sorry, something went wrong. Try again later."
+msgstr "متأسفم، مشکلی پیش آمده است. بعداً تلاش کنید."
+
+#, python-format
+msgid "Sorry, there was an error saving this %s: %s"
+msgstr "متاسفم، در ذخیره‌سازی این %s: %s خطا رخ داد."
+
+#, python-format
+msgid "Sorry, there was an error saving this dashboard: %s"
+msgstr "متاسفیم، خطایی در ذخیره‌سازی این داشبورد رخ داد: %s"
+
+msgid "Sorry, your browser does not support copying."
+msgstr "متأسفم، مرورگر شما از کپی کردن پشتیبانی نمی‌کند."
+
+msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!"
+msgstr ""
+"متأسفم، مرورگر شما از کپی کردن پشتیبانی نمی‌کند. از Ctrl / Cmd + C "
+"استفاده کنید!"
+
+msgid "Sort"
+msgstr "مرتب‌سازی"
+
+msgid "Sort Descending"
+msgstr "مرتب‌سازی به صورت نزولی"
+
+msgid "Sort Metric"
+msgstr "ترتیب معیار"
+
+msgid "Sort Series Ascending"
+msgstr "مرتب‌سازی سری به ترتیب صعودی"
+
+msgid "Sort Series By"
+msgstr "مرتب‌سازی سری بر اساس"
+
+msgid "Sort X Axis"
+msgstr "مرتب‌سازی محور X"
+
+msgid "Sort Y Axis"
+msgstr "مرتب‌سازی محور Y"
+
+msgid "Sort ascending"
+msgstr "مرتب‌سازی صعودی"
+
+msgid "Sort by"
+msgstr "مرتب‌سازی بر اساس"
+
+#, python-format
+msgid "Sort by %s"
+msgstr "مرتب‌سازی بر اساس %s"
+
+msgid "Sort by metric"
+msgstr "مرتب‌سازی بر اساس معیار"
+
+msgid "Sort columns alphabetically"
+msgstr "ستون‌ها را به ترتیب حروف الفبا مرتب کنید"
+
+msgid "Sort columns by"
+msgstr "ستون‌ها را بر اساس"
+
+msgid "Sort descending"
+msgstr "مرتب‌سازی به ترتیب نزولی"
+
+msgid "Sort filter values"
+msgstr "مرتب‌سازی مقادیر فیلتر"
+
+msgid "Sort metric"
+msgstr "مرتب‌سازی معیار"
+
+#, fuzzy
+msgid "Sort query by"
+msgstr "خروجی کوئری"
+
+msgid "Sort rows by"
+msgstr "نظیم ردیف‌ها بر اساس"
+
+msgid "Sort series in ascending order"
+msgstr "سری را به ترتیب صعودی مرتب کنید"
+
+msgid "Sort type"
+msgstr "نوع مرتب‌سازی"
+
+msgid "Source"
+msgstr "منبع"
+
+msgid "Source SQL"
+msgstr "منبع SQL"
+
+msgid "Source category"
+msgstr "دسته منبع"
+
+msgid "Sparkline"
+msgstr "اسپرک‌لاین"
+
+msgid "Spatial"
+msgstr "مکانی"
+
+msgid "Specific Date/Time"
+msgstr "تاریخ/زمان مشخص"
+
+msgid "Specify name to CREATE TABLE AS schema in: public"
+msgstr "نام را برای ایجاد جدول به عنوان طرح در: عمومی مشخص کنید"
+
+msgid "Specify name to CREATE VIEW AS schema in: public"
+msgstr "نام را برای ایجاد نمایی به عنوان طرح در: عمومی مشخص کنید"
+
+msgid ""
+"Specify the database version. This is used with Presto for query cost "
+"estimation, and Dremio for syntax changes, among others."
+msgstr ""
+"نسخه پایگاه داده را مشخص کنید. این مورد با Presto برای برآورد هزینه Query"
+" و با Dremio برای تغییرات نحوی و سایر موارد استفاده می‌شود."
+
+msgid "Split number"
+msgstr "عدد را تقسیم کن"
+
+msgid "Square kilometers"
+msgstr "کیلومتر مربع"
+
+msgid "Square meters"
+msgstr "متر مربع"
+
+msgid "Square miles"
+msgstr "مایل مربع"
+
+msgid "Stack"
+msgstr "پشته"
+
+msgid "Stack series"
+msgstr "سری استک"
+
+msgid "Stack series on top of each other"
+msgstr "سری‌ها را بر روی یکدیگر انباشته کنید"
+
+msgid "Stacked"
+msgstr "انباشت شده"
+
+msgid "Stacked Bars"
+msgstr "نوارهای انباشته شده"
+
+msgid "Stacked Style"
+msgstr "سبک انباشته"
+
+msgid "Standard time series"
+msgstr "زمان سری استاندارد"
+
+msgid "Start"
+msgstr "شروع"
+
+msgid "Start (Longitude, Latitude): "
+msgstr "شروع (طول جغرافیایی، عرض جغرافیایی):"
+
+msgid "Start Longitude & Latitude"
+msgstr "طول و عرض اولیه"
+
+msgid "Start angle"
+msgstr "زاویه شروع"
+
+msgid "Start at (UTC)"
+msgstr "شروع در (UTC)"
+
+msgid "Start date"
+msgstr "تاریخ شروع"
+
+msgid "Start date included in time range"
+msgstr "تاریخ شروع شامل بازه زمانی است"
+
+msgid "Start y-axis at 0"
+msgstr "محور y را از ۰ شروع کنید"
+
+msgid ""
+"Start y-axis at zero. Uncheck to start y-axis at minimum value in the "
+"data."
+msgstr ""
+"محور y را از صفر شروع کنید. تیک را بردارید تا محور y از حداقل مقدار در "
+"داده‌ها شروع شود."
+
+msgid "Started"
+msgstr "شروع شد"
+
+msgid "State"
+msgstr "ایالت"
+
+#, python-format
+msgid "Statement %(statement_num)s out of %(statement_count)s"
+msgstr "بیانیه %(statement_num)s از %(statement_count)s"
+
+msgid "Statistical"
+msgstr "آماری"
+
+msgid "Status"
+msgstr "وضعیت"
+
+msgid "Step - end"
+msgstr "مرحله - پایان"
+
+msgid "Step - middle"
+msgstr "مرحله - وسط"
+
+msgid "Step - start"
+msgstr "مرحله - شروع"
+
+msgid "Step type"
+msgstr "نوع مرحله"
+
+msgid "Stepped Line"
+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 ""
+"نمودار خطی پله‌ای (که به آن نمودار پله‌ای نیز گفته می‌شود) یک نوع مختلف "
+"از نمودار خطی است که در آن خط یک سری پله‌ها را بین نقاط داده تشکیل "
+"می‌دهد. نمودار پله‌ای می‌تواند در زمانی که می‌خواهید تغییرات را که در "
+"فواصل نامنظم رخ می‌دهد نمایش دهید، مفید باشد."
+
+msgid "Stop"
+msgstr "متوقف شوید"
+
+msgid "Stop query"
+msgstr "متوقف کردن کوئری"
+
+msgid "Stop running (Ctrl + e)"
+msgstr "اجرای توقف (Ctrl + e)"
+
+msgid "Stop running (Ctrl + x)"
+msgstr "اجرا را متوقف کنید (Ctrl + x)"
+
+msgid "Stopped an unsafe database connection"
+msgstr "اتصال غیر ایمن به پایگاه داده متوقف شد"
+
+msgid "Stream"
+msgstr "جریان"
+
+msgid "Streets"
+msgstr "خیابان‌ها"
+
+msgid "Strength to pull the graph toward center"
+msgstr "قدرت کشیدن نمودار به سمت مرکز"
+
+msgid "Stroke Color"
+msgstr "رنگ خط"
+
+msgid "Stroke Width"
+msgstr "عرض خط"
+
+msgid "Stroked"
+msgstr "خط خورده"
+
+msgid "Structural"
+msgstr "ساختاری"
+
+msgid "Style"
+msgstr "سبک"
+
+msgid "Style the ends of the progress bar with a round cap"
+msgstr "انتهای نوار پیشرفت را با یک سرگرد طراحی کنید"
+
+msgid "Subdomain"
+msgstr "زیر دامنه"
+
+msgid "Subheader Font Size"
+msgstr "اندازه فونت زیرعنوان"
+
+msgid "Submit"
+msgstr "ارسال"
+
+#, fuzzy
+msgid "Subtitle"
+msgstr "عنوان برگه"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "اندازه حباب"
+
+msgid "Subtotal"
+msgstr "زیرمجموعه"
+
+msgid "Success"
+msgstr "موفقیت"
+
+msgid "Successfully changed dataset!"
+msgstr "دیتاست با موفقیت تغییر کرد!"
+
+msgid "Suffix"
+msgstr "پسوند"
+
+msgid "Suffix to apply after the percentage display"
+msgstr "پسوندی که باید بعد از نمایش درصد اضافه شود"
+
+msgid "Sum"
+msgstr "جمع"
+
+msgid "Sum as Fraction of Columns"
+msgstr "جمع به عنوان کسری از ستون‌ها"
+
+msgid "Sum as Fraction of Rows"
+msgstr "جمع به عنوان کسر سطرها"
+
+msgid "Sum as Fraction of Total"
+msgstr "جمع به عنوان کسر کل"
+
+msgid "Sum of values over specified period"
+msgstr "مجموع مقادیر در بازه زمانی مشخص شده"
+
+msgid "Sum values"
+msgstr "مجموع مقادیر"
+
+msgid "Summary"
+msgstr "خلاصه"
+
+msgid "Sunburst Chart"
+msgstr "نمودار خورشیدی"
+
+msgid "Sunday"
+msgstr "یکشنبه"
+
+msgid "Superset Chart"
+msgstr "چارت سوپرست"
+
+msgid "Superset Embedded SDK documentation."
+msgstr "مستندات SDK جاسازی شده Superset."
+
+msgid "Superset chart"
+msgstr "چارت سوپرست"
+
+msgid "Superset encountered an error while running a command."
+msgstr "سوپرسِت در حین اجرای یک دستور با خطا مواجه شد."
+
+msgid "Superset encountered an unexpected error."
+msgstr "سوپرسِت با یک خطای غیرمنتظره مواجه شد."
+
+msgid "Supported databases"
+msgstr "پایگاه‌های داده پشتیبانی‌شده"
+
+msgid "Swap dataset"
+msgstr "تعویض داده‌ها"
+
+msgid "Swap rows and columns"
+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 ""
+"چاقوی چندکاره سوئیسی برای مشاهده داده‌ها. بین نمودارهای نموداری، خطی، "
+"پراکنده و ستونی انتخاب کنید. این نوع بصری‌سازی دارای گزینه‌های "
+"سفارشی‌سازی زیادی نیز هست."
+
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
+msgid "Symbol"
+msgstr "نماد"
+
+msgid "Symbol of two ends of edge line"
+msgstr "نماد دو انتهای خط لبه"
+
+msgid "Symbol size"
+msgstr "اندازه نماد"
+
+msgid "Sync Permissions"
+msgstr ""
+
+msgid "Sync columns from source"
+msgstr "همگام‌سازی ستون‌ها از منبع"
+
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
+msgid "Syntax"
+msgstr "نحو"
+
+#, python-format
+msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s"
+msgstr ""
+"خطای نحوی: %(qualifier)s ورودی \"%(input)s\" انتظار \"%(expected)s\" را "
+"دارد."
+
+msgid "TABLES"
+msgstr "جدول‌ها"
+
+msgid "TEMPORAL_RANGE"
+msgstr "محدوده_زمانی"
+
+msgid "THU"
+msgstr "پنج‌شنبه"
+
+msgid "TUE"
+msgstr "سه‌شنبه"
+
+msgid "Tab name"
+msgstr "نام تب"
+
+#, python-format
+msgid "Tab schema is invalid, caused by: %(error)s"
+msgstr "طرح جدول نامعتبر است، ناشی از: %(error)s"
+
+msgid "Tab title"
+msgstr "عنوان برگه"
+
+msgid "Table"
+msgstr "جدول"
+
+#, python-format
+msgid "Table %(table)s wasn't found in the database %(db)s"
+msgstr "جدول %(table)s در پایگاه داده %(db)s پیدا نشد."
+
+msgid "Table Name"
+msgstr "نام جدول"
+
+#, python-format
+msgid ""
+"Table [%(table)s] could not be found, please double check your database "
+"connection, schema, and table name"
+msgstr ""
+"جدول [%(table)s] یافت نشد، لطفاً اتصال به پایگاه داده، طرح (schema) و نام"
+" جدول را دوباره بررسی کنید."
+
+#, fuzzy
+msgid "Table actions"
+msgstr "ستون‌های جدول"
+
+msgid ""
+"Table already exists. You can change your 'if table already exists' "
+"strategy to append or replace or provide a different Table Name to use."
+msgstr ""
+"جدول از قبل وجود دارد. شما می‌توانید استراتژی 'اگر جدول از قبل وجود دارد'"
+" را به الحاق یا جایگزینی تغییر دهید یا یک نام جدول متفاوت برای استفاده "
+"ارائه دهید."
+
+msgid "Table cache timeout"
+msgstr "زمان انقضای کش جدول"
+
+msgid "Table columns"
+msgstr "ستون‌های جدول"
+
+#, fuzzy
+msgid "Table name"
+msgstr "نام جدول"
+
+msgid "Table name undefined"
+msgstr "نام جدول تعریف نشده است"
+
+#, python-format
+msgid "Table or View \"%(table)s\" does not exist."
+msgstr "جدول یا نما \"%(table)s\" وجود ندارد."
+
+msgid ""
+"Table that visualizes paired t-tests, which are used to understand "
+"statistical differences between groups."
+msgstr ""
+"جدولی که آزمون‌های t جفتی را به تصویر می‌کشد، که برای درک تفاوت‌های آماری"
+" بین گروه‌ها استفاده می‌شود."
+
+msgid "Tables"
+msgstr "جدول‌ها"
+
+msgid "Tabs"
+msgstr "برگه‌ها"
+
+msgid "Tabular"
+msgstr "جدولی"
+
+msgid "Tag"
+msgstr "برچسب"
+
+msgid "Tag could not be created."
+msgstr "برچسب قابل ایجاد نیست."
+
+msgid "Tag could not be deleted."
+msgstr "تگ قابل حذف نبود."
+
+msgid "Tag could not be found."
+msgstr "برچسب پیدا نشد."
+
+msgid "Tag could not be updated."
+msgstr "برچسب نتوانست به‌روز شود."
+
+msgid "Tag created"
+msgstr "برچسب ایجاد شد"
+
+msgid "Tag name"
+msgstr "نام برچسب"
+
+msgid "Tag name is invalid (cannot contain ':')"
+msgstr "نام برچسب نامعتبر است (نمی‌تواند شامل ':' باشد)"
+
+msgid "Tag parameters are invalid."
+msgstr "پارامترهای برچسب نامعتبر هستند."
+
+msgid "Tag updated"
+msgstr "برچسب به‌روزرسانی شد"
+
+#, python-format
+msgid "Tagged %s %ss"
+msgstr "برچسب‌گذاری شده %s %ss"
+
+msgid "Tagged Object could not be deleted."
+msgstr "شیء برچسب‌گذاری شده امکان حذف ندارد."
+
+msgid "Tags"
+msgstr "برچسب‌ها"
+
+msgid "Target"
+msgstr "هدف"
+
+msgid "Target Color"
+msgstr "رنگ هدف"
+
+msgid "Target category"
+msgstr "دسته هدف"
+
+msgid "Target value"
+msgstr "مقدار هدف"
+
+msgid "Template"
+msgstr "قالب"
+
+msgid "Template parameters"
+msgstr "پارامترهای الگو"
+
+msgid ""
+"Templated link, it's possible to include {{ metric }} or other values "
+"coming from the controls."
+msgstr ""
+"لینک الگو، امکان گنجاندن {{ metric }} یا سایر مقادیر دریافتی از کنترل‌ها "
+"وجود دارد."
+
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "زمانی است"
+
+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 "Test Connection"
+msgstr "آزمایش اتصال"
+
+msgid "Test connection"
+msgstr "آزمایش اتصال"
+
+msgid "Text"
+msgstr "متن"
+
+msgid "Text / Markdown"
+msgstr "متن / مارک‌داون"
+
+msgid "Text align"
+msgstr "چیدمان متن"
+
+msgid "Text embedded in email"
+msgstr "متن گنجانده شده در ایمیل"
+
+#, python-format
+msgid "The API response from %s does not match the IDatabaseTable interface."
+msgstr "پاسخ API از %s با رابط IDatabaseTable همخوانی ندارد."
+
+msgid ""
+"The CSS for individual dashboards can be altered here, or in the "
+"dashboard view where changes are immediately visible"
+msgstr ""
+"CSS برای داشبوردهای فردی را می‌توان در اینجا یا در نمای داشبورد تغییر داد"
+" که تغییرات بلافاصله قابل مشاهده هستند."
+
+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 (ایجاد جدول به عنوان انتخاب) در انتها یک عبارت 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 ""
+"لایه GeoJson داده‌های با فرمت GeoJSON را دریافت کرده و آن‌ها را به صورت "
+"چندضلعی، خطوط و نقاط (دایره‌ها، آیکن‌ها و/یا متن‌ها) تعاملی نمایش می‌دهد."
+
+msgid ""
+"The Sankey chart visually tracks the movement and transformation of "
+"values across\n"
+"          system stages. Nodes represent stages, connected by links "
+"depicting value flow. Node\n"
+"          height corresponds to the visualized metric, providing a clear "
+"representation of\n"
+"          value distribution and transformation."
+msgstr ""
+"نمودار سانکی به طور بصری حرکت و تغییر مقادیر را در مراحل سیستم ردیابی "
+"می‌کند. گره‌ها نمایانگر مراحل هستند که با لینک‌هایی به هم متصل شده‌اند که"
+" جریان ارزش را نشان می‌دهند. ارتفاع گره با متریک بصری شده مطابقت دارد و "
+"نمای واضحی از توزیع و تغییر ارزش ارائه می‌دهد."
+
+msgid "The URL is missing the dataset_id or slice_id parameters."
+msgstr "آدرس وب فاقد پارامترهای dataset_id یا slice_id است."
+
+msgid "The X-axis is not on the filters list"
+msgstr "محور X در لیست فیلترها نیست"
+
+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 در لیست فیلترها نیست که این موضوع از استفاده آن در فیلترهای بازه "
+"زمانی در داشبوردها جلوگیری می‌کند. آیا مایل هستید آن را به لیست فیلترها "
+"اضافه کنید؟"
+
+msgid "The annotation has been saved"
+msgstr "تفسیر ثبت شد"
+
+msgid "The annotation has been updated"
+msgstr "توضیحات به‌روزرسانی شده‌اند."
+
+#, fuzzy
+msgid "The background color of the charts."
+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 ""
+"دسته‌بندی گره‌های منبع که برای اختصاص رنگ‌ها استفاده می‌شود. اگر یک گره "
+"با بیش از یک دسته مرتبط باشد، تنها اولین دسته استفاده خواهد شد."
+
+msgid "The chart datasource does not exist"
+msgstr "منبع داده‌های نمودار وجود ندارد"
+
+msgid "The chart does not exist"
+msgstr "نمودار وجود ندارد"
+
+msgid "The chart query context does not exist"
+msgstr "متن کوئری نمودار وجود ندارد"
+
+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 "The color for points and clusters in RGB"
+msgstr "رنگ برای نقاط و خوشه‌ها در RGB"
+
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "رنگ ایزولاین"
+
+msgid "The color of the isoband"
+msgstr "رنگ ایزوباند"
+
+msgid "The color of the isoline"
+msgstr "رنگ ایزولاین"
+
+msgid "The color scheme for rendering chart"
+msgstr "طرح رنگ برای نمایش چارت"
+
+msgid ""
+"The color scheme is determined by the related dashboard.\n"
+"        Edit the color scheme in the dashboard properties."
+msgstr ""
+"رنگ‌بندی توسط داشبورد مربوطه تعیین می‌شود. رنگ‌بندی را در ویژگی‌های "
+"داشبورد ویرایش کنید."
+
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+"این طرح رنگ توسط رنگ‌های برچسب سفارشی جایگزین شده است.  \n"
+"    متاداده JSON را در تنظیمات پیشرفته بررسی کنید."
+
+msgid "The column header label"
+msgstr "برچسب سرستون"
+
+msgid "The column to be used as the source of the edge."
+msgstr "ستونی که قرار است به عنوان منبع لبه استفاده شود."
+
+msgid "The column to be used as the target of the edge."
+msgstr "ستونی که قرار است به عنوان هدف لبه استفاده شود."
+
+msgid "The column was deleted or renamed in the database."
+msgstr "ستون در پایگاه داده حذف یا تغییر نام داده شده است."
+
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
+msgid ""
+"The country code standard that Superset should expect to find in the "
+"[country] column"
+msgstr "استاندارد کد کشور که سوپرسِت باید در ستون [کشور] انتظار داشته باشد"
+
+msgid "The dashboard has been saved"
+msgstr "داشبورد ذخیره شد"
+
+msgid "The data source seems to have been deleted"
+msgstr "به نظر می‌رسد منبع داده حذف شده است."
+
+#, fuzzy
+msgid "The database"
+msgstr "حذف پایگاه داده"
+
+msgid "The database columns that contains lines information"
+msgstr "ستون‌های پایگاه داده که اطلاعات خطوط را شامل می‌شوند"
+
+msgid "The database could not be found"
+msgstr "پایگاه داده پیدا نشد"
+
+msgid "The database is currently running too many queries."
+msgstr "پایگاه داده در حال حاضر درخواست‌های فراوانی را پردازش می‌کند."
+
+msgid "The database is under an unusual load."
+msgstr "پایگاه داده تحت بار غیرمعمولی قرار دارد."
+
+msgid ""
+"The database referenced in this query was not found. Please contact an "
+"administrator for further assistance or try again."
+msgstr ""
+"پایگاه داده‌ای که در این کوئری به آن اشاره شده است پیدا نشد. لطفاً برای "
+"کمک بیشتر با یک مدیر تماس بگیرید یا دوباره تلاش کنید."
+
+msgid "The database returned an unexpected error."
+msgstr "پایگاه داده یک خطای غیرمنتظره برگرداند."
+
+#, fuzzy
+msgid "The database that was used to generate this query could not be found"
+msgstr "پایگاه داده پیدا نشد"
+
+msgid "The database was deleted."
+msgstr "پایگاه داده حذف شد."
+
+msgid "The database was not found."
+msgstr "پایگاه داده پیدا نشد."
+
+#, fuzzy
+msgid "The dataset"
+msgstr "مجموعه داده جدید"
+
+msgid "The dataset associated with this chart no longer exists"
+msgstr "dataset مرتبط با این نمودار دیگر وجود ندارد"
+
+msgid "The dataset column/metric that returns the values on your chart's x-axis."
+msgstr "ستون/معیاری از داده‌ها که مقادیر محور x نمودار شما را برمی‌گرداند."
+
+msgid "The dataset column/metric that returns the values on your chart's y-axis."
+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 ""
+"تنظیمات داده‌های نمای شده در اینجا بر تمام چارت‌هایی که از این داده‌ها "
+"استفاده می‌کنند، تأثیر می‌گذارد. مراقب باشید که تغییر تنظیمات در اینجا "
+"ممکن است بر چارت‌های دیگر به روش‌های نامطلوب تأثیر بگذارد."
+
+msgid "The dataset has been saved"
+msgstr "داده‌ها با موفقیت ذخیره شده‌اند"
+
+msgid "The dataset linked to this chart may have been deleted."
+msgstr "ممکن است مجموعه داده مرتبط با این نمودار حذف شده باشد."
+
+msgid "The datasource couldn't be loaded"
+msgstr "منبع داده بارگذاری نشد"
+
+msgid "The datasource is too large to query."
+msgstr "منبع داده خیلی بزرگ است که بتوان آن را کوئری کرد."
+
+msgid "The default catalog that should be used for the connection."
+msgstr "کاتالوگ پیش‌فرضی که باید برای اتصال استفاده شود."
+
+msgid "The default schema that should be used for the connection."
+msgstr "اسکیما پیش‌فرضی که باید برای اتصال استفاده شود."
+
+msgid ""
+"The description can be displayed as widget headers in the dashboard view."
+" Supports markdown."
+msgstr ""
+"توضیحات می‌توانند به عنوان عناوین ویجت‌ها در نمای داشبورد نمایش داده "
+"شوند. از markdown پشتیبانی می‌کند."
+
+msgid "The distance between cells, in pixels"
+msgstr "فاصله بین سلول‌ها، به پیکسل"
+
+msgid ""
+"The duration of time in seconds before the cache is invalidated. Set to "
+"-1 to bypass the cache."
+msgstr ""
+"مدت زمان به ثانیه قبل از نامعتبر شدن کش. برای دور زدن کش، مقدار -۱ را "
+"تنظیم کنید."
+
+msgid "The encoding format of the lines"
+msgstr "فرمت کدگذاری خطوط"
+
+msgid ""
+"The engine_params object gets unpacked into the sqlalchemy.create_engine "
+"call."
+msgstr "شیء engine_params در تماس sqlalchemy.create_engine unpack می‌شود."
+
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
+#, python-format
+msgid ""
+"The following entries in `series_columns` are missing in `columns`: "
+"%(columns)s. "
+msgstr "ورودی‌های زیر در `series_columns` در `columns` موجود نیستند: %(columns)s."
+
+#, python-format
+msgid ""
+"The following filters have the 'Select first filter value by default'\n"
+"                    option checked and could not be loaded, which is "
+"preventing the dashboard\n"
+"                    from rendering: %s"
+msgstr ""
+"فیلترهای زیر گزینه 'انتخاب مقدار فیلتر اول به صورت پیش‌فرض' را فعال "
+"کرده‌اند و نتوانسته‌اند بارگذاری شوند که این موضوع باعث جلوگیری از رندر "
+"شدن داشبورد می‌شود: %s"
+
+msgid "The function to use when aggregating points into groups"
+msgstr "عملکردی که هنگام تجمیع نقاط به گروه‌ها استفاده می‌شود"
+
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
+msgid ""
+"The histogram chart displays the distribution of a dataset by\n"
+"          representing the frequency or count of values within different "
+"ranges or bins.\n"
+"          It helps visualize patterns, clusters, and outliers in the data"
+" and provides\n"
+"          insights into its shape, central tendency, and spread."
+msgstr ""
+"نمودار هیستوگرام توزیع یک مجموعه داده را با نمایش فراوانی یا تعداد مقادیر"
+" در دامنه‌ها یا سطل‌های مختلف نمایش می‌دهد. این نمودار به کشف الگوها، "
+"خوشه‌ها و نقاط دورافتاده در داده‌ها کمک می‌کند و بینش‌هایی درباره شکل، "
+"گرایش مرکزی و پراکندگی آن ارائه می‌دهد."
+
+#, python-format
+msgid "The host \"%(hostname)s\" might be down and can't be reached."
+msgstr "میزبان \"%(hostname)s\" ممکن است خاموش بوده و قابل دسترسی نباشد."
+
+#, 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 "The host might be down, and can't be reached on the provided port."
+msgstr "سرور ممکن است خاموش باشد و نتوان به پورت ارائه‌شده دسترسی پیدا کرد."
+
+#, python-format
+msgid "The hostname \"%(hostname)s\" cannot be resolved."
+msgstr "نام میزبان \"%(hostname)s\" قابل شناسایی نیست."
+
+msgid "The hostname provided can't be resolved."
+msgstr "نام میزبان ارائه شده قابل شناسایی نیست."
+
+msgid "The id of the active chart"
+msgstr "شناسه نمودار فعال"
+
+#, fuzzy
+msgid "The layer attribution"
+msgstr "خصوصیات فرم مرتبط با زمان"
+
+msgid "The lower limit of the threshold range of the Isoband"
+msgstr "حد پایین دامنه آستانه ایزوبند"
+
+msgid ""
+"The maximum number of subdivisions of each group; lower values are pruned"
+" first"
+msgstr "حداکثر تعداد تقسیمات هر گروه؛ مقادیر پایین‌تر ابتدا حذف می‌شوند"
+
+msgid "The maximum value of metrics. It is an optional configuration"
+msgstr "مقدار حداکثری معیارها. این یک تنظیم اختیاری است."
+
+#, python-format
+msgid ""
+"The metadata_params in Extra field is not configured correctly. The key "
+"%(key)s is invalid."
+msgstr ""
+"پارامترهای متاداده در فیلد اضافی به درستی پیکربندی نشده‌اند. کلید %(key)s"
+" نامعتبر است."
+
+msgid ""
+"The metadata_params in Extra field is not configured correctly. The key "
+"%{key}s is invalid."
+msgstr ""
+"پارامترهای metadata_params در فیلد Extra به درستی پیکربندی نشده‌اند. کلید"
+" %{key}s نامعتبر است."
+
+msgid ""
+"The metadata_params object gets unpacked into the sqlalchemy.MetaData "
+"call."
+msgstr ""
+"شیء metadata_params به یکپارچه‌سازی در فراخوانی sqlalchemy.MetaData "
+"پردازش می‌شود."
+
+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 ""
+"حداقل تعداد دوره‌های پیمایشی مورد نیاز برای نمایش یک مقدار. به عنوان "
+"مثال، اگر یک جمع تجمعی بر روی ۷ روز انجام دهید، ممکن است بخواهید \"دوره "
+"حداقل\" شما ۷ باشد، تا تمام نقاط داده نشان‌دهنده مجموع ۷ دوره باشند. این "
+"امر \"افزایش تدریجی\" که در ۷ دوره اول رخ داده است را پنهان می‌کند."
+
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "مقدار حداکثری معیارها. این یک تنظیم اختیاری است."
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "نام ستون شناسه"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
+msgid "The name of the rule must be unique"
+msgstr "نام قاعده باید منحصر به فرد باشد"
+
+msgid "The number color \"steps\""
+msgstr "رنگ شماره \"مراحل\""
+
+msgid "The number of bins for the histogram"
+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 به زمان محلی استفاده شود."
+
+#, 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 "
+"محدود شده است. لطفاً محدودیت‌ها/فیلترهای اضافی اضافه کنید یا برای مشاهده "
+"بیشتر ردیف‌ها تا محدودیت %(limit)d، نتایج را به فرمت csv دانلود کنید."
+
+#, 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 را ببینید."
+
+#, python-format
+msgid "The number of rows displayed is limited to %(rows)d by the dropdown."
+msgstr "تعداد ردیف‌های نمایش داده شده به %(rows)d توسط کشوی انتخاب محدود شده است."
+
+#, python-format
+msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown."
+msgstr "تعداد ردیف‌های نمایش‌داده‌شده به %(rows)d توسط منوی کشویی محدود است."
+
+#, python-format
+msgid "The number of rows displayed is limited to %(rows)d by the query"
+msgstr "تعداد ردیف‌های نمایش داده شده به %(rows)d توسط کوئری محدود شده است."
+
+#, python-format
+msgid ""
+"The number of rows displayed is limited to %(rows)d by the query and "
+"limit dropdown."
+msgstr ""
+"تعداد ردیف‌های نمایش داده شده به %(rows)d توسط درخواست و منوی محدودیت "
+"محدود شده است."
+
+msgid "The number of seconds before expiring the cache"
+msgstr "تعداد ثانیه‌ها قبل از انقضای کش"
+
+msgid "The object does not exist in the given database."
+msgstr "شیء در پایگاه داده داده شده وجود ندارد."
+
+#, 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] ""
+
+#, python-format
+msgid "The password provided for username \"%(username)s\" is incorrect."
+msgstr "رمز عبور ارائه شده برای نام کاربری \"%(username)s\" نادرست است."
+
+msgid "The password provided when connecting to a database is not valid."
+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 ""
+"برای وارد کردن پایگاه‌های داده زیر به همراه نمودارها، نیاز به رمزهای عبور"
+" آن‌ها دارید. لطفاً توجه داشته باشید که بخش‌های \"Secure Extra\" و "
+"\"Certificate\" در پیکربندی پایگاه داده در فایل‌های خروجی وجود ندارند و "
+"در صورت نیاز، باید پس از وارد کردن به صورت دستی اضافه شوند."
+
+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 ""
+"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 ""
+"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\" در فایل‌های صادراتی پیکربندی پایگاه داده موجود نیستند و "
+"در صورتی که به آن‌ها نیاز باشد، باید به‌صورت دستی پس از وارد کردن اضافه "
+"شوند."
+
+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 ""
+"برای وارد کردن پایگاه‌های داده زیر، به رمزهای عبور آنها نیاز است. لطفاً "
+"توجه داشته باشید که بخش‌های \"امن Extra\" و \"گواهی‌نامه\" در تنظیمات "
+"پایگاه داده در فایل‌های اکتشاف وجود ندارند و در صورت لزوم باید پس از وارد"
+" کردن به‌صورت دستی اضافه شوند."
+
+msgid "The pattern of timestamp format. For strings use "
+msgstr "الگوی فرمت زمان‌مهر. برای رشته‌ها از استفاده کنید"
+
+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 ""
+"دوره‌ای که باید زمان را محور قرار داد. کاربران می‌توانند نام مستعار "
+"\"پاندا\" برای جابجایی ارائه دهند. بر روی حباب اطلاعات کلیک کنید تا "
+"جزئیات بیشتری در مورد عبارات پذیرفته شده \"تکرار\" مشاهده کنید."
+
+msgid "The pixel radius"
+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 ""
+"یک اشاره‌گر به یک جدول (یا نمای) فیزیکی. به یاد داشته باشید که نمودار به "
+"این جدول منطقی سوپرسیت وابسته است و این جدول منطقی به جدول فیزیکی اشاره "
+"شده در اینجا اشاره می‌کند."
+
+msgid "The port is closed."
+msgstr "بندر بسته است."
+
+msgid "The port number is invalid."
+msgstr "شماره پورت نامعتبر است."
+
+msgid "The primary metric is used to define the arc segment sizes"
+msgstr "معیار اصلی برای تعریف اندازه‌های بخش‌های قوس استفاده می‌شود."
+
+msgid "The provided table was not found in the provided database"
+msgstr "جدول ارائه شده در پایگاه داده ارائه شده یافت نشد."
+
+msgid "The query associated with the results was deleted."
+msgstr "کوئری مرتبط با نتایج حذف شد."
+
+msgid ""
+"The query associated with these results could not be found. You need to "
+"re-run the original query."
+msgstr ""
+"کوئری مرتبط با این نتایج پیدا نشد. شما باید کوئری اصلی را دوباره اجرا "
+"کنید."
+
+msgid "The query contains one or more malformed template parameters."
+msgstr "کوئری شامل یک یا چند پارامتر الگوی نادرست است."
+
+msgid "The query couldn't be loaded"
+msgstr "کوئری نتوانست بارگذاری شود"
+
+#, 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 "The query has a syntax error."
+msgstr "این سؤال دارای یک خطای نگارشی است."
+
+msgid "The query returned no data"
+msgstr "نتیجه جستجو داده‌ای بازنگرداند."
+
+#, 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 ""
+"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 ""
+"شعاع (به پیکسل) که الگوریتم برای تعریف یک خوشه استفاده می‌کند. برای "
+"غیرفعال کردن خوشه‌بندی، عدد ۰ را انتخاب کنید، اما توجه داشته باشید که "
+"تعداد زیادی نقطه (>۱۰۰۰) باعث ایجاد تأخیر خواهد شد."
+
+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 ""
+"شعاع نقاط جداگانه (نقاطی که در یک خوشه نیستند). می‌تواند یک ستون عددی یا "
+"`خودکار` باشد که نقطه را بر اساس بزرگ‌ترین خوشه مقیاس می‌کند."
+
+msgid "The report has been created"
+msgstr "گزارش ایجاد شده است"
+
+msgid "The report will be sent to your email at"
+msgstr "گزارش به ایمیل شما در تاریخ ارسال خواهد شد"
+
+msgid ""
+"The result of this query must be a value capable of numeric "
+"interpretation e.g. 1, 1.0, or \"1\" (compatible with Python's float() "
+"function)."
+msgstr ""
+"نتیجه این کوئری باید مقداری باشد که قابلیت تفسیر عددی داشته باشد، مانند "
+"۱، ۱.۰، یا \"۱\" (سازگار با تابع float() در پایتون)."
+
+#, fuzzy
+msgid "The result size exceeds the allowed limit."
+msgstr "حجم فایل از حداکثر اندازه مجاز فراتر رفته است."
+
+msgid "The results backend no longer has the data from the query."
+msgstr "نتیجه پس‌زمینه دیگر داده‌های مربوط به کوئری را ندارد."
+
+msgid ""
+"The results stored in the backend were stored in a different format, and "
+"no longer can be deserialized."
+msgstr ""
+"نتایج ذخیره شده در بخش پشتی به فرمت متفاوتی ذخیره شده‌اند و دیگر نمی‌توان"
+" آن‌ها را غیرسریال‌سازی کرد."
+
+msgid "The rich tooltip shows a list of all series for that point in time"
+msgstr "ابزارک غنی فهرستی از تمام سری‌ها برای آن نقطه زمانی را نمایش می‌دهد"
+
+msgid ""
+"The row limit set for the chart was reached. The chart may show partial "
+"data."
+msgstr ""
+"حداکثر تعداد ردیف تعیین شده برای نمودار رسیده است. نمودار ممکن است داده "
+"های ناقص را نمایش دهد."
+
+#, python-format
+msgid ""
+"The schema \"%(schema)s\" does not exist. A valid schema must be used to "
+"run this query."
+msgstr ""
+"اسکیمای \"%(schema)s\" وجود ندارد. برای اجرای این کوئری، باید از یک "
+"اسکیمای معتبر استفاده شود."
+
+#, 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\" وجود ندارد. برای اجرای این کوئری باید از یک "
+"اسکیمای معتبر استفاده شود."
+
+msgid "The schema of the submitted payload is invalid."
+msgstr "اسکیمای بارگذاری شده نامعتبر است."
+
+msgid "The schema was deleted or renamed in the database."
+msgstr "شمایل در پایگاه داده حذف یا تغییر نام داده شده است."
+
+msgid "The screenshot could not be downloaded. Please, try again later."
+msgstr ""
+
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "گزارش ایجاد شده است"
+
+msgid "The screenshot is being generated. Please, do not leave the page."
+msgstr ""
+
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "نمایش مقادیر سری در نمودار"
+
+msgid "The size of each cell in meters"
+msgstr "اندازه هر سلول به متر"
+
+msgid "The size of the square cell, in pixels"
+msgstr "اندازه سلول مربعی، به پیکسل"
+
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
+msgid "The submitted payload failed validation."
+msgstr "بار ارسال شده در اعتبارسنجی شکست خورد."
+
+msgid "The submitted payload has the incorrect format."
+msgstr "بارگزاری شده دارای فرمت نادرست است."
+
+msgid "The submitted payload has the incorrect schema."
+msgstr "بارگذاری ارسال شده دارای ساختار نادرست است."
+
+#, python-format
+msgid ""
+"The table \"%(table)s\" does not exist. A valid table must be used to run"
+" this query."
+msgstr ""
+"جدول \"%(table)s\" وجود ندارد. برای اجرای این کوئری باید از یک جدول معتبر"
+" استفاده شود."
+
+#, 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\" وجود ندارد. برای اجرای این کوئری، باید از یک جدول"
+" معتبر استفاده شود."
+
+msgid "The table was deleted or renamed in the database."
+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 در جدول بازگردانند. همچنین توجه داشته "
+"باشید که فیلتر زیر بر روی این ستون یا عبارت اعمال می‌شود."
+
+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 ""
+"دقت زمانی برای تجسم. توجه داشته باشید که می‌توانید به زبان طبیعی ساده "
+"مانند `۱۰ ثانیه`، `۱ روز` یا `۵۶ هفته` تایپ کنید و استفاده کنید."
+
+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 ""
+"دقت زمانی برای بصری‌سازی. توجه داشته باشید که می‌توانید از زبان طبیعی "
+"ساده استفاده کنید، مانند `۱۰ ثانیه`، `۱ روز` یا `۵۶ هفته`"
+
+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 تعریف شده‌اند."
+
+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 ""
+"دامنه زمانی برای تجسم. تمامی زمان‌های نسبی، مانند \"ماه گذشته\"، \"۷ روز "
+"گذشته\"، \"هم‌اکنون\" و غیره، با استفاده از زمان محلی سرور (بدون در نظر "
+"گرفتن منطقه زمانی) در سرور ارزیابی می‌شوند. تمامی نکات راهنما و زمان‌های "
+"پیش‌فرض در UTC (بدون در نظر گرفتن منطقه زمانی) بیان می‌شوند. سپس، "
+"زمان‌های ثبت‌شده توسط پایگاه داده با استفاده از منطقه زمانی محلی موتور "
+"ارزیابی می‌شوند. توجه کنید که می‌توان به‌طور صریح منطقه زمانی را طبق فرمت"
+" ISO ۸۶۰۱ مشخص کرد اگر زمان شروع و/یا پایان تعیین شود."
+
+msgid ""
+"The time unit for each block. Should be a smaller unit than "
+"domain_granularity. Should be larger or equal to Time Grain"
+msgstr ""
+"واحد زمانی برای هر بلاک. باید کوچکتر از granularity دامنه باشد. باید "
+"بزرگتر یا برابر با Grain زمان باشد."
+
+msgid "The time unit used for the grouping of blocks"
+msgstr "واحد زمانی مورد استفاده برای گروه‌بندی بلوک‌ها"
+
+#, fuzzy
+msgid "The type of the layer"
+msgstr "نام نمودار را اضافه کنید"
+
+msgid "The type of visualization to display"
+msgstr "نوع تجسم برای نمایش"
+
+msgid "The unit of measure for the specified point radius"
+msgstr "واحد اندازه‌گیری برای شعاع نقطه مشخص شده"
+
+msgid "The upper limit of the threshold range of the Isoband"
+msgstr "حد بالایی دامنه آستانه ایزوبند"
+
+msgid "The user seems to have been deleted"
+msgstr "به نظر می‌رسد کاربر حذف شده است."
+
+msgid "The user/password combination is not valid (Incorrect password for user)."
+msgstr "ترکیب نام کاربری/رمز عبور معتبر نیست (رمز عبور نادرست برای کاربر)."
+
+#, python-format
+msgid "The username \"%(username)s\" does not exist."
+msgstr "نام کاربری \"%(username)s\" وجود ندارد."
+
+msgid "The username provided when connecting to a database is not valid."
+msgstr "نام کاربری ارائه شده در زمان اتصال به پایگاه داده نامعتبر است."
+
+#, fuzzy
+msgid "The version of the service"
+msgstr "موقعیت افسانه را انتخاب کنید"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "نمایش مقدار بر روی نوار"
+
+msgid "The way the ticks are laid out on the X-axis"
+msgstr "شیوه چیدمان تیک‌ها بر روی محور X"
+
+msgid "The width of the Isoline in pixels"
+msgstr "عرض ایزولین به پیکسل"
+
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "عرض خطوط"
+
+msgid "The width of the lines"
+msgstr "عرض خطوط"
+
+msgid "There are associated alerts or reports"
+msgstr "هشدارها یا گزارش‌های مربوطه وجود دارند"
+
+#, python-format
+msgid "There are associated alerts or reports: %(report_names)s"
+msgstr "هشدارها یا گزارش‌های مرتبط وجود دارد: %(report_names)s"
+
+msgid "There are no charts added to this dashboard"
+msgstr "هیچ نموداری به این داشبورد اضافه نشده است"
+
+msgid "There are no components added to this tab"
+msgstr "هیچ مؤلفه‌ای به این تب اضافه نشده است"
+
+msgid "There are no filters in this dashboard."
+msgstr "در این داشبورد هیچ فیلتری وجود ندارد."
+
+msgid "There are unsaved changes."
+msgstr "تغییرات ذخیره‌نشده‌ای وجود دارد."
+
+msgid ""
+"There is a syntax error in the SQL query. Perhaps there was a misspelling"
+" or a typo."
+msgstr ""
+"یک خطای نحوی در کوئریی SQL وجود دارد. شاید یک اشتباه املایی یا تایپی رخ "
+"داده باشد."
+
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "نوع تجسم برای نمایش"
+
+msgid ""
+"There is no chart definition associated with this component, could it "
+"have been deleted?"
+msgstr ""
+"هیچ تعریفی برای نمودار مرتبط با این مؤلفه وجود ندارد، آیا ممکن است که حذف"
+" شده باشد؟"
+
+msgid ""
+"There is not enough space for this component. Try decreasing its width, "
+"or increasing the destination width."
+msgstr ""
+"برای این قسمت فضای کافی وجود ندارد. سعی کنید عرض آن را کاهش دهید یا عرض "
+"مقصد را افزایش دهید."
+
+msgid "There was an error fetching dataset"
+msgstr "خطایی در بازیابی مجموعه داده وجود داشت."
+
+msgid "There was an error fetching dataset's related objects"
+msgstr "خطایی در بازیابی اشیاء مرتبط با مجموعه داده وجود داشت"
+
+#, python-format
+msgid "There was an error fetching the favorite status: %s"
+msgstr "یک خطا در دریافت وضعیت مورد علاقه وجود داشت: %s"
+
+#, fuzzy
+msgid "There was an error fetching the filtered charts and dashboards:"
+msgstr "یک خطا در دریافت وضعیت مورد علاقه وجود داشت: %s"
+
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "خطا در بارگذاری طرح‌ها وجود داشت"
+
+msgid "There was an error loading the catalogs"
+msgstr "یک خطا در بارگذاری کاتالوگ‌ها وجود داشت."
+
+msgid "There was an error loading the chart data"
+msgstr "خطایی در بارگذاری داده‌های نمودار رخ داد."
+
+msgid "There was an error loading the dataset metadata"
+msgstr "خطایی در بارگذاری متادیتای dataset وجود داشت."
+
+msgid "There was an error loading the schemas"
+msgstr "خطا در بارگذاری طرح‌ها وجود داشت"
+
+msgid "There was an error loading the tables"
+msgstr "خطایی در بارگذاری جدول‌ها وجود داشت"
+
+#, fuzzy
+msgid "There was an error retrieving dashboard tabs."
+msgstr "متاسفیم، خطایی در ذخیره‌سازی این داشبورد رخ داد: %s"
+
+#, python-format
+msgid "There was an error saving the favorite status: %s"
+msgstr "خطایی در ذخیره وضعیت مورد علاقه رخ داد: %s"
+
+msgid "There was an error with your request"
+msgstr "در درخواست شما خطایی رخ داده است"
+
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "یک مشکل در حذف وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue deleting %s: %s"
+msgstr "حین حذف %s مشکلی پیش آمد: %s"
+
+#, python-format
+msgid "There was an issue deleting rules: %s"
+msgstr "مشکلی در حذف قوانین وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue deleting the selected %s: %s"
+msgstr "مشکلی در حذف %s انتخاب‌شده وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue deleting the selected annotations: %s"
+msgstr "یک مشکل در حذف یادداشت‌های انتخاب‌شده وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue deleting the selected charts: %s"
+msgstr "برای حذف نمودارهای انتخاب شده مشکلی پیش آمد: %s"
+
+msgid "There was an issue deleting the selected dashboards: "
+msgstr "سر deleting داشبوردهای انتخاب شده مشکل وجود داشت:"
+
+#, python-format
+msgid "There was an issue deleting the selected datasets: %s"
+msgstr "مشکلی در حذف مجموعه داده‌های منتخب وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue deleting the selected layers: %s"
+msgstr "مشکلی در حذف لایه‌های انتخاب شده وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue deleting the selected queries: %s"
+msgstr "در حذف کوئریهای انتخاب شده مشکلی وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue deleting the selected templates: %s"
+msgstr "مشکلی در حذف الگوهای انتخاب شده وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue deleting: %s"
+msgstr "یک مشکل در حذف وجود داشت: %s"
+
+msgid "There was an issue duplicating the dataset."
+msgstr "در هنگام کپی‌کردن مجموعه‌داده مشکلی پیش آمده است."
+
+#, python-format
+msgid "There was an issue duplicating the selected datasets: %s"
+msgstr "یک مشکل در تکرار داده‌های انتخاب‌شده وجود داشت: %s"
+
+msgid "There was an issue favoriting this dashboard."
+msgstr "در انتخاب این داشبورد مشکلی پیش آمد."
+
+msgid "There was an issue fetching reports attached to this dashboard."
+msgstr "یک مشکل در بارگذاری گزارش‌های متصل به این داشبورد وجود دارد."
+
+msgid "There was an issue fetching the favorite status of this dashboard."
+msgstr "مشکلی در دریافت وضعیت مورد علاقه این داشبورد وجود داشت."
+
+#, python-format
+msgid "There was an issue fetching your chart: %s"
+msgstr "مشکلی در دریافت نمودار شما وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue fetching your dashboards: %s"
+msgstr "هنگام دریافت داشبوردهای شما مشکلی پیش آمد: %s"
+
+#, python-format
+msgid "There was an issue fetching your recent activity: %s"
+msgstr "مشکلی در Fetch کردن فعالیت‌های اخیر شما وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue fetching your saved queries: %s"
+msgstr "یک مشکل در بازیابی کوئری‌های ذخیره‌شده شما وجود داشت: %s"
+
+#, python-format
+msgid "There was an issue previewing the selected query %s"
+msgstr "مشکلی در پیش نمایش کوئری انتخاب شده %s وجود داشت."
+
+#, python-format
+msgid "There was an issue previewing the selected query. %s"
+msgstr "در پیش‌نمایش کوئریی انتخاب‌شده مشکلی وجود داشت. %s"
+
+msgid "These are the datasets this filter will be applied to."
+msgstr "اینها مجموعه داده‌هایی هستند که این فیلتر به آنها اعمال خواهد شد."
+
+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 به صورت پویا هنگام کلیک بر روی دکمه ذخیره یا بازنویسی در نمای"
+" داشبورد تولید می‌شود. این اطلاعات برای مرجع و برای کاربران حرفه‌ای که "
+"ممکن است بخواهند پارامترهای خاصی را تغییر دهند، ارائه شده است."
+
+#, python-format
+msgid "This action will permanently delete %s."
+msgstr "این عمل به طور دائمی %s را حذف خواهد کرد."
+
+msgid "This action will permanently delete the layer."
+msgstr "این عمل لایه را به طور دائم حذف خواهد کرد."
+
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "این عمل لایه را به طور دائم حذف خواهد کرد."
+
+msgid "This action will permanently delete the saved query."
+msgstr "این عمل به طور دائم جستجوی ذخیره شده را حذف می‌کند."
+
+msgid "This action will permanently delete the template."
+msgstr "این عمل الگو را به طور دائمی حذف خواهد کرد."
+
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "این عمل لایه را به طور دائم حذف خواهد کرد."
+
+msgid ""
+"This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
+"mydatabase.com)."
+msgstr ""
+"این می‌تواند یک آدرس آی‌پی (مانند ۱۲۷.۰.۰.۱) یا یک نام دامنه (مانند "
+"mydatabase.com) باشد."
+
+msgid ""
+"This chart applies cross-filters to charts whose datasets contain columns"
+" with the same name."
+msgstr ""
+"این نمودار فیلترهای متقابل را به نمودارهایی اعمال می‌کند که "
+"مجموعه‌داده‌های آن‌ها شامل ستون‌هایی با همان نام است."
+
+msgid "This chart has been moved to a different filter scope."
+msgstr "این نمودار به دامنه فیلتر دیگری منتقل شده است."
+
+msgid "This chart is managed externally, and can't be edited in Superset"
+msgstr ""
+"این نمودار به صورت خارجی مدیریت می‌شود و نمی‌توان آن را در سوپرسِت ویرایش"
+" کرد."
+
+msgid "This chart might be incompatible with the filter (datasets don't match)"
+msgstr "این نمودار ممکن است با فیلتر سازگار نباشد (مجموعه داده‌ها همخوانی ندارند)"
+
+msgid ""
+"This chart type is not supported when using an unsaved query as a chart "
+"source. "
+msgstr ""
+"این نوع نمودار زمانی که از یک کوئری ذخیره نشده به عنوان منبع نمودار "
+"استفاده می‌شود، پشتیبانی نمی‌شود."
+
+msgid "This column might be incompatible with current dataset"
+msgstr "این ستون ممکن است با داده‌های فعلی سازگار نباشد."
+
+msgid "This column must contain date/time information."
+msgstr "این ستون باید شامل اطلاعات تاریخ/زمان باشد."
+
+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 ""
+"این کنترل کل نمودار را بر اساس محدوده زمانی انتخاب شده فیلتر می‌کند. تمام"
+" زمان‌های نسبی، مانند \"ماه گذشته\"، \"۷ روز گذشته\"، \"هم‌اکنون\" و "
+"غیره، بر روی سرور با استفاده از زمان محلی سرور (بدون در نظر گرفتن منطقه "
+"زمانی) ارزیابی می‌شوند. تمام نکات راهنما و زمان‌های جایگزین در UTC (بدون "
+"در نظر گرفتن منطقه زمانی) بیان می‌شوند. سپس زمان‌ها توسط پایگاه داده با "
+"استفاده از منطقه زمانی محلی موتور ارزیابی می‌شوند. توجه داشته باشید که "
+"می‌توان به طور صریح منطقه زمانی را طبق فرمت ISO ۸۶۰۱ تعیین کرد اگر زمان "
+"شروع و/یا پایان مشخص شود."
+
+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\" از نمای فعلی باید به چارت "
+"حاوی داده‌های یادداشت منتقل شود یا خیر."
+
+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 ""
+"این کنترل می‌کند که آیا فیلد دانه زمانی از نمای جاری باید به چارت حاوی "
+"داده‌های توضیحات منتقل شود یا خیر."
+
+#, python-format
+msgid ""
+"This dashboard is currently auto refreshing; the next auto refresh will "
+"be in %s."
+msgstr ""
+"این داشبورد در حال حاضر به صورت خودکار در حال به‌روز رسانی است؛ "
+"به‌روزرسانی خودکار بعدی در %s خواهد بود."
+
+msgid "This dashboard is managed externally, and can't be edited in Superset"
+msgstr ""
+"این داشبورد به صورت خارجی مدیریت می‌شود و نمی‌توان آن را در Superset "
+"ویرایش کرد."
+
+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 ""
+"این داشبورد منتشر نشده است و به این معناست که در لیست داشبوردها نمایش "
+"داده نخواهد شد. برای دیدن آن در آنجا، آن را به عنوان مورد علاقه انتخاب "
+"کنید یا با استفاده از آدرس اینترنتی مستقیماً به آن دسترسی پیدا کنید."
+
+msgid ""
+"This dashboard is not published, it will not show up in the list of "
+"dashboards. Click here to publish this dashboard."
+msgstr ""
+"این داشبورد منتشر نشده است و در فهرست داشبوردها نمایش داده نخواهد شد. "
+"برای انتشار این داشبورد، اینجا کلیک کنید."
+
+msgid "This dashboard is now hidden"
+msgstr "این داشبورد اکنون پنهان است."
+
+msgid "This dashboard is now published"
+msgstr "این داشبورد اکنون منتشر شده است"
+
+msgid "This dashboard is published. Click to make it a draft."
+msgstr "این داشبورد منتشر شده است. برای تبدیل آن به پیش‌نویس کلیک کنید."
+
+msgid ""
+"This dashboard is ready to embed. In your application, pass the following"
+" id to the SDK:"
+msgstr ""
+"این داشبورد آماده برای جاسازی است. در برنامه خود، شناسه زیر را به SDK "
+"ارسال کنید:"
+
+msgid "This dashboard was saved successfully."
+msgstr "این داشبورد با موفقیت ذخیره شد."
+
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
+msgid "This database is managed externally, and can't be edited in Superset"
+msgstr ""
+"این پایگاه داده به صورت خارجی مدیریت می‌شود و نمی‌توان آن را در Superset "
+"ویرایش کرد."
+
+msgid ""
+"This database table does not contain any data. Please select a different "
+"table."
+msgstr ""
+"این جدول پایگاه داده حاوی هیچ داده‌ای نیست. لطفاً جدول دیگری را انتخاب "
+"کنید."
+
+msgid "This dataset is managed externally, and can't be edited in Superset"
+msgstr ""
+"این مجموعه داده به صورت خارجی مدیریت می‌شود و نمی‌توان آن را در Superset "
+"ویرایش کرد."
+
+msgid "This dataset is not used to power any charts."
+msgstr "این مجموعه داده برای تولید هیچ نموداری استفاده نمی‌شود."
+
+msgid "This defines the element to be plotted on the chart"
+msgstr "این عنصر را برای ترسیم روی نمودار تعریف می‌کند."
+
+msgid "This email is already associated with an account."
+msgstr ""
+
+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 ""
+"این فیلد به عنوان یک شناسه منحصر به فرد برای متصل کردن ابعاد محاسبه شده "
+"به نمودارها استفاده می‌شود. همچنین به عنوان نام مستعار در کوئری SQL مورد "
+"استفاده قرار می‌گیرد."
+
+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 ""
+"این فیلد به عنوان یک شناسایی منحصر به فرد برای اتصال معیار به نمودارها "
+"استفاده می‌شود. همچنین به عنوان نام مستعار در کوئریی SQL استفاده می‌شود."
+
+msgid "This filter might be incompatible with current dataset"
+msgstr "این فیلتر ممکن است با داده‌های کنونی ناسازگار باشد."
+
+msgid "This functionality is disabled in your environment for security reasons."
+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 ""
+"این شرایطی است که به عبارت WHERE اضافه خواهد شد. به عنوان مثال، برای "
+"اینکه تنها ردیف‌های یک مشتری خاص بازگردانده شوند، می‌توانید یک فیلتر "
+"معمولی با عبارت `client_id = ۹` تعریف کنید. برای اینکه هیچ ردیفی نمایش "
+"داده نشود مگر اینکه یک کاربر به یک نقش فیلتر RLS تعلق داشته باشد، می‌توان"
+" یک فیلتر پایه با عبارت `۱ = ۰` (همیشه نادرست) ایجاد کرد."
+
+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 موقعیت ویدجت‌ها را در داشبورد توصیف می‌کند. این شیء به‌طور "
+"پویا هنگام تنظیم اندازه و موقعیت ویدجت‌ها با استفاده از drag & drop در "
+"نمای داشبورد生成 می‌شود."
+
+msgid "This markdown component has an error."
+msgstr "این مؤلفه مارک‌داون دارای یک خطا است."
+
+msgid "This markdown component has an error. Please revert your recent changes."
+msgstr "این مؤلفه مارک‌داون دارای یک خطا است. لطفاً تغییرات اخیر خود را برگردانید."
+
+msgid "This may be triggered by:"
+msgstr "این ممکن است توسط موارد زیر فعال شود:"
+
+msgid "This metric might be incompatible with current dataset"
+msgstr "این متریک ممکن است با مجموعه داده‌های کنونی سازگار نباشد."
+
+msgid "This option has been disabled by the administrator."
+msgstr "این گزینه توسط مدیر غیرفعال شده است."
+
+msgid ""
+"This page is intended to be embedded in an iframe, but it looks like that"
+" is not the case."
+msgstr ""
+"این صفحه برای تعبیه در یک iframe طراحی شده است، اما به نظر می‌رسدکه "
+"اینطور نیست."
+
+msgid ""
+"This section allows you to configure how to use the slice\n"
+"              to generate annotations."
+msgstr ""
+"این بخش به شما امکان می‌دهد نحوه استفاده از برش را برای تولید یادداشت‌ها "
+"تنظیم کنید."
+
+msgid ""
+"This section contains options that allow for advanced analytical post "
+"processing of query results"
+msgstr ""
+"این بخش شامل گزینه‌هایی است که امکان پردازش تحلیلی پیشرفته نتایج کوئری را"
+" فراهم می‌کند."
+
+msgid "This section contains validation errors"
+msgstr "این بخش شامل خطاهای اعتبارسنجی است"
+
+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 "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 ""
+"این جدول از قبل یک مجموعه داده مرتبط با خود دارد. شما فقط می‌توانید یک "
+"مجموعه داده را با یک جدول مرتبط کنید."
+
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
+msgid "This value should be greater than the left target value"
+msgstr "این مقدار باید بزرگ‌تر از مقدار هدف سمت چپ باشد."
+
+msgid "This value should be smaller than the right target value"
+msgstr "این مقدار باید کوچکتر از مقدار هدف صحیح باشد."
+
+msgid "This visualization type does not support cross-filtering."
+msgstr "این نوع تجسم از فیلترگذاری متقاطع پشتیبانی نمی‌کند."
+
+msgid "This visualization type is not supported."
+msgstr "این نوع مشاهده پشتیبانی نمی‌شود."
+
+msgid "This was triggered by:"
+msgid_plural "This may be triggered by:"
+msgstr[0] "این  مورد تریاژ شده توسط:"
+msgstr[1] ""
+
+msgid ""
+"This will be applied to the whole table. Arrows (↑ and ↓) will be added "
+"to main columns for increase and decrease. Basic conditional formatting "
+"can be overwritten by conditional formatting below."
+msgstr ""
+"این مورد به کل جدول اعمال خواهد شد. پیکان‌ها (↑ و ↓) به ستون‌های اصلی "
+"برای افزایش و کاهش اضافه خواهند شد. فرمت‌بندی شرطی پایه می‌تواند توسط "
+"فرمت‌بندی شرطی زیر نادیده گرفته شود."
+
+msgid "This will remove your current embed configuration."
+msgstr "این تنظیمات جاسازی فعلی شما را حذف خواهد کرد."
+
+msgid "Threshold"
+msgstr "آستانه"
+
+msgid "Threshold alpha level for determining significance"
+msgstr "سطح آلفای آستانه برای تعیین معناداری"
+
+msgid "Threshold: "
+msgstr "آستانه:"
+
+msgid "Thumbnails"
+msgstr "تصاویر کوچک"
+
+msgid "Thursday"
+msgstr "پنج‌شنبه"
+
+msgid "Time"
+msgstr "زمان"
+
+msgid "Time Column"
+msgstr "ستون زمان"
+
+msgid "Time Comparison"
+msgstr "مقایسه زمان"
+
+msgid "Time Format"
+msgstr "قالب زمان"
+
+msgid "Time Grain"
+msgstr "گروه زمانی"
+
+msgid "Time Grain must be specified when using Time Shift."
+msgstr "زمان دانه باید هنگام استفاده از جابه‌جایی زمانی مشخص شود."
+
+msgid "Time Granularity"
+msgstr "دقت زمانی"
+
+msgid "Time Lag"
+msgstr "تاخیر زمانی"
+
+msgid "Time Range"
+msgstr "دامنه زمانی"
+
+msgid "Time Ratio"
+msgstr "نسبت زمان"
+
+msgid "Time Series"
+msgstr "سری زمانی"
+
+msgid "Time Series - Line Chart"
+msgstr "چارت خطی - سری زمانی"
+
+msgid "Time Series - Nightingale Rose Chart"
+msgstr "نمودار گل سرخ نایتنگل - سری زمانی"
+
+msgid "Time Series - Paired t-test"
+msgstr "سری زمانی - آزمون t جفتی"
+
+msgid "Time Series - Percent Change"
+msgstr "سری زمانی - تغییر درصد"
+
+msgid "Time Series - Period Pivot"
+msgstr "سری زمانی - چرخش دوره"
+
+msgid "Time Series Options"
+msgstr "گزینه‌های سری زمانی"
+
+msgid "Time Shift"
+msgstr "تغییر زمان"
+
+msgid "Time Table View"
+msgstr "نمایش جدول زمانی"
+
+msgid "Time column"
+msgstr "ستون زمان"
+
+#, python-format
+msgid "Time column \"%(col)s\" does not exist in dataset"
+msgstr "ستون زمان \"%(col)s\" در مجموعه داده وجود ندارد"
+
+msgid "Time column filter plugin"
+msgstr "پلاگین فیلتر ستونی زمان"
+
+msgid "Time column to apply dependent temporal filter to"
+msgstr "ستون زمان برای اعمال فیلتر زمانی وابسته به آن"
+
+msgid "Time column to apply time range to"
+msgstr "ستون زمان برای اعمال بازه زمانی"
+
+msgid "Time comparison"
+msgstr "مقایسه زمان"
+
+msgid ""
+"Time delta in natural language\n"
+"                  (example:  24 hours, 7 days, 56 weeks, 365 days)"
+msgstr ""
+"تفاضل زمانی به زبان طبیعی  \n"
+"                  (مثال: ۲۴ ساعت، ۷ روز، ۵۶ هفته، ۳۶۵ روز)"
+
+#, 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 "Time filter"
+msgstr "فیلتر زمان"
+
+msgid "Time format"
+msgstr "قالب زمان"
+
+msgid "Time grain"
+msgstr "دانه زمانی"
+
+msgid "Time grain filter plugin"
+msgstr "پلاگین فیلتر دانه زمانی"
+
+msgid "Time grain missing"
+msgstr "گره زمانی отсутствует"
+
+msgid "Time granularity"
+msgstr "ریز زمانی"
+
+msgid "Time in seconds"
+msgstr "زمان به ثانیه‌ها"
+
+msgid "Time lag"
+msgstr "تأخیر زمانی"
+
+msgid "Time range"
+msgstr "دامنه زمانی"
+
+msgid "Time ratio"
+msgstr "نسبت زمان"
+
+msgid "Time related form attributes"
+msgstr "خصوصیات فرم مرتبط با زمان"
+
+msgid "Time series"
+msgstr "سری زمانی"
+
+msgid "Time series columns"
+msgstr "ستون‌های سری زمانی"
+
+msgid "Time shift"
+msgstr "تغییر زمان"
+
+#, 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 "Time-series Percent Change"
+msgstr "تغییر درصدی سری‌زمانی"
+
+msgid "Time-series Period Pivot"
+msgstr "چرخش دوره‌ی سری زمانی"
+
+msgid "Time-series Table"
+msgstr "جدول سری زمانی"
+
+msgid "Timeout error"
+msgstr "خطای تایم‌اوت"
+
+msgid "Timestamp format"
+msgstr "فرمت زمان‌نگاشت"
+
+msgid "Timezone"
+msgstr "منطقه زمانی"
+
+msgid "Timezone selector"
+msgstr "انتخاب منطقه زمانی"
+
+msgid "Tiny"
+msgstr "کوچک"
+
+msgid "Title"
+msgstr "عنوان"
+
+msgid "Title Column"
+msgstr "ستون عنوان"
+
+msgid "Title is required"
+msgstr "عنوان الزامی است"
+
+msgid "Title or Slug"
+msgstr "عنوان یا اسلاگ"
+
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
+msgid "To filter on a metric, use Custom SQL tab."
+msgstr "برای فیلتر کردن روی یک معیار، از تب SQL سفارشی استفاده کنید."
+
+msgid "To get a readable URL for your dashboard"
+msgstr "برای دریافت یک URL قابل خواندن برای داشبورد شما"
+
+msgid "Tooltip"
+msgstr "پیام چابک"
+
+msgid "Tooltip Contents"
+msgstr "محتوای ابزارک راهنما"
+
+msgid "Tooltip sort by metric"
+msgstr "راهنمای مرتب‌سازی بر اساس متریک"
+
+msgid "Tooltip time format"
+msgstr "فرمت زمان ابزارک"
+
+msgid "Top"
+msgstr "بالا"
+
+msgid "Top left"
+msgstr "بالای چپ"
+
+msgid "Top right"
+msgstr "بالا سمت راست"
+
+msgid "Top to Bottom"
+msgstr "بالا به پایین"
+
+msgid "Total"
+msgstr "مجموع"
+
+#, python-format
+msgid "Total (%(aggfunc)s)"
+msgstr "مجموع (%(aggfunc)s)"
+
+#, python-format
+msgid "Total (%(aggregatorName)s)"
+msgstr "مجموع (%(aggregatorName)s)"
+
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "مجموع: %s"
+
+msgid "Total value"
+msgstr "مجموع ارزش"
+
+#, python-format
+msgid "Total: %s"
+msgstr "مجموع: %s"
+
+msgid "Track job"
+msgstr "پیگیری شغل"
+
+msgid "Transformable"
+msgstr "قابل تبدیل"
+
+msgid "Transparent"
+msgstr "شفاف"
+
+msgid "Transpose pivot"
+msgstr "جابه‌جایی چرخشی"
+
+msgid "Treat values as categorical."
+msgstr "مقادیر را به عنوان دسته‌ای در نظر بگیرید."
+
+msgid "Tree Chart"
+msgstr "نمودار درختی"
+
+msgid "Tree layout"
+msgstr "چیدمان درختی"
+
+msgid "Tree orientation"
+msgstr "جهت‌گیری درخت"
+
+msgid "Treemap"
+msgstr "نقشه درختی"
+
+msgid "Trend"
+msgstr "روند"
+
+msgid "Triangle"
+msgstr "مثلث"
+
+msgid "Trigger Alert If..."
+msgstr "هشدار را در صورت... فعال کنید"
+
+msgid "Truncate Axis"
+msgstr "برش محور"
+
+msgid "Truncate Cells"
+msgstr "تراشیدن سلول‌ها"
+
+msgid "Truncate Metric"
+msgstr "متریک را خلاصه کن"
+
+msgid "Truncate X Axis"
+msgstr "محور X را کوتاه کنید"
+
+#, fuzzy
+msgid ""
+"Truncate X Axis. Can be overridden by specifying a min or max bound. Only"
+" applicable for numerical X axis."
+msgstr ""
+"محور X را قطع کنید. می‌توان با تعیین حداقل یا حداکثر مقدار آن را تغییر "
+"داد. این فقط برای محور X عددی قابل استفاده است."
+
+msgid "Truncate Y Axis"
+msgstr "محور Y را کوتاه کنید"
+
+msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound."
+msgstr "محور Y را کوتاه کنید. می‌توان با تعیین حداقل یا حداکثر آن را تغییر داد."
+
+msgid "Truncate long cells to the \"min width\" set above"
+msgstr "سلول‌های بلند را به \"حداقل عرض\" تعیین‌شده در بالا کوتاه کنید"
+
+msgid "Truncates the specified date to the accuracy specified by the date unit."
+msgstr "تاریخ مشخص شده را به دقت مشخص شده توسط واحد تاریخ قطع می‌کند."
+
+msgid "Try applying different filters or ensuring your datasource has data"
+msgstr ""
+"تلاش کنید تا فیلترهای مختلفی را اعمال کنید یا اطمینان حاصل کنید که منبع "
+"داده شما دارای داده است."
+
+msgid "Try different criteria to display results."
+msgstr "معیارهای مختلفی را برای نمایش نتایج امتحان کنید."
+
+msgid "Tuesday"
+msgstr "سه‌شنبه"
+
+msgid "Tukey"
+msgstr "توکی"
+
+msgid "Type"
+msgstr "نوع"
+
+#, python-format
+msgid "Type \"%s\" to confirm"
+msgstr "برای تأیید، \"%s\" را وارد کنید"
+
+msgid "Type a number"
+msgstr "یک عدد وارد کنید"
+
+msgid "Type a value"
+msgstr "یک مقدار وارد کنید"
+
+msgid "Type a value here"
+msgstr "اینجا یک مقدار وارد کنید"
+
+msgid "Type is required"
+msgstr "نوع الزامی است"
+
+msgid "Type of comparison, value difference or percentage"
+msgstr "نوع مقایسه، تفاوت ارزش یا درصد"
+
+msgid "UI Configuration"
+msgstr "پیکربندی رابط کاربری"
+
+msgid "URL"
+msgstr "آدرس وب"
+
+msgid "URL Parameters"
+msgstr "پارامترهای URL"
+
+msgid "URL parameters"
+msgstr "پارامترهای URL"
+
+msgid "URL slug"
+msgstr "آدرس URL"
+
+msgid "Unable to calculate such a date delta"
+msgstr "قادر به محاسبه چنین تفاضل تاریخی نیستم"
+
+#, python-format
+msgid "Unable to connect to catalog named \"%(catalog_name)s\"."
+msgstr "عدم توانایی در اتصال به فهرست با نام \"%(catalog_name)s\"."
+
+#, python-format
+msgid "Unable to connect to database \"%(database)s\"."
+msgstr "نمی‌توان به پایگاه داده \"%(database)s\" متصل شد."
+
+msgid ""
+"Unable to connect. Verify that the following roles are set on the service"
+" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", "
+"\"BigQuery Job User\" and the following permissions are set "
+"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\""
+msgstr ""
+"امکان اتصال وجود ندارد. اطمینان حاصل کنید که نقش‌های زیر بر روی حساب "
+"سرویس تنظیم شده‌اند: \"بیننده داده‌های BigQuery\"، \"بیننده متاداده‌های "
+"BigQuery\"، \"کاربر شغل BigQuery\" و مجوزهای زیر تنظیم شده‌اند: "
+"\"bigquery.readsessions.create\"، \"bigquery.readsessions.getData\""
+
+msgid "Unable to create chart without a query id."
+msgstr "عدم توانایی در ایجاد نمودار بدون شناسه‌ی کوئری."
+
+msgid "Unable to decode value"
+msgstr "قادر به رمزگشایی مقدار نیست"
+
+msgid "Unable to encode value"
+msgstr "نمی‌توان مقدار را کدگذاری کرد"
+
+#, python-format
+msgid "Unable to find such a holiday: [%(holiday)s]"
+msgstr "قادر به پیدا کردن چنین تعطیلاتی نیستم: [%(holiday)s]"
+
+msgid ""
+"Unable to load columns for the selected table. Please select a different "
+"table."
+msgstr ""
+"نمی‌توان ستون‌ها را برای جدول انتخاب شده بارگذاری کرد. لطفاً یک جدول دیگر"
+" انتخاب کنید."
+
+msgid "Unable to load dashboard"
+msgstr "قادر به بارگذاری داشبورد نیستید"
+
+msgid ""
+"Unable to migrate query editor state to backend. Superset will retry "
+"later. Please contact your administrator if this problem persists."
+msgstr ""
+"نمی‌توان وضعیت ویرایشگر کوئری را به سرور منتقل کرد. سوپرسِت بعداً تلاش "
+"خواهد کرد. لطفاً اگر این مشکل ادامه داشت با مدیر سیستم خود تماس بگیرید."
+
+msgid ""
+"Unable to migrate query state to backend. Superset will retry later. "
+"Please contact your administrator if this problem persists."
+msgstr ""
+"عدم توانایی در انتقال وضعیت کوئری به سرور. Superset بعداً تلاش خواهد کرد."
+" لطفاً در صورت ادامه‌ی این مشکل با مدیر خود تماس بگیرید."
+
+msgid ""
+"Unable to migrate table schema state to backend. Superset will retry "
+"later. Please contact your administrator if this problem persists."
+msgstr ""
+"نمی‌توان وضعیت ساختار جدول را به backend منتقل کرد. Superset بعداً دوباره"
+" تلاش خواهد کرد. لطفاً در صورت ادامه این مشکل با مدیر خود تماس بگیرید."
+
+msgid "Unable to parse SQL"
+msgstr "عدم امکان پارس کردن SQL"
+
+msgid "Unable to retrieve dashboard colors"
+msgstr "نمی‌توان رنگ‌های داشبورد را بازیابی کرد"
+
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
+msgid "Undefined"
+msgstr "تعریف نشده"
+
+msgid "Undefined window for rolling operation"
+msgstr "پنجره نامشخص برای عملیات متحرک"
+
+msgid "Undo the action"
+msgstr "عملیات را لغو کنید"
+
+msgid "Undo?"
+msgstr "بازگردانی؟"
+
+msgid "Unexpected error"
+msgstr "خطای غیرمنتظره"
+
+msgid "Unexpected error occurred, please check your logs for details"
+msgstr ""
+"خطای غیرمنتظره‌ای رخ داده است، لطفاً لاگ‌های خود را برای جزئیات بررسی "
+"کنید."
+
+msgid "Unexpected error: "
+msgstr "خطای غیرمنتظره:"
+
+msgid "Unexpected no file extension found"
+msgstr "پسوند فایل غیرمنتظره یافت نشد"
+
+#, python-format
+msgid "Unexpected time range: %(error)s"
+msgstr "محدوده زمانی غیرمنتظره: %(error)s"
+
+#, fuzzy
+msgid "Unhide"
+msgstr "بازگردانی"
+
+msgid "Unknown"
+msgstr "ناشناخته"
+
+#, python-format
+msgid "Unknown Doris server host \"%(hostname)s\"."
+msgstr "میزبان سرور دوریس \"%(hostname)s\" ناشناخته است."
+
+#, python-format
+msgid "Unknown MySQL server host \"%(hostname)s\"."
+msgstr "سرور MySQL ناشناخته با میزبان \"%(hostname)s\"."
+
+#, fuzzy, python-format
+msgid "Unknown OceanBase server host \"%(hostname)s\"."
+msgstr "میزبان سرور دوریس \"%(hostname)s\" ناشناخته است."
+
+msgid "Unknown Presto Error"
+msgstr "خطای ناشناخته پرستو"
+
+msgid "Unknown Status"
+msgstr "وضعیت ناشناخته"
+
+#, python-format
+msgid "Unknown column used in orderby: %(col)s"
+msgstr "ستون ناشناخته‌ای در ترتیب استفاده شده: %(col)s"
+
+msgid "Unknown error"
+msgstr "خطای ناشناخته"
+
+msgid "Unknown input format"
+msgstr "فرمت ورودی ناشناخته است"
+
+msgid "Unknown type"
+msgstr "نوع ناشناخته"
+
+msgid "Unknown value"
+msgstr "مقدار ناشناخته"
+
+#, fuzzy
+msgid "Unpin"
+msgstr "اجرا کردن"
+
+#, python-format
+msgid "Unsafe return type for function %(func)s: %(value_type)s"
+msgstr "نوع بازگشت ناایمن برای تابع %(func)s: %(value_type)s"
+
+#, python-format
+msgid "Unsafe template value for key %(key)s: %(value_type)s"
+msgstr "مقدار الگو ناامن برای کلید %(key)s: %(value_type)s"
+
+#, python-format
+msgid "Unsupported clause type: %(clause)s"
+msgstr "نوع بند پشتیبانی نشده: %(clause)s"
+
+#, python-format
+msgid "Unsupported post processing operation: %(operation)s"
+msgstr "عملیات پس پردازش پشتیبانی نشده: %(operation)s"
+
+#, python-format
+msgid "Unsupported return value for method %(name)s"
+msgstr "مقدار برگشتی پشتیبانی نشده برای متد %(name)s"
+
+#, python-format
+msgid "Unsupported template value for key %(key)s"
+msgstr "مقدار الگو برای کلید %(key)s پشتیبانی نمی‌شود"
+
+#, python-format
+msgid "Unsupported time grain: %(time_grain)s"
+msgstr "زمان دانهٔ پشتیبانی نشده: %(time_grain)s"
+
+msgid "Untitled Dataset"
+msgstr "مجموعه داده بدون عنوان"
+
+msgid "Untitled Query"
+msgstr "کوئری بدون عنوان"
+
+msgid "Untitled query"
+msgstr "کوئری بی‌عنوان"
+
+msgid "Update"
+msgstr "به‌روزرسانی"
+
+msgid "Update chart"
+msgstr "به‌روزرسانی نمودار"
+
+msgid "Updating chart was stopped"
+msgstr "به‌روزرسانی نمودار متوقف شد"
+
+msgid "Upload"
+msgstr "بارگذاری"
+
+msgid "Upload CSV"
+msgstr "بارگذاری CSV"
+
+msgid "Upload CSV to database"
+msgstr "بارگذاری CSV به پایگاه داده"
+
+msgid "Upload Columnar"
+msgstr "بارگذاری ستونی"
+
+msgid "Upload Columnar file to database"
+msgstr "فایل ستونی را به پایگاه داده بارگذاری کنید"
+
+msgid "Upload Enabled"
+msgstr "بارگذاری فعال شد"
+
+msgid "Upload Excel"
+msgstr "بارگذاری اکسل"
+
+msgid "Upload Excel to database"
+msgstr "فایل اکسل را به پایگاه داده بارگذاری کنید"
+
+msgid "Upload JSON file"
+msgstr "فایل JSON را بارگذاری کنید"
+
+msgid "Upload a file to a database."
+msgstr "فایلی را به پایگاه داده بارگذاری کنید."
+
+#, python-format
+msgid "Upload a file with a valid extension. Valid: [%s]"
+msgstr "فایلی با پسوند معتبر بارگذاری کنید. پسوندهای معتبر: [%s]"
+
+#, fuzzy
+msgid "Upload credentials"
+msgstr "آپلود مدارک ورود"
+
+msgid "Upload file to database"
+msgstr "فایل را به پایگاه داده بارگذاری کنید"
+
+msgid "Upload file to preview columns"
+msgstr "فایل را برای پیش‌نمایش ستون‌ها بارگذاری کنید"
+
+msgid "Uploading a file is required"
+msgstr "بارگذاری یک فایل الزامی است"
+
+msgid "Upper Threshold"
+msgstr "آستانه بالا"
+
+msgid "Upper threshold must be greater than lower threshold"
+msgstr "آستانه بالا باید بزرگ‌تر از آستانه پایین باشد."
+
+msgid "Usage"
+msgstr "استفاده"
+
+#, python-format
+msgid "Use \"%(menuName)s\" menu instead."
+msgstr "به جای آن از منوی \"%(menuName)s\" استفاده کنید."
+
+#, python-format
+msgid "Use %s to open in a new tab."
+msgstr "از %s برای باز کردن در یک تب جدید استفاده کنید."
+
+msgid "Use Area Proportions"
+msgstr "استفاده از نسبت‌های مساحتی"
+
+msgid "Use a log scale"
+msgstr "از مقیاس لگاریتمی استفاده کنید"
+
+msgid "Use a log scale for the X-axis"
+msgstr "از مقیاس لگاریتمی برای محور X استفاده کنید."
+
+msgid "Use a log scale for the Y-axis"
+msgstr "برای محور Y از مقیاس لگاریتمی استفاده کنید."
+
+msgid "Use an encrypted connection to the database"
+msgstr "از یک اتصال رمزنگاری‌شده به پایگاه داده استفاده کنید"
+
+msgid "Use an ssh tunnel connection to the database"
+msgstr "از اتصال تونل SSH به پایگاه داده استفاده کنید"
+
+#, 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 ""
+"از یک نمودار موجود دیگر به عنوان منبع برای یادداشت‌ها و پوشش‌ها استفاده "
+"کنید. نمودار شما باید یکی از این نوع‌های تجسم باشد: [%s]"
+
+#, fuzzy
+msgid "Use current extent"
+msgstr "اجرای کوئری جاری"
+
+msgid "Use date formatting even when metric value is not a timestamp"
+msgstr "از فرمت تاریخ استفاده کنید حتی زمانی که مقدار متریک زمان‌سنج نیست."
+
+msgid "Use metrics as a top level group for columns or for rows"
+msgstr ""
+"از متریک‌ها به عنوان یک گروه در سطح بالا برای ستون‌ها یا ردیف‌ها استفاده "
+"کنید."
+
+msgid "Use only a single value."
+msgstr "فقط از یک مقدار استفاده کنید."
+
+msgid "Use the Advanced Analytics options below"
+msgstr "از گزینه‌های تجزیه و تحلیل پیشرفته زیر استفاده کنید"
+
+msgid "Use the edit button to change this field"
+msgstr "از دکمه ویرایش برای تغییر این فیلد استفاده کنید"
+
+msgid "Use this section if you want a query that aggregates"
+msgstr "از این بخش استفاده کنید اگر به یک کوئری که تجمیع می‌کند نیاز دارید."
+
+msgid "Use this section if you want to query atomic rows"
+msgstr "از این بخش استفاده کنید اگر می‌خواهید ردیف‌های اتمی را جستجو کنید."
+
+msgid "Use this to define a static color for all circles"
+msgstr "از این برای تعریف یک رنگ ثابت برای تمامی دایره‌ها استفاده کنید."
+
+msgid ""
+"Used internally to identify the plugin. Should be set to the package name"
+" from the pluginʼs package.json"
+msgstr ""
+"به‌طور داخلی برای شناسایی پلاگین استفاده می‌شود. باید به نام بسته از فایل"
+" package.json پلاگین تنظیم شود."
+
+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 ""
+"برای خلاصه‌سازی یک مجموعه داده با گروه‌بندی چندین آمار در دو محور استفاده"
+" می‌شود. مثال‌ها: اعداد فروش به تفکیک منطقه و ماه، وظایف به تفکیک وضعیت و"
+" واریزکننده، کاربران فعال به تفکیک سن و موقعیت. این visualization از نظر "
+"بصری شگفت‌انگیزترین نیست، اما بسیار اطلاعاتی و چندمنظوره است."
+
+msgid "User"
+msgstr "کاربر"
+
+msgid "User doesn't have the proper permissions."
+msgstr "کاربر مجوزهای لازم را ندارد."
+
+msgid "User must select a value before applying the filter"
+msgstr "کاربر باید یک مقدار را قبل از اعمال فیلتر انتخاب کند."
+
+msgid "User query"
+msgstr "کوئری کاربر"
+
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
+msgid "Username"
+msgstr "نام کاربری"
+
+#, fuzzy
+msgid "Username is required"
+msgstr "نام الزامی است"
+
+#, fuzzy
+msgid "Users"
+msgstr "سری"
+
+msgid "Users are not allowed to set a search path for security reasons."
+msgstr ""
+"به دلایل امنیتی، به کاربران اجازه داده نمی‌شود که یک مسیر جستجو تنظیم "
+"کنند."
+
+msgid ""
+"Uses Gaussian Kernel Density Estimation to visualize spatial distribution"
+" of data"
+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 ""
+"از یک سنجشگر برای نمایش پیشرفت یک متریک به سمت هدف استفاده می‌کند. موقعیت"
+" دکمه نشان‌دهنده پیشرفت و مقدار پایانی در سنجشگر نمایان‌گر ارزش هدف است."
+
+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 ""
+"از دایره‌ها برای تجسم جریان داده‌ها در مراحل مختلف یک سیستم استفاده "
+"می‌شود. با قرار دادن نشانگر ماوس بر روی مسیرهای فردی در تجسم، مراحل را که"
+" یک مقدار طی کرده است، درک کنید. این برای تجسم قیف‌ها و لوله‌های "
+"چندمرحله‌ای و چندگروهی مفید است."
+
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
+msgid "Value"
+msgstr "مقدار"
+
+msgid "Value Domain"
+msgstr "دامنه مقدار"
+
+msgid "Value Format"
+msgstr "قالب ارزش"
+
+msgid "Value and Percentage"
+msgstr "مقدار و درصد"
+
+msgid "Value bounds"
+msgstr "محدودیت‌های مقدار"
+
+#, python-format
+msgid "Value cannot exceed %s"
+msgstr "مقدار نمی‌تواند بیشتر از %s باشد."
+
+msgid "Value difference between the time periods"
+msgstr "تفاوت ارزش بین دوره‌های زمانی"
+
+msgid "Value format"
+msgstr "فرمت مقدار"
+
+#, fuzzy
+msgid "Value greater than"
+msgstr "مقدار باید بزرگتر از ۰ باشد"
+
+msgid "Value is required"
+msgstr "ارزش الزامی است"
+
+msgid "Value less than"
+msgstr ""
+
+msgid "Value must be 0 or greater"
+msgstr "مقدار باید ۰ یا بیشتر باشد"
+
+msgid "Value must be greater than 0"
+msgstr "مقدار باید بزرگتر از ۰ باشد"
+
+msgid "Values are dependent on other filters"
+msgstr "مقادیر به فیلترهای دیگر وابسته هستند"
+
+msgid "Values dependent on"
+msgstr "مقادیر وابسته به"
+
+msgid ""
+"Values selected in other filters will affect the filter options to only "
+"show relevant values"
+msgstr ""
+"مقادیر انتخاب شده در فیلترهای دیگر بر گزینه‌های فیلتر تأثیر خواهند گذاشت "
+"تا فقط مقادیر مرتبط نمایش داده شوند."
+
+msgid "Version"
+msgstr "نسخه"
+
+msgid "Version number"
+msgstr "شماره نسخه"
+
+msgid "Vertical"
+msgstr "عمودی"
+
+msgid "Vertical (Left)"
+msgstr "عمودی (چپ)"
+
+msgid "View"
+msgstr "نمایش"
+
+msgid "View All »"
+msgstr "مشاهده همه »"
+
+msgid "View Dataset"
+msgstr "مشاهده مجموعه داده"
+
+msgid "View all charts"
+msgstr "مشاهده تمام نمودارها"
+
+msgid "View as table"
+msgstr "نمایش به صورت جدول"
+
+msgid "View in SQL Lab"
+msgstr "نمایش در آزمایشگاه SQL"
+
+#, python-format
+msgid "View keys & indexes (%s)"
+msgstr "نمایش کلیدها و ایندکس‌ها (%s)"
+
+msgid "View query"
+msgstr "مشاهده کوئری"
+
+msgid "Viewed"
+msgstr "مشاهده شده"
+
+#, python-format
+msgid "Viewed %s"
+msgstr "مشاهده شده %s"
+
+msgid "Viewport"
+msgstr "نمایشگر"
+
+msgid "Virtual"
+msgstr "مجازی"
+
+msgid "Virtual (SQL)"
+msgstr "مجازی (SQL)"
+
+msgid "Virtual dataset query cannot be empty"
+msgstr "کوئری مجموعه داده مجازی نمی‌تواند خالی باشد"
+
+msgid "Virtual dataset query cannot consist of multiple statements"
+msgstr "کوئریی مجموعه داده مجازی نمی‌تواند شامل چندین عبارت باشد."
+
+msgid "Virtual dataset query must be read-only"
+msgstr "کوئری مجموعه داده مجازی باید فقط خواندنی باشد"
+
+msgid "Visual Tweaks"
+msgstr "تنظیمات بصری"
+
+msgid "Visual formatting"
+msgstr "فرمت‌بندی بصری"
+
+msgid "Visualization Type"
+msgstr "نوع تجسم"
+
+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 ""
+"یک مجموعه موازی از métrics را در چندین گروه تجزیه و تحلیل کنید. هر گروه "
+"با استفاده از خطی از نقاط خود نمایش داده می‌شود و هر métrics به عنوان یک "
+"لبه در نمودار نمایان می‌شود."
+
+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 ""
+"Visualize geospatial data like 3D buildings, landscapes, or objects in "
+"grid view."
+msgstr ""
+"داده‌های جغرافیایی مانند ساختمان‌های ۳ بعدی، مناظر یا اشیاء را در نمای "
+"شبکه‌ای تجسم کنید."
+
+msgid ""
+"Visualize multiple levels of hierarchy using a familiar tree-like "
+"structure."
+msgstr ""
+"سطوح مختلف سلسله مراتب را با استفاده از یک ساختار شبیه درخت که برای شما "
+"آشنا است، تجسم کنید."
+
+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 یکسان تجسم کنید. توجه داشته باشید "
+"که هر دو سری می‌توانند با نوع نمودار متفاوتی تجسم شوند (به عنوان مثال ۱ "
+"با میله‌ها و ۱ با یک خط)."
+
+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 "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 نمایش می‌دهد. می‌توان چندضلعی‌ها را با استفاده از یک "
+"معیار رنگ‌آمیزی کرد."
+
+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 ""
+"نمودار می‌آفریند که چگونه یک شاخص در طول زمان با استفاده از یک مقیاس رنگی"
+" و نمای تقویم تغییر کرده است. مقادیر خاکستری برای نشان دادن مقادیر گمشده "
+"استفاده می‌شود و طرح رنگ خطی برای کدگذاری مقدار هر روز به کار می‌رود."
+
+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 ""
+"نقشه‌ای را ارائه می‌دهد که چگونه یک معیار واحد در بخش‌های اصلی یک کشور "
+"(استان‌ها، ولایات و غیره) متغیر است. ارزش هر بخش زمانی که بر روی مرز "
+"جغرافیایی مربوطه حرکت می‌کنید، افزایش می‌یابد."
+
+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 ""
+"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 "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
+#, python-format
+msgid "Waiting on %s"
+msgstr "در حال انتظار برای %s"
+
+msgid "Waiting on database..."
+msgstr "در حال انتظار برای پایگاه داده..."
+
+msgid "Want to add a new database?"
+msgstr "آیا می‌خواهید یک پایگاه داده جدید اضافه کنید؟"
+
+msgid "Warning"
+msgstr "هشدار"
+
+msgid "Warning!"
+msgstr "هشدار!"
+
+msgid ""
+"Warning! Changing the dataset may break the chart if the metadata does "
+"not exist."
+msgstr ""
+"هشدار! تغییر مجموعه داده ممکن است نمودار را خراب کند اگر متادیتا وجود "
+"نداشته باشد."
+
+msgid "Was unable to check your query"
+msgstr "نتوانستم کوئری شما را بررسی کنم."
+
+msgid "Waterfall Chart"
+msgstr "نمودار آبشار"
+
+msgid ""
+"We are unable to connect to your database. Click \"See more\" for "
+"database-provided information that may help troubleshoot the issue."
+msgstr ""
+"ما قادر به اتصال به پایگاه داده شما نیستیم. برای مشاهده اطلاعات ارائه شده"
+" توسط پایگاه داده که ممکن است به عیب‌یابی مشکل کمک کند، روی \"مشاهده "
+"بیشتر\" کلیک کنید."
+
+#, python-format
+msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s."
+msgstr "ما نمی‌توانیم ستون \"%(column)s\" را در خط %(location)s حل کنیم."
+
+#, python-format
+msgid "We can't seem to resolve the column \"%(column_name)s\""
+msgstr "ما نتوانسته‌ایم ستون \"%(column_name)s\" را شناسایی کنیم."
+
+#, python-format
+msgid ""
+"We can't seem to resolve the column \"%(column_name)s\" at line "
+"%(location)s."
+msgstr "ما نمی‌توانیم ستون \"%(column_name)s\" را در خط %(location)s حل کنیم."
+
+#, python-format
+msgid "We have the following keys: %s"
+msgstr "ما کلیدهای زیر را داریم: %s"
+
+msgid "We were unable to active or deactivate this report."
+msgstr "ما نتوانستیم این گزارش را فعال یا غیرفعال کنیم."
+
+msgid ""
+"We were unable to carry over any controls when switching to this new "
+"dataset."
+msgstr "ما نتوانستیم هیچ کنترلی را هنگام تغییر به این مجموعه داده جدید منتقل کنیم."
+
+#, 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\" متصل شویم. لطفاً "
+"نام پایگاه داده خود را بررسی کرده و دوباره تلاش کنید."
+
+msgid "Web"
+msgstr "وب"
+
+msgid "Wednesday"
+msgstr "چهارشنبه"
+
+msgid "Week"
+msgstr "هفته"
+
+msgid "Week ending Saturday"
+msgstr "هفته‌ پایان شنبه"
+
+msgid "Week ending Sunday"
+msgstr "هفته به پایان رسیده یکشنبه"
+
+msgid "Week starting Monday"
+msgstr "هفته شروع از دوشنبه"
+
+msgid "Week starting Sunday"
+msgstr "هفته آغازین یکشنبه"
+
+msgid "Weekly Report"
+msgstr "گزارش هفتگی"
+
+#, python-format
+msgid "Weekly Report for %s"
+msgstr "گزارش هفتگی برای %s"
+
+msgid "Weekly seasonality"
+msgstr "فصل‌مندی هفتگی"
+
+#, python-format
+msgid "Weeks %s"
+msgstr "هفته‌ها %s"
+
+msgid "Weight"
+msgstr "وزن"
+
+#, 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] ""
+
+#, 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] ""
+
+msgid "What should be shown as the label"
+msgstr "چه چیزی باید به عنوان برچسب نمایش داده شود"
+
+msgid "What should be shown as the tooltip label"
+msgstr "چه چیزی باید به عنوان برچسب تولتیپ نمایش داده شود"
+
+msgid "What should be shown on the label?"
+msgstr "باید در برچسب چه چیزی نمایش داده شود؟"
+
+msgid "What should happen if the table already exists"
+msgstr "اگر جدول از قبل وجود داشته باشد چه باید کرد؟"
+
+msgid ""
+"When `Calculation type` is set to \"Percentage change\", the Y Axis "
+"Format is forced to `.1%`"
+msgstr ""
+"زمانی که نوع محاسبه به \"تغییر درصدی\" تنظیم شود، فرمت محور Y به `.۱٪` "
+"مجبور می‌شود."
+
+msgid "When a secondary metric is provided, a linear color scale is used."
+msgstr "زمانی که یک معیار ثانویه ارائه شود، یک مقیاس رنگ خطی استفاده می‌شود."
+
+msgid "When checked, the map will zoom to your data after each query"
+msgstr ""
+"زمانی که تیک خورده باشد، نقشه پس از هر کوئری به داده‌های شما زوم خواهد "
+"کرد."
+
+msgid "When enabled, users are able to visualize SQL Lab results in Explore."
+msgstr ""
+"زمانی که فعال شود، کاربران قادر به مشاهده نتایج SQL Lab در بخش اکتشاف "
+"خواهند بود."
+
+msgid "When only a primary metric is provided, a categorical color scale is used."
+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 مشخص می‌شود، منبع داده به عنوان یک نما عمل می‌کند. سوپردیت "
+"این عبارت را به عنوان یک زیرکوئری در حین گروه بندی و فیلتر کردن روی "
+"کوئری‌های والد تولید شده استفاده خواهد کرد."
+
+msgid ""
+"When the secondary temporal columns are filtered, apply the same filter "
+"to the main datetime column."
+msgstr ""
+"هنگامی که ستون‌های زمانی ثانویه فیلتر می‌شوند، همان فیلتر را به ستون "
+"تاریخ و زمان اصلی اعمال کنید."
+
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+"هنگامی که تیک آن برداشته شود، رنگ‌های طرح رنگ انتخاب شده برایسری‌های "
+"جابجایی زمان استفاده خواهند شد."
+
+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) بر روی کوئری که مقادیر متمایز را از جدول انتخاب"
+" می‌کند، استفاده کنید. معمولاً هدف این است که با اعمال یک فیلتر زمانی "
+"نسبی بر روی یک فیلد زمان‌دار تقسیم‌بندی شده یا ایندکس‌دار، اسکن را محدود "
+"کنیم."
+
+msgid "When using 'Group By' you are limited to use a single metric"
+msgstr ""
+"زمانی که از 'گروه بندی' استفاده می‌کنید، محدود به استفاده از یک متریک "
+"هستید."
+
+msgid "When using other than adaptive formatting, labels may overlap"
+msgstr ""
+"زمانی که از فرمت‌بندی غیر تطبیقی استفاده می‌شود، برچسب‌ها ممکن است با هم "
+"تداخل پیدا کنند."
+
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
+
+msgid "Whether the progress bar overlaps when there are multiple groups of data"
+msgstr "آیا نوار پیشرفت زمانی که چندین گروه داده وجود دارد، همپوشانی دارد؟"
+
+msgid ""
+"Whether to align background charts with both positive and negative values"
+" at 0"
+msgstr "آیا باید نمودارهای پس‌زمینه با مقادیر مثبت و منفی در ۰ هماهنگ شوند؟"
+
+msgid "Whether to align positive and negative values in cell bar chart at 0"
+msgstr "آیا باید مقادیر مثبت و منفی را در نمودار میله‌ای سلولی در صفر تنظیم کنیم؟"
+
+msgid "Whether to always show the annotation label"
+msgstr "آیا همواره باید برچسب توضیحات نمایش داده شود؟"
+
+msgid "Whether to animate the progress and the value or just display them"
+msgstr "آیا باید پیشرفت و مقدار را انیمیشن کنیم یا فقط آنها را نمایش دهیم؟"
+
+msgid "Whether to apply a normal distribution based on rank on the color scale"
+msgstr "آیا باید یک توزیع نرمال بر اساس رتبه بر روی مقیاس رنگ اعمال کرد؟"
+
+msgid "Whether to apply filter when items are clicked"
+msgstr "آیا باید فیلتر را هنگام کلیک بر روی اقلام اعمال کنیم؟"
+
+msgid "Whether to colorize numeric values by if they are positive or negative"
+msgstr "آیا باید مقادیر عددی را بر اساس مثبت یا منفی بودن رنگی کنیم؟"
+
+msgid ""
+"Whether to colorize numeric values by whether they are positive or "
+"negative"
+msgstr "آیا باید مقادیر عددی را بر اساس مثبت یا منفی بودن رنگی کرد؟"
+
+msgid "Whether to display a bar chart background in table columns"
+msgstr "آیا باید پس‌زمینه نمودار ستونی در ستون‌های جدول نمایش داده شود؟"
+
+msgid "Whether to display a legend for the chart"
+msgstr "آیا می‌خواهید افسانه‌ای برای نمودار نمایش داده شود؟"
+
+msgid "Whether to display bubbles on top of countries"
+msgstr "آیا حباب‌ها بر روی کشورها نمایش داده شود؟"
+
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "آیا می‌خواهید افسانه‌ای برای نمودار نمایش داده شود؟"
+
+msgid "Whether to display the aggregate count"
+msgstr "آیا تعداد تجمعی را نمایش دهیم؟"
+
+msgid "Whether to display the interactive data table"
+msgstr "آیا جدول داده‌های تعاملی نمایش داده شود؟"
+
+msgid "Whether to display the labels."
+msgstr "آیا برچسب‌ها نمایش داده شوند."
+
+msgid "Whether to display the legend (toggles)"
+msgstr "آیا باید نشانگر (تغییرات) را نمایش داد؟"
+
+msgid "Whether to display the metric name as a title"
+msgstr "آیا نام معیار به عنوان عنوان نمایش داده شود؟"
+
+msgid "Whether to display the min and max values of the X-axis"
+msgstr "آیا باید مقادیر حداقل و حداکثر محور X نمایش داده شود؟"
+
+msgid "Whether to display the min and max values of the Y-axis"
+msgstr "آیا باید مقادیر حداقل و حداکثر محور Y نمایش داده شود؟"
+
+msgid "Whether to display the numerical values within the cells"
+msgstr "آیا باید مقادیر عددی را درون سلول‌ها نمایش داد؟"
+
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "آیا درصد را در ابزارک راهنما (tooltip) درج کنیم؟"
+
+msgid "Whether to display the stroke"
+msgstr "آیا باید خط را نمایش داد؟"
+
+msgid "Whether to display the time range interactive selector"
+msgstr "آیا محدوده زمانی انتخاب‌گر تعاملی را نمایش دهیم؟"
+
+msgid "Whether to display the timestamp"
+msgstr "آیا زمان بر روی صفحه نمایش داده شود؟"
+
+msgid "Whether to display the tooltip labels."
+msgstr "نمایش برچسب‌های راهنما."
+
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "آیا باید مقادیر عددی را درون سلول‌ها نمایش داد؟"
+
+msgid "Whether to display the trend line"
+msgstr "آیا خط روند نمایش داده شود؟"
+
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "آیا تعداد تجمعی را نمایش دهیم؟"
+
+msgid "Whether to enable changing graph position and scaling."
+msgstr "آیا تغییر موقعیت و مقیاس نمودار را فعال کنید؟"
+
+msgid "Whether to enable node dragging in force layout mode."
+msgstr "آیا باید کشیدن گره‌ها در حالت چینش اجباری فعال شود؟"
+
+msgid "Whether to fill the objects"
+msgstr "آیا اشیا را پر کنیم؟"
+
+msgid "Whether to ignore locations that are null"
+msgstr "آیا باید مکان‌های خالی را نادیده گرفت؟"
+
+msgid "Whether to include a client-side search box"
+msgstr "آیا باید یک جعبه جستجوی سمت کلاینت شامل شود؟"
+
+msgid "Whether to include the percentage in the tooltip"
+msgstr "آیا درصد را در ابزارک راهنما (tooltip) درج کنیم؟"
+
+msgid "Whether to include the time granularity as defined in the time section"
+msgstr "آیا باید دقت زمانی را که در بخش زمان تعریف شده است، شامل کرد؟"
+
+msgid "Whether to make the grid 3D"
+msgstr "آیا شبکه را ۳ بعدی کنیم؟"
+
+msgid "Whether to populate autocomplete filters options"
+msgstr "آیا گزینه‌های فیلترهای تکمیل خودکار را پر کنیم؟"
+
+msgid "Whether to show as Nightingale chart."
+msgstr "آیا نمایش به عنوان نمودار نیلگون باشد؟"
+
+#, fuzzy
+msgid ""
+"Whether to show extra controls or not. Extra controls include things like"
+" making multiBar charts stacked or side by side."
+msgstr ""
+"آیا باید کنترل‌های اضافی نمایش داده شوند یا نه. کنترل‌های اضافی شامل "
+"مواردی مانند خوشه‌ای کردن نمودارهای چندمیله‌ای یا نمایش آن‌ها کنار هم "
+"است."
+
+msgid "Whether to show minor ticks on the axis"
+msgstr "آیا باید نشانگرهای جزئی روی محور نمایش داده شوند؟"
+
+msgid "Whether to show the pointer"
+msgstr "آیا نشانگر نمایش داده شود؟"
+
+msgid "Whether to show the progress of gauge chart"
+msgstr "آیا پیشرفت نمودار گيج را نشان دهیم؟"
+
+msgid "Whether to show the split lines on the axis"
+msgstr "آیا خطوط تقسیم را بر روی محور نمایش دهیم؟"
+
+msgid "Whether to sort ascending or descending on the base Axis."
+msgstr "آیا باید بر روی محور پایه به صورت صعودی یا نزولی مرتب کنید؟"
+
+msgid "Whether to sort descending or ascending"
+msgstr "آیا مرتب‌سازی به صورت نزولی باشد یا صعودی؟"
+
+msgid "Whether to sort results by the selected metric in descending order."
+msgstr "آیا باید نتایج را بر اساس معیار انتخاب شده به ترتیب نزولی مرتب کنید؟"
+
+msgid "Whether to sort tooltip by the selected metric in descending order."
+msgstr "آیا باید نوار ابزار را بر اساس متریک انتخاب شده به صورت نزولی مرتب کنید؟"
+
+msgid "Whether to truncate metrics"
+msgstr "آیا متریک‌ها را کوتاه کنیم؟"
+
+msgid "Which country to plot the map for?"
+msgstr "کدام کشور را برای ترسیم نقشه انتخاب کنیم؟"
+
+msgid "Which relatives to highlight on hover"
+msgstr "کدام بستگان را در هنگام جابجایی زیر نور برجسته کنیم"
+
+msgid "Whisker/outlier options"
+msgstr "گزینه‌های ویکسار/داده‌های پرت"
+
+msgid "White"
+msgstr "سفید"
+
+msgid "Width"
+msgstr "عرض"
+
+msgid "Width of the confidence interval. Should be between 0 and 1"
+msgstr "عرض فاصله اطمینان باید بین ۰ و ۱ باشد."
+
+msgid "Width of the sparkline"
+msgstr "عرض چارت میله‌ای"
+
+msgid "Window must be > 0"
+msgstr "اندازه پنجره باید بزرگتر از ۰ باشد."
+
+msgid "With a subheader"
+msgstr "با یک زیرعنوان"
+
+msgid "Word Cloud"
+msgstr "ابر واژه"
+
+msgid "Word Rotation"
+msgstr "چرخش کلمات"
+
+msgid "Working"
+msgstr "در حال کار کردن"
+
+msgid "Working timeout"
+msgstr "زمان‌‍‍‌بندی کار"
+
+msgid "World Map"
+msgstr "نقشه جهان"
+
+msgid "Write a description for your query"
+msgstr "توضیحی برای کوئری خود بنویسید."
+
+msgid "Write a handlebars template to render the data"
+msgstr "یک الگوی هندل‌بارز برای نمایش داده‌ها بنویسید."
+
+msgid "X AXIS TITLE MARGIN"
+msgstr "حاشیه عنوان محور ایکس"
+
+msgid "X Axis"
+msgstr "محور X"
+
+msgid "X Axis Bounds"
+msgstr "محدوده‌های محور X"
+
+msgid "X Axis Format"
+msgstr "قالب محور X"
+
+msgid "X Axis Label"
+msgstr "برچسب محور X"
+
+msgid "X Axis Title"
+msgstr "عنوان محور X"
+
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "حاشیه عنوان محور ی"
+
+msgid "X Log Scale"
+msgstr "مقیاس لگاریتمی X"
+
+msgid "X Tick Layout"
+msgstr "چیدمان X Tick"
+
+msgid "X bounds"
+msgstr "حدود X"
+
+msgid "X-Axis Sort Ascending"
+msgstr "چینش محور X به صورت صعودی"
+
+msgid "X-Axis Sort By"
+msgstr "مرتب‌سازی محور X بر اساس"
+
+msgid "X-axis"
+msgstr "محور X"
+
+msgid "XScale Interval"
+msgstr "فاصله مقیاس X"
+
+msgid "XYZ"
+msgstr ""
+
+msgid "Y 2 bounds"
+msgstr "بازه‌های Y ۲"
+
+msgid "Y AXIS TITLE MARGIN"
+msgstr "حاشیه عنوان محور Y"
+
+msgid "Y Axis"
+msgstr "محور Y"
+
+msgid "Y Axis 2 Bounds"
+msgstr "محدوده های محور Y ۲"
+
+msgid "Y Axis Bounds"
+msgstr "محدوده محور Y"
+
+msgid "Y Axis Format"
+msgstr "قالب محور Y"
+
+msgid "Y Axis Label"
+msgstr "برچسب محور Y"
+
+msgid "Y Axis Title"
+msgstr "عنوان محور Y"
+
+msgid "Y Axis Title Margin"
+msgstr "حاشیه عنوان محور ی"
+
+msgid "Y Axis Title Position"
+msgstr "موقعیت عنوان محور Y"
+
+msgid "Y Log Scale"
+msgstr "مقیاس لگاریتمی Y"
+
+msgid "Y bounds"
+msgstr "محدودیت های Y"
+
+msgid "Y-Axis"
+msgstr "محور Y"
+
+msgid "Y-Axis Sort Ascending"
+msgstr "مرتب‌سازی محور Y به صورت صعودی"
+
+msgid "Y-Axis Sort By"
+msgstr "مرتب‌سازی محور Y بر اساس"
+
+msgid "Y-axis"
+msgstr "محور Y"
+
+msgid "Y-axis bounds"
+msgstr "محدوده‌های محور Y"
+
+msgid "YScale Interval"
+msgstr "فاصله مقیاس Y"
+
+msgid "Year"
+msgstr "سال"
+
+msgid "Year (freq=AS)"
+msgstr "سال (فرکانس=سالانه)"
+
+msgid "Yearly seasonality"
+msgstr "فصل‌گرایی سالانه"
+
+#, python-format
+msgid "Years %s"
+msgstr "سال‌های %s"
+
+msgid "Yes"
+msgstr "بله"
+
+msgid "Yes, cancel"
+msgstr "بله، cancel کنید"
+
+msgid "Yes, overwrite changes"
+msgstr "بله، تغییرات را بازنویسی کنید"
+
+#, python-format
+msgid "You are adding tags to %s %ss"
+msgstr "شما در حال اضافه کردن برچسب به %s %ss هستید"
+
+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 ""
+"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 ""
+"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 ""
+"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 ""
+"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 ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
+msgid "You can"
+msgstr "شما می‌توانید"
+
+msgid "You can add the components in the"
+msgstr "شما می‌توانید اجزاء را در"
+
+msgid "You can add the components in the edit mode."
+msgstr "شما می‌توانید اجزاء را در حالت ویرایش اضافه کنید."
+
+msgid "You can also just click on the chart to apply cross-filter."
+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 ""
+"شما می‌توانید انتخاب کنید که تمام نمودارهایی را که به آن‌ها دسترسی دارید "
+"نمایش دهید یا فقط نمودارهایی را که مالک آن‌ها هستید. انتخاب فیلتر شما "
+"ذخیره شده و فعال باقی می‌ماند تا زمانی که تصمیم به تغییر آن بگیرید."
+
+msgid ""
+"You can create a new chart or use existing ones from the panel on the "
+"right"
+msgstr ""
+"شما می‌توانید یک چارت جدید بسازید یا از چارت‌های موجود در پنل سمت راست "
+"استفاده کنید."
+
+msgid "You can preview the list of dashboards in the chart settings dropdown."
+msgstr ""
+"شما می‌توانید فهرست داشبوردها را در منوی کشویی تنظیمات چارت پیش‌نمایش "
+"کنید."
+
+msgid "You can't apply cross-filter on this data point."
+msgstr "شما نمی‌توانید فیلتر متقاطع را روی این نقطه داده اعمال کنید."
+
+msgid ""
+"You cannot delete the last temporal filter as it's used for time range "
+"filters in dashboards."
+msgstr ""
+"شما نمی‌توانید آخرین فیلتر موقتی را حذف کنید زیرا از آن برای فیلترهای "
+"بازه زمانی در داشبوردها استفاده می‌شود."
+
+msgid "You cannot use 45° tick layout along with the time range filter"
+msgstr ""
+"شما نمی‌توانید از چیدمان علامت ۴۵ درجه به همراه فیلتر بازه زمانی استفاده "
+"کنید."
+
+#, python-format
+msgid "You do not have permission to edit this %s"
+msgstr "شما اجازه ویرایش این %s را ندارید."
+
+msgid "You do not have permission to edit this chart"
+msgstr "شما اجازه ویرایش این چارت را ندارید"
+
+msgid "You do not have permission to edit this dashboard"
+msgstr "شما اجازه ویرایش این داشبورد را ندارید"
+
+msgid "You do not have permission to read tags"
+msgstr "شما اجازه خواندن برچسب‌ها را ندارید."
+
+msgid "You do not have permissions to edit this dashboard."
+msgstr "شما مجوز ویرایش این داشبورد را ندارید."
+
+msgid "You do not have sufficient permissions to edit the chart"
+msgstr "شما مجوزهای کافی برای ویرایش نمودار را ندارید."
+
+msgid "You don't have access to this chart."
+msgstr "شما به این نمودار دسترسی ندارید."
+
+msgid "You don't have access to this dashboard."
+msgstr "شما به این داشبورد دسترسی ندارید."
+
+msgid "You don't have access to this dataset."
+msgstr "شما به این مجموعه داده دسترسی ندارید."
+
+msgid "You don't have access to this embedded dashboard config."
+msgstr "شما به این پیکربندی داشبورد جاسازی شده دسترسی ندارید."
+
+msgid "You don't have permission to modify the value."
+msgstr "شما اجازه تغییر مقدار را ندارید."
+
+#, python-format
+msgid "You don't have the rights to alter %(resource)s"
+msgstr "شما حق تغییر %(resource)s را ندارید."
+
+msgid "You don't have the rights to alter this chart"
+msgstr "شما حق تغییر این نمودار را ندارید."
+
+msgid "You don't have the rights to alter this dashboard"
+msgstr "شما حق تغییر این داشبورد را ندارید."
+
+msgid "You don't have the rights to alter this title."
+msgstr "شما حق تغییر این عنوان را ندارید."
+
+msgid "You don't have the rights to create a chart"
+msgstr "شما حق ایجاد یک نمودار را ندارید."
+
+msgid "You don't have the rights to create a dashboard"
+msgstr "شما حق ایجاد یک داشبورد را ندارید."
+
+msgid "You don't have the rights to download as csv"
+msgstr "شما حق دانلود به صورت csv را ندارید."
+
+msgid "You have removed this filter."
+msgstr "شما این فیلتر را حذف کرده‌اید."
+
+msgid "You have unsaved changes."
+msgstr "شما تغییرات ذخیره نشده‌ای دارید."
+
+#, 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 ""
+"شما از تمام % (historyLength)s فضای لغو استفاده کرده‌اید و قادر به لغو "
+"کامل اقدامات بعدی نخواهید بود. می‌توانید وضعیت فعلی خود را ذخیره کنید تا "
+"تاریخچه را تنظیم مجدد کنید."
+
+msgid "You may have an error in your SQL statement. {message}"
+msgstr "شما ممکن است در عبارت SQL خود یک خطا داشته باشید. {message}"
+
+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 "You must pick a name for the new dashboard"
+msgstr "شما باید یک نام برای داشبورد جدید انتخاب کنید."
+
+msgid "You must run the query successfully first"
+msgstr "شما ابتدا باید کوئری را با موفقیت اجرا کنید."
+
+msgid "You need to configure HTML sanitization to use CSS"
+msgstr ""
+"شما نیاز دارید تا تنظیمات بهداشت HTML را برای استفاده از CSS پیکربندی "
+"کنید."
+
+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 ""
+"شما مقادیر را در پنل کنترل به‌روزرسانی کردید، اما نمودار به‌طور خودکار "
+"به‌روزرسانی نشد. با کلیک بر روی دکمه \"به‌روزرسانی نمودار\" query را اجرا"
+" کنید یا"
+
+msgid ""
+"You've changed datasets. Any controls with data (columns, metrics) that "
+"match this new dataset have been retained."
+msgstr ""
+"شما مجموعه داده‌ها را تغییر داده‌اید. هر کنترل با داده‌ها (ستون‌ها، "
+"معیارها) که با این مجموعه داده جدید مطابقت دارد، حفظ شده است."
+
+msgid "Your chart is not up to date"
+msgstr "چارت شما به روز نیست"
+
+msgid "Your chart is ready to go!"
+msgstr "نمودار شما آماده است!"
+
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
+msgid "Your dashboard is too large. Please reduce its size before saving it."
+msgstr ""
+"داشبورد شما слишком بزرگ است. لطفاً قبل از ذخیره آن، اندازه‌اش را کاهش "
+"دهید."
+
+msgid "Your query could not be saved"
+msgstr "سوال شما نتوانست ذخیره شود"
+
+msgid "Your query could not be scheduled"
+msgstr "کوئری شما نمی‌تواند برنامه‌ریزی شود."
+
+msgid "Your query could not be updated"
+msgstr "کوئری شما نمی‌تواند به‌روزرسانی شود"
+
+msgid ""
+"Your query has been scheduled. To see details of your query, navigate to "
+"Saved queries"
+msgstr ""
+"کوئری شما برنامه‌ریزی شده است. برای مشاهده جزئیات کوئری خود، به کوئری‌های"
+" ذخیره شده مراجعه کنید."
+
+msgid "Your query was not properly saved"
+msgstr "کوئری شما به طور صحیح ذخیره نشد"
+
+msgid "Your query was saved"
+msgstr "کوئری شما ذخیره شد"
+
+msgid "Your query was updated"
+msgstr "کوئری شما بروزرسانی شد"
+
+msgid "Your range is not within the dataset range"
+msgstr ""
+
+msgid "Your report could not be deleted"
+msgstr "گزارش شما نتوانست حذف شود"
+
+msgid "ZIP file contains multiple file types"
+msgstr "فایل ZIP شامل انواع مختلف فایل است."
+
+msgid "Zero imputation"
+msgstr "ارجاع صفر"
+
+msgid "Zoom"
+msgstr "زوم"
+
+#, fuzzy
+msgid "Zoom level"
+msgstr "منطقه‌ی زوم"
+
+msgid "Zoom level of the map"
+msgstr "سطح زوم نقشه"
+
+msgid "[ untitled dashboard ]"
+msgstr "[ داشبورد بدون عنوان ]"
+
+msgid "[Longitude] and [Latitude] columns must be present in [Group By]"
+msgstr ""
+"ستون‌های [طول جغرافیایی] و [عرض جغرافیایی] باید در [ گروه‌بندی] موجود "
+"باشند."
+
+msgid "[Longitude] and [Latitude] must be set"
+msgstr "طول جغرافیایی و عرض جغرافیایی باید تنظیم شود."
+
+msgid "[Missing Dataset]"
+msgstr "[مجموعه داده غایب]"
+
+msgid "[Untitled]"
+msgstr "[بی‌نام]"
+
+msgid "[asc]"
+msgstr "[صعودی]"
+
+msgid "[dashboard name]"
+msgstr "[نام داشبورد]"
+
+msgid "[desc]"
+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 ""
+"این متریک ثانویه برای تعریف رنگ به عنوان یک نسبت در برابر متریک اولیه "
+"استفاده می‌شود. زمانی که حذف شود، رنگ دسته‌ای و مبتنی بر برچسب‌ها است."
+
+msgid "[untitled]"
+msgstr "[بدون عنوان]"
+
+msgid "`compare_columns` must have the same length as `source_columns`."
+msgstr "طول `compare_columns` باید با طول `source_columns` برابر باشد."
+
+msgid "`compare_type` must be `difference`, `percentage` or `ratio`"
+msgstr "`compare_type` باید `difference`، `percentage` یا `ratio` باشد"
+
+msgid "`confidence_interval` must be between 0 and 1 (exclusive)"
+msgstr "متغیر `confidence_interval` باید بین ۰ و ۱ (غیر شامل) باشد."
+
+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(*) است اگر از گروه‌بندی استفاده شود. ستون‌های عددی"
+" با تجمیع‌کننده تجمع می‌یابند. ستون‌های غیر عددی برای برچسب‌گذاری نقاط "
+"استفاده خواهند شد. برای دریافت تعداد نقاط در هر خوشه خالی بگذارید."
+
+msgid "`operation` property of post processing object undefined"
+msgstr "خصوصیت `operation` از شیء پس از پردازش تعریف نشده است"
+
+msgid "`prophet` package not installed"
+msgstr "بسته `prophet` نصب نشده است"
+
+msgid ""
+"`rename_columns` must have the same length as `columns` + "
+"`time_shift_columns`."
+msgstr ""
+"`rename_columns` باید طولی برابر با `columns` + `time_shift_columns` "
+"داشته باشد."
+
+msgid "`row_limit` must be greater than or equal to 0"
+msgstr "مقدار `row_limit` باید بزرگتر یا برابر با ۰ باشد."
+
+msgid "`row_offset` must be greater than or equal to 0"
+msgstr "`row_offset` باید بزرگتر از یا برابر با ۰ باشد."
+
+msgid "`width` must be greater or equal to 0"
+msgstr "`عرض` باید بزرگتر یا برابر با ۰ باشد."
+
+msgid "add colors to cell bars for +/-"
+msgstr "رنگ‌ها را به نوارهای سلول برای + و - اضافه کنید"
+
+msgid "aggregate"
+msgstr "تجمع"
+
+msgid "alert"
+msgstr "هشدار"
+
+msgid "alert condition"
+msgstr "شرط هشدار"
+
+msgid "alert dark"
+msgstr "هشدار تاریک"
+
+msgid "alerts"
+msgstr "هشدارها"
+
+msgid "all"
+msgstr "همه"
+
+msgid "also copy (duplicate) charts"
+msgstr "همچنین نمودارها را کپی (تکرار) کنید."
+
+msgid "ancestor"
+msgstr "نیاکان"
+
+msgid "annotation"
+msgstr "حاشیه‌نویسی"
+
+msgid "annotation_layer"
+msgstr "لایهٔ حاشیه‌نویسی"
+
+msgid "asfreq"
+msgstr "به عنوان فرکانس"
+
+msgid "at"
+msgstr "در"
+
+msgid "auto"
+msgstr "خودکار"
+
+msgid "background"
+msgstr "پس‌زمینه"
+
+msgid "basic conditional formatting"
+msgstr "فرمت‌بندی شرطی پایه"
+
+msgid "basis"
+msgstr "پایه"
+
+msgid "below (example:"
+msgstr "زیر (نمونه:"
+
+msgid "between {down} and {up} {name}"
+msgstr "بین {down} و {up} {name}"
+
+msgid "bfill"
+msgstr "پس‌پرکنید"
+
+msgid "bolt"
+msgstr "بولت"
+
+msgid "boolean type icon"
+msgstr "آیکون نوع بولیانی"
+
+msgid "bottom"
+msgstr "پایین"
+
+msgid "button (cmd + z) until you save your changes."
+msgstr "دکمه (cmd + ز) را بزنید تا زمانی که تغییرات خود را ذخیره کنید."
+
+msgid "by using"
+msgstr "با استفاده از"
+
+msgid "cannot be empty"
+msgstr "نمی‌تواند خالی باشد"
+
+msgid "cardinal"
+msgstr "عددی"
+
+msgid "change"
+msgstr "تغییر"
+
+msgid "chart"
+msgstr "نمودار"
+
+msgid "choose WHERE or HAVING..."
+msgstr "WHERE یا HAVING را انتخاب کنید..."
+
+msgid "clear all filters"
+msgstr "تمام فیلترها را پاک کن"
+
+msgid "click here"
+msgstr "اینجا کلیک کنید"
+
+#, fuzzy
+msgid "close"
+msgstr "بستن"
+
+msgid "code ISO 3166-1 alpha-2 (cca2)"
+msgstr "کد ISO ۳۱۶۶-۱ الفا-۲ (cca2)"
+
+msgid "code ISO 3166-1 alpha-3 (cca3)"
+msgstr "کد ISO ۳۱۶۶-۱ الفا-۳ (cca3)"
+
+msgid "code International Olympic Committee (cioc)"
+msgstr "کد کمیته بین‌المللی المپیک (cioc)"
+
+msgid "color scheme for comparison"
+msgstr "طرح رنگ برای مقایسه"
+
+msgid "color type"
+msgstr "نوع رنگ"
+
+msgid "column"
+msgstr "ستون"
+
+#, python-format
+msgid "connecting to %(dbModelName)s"
+msgstr "اتصال به %(dbModelName)s"
+
+msgid "content type"
+msgstr "نوع محتوا"
+
+msgid "count"
+msgstr "شمارش"
+
+msgid "create"
+msgstr "ایجاد کنید"
+
+msgid "create a new chart"
+msgstr "یک نمودار جدید بسازید"
+
+msgid "create dataset from SQL query"
+msgstr "ایجاد مجموعه داده از کوئریی SQL"
+
+msgid "crontab"
+msgstr "کرون‌تب"
+
+msgid "css"
+msgstr "سی‌اس‌اس"
+
+msgid "css_template"
+msgstr "قالب_css"
+
+msgid "cumsum"
+msgstr "جمع تجمعی"
+
+msgid "dashboard"
+msgstr "داشبورد"
+
+msgid "database"
+msgstr "پایگاه داده"
+
+msgid "dataset"
+msgstr "مجموعه داده"
+
+msgid "dataset name"
+msgstr "نام مجموعه داده"
+
+msgid "date"
+msgstr "تاریخ"
+
+msgid "day"
+msgstr "روز"
+
+msgid "day of the month"
+msgstr "روز ماه"
+
+msgid "day of the week"
+msgstr "روزهای هفته"
+
+msgid "deck.gl 3D Hexagon"
+msgstr "دک.gl هگزای دیگر بعدی ۳D"
+
+msgid "deck.gl Arc"
+msgstr "آرک deck.gl"
+
+msgid "deck.gl Contour"
+msgstr "کانتور deck.gl"
+
+msgid "deck.gl Geojson"
+msgstr ""
+
+msgid "deck.gl Grid"
+msgstr ""
+
+msgid "deck.gl Heatmap"
+msgstr "نقشه حرارتی deck.gl"
+
+msgid "deck.gl Multiple Layers"
+msgstr "لایه‌های چندگانه deck.gl"
+
+msgid "deck.gl Path"
+msgstr "مسیر deck.gl"
+
+msgid "deck.gl Polygon"
+msgstr "چند ضلعی deck.gl"
+
+msgid "deck.gl Scatterplot"
+msgstr "نمودار نقطه‌ای deck.gl"
+
+msgid "deck.gl Screen Grid"
+msgstr "شبکه صفحه deck.gl"
+
+msgid "deck.gl charts"
+msgstr "چارت‌های deck.gl"
+
+msgid "deckGL"
+msgstr "deckGL"
+
+msgid "default"
+msgstr "پیش‌فرض"
+
+msgid "descendant"
+msgstr "نسل"
+
+msgid "description"
+msgstr "توضیحات"
+
+msgid "deviation"
+msgstr "انحراف"
+
+msgid "dialect+driver://username:password@host:port/database"
+msgstr "dialect+driver://username:password@host:port/database"
+
+msgid "dttm"
+msgstr ""
+
+msgid "e.g. ********"
+msgstr "به عنوان مثال ********"
+
+msgid "e.g. 127.0.0.1"
+msgstr "به عنوان مثال 127.0.0.1"
+
+msgid "e.g. 5432"
+msgstr "به عنوان مثال ۵۴۳۲"
+
+msgid "e.g. AccountAdmin"
+msgstr "به عنوان مثال: حساب مدیر"
+
+msgid "e.g. Analytics"
+msgstr "به عنوان مثال، تجزیه و تحلیل"
+
+msgid "e.g. compute_wh"
+msgstr "به عنوان مثال compute_wh"
+
+msgid "e.g. default"
+msgstr "به عنوان مثال: پیش‌فرض"
+
+msgid "e.g. hive_metastore"
+msgstr "به عنوان مثال: hive_metastore"
+
+msgid "e.g. param1=value1&param2=value2"
+msgstr "به عنوان مثال: پارامتر۱=مقدار۱&پارامتر۲=مقدار۲"
+
+msgid "e.g. sql/protocolv1/o/12345"
+msgstr "e.g. sql/protocolv1/o/۱۲۳۴۵"
+
+msgid "e.g. world_population"
+msgstr "به عنوان مثال: world_population"
+
+msgid "e.g. xy12345.us-east-2.aws"
+msgstr "به عنوان مثال xy12345.us-east-2.aws"
+
+msgid "edit mode"
+msgstr "حالت ویرایش"
+
+msgid "email subject"
+msgstr "موضوع ایمیل"
+
+msgid "entries"
+msgstr "ورودی‌ها"
+
+#, fuzzy
+msgid "entries per page"
+msgstr "ورودی‌ها"
+
+msgid "error"
+msgstr "خطا"
+
+msgid "error dark"
+msgstr "خطای تاریک"
+
+msgid "error_message"
+msgstr "error_message"
+
+msgid "every"
+msgstr "هر"
+
+msgid "every day of the month"
+msgstr "هر روز ماه"
+
+msgid "every day of the week"
+msgstr "هر روز هفته"
+
+msgid "every hour"
+msgstr "هر ساعت"
+
+msgid "every minute"
+msgstr "هر دقیقه"
+
+msgid "every month"
+msgstr "هر ماه"
+
+msgid "expand"
+msgstr "گسترش دهید"
+
+msgid "explore"
+msgstr "جستجو"
+
+msgid "failed"
+msgstr "شکست خورد"
+
+msgid "fetching"
+msgstr "در حال دریافت اطلاعات"
+
+msgid "ffill"
+msgstr ""
+
+msgid "flat"
+msgstr "ساده"
+
+msgid "for more information on how to structure your URI."
+msgstr "برای اطلاعات بیشتر در مورد چگونگی ساختاردهی URI خود."
+
+msgid "function type icon"
+msgstr "آیکون نوع عملکرد"
+
+msgid "geohash (square)"
+msgstr "جیوهش (مربع)"
+
+msgid "heatmap"
+msgstr "نقشه حرارتی"
+
+msgid "heatmap: values are normalized across the entire heatmap"
+msgstr "نقشه حرارتی: مقادیر در سرتاسر نقشه حرارتی نرمال‌سازی شده‌اند."
+
+msgid "here"
+msgstr "اینجا"
+
+msgid "hour"
+msgstr "ساعت"
+
+msgid "in"
+msgstr "در"
+
+msgid "in modal"
+msgstr "در مدل"
+
+msgid "invalid email"
+msgstr "ایمیل نامعتبر است"
+
+#, fuzzy
+msgid "is"
+msgstr "باین‌ها"
+
+msgid "is expected to be a Mapbox URL"
+msgstr "انتظار می‌رود که یک URL مپ باکس باشد"
+
+msgid "is expected to be a number"
+msgstr "انتظار می‌رود که یک عدد باشد"
+
+msgid "is expected to be an integer"
+msgstr "انتظار می‌رود که یک عدد صحیح باشد"
+
+#, fuzzy, python-format
+msgid ""
+"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 دارند که با این پایگاه داده باز است. آیا "
+"مطمئن هستید که می‌خواهید ادامه دهید؟ حذف پایگاه داده این اشیا را خراب "
+"خواهد کرد."
+
+#, fuzzy, python-format
+msgid ""
+"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 داشبوردها نمایش داده می‌شود، "
+"مرتبط است. آیا مطمئن هستید که می‌خواهید ادامه دهید؟ حذف این مجموعه داده "
+"باعث خرابی آن اشیاء خواهد شد."
+
+msgid "is not"
+msgstr ""
+
+msgid "key a-z"
+msgstr "کلید a-z"
+
+msgid "key z-a"
+msgstr "کلید z-a"
+
+msgid "label"
+msgstr "برچسب"
+
+msgid "latest partition:"
+msgstr "آخرین بخش:"
+
+msgid "left"
+msgstr "چپ"
+
+msgid "less than {min} {name}"
+msgstr "کمتر از {min} {name}"
+
+msgid "linear"
+msgstr "خطی"
+
+msgid "log"
+msgstr "لاگ"
+
+msgid ""
+"lower percentile must be greater than 0 and less than 100. Must be lower "
+"than upper percentile."
+msgstr ""
+"پایین‌ترین درصد باید بزرگ‌تر از ۰ و کوچک‌تر از ۱۰۰ باشد. باید کمتر از "
+"بالاترین درصد باشد."
+
+msgid "max"
+msgstr "حداکثر"
+
+msgid "mean"
+msgstr "میانگین"
+
+msgid "median"
+msgstr "میانه"
+
+msgid "meters"
+msgstr "متر"
+
+msgid "metric"
+msgstr "اندازه‌گیری"
+
+msgid "min"
+msgstr "حداقل"
+
+msgid "minute"
+msgstr "دقیقه"
+
+msgid "minute(s)"
+msgstr "دقیقه(ها)"
+
+msgid "monotone"
+msgstr "یکنواخت"
+
+msgid "month"
+msgstr "ماه"
+
+msgid "more than {max} {name}"
+msgstr "بیش از {max} {name}"
+
+msgid "must have a value"
+msgstr "باید یک مقدار داشته باشد"
+
+msgid "name"
+msgstr "نام"
+
+msgid "no SQL validator is configured"
+msgstr "هیچ اعتبارسنجی SQL پیکربندی نشده است"
+
+#, python-format
+msgid "no SQL validator is configured for %(engine_spec)s"
+msgstr "هیچ اعتبارسنجی SQL برای %(engine_spec)s پیکربندی نشده است."
+
+msgid "numeric type icon"
+msgstr "آیکون نوع عددی"
+
+msgid "nvd3"
+msgstr "nvd3"
+
+msgid "offline"
+msgstr "آفلاین"
+
+msgid "on"
+msgstr "روی"
+
+msgid "or"
+msgstr "یا"
+
+msgid "or use existing ones from the panel on the right"
+msgstr "یا از موارد موجود در پنل سمت راست استفاده کنید"
+
+msgid "orderby column must be populated"
+msgstr "ستون مرتب‌سازی باید پر شود"
+
+msgid "overall"
+msgstr "کلی"
+
+msgid "owners"
+msgstr "مالکین"
+
+msgid "p-value precision"
+msgstr "دقت p-value"
+
+msgid "p1"
+msgstr ""
+
+msgid "p5"
+msgstr ""
+
+msgid "p95"
+msgstr ""
+
+msgid "p99"
+msgstr ""
+
+msgid "page_size.all"
+msgstr ""
+
+msgid "pending"
+msgstr "در حال انتظار"
+
+msgid ""
+"percentiles must be a list or tuple with two numeric values, of which the"
+" first is lower than the second value"
+msgstr ""
+"پرسنتایل‌ها باید یک لیست یا تاپل با دو مقدار عددی باشد که مقدار اول کمتر "
+"از مقدار دوم باشد."
+
+msgid "permalink state not found"
+msgstr "وضعیت پیوند دائمی پیدا نشد"
+
+msgid "pixels"
+msgstr "پیکسل‌ها"
+
+msgid "previous calendar month"
+msgstr "ماه تقویمی گذشته"
+
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "سال تقویمی گذشته"
+
+msgid "previous calendar week"
+msgstr "هفته تقویمی قبلی"
+
+msgid "previous calendar year"
+msgstr "سال تقویمی گذشته"
+
+msgid "quarter"
+msgstr "سه‌ماهه"
+
+msgid "queries"
+msgstr "کوئری‌ها"
+
+msgid "query"
+msgstr "کوئری"
+
+msgid "random"
+msgstr "تصادفی"
+
+msgid "reboot"
+msgstr "راه‌اندازی دوباره"
+
+msgid "recent"
+msgstr "اخیراً"
+
+msgid "recipients"
+msgstr "گیرندگان"
+
+msgid "report"
+msgstr "گزارش"
+
+msgid "reports"
+msgstr "گزارش‌ها"
+
+msgid "restore zoom"
+msgstr "بازیابی زوم"
+
+msgid "right"
+msgstr "درست"
+
+msgid "rowlevelsecurity"
+msgstr "امنیت سطح ردیف"
+
+msgid "running"
+msgstr "اجرا کردن"
+
+#, fuzzy
+msgid "save"
+msgstr "ذخیره کنید"
+
+msgid "seconds"
+msgstr "ثانیه‌ها"
+
+msgid "series"
+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"
+msgstr ""
+"سری: هر سری را به طور مستقل در نظر بگیرید؛ بطور کلی: تمامی سری‌ها از یک "
+"مقیاس مشابه استفاده می‌کنند؛ تغییر: تغییرات را نسبت به اولین نقطه داده در"
+" هر سری نشان دهید"
+
+msgid "sql"
+msgstr "sql"
+
+msgid "square"
+msgstr "مربع"
+
+msgid "stack"
+msgstr "پشته"
+
+msgid "staggered"
+msgstr "ناهموار"
+
+msgid "std"
+msgstr "استاندارد"
+
+msgid "step-after"
+msgstr "قدم-بعدی"
+
+msgid "step-before"
+msgstr "قدم-قبلی"
+
+msgid "stopped"
+msgstr "متوقف شد"
+
+msgid "stream"
+msgstr "جریان"
+
+msgid "string type icon"
+msgstr "آیکون نوع رشته"
+
+msgid "success"
+msgstr "موفقیت"
+
+msgid "success dark"
+msgstr "موفقیت تاریک"
+
+msgid "sum"
+msgstr "جمع"
+
+msgid "syntax."
+msgstr "سینتکس."
+
+msgid "tag"
+msgstr "برچسب"
+
+msgid "tags"
+msgstr "برچسب‌ها"
+
+msgid "temporal type icon"
+msgstr "آیکون نوع موقتی"
+
+msgid "textarea"
+msgstr "کادر متنی"
+
+msgid "top"
+msgstr "بالا"
+
+msgid "undo"
+msgstr "بازگردانی"
+
+msgid "unknown type icon"
+msgstr "نوع آیکون ناشناخته"
+
+#, fuzzy
+msgid "unset"
+msgstr "ژوئن"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "%s به روز شد"
+
+msgid ""
+"upper percentile must be greater than 0 and less than 100. Must be higher"
+" than lower percentile."
+msgstr ""
+"درصد بالایی باید بزرگتر از ۰ و کمتر از ۱۰۰ باشد. همچنین باید بیشتر از "
+"درصد پایینی باشد."
+
+msgid "use latest_partition template"
+msgstr "از الگوی latest_partition استفاده کنید"
+
+msgid "value ascending"
+msgstr "مقدار صعودی"
+
+msgid "value descending"
+msgstr "مقدار نزولی"
+
+msgid "var"
+msgstr "متغیر"
+
+msgid "variance"
+msgstr "واریانس"
+
+msgid "view instructions"
+msgstr "مشاهده دستورالعمل‌ها"
+
+msgid "viz type"
+msgstr "نوع تجسم"
+
+msgid "was created"
+msgstr "ایجاد شد"
+
+msgid "week"
+msgstr "هفته"
+
+msgid "week ending Saturday"
+msgstr "هفته‌ای که با روز یکشنبه تمام می‌شود"
+
+msgid "week starting Sunday"
+msgstr "هفته‌ای که از روز یکشنبه آغاز می‌شود"
+
+msgid "working timeout"
+msgstr "مهلت انجام کار"
+
+msgid "x"
+msgstr "x"
+
+msgid "x: values are normalized within each column"
+msgstr "x: مقادیر در هر ستون نرمال سازی شده‌اند."
+
+msgid "y"
+msgstr "y"
+
+msgid "y: values are normalized within each row"
+msgstr "y: مقادیر در هر ردیف نرمال‌سازی شده‌اند"
+
+msgid "year"
+msgstr "سال"
+
+msgid "zoom area"
+msgstr "منطقه‌ی زوم"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/fr/LC_MESSAGES/messages.po b/superset/translations/fr/LC_MESSAGES/messages.po
index 637dc77e96f5a5d35546c1c4cd191b9df1b26ce6..1b95452a4b652edaa1e62d085c19c92305a72611 100644
--- a/superset/translations/fr/LC_MESSAGES/messages.po
+++ b/superset/translations/fr/LC_MESSAGES/messages.po
@@ -17,43 +17,43 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2025-03-17 23:32+0100\n"
 "Last-Translator: \n"
-"Language-Team: fr <LL@li.org>\n"
 "Language: fr\n"
+"Language-Team: fr <LL@li.org>\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"Generated-By: Babel 2.15.0\n"
-"X-Generator: Poedit 3.5\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
-"                The cumulative option allows you to see how your data accumulates "
-"over different\n"
-"                values. When enabled, the histogram bars represent the running "
-"total of frequencies\n"
-"                up to each bin. This helps you understand how likely it is to "
-"encounter values\n"
-"                below a certain point. Keep in mind that enabling cumulative "
-"doesn't change your\n"
-"                original data, it just changes the way the histogram is displayed."
+"                The cumulative option allows you to see how your data "
+"accumulates over different\n"
+"                values. When enabled, the histogram bars represent the "
+"running total of frequencies\n"
+"                up to each bin. This helps you understand how likely it "
+"is to encounter values\n"
+"                below a certain point. Keep in mind that enabling "
+"cumulative doesn't change your\n"
+"                original data, it just changes the way the histogram is "
+"displayed."
 msgstr ""
 
 msgid ""
 "\n"
-"                The normalize option transforms the histogram values into "
-"proportions or\n"
-"                probabilities by dividing each bin's count by the total count of "
-"data points.\n"
-"                This normalization process ensures that the resulting values sum "
-"up to 1,\n"
-"                enabling a relative comparison of the data's distribution and "
-"providing a\n"
-"                clearer understanding of the proportion of data points within each "
-"bin."
+"                The normalize option transforms the histogram values into"
+" proportions or\n"
+"                probabilities by dividing each bin's count by the total "
+"count of data points.\n"
+"                This normalization process ensures that the resulting "
+"values sum up to 1,\n"
+"                enabling a relative comparison of the data's distribution"
+" and providing a\n"
+"                clearer understanding of the proportion of data points "
+"within each bin."
 msgstr ""
 
 msgid ""
@@ -70,22 +70,22 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
-"\n"
-"            Erreur: %(text)s\n"
-"            "
 
 msgid " (excluded)"
 msgstr " (exclu)"
 
 msgid ""
-" Set the opacity to 0 if you do not want to override the color specified in the "
-"GeoJSON"
+" Set the opacity to 0 if you do not want to override the color specified "
+"in the GeoJSON"
 msgstr ""
-" Réglez l’opacité à 0 si vous ne voulez pas remplacer la couleur spécifiée dans le "
-"GeoJSON"
+" Réglez l’opacité à 0 si vous ne voulez pas remplacer la couleur "
+"spécifiée dans le GeoJSON"
 
 msgid " a dashboard OR "
 msgstr " un tableau de bord OU "
@@ -93,32 +93,44 @@ msgstr " un tableau de bord OU "
 msgid " a new one"
 msgstr " un nouveau"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr " expression qui doit adhérer au "
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr " code source de l'analyseur de bac à sable du standard Superset"
 
 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"
+"                      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"
+"                      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 ""
-" afin de garantir que l'ordre lexicographique coïncide avec l'ordre chronologique. "
-"Si le format de l'horodatage n'est pas conforme à la norme ISO 8601, vous devrez "
-"définir une expression et un type pour transformer la chaîne en date ou en "
-"horodatage. Notez que les fuseaux horaires ne sont pas pris en charge "
-"actuellement. Si l'heure est stockée au format epoch, mettez `epoch_s` ou "
-"`epoch_ms`. Si aucun modèle n'est spécifié, nous utilisons les valeurs par défaut "
-"optionnelles au niveau de chaque base de données/nom de colonne via le paramètre "
-"supplémentaire."
+" afin de garantir que l'ordre lexicographique coïncide avec l'ordre "
+"chronologique. Si le format de l'horodatage n'est pas conforme à la norme"
+" ISO 8601, vous devrez définir une expression et un type pour transformer"
+" la chaîne en date ou en horodatage. Notez que les fuseaux horaires ne "
+"sont pas pris en charge actuellement. Si l'heure est stockée au format "
+"epoch, mettez `epoch_s` ou `epoch_ms`. Si aucun modèle n'est spécifié, "
+"nous utilisons les valeurs par défaut optionnelles au niveau de chaque "
+"base de données/nom de colonne via le paramètre supplémentaire."
 
 msgid " to add calculated columns"
 msgstr " pour ajouter des colonnes calculées"
@@ -134,8 +146,8 @@ msgstr " pour marquer une colonne comme colonne temporelle"
 
 msgid " to open SQL Lab. From there you can save the query as a dataset."
 msgstr ""
-" pour ouvrir SQL Lab. À partir de là, vous pouvez enregistrer la requête sous "
-"forme d'ensemble de données."
+" pour ouvrir SQL Lab. À partir de là, vous pouvez enregistrer la requête "
+"sous forme d'ensemble de données."
 
 msgid " to visualize your data."
 msgstr " pour visualiser vos données."
@@ -158,15 +170,12 @@ msgstr "% du total"
 #, 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é."
+"%(dialect)s ne peut pas être utilisé comme source de données pour des "
+"raisons de sécurité."
 
 #, fuzzy, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
-msgstr "%(message)sCela peut être déclenché par :%(issues)s"
+msgid "%(label)s file"
+msgstr "%(type)s Fichier"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -180,59 +189,33 @@ msgstr "%(name)s.pdf"
 msgid "%(object)s does not exist in this database."
 msgstr "%(object)s n'existe pas dans cette base de données."
 
-#, fuzzy, python-format
-msgid "%(other)s charts will appear here"
-msgstr "%(other)s graphiques apparaîtront ici"
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr "%(other)s tableaux de bord apparaîtront ici"
-
-#, fuzzy, python-format
-msgid "%(other)s recents will appear here"
-msgstr "%(other)s récents apparaîtront ici"
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s requêtes sauvegardées apparaîtront ici"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr "%(prefix)s %(title)s"
 
 #, python-format
 msgid ""
-"%(report_type)s schedule frequency exceeding limit. Please configure a schedule "
-"with a minimum interval of %(minimum_interval)d minutes per execution."
+"%(report_type)s schedule frequency exceeding limit. Please configure a "
+"schedule with a minimum interval of %(minimum_interval)d minutes per "
+"execution."
 msgstr ""
-"%(report_type)s schedule frequency exceeding limit. Please configure a schedule "
-"with a minimum interval of %(minimum_interval)d minutes per execution."
+"%(report_type)s schedule frequency exceeding limit. Please configure a "
+"schedule with a minimum interval of %(minimum_interval)d minutes per "
+"execution."
 
 #, python-format
 msgid "%(rows)d rows returned"
 msgstr "%(rows)d lignes retournées"
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-"%(subtitle)s\n"
-"Cela peut être déclenché par:\n"
-"%(issue)s"
-
 #, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
-"%(firstSuggestions)s or %(lastSuggestion)s instead of \"%(undefinedParameter)s\"?"
+"%(firstSuggestions)s or %(lastSuggestion)s instead of "
+"\"%(undefinedParameter)s\"?"
 msgstr[0] "%(suggestion)s au lieu de \"%(undefinedParameter)s?\""
 msgstr[1] ""
-"%(firstSuggestions)s ou %(lastSuggestion)s au lieu de \"%(undefinedParameter)s\"?"
-
-#, python-format
-msgid "%(type)s File"
-msgstr "%(type)s Fichier"
+"%(firstSuggestions)s ou %(lastSuggestion)s au lieu de "
+"\"%(undefinedParameter)s\"?"
 
 #, python-format
 msgid ""
@@ -288,17 +271,13 @@ msgstr "%s agrégat(s)"
 msgid "%s column(s)"
 msgstr "%s colonne(s)"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr "%s article(s) non éligible(s) sont caché(s)"
-
 #, python-format
 msgid ""
-"%s items could not be tagged because you don’t have edit permissions to all "
-"selected objects."
+"%s items could not be tagged because you don’t have edit permissions to "
+"all selected objects."
 msgstr ""
-"%s objets n'ont pas pu être taggés parce que vous n'avez pas les permissions sur "
-"tout les objets sélectionnés."
+"%s objets n'ont pas pu être taggés parce que vous n'avez pas les "
+"permissions sur tout les objets sélectionnés."
 
 #, python-format
 msgid "%s operator(s)"
@@ -391,14 +370,19 @@ msgid "+ %s more"
 msgstr "+ %s plus"
 
 msgid ""
-"-- Note: Unless you save your query, these tabs will NOT persist if you clear your "
-"cookies or change browsers.\n"
+"-- Note: Unless you save your query, these tabs will NOT persist if you "
+"clear your cookies or change browsers.\n"
 "\n"
 msgstr ""
-"-- Remarque: À moins que vous ne sauvegardiez votre requête, ces onglets ne "
-"persisteront PAS si vous effacez vos témoins ou si vous changez de navigateur.\n"
+"-- Remarque: À moins que vous ne sauvegardiez votre requête, ces onglets "
+"ne persisteront PAS si vous effacez vos témoins ou si vous changez de "
+"navigateur.\n"
 "\n"
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0 sélectionné"
 
@@ -461,6 +445,13 @@ msgstr "Fréquence de début d’année"
 msgid "10 minute"
 msgstr "10 minutes"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 centiles"
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr "104 semaines"
 
@@ -557,6 +548,10 @@ msgstr "5 secondes"
 msgid "5 seconds"
 msgstr "5 secondes"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 centiles"
+
 msgid "52 weeks"
 msgstr "52 semaines"
 
@@ -624,15 +619,11 @@ msgstr ">= (plus grand ou égal)"
 msgid "A Big Number"
 msgstr "Gros nombre"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr ""
-"Sélectionnez dans la liste déroulante les noms des colonnes à analyser en tant "
-"que dates"
-
 #, 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 téléversement."
+"Une liste de schémas séparés par des virgules autorisés pour le "
+"téléversement."
 
 msgid "A database port is required when connecting via SSH Tunnel."
 msgstr "Un port de base de donnée est requis lors de la connexion en SSH."
@@ -640,22 +631,25 @@ msgstr "Un port de base de donnée est requis lors de la connexion en SSH."
 msgid "A database with the same name already exists."
 msgstr "Une base de données avec le même nom existe déjà."
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
-"A dictionary with column names and their data types if you need to change the "
-"defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas library for "
-"supported data types."
+"A dictionary with column names and their data types if you need to change"
+" the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
+"library for supported data types."
 msgstr ""
-"Un dictionnaire avec des noms de colonne et leurs types de données si vous devez "
-"modifier les valeurs par défaut. Exemple : {\"user_id\":\"integer\"}. "
-"Renseignement disponible sur la librairie Pandas de Python pour les types de "
-"données supportés."
+"Un dictionnaire avec des noms de colonne et leurs types de données si "
+"vous devez modifier les valeurs par défaut. Exemple : "
+"{\"user_id\":\"integer\"}. Renseignement disponible sur la librairie "
+"Pandas de Python pour les types de données supportés."
 
 msgid ""
-"A full URL pointing to the location of the built plugin (could be hosted on a CDN "
-"for example)"
+"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 plugiciel (pourrait être hébergé sur un CDN "
-"par exemple)"
+"Une URL complète désignant le lieu du plugiciel (pourrait être hébergé "
+"sur un CDN par exemple)"
 
 msgid "A handlebars template that is applied to the data"
 msgstr "Un modèle de Handlebars appliqué aux données"
@@ -664,29 +658,30 @@ msgid "A human-friendly name"
 msgstr "Un nom facile à comprendre"
 
 msgid ""
-"A list of domain names that can embed this dashboard. Leaving this field empty "
-"will allow embedding from any domain."
+"A list of domain names that can embed this dashboard. Leaving this field "
+"empty will allow embedding from any domain."
 msgstr ""
-"Une liste de noms de domaine qui peuvent intégrer ce tableau de bord. Laisser ce "
-"champ vide permettra l’intégration à partir de n’importe quel domaine."
+"Une liste de noms de domaine qui peuvent intégrer ce tableau de bord. "
+"Laisser ce champ vide permettra l’intégration à partir de n’importe quel "
+"domaine."
 
 msgid "A list of tags that have been applied to this chart."
 msgstr "Une liste de tags qui ont été appliquées à ce graphique."
 
 msgid "A list of users who can alter the chart. Searchable by name or username."
 msgstr ""
-"Une liste d'utilisateurs qui peuvent modifier le graphique. Il est possible de "
-"chercher par nom de graphique ou d'utilisateur."
+"Une liste d'utilisateurs qui peuvent modifier le graphique. Il est "
+"possible de chercher par nom de graphique ou d'utilisateur."
 
 msgid "A map of the world, that can indicate values in different countries."
 msgstr "Une carte du monde qui peut indiquer des valeurs dans différents pays."
 
 msgid ""
-"A map that takes rendering circles with a variable radius at latitude/longitude "
-"coordinates"
+"A map that takes rendering circles with a variable radius at "
+"latitude/longitude coordinates"
 msgstr ""
-"Une carte qui représente des cercles d'un rayon variable à des coordonnées de "
-"latitude/longitude"
+"Une carte qui représente des cercles d'un rayon variable à des "
+"coordonnées de latitude/longitude"
 
 msgid "A metric to use for color"
 msgstr "Une mesure à utiliser pour la couleur"
@@ -701,13 +696,13 @@ msgid "A new dashboard will be created."
 msgstr "Un nouveau tableau de bord va être créé."
 
 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."
+"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 ""
-"Un tableau de coordonnées polaires où le cercle est divisé en coins d’angle égal "
-"et où la valeur représentée par n’importe quel coin est illustrée par sa zone, "
-"plutôt que par son rayon ou son angle de balayage."
+"Un tableau de coordonnées polaires où le cercle est divisé en coins "
+"d’angle égal et où la valeur représentée par n’importe quel coin est "
+"illustrée par sa zone, plutôt que par son rayon ou son angle de balayage."
 
 msgid "A readable URL for your dashboard"
 msgstr "Une URL lisible pour votre tableau de bord"
@@ -723,19 +718,11 @@ msgid "A reusable dataset will be saved with your chart."
 msgstr "Un ensemble de données réutilisable sera enregistré avec votre graphique."
 
 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 modèle Jinja"
-
-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."
+"A set of parameters that become available in the query using Jinja "
+"templating syntax"
 msgstr ""
-"Un graphique de séries temporelles qui visualise comment une mesure connexe de "
-"plusieurs groupes varie au fil du temps. Chaque groupe est visualisé en utilisant "
-"une couleur différente."
+"Un ensemble de paramètre qui seront disponible dans la requête utilisant "
+"la syntaxe du modèle Jinja"
 
 msgid "A timeout occurred while executing the query."
 msgstr "Un dépassement de délai s'est produit lors de l'exécution de la requête."
@@ -753,16 +740,19 @@ msgid "A valid color scheme is required"
 msgstr "Un jeu de couleur valide doit être fourni"
 
 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."
+"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 ""
-"Un graphique en cascade est une forme de visualisation de donnée qui aide à "
-"comprendre\n"
+"Un graphique en cascade est une forme de visualisation de donnée qui aide"
+" à comprendre\n"
 "          l'effet cumulé de valeur positive ou négative introduite "
 "séquentiellement.\n"
-"          Ces valeurs intermédiaires peuvent être temporelles ou catégoriques."
+"          Ces valeurs intermédiaires peuvent être temporelles ou "
+"catégoriques."
 
 msgid "APPLY"
 msgstr "APPLIQUER"
@@ -842,28 +832,32 @@ msgstr "Ajouter un destinataire de la copie (Cc)"
 msgid "Add CSS template"
 msgstr "Ajouter un modèle CSS"
 
-msgid "Add Chart"
-msgstr "Ajouter un graphique"
-
-msgid "Add Column"
-msgstr "Ajouter une colonne"
-
 msgid "Add Dashboard"
 msgstr "Ajouter un tableau de bord"
 
-msgid "Add Database"
-msgstr "Ajouter une base de données"
+#, fuzzy
+msgid "Add Divider"
+msgstr "Diviseur"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Ajouter un filtre"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Masquer la couche"
 
 msgid "Add Log"
 msgstr "Ajouter un journal"
 
-msgid "Add Metric"
-msgstr "Ajouter une mesure"
-
 #, fuzzy
 msgid "Add Report"
 msgstr "Ajouter un rapport"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "Rôles exclus"
+
 #, fuzzy
 msgid "Add Rule"
 msgstr "Ajouter une règle"
@@ -871,6 +865,10 @@ msgstr "Ajouter une règle"
 msgid "Add Tag"
 msgstr "Ajouter un tag"
 
+#, fuzzy
+msgid "Add User"
+msgstr "Ajouter une règle"
+
 msgid "Add a Plugin"
 msgstr "Ajouter un plugiciel"
 
@@ -910,13 +908,13 @@ msgstr "Ajouter une méthode de notification"
 
 msgid "Add calculated columns to dataset in \"Edit datasource\" modal"
 msgstr ""
-"Ajouter des colonnes calculées au ensemble de données dans le modal « Modifier la "
-"source de données »"
+"Ajouter des colonnes calculées au ensemble de données dans le modal « "
+"Modifier la source de données »"
 
 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal"
 msgstr ""
-"Ajouter des colonnes temporelles calculées au ensemble de données dans le modal "
-"« Modifier la source de données »"
+"Ajouter des colonnes temporelles calculées au ensemble de données dans le"
+" modal « Modifier la source de données »"
 
 msgid "Add color for positive/negative change"
 msgstr "Ajouter une couleur pour les changements positifs/négatifs"
@@ -929,8 +927,8 @@ msgstr "Ajouter une portée personnalisée"
 
 msgid "Add dataset columns here to group the pivot table columns."
 msgstr ""
-"Ajouter des colonnes du jeu de données pour agglomérer les colonnes de la table "
-"pivot."
+"Ajouter des colonnes du jeu de données pour agglomérer les colonnes de la"
+" table pivot."
 
 msgid "Add delivery method"
 msgstr "Ajouter méthode de livraison"
@@ -947,27 +945,25 @@ msgstr "Ajouter un filtre"
 
 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 ""
-"Ajouter des clauses de filtre pour contrôler la requête source du filtre,\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 ""
+"Ajouter des clauses de filtre pour contrôler la requête source du filtre,"
+"\n"
 "                    mais uniquement dans le contexte de la saisie semi-"
 "automatique, c'est-à-dire que ces conditions\n"
-"                     n'ont pas d'impact sur la manière dont le filtre est appliqué "
-"au tableau de bord. Cela est utile\n"
-"                    lorsque vous souhaitez améliorer les performances de la "
-"requête en n'analysant qu'un sous-ensemble\n"
-"                    des données sous-jacentes ou limiter les valeurs disponibles "
-"affichées dans le filtre."
-
-msgid "Add filters and dividers"
-msgstr "Ajouter un filtre ou des diviseurs"
+"                     n'ont pas d'impact sur la manière dont le filtre est"
+" appliqué au tableau de bord. Cela est utile\n"
+"                    lorsque vous souhaitez améliorer les performances de "
+"la requête en n'analysant qu'un sous-ensemble\n"
+"                    des données sous-jacentes ou limiter les valeurs "
+"disponibles affichées dans le filtre."
 
 msgid "Add item"
 msgstr "Ajouter un élément"
@@ -977,8 +973,8 @@ msgstr "Ajouter une mesure"
 
 msgid "Add metrics to dataset in \"Edit datasource\" modal"
 msgstr ""
-"Ajouter des mesures au ensemble de données dans le modal « Modifier la source de "
-"données »"
+"Ajouter des mesures au ensemble de données dans le modal « Modifier la "
+"source de données »"
 
 msgid "Add new color formatter"
 msgstr "Ajouter un nouveau formateur de couleur"
@@ -986,6 +982,10 @@ msgstr "Ajouter un nouveau formateur de couleur"
 msgid "Add new formatter"
 msgstr "Ajouter un nouveau formateur"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Ajouter et modifier les filtres"
+
 msgid "Add required control values to preview chart"
 msgstr "Ajouter les valeurs de contrôle requises au graphique de prévisualisation"
 
@@ -1007,12 +1007,15 @@ msgstr "Ajouter le nom du tableau de bord"
 msgid "Add to dashboard"
 msgstr "Ajouter au tableau de bord"
 
-msgid "Add/Edit Filters"
-msgstr "Ajouter/modifier les filtres"
-
 msgid "Added"
 msgstr "Ajouté"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 #, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -1028,9 +1031,6 @@ msgstr "Des champs supplémentaires peuvent être requis"
 msgid "Additional information"
 msgstr "Informations supplémentaires"
 
-msgid "Additional metadata"
-msgstr "Métadonnées supplémentaires"
-
 msgid "Additional padding for legend."
 msgstr "Marge supplémentaire pour la légende."
 
@@ -1048,21 +1048,21 @@ msgid "Additive"
 msgstr "Additif"
 
 msgid ""
-"Adds color to the chart symbols based on the positive or negative change from the "
-"comparison value."
+"Adds color to the chart symbols based on the positive or negative change "
+"from the comparison value."
 msgstr ""
 
 msgid ""
-"Adjust column settings such as specifying the columns to read, how duplicates are "
-"handled, column data types, and more."
+"Adjust column settings such as specifying the columns to read, how "
+"duplicates are handled, column data types, and more."
 msgstr ""
 
 msgid ""
-"Adjust how spaces, blank lines, null values are handled and other file wide "
-"settings."
+"Adjust how spaces, blank lines, null values are handled and other file "
+"wide settings."
 msgstr ""
-"Ajuster comment les espaces, lignes blanches, valeurs nulles sont gérés et autre "
-"paramètres de large fichier."
+"Ajuster comment les espaces, lignes blanches, valeurs nulles sont gérés "
+"et autre paramètres de large fichier."
 
 msgid "Adjust how this database will interact with SQL Lab."
 msgstr "Ajuster la façon dont cette base de données interagira avec SQL Lab."
@@ -1097,6 +1097,14 @@ msgstr "Type de données avancées"
 msgid "Advanced-Analytics"
 msgstr "Analyses avancées"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Sélectionner des graphiques"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Sélectionner un tableau de bord"
+
 msgid "After"
 msgstr "Après"
 
@@ -1110,28 +1118,33 @@ msgid "Aggregate Sum"
 msgstr "Somme agrégée"
 
 msgid ""
-"Aggregate function applied to the list of points in each cluster to produce the "
-"cluster label."
+"Aggregate function applied to the list of points in each cluster to "
+"produce the cluster label."
 msgstr ""
-"Fonction d'agrégation appliquée à la liste des points de chaque regroupement pour "
-"produire l'étiquette de regroupement."
+"Fonction d'agrégation appliquée à la liste des points de chaque "
+"regroupement pour produire l'étiquette de regroupement."
 
 msgid ""
-"Aggregate function to apply when pivoting and computing the total rows and columns"
+"Aggregate function to apply when pivoting and computing the total rows "
+"and columns"
 msgstr ""
-"Fonction d’agrégation à appliquer lors du pivotement et du calcul du total des "
-"lignes et des colonnes"
+"Fonction d’agrégation à appliquer lors du pivotement et du calcul du "
+"total des lignes et des colonnes"
 
 msgid ""
-"Aggregates data within the boundary of grid cells and maps the aggregated values "
-"to a dynamic color scale"
+"Aggregates data within the boundary of grid cells and maps the aggregated"
+" values to a dynamic color scale"
 msgstr ""
-"Agrége les données dans les limites des cellules de la grille et fait correspondre "
-"les valeurs agrégées à une échelle de couleurs dynamique"
+"Agrége les données dans les limites des cellules de la grille et fait "
+"correspondre les valeurs agrégées à une échelle de couleurs dynamique"
 
 msgid "Aggregation"
 msgstr "Aggregation"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "Aggregation"
+
 msgid "Aggregation function"
 msgstr "Fonctions d’agrégation"
 
@@ -1209,6 +1222,10 @@ msgstr "Aligner +/-"
 msgid "All"
 msgstr "Tous"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Colonnex du tableau"
+
 msgid "All Text"
 msgstr "Tout texte"
 
@@ -1224,33 +1241,21 @@ msgstr "Tous les filtres"
 msgid "All panels"
 msgstr "Tous les panneaux"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr "Tous les panneaux avec cette colonne seront affectés par ce filtre"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "Autoriser CREATE TABLE AS"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Autorise l'option CREATE TABLE AS dans SQL Lab"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "Autoriser CREATE VIEW AS"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Autorise l'option CREATE VIEW AS dans SQL Lab"
-
-msgid "Allow Csv Upload"
-msgstr "Autoriser le téléversement CSV"
-
-msgid "Allow DML"
-msgstr "Autoriser DML"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr ""
 
 msgid ""
-"Allow column names to be changed to case insensitive format, if supported (e.g. "
-"Oracle, Snowflake)."
+"Allow column names to be changed to case insensitive format, if supported"
+" (e.g. Oracle, Snowflake)."
 msgstr ""
 
 msgid "Allow columns to be rearranged"
@@ -1259,6 +1264,10 @@ msgstr "Autoriser la réorganisation des colonnes"
 msgid "Allow creation of new tables based on queries"
 msgstr "Autoriser la création de nouveaux tableaux basés sur des requêtes"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "Autoriser la création de nouvelles vues basées sur des requêtes"
+
 msgid "Allow creation of new views based on queries"
 msgstr "Autoriser la création de nouvelles vues basées sur des requêtes"
 
@@ -1266,41 +1275,34 @@ msgid "Allow data manipulation language"
 msgstr "Autoriser le langage de manipulation des données"
 
 msgid ""
-"Allow end user to drag-and-drop column headers to rearrange them. Note their "
-"changes won't persist for the next time they open the chart."
+"Allow end user to drag-and-drop column headers to rearrange them. Note "
+"their changes won't persist for the next time they open the chart."
 msgstr ""
-"Permettre à l’utilisateur·rice final·e de glisser-déposer les en-têtes de colonne "
-"pour les réorganiser. Notez que leurs changements ne persisteront pas la prochaine "
-"fois qu’ils ouvriront le tableau."
+"Permettre à l’utilisateur·rice final·e de glisser-déposer les en-têtes de"
+" colonne pour les réorganiser. Notez que leurs changements ne "
+"persisteront pas la prochaine fois qu’ils ouvriront le tableau."
 
 msgid "Allow file uploads to database"
 msgstr "Autoriser des téléchargements de fichier vers la base de donnée"
 
-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."
-
 msgid "Allow node selections"
 msgstr "Autoriser les sélections multiples"
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr "Autoriser l’envoi de plusieurs polygones comme événement de filtre"
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "Autoriser cette base de données à être explorée"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "Autoriser cette base de données à être requêtées dans SQL Lab"
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in SQL Lab"
-msgstr ""
-"Autoriser les utilisateurs à lancer des expression non-SELECT (UPDATE, DELETE, "
-"CREATE, etc.) dans SQL Lab"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "Domaines autorisés (séparés par des virgules)"
 
@@ -1309,15 +1311,16 @@ msgstr "Alphabétique"
 
 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."
+"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 ""
 "Également connue sous le nom de diagramme en boîte à moustaches, cette "
-"visualisation compare les distributions d'une mesure connexe au sein de plusieurs "
-"groupes. La boîte du milieu met l'accent sur la moyenne, la médiane et les deux "
-"quartiles intérieurs. Les moustaches autour de chaque boîte visualisent le "
-"minimum, le maximum, l'étendue et les deux quartiles extérieurs."
+"visualisation compare les distributions d'une mesure connexe au sein de "
+"plusieurs groupes. La boîte du milieu met l'accent sur la moyenne, la "
+"médiane et les deux quartiles intérieurs. Les moustaches autour de chaque"
+" boîte visualisent le minimum, le maximum, l'étendue et les deux "
+"quartiles extérieurs."
 
 msgid "Altered"
 msgstr "Modifié"
@@ -1333,20 +1336,28 @@ msgid "An alert named \"%(name)s\" already exists"
 msgstr "Une alerte nommée « %(name)s » existe déjà"
 
 msgid ""
-"An enclosed time range (both start and end) must be specified when using a Time "
-"Comparison."
+"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 temporelle."
+"Une période délimitée (à la fois début et fin) doit être spécifiée quand "
+"on utilise une comparaison temporelle."
 
-msgid "An engine must be specified when passing individual parameters to a database."
+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."
+"Un moteur doit être fournit lorsque l'on passe des paramètres individuels"
+" à la base de données."
 
 msgid "An error has occurred"
 msgstr "Une erreur est survenue"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr ""
+"Une erreur s'est produite lors de l'extraction des ensembles de données. "
+": %s"
+
 msgid "An error occurred"
 msgstr "Un erreur s'est produite"
 
@@ -1357,6 +1368,10 @@ msgstr "Une erreur s'est produite durant la sauvegarde du ensemble de données"
 msgid "An error occurred when running alert query"
 msgstr "Une erreur s'est produite le traitement des logs "
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Une erreur s'est produite durant la création de la source de donnée."
+
 #, 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."
@@ -1365,12 +1380,18 @@ msgid ""
 "An error occurred while collapsing the table schema. Please contact your "
 "administrator."
 msgstr ""
-"Une erreur s'est produite en repliant le schéma du tableau. Veuillez contacter "
-"votre administrateur."
+"Une erreur s'est produite en repliant le schéma du tableau. Veuillez "
+"contacter votre administrateur."
 
 #, 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"
+msgstr ""
+"Une erreur s'est produite durant la récupération des jeux de données %ss:"
+" %s"
+
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Une erreur s'est produite durant la création de la valeur."
 
 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"
@@ -1387,8 +1408,8 @@ 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 du tableau. Veuillez contacter "
-"votre administrateur."
+"Une erreur s'est produite en développant le schéma du tableau. Veuillez "
+"contacter votre administrateur."
 
 #, fuzzy, python-format
 msgid "An error occurred while fetching %s info: %s"
@@ -1400,19 +1421,20 @@ msgstr "Une erreur s'est produite durant la récupération des informations %ss
 
 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"
+"Une erreur s'est produite lors de l'extraction des modèles de CSS "
+"disponibles"
 
 #, python-format
 msgid "An error occurred while fetching chart owners values: %s"
 msgstr ""
-"Une erreur s'est produite lors de l'extraction des valeurs des propriétaires de "
-"graphiques : %s"
+"Une erreur s'est produite lors de l'extraction des valeurs des "
+"propriétaires de graphiques : %s"
 
 #, python-format
 msgid "An error occurred while fetching dashboard owner values: %s"
 msgstr ""
-"Une erreur s'est produite lors de l'extraction des valeurs du propriétaire du "
-"tableau de bord : %s"
+"Une erreur s'est produite lors de l'extraction des valeurs du "
+"propriétaire du tableau de bord : %s"
 
 #, fuzzy
 msgid "An error occurred while fetching dashboards"
@@ -1425,7 +1447,8 @@ msgstr "Une erreur s'est produite durant la récupération des informations : %
 #, 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"
+"Une erreur s'est produite lors de la récupération des données de la base "
+":  %s"
 
 #, python-format
 msgid "An error occurred while fetching database values: %s"
@@ -1436,30 +1459,31 @@ msgstr ""
 #, python-format
 msgid "An error occurred while fetching dataset datasource values: %s"
 msgstr ""
-"Une erreur s'est produite lors de la récupération de l’ensemble de données "
-"relatives à la source de données : %s"
+"Une erreur s'est produite lors de la récupération de l’ensemble de "
+"données relatives à la source de données : %s"
 
 #, python-format
 msgid "An error occurred while fetching dataset owner values: %s"
 msgstr ""
-"Une erreur s'est produite lors de la récupération des valeurs de l’ensemble de "
-"données :  %s"
+"Une erreur s'est produite lors de la récupération des valeurs de "
+"l’ensemble de données :  %s"
 
 msgid "An error occurred while fetching dataset related data"
 msgstr ""
-"Une erreur s'est produite lors de l'extraction des données relatives à l'ensemble "
-"de données"
+"Une erreur s'est produite lors de l'extraction des données relatives à "
+"l'ensemble de données"
 
 #, 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 "
-"ensemble de données : %s"
+"Une erreur s'est produite lors de la récupération des données relatives "
+"au ensemble de données : %s"
 
 #, python-format
 msgid "An error occurred while fetching datasets: %s"
 msgstr ""
-"Une erreur s'est produite lors de l'extraction des ensembles de données. : %s"
+"Une erreur s'est produite lors de l'extraction des ensembles de données. "
+": %s"
 
 msgid "An error occurred while fetching function names."
 msgstr "Une erreur s'est produite lors de la recherche des noms de fonctions."
@@ -1467,7 +1491,8 @@ msgstr "Une erreur s'est produite lors de la recherche des noms de fonctions."
 #, fuzzy, python-format
 msgid "An error occurred while fetching owners values: %s"
 msgstr ""
-"Une erreur s'est produite lors de la recherche des valeurs des propriétaires : %s"
+"Une erreur s'est produite lors de la recherche des valeurs des "
+"propriétaires : %s"
 
 #, python-format
 msgid "An error occurred while fetching schema values: %s"
@@ -1480,16 +1505,17 @@ msgid "An error occurred while fetching table metadata"
 msgstr "Une erreur s'est produite lors de l'extraction des métadonnées du tableau"
 
 msgid ""
-"An error occurred while fetching table metadata. Please contact your administrator."
+"An error occurred while fetching table metadata. Please contact your "
+"administrator."
 msgstr ""
-"Une erreur s'est produite lors de l'extraction des métadonnées du tableau. "
-"Veuillez contacter votre administrateur."
+"Une erreur s'est produite lors de l'extraction des métadonnées du "
+"tableau. Veuillez contacter votre administrateur."
 
 #, python-format
 msgid "An error occurred while fetching user values: %s"
 msgstr ""
-"Une erreur s'est produite lors de l'extraction des valeurs de l’utilisateur·rice : "
-"%s"
+"Une erreur s'est produite lors de l'extraction des valeurs de "
+"l’utilisateur·rice : %s"
 
 #, fuzzy, python-format
 msgid "An error occurred while importing %s: %s"
@@ -1498,8 +1524,8 @@ msgstr "Une erreur s'est produite lors de l'importation de %s : %s"
 #, fuzzy
 msgid "An error occurred while loading dashboard information."
 msgstr ""
-"Une erreur s'est produite lors du chargement des informations relatives au tableau "
-"de bord."
+"Une erreur s'est produite lors du chargement des informations relatives "
+"au tableau de bord."
 
 msgid "An error occurred while loading the SQL"
 msgstr "Une erreur s'est produite durant le chargement de SQL"
@@ -1517,15 +1543,15 @@ msgstr "Une erreur s'est produite lors de la suppression des journaux "
 
 msgid "An error occurred while removing query. Please contact your administrator."
 msgstr ""
-"Une erreur s'est produite lors de la suppression de la requête. Veuillez contacter "
-"votre administrateur."
+"Une erreur s'est produite lors de la suppression de la requête. Veuillez "
+"contacter votre administrateur."
 
 msgid ""
 "An error occurred while removing the table schema. Please contact your "
 "administrator."
 msgstr ""
-"Une erreur s'est produite lors de la suppression du tableau. Veuillez contacter "
-"votre administrateur."
+"Une erreur s'est produite lors de la suppression du tableau. Veuillez "
+"contacter votre administrateur."
 
 #, fuzzy, python-format
 msgid "An error occurred while rendering the visualization: %s"
@@ -1536,12 +1562,18 @@ msgid "An error occurred while starring this chart"
 msgstr "Une erreur s'est produite lors de la mise en ligne de ce graphique"
 
 msgid ""
-"An error occurred while storing your query in the backend. To avoid losing your "
-"changes, please save your query using the \"Save Query\" button."
+"An error occurred while storing your query in the backend. To avoid "
+"losing your changes, please save your query using the \"Save Query\" "
+"button."
 msgstr ""
-"Une erreur s'est produite lors de l'enregistrement de votre requête dans le "
-"programme dorsal. Pour éviter de perdre vos modifications, veuillez enregistrer "
-"votre requête en utilisant le bouton « Enregistrer la requête »."
+"Une erreur s'est produite lors de l'enregistrement de votre requête dans "
+"le programme dorsal. Pour éviter de perdre vos modifications, veuillez "
+"enregistrer votre requête en utilisant le bouton « Enregistrer la requête"
+" »."
+
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Une erreur s'est produite durant la récupération des informations %ss : %s"
 
 #, fuzzy
 msgid "An error occurred while updating the value."
@@ -1683,21 +1715,21 @@ msgid ""
 "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"
+"Une palette de couleur sélectionnée ici écrasera les couleurs appliquées "
+"aux graphiques de ce tableau de bord"
 
 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. "
 msgstr ""
-"Toutes les bases de données qui permettent des connexions par le biais des URI SQL "
-"Alchemy peuvent être ajoutées. "
+"Toutes les bases de données qui permettent des connexions par le biais "
+"des URI SQL Alchemy peuvent être ajoutées. "
 
 msgid ""
-"Any databases that allow connections via SQL Alchemy URIs can be added. Learn "
-"about how to connect a database driver "
+"Any databases that allow connections via SQL Alchemy URIs can be added. "
+"Learn about how to connect a database driver "
 msgstr ""
-"Toutes les bases de données qui permettent des connexions par le biais des URI SQL "
-"Alchemy peuvent être ajoutées. Découvrez comment connecter un pilote de base de "
-"données "
+"Toutes les bases de données qui permettent des connexions par le biais "
+"des URI SQL Alchemy peuvent être ajoutées. Découvrez comment connecter un"
+" pilote de base de données "
 
 #, fuzzy, python-format
 msgid "Applied cross-filters (%d)"
@@ -1716,12 +1748,12 @@ msgid "Applied filters: %s"
 msgstr "Filtres appliqués : (%s)"
 
 msgid ""
-"Applied rolling window did not return any data. Please make sure the source query "
-"satisfies the minimum periods defined in the rolling window."
+"Applied rolling window did not return any data. Please make sure the "
+"source query satisfies the minimum periods defined in the rolling window."
 msgstr ""
-"La fenêtre roulante appliquée n'a renvoyé aucune donnée. Veuillez vous assurer que "
-"la requête source respecte les périodes minimales définies dans la fenêtre "
-"glissante."
+"La fenêtre roulante appliquée n'a renvoyé aucune donnée. Veuillez vous "
+"assurer que la requête source respecte les périodes minimales définies "
+"dans la fenêtre glissante."
 
 msgid "Apply"
 msgstr "Appliquer"
@@ -1743,12 +1775,6 @@ msgstr "Appliquer les filtres"
 msgid "Apply metrics on"
 msgstr "Appliquer des mesures sur"
 
-msgid "Apply to all panels"
-msgstr "Appliquer à tous les panneaux"
-
-msgid "Apply to specific panels"
-msgstr "Appliquer à certains panneaux"
-
 msgid "April"
 msgstr "Avril"
 
@@ -1792,6 +1818,10 @@ msgstr "Voulez-vous vraiment supprimer les couches sélectionnées?"
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "Voulez-vous vraiment supprimer les requêtes sélectionnées?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "Voulez-vous vraiment supprimer les règles sélectionnées?"
+
 #, fuzzy
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "Voulez-vous vraiment supprimer les règles sélectionnées?"
@@ -1803,6 +1833,10 @@ msgstr "Voulez-vous vraiment vouloir supprimer les balises sélectionnées?"
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "Voulez-vous vraiment supprimer les modèles sélectionnés?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "Voulez-vous vraiment supprimer les requêtes sélectionnées?"
+
 #, fuzzy
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "Voulez-vous vraiment remplacer cet ensemble de données?"
@@ -1829,12 +1863,13 @@ msgid "Area chart opacity"
 msgstr "Opacité du graphique en aires"
 
 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."
+"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 ""
-"Les graphiques en aires sont semblables aux diagrammes linéaires, car ils "
-"représentent des variables avec la même échelle, mais les graphiques en aires "
-"empilent les mesures les unes sur les autres."
+"Les graphiques en aires sont semblables aux diagrammes linéaires, car ils"
+" représentent des variables avec la même échelle, mais les graphiques en "
+"aires empilent les mesures les unes sur les autres."
 
 #, fuzzy
 msgid "Arrow"
@@ -1848,15 +1883,13 @@ msgstr "Les paramètres du ensemble de données sont invalides."
 msgid "Assist"
 msgstr "Simple"
 
-msgid "Associated Charts"
-msgstr "Graphiques associés"
-
-msgid "Async Execution"
-msgstr "Exécution asynchrone"
-
 msgid "Asynchronous query execution"
 msgstr "Exécution de requête asynchrone"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "Distribution"
+
 msgid "August"
 msgstr "Aout"
 
@@ -1882,6 +1915,17 @@ msgstr "Prédicat d'autocomplétion de la requête"
 msgid "Automatic Color"
 msgstr "Couleur automatique"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Personnaliser les colonnes"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Personnaliser les colonnes"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "Modes de tri disponibles :"
 
@@ -1889,6 +1933,9 @@ msgstr "Modes de tri disponibles :"
 msgid "Average"
 msgstr "Partage de requête"
 
+msgid "Average (Mean)"
+msgstr ""
+
 #, fuzzy
 msgid "Average value"
 msgstr "Valeur cible"
@@ -1933,6 +1980,10 @@ msgstr "Retour à tout"
 msgid "Backend"
 msgstr "Programme dorsal"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "contexte"
+
 #, fuzzy
 msgid "Backward values"
 msgstr "Valeurs rétrospectives"
@@ -1952,13 +2003,10 @@ msgstr "Barre"
 msgid "Bar Chart"
 msgstr "Graphique en barres"
 
-msgid "Bar Chart (legacy)"
-msgstr "Graphique en barres (hérité)"
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
-"Les graphiques à barres sont utilisés pour afficher les mesures sous forme de "
-"série de barres."
+"Les graphiques à barres sont utilisés pour afficher les mesures sous "
+"forme de série de barres."
 
 #, fuzzy
 msgid "Bar Values"
@@ -1972,10 +2020,25 @@ msgstr "Documentation"
 msgid "Base"
 msgstr "Base"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Port de la base de données"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Hauteur du graphique"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Largeur de la ligne"
+
 msgid "Based on a metric"
 msgstr "Basé sur une mesure"
 
@@ -1995,9 +2058,6 @@ msgstr "Information de base"
 msgid "Batch editing %d filters:"
 msgstr "Édition par lots de %d filtres :"
 
-msgid "Battery level over time"
-msgstr "Niveau de la batterie au fil du temps"
-
 msgid "Be careful."
 msgstr "Faites attention."
 
@@ -2020,6 +2080,14 @@ msgstr "Gros nombre avec tendance"
 msgid "Bins"
 msgstr "dans"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Colonnes des séries temporelles"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Épaisseur du bord"
+
 #, fuzzy
 msgid "Bottom"
 msgstr "Bas"
@@ -2032,7 +2100,9 @@ msgid "Bottom left"
 msgstr "En bas à gauche"
 
 msgid "Bottom margin, in pixels, allowing for more room for axis labels"
-msgstr "Marge inférieure, en pixels, offrant plus d’espace pour les étiquettes d’axe"
+msgstr ""
+"Marge inférieure, en pixels, offrant plus d’espace pour les étiquettes "
+"d’axe"
 
 #, fuzzy
 msgid "Bottom right"
@@ -2042,55 +2112,56 @@ msgid "Bottom to Top"
 msgstr "De bas en haut"
 
 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."
+"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 ""
 
 msgid ""
-"Bounds for the Y-axis. When left empty, the bounds are dynamically defined based "
-"on the min/max of the data. Note that this feature will only expand the axis "
-"range. It won't narrow the data's extent."
+"Bounds for the Y-axis. When left empty, the bounds are dynamically "
+"defined based on the min/max of the data. Note that this feature will "
+"only expand the axis range. It won't narrow the data's extent."
 msgstr ""
-"Limites de l'axe des ordonnées. Lorsqu'elles sont laissées vides, les limites sont "
-"définies dynamiquement sur la base des valeurs min/max des données. Notez que "
-"cette fonction ne fait qu'étendre la plage de l'axe. Elle ne réduira pas l'étendue "
-"des données."
+"Limites de l'axe des ordonnées. Lorsqu'elles sont laissées vides, les "
+"limites sont définies dynamiquement sur la base des valeurs min/max des "
+"données. Notez que cette fonction ne fait qu'étendre la plage de l'axe. "
+"Elle ne réduira pas l'étendue des données."
 
 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."
+"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 de l'axe. Lorsqu'elles sont laissées vides, les limites sont définies "
-"dynamiquement sur la base des valeurs min/max des données. Notez que cette "
-"fonction ne fait qu'étendre la plage de l'axe. Elle ne réduira pas l'étendue des "
-"données."
+"Limites de l'axe. Lorsqu'elles sont laissées vides, les limites sont "
+"définies dynamiquement sur la base des valeurs min/max des données. Notez"
+" que cette fonction ne fait qu'étendre la plage de l'axe. Elle ne réduira"
+" pas l'étendue des données."
 
 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."
+"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 de l'axe des ordonnées principal. Lorsqu'elles sont laissées vides, les "
-"limites sont définies dynamiquement sur la base des valeurs min/max des données. "
-"Notez que cette fonction ne fait qu'étendre la plage de l'axe. Elle ne réduira pas "
-"l'étendue des données."
+"Limites de l'axe des ordonnées principal. Lorsqu'elles sont laissées "
+"vides, les limites sont définies dynamiquement sur la base des valeurs "
+"min/max des données. Notez que cette fonction ne fait qu'étendre la plage"
+" de l'axe. Elle ne réduira pas l'étendue des données."
 
 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"
+"                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 de l'axe secondaire des ordonnées. Ne fonctionne que si les limites de "
-"l'axe Y indépendant sont activées. Si cette option n'est pas activée, les limites "
-"sont définies dynamiquement sur la base des valeurs min/max des données. Notez que "
-"cette fonction ne fait qu'étendre la plage de l'axe. Elle ne réduira pas l'étendue "
-"des données."
+"Limites de l'axe secondaire des ordonnées. Ne fonctionne que si les "
+"limites de l'axe Y indépendant sont activées. Si cette option n'est pas "
+"activée, les limites sont définies dynamiquement sur la base des valeurs "
+"min/max des données. Notez que cette fonction ne fait qu'étendre la plage"
+" de l'axe. Elle ne réduira pas l'étendue des données."
 
 #, fuzzy
 msgid "Box Plot"
@@ -2102,7 +2173,8 @@ msgstr "Ventilations"
 
 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."
+"      This can help viewers understand how each category affects the "
+"overall value."
 msgstr ""
 
 msgid "Bubble Chart"
@@ -2150,19 +2222,17 @@ msgstr "Graphique à puces"
 msgid "Business"
 msgstr "Entreprise"
 
-msgid "Business Data Type"
-msgstr "Type de données commerciales"
-
 msgid ""
-"By default, each filter loads at most 1000 choices at the initial page load. Check "
-"this box if you have more than 1000 filter values and want to enable dynamically "
-"searching that loads filter values as users type (may add stress to your database)."
+"By default, each filter loads at most 1000 choices at the initial page "
+"load. Check this box if you have more than 1000 filter values and want to"
+" enable dynamically searching that loads filter values as users type (may"
+" add stress to your database)."
 msgstr ""
-"Par défaut, chaque filtre charge au maximum 1000 choix lors du chargement initial "
-"de la page. Cochez cette case si vous avez plus de 1000 valeurs de filtre et que "
-"vous souhaitez activer la recherche dynamique qui charge les valeurs de filtre au "
-"fur et à mesure que les utilisateur·rice·s les saisissent (ce qui risque "
-"d'alourdir votre base de données)."
+"Par défaut, chaque filtre charge au maximum 1000 choix lors du chargement"
+" initial de la page. Cochez cette case si vous avez plus de 1000 valeurs "
+"de filtre et que vous souhaitez activer la recherche dynamique qui charge"
+" les valeurs de filtre au fur et à mesure que les utilisateur·rice·s les "
+"saisissent (ce qui risque d'alourdir votre base de données)."
 
 msgid "By key: use column names as sorting key"
 msgstr "Par clé : utilisez les noms de colonne comme clé de tri"
@@ -2226,32 +2296,34 @@ msgid "CSS templates could not be deleted."
 msgstr "Le template CSS n'a pas pu être supprimé."
 
 #, fuzzy
-msgid "CSV Upload"
-msgstr "Téléversement d’un CSV"
+msgid "CSV upload"
+msgstr "Téléversement"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "SCHÉMA CTAS ET CVAS"
 
 msgid ""
-"CTAS (create table as select) can only be run with a query where the last "
-"statement is a SELECT. Please make sure your query has a SELECT as its last "
-"statement. Then, try running your query again."
+"CTAS (create table as select) can only be run with a query where the last"
+" statement is a SELECT. Please make sure your query has a SELECT as its "
+"last statement. Then, try running your query again."
 msgstr ""
-"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."
+"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."
 
-msgid "CTAS Schema"
-msgstr "Schéma CTAS"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "Personnalisé"
 
 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."
+"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) ne peut être exécuté qu'avec une requête comportant "
-"une seule instruction SELECT. Assurez-vous que votre requête ne comporte qu'une "
-"seule instruction SELECT. Essayez ensuite d'exécuter à nouveau votre requête."
+"CVAS (create view as select) ne peut être exécuté qu'avec une requête "
+"comportant une seule instruction SELECT. Assurez-vous que votre requête "
+"ne comporte qu'une seule instruction SELECT. Essayez ensuite d'exécuter à"
+" nouveau votre requête."
 
 msgid "CVAS (create view as select) query has more than one statement."
 msgstr "La requête CVAS (create view as select) comporte plus d'une instruction."
@@ -2259,9 +2331,6 @@ msgstr "La requête CVAS (create view as select) comporte plus d'une instruction
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "La requête CVAS (create view as select) n'est pas une instruction SELECT."
 
-msgid "Cache Timeout"
-msgstr "Délai d'inactivité et reprise du cache"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Délai d'inactivité et reprise du cache (secondes)"
 
@@ -2303,14 +2372,13 @@ msgid "Calendar Heatmap"
 msgstr "Carte thermique du calendrier"
 
 msgid "Can not move top level tab into nested tabs"
-msgstr "Impossible de déplacer l'onglet de premier niveau dans les onglets imbriqués"
+msgstr ""
+"Impossible de déplacer l'onglet de premier niveau dans les onglets "
+"imbriqués"
 
 msgid "Can select multiple values"
 msgstr "Peut selectionner plusieurs valeurs"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "Il ne faut pas avoir d'élement en commun entre Série et Breakdowns"
-
 msgid "Cancel"
 msgstr "Annuler"
 
@@ -2322,8 +2390,12 @@ msgstr "Impossible d'accéder à la requête"
 
 msgid "Cannot delete a database that has datasets attached"
 msgstr ""
-"Impossible de supprimer une base de données à laquelle sont attachés des ensembles "
-"de données"
+"Impossible de supprimer une base de données à laquelle sont attachés des "
+"ensembles de données"
+
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
 
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr "Impossible d'avoir plusieurs identifiants pour le tunnel SSH"
@@ -2335,6 +2407,10 @@ msgstr "Impossible de charger le filtre"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "Impossible d'analyser la chaîne de temps [%(human_readable)s]"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Diagramme de partition"
+
 #, fuzzy
 msgid "Catalog"
 msgstr "balise"
@@ -2423,13 +2499,14 @@ msgstr "Modifier l’ordre des colonnes."
 msgid "Change order of rows."
 msgstr "Modifier l’ordre des rangées."
 
-msgid "Changed By"
-msgstr "Modifié par"
-
 #, fuzzy
 msgid "Changed by"
 msgstr "Modifié par"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "changement"
+
 msgid "Changes saved."
 msgstr "Modifications enregistrées."
 
@@ -2438,20 +2515,20 @@ msgid "Changing one or more of these dashboards is forbidden"
 msgstr "Modifier ce tableau de bord est interdit"
 
 msgid ""
-"Changing the dataset may break the chart if the chart relies on columns or "
-"metadata that does not exist in the target dataset"
+"Changing the dataset may break the chart if the chart relies on columns "
+"or metadata that does not exist in the target dataset"
 msgstr ""
-"La modification de l'ensemble de données peut briser le graphique si celui-ci "
-"repose sur des colonnes ou des métadonnées qui n'existent pas dans l'ensemble de "
-"données cible"
+"La modification de l'ensemble de données peut briser le graphique si "
+"celui-ci repose sur des colonnes ou des métadonnées qui n'existent pas "
+"dans l'ensemble de données cible"
 
 msgid ""
-"Changing these settings will affect all charts using this dataset, including "
-"charts owned by other people."
+"Changing these settings will affect all charts using this dataset, "
+"including charts owned by other people."
 msgstr ""
-"La modification de ces paramètres affectera tous les graphiques qui utilisent cet "
-"ensemble de données, y compris les graphiques qui appartiennent à d'autres "
-"personnes."
+"La modification de ces paramètres affectera tous les graphiques qui "
+"utilisent cet ensemble de données, y compris les graphiques qui "
+"appartiennent à d'autres personnes."
 
 msgid "Changing this Dashboard is forbidden"
 msgstr "Modifier ce tableau de bord est interdit"
@@ -2486,9 +2563,6 @@ msgstr "Graphique"
 msgid "Chart %(id)s not found"
 msgstr "Graphique %(id)s non trouvé"
 
-msgid "Chart Cache Timeout"
-msgstr "Délai de mise en cache des graphiques"
-
 #, fuzzy, python-format
 msgid "Chart Data: %s"
 msgstr "Donnés de graphique : %s"
@@ -2556,8 +2630,8 @@ msgstr "Le graphique n'existe pas"
 
 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."
+"Le graphique n'a pas de contexte de requête sauvegardé. Veuillez sauver "
+"le graphique à nouveau."
 
 #, fuzzy
 msgid "Chart height"
@@ -2597,6 +2671,10 @@ msgstr "Les paramètres du graphique sont invalides."
 msgid "Chart properties updated"
 msgstr "Modifier les propriétés du graphique"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "graphiques"
+
 #, fuzzy
 msgid "Chart title"
 msgstr "Titre du graphique"
@@ -2618,11 +2696,11 @@ msgid "Check for sorting ascending"
 msgstr "Cocher pour trier par ordre croissant"
 
 msgid ""
-"Check if the Rose Chart should use segment area instead of segment radius for "
-"proportioning"
+"Check if the Rose Chart should use segment area instead of segment radius"
+" for proportioning"
 msgstr ""
-"Vérifiez si le diagramme en rose doit utiliser la surface du segment au lieu du "
-"rayon du segment pour le calcul des proportions"
+"Vérifiez si le diagramme en rose doit utiliser la surface du segment au "
+"lieu du rayon du segment pour le calcul des proportions"
 
 msgid "Check out this chart in dashboard:"
 msgstr "Vérifiez ce graphique dans le tableau de bord :"
@@ -2634,7 +2712,9 @@ msgid "Check out this dashboard: "
 msgstr "Vérifiez ce tableau de bord: "
 
 msgid "Check to force date partitions to have the same height"
-msgstr "Cochez cette case pour forcer les partitions de date à avoir la même hauteur"
+msgstr ""
+"Cochez cette case pour forcer les partitions de date à avoir la même "
+"hauteur"
 
 msgid "Child label position"
 msgstr "Position de l’étiquette enfant"
@@ -2648,6 +2728,10 @@ msgstr "Le choix de [Rayon du point] doit être présent dans [Grouper par]"
 msgid "Choose File"
 msgstr "Choisissez un fichier"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Choisissez un graphique ou un tableau de bord, pas les deux"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Choisissez un graphique ou un tableau de bord, pas les deux"
 
@@ -2673,10 +2757,6 @@ msgstr "Choisissez une mesure pour l'axe de droite"
 msgid "Choose a source"
 msgstr "Choisissez une source"
 
-#, fuzzy
-msgid "Choose a source and a target"
-msgstr "Choisissez une source et une cible"
-
 #, fuzzy
 msgid "Choose a target"
 msgstr "Choisissez un jeu de donnée"
@@ -2705,11 +2785,15 @@ msgid "Choose notification method and recipients."
 msgstr "Ajouter une méthode de notification"
 
 msgid "Choose one of the available databases from the panel on the left."
-msgstr "Choisissez l’une des bases de données disponibles dans le panneau de gauche."
+msgstr ""
+"Choisissez l’une des bases de données disponibles dans le panneau de "
+"gauche."
 
 #, fuzzy
 msgid "Choose one of the available databases on the left panel."
-msgstr "Choisissez l’une des bases de données disponibles dans le panneau de gauche."
+msgstr ""
+"Choisissez l’une des bases de données disponibles dans le panneau de "
+"gauche."
 
 #, fuzzy
 msgid "Choose sheet name"
@@ -2731,19 +2815,21 @@ msgstr "Choisissez la source de vos annotations"
 
 #, fuzzy
 msgid ""
-"Choose values that should be treated as null. Warning: Hive database supports only "
-"a single value"
+"Choose values that should be treated as null. Warning: Hive database "
+"supports only a single value"
 msgstr ""
-"Liste Json des valeurs qui doivent être traitées comme nulles. Exemples : [« »] "
-"pour les chaînes vides, [« None », « N/A »], [« nan », « null »]. Attention : La "
-"base de données Hive ne prend en charge qu'une seule valeur"
+"Liste Json des valeurs qui doivent être traitées comme nulles. Exemples :"
+" [« »] pour les chaînes vides, [« None », « N/A »], [« nan », « null »]. "
+"Attention : La base de données Hive ne prend en charge qu'une seule "
+"valeur"
 
 msgid ""
-"Choose whether a country should be shaded by the metric, or assigned a color based "
-"on a categorical color palette"
+"Choose whether a country should be shaded by the metric, or assigned a "
+"color based on a categorical color palette"
 msgstr ""
-"Choisissez si un pays doit être ombré par la mesure ou si une couleur doit lui "
-"être attribuée sur la base d'une palette de couleurs catégorielles"
+"Choisissez si un pays doit être ombré par la mesure ou si une couleur "
+"doit lui être attribuée sur la base d'une palette de couleurs "
+"catégorielles"
 
 msgid "Chord Diagram"
 msgstr "Diagramme d'accord"
@@ -2767,17 +2853,13 @@ msgstr "Forme radar circulaire"
 msgid "Circular"
 msgstr "Circulaire"
 
-msgid "Classic chart that visualizes how metrics change over time."
-msgstr ""
-"Graphique classique qui visualise comment les mesures changent au fil du temps."
-
 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."
+"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 ""
-"Vue classique d'un ensemble de données, rangée par colonne, à la manière d'une "
-"feuille de calcul. Utilisez les tableaux pour présenter une vue des données sous-"
-"jacentes ou pour montrer des mesures agrégées."
+"Vue classique d'un ensemble de données, rangée par colonne, à la manière "
+"d'une feuille de calcul. Utilisez les tableaux pour présenter une vue des"
+" données sous-jacentes ou pour montrer des mesures agrégées."
 
 msgid "Clause"
 msgstr "Clause"
@@ -2796,17 +2878,20 @@ msgstr "Effacer toutes les données"
 msgid "Clear form"
 msgstr "Forme claire"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
-"Cliquez sur le bouton « +Ajouter/modifier des filtres » pour créer de nouveaux "
-"filtres de tableau de bord"
+"Cliquez sur le bouton « +Ajouter/modifier des filtres » pour créer de "
+"nouveaux filtres de tableau de bord"
 
 msgid ""
-"Click on \"Create chart\" button in the control panel on the left to preview a "
-"visualization or"
+"Click on \"Create chart\" button in the control panel on the left to "
+"preview a visualization or"
 msgstr ""
-"Cliquez sur le bouton « Créer un graphique » dans le panneau de commande à gauche "
-"pour prévisualiser une visualisation ou"
+"Cliquez sur le bouton « Créer un graphique » dans le panneau de commande "
+"à gauche pour prévisualiser une visualisation ou"
 
 msgid "Click the lock to make changes."
 msgstr "Cliquez sur le cadenas pour effectuer des modifications."
@@ -2815,22 +2900,27 @@ msgid "Click the lock to prevent further changes."
 msgstr "Cliquez sur le cadenas pour empêcher toute modification ultérieure."
 
 msgid ""
-"Click this link to switch to an alternate form that allows you to input the "
-"SQLAlchemy URL for this database manually."
+"Click this link to switch to an alternate form that allows you to input "
+"the SQLAlchemy URL for this database manually."
 msgstr ""
-"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."
+"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."
 
 msgid ""
-"Click this link to switch to an alternate form that exposes only the required "
-"fields needed to connect this database."
+"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."
+"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."
 
 msgid "Click to add a contour"
 msgstr ""
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "Cliquer pour éditer le l’étiquette"
+
 msgid "Click to cancel sorting"
 msgstr "Cliquez pour annuler le tri"
 
@@ -2938,11 +3028,12 @@ msgid "Color scheme"
 msgstr "Schéma de couleurs"
 
 msgid ""
-"Color will be shaded based the normalized (0% to 100%) value of a given cell "
-"against the other cells in the selected range: "
+"Color will be shaded based the normalized (0% to 100%) value of a given "
+"cell against the other cells in the selected range: "
 msgstr ""
-"La couleur sera ombrée en fonction de la valeur normalisée (0 % à 100 %) d'une "
-"cellule donnée par rapport aux autres cellules de la plage sélectionnée : "
+"La couleur sera ombrée en fonction de la valeur normalisée (0 % à 100 %) "
+"d'une cellule donnée par rapport aux autres cellules de la plage "
+"sélectionnée : "
 
 #, fuzzy
 msgid "Color: "
@@ -2955,28 +3046,31 @@ msgid "Column"
 msgstr "Colonne"
 
 #, python-format
-msgid "Column \"%(column)s\" is not numeric or does not exists in the query results."
+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."
+"La colonne « %(column)s » n'est pas numérique ou n'existe pas dans les "
+"résultats de requêtes."
 
 #, fuzzy
 msgid "Column Configuration"
 msgstr "Configuration des colonnes"
 
-#, fuzzy
-msgid "Column Data Types"
-msgstr "Types de données des colonnes"
-
 #, fuzzy
 msgid "Column Formatting"
 msgstr "Informations additionnelles"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Paramètres des polygones"
+
 msgid ""
-"Column containing ISO 3166-2 codes of region/province/department in your table."
+"Column containing ISO 3166-2 codes of region/province/department in your "
+"table."
 msgstr ""
-"Colonne contenant les codes ISO 3166-2 de la région/province/service dans votre "
-"tableau."
+"Colonne contenant les codes ISO 3166-2 de la région/province/service dans"
+" votre tableau."
 
 msgid "Column containing latitude data"
 msgstr "Colonne contenant des données de latitude"
@@ -2988,10 +3082,6 @@ msgstr "Colonne contenant des données de longitude"
 msgid "Column data types"
 msgstr "Types de données des colonnes"
 
-#, fuzzy
-msgid "Column datatype"
-msgstr "Type de données de la colonne"
-
 msgid "Column header tooltip"
 msgstr "Infobulle de l'en-tête de colonne"
 
@@ -3015,25 +3105,26 @@ msgstr "Sélection d'une colonne"
 
 #, fuzzy
 msgid ""
-"Column to use as the index of the dataframe. If None is given, Index label is used."
+"Column to use as the index of the dataframe. If None is given, Index "
+"label is used."
 msgstr ""
-"Colonne à utiliser pour les étiquettes de rangée de l'image de données. Laissez "
-"vide s'il n'y a pas de colonne d'index."
+"Colonne à utiliser pour les étiquettes de rangée de l'image de données. "
+"Laissez vide s'il n'y a pas de colonne d'index."
+
+#, fuzzy
+msgid "Column type"
+msgstr "Type de données de la colonne"
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Columnar upload"
 msgstr "Fichier en colonnes"
 
 msgid "Columns"
 msgstr "Colonnes"
 
-#, fuzzy
-msgid "Columns To Be Parsed as Dates"
-msgstr "Colonnes à traiter comme des dates"
-
-#, fuzzy
-msgid "Columns To Read"
-msgstr "Colonnes à lire"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s colonne(s)"
 
 #, fuzzy, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -3046,6 +3137,10 @@ msgstr "Colonnes absentes de la source de données : %(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr "Position du sous-total des colonnes"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "Colonnes à traiter comme des dates"
+
 msgid "Columns to calculate distribution across."
 msgstr "Colonnes pour calculer la distribution."
 
@@ -3062,36 +3157,41 @@ msgstr "Colonnes à regrouper sur les colonnes"
 msgid "Columns to group by on the rows"
 msgstr "Colonnes à regrouper sur les rangées"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Colonnes à lire"
+
 #, fuzzy
 msgid "Combine metrics"
 msgstr "Combiner les mesures"
 
 msgid ""
-"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors "
-"from the chosen color scheme and are 1-indexed. Length must be matching that of "
-"interval bounds."
+"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers "
+"denote colors from the chosen color scheme and are 1-indexed. Length must"
+" be matching that of interval bounds."
 msgstr ""
-"Choix de couleurs séparés par des virgules pour les intervalles, par exemple "
-"1,2,4. Les nombres entiers désignent les couleurs de la palette de couleurs "
-"choisie et sont indexés par 1. La longueur doit correspondre à celle des limites "
-"de l'intervalle."
+"Choix de couleurs séparés par des virgules pour les intervalles, par "
+"exemple 1,2,4. Les nombres entiers désignent les couleurs de la palette "
+"de couleurs choisie et sont indexés par 1. La longueur doit correspondre "
+"à celle des limites de l'intervalle."
 
 msgid ""
-"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. Last "
-"number should match the value provided for MAX."
+"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and "
+"4-5. Last number should match the value provided for MAX."
 msgstr ""
-"Limites des intervalles séparées par des virgules, par exemple 2,4,5 pour les "
-"intervalles 0-2, 2-4 et 4-5. Le dernier chiffre doit correspondre à la valeur "
-"fournie pour MAX."
+"Limites des intervalles séparées par des virgules, par exemple 2,4,5 pour"
+" les intervalles 0-2, 2-4 et 4-5. Le dernier chiffre doit correspondre à "
+"la valeur fournie pour MAX."
 
 msgid "Comparator option"
 msgstr "Option comparateur"
 
 msgid ""
-"Compare multiple time series charts (as sparklines) and related metrics quickly."
+"Compare multiple time series charts (as sparklines) and related metrics "
+"quickly."
 msgstr ""
-"Comparez rapidement plusieurs graphiques de séries temporelles (sous forme de "
-"lignes d'étincelles) et des mesures connexes."
+"Comparez rapidement plusieurs graphiques de séries temporelles (sous "
+"forme de lignes d'étincelles) et des mesures connexes."
 
 msgid "Compare results with other time periods."
 msgstr ""
@@ -3100,25 +3200,13 @@ msgid "Compare the same summarized metric across multiple groups."
 msgstr "Comparez la même mesure résumée entre plusieurs groupes."
 
 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 ""
-"Compare l'évolution d'une mesure dans le temps entre différents groupes. Chaque "
-"groupe est associé à une ligne et l'évolution dans le temps est visualisée par la "
-"longueur des barres et la couleur."
-
-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 ""
-"Compare les mesures de différentes catégories à l'aide de barres. La longueur des "
-"barres est utilisée pour indiquer l'ampleur de chaque valeur et la couleur est "
-"utilisée pour différencier les groupes."
-
-msgid ""
-"Compares the lengths of time different activities take in a shared timeline view."
+"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 ""
-"Comparez la durée de différentes activités dans une vue chronologique partagée."
+"Compare l'évolution d'une mesure dans le temps entre différents groupes. "
+"Chaque groupe est associé à une ligne et l'évolution dans le temps est "
+"visualisée par la longueur des barres et la couleur."
 
 msgid "Comparison"
 msgstr "Comparaison"
@@ -3183,13 +3271,21 @@ msgstr "Configurer la portée du filtre"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "Configurer les bases de votre couche d'annotations."
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
-"Configurez ce tableau de bord pour l’intégrer dans une application Web externe."
+"Configurez ce tableau de bord pour l’intégrer dans une application Web "
+"externe."
 
 msgid "Configure your how you overlay is displayed here."
 msgstr "Configurer comment votre superposition est affichée ici."
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Afficher le mot de passe."
+
 #, fuzzy
 msgid "Confirm overwrite"
 msgstr "Confirmer le remplacement"
@@ -3197,6 +3293,9 @@ msgstr "Confirmer le remplacement"
 msgid "Confirm save"
 msgstr "Confirmer la sauvegarde"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "Connecter"
 
@@ -3228,9 +3327,6 @@ msgstr "La connexion a échoué, veuillez vérifier vos paramètres de connexion
 msgid "Connection failed, please check your connection settings."
 msgstr "La connexion a échoué, veuillez vérifier vos paramètres de connexion"
 
-msgid "Connection looks good!"
-msgstr "La connexion a fière allure!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "Format de la date"
@@ -3273,21 +3369,21 @@ msgstr "Copié vers le presse-papier!"
 msgid "Copy"
 msgstr "Copier"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "Copier l'instruction SELECT dans le presse-papiers"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "Copier et coller les informations de connexion JSON"
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "Copier et coller ici le fichier de service .json en entier"
-
 msgid "Copy link"
 msgstr "Copier le lien"
 
-msgid "Copy message"
-msgstr "Copier le message"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Copie de %s"
@@ -3304,10 +3400,14 @@ msgstr "Copier l'URL de la requête"
 msgid "Copy query link to your clipboard"
 msgstr "Copier le lien de la requête vers le presse-papier"
 
+msgid "Copy the current data"
+msgstr ""
+
 #, 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."
+"Copier le nom de la base de données à laquelle vous essayez de vous "
+"connecter."
 
 msgid "Copy the name of the HTTP Path of your cluster."
 msgstr "Copiez le nom du chemin HTTP de votre grappe."
@@ -3315,7 +3415,8 @@ msgstr "Copiez le nom du chemin HTTP de votre grappe."
 #, fuzzy
 msgid "Copy the name of the database you are trying to connect to."
 msgstr ""
-"Copiez le nom de la base de données à laquelle vous essayez de vous connecter."
+"Copiez le nom de la base de données à laquelle vous essayez de vous "
+"connecter."
 
 msgid "Copy to Clipboard"
 msgstr "Copier vers le presse-papier"
@@ -3323,6 +3424,10 @@ msgstr "Copier vers le presse-papier"
 msgid "Copy to clipboard"
 msgstr "Copier vers le presse-papier"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "Rayon intérieur"
+
 #, fuzzy
 msgid "Correlation"
 msgstr "Corrélation"
@@ -3353,6 +3458,9 @@ msgstr "Impossible de charger le pilote de la base de données : {}"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr "Impossible de résoudre le nom d'hôte:\"%(host)s\"."
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 #, fuzzy
 msgid "Count"
 msgstr "Nombre"
@@ -3403,8 +3511,8 @@ msgid ""
 "Create a dataset to begin visualizing your data as a chart or go to\n"
 "          SQL Lab to query your data."
 msgstr ""
-"Créer un ensemble de données pour commencer à visualiser vos données sous forme de "
-"graphique ou aller à SQL Lab pour interroger vos données."
+"Créer un ensemble de données pour commencer à visualiser vos données sous"
+" forme de graphique ou aller à SQL Lab pour interroger vos données."
 
 msgid "Create a new chart"
 msgstr "Créer un nouveau graphique"
@@ -3457,14 +3565,17 @@ msgstr "Créer une source de données et ouvrir un nouvel onglet"
 msgid "Creator"
 msgstr "Créateur"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 #, fuzzy
 msgid "Crimson"
 msgstr "Cramoisi"
 
 msgid "Cross-filter will be applied to all of the charts that use this dataset."
 msgstr ""
-"Le filtre croisé sera appliqué à tous les graphiques qui utilisent cet ensemble de "
-"données."
+"Le filtre croisé sera appliqué à tous les graphiques qui utilisent cet "
+"ensemble de données."
 
 #, fuzzy
 msgid "Cross-filtering is not enabled for this dashboard."
@@ -3545,8 +3656,8 @@ msgstr "SQL personnalisé"
 
 msgid "Custom SQL ad-hoc metrics are not enabled for this dataset"
 msgstr ""
-"Les mesures SQL ponctuelles personnalisées ne sont pas activées pour cet ensemble "
-"de données"
+"Les mesures SQL ponctuelles personnalisées ne sont pas activées pour cet "
+"ensemble de données"
 
 msgid "Custom SQL fields cannot contain sub-queries."
 msgstr "Les champs SQL personnalisés ne peuvent pas contenir de sous-requêtes."
@@ -3555,6 +3666,9 @@ msgstr "Les champs SQL personnalisés ne peuvent pas contenir de sous-requêtes.
 msgid "Custom color palettes"
 msgstr "Complétion automatique"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "Personnalisé"
@@ -3577,13 +3691,14 @@ msgid "Customize Metrics"
 msgstr "Personnaliser les mesures"
 
 msgid ""
-"Customize chart metrics or columns with currency symbols as prefixes or suffixes. "
-"Choose a symbol from dropdown or type your own."
+"Customize chart metrics or columns with currency symbols as prefixes or "
+"suffixes. Choose a symbol from dropdown or type your own."
 msgstr ""
-"Les graphiques en aires de séries temporelles sont similaires aux graphiques en "
-"lignes dans la mesure où ils représentent des variables avec la même échelle, mais "
-"les graphiques en aires empilent les mesures les unes sur les autres. Dans "
-"Superset, un graphique en aires peut être en flux, en pile ou en expansion."
+"Les graphiques en aires de séries temporelles sont similaires aux "
+"graphiques en lignes dans la mesure où ils représentent des variables "
+"avec la même échelle, mais les graphiques en aires empilent les mesures "
+"les unes sur les autres. Dans Superset, un graphique en aires peut être "
+"en flux, en pile ou en expansion."
 
 #, fuzzy
 msgid "Customize columns"
@@ -3595,9 +3710,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr "Dépendance cyclique constatée"
 
-msgid "D3 Format"
-msgstr "Format D3"
-
 msgid "D3 format"
 msgstr "Format D3"
 
@@ -3605,11 +3717,12 @@ msgid "D3 format syntax: https://github.com/d3/d3-format"
 msgstr "Syntaxe au format D3 : https://github.com/d3/d3-format"
 
 msgid ""
-"D3 number format for numbers between -1.0 and 1.0, useful when you want to have "
-"different significant digits for small and large numbers"
+"D3 number format for numbers between -1.0 and 1.0, useful when you want "
+"to have different significant digits for small and large numbers"
 msgstr ""
-"Format D3 pour les nombres compris entre -1,0 et 1,0, utile lorsque vous souhaitez "
-"avoir des chiffres significatifs différents pour les petits et les grands nombres"
+"Format D3 pour les nombres compris entre -1,0 et 1,0, utile lorsque vous "
+"souhaitez avoir des chiffres significatifs différents pour les petits et "
+"les grands nombres"
 
 msgid "D3 time format for datetime columns"
 msgstr "Format d'heure D3 pour les colonnes d’horodatage"
@@ -3660,6 +3773,21 @@ msgstr "Le tableau de bord [%s] a été créé et le graphique [%s] y a été aj
 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é"
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "Le tableau de bord n'a pas pu être mis à jour."
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "Le tableau de bord n'a pas pu être mis à jour."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "Le tableau de bord n'a pas pu être mis à jour."
+
 msgid "Dashboard could not be deleted."
 msgstr "Le tableau de bord n'a pas pu être supprimé."
 
@@ -3673,6 +3801,10 @@ msgstr "Le tableau de bord n'existe pas"
 msgid "Dashboard imported"
 msgstr "Propriétés du tableau de bord"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "Le tableau de bord n'a pas pu être mis à jour."
+
 msgid "Dashboard parameters are invalid."
 msgstr "Les paramètres du tableau de bord sont invalides."
 
@@ -3689,13 +3821,14 @@ msgstr "Schéma du tableau de bord"
 
 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"
+"          the filter section of each chart. Add temporal columns to the "
+"chart\n"
 "          filters to have this dashboard filter impact those charts."
 msgstr ""
-"Les filtres d'intervalle de temps du tableau de bord s'appliquent aux colonnes "
-"temporelles définies dans la section filtre de chaque graphique. Ajoutez des "
-"colonnes temporelles aux filtres des graphiques pour que ce filtre de tableau de "
-"bord ait un impact sur ces graphiques."
+"Les filtres d'intervalle de temps du tableau de bord s'appliquent aux "
+"colonnes temporelles définies dans la section filtre de chaque graphique."
+" Ajoutez des colonnes temporelles aux filtres des graphiques pour que ce "
+"filtre de tableau de bord ait un impact sur ces graphiques."
 
 #, fuzzy
 msgid "Dashboard title"
@@ -3722,10 +3855,6 @@ msgstr "En pointillés"
 msgid "Data"
 msgstr "Données"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "Ensemble de données importé"
-
 #, fuzzy
 msgid "Data Table"
 msgstr "Tableau des données"
@@ -3737,24 +3866,30 @@ msgid "Data Zoom"
 msgstr "Zoom des données"
 
 msgid ""
-"Data could not be deserialized from the results backend. The storage format might "
-"have changed, rendering the old data stake. You need to re-run the original query."
+"Data could not be 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 ""
-"Les données n'ont pas pu être désérialisées à partir du programme dorsal des "
-"résultats. Le format de stockage peut avoir changé, rendant les anciennes données "
-"inutilisables. Vous devez réexécuter la requête initiale."
+"Les données n'ont pas pu être désérialisées à partir du programme dorsal "
+"des résultats. Le format de stockage peut avoir changé, rendant les "
+"anciennes données inutilisables. Vous devez réexécuter la requête "
+"initiale."
 
 msgid ""
-"Data could not be retrieved from the results backend. You need to re-run the "
-"original query."
+"Data could not be retrieved from the results backend. You need to re-run "
+"the original query."
 msgstr ""
-"Les données n'ont pas pu être extraites du programme dorsal des résultats. Vous "
-"devez réexécuter la requête initiale."
+"Les données n'ont pas pu être extraites du programme dorsal des "
+"résultats. Vous devez réexécuter la requête initiale."
 
 #, fuzzy, python-format
 msgid "Data for %s"
 msgstr "Données supplémentaires pour JS"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Ensemble de données importé"
+
 msgid "Data preview"
 msgstr "Prévisualiser les données"
 
@@ -3807,8 +3942,9 @@ msgid ""
 "Database driver for importing maybe not installed. Visit the Superset "
 "documentation page for installation instructions: "
 msgstr ""
-"Le pilote de la base de données pour l'importation n'est peut-être pas installé. "
-"Visitez la page de documentation Superset pour les instructions d'installation : "
+"Le pilote de la base de données pour l'importation n'est peut-être pas "
+"installé. Visitez la page de documentation Superset pour les instructions"
+" d'installation : "
 
 msgid "Database error"
 msgstr "Erreur de base de données"
@@ -3917,17 +4053,12 @@ msgid "Datasets"
 msgstr "Ensembles de données"
 
 msgid ""
-"Datasets can be created from database tables or SQL queries. Select a database "
-"table to the left or "
-msgstr ""
-"Les ensembles de données peuvent être créés à partir de tableaux de base de "
-"données ou de requêtes SQL. Sélectionnez un tableau de base de données à gauche ou "
-
-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."
+"Datasets can be created from database tables or SQL queries. Select a "
+"database table to the left or "
 msgstr ""
+"Les ensembles de données peuvent être créés à partir de tableaux de base "
+"de données ou de requêtes SQL. Sélectionnez un tableau de base de données"
+" à gauche ou "
 
 #, fuzzy
 msgid "Datasets could not be deleted."
@@ -3968,15 +4099,12 @@ msgstr "Chaîne de format de date"
 msgid "Date/Time"
 msgstr "Date/heure"
 
-msgid "Datetime Format"
-msgstr "Format d’horodatage"
-
 msgid ""
-"Datetime column not provided as part table configuration and is required by this "
-"type of chart"
+"Datetime column not provided as part table configuration and is required "
+"by this type of chart"
 msgstr ""
-"La colonne d'horodatage n'est pas fournie dans le cadre de la configuration du "
-"tableau et est requise par ce type de graphique"
+"La colonne d'horodatage n'est pas fournie dans le cadre de la "
+"configuration du tableau et est requise par ce type de graphique"
 
 msgid "Datetime format"
 msgstr "Format d’horodatage"
@@ -3992,7 +4120,9 @@ msgid "Days %s"
 msgstr "Jours %s"
 
 msgid "Db engine did not return all queried columns"
-msgstr "Le moteur de base de données n'a pas retourné toutes les colonnes demandées"
+msgstr ""
+"Le moteur de base de données n'a pas retourné toutes les colonnes "
+"demandées"
 
 #, fuzzy
 msgid "Deactivate"
@@ -4001,13 +4131,12 @@ msgstr "Désactiver"
 msgid "December"
 msgstr "Décembre"
 
-msgid "Decides which column to sort the base axis by."
-msgstr "Décide de la colonne par laquelle l'axe de base doit être trié."
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "Décide de la mesure par laquelle l'axe de base doit être trié."
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "Caractère décimal"
 
 msgid "Deck.gl - 3D Grid"
@@ -4053,9 +4182,6 @@ msgstr "Créer"
 msgid "Default Catalog"
 msgstr "Valeur par défaut"
 
-msgid "Default Endpoint"
-msgstr "Point final par défaut"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "Sélectionner un schéma"
@@ -4063,10 +4189,11 @@ msgstr "Sélectionner un schéma"
 msgid "Default URL"
 msgstr "URL par défaut"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
-"URL par défaut vers laquelle rediriger l'accès à partir de la page de la liste des "
-"ensembles de données"
 
 msgid "Default Value"
 msgstr "Valeur par défaut"
@@ -4084,58 +4211,58 @@ msgid "Default longitude"
 msgstr "Longitude par défaut"
 
 msgid ""
-"Default minimal column width in pixels, actual width may still be larger than this "
-"if other columns don't need much space"
+"Default minimal column width in pixels, actual width may still be larger "
+"than this if other columns don't need much space"
 msgstr ""
-"Largeur minimale par défaut de la colonne en pixels, la largeur réelle peut être "
-"supérieure à cette valeur si les autres colonnes n'ont pas besoin de beaucoup "
-"d'espace"
-
-msgid "Default value is required"
-msgstr "La valeur par défaut est requise"
+"Largeur minimale par défaut de la colonne en pixels, la largeur réelle "
+"peut être supérieure à cette valeur si les autres colonnes n'ont pas "
+"besoin de beaucoup d'espace"
 
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
-"La valeur par défaut doit être définie lorsque l'option « Le filtre a une valeur "
-"par défaut » est cochée"
+"La valeur par défaut doit être définie lorsque l'option « Le filtre a une"
+" valeur par défaut » est cochée"
 
 msgid "Default value must be set when \"Filter value is required\" is checked"
 msgstr ""
-"La valeur par défaut doit être définie lorsque l'option « Valeur du filtre "
-"requise » est cochée"
+"La valeur par défaut doit être définie lorsque l'option « Valeur du "
+"filtre requise » est cochée"
 
 msgid ""
-"Default value set automatically when \"Select first filter value by default\" is "
-"checked"
+"Default value set automatically when \"Select first filter value by "
+"default\" is checked"
 msgstr ""
-"La valeur par défaut est définie automatiquement lorsque l'option « Sélectionner "
-"la première valeur de filtre par défaut » est cochée"
+"La valeur par défaut est définie automatiquement lorsque l'option « "
+"Sélectionner la première valeur de filtre par défaut » est cochée"
 
 msgid ""
-"Define a function that receives the input and outputs the content for a tooltip"
+"Define a function that receives the input and outputs the content for a "
+"tooltip"
 msgstr ""
-"Définissez une fonction qui reçoit l'entrée et produit le contenu d'une info-bulle"
+"Définissez une fonction qui reçoit l'entrée et produit le contenu d'une "
+"info-bulle"
 
 msgid "Define a function that returns a URL to navigate to when user clicks"
 msgstr ""
-"Définissez une fonction qui renvoie une URL vers laquelle naviguer lorsque "
-"l'utilisateur·rice clique"
+"Définissez une fonction qui renvoie une URL vers laquelle naviguer "
+"lorsque l'utilisateur·rice clique"
 
 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."
+"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 ""
-"Définissez une fonction javascript qui reçoit le tableau de données utilisé dans "
-"la visualisation et qui doit renvoyer une version modifiée de ce tableau. Cette "
-"fonction peut être utilisée pour modifier les propriétés des données, filtrer ou "
-"enrichir le tableau."
+"Définissez une fonction javascript qui reçoit le tableau de données "
+"utilisé dans la visualisation et qui doit renvoyer une version modifiée "
+"de ce tableau. Cette fonction peut être utilisée pour modifier les "
+"propriétés des données, filtrer ou enrichir le tableau."
 
 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."
+"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 "Define delivery schedule, timezone, and frequency settings."
@@ -4145,50 +4272,49 @@ msgid "Define the database, SQL query, and triggering conditions for alert."
 msgstr ""
 
 msgid ""
-"Defines a rolling window function to apply, works along with the [Periods] text box"
+"Defines a rolling window function to apply, works along with the "
+"[Periods] text box"
 msgstr ""
-"Définit une fonction de fenêtre roulante à appliquer, fonctionne avec la zone de "
-"texte [Périodes]"
-
-msgid "Defines how each series is broken down"
-msgstr "Définit la manière dont chaque série est décomposée"
+"Définit une fonction de fenêtre roulante à appliquer, fonctionne avec la "
+"zone de texte [Périodes]"
 
 msgid "Defines the grid size in pixels"
 msgstr "Définit la taille de la grille en pixels"
 
 #, fuzzy
 msgid ""
-"Defines the grouping of entities. Each series is represented by a specific color "
-"in the chart."
+"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"
+"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"
 
 msgid ""
-"Defines the grouping of entities. Each series is shown as a specific color on the "
-"chart and has a legend toggle"
+"Defines the grouping of entities. Each series is shown as a specific "
+"color on the chart and has a legend toggle"
 msgstr ""
-"Définit le regroupement des entités. Chaque série est affichée dans une couleur "
-"spécifique sur le graphique et dispose d'une légende à bascule"
+"Définit le regroupement des entités. Chaque série est affichée dans une "
+"couleur spécifique sur le graphique et dispose d'une légende à bascule"
 
 msgid ""
-"Defines the size of the rolling window function, relative to the time granularity "
-"selected"
+"Defines the size of the rolling window function, relative to the time "
+"granularity selected"
 msgstr ""
-"Définit la taille de la fonction de fenêtre roulante, par rapport à la granularité "
-"temporelle sélectionnée"
+"Définit la taille de la fonction de fenêtre roulante, par rapport à la "
+"granularité temporelle sélectionnée"
 
 msgid ""
-"Defines the value that determines the boundary between different regions or levels "
-"in the data "
+"Defines the value that determines the boundary between different regions "
+"or levels in the data "
 msgstr ""
 
 msgid ""
-"Defines whether the step should appear at the beginning, middle or end between two "
-"data points"
+"Defines whether the step should appear at the beginning, middle or end "
+"between two data points"
 msgstr ""
-"Définit si le pas doit apparaître au début, au milieu ou à la fin entre deux "
-"points de données"
+"Définit si le pas doit apparaître au début, au milieu ou à la fin entre "
+"deux points de données"
 
 msgid "Delete"
 msgstr "Supprimer"
@@ -4215,9 +4341,17 @@ msgstr "Supprimer la requête?"
 msgid "Delete Report?"
 msgstr "Supprimer le rapport?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "supprimer"
+
 msgid "Delete Template?"
 msgstr "Supprimer template?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Supprimer la requête?"
+
 msgid "Delete all Really?"
 msgstr "Vraiment tout effacer?"
 
@@ -4236,12 +4370,20 @@ msgstr "Supprimer le rapport par courriel"
 msgid "Delete query"
 msgstr "Supprimer la requête"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "supprimer"
+
 msgid "Delete template"
 msgstr "Supprimer template"
 
 msgid "Delete this container and save to remove this message."
 msgstr "Supprimez ce conteneur et sauvegardez pour supprimer ce message."
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Supprimer la requête"
+
 #, fuzzy
 msgid "Deleted"
 msgstr "Supprimé"
@@ -4304,16 +4446,33 @@ msgstr[1] "%(num)d requêtes sauvegardées supprimées"
 msgid "Deleted %s"
 msgstr "%s supprimé"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "%s supprimé"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "%s supprimé"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "%s supprimé"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "%s supprimé"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "%s supprimé"
 
+#, fuzzy
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse this "
-"action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
-"La suppression d’un onglet supprimera tout le contenu qu’il contient. Vous pouvez "
-"toujours annuler cette action avec le"
+"La suppression d’un onglet supprimera tout le contenu qu’il contient. "
+"Vous pouvez toujours annuler cette action avec le"
 
 msgid "Delimited long & lat single column"
 msgstr "Colonne unique délimitée en long et en lat"
@@ -4324,9 +4483,6 @@ msgstr "Délimiteur"
 msgid "Delivery method"
 msgstr "Méthode de livraison"
 
-msgid "Demographics"
-msgstr "Données démographiques"
-
 #, fuzzy
 msgid "Density"
 msgstr "Densité"
@@ -4334,10 +4490,6 @@ msgstr "Densité"
 msgid "Dependent on"
 msgstr "Dépend de"
 
-#, fuzzy
-msgid "Deprecated"
-msgstr "Déclassé"
-
 msgid "Description"
 msgstr "Description"
 
@@ -4364,10 +4516,11 @@ msgid "Determines how whiskers and outliers are calculated."
 msgstr "Détermine le mode de calcul des moustaches et des valeurs aberrantes."
 
 msgid ""
-"Determines whether or not this dashboard is visible in the list of all dashboards"
+"Determines whether or not this dashboard is visible in the list of all "
+"dashboards"
 msgstr ""
-"Détermine si ce tableau de bord est visible ou non dans la liste de tous les "
-"tableaux de bord"
+"Détermine si ce tableau de bord est visible ou non dans la liste de tous "
+"les tableaux de bord"
 
 #, fuzzy
 msgid "Diamond"
@@ -4399,9 +4552,9 @@ msgid "Dimensions"
 msgstr "Dimensions"
 
 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."
+"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 "Directed Force Layout"
@@ -4415,12 +4568,14 @@ msgid "Disable SQL Lab data preview queries"
 msgstr "Désactiver les requêtes de prévisualisation des données de SQL Lab"
 
 msgid ""
-"Disable data preview when fetching table metadata in SQL Lab.  Useful to avoid "
-"browser performance issues when using  databases with very wide tables."
+"Disable data preview when fetching table metadata in SQL Lab.  Useful to "
+"avoid browser performance issues when using  databases with very wide "
+"tables."
 msgstr ""
-"Désactiver la prévisualisation des données lorsque vous récupérez les métadonnées "
-"des tableaux dans SQL Lab. Utile pour éviter les problèmes de performance du "
-"navigateur lors de l'utilisation de bases de données avec des tables très larges."
+"Désactiver la prévisualisation des données lorsque vous récupérez les "
+"métadonnées des tableaux dans SQL Lab. Utile pour éviter les problèmes de"
+" performance du navigateur lors de l'utilisation de bases de données avec"
+" des tables très larges."
 
 #, fuzzy
 msgid "Disable drill to detail"
@@ -4441,10 +4596,6 @@ msgstr "Aucun échantillon n'a été renvoyé pour cet ensemble de données"
 msgid "Discard"
 msgstr "Rejeter"
 
-#, fuzzy
-msgid "Display"
-msgstr "Nom affiché"
-
 msgid "Display Name"
 msgstr "Nom d'affichage"
 
@@ -4452,25 +4603,34 @@ msgstr "Nom d'affichage"
 msgid "Display all"
 msgstr "Nom d'affichage"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "Afficher le total au niveau de la colonne"
+
 msgid "Display column level subtotal"
 msgstr ""
 
 msgid "Display column level total"
 msgstr "Afficher le total au niveau de la colonne"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Afficher le total au niveau de la colonne"
+
 msgid "Display configuration"
 msgstr "Configuration d'affichage"
 
 msgid ""
-"Display metrics side by side within each column, as opposed to each column being "
-"displayed side by side for each metric."
+"Display metrics side by side within each column, as opposed to each "
+"column being displayed side by side for each metric."
 msgstr ""
-"Affichez les mesures côte à côte dans chaque colonne, au lieu d'afficher chaque "
-"colonne côte à côte pour chaque mesure."
+"Affichez les mesures côte à côte dans chaque colonne, au lieu d'afficher "
+"chaque colonne côte à côte pour chaque mesure."
 
 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."
+"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 "Display row level subtotal"
@@ -4480,19 +4640,20 @@ msgid "Display row level total"
 msgstr "Afficher le total au niveau de la ligne"
 
 #, fuzzy
-msgid "Display settings"
-msgstr "Paramètres d'affichage"
+msgid "Display type icon"
+msgstr "icône de type booléen"
 
 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."
+"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 ""
-"Affiche les connexions entre les entités dans une structure graphique. Utile pour "
-"cartographier les relations et montrer quels nœuds sont importants dans un réseau. "
-"Les graphiques peuvent être configurés pour être dirigés par la force ou circuler. "
-"Si vos données ont une composante géospatiale, essayez le graphique Arc de deck.gl."
+"Affiche les connexions entre les entités dans une structure graphique. "
+"Utile pour cartographier les relations et montrer quels nœuds sont "
+"importants dans un réseau. Les graphiques peuvent être configurés pour "
+"être dirigés par la force ou circuler. Si vos données ont une composante "
+"géospatiale, essayez le graphique Arc de deck.gl."
 
 #, fuzzy
 msgid "Distribute across"
@@ -4502,9 +4663,6 @@ msgstr "Distribuer à travers"
 msgid "Distribution"
 msgstr "Distribution"
 
-msgid "Distribution - Bar Chart"
-msgstr "Distibution – Diagramme en barres"
-
 msgid "Divider"
 msgstr "Diviseur"
 
@@ -4535,9 +4693,18 @@ msgstr "Télécharger comme image"
 msgid "Download as image"
 msgstr "Télécharger comme image"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "Télécharger en CSV"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "VERSION PRÉLIMINAIRE"
 
@@ -4550,22 +4717,24 @@ msgstr "Glissez-déposer des composants dans cet onglet"
 
 msgid "Draw a marker on data points. Only applicable for line types."
 msgstr ""
-"Tracer un marqueur sur les points de données. Ne s’applique qu’aux types de ligne."
+"Tracer un marqueur sur les points de données. Ne s’applique qu’aux types "
+"de ligne."
 
 msgid "Draw area under curves. Only applicable for line types."
 msgstr "Tracer une zone sous les courbes. Ne s’applique qu’aux types de ligne."
 
 msgid "Draw line from Pie to label when labels outside?"
 msgstr ""
-"Tracer une ligne entre le diagramme circulaire et l'étiquette lorsque les "
-"étiquettes sont à l'extérieur?"
+"Tracer une ligne entre le diagramme circulaire et l'étiquette lorsque les"
+" étiquettes sont à l'extérieur?"
 
 msgid "Draw split lines for minor axis ticks"
 msgstr "Tracer des lignes de séparation pour les points de repère de l'axe mineur"
 
 msgid "Draw split lines for minor y-axis ticks"
 msgstr ""
-"Tracer des lignes séparées pour les points de repère de l’axe des ordonnées mineur"
+"Tracer des lignes séparées pour les points de repère de l’axe des "
+"ordonnées mineur"
 
 msgid "Drill by"
 msgstr "Explorer par"
@@ -4588,18 +4757,19 @@ msgstr "Détail Explorer par"
 
 msgid "Drill to detail by value is not yet supported for this chart type."
 msgstr ""
-"La valeur Explorer par n'est pas encore prise en charge pour ce type de graphique."
+"La valeur Explorer par n'est pas encore prise en charge pour ce type de "
+"graphique."
 
 msgid ""
-"Drill to detail is disabled because this chart does not group data by dimension "
-"value."
+"Drill to detail is disabled because this chart does not group data by "
+"dimension value."
 msgstr ""
-"L'option Explorer par est désactivée car ce graphique ne regroupe pas les données "
-"par valeur de dimension."
+"L'option Explorer par est désactivée car ce graphique ne regroupe pas les"
+" données par valeur de dimension."
 
 msgid ""
-"Drill to detail is disabled for this database. Change the database settings to "
-"enable it."
+"Drill to detail is disabled for this database. Change the database "
+"settings to enable it."
 msgstr ""
 
 #, python-format
@@ -4635,16 +4805,24 @@ msgstr "Nom(s) de colonne dupliqué : %(columns)s"
 
 #, python-format
 msgid ""
-"Duplicate column/metric labels: %(labels)s. Please make sure all columns and "
-"metrics have a unique label."
+"Duplicate column/metric labels: %(labels)s. Please make sure all columns "
+"and metrics have a unique label."
 msgstr ""
-"Étiquettes de colonnes/mesures en double : %(labels)s. Veillez à ce que toutes les "
-"colonnes et tous les indicateurs aient un libellé unique."
+"Étiquettes de colonnes/mesures en double : %(labels)s. Veillez à ce que "
+"toutes les colonnes et tous les indicateurs aient un libellé unique."
 
 #, fuzzy
 msgid "Duplicate dataset"
 msgstr "Éditer l’ensemble de données"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Dupliquer"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "Nom(s) de colonne dupliqué : %(columns)s"
+
 msgid "Duplicate tab"
 msgstr "Dupliquer l'onglet"
 
@@ -4653,63 +4831,41 @@ msgstr "Durée"
 
 #, 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 ""
-"Durée (en secondes) du délai de mise en cache des graphiques de cette base de "
-"données. Un délai de 0 indique que le cache n'expire jamais, et -1 permet de "
-"contourner le cache. Notez que cette valeur correspond par défaut à la durée "
-"globale si elle n'est pas définie."
-
-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 ""
-"Durée (en secondes) du délai de mise en cache des graphiques de cette base de "
-"données. Un délai de 0 indique que le cache n'expire jamais. Notez que ce délai "
-"est remplacé par défaut par le délai global s'il n'est pas défini."
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this defaults to "
-"the datasource/table timeout if undefined."
+"Duration (in seconds) of the caching timeout for charts of this database."
+" A timeout of 0 indicates that the cache never expires, and -1 bypasses "
+"the cache. Note this defaults to the global timeout if undefined."
 msgstr ""
-"Durée (en secondes) du délai de mise en cache pour ce graphique. Notez que ce "
-"délai est par défaut celui de la source de données/table s'il n'est pas défini."
+"Durée (en secondes) du délai de mise en cache des graphiques de cette "
+"base de données. Un délai de 0 indique que le cache n'expire jamais, et "
+"-1 permet de contourner le cache. Notez que cette valeur correspond par "
+"défaut à la durée globale si elle n'est pas définie."
 
 #, 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."
+"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 délai de mise en cache pour ce graphique. Définissez -1 "
-"pour contourner le cache. Notez que cette valeur correspond par défaut au délai "
-"d'attente de l’ensemble de données s'il n'est pas défini."
+"Durée (en secondes) du délai de mise en cache pour ce graphique. "
+"Définissez -1 pour contourner le cache. Notez que cette valeur correspond"
+" par défaut au délai d'attente de l’ensemble de données s'il n'est pas "
+"défini."
 
 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."
+"Duration (in seconds) of the metadata caching timeout for schemas of this"
+" database. If left unset, the cache never expires."
 msgstr ""
-"Durée (en secondes) du délai de mise en cache de ce tableau. Un délai de 0 indique "
-"que le cache n'expire jamais. Notez que cette valeur correspond par défaut au "
-"délai d'attente de la base de données s'il n'est pas défini."
+"Durée (en secondes) du délai de mise en cache des métadonnées pour les "
+"schémas de cette base de données. Si cette valeur n'est pas définie, le "
+"cache n'expire jamais."
 
 msgid ""
-"Duration (in seconds) of the metadata caching timeout for schemas of this "
-"database. If left unset, the cache never expires."
+"Duration (in seconds) of the metadata caching timeout for tables of this "
+"database. If left unset, the cache never expires. "
 msgstr ""
-"Durée (en secondes) du délai de mise en cache des métadonnées pour les schémas de "
-"cette base de données. Si cette valeur n'est pas définie, le cache n'expire jamais."
-
-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 des métadonnées pour les tableaux de "
-"cette base de données. Si cette valeur n'est pas définie, le cache n'expire "
-"jamais. "
+"Durée (en secondes) du délai de mise en cache des métadonnées pour les "
+"tableaux de cette base de données. Si cette valeur n'est pas définie, le "
+"cache n'expire jamais. "
 
 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)"
 msgstr "Durée en ms (1.40008 => 1ms 400µs 80ns)"
@@ -4718,6 +4874,10 @@ msgstr "Durée en ms (1.40008 => 1ms 400µs 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "Durée en ms (100.40008 => 100ms 400µs 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "Durée en ms (66000 => 1m 6s)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "Durée en ms (66000 => 1m 6s)"
 
@@ -4742,10 +4902,6 @@ msgstr "FIN (EXCLUSIF)"
 msgid "ERROR"
 msgstr "ERREUR"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "ERREUR : %s"
-
 msgid "Edge length"
 msgstr "Longueur du bord"
 
@@ -4772,31 +4928,19 @@ msgstr "Modifier le CSS"
 msgid "Edit CSS template properties"
 msgstr "Modifier les propriétés du modèle CSS"
 
-msgid "Edit Chart"
-msgstr "Modifier le graphique"
-
 #, fuzzy
 msgid "Edit Chart Properties"
 msgstr "Modifier les propriétés du graphique"
 
-msgid "Edit Column"
-msgstr "Modifier une colonne"
-
 msgid "Edit Dashboard"
 msgstr "Modifier le tableau de bord"
 
-msgid "Edit Database"
-msgstr "Modifier la base de données"
-
 msgid "Edit Dataset "
 msgstr "Modifier l’ensemble de données "
 
 msgid "Edit Log"
 msgstr "Modifier le journal"
 
-msgid "Edit Metric"
-msgstr "Modifier la mesure"
-
 msgid "Edit Plugin"
 msgstr "Modifier le plugiciel"
 
@@ -4804,17 +4948,22 @@ msgstr "Modifier le plugiciel"
 msgid "Edit Report"
 msgstr "Modifier le rapport par courriel"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "mode edition"
+
 #, fuzzy
 msgid "Edit Rule"
 msgstr "Modifier la règle"
 
-msgid "Edit Table"
-msgstr "Modifier le tableau"
-
 #, fuzzy
 msgid "Edit Tag"
 msgstr "Éditer le log"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Modifier la requête"
+
 msgid "Edit annotation"
 msgstr "Modifier l’annotation"
 
@@ -4852,6 +5001,10 @@ msgstr "Modifier les propriétés"
 msgid "Edit query"
 msgstr "Modifier la requête"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "mode edition"
+
 msgid "Edit template"
 msgstr "Modifier le modèle"
 
@@ -4864,6 +5017,10 @@ msgstr "Modifier le tableau de bord"
 msgid "Edit time range"
 msgstr "Modifier l’intervalle de temps"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Modifier la requête"
+
 msgid "Edited"
 msgstr "Édité"
 
@@ -4879,11 +5036,11 @@ msgstr "Le nom d’utilisateur « %(username)s » ou le mot de passe est incor
 
 #, python-format
 msgid ""
-"Either the username \"%(username)s\", password, or database name \"%(database)s\" "
-"is incorrect."
+"Either the username \"%(username)s\", password, or database name "
+"\"%(database)s\" is incorrect."
 msgstr ""
-"L'utilisateur « %(username)s », le mot de passe, ou le nom de la base de données "
-"« %(database)s » est incorrect."
+"L'utilisateur « %(username)s », le mot de passe, ou le nom de la base de "
+"données « %(database)s » est incorrect."
 
 msgid "Either the username or the password is wrong."
 msgstr "Le nom d’utilisateur ou le mot de passe est incorrect."
@@ -4892,6 +5049,14 @@ msgstr "Le nom d’utilisateur ou le mot de passe est incorrect."
 msgid "Elevation"
 msgstr "Élévation"
 
+#, fuzzy
+msgid "Email"
+msgstr "Totaux"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "Une valeur est obligatoire"
+
 msgid "Email reports active"
 msgstr "Rapports par courriel actifs"
 
@@ -4910,6 +5075,10 @@ msgstr "Code intégré"
 msgid "Embed dashboard"
 msgstr "Tableau de bord intégré"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "Le tableau de bord n'a pas pu être supprimé."
+
 msgid "Embedding deactivated."
 msgstr "L’intégration est désactivée."
 
@@ -4920,9 +5089,6 @@ msgstr "Émettre des événements de filtrage"
 msgid "Emphasis"
 msgstr "Mettre l’accent sur"
 
-msgid "Employment and education"
-msgstr "Emploi et éducation"
-
 msgid "Empty circle"
 msgstr "Cercle vide"
 
@@ -4946,11 +5112,8 @@ msgstr "Rangée vide"
 #, 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"
-
-msgid "Enable Filter Select"
-msgstr "Activer le filtre de sélection"
+"Activez l'option « Autoriser le chargement de données » dans les "
+"paramètres de la base de données"
 
 #, fuzzy
 msgid "Enable cross-filtering"
@@ -4984,11 +5147,12 @@ msgid "Enable server side pagination of results (experimental feature)"
 msgstr "Activer la pagination des résultats côté serveur (fonction expérimentale)"
 
 msgid ""
-"Encountered invalid NULL spatial entry,                                        "
-"please consider filtering those out"
+"Encountered invalid NULL spatial entry,"
+"                                        please consider filtering those "
+"out"
 msgstr ""
-"Une entrée spatiale NULL invalide a été "
-"rencontrée,                                         veuillez envisager de filtrer "
+"Une entrée spatiale NULL invalide a été rencontrée,"
+"                                         veuillez envisager de filtrer "
 "ces entrées"
 
 msgid "End"
@@ -5024,11 +5188,11 @@ msgid "Engine Parameters"
 msgstr "Paramètres de moteur"
 
 msgid ""
-"Engine spec \"InvalidEngine\" does not support being configured via individual "
-"parameters."
+"Engine spec \"InvalidEngine\" does not support being configured via "
+"individual parameters."
 msgstr ""
-"La spécification de moteur « InvalidEngine » ne permet pas d'être configurée via "
-"des paramètres individuels."
+"La spécification de moteur « InvalidEngine » ne permet pas d'être "
+"configurée via des paramètres individuels."
 
 msgid "Enter CA_BUNDLE"
 msgstr "Saisir CA_BUNDLE"
@@ -5061,12 +5225,25 @@ msgstr "Nom du rapport"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "Saisir les informations d’%(dbModelName)sidentification requises"
 
-msgid "Entity"
-msgstr "Entité"
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Nom de l'alerte"
 
 #, fuzzy
-msgid "Entity ID"
-msgstr "Identifiant d’entité"
+msgid "Enter the user's last name"
+msgstr "Nom de l'alerte"
+
+msgid "Enter the user's username"
+msgstr ""
+
+msgid "Entity"
+msgstr "Entité"
 
 msgid "Equal Date Sizes"
 msgstr "Taille des dates égales"
@@ -5081,8 +5258,16 @@ msgstr "Erreur"
 #, fuzzy
 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"
+"Désolé, une erreur s'est produite lors de la récupération des "
+"informations de cette base de données : %s"
+
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Une erreur s'est produite durant la récupération des données : %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Une erreur s'est produite durant la sauvegarde du jeu de données"
 
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
@@ -5099,17 +5284,21 @@ msgstr "Erreur d'expression jinja dans la clause WHERE : %(msg)s"
 #, 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"
+"Erreur dans l'expression jinja dans la réupération du prédicat des "
+"valeurs : %(msg)s"
 
 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."
+"Erreur au chargement des source de données du graphique Les filtres "
+"peuvent mal fonctionner."
 
 msgid "Error message"
 msgstr "Message d'erreur"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "erreur sombre"
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "Une erreur s'est produite durant la sauvegarde du jeu de données"
@@ -5126,6 +5315,22 @@ msgstr "Téléverser un fichier Excel"
 msgid "Error saving dataset"
 msgstr "Une erreur s'est produite durant la sauvegarde du jeu de données"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Une erreur s'est produite durant la sauvegarde du jeu de données"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Une erreur s'est produite durant la récupération des graphiques"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Une erreur s'est produite durant la récupération des graphiques"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Une erreur s'est produite durant la récupération des graphiques"
+
 #, fuzzy
 msgid "Error while fetching charts"
 msgstr "Une erreur s'est produite durant la récupération des graphiques"
@@ -5134,10 +5339,31 @@ msgstr "Une erreur s'est produite durant la récupération des graphiques"
 msgid "Error while fetching data: %s"
 msgstr "Une erreur s'est produite durant la récupération des données : %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Une erreur s'est produite durant la récupération des graphiques"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Une erreur s'est produite durant la récupération des graphiques"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Une erreur s'est produite durant la récupération des graphiques"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr ""
-"Erreur durant le rendu de la requête de l’ensemble de données virtuel : %(msg)s"
+"Erreur durant le rendu de la requête de l’ensemble de données virtuel : "
+"%(msg)s"
+
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Une erreur s'est produite durant la récupération des graphiques"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Une erreur s'est produite durant la récupération des graphiques"
 
 #, python-format
 msgid "Error: %(error)s"
@@ -5164,17 +5390,6 @@ msgstr "Estimer le coût avant d'exécuter une requête"
 msgid "Event"
 msgstr "Événement"
 
-#, fuzzy
-msgid "Event Flow"
-msgstr "Flux d'événements"
-
-#, fuzzy
-msgid "Event Names"
-msgstr "Noms des événements"
-
-msgid "Event definition"
-msgstr "Définition de l’événement"
-
 msgid "Event flow"
 msgstr "Flux d'événements"
 
@@ -5197,13 +5412,13 @@ msgstr "Exemple"
 msgid "Examples"
 msgstr "Exemples"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "Téléversement d’un CSV"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "Téléversement d’un CSV"
+
 #, fuzzy
 msgid "Exclude selected values"
 msgstr "Exclure les valeurs sélectionnées"
@@ -5253,12 +5468,13 @@ msgstr "Étendre la barre d'outils"
 
 msgid ""
 "Expects a formula with depending time parameter 'x'\n"
-"        in milliseconds since epoch. mathjs is used to evaluate the formulas.\n"
+"        in milliseconds since epoch. mathjs is used to evaluate the "
+"formulas.\n"
 "        Example: '2x+5'"
 msgstr ""
-"Attend une formule avec un paramètre de temps dépendant « x » en millisecondes "
-"depuis l'époque. mathjs est utilisé pour évaluer les formules.        Exemple : "
-"« 2x+5 »"
+"Attend une formule avec un paramètre de temps dépendant « x » en "
+"millisecondes depuis l'époque. mathjs est utilisé pour évaluer les "
+"formules.        Exemple : « 2x+5 »"
 
 msgid "Experimental"
 msgstr "Expérimental"
@@ -5298,12 +5514,6 @@ msgstr "Exporter en PDF"
 msgid "Export to Pivoted .CSV"
 msgstr "Exporter vers .CSV pivoté"
 
-msgid "Export to YAML"
-msgstr "Exporter vers YAML"
-
-msgid "Export to YAML?"
-msgstr "Exporter vers YAML?"
-
 #, fuzzy
 msgid "Export to full .CSV"
 msgstr "Exporter en .CSV intégral"
@@ -5324,11 +5534,9 @@ msgstr "Exposer la base de données dans SQL Lab"
 msgid "Expose in SQL Lab"
 msgstr "Exposer dans SQL Lab"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Exposer cette base de données dans SQL Lab"
-
-msgid "Expression"
-msgstr "Expression"
+#, fuzzy
+msgid "Extent"
+msgstr "récent"
 
 msgid "Extra"
 msgstr "Extra"
@@ -5344,31 +5552,27 @@ msgid "Extra data for JS"
 msgstr "Données supplémentaires pour JS"
 
 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.\" }`."
+"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ées supplémentaires pour spécifier les métadonnées du tableau. Actuellement, "
-"les métadonnées sont prises en charge dans le format suivant : "
-"`{ « certification »: { « certified_by »: « Data Platform Team », « details »: "
-"« Ce tableau est la source de la vérité. » }, « warning_markdown »: « Ceci est un "
-"avertissement. » }`."
-
-#, 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"
+"Données supplémentaires pour spécifier les métadonnées du tableau. "
+"Actuellement, les métadonnées sont prises en charge dans le format "
+"suivant : `{ « certification »: { « certified_by »: « Data Platform Team "
+"», « details »: « Ce tableau est la source de la vérité. » }, « "
+"warning_markdown »: « Ceci est un avertissement. » }`."
 
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "Paramètres supplémentaires à utiliser dans les modèles de requêtes jinja"
 
 #, fuzzy
 msgid ""
-"Extra parameters that any plugins can choose to set for use in Jinja templated "
-"queries"
+"Extra parameters that any plugins can choose to set for use in Jinja "
+"templated queries"
 msgstr ""
-"Paramètres supplémentaires que les plugiciels peuvent choisir de définir pour être "
-"utilisés dans les requêtes modèles de Jinja."
+"Paramètres supplémentaires que les plugiciels peuvent choisir de définir "
+"pour être utilisés dans les requêtes modèles de Jinja."
 
 #, fuzzy
 msgid "Extra url parameters for use in Jinja templated queries"
@@ -5381,6 +5585,10 @@ msgstr "Extrudé"
 msgid "FEB"
 msgstr "FEB"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Modifier l’ensemble de données"
+
 msgid "FRI"
 msgstr "FRI"
 
@@ -5391,16 +5599,15 @@ msgstr "Facteur"
 msgid "Factor to multiply the metric by"
 msgstr "Facteur permettant de multiplier la mesure par"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "Echoué"
 
 msgid "Failed at retrieving results"
 msgstr "Échec lors de la récupération des résultats"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "Échec de l'arrêt de la requête. %s"
-
 msgid "Failed to create report"
 msgstr "Échec de la création du rapport"
 
@@ -5431,6 +5638,10 @@ msgstr "Échec de l'enregistrement de la délimitation des filtres croisés"
 msgid "Failed to start remote query on a worker."
 msgstr "Échec du lancement d'une requête à distance sur un travailleur."
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "Échec de l'arrêt de la requête. %s"
+
 #, fuzzy
 msgid "Failed to tag items"
 msgstr "Tout Dé-Sélectionner"
@@ -5455,9 +5666,6 @@ msgstr ""
 msgid "February"
 msgstr "Février"
 
-msgid "Fetch Values Predicate"
-msgstr "Prédicat de recherche de valeurs"
-
 msgid "Fetch data preview"
 msgstr "Récupérer l'aperçu des données"
 
@@ -5483,16 +5691,13 @@ msgstr "Le champ est requis"
 msgid "File"
 msgstr "Fichier"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "Paramètres du filtre"
-
 #, fuzzy
 msgid "File extension is not allowed."
 msgstr "L’URI des données n’est pas autorisé."
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "Paramètres du filtre"
 
 #, fuzzy
 msgid "File upload"
@@ -5504,7 +5709,8 @@ msgstr "Couleur de remplissage"
 
 msgid "Fill all required fields to enable \"Default Value\""
 msgstr ""
-"Remplissez tous les champs obligatoires pour activer la « valeur par défaut »"
+"Remplissez tous les champs obligatoires pour activer la « valeur par "
+"défaut »"
 
 #, fuzzy
 msgid "Fill method"
@@ -5545,8 +5751,8 @@ msgstr "Nom du filtre"
 
 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."
+"Le filtre n'affiche que les valeurs pertinentes après les sélections "
+"effectuées dans d'autres filtres."
 
 msgid "Filter results"
 msgstr "Filtrer les résultats"
@@ -5566,9 +5772,6 @@ msgstr "La liste de valeurs du filtre ne peut pas être vide"
 msgid "Filter your charts"
 msgstr "Filtrer vos graphiques"
 
-msgid "Filterable"
-msgstr "Filtrable"
-
 msgid "Filters"
 msgstr "Filtres"
 
@@ -5580,31 +5783,44 @@ msgstr "Filtres par mesure"
 
 msgid "Filters for comparison must have a value"
 msgstr ""
-"Représente les mesures individuelles pour chaque ligne de données verticalement et "
-"les relie par une ligne. Ce graphique est utile pour comparer plusieurs mesures "
-"sur l'ensemble des échantillons ou des lignes de données"
+"Représente les mesures individuelles pour chaque ligne de données "
+"verticalement et les relie par une ligne. Ce graphique est utile pour "
+"comparer plusieurs mesures sur l'ensemble des échantillons ou des lignes "
+"de données"
+
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "« row_limit » doit être plus grand ou égal à 0"
+
+msgid "Filters for values less than or equal."
+msgstr ""
 
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "Filtres hors de portée (%d)"
 
 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')."
+"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 OR, alors "
-"que des filtres de groupes différents vont se combiner avec des AND. 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 »)."
+"Les filtres d'un groupe qui ont la même clé vont se combiner avec des OR,"
+" alors que des filtres de groupes différents vont se combiner avec des "
+"AND. 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 »)."
 
 #, fuzzy
 msgid "Find"
@@ -5616,12 +5832,21 @@ msgstr "Terminer"
 msgid "First"
 msgstr "Premier"
 
+#, fuzzy
+msgid "First name"
+msgstr "Nom du graphique"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "Le nom est obligatoire"
+
 msgid ""
-"Fix the trend line to the full time range specified in case filtered results do "
-"not include the start or end dates"
+"Fix the trend line to the full time range specified in case filtered "
+"results do not include the start or end dates"
 msgstr ""
-"Corrigez la ligne de tendance à la plage de temps complète spécifiée au cas où les "
-"résultats filtrés n’incluraient pas les dates de début ou de fin"
+"Corrigez la ligne de tendance à la plage de temps complète spécifiée au "
+"cas où les résultats filtrés n’incluraient pas les dates de début ou de "
+"fin"
 
 #, fuzzy
 msgid "Fix to selected Time Range"
@@ -5649,8 +5874,8 @@ msgstr "Taille de la police"
 
 msgid "Font size for axis labels, detail value and other text elements"
 msgstr ""
-"Taille de la police pour les étiquettes d’axe, la valeur de détail et d’autres "
-"éléments de texte"
+"Taille de la police pour les étiquettes d’axe, la valeur de détail et "
+"d’autres éléments de texte"
 
 msgid "Font size for the biggest value in the list"
 msgstr "Taille de police pour la plus grande valeur de la liste"
@@ -5659,46 +5884,47 @@ msgid "Font size for the smallest value in the list"
 msgstr "Taille de police pour la plus petite valeur de la liste"
 
 msgid ""
-"For Bigquery, Presto and Postgres, shows a button to compute cost before running a "
-"query."
+"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."
+"Pour Presto et Postgres, affiche un bouton pour calculer le coût avant "
+"d'exécuter une requête."
 
 msgid ""
-"For Trino, describe full schemas of nested ROW types, expanding them with dotted "
-"paths"
+"For Trino, describe full schemas of nested ROW types, expanding them with"
+" dotted paths"
 msgstr ""
 
 msgid "For further instructions, consult the"
 msgstr "Pour obtenir des instructions supplémentaires, consultez"
 
 msgid ""
-"For more information about objects are in context in the scope of this function, "
-"refer to the"
+"For more information about objects are in context in the scope of this "
+"function, refer to the"
 msgstr ""
-"Pour obtenir de plus amples renseignements sur les objets dans le contexte de la "
-"portée de cette fonction, reportez-vous au"
+"Pour obtenir de plus amples renseignements sur les objets dans le "
+"contexte de la portée de cette fonction, reportez-vous au"
 
 msgid ""
-"For regular filters, these are the roles this filter will be applied to. For base "
-"filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if "
-"admin should see all data."
+"For regular filters, these are the roles this filter will be applied to. "
+"For base filters, these are the roles that the filter DOES NOT apply to, "
+"e.g. Admin if admin should see all data."
 msgstr ""
-"Pour les filtres réguliers, il s'agit des rôles auxquels le filtre s'applique. "
-"Pour les filtres de base, il s'agit des rôles auxquels le filtre ne s'applique "
-"PAS, par exemple Admin si l'administrateur doit voir toutes les données."
+"Pour les filtres réguliers, il s'agit des rôles auxquels le filtre "
+"s'applique. Pour les filtres de base, il s'agit des rôles auxquels le "
+"filtre ne s'applique PAS, par exemple Admin si l'administrateur doit voir"
+" toutes les données."
 
 #, fuzzy
 msgid "Force"
 msgstr "Force"
 
 msgid ""
-"Force all tables and views to be created in this schema when clicking CTAS or CVAS "
-"in SQL Lab."
+"Force all tables and views to be created in this schema when clicking "
+"CTAS or CVAS in SQL Lab."
 msgstr ""
-"Forcez la création de toutes les tables et vues dans ce schéma lorsque vous "
-"cliquez sur CTAS ou CVAS dans SQL Lab."
+"Forcez la création de toutes les tables et vues dans ce schéma lorsque "
+"vous cliquez sur CTAS ou CVAS dans SQL Lab."
 
 #, fuzzy
 msgid "Force categorical"
@@ -5711,6 +5937,10 @@ msgstr "Forcer le format de la date"
 msgid "Force refresh"
 msgstr "Forcer l'actualisation"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Forcer l'actualisation de la liste des schémas"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "Forcer l'actualisation de la liste des tableaux"
@@ -5734,21 +5964,21 @@ msgstr "Vert forêt"
 
 msgid "Form data not found in cache, reverting to chart metadata."
 msgstr ""
-"Les données du formulaire n'ont pas été trouvées dans le cache, les métadonnées du "
-"graphique ont été rétablies."
+"Les données du formulaire n'ont pas été trouvées dans le cache, les "
+"métadonnées du graphique ont été rétablies."
 
 msgid "Form data not found in cache, reverting to dataset metadata."
 msgstr ""
-"Les données du formulaire n'ont pas été trouvées dans l’ensemble de données, les "
-"métadonnées du graphique ont été rétablies."
+"Les données du formulaire n'ont pas été trouvées dans l’ensemble de "
+"données, les métadonnées du graphique ont été rétablies."
 
 #, fuzzy
 msgid "Format SQL"
 msgstr "Format D3"
 
 msgid ""
-"Format data labels. Use variables: {name}, {value}, {percent}. \\n represents a "
-"new line. ECharts compatibility:\n"
+"Format data labels. Use variables: {name}, {value}, {percent}. \\n "
+"represents a new line. ECharts compatibility:\n"
 "{a} (series), {b} (name), {c} (value), {d} (percentage)"
 msgstr ""
 
@@ -5848,6 +6078,10 @@ msgstr "Paramètres GeoJson"
 msgid "Geohash"
 msgstr "Geohash"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Colonne vide"
+
 msgid "Get the last date by the date unit."
 msgstr "Récupérer la dernière date par l'unité de date."
 
@@ -5859,7 +6093,8 @@ msgstr ""
 
 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"
+"Allez dans l'edition pour configurer le tableau de bord et ajouter des "
+"graphiques"
 
 msgid "Gold"
 msgstr "Or"
@@ -5912,9 +6147,6 @@ msgstr "Clé de groupe"
 msgid "Group by"
 msgstr "Grouper par"
 
-msgid "Groupable"
-msgstr "Groupable"
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5933,14 +6165,6 @@ msgstr "Modèle en guidon"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-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 valeurs dures appliquées pour le codage des couleurs. N'est pertinent "
-"et appliqué que lorsque la normalisation est appliquée à l'ensemble de la carte "
-"thermique."
-
 #, fuzzy
 msgid "Has created by"
 msgstr "a été créé"
@@ -5948,9 +6172,6 @@ msgstr "a été créé"
 msgid "Header"
 msgstr "En-tête"
 
-msgid "Header Row"
-msgstr "Rangée d'en-tête"
-
 #, fuzzy
 msgid "Header row"
 msgstr "Rangée d'en-tête"
@@ -5958,19 +6179,16 @@ msgstr "Rangée d'en-tête"
 msgid "Heatmap"
 msgstr "Carte thermique"
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "Enregistrer un graphique"
-
-msgid "Heatmap Options"
-msgstr "Options de carte thermique"
-
 msgid "Height"
 msgstr "Hauteur"
 
 msgid "Height of the sparkline"
 msgstr "Hauteur de la ligne d'étincelle"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Colonne de temps"
+
 #, fuzzy
 msgid "Hide Line"
 msgstr "Masquer la ligne"
@@ -6000,10 +6218,6 @@ msgstr "Hiérarchie"
 msgid "Histogram"
 msgstr "Histogramme"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "Enregistrer un graphique"
-
 msgid "Home"
 msgstr "Accueil"
 
@@ -6042,7 +6256,8 @@ msgstr "Heures de décalage"
 
 msgid "How do you want to enter service account credentials?"
 msgstr ""
-"Comment voulez-vous entrer les informations de connexion du compte de service?"
+"Comment voulez-vous entrer les informations de connexion du compte de "
+"service?"
 
 msgid "How many buckets should the data be grouped in."
 msgstr "Combien de groupes de données doivent être regroupés."
@@ -6051,14 +6266,15 @@ msgid "How many periods into the future do we want to predict"
 msgstr "Combien de périodes voulons-nous prévoir"
 
 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."
+"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 les décalages temporels : sous forme de lignes individuelles; "
-"sous forme de différence entre la série temporelle principale et chaque décalage "
-"temporel; sous forme de pourcentage de variation; ou sous forme de rapport entre "
-"les séries et les décalages temporels."
+"Comment afficher les décalages temporels : sous forme de lignes "
+"individuelles; sous forme de différence entre la série temporelle "
+"principale et chaque décalage temporel; sous forme de pourcentage de "
+"variation; ou sous forme de rapport entre les séries et les décalages "
+"temporels."
 
 msgid "Huge"
 msgstr "Énorme"
@@ -6077,51 +6293,41 @@ msgid "Id of root node of the tree."
 msgstr "ID du nœud racine de l'arborescence."
 
 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."
+"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 ""
-"Dans le cas de Presto ou Trino, toutes les requêtes dans SQL Lab seront exécutées "
-"en tant qu'utilisateur·rice connecté·e qui doit avoir la permission de les "
-"exécuter. Si Hive et hive.server2.enable.doAs sont activés, les requêtes seront "
-"exécutées en tant que compte de service, mais en usurpant l'identité de "
-"l'utilisateur·rice connecté·e via la propriété hive.server2.proxy.user."
-
-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.<br/>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 ""
-"Dans le cas de Presto, toutes les requêtes dans SQL Lab seront exécutées en tant "
-"qu'utilisateur·rice connecté·e qui doit avoir la permission de les exécuter.<br/"
-">Si Hive et hive.server2.enable.doAs sont activés, les requêtes seront exécutées "
-"en tant que compte de service, mais en usurpant l'identité de l'utilisateur·rice "
-"connecté·e via la propriété hive.server2.proxy.user."
-
-#, fuzzy
-msgid "If Table Already Exists"
-msgstr "Ce tableau de filtre existe déjà"
+"Dans le cas de Presto ou Trino, toutes les requêtes dans SQL Lab seront "
+"exécutées en tant qu'utilisateur·rice connecté·e qui doit avoir la "
+"permission de les exécuter. Si Hive et hive.server2.enable.doAs sont "
+"activés, les requêtes seront exécutées en tant que compte de service, "
+"mais en usurpant l'identité de l'utilisateur·rice connecté·e via la "
+"propriété hive.server2.proxy.user."
 
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr "Si une mesure est définie, le tri sera basé sur sa valeur"
 
 msgid ""
-"If enabled, this control sorts the results/values descending, otherwise it sorts "
-"the results ascending."
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
+msgid ""
+"If enabled, this control sorts the results/values descending, otherwise "
+"it sorts the results ascending."
 msgstr ""
-"Si sélectionné, veuillez indiquer les schémas permis pour le téléversement csv "
-"dans Extra."
+
+#, fuzzy
+msgid "If table already exists"
+msgstr "Cet ensemble de filtre existe déjà"
 
 #, fuzzy
 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."
+"L'exécution de la planification de rapport a échoué à la génération de la"
+" copie d'écran."
 
 msgid "Ignore null locations"
 msgstr "Ignorer les emplacements nuls"
@@ -6137,11 +6343,8 @@ msgstr "Échec du téléchargement de l’image, veuillez actualiser et réessay
 
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr ""
-"Se faire passer pour l'utilisateur·rice connecté·e (Presto, Trino, Drill, Hive, "
-"and GSheets)"
-
-msgid "Impersonate the logged on user"
-msgstr "Se faire passer pour l'utilisateur·rice connecté·e"
+"Se faire passer pour l'utilisateur·rice connecté·e (Presto, Trino, Drill,"
+" Hive, and GSheets)"
 
 msgid "Import"
 msgstr "Importer"
@@ -6153,9 +6356,6 @@ msgstr "Importer %s"
 msgid "Import Dashboard(s)"
 msgstr "Exporter le ou les tableaux de bords"
 
-msgid "Import a table definition"
-msgstr "Importer la définition d'un tableau"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "L'import du graphique a échoué pour une raison inconnue"
 
@@ -6187,18 +6387,15 @@ msgstr "Importer des requêtes"
 msgid "Import saved query failed for an unknown reason."
 msgstr "L'import de la requête sauvegardée a échoué pour une raison inconnue."
 
-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 ""
-"Important! Sélectionnez cette option si le tableau n’est pas déjà triée par ID "
-"d’entité, sinon il n’y a aucune garantie que tous les événements pour chaque "
-"entité sont retournés."
-
 #, fuzzy
 msgid "In"
 msgstr "dans"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "Inclure la série"
 
@@ -6224,17 +6421,18 @@ msgstr "Créer"
 msgid "Index"
 msgstr "Index"
 
-msgid "Index Column"
-msgstr "Index de colonne"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "Étiquettes d’intervalle"
+msgid "Index column"
+msgstr "Colonne des lignes"
 
 #, fuzzy
 msgid "Index label"
 msgstr "Étiquettes d’intervalle"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Vue des clefs et index (%s)"
+
 msgid "Info"
 msgstr "Info"
 
@@ -6249,12 +6447,20 @@ msgstr "Rayon intérieur du trou du beigne"
 
 msgid "Input custom width in pixels"
 msgstr ""
-"Visualise les mots dans une colonne qui apparaît le plus souvent. La police plus "
-"grosse correspond à une fréquence plus élevée"
+"Visualise les mots dans une colonne qui apparaît le plus souvent. La "
+"police plus grosse correspond à une fréquence plus élevée"
 
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr ""
-"Le champ d’entrée prend en charge la rotation personnalisée, p. ex., 30 pour 30°"
+"Le champ d’entrée prend en charge la rotation personnalisée, p. ex., 30 "
+"pour 30°"
+
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "Masquer la couche"
+
+msgid "Insert Layer title"
+msgstr ""
 
 #, fuzzy
 msgid "Intensity"
@@ -6269,7 +6475,8 @@ msgstr "Le rayon d’intensité est le rayon auquel le poids est distribué"
 
 msgid "Intensity is the value multiplied by the weight to obtain the final weight"
 msgstr ""
-"L’intensité est la valeur multipliée par le poids pour obtenir le poids final"
+"L’intensité est la valeur multipliée par le poids pour obtenir le poids "
+"final"
 
 #, fuzzy
 msgid "Interval"
@@ -6293,17 +6500,13 @@ msgstr "Première colonne d'intervalle"
 msgid "Intervals"
 msgstr "Intervalles"
 
-#, fuzzy
-msgid "Intesity"
-msgstr "Intensité"
-
 #, fuzzy
 msgid ""
-"Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:"
-"port/database'."
+"Invalid Connection String: Expecting String of the form "
+"'ocient://user:pass@host:port/database'."
 msgstr ""
-"Chaîne de connexion non valide : la chaîne attendue est de la forme « ocient://"
-"user:pass@host:port/database »."
+"Chaîne de connexion non valide : la chaîne attendue est de la forme « "
+"ocient://user:pass@host:port/database »."
 
 msgid "Invalid JSON"
 msgstr "JSON invalide"
@@ -6317,20 +6520,23 @@ msgstr "Certificat invalide"
 
 #, fuzzy
 msgid ""
-"Invalid connection string, a valid string usually follows: backend+driver://user:"
-"password@database-host/database-name"
+"Invalid connection string, a valid string usually follows: "
+"backend+driver://user:password@database-host/database-name"
 msgstr ""
-"Chaine de connexion incorrecte, une chaine correcte s'écrit habituellement : "
-"« backend+driver://user:password@database-host/database-name »"
+"Chaine de connexion incorrecte, une chaine correcte s'écrit "
+"habituellement : « backend+driver://user:password@database-host/database-"
+"name »"
 
 msgid ""
-"Invalid connection string, a valid string usually follows:'DRIVER://USER:"
-"PASSWORD@DB-HOST/DATABASE-NAME'<p>Example:'postgresql://user:password@your-"
-"postgres-db/database'</p>"
+"Invalid connection string, a valid string usually "
+"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-"
+"NAME'<p>Example:'postgresql://user:password@your-postgres-"
+"db/database'</p>"
 msgstr ""
-"Chaine de connexion incorrecte, une chaine correcte s'écrit habituellement : "
-"« DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME »<p>Exemple : « postgresql://user:"
-"password@your-postgres-db/database »</p>"
+"Chaine de connexion incorrecte, une chaine correcte s'écrit "
+"habituellement : « DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME "
+"»<p>Exemple : « postgresql://user:password@your-postgres-db/database "
+"»</p>"
 
 msgid "Invalid cron expression"
 msgstr "Expression CRON invalide"
@@ -6345,6 +6551,9 @@ msgstr "Code de devise invalide dans les métriques sauvegardés"
 msgid "Invalid date/timestamp format"
 msgstr "Format d’horodatage invalide"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "Type d'opération de filtrage invalide : %(op)s"
@@ -6411,6 +6620,10 @@ msgstr "Sélection inverse"
 msgid "Invert current page"
 msgstr "Inverser la page actuelle"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Alerte actives"
+
 #, fuzzy
 msgid "Is certified"
 msgstr "est certifié"
@@ -6460,7 +6673,8 @@ msgstr "Hors ligne"
 #, fuzzy
 msgid "Issue 1000 - The dataset is too large to query."
 msgstr ""
-"Problème 1000 - L'ensemble de données est trop volumineux pour être interrogé."
+"Problème 1000 - L'ensemble de données est trop volumineux pour être "
+"interrogé."
 
 #, fuzzy
 msgid "Issue 1001 - The database is under an unusual load."
@@ -6486,14 +6700,16 @@ msgid "JSON metadata is invalid!"
 msgstr "Les méta-données JSON ne sont pas valides"
 
 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."
+"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 ""
 "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 : normalement utilisée par SQLAlchemy."
+"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 : normalement utilisée par "
+"SQLAlchemy."
 
 msgid "JUL"
 msgstr "JUIL"
@@ -6608,12 +6824,6 @@ msgstr "Grand"
 msgid "Last"
 msgstr "Dernier"
 
-msgid "Last Changed"
-msgstr "Dernière modification"
-
-msgid "Last Modified"
-msgstr "Dernière modification"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "Dernière mise à jour %s"
@@ -6622,6 +6832,10 @@ msgstr "Dernière mise à jour %s"
 msgid "Last Updated %s by %s"
 msgstr "Dernière mise à jour %s par %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Valeur cible"
+
 #, fuzzy, python-format
 msgid "Last available value seen on %s"
 msgstr "Dernière valeur disponible vue sur %s"
@@ -6630,6 +6844,10 @@ msgstr "Dernière valeur disponible vue sur %s"
 msgid "Last day"
 msgstr "dernier jour"
 
+#, fuzzy
+msgid "Last login"
+msgstr "mois dernier"
+
 msgid "Last modified"
 msgstr "Dernière modification"
 
@@ -6637,6 +6855,14 @@ msgstr "Dernière modification"
 msgid "Last month"
 msgstr "mois dernier"
 
+#, fuzzy
+msgid "Last name"
+msgstr "nom de l’ensemble de données"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Le nom est obligatoire"
+
 #, fuzzy
 msgid "Last quarter"
 msgstr "trimestre dernier"
@@ -6652,15 +6878,42 @@ msgstr "semaine dernière"
 msgid "Last year"
 msgstr "an dernier "
 
+#, fuzzy
+msgid "Lat"
+msgstr "plat"
+
 msgid "Latitude"
 msgstr "Latitude"
 
 msgid "Latitude of default viewport"
 msgstr "Latitude de la fenêtre d'affichage par défaut"
 
+#, fuzzy
+msgid "Layer"
+msgstr "année"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Nom de l'alerte"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "Configuration de filtre"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Titre du graphique"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Type de filtre"
+
+#, fuzzy
+msgid "Layers"
+msgstr "alertes"
+
 msgid "Layout"
 msgstr "Disposition"
 
@@ -6673,13 +6926,6 @@ msgstr "Type de disposition du graphique"
 msgid "Layout type of tree"
 msgstr "Type de disposition de l’arbre"
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be initially "
-"hidden in the visualization"
-msgstr ""
-"Les nœuds feuille qui représentent moins que ce nombre d’événements seront "
-"initialement masqués dans la visualisation"
-
 msgid "Least recently modified"
 msgstr "Dernière modification en date"
 
@@ -6691,7 +6937,9 @@ msgid "Left Margin"
 msgstr "Marge gauche"
 
 msgid "Left margin, in pixels, allowing for more room for axis labels"
-msgstr "Marge inférieure, en pixels, offrant plus d’espace pour les étiquettes d’axe"
+msgstr ""
+"Marge inférieure, en pixels, offrant plus d’espace pour les étiquettes "
+"d’axe"
 
 msgid "Left to Right"
 msgstr "Gauche à droite"
@@ -6754,13 +7002,6 @@ msgstr "Comme (sensible à la casse)"
 msgid "Limit type"
 msgstr "Type de limite"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. Consider "
-"filtering or grouping source/target names instead."
-msgstr ""
-"Limiter les rangées peut entraîner des données incomplètes et des graphiques "
-"trompeurs. Envisagez plutôt de filtrer ou de regrouper les noms de source/cible."
-
 #, fuzzy
 msgid "Limits the number of cells that get retrieved."
 msgstr "Limite le nombre de lignes qui sont récupérées."
@@ -6769,25 +7010,27 @@ msgid "Limits the number of rows that get displayed."
 msgstr "Limite le nombre de lignes qui sont affichées."
 
 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."
+"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."
+"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 ""
-"Limits the number of the rows that are computed in the query that is the source of "
-"the data used for this chart."
+"Limits the number of the rows that are computed in the query that is the "
+"source of the data used for this chart."
 msgstr ""
-"Définissez une fonction javascript qui reçoit le tableau de données utilisé dans "
-"la visualisation et qui doit renvoyer une version modifiée de ce tableau. Cette "
-"fonction peut être utilisée pour modifier les propriétés des données, filtrer ou "
-"enrichir le tableau."
+"Définissez une fonction javascript qui reçoit le tableau de données "
+"utilisé dans la visualisation et qui doit renvoyer une version modifiée "
+"de ce tableau. Cette fonction peut être utilisée pour modifier les "
+"propriétés des données, filtrer ou enrichir le tableau."
 
 #, fuzzy
 msgid "Line"
@@ -6801,15 +7044,19 @@ msgid "Line Style"
 msgstr "Style de ligne"
 
 msgid ""
-"Line chart is used to visualize measurements taken over a given category. Line "
-"chart is a type of chart which displays information as a series of data points "
-"connected by straight line segments. It is a basic type of chart common in many "
-"fields."
+"Line chart is used to visualize measurements taken over a given category."
+" Line chart is a type of chart which displays information as a series of "
+"data points connected by straight line segments. It is a basic type of "
+"chart common in many fields."
+msgstr ""
+"Le graphique linéaire est utilisé pour visualiser les mesures prises sur "
+"une catégorie donnée. Le graphique linéaire est un type de graphique qui "
+"affiche les informations sous forme de série de points de données reliés "
+"par des segments linéaires. Il s’agit d’un type de tableau de base commun"
+" dans de nombreux champs."
+
+msgid "Line charts on a map"
 msgstr ""
-"Le graphique linéaire est utilisé pour visualiser les mesures prises sur une "
-"catégorie donnée. Le graphique linéaire est un type de graphique qui affiche les "
-"informations sous forme de série de points de données reliés par des segments "
-"linéaires. Il s’agit d’un type de tableau de base commun dans de nombreux champs."
 
 msgid "Line interpolation as defined by d3.js"
 msgstr "Interpolation de lignes telle que définie par d3.js"
@@ -6842,12 +7089,21 @@ msgstr "Codage des lignes"
 msgid "Link Copied!"
 msgstr "Lien copié!"
 
+msgid "List Roles"
+msgstr ""
+
 #, fuzzy
 msgid "List Unique Values"
 msgstr "Liste des valeurs uniques"
 
+#, fuzzy
+msgid "List Users"
+msgstr "Numéro de fractionnement"
+
 msgid "List of extra columns made available in JavaScript functions"
-msgstr "Liste des colonnes supplémentaires disponibles dans les fonctions JavaScript"
+msgstr ""
+"Liste des colonnes supplémentaires disponibles dans les fonctions "
+"JavaScript"
 
 msgid "List of n+1 values for bucketing metric into n buckets."
 msgstr "Liste des valeurs n+1 pour le classement des mesures en n seaux."
@@ -6916,6 +7172,10 @@ msgstr "Axe des ordonnées logarithmique"
 msgid "Login"
 msgstr "Connexion"
 
+#, fuzzy
+msgid "Login count"
+msgstr "count"
+
 #, fuzzy
 msgid "Login with"
 msgstr "Se connecter avec"
@@ -6926,6 +7186,10 @@ msgstr "Déconnexion"
 msgid "Logs"
 msgstr "Journaux"
 
+#, fuzzy
+msgid "Lon"
+msgstr "sur"
+
 msgid "Long dashed"
 msgstr "Long tiret"
 
@@ -6970,22 +7234,23 @@ msgstr "LUN"
 msgid "Main"
 msgstr "min"
 
-msgid "Main Datetime Column"
-msgstr "Colonne principale d’horodatage"
-
 msgid ""
-"Make sure that the controls are configured properly and the datasource contains "
-"data for the selected time range"
+"Make sure that the controls are configured properly and the datasource "
+"contains data for the selected time range"
 msgstr ""
-"Assurez-vous que les commandes sont configurées correctement et que la source de "
-"données contient des données pour la plage de temps sélectionnée"
+"Assurez-vous que les commandes sont configurées correctement et que la "
+"source de données contient des données pour la plage de temps "
+"sélectionnée"
 
 msgid "Make the x-axis categorical"
 msgstr ""
 
-msgid "Malformed request. slice_id or table_name and db_name arguments are expected"
+msgid ""
+"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"
+"Requête malformée. Les arguments slice_id ou table_name et db_name sont "
+"attendus"
 
 msgid "Manage"
 msgstr "Gérer"
@@ -7008,6 +7273,10 @@ msgstr "Définir manuellement les valeurs min/max pour l’axe des ordonnées."
 msgid "Map"
 msgstr "Carte"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Options de carte thermique"
+
 #, fuzzy
 msgid "Map Style"
 msgstr "Style de carte"
@@ -7028,8 +7297,8 @@ msgstr "Marge"
 
 msgid "Mark a column as temporal in \"Edit datasource\" modal"
 msgstr ""
-"Marquer une colonne comme temporelle dans le modal « Modifier la source de "
-"données »"
+"Marquer une colonne comme temporelle dans le modal « Modifier la source "
+"de données »"
 
 #, fuzzy
 msgid "Marker"
@@ -7058,6 +7327,9 @@ msgstr "Marqueurs"
 msgid "Markup type"
 msgstr "Type de marqueur"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "Max"
 
@@ -7065,8 +7337,8 @@ msgstr "Max"
 msgid "Max Bubble Size"
 msgstr "Taille maximale de la bulle"
 
-msgid "Max Events"
-msgstr "Nombre maximal d’événements"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "Maximum"
@@ -7077,12 +7349,15 @@ msgstr "Taille maximale de la police"
 msgid "Maximum Radius"
 msgstr "Rayon maximal"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
-"Maximum radius size of the circle, in pixels. As the zoom level changes, this "
-"insures that the circle respects this maximum radius."
+"Maximum radius size of the circle, in pixels. As the zoom level changes, "
+"this insures that the circle respects this maximum radius."
 msgstr ""
-"Taille maximale du rayon du cercle, en pixels. Lorsque le niveau de zoom change, "
-"cela permet de s'assurer que le cercle respecte ce rayon maximal."
+"Taille maximale du rayon du cercle, en pixels. Lorsque le niveau de zoom "
+"change, cela permet de s'assurer que le cercle respecte ce rayon maximal."
 
 #, fuzzy
 msgid "Maximum value"
@@ -7105,14 +7380,18 @@ msgid "Median"
 msgstr "Médiane"
 
 msgid ""
-"Median edge width, the thickest edge will be 4 times thicker than the thinnest."
+"Median edge width, the thickest edge will be 4 times thicker than the "
+"thinnest."
 msgstr ""
-"Largeur médiane du bord, le bord le plus épais sera 4 fois plus épais que le bord "
-"le plus mince."
+"Largeur médiane du bord, le bord le plus épais sera 4 fois plus épais que"
+" le bord le plus mince."
 
-msgid "Median node size, the largest node will be 4 times larger than the smallest"
+msgid ""
+"Median node size, the largest node will be 4 times larger than the "
+"smallest"
 msgstr ""
-"Taille du nœud médiane, le plus grand nœud sera 4 fois plus grand que le plus petit"
+"Taille du nœud médiane, le plus grand nœud sera 4 fois plus grand que le "
+"plus petit"
 
 #, fuzzy
 msgid "Median values"
@@ -7121,6 +7400,18 @@ msgstr "Valeurs médianes"
 msgid "Medium"
 msgstr "Moyen"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr "Déclencheur des actions de menu"
 
@@ -7210,28 +7501,22 @@ msgstr "Mesure utilisée pour contrôler la hauteur"
 
 #, 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 ""
-"Mesure utilisée pour définir comment les séries principales sont triées si une "
-"limite de série ou de cellule est définie. Si indéfini, la première mesure sera "
-"utilisée (si approprié)."
-
-msgid ""
-"Metric used to define how the top series are sorted if a series or row limit is "
-"present. If undefined reverts to the first metric (where appropriate)."
+"Metric used to define how the top series are sorted if a series or cell "
+"limit is present. If undefined reverts to the first metric (where "
+"appropriate)."
 msgstr ""
-"Mesure utilisée pour définir comment les séries principales sont triées si une "
-"limite de série ou de rangée est définie. Si indéfini, la première mesure sera "
-"utilisée (si approprié)."
+"Mesure utilisée pour définir comment les séries principales sont triées "
+"si une limite de série ou de cellule est définie. Si indéfini, la "
+"première mesure sera utilisée (si approprié)."
 
-#, fuzzy
 msgid ""
-"Metric used to order the limit if a series limit is present. If undefined reverts "
-"to the first metric (where appropriate)."
+"Metric used to 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 ""
-"Mesure utilisée pour ordonner la limite si une limite de série est présente. Si "
-"indéfini, la première mesure sera utilisée (si approprié)."
+"Mesure utilisée pour définir comment les séries principales sont triées "
+"si une limite de série ou de rangée est définie. Si indéfini, la première"
+" mesure sera utilisée (si approprié)."
 
 msgid "Metrics"
 msgstr "Mesures"
@@ -7277,15 +7562,15 @@ msgstr "Taille minimale de la police"
 msgid "Minimum Radius"
 msgstr "Rayon minimum"
 
-msgid "Minimum leaf node event count"
-msgstr "Nombre minimum d'événements dans les nœuds de feuilles"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
-"Minimum radius size of the circle, in pixels. As the zoom level changes, this "
-"insures that the circle respects this minimum radius."
+"Minimum radius size of the circle, in pixels. As the zoom level changes, "
+"this insures that the circle respects this minimum radius."
 msgstr ""
-"Taille minimale du rayon du cercle, en pixels. Lorsque le niveau de zoom change, "
-"cela permet de s'assurer que le cercle respecte ce rayon minimal."
+"Taille minimale du rayon du cercle, en pixels. Lorsque le niveau de zoom "
+"change, cela permet de s'assurer que le cercle respecte ce rayon minimal."
 
 msgid "Minimum threshold in percentage points for showing labels."
 msgstr "Seuil minimum en points de pourcentage pour afficher les étiquettes."
@@ -7294,6 +7579,10 @@ msgstr "Seuil minimum en points de pourcentage pour afficher les étiquettes."
 msgid "Minimum value"
 msgstr "Valeur minimale"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "La date de début ne peut être supérieure à la date de fin"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "Valeur minimale pour que l'étiquette soit affichée sur le graphique."
 
@@ -7318,6 +7607,9 @@ msgstr "Minutes %s"
 msgid "Minutes value"
 msgstr "Valeur minimale"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 #, fuzzy
 msgid "Missing URL parameters"
 msgstr "Paramètres URL manquants"
@@ -7336,6 +7628,12 @@ msgstr "Modifié"
 msgid "Modified %s"
 msgstr "%s modifié"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 msgid "Modified by"
 msgstr "Modifié"
 
@@ -7343,10 +7641,6 @@ msgstr "Modifié"
 msgid "Modified by: %s"
 msgstr "Dernière modification par %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "Colonnes modifiées : %s"
-
 msgid "Monday"
 msgstr "Lundi"
 
@@ -7395,10 +7689,11 @@ msgid "Multiple filtering"
 msgstr "Filtrage multiple"
 
 msgid ""
-"Multiple formats accepted, look the geopy.points Python library for more details"
+"Multiple formats accepted, look the geopy.points Python library for more "
+"details"
 msgstr ""
-"Plusieurs formats sont acceptés, consultez la bibliothèque Python geopy.points "
-"pour plus de détails"
+"Plusieurs formats sont acceptés, consultez la bibliothèque Python "
+"geopy.points pour plus de détails"
 
 #, fuzzy
 msgid "Multiplier"
@@ -7414,9 +7709,6 @@ msgstr "Vous devez choisir un graphique ou un tableau de bord."
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr "Il faut une colonne [Grouper par] pour avoir « count » comme [Étiquette]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "Au moins une colonne numérique doit être spécifiée"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr "Doit fournir les identifiants pour le tunnel SSH"
 
@@ -7442,9 +7734,6 @@ msgstr "NOT GROUPED BY"
 msgid "NOV"
 msgstr "NOV"
 
-msgid "NOW"
-msgstr "MAINTENANT"
-
 #, fuzzy
 msgid "NUMERIC"
 msgstr "NUMÉRIQUE"
@@ -7472,9 +7761,6 @@ msgstr "Nom de la colonne d'identification"
 msgid "Name of the source nodes"
 msgstr "Nom des nœuds sources"
 
-msgid "Name of the table that exists in the source database"
-msgstr "Nom du tableau qui existe dans la base de données source"
-
 msgid "Name of the target nodes"
 msgstr "Nom des nœuds cibles"
 
@@ -7491,10 +7777,18 @@ msgstr "Besoin d’aide? Apprenez comment connecter votre base de données"
 msgid "Need help? Learn more about"
 msgstr "Besoin d’aide? En savoir plus sur"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Erreur de réseau"
+
 #, fuzzy
 msgid "Network error"
 msgstr "Erreur de réseau"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Une erreur s'est produite durant la création de la source de donnée"
+
 #, fuzzy
 msgid "Network error."
 msgstr "Erreur de réseau."
@@ -7502,10 +7796,6 @@ msgstr "Erreur de réseau."
 msgid "New chart"
 msgstr "Nouveau graphique"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "Nouvelles colonnes ajoutées : %s"
-
 #, fuzzy
 msgid "New dataset"
 msgstr "Nouvel ensemble de données"
@@ -7560,6 +7850,10 @@ msgstr "Pas encore de règles"
 msgid "No Tags created"
 msgstr "a été créé"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Annuler l'action"
+
 #, fuzzy
 msgid "No annotation layers"
 msgstr "Aucune couche d'annotations"
@@ -7581,10 +7875,6 @@ msgstr "Aucun filtre disponible."
 msgid "No charts"
 msgstr "Aucun graphique"
 
-#, fuzzy
-msgid "No charts yet"
-msgstr "Pas encore de graphique"
-
 #, fuzzy
 msgid "No columns found"
 msgstr "Aucune colonne trouvée"
@@ -7604,21 +7894,21 @@ msgstr "Aucun ensemble de données compatible trouvé"
 msgid "No compatible schema found"
 msgstr "Aucun schéma compatible trouvé"
 
-#, fuzzy
-msgid "No dashboards yet"
-msgstr "Pas encore de tableau de bord"
-
 msgid "No data"
 msgstr "Aucune donnée"
 
 msgid "No data after filtering or data is NULL for the latest time record"
 msgstr ""
-"Pas de données après le filtrage ou données NULLES pour le dernier enregistrement "
-"temporel"
+"Pas de données après le filtrage ou données NULLES pour le dernier "
+"enregistrement temporel"
 
 msgid "No data in file"
 msgstr "Pas de données dans le fichier"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "Aucune base de données n’est disponible"
+
 msgid "No databases match your search"
 msgstr "Aucune base de données ne correspond à votre recherche"
 
@@ -7652,14 +7942,6 @@ msgstr "Aucun filtre global n'est actuellement ajouté"
 msgid "No matching records found"
 msgstr "Aucun enregistrement correspondant n'a été trouvé"
 
-#, fuzzy
-msgid "No of Bins"
-msgstr "Nombre de bacs"
-
-#, fuzzy
-msgid "No recents yet"
-msgstr "Pas encore de récents"
-
 msgid "No records found"
 msgstr "Aucun enregistrement n'a été trouvé"
 
@@ -7677,14 +7959,18 @@ msgid "No results were returned for this query"
 msgstr "Aucun résultat n'a été obtenu pour cette requête"
 
 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."
+"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 ""
-"Aucun résultat n'a été renvoyé pour cette requête. Si vous vous attendiez à ce que "
-"des résultats soient renvoyés, assurez-vous que les filtres sont configurés "
-"correctement et que la source de données contient des données pour la période "
-"sélectionnée."
+"Aucun résultat n'a été renvoyé pour cette requête. Si vous vous attendiez"
+" à ce que des résultats soient renvoyés, assurez-vous que les filtres "
+"sont configurés correctement et que la source de données contient des "
+"données pour la période sélectionnée."
+
+#, fuzzy
+msgid "No roles yet"
+msgstr "Pas encore de règles"
 
 #, fuzzy
 msgid "No rows were returned for this dataset"
@@ -7702,17 +7988,13 @@ msgstr "Aucune expression sauvegardée n'a été trouvée"
 msgid "No saved metrics found"
 msgstr "Aucune mesure sauvegardée n'a été trouvée"
 
-#, fuzzy
-msgid "No saved queries yet"
-msgstr "Aucune requête sauvegardée pour l'instant"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr "Aucun résultat stocké n'a été trouvé, vous devez réexécuter votre requête"
 
 msgid "No such column found. To filter on a metric, try the Custom SQL tab."
 msgstr ""
-"Aucune colonne de ce type n'a été trouvée. Pour filtrer sur une mesure, essayez "
-"l'onglet Custom SQL."
+"Aucune colonne de ce type n'a été trouvée. Pour filtrer sur une mesure, "
+"essayez l'onglet Custom SQL."
 
 #, fuzzy
 msgid "No table columns"
@@ -7725,13 +8007,17 @@ msgstr "Aucune colonne temporelle trouvée"
 msgid "No time columns"
 msgstr "Pas de colonnes horaires"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Pas encore de règles"
+
 msgid "No validator found (configured for the engine)"
 msgstr "Aucun validateur trouvé (configuré pour le moteur)"
 
 #, fuzzy, python-format
 msgid ""
-"No validator named %(validator_name)s found (configured for the %(engine_spec)s "
-"engine)"
+"No validator named %(validator_name)s found (configured for the "
+"%(engine_spec)s engine)"
 msgstr "Aucun validateur trouvé (configuré pour le moteur)"
 
 msgid "Node label position"
@@ -7812,6 +8098,10 @@ msgstr "Non déclenché"
 msgid "Not up to date"
 msgstr "Pas à jour"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "Rien déclenché"
+
 msgid "Nothing triggered"
 msgstr "Rien déclenché"
 
@@ -7845,12 +8135,14 @@ msgstr "Format des numéros"
 
 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"
+"               Reverse the numbers for blue to red. To get pure red or "
+"blue,\n"
 "               you can enter either only min or max."
 msgstr ""
-"Bornes numériques utilisées pour le codage des couleurs du rouge au "
-"bleu.               Inversez les nombres pour le bleu vers le rouge. Pour obtenir "
-"un rouge ou un bleu pur, vous pouvez saisir uniquement min ou max."
+"Bornes numériques utilisées pour le codage des couleurs du rouge au bleu."
+"               Inversez les nombres pour le bleu vers le rouge. Pour "
+"obtenir un rouge ou un bleu pur, vous pouvez saisir uniquement min ou "
+"max."
 
 #, fuzzy
 msgid "Number format"
@@ -7877,11 +8169,11 @@ msgid "Number of decimal places with which to display p-values"
 msgstr "Nombre de décimales pour l'affichage des valeurs p"
 
 msgid ""
-"Number of periods to compare against. You can use negative numbers to compare from "
-"the beginning of the time range."
+"Number of periods to compare against. You can use negative numbers to "
+"compare from the beginning of the time range."
 msgstr ""
-"Nombre de période à comparer. Vous pouvez utiliser des nombres négatifs pour "
-"comparer au début de l'intervalle temporel."
+"Nombre de période à comparer. Vous pouvez utiliser des nombres négatifs "
+"pour comparer au début de l'intervalle temporel."
 
 msgid "Number of periods to ratio against"
 msgstr "Nombre de périodes à rapporter"
@@ -7898,10 +8190,13 @@ msgstr "Nombre de segments divisés sur l'axe"
 
 msgid "Number of steps to take between ticks when displaying the X scale"
 msgstr ""
-"Nombre de pas entre les points de repère lors de l'affichage de l'échelle des X"
+"Nombre de pas entre les points de repère lors de l'affichage de l'échelle"
+" des X"
 
 msgid "Number of steps to take between ticks when displaying the Y scale"
-msgstr "Nombre de pas entre les points de repère lors de l'affichage de l'échelle Y"
+msgstr ""
+"Nombre de pas entre les points de repère lors de l'affichage de l'échelle"
+" Y"
 
 #, fuzzy
 msgid "Numeric column used to calculate the histogram."
@@ -7925,9 +8220,6 @@ msgstr "Octobre"
 msgid "Offline"
 msgstr "Hors ligne"
 
-msgid "Offset"
-msgstr "Décalage"
-
 msgid "On Grace"
 msgstr "Sur la grâce"
 
@@ -7936,19 +8228,20 @@ msgid "On dashboards"
 msgstr "tableaux de bord "
 
 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."
+"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 ""
-"Une ou plusieurs colonnes à regrouper. Les regroupements à forte cardinalité "
-"doivent inclure une limite de séries afin de limiter le nombre de séries "
-"recherchées et rendues."
+"Une ou plusieurs colonnes à regrouper. Les regroupements à forte "
+"cardinalité doivent inclure une limite de séries afin de limiter le "
+"nombre de séries recherchées et rendues."
 
 msgid ""
-"One or many controls to group by. If grouping, latitude and longitude columns must "
-"be present."
+"One or many controls to group by. If grouping, latitude and longitude "
+"columns must be present."
 msgstr ""
-"Un ou plusieurs contrôles à regrouper. En cas de regroupement, les colonnes de "
-"latitude et de longitude doivent être présentes."
+"Un ou plusieurs contrôles à regrouper. En cas de regroupement, les "
+"colonnes de latitude et de longitude doivent être présentes."
 
 msgid "One or many controls to pivot as columns"
 msgstr "Un ou plusieurs contrôles à pivoter en tant que colonnes"
@@ -7956,6 +8249,10 @@ msgstr "Un ou plusieurs contrôles à pivoter en tant que colonnes"
 msgid "One or many metrics to display"
 msgstr "Une ou plusieurs mesures à afficher"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "Le chargement d'une ou plusieurs couches d'annotations a échoué."
+
 msgid "One or more columns already exist"
 msgstr "Une ou plusieurs colonnes existent déjà"
 
@@ -7976,8 +8273,8 @@ msgstr "Une ou plusieurs mesures n'existent pas"
 
 msgid "One or more parameters needed to configure a database are missing."
 msgstr ""
-"Un ou plusieurs paramètres nécessaires à la configuration d'une base de données "
-"sont manquants."
+"Un ou plusieurs paramètres nécessaires à la configuration d'une base de "
+"données sont manquants."
 
 #, fuzzy
 msgid "One or more parameters specified in the query are malformed."
@@ -7986,12 +8283,6 @@ msgstr "Un ou plusieurs paramètres de la requête sont malformés."
 msgid "One or more parameters specified in the query are missing."
 msgstr "Un ou plusieurs paramètres spécifiés dans la requête sont manquants."
 
-msgid "One ore more annotation layers failed loading."
-msgstr "Le chargement d'une ou plusieurs couches d'annotations a échoué."
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "Seules les instructions SELECT sont autorisées pour cette base de données."
-
 msgid "Only Total"
 msgstr "Seulement le total"
 
@@ -8000,23 +8291,20 @@ msgstr "Seules les instructions « SELECT » sont autorisées"
 
 msgid "Only applies when \"Label Type\" is not set to a percentage."
 msgstr ""
-"S'applique uniquement lorsque le « Type d'étiquette » n'est pas réglé sur un "
-"pourcentage."
+"S'applique uniquement lorsque le « Type d'étiquette » n'est pas réglé sur"
+" un pourcentage."
 
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
-"Ne s'applique que lorsque le « Type d'étiquette » est réglé sur l'affichage des "
-"valeurs."
-
-msgid "Only selected panels will be affected by this filter"
-msgstr "Seuls les panneaux sélectionnés seront affectés par ce filtre"
+"Ne s'applique que lorsque le « Type d'étiquette » est réglé sur "
+"l'affichage des valeurs."
 
 msgid ""
-"Only show the total value on the stacked chart, and not show on the selected "
-"category"
+"Only show the total value on the stacked chart, and not show on the "
+"selected category"
 msgstr ""
-"N'affichez que la valeur totale sur le graphique empilé, et pas sur la catégorie "
-"sélectionnée"
+"N'affichez que la valeur totale sur le graphique empilé, et pas sur la "
+"catégorie sélectionnée"
 
 msgid "Only single queries supported"
 msgstr "Seules les requêtes uniques sont prises en charge"
@@ -8029,7 +8317,9 @@ msgid "Opacity"
 msgstr "Opacité"
 
 msgid "Opacity of Area Chart. Also applies to confidence band."
-msgstr "Opacité du graphique en aires. S'applique également à la bande de confiance."
+msgstr ""
+"Opacité du graphique en aires. S'applique également à la bande de "
+"confiance."
 
 msgid "Opacity of all clusters, points, and labels. Between 0 and 1."
 msgstr "Opacité de tous les groupes, points et étiquettes. Entre 0 et 1."
@@ -8053,16 +8343,16 @@ msgid "Open query in SQL Lab"
 msgstr "Ouvrir une requête dans SQL Lab"
 
 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."
+"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 ""
-"Exploiter la base de données en mode asynchrone, ce qui signifie que les requêtes "
-"sont exécutées sur des travailleurs distants plutôt que sur le serveur web lui-"
-"même. Cela suppose que vous disposiez d'un collaborateur Celery ainsi que d'un "
-"programme dorsal de résultats. Reportez-vous à la documentation d'installation "
-"pour plus d'informations."
+"Exploiter la base de données en mode asynchrone, ce qui signifie que les "
+"requêtes sont exécutées sur des travailleurs distants plutôt que sur le "
+"serveur web lui-même. Cela suppose que vous disposiez d'un collaborateur "
+"Celery ainsi que d'un programme dorsal de résultats. Reportez-vous à la "
+"documentation d'installation pour plus d'informations."
 
 msgid "Operator"
 msgstr "Opérateur"
@@ -8072,11 +8362,11 @@ msgid "Operator undefined for aggregator: %(name)s"
 msgstr "Opérateur indéfini pour l'agrégat : %(name)s"
 
 msgid ""
-"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain "
-"database engines."
+"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on"
+" certain database engines."
 msgstr ""
-"Contenu CA_BUNDLE optionnel pour valider les requêtes HTTPS. Disponible uniquement "
-"sur certains moteurs de base de données."
+"Contenu CA_BUNDLE optionnel pour valider les requêtes HTTPS. Disponible "
+"uniquement sur certains moteurs de base de données."
 
 #, fuzzy
 msgid "Optional d3 date format string"
@@ -8098,11 +8388,8 @@ msgstr "Options"
 
 msgid "Or choose from a list of other databases we support:"
 msgstr ""
-"Ou choisissez parmi une liste d'autres bases de données que nous prenons en "
-"charge :"
-
-msgid "Order by entity id"
-msgstr "Ordre par ID d’entité"
+"Ou choisissez parmi une liste d'autres bases de données que nous prenons "
+"en charge :"
 
 msgid "Order results by selected columns"
 msgstr "Ordonner les résultats par colonnes sélectionnées"
@@ -8111,6 +8398,13 @@ msgstr "Ordonner les résultats par colonnes sélectionnées"
 msgid "Ordering"
 msgstr "Commande"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 #, fuzzy
 msgid "Orientation"
 msgstr "Documentation"
@@ -8162,45 +8456,45 @@ msgid "Overlap"
 msgstr "Carte du monde"
 
 msgid ""
-"Overlay one or more timeseries from a relative time period. Expects relative time "
-"deltas in natural language (example:  24 hours, 7 days, 52 weeks, 365 days). Free "
-"text is supported."
+"Overlay one or more timeseries from a relative time period. Expects "
+"relative time deltas in natural language (example:  24 hours, 7 days, 52 "
+"weeks, 365 days). Free text is supported."
 msgstr ""
-"Superposez une ou plusieurs séries temporelles à partir d'une période de temps "
-"relative. Les deltas temporels relatifs doivent être exprimés en langage naturel "
-"(exemple : 24 heures, 7 jours, 52 semaines, 365 jours). Le texte libre est pris en "
-"charge."
+"Superposez une ou plusieurs séries temporelles à partir d'une période de "
+"temps relative. Les deltas temporels relatifs doivent être exprimés en "
+"langage naturel (exemple : 24 heures, 7 jours, 52 semaines, 365 jours). "
+"Le texte libre est pris en charge."
 
 #, 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."
+"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 ""
-"Superposez une ou plusieurs séries temporelles à partir d'une période de temps "
-"relative. Les deltas temporels relatifs doivent être exprimés en langage naturel "
-"(exemple : 24 heures, 7 jours, 52 semaines, 365 jours). Le texte libre est pris en "
-"charge."
+"Superposez une ou plusieurs séries temporelles à partir d'une période de "
+"temps relative. Les deltas temporels relatifs doivent être exprimés en "
+"langage naturel (exemple : 24 heures, 7 jours, 52 semaines, 365 jours). "
+"Le texte libre est pris en charge."
 
 #, fuzzy
 msgid ""
-"Overlay results 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. Use \"Inherit range from time filters\" to shift the comparison time "
-"range by the same length as your time range and use \"Custom\" to set a custom "
-"comparison range."
+"Overlay results 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. Use \"Inherit range from time filters\" to shift "
+"the comparison time range by the same length as your time range and use "
+"\"Custom\" to set a custom comparison range."
 msgstr ""
-"Superposez une ou plusieurs séries temporelles à partir d'une période de temps "
-"relative. Les deltas temporels relatifs doivent être exprimés en langage naturel "
-"(exemple : 24 heures, 7 jours, 52 semaines, 365 jours). Le texte libre est pris en "
-"charge."
+"Superposez une ou plusieurs séries temporelles à partir d'une période de "
+"temps relative. Les deltas temporels relatifs doivent être exprimés en "
+"langage naturel (exemple : 24 heures, 7 jours, 52 semaines, 365 jours). "
+"Le texte libre est pris en charge."
 
 msgid ""
-"Overlays a hexagonal grid on a map, and aggregates data within the boundary of "
-"each cell."
+"Overlays a hexagonal grid on a map, and aggregates data within the "
+"boundary of each cell."
 msgstr ""
-"Superpose une grille hexagonale sur une carte et agrège les données à l'intérieur "
-"du périmètre de chaque cellule."
+"Superpose une grille hexagonale sur une carte et agrège les données à "
+"l'intérieur du périmètre de chaque cellule."
 
 #, fuzzy
 msgid "Override time grain"
@@ -8241,16 +8535,20 @@ msgstr "Les propriétaires ne sont pas valides"
 
 msgid "Owners is a list of users who can alter the dashboard."
 msgstr ""
-"Les propriétaires est une liste d'utilisateur·rice·s qui peuvent modifier le "
-"tableau de bord."
+"Les propriétaires est une liste d'utilisateur·rice·s qui peuvent modifier"
+" le tableau de bord."
 
 msgid ""
-"Owners is a list of users who can alter the dashboard. Searchable by name or "
-"username."
+"Owners is a list of users who can alter the dashboard. Searchable by name"
+" or username."
 msgstr ""
-"Les propriétaires sont une liste des utilisateurs qui peuvent modifier le tableau "
-"de bord. Il est possible d'effectuer une recherche par nom ou par nom "
-"d'utilisateur."
+"Les propriétaires sont une liste des utilisateurs qui peuvent modifier le"
+" tableau de bord. Il est possible d'effectuer une recherche par nom ou "
+"par nom d'utilisateur."
+
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "Échec du téléchargement de l’image, veuillez actualiser et réessayer."
 
 msgid "Page length"
 msgstr "Longueur de la page"
@@ -8305,22 +8603,31 @@ msgid "Partition Threshold"
 msgstr "Seuil de partition"
 
 msgid ""
-"Partitions whose height to parent height proportions are below this value are "
-"pruned"
+"Partitions whose height to parent height proportions are below this value"
+" are pruned"
 msgstr ""
-"Les partitions dont les proportions de hauteur par rapport à la hauteur du parent "
-"sont inférieures à cette valeur sont élaguées"
+"Les partitions dont les proportions de hauteur par rapport à la hauteur "
+"du parent sont inférieures à cette valeur sont élaguées"
 
 msgid "Password"
 msgstr "Mot de passe"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "Le type est requis"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Le tableau de bord n'existe pas"
+
 msgid "Paste Private Key here"
 msgstr "Coller la clé privée ici"
 
 #, fuzzy
 msgid "Paste content of service credentials JSON file here"
 msgstr ""
-"Collez le contenu du fichier JSON des informations d'identification du service ici"
+"Collez le contenu du fichier JSON des informations d'identification du "
+"service ici"
 
 msgid "Paste the shareable Google Sheet URL here"
 msgstr "Coller ici l'URL partageable de Google Sheet"
@@ -8379,6 +8686,14 @@ msgstr "Périodes"
 msgid "Periods must be a whole number"
 msgstr "Les périodes doivent être un nombre entier"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Version"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 #, fuzzy
 msgid "Person or group that has certified this chart."
 msgstr "Personne ou groupe qui a certifié ce graphique."
@@ -8396,13 +8711,10 @@ msgstr "Physique"
 msgid "Physical (table or view)"
 msgstr "Physique (table ou vue)"
 
-msgid "Physical dataset"
-msgstr "Ensemble de données physiques"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
-"Choisissez une dimension à partir de laquelle les couleurs catégorielles sont "
-"définies"
+"Choisissez une dimension à partir de laquelle les couleurs catégorielles "
+"sont définies"
 
 msgid "Pick a metric for x, y and size"
 msgstr "Choisissez une mesure pour x, y et la taille"
@@ -8423,21 +8735,16 @@ msgstr "Choisissez un ensemble de graphiques deck.gl à superposer"
 msgid "Pick a title for you annotation."
 msgstr "Choisissez un titre pour votre annotation."
 
-msgid "Pick at least one field for [Series]"
-msgstr "Choisissez au moins un champ pour [Série]"
-
 msgid "Pick at least one metric"
 msgstr "Choisissez au moins une mesure"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "Choisissez exactement deux colonnes comme [Source / Cible]"
-
 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."
+"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 ""
-"Choisissez une ou plusieurs colonnes qui doivent être affichées dans l'annotation. "
-"Si vous ne sélectionnez pas de colonne, toutes les colonnes seront affichées."
+"Choisissez une ou plusieurs colonnes qui doivent être affichées dans "
+"l'annotation. Si vous ne sélectionnez pas de colonne, toutes les colonnes"
+" seront affichées."
 
 msgid "Pick your favorite markup language"
 msgstr "Choisissez votre langage de balisage préféré"
@@ -8446,9 +8753,8 @@ msgstr "Choisissez votre langage de balisage préféré"
 msgid "Pie Chart"
 msgstr "Diagramme circulaire"
 
-#, fuzzy
-msgid "Pie Chart (legacy)"
-msgstr "Enregistrer un graphique"
+msgid "Pie charts on a map"
+msgstr ""
 
 #, fuzzy
 msgid "Pie shape"
@@ -8461,6 +8767,14 @@ msgstr ""
 msgid "Pin"
 msgstr "NIP"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "Haut à gauche"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Haut à droite"
+
 msgid "Pivot Table"
 msgstr "Tableau croisé"
 
@@ -8487,37 +8801,42 @@ msgid "Please DO NOT overwrite the \"filter_scopes\" key."
 msgstr "Veuillez NE PAS écraser la touche « filter_scopes »."
 
 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."
+"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 ""
-"Veuillez vérifier votre requête et confirmer que tous les paramètres du modèle "
-"sont entourés de doubles accolades, par exemple, « {{ ds }} ». Essayez ensuite "
-"d'exécuter à nouveau votre requête."
+"Veuillez vérifier votre requête et confirmer que tous les paramètres du "
+"modèle sont entourés de doubles accolades, par exemple, « {{ ds }} ». "
+"Essayez ensuite d'exécuter à nouveau votre requête."
 
 #, python-format
 msgid ""
-"Please check your query for syntax errors at or near \"%(syntax_error)s\". Then, "
-"try running your query again."
+"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."
+"Veuillez corriger une erreur de syntaxe dans la requête près de « "
+"%(syntax_error)s ». Puis essayez de relancer la requête."
 
 #, python-format
 msgid ""
-"Please check your query for syntax errors near \"%(server_error)s\". Then, try "
-"running your query again."
+"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."
+"Veuillez corriger une erreur de syntaxe dans la requête près de « "
+"%(server_error)s ». Puis essayez de relancer la requête."
 
 #, 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."
+"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 vérifier que les paramètres de votre modèle ne comportent pas "
+"d'erreurs de syntaxe et qu'ils correspondent à votre requête SQL et à vos"
+" paramètres. Essayez ensuite d'exécuter à nouveau votre requête."
+
+msgid "Please choose a valid value"
 msgstr ""
-"Veuillez vérifier que les paramètres de votre modèle ne comportent pas d'erreurs "
-"de syntaxe et qu'ils correspondent à votre requête SQL et à vos paramètres. "
-"Essayez ensuite d'exécuter à nouveau votre requête."
 
 #, fuzzy
 msgid "Please choose at least one groupby"
@@ -8529,12 +8848,25 @@ msgstr "Veuillez confirmer"
 msgid "Please confirm the overwrite values."
 msgstr "Veuillez confirmer les valeurs de remplacement."
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "Veuillez confirmer"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Veuillez saisir un URI SQLAlchemy à tester"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "Veuillez saisir à nouveau le mot de passe."
 
@@ -8547,25 +8879,25 @@ msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] "Veuillez contacter le propriétaire du graphique pour obtenir de l'aide."
 msgstr[1] ""
 
-msgid "Please save the query to enable sharing"
-msgstr "Veuillez enregistrer la requête pour pouvoir la partager"
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
-"Veuillez d'abord enregistrer votre graphique, puis essayez de créer un nouveau "
-"rapport par courriel."
+"Veuillez d'abord enregistrer votre graphique, puis essayez de créer un "
+"nouveau rapport par courriel."
 
 msgid "Please save your dashboard first, then try creating a new email report."
 msgstr ""
-"Veuillez d'abord sauvegarder votre tableau de bord, puis essayez de créer un "
-"nouveau rapport par courriel."
+"Veuillez d'abord sauvegarder votre tableau de bord, puis essayez de créer"
+" un nouveau rapport par courriel."
 
 msgid "Please select both a Dataset and a Chart type to proceed"
 msgstr ""
-"Veuillez sélectionner un ensemble de données et un type de graphique pour continuer"
+"Veuillez sélectionner un ensemble de données et un type de graphique pour"
+" continuer"
 
 #, python-format
-msgid "Please specify the Dataset ID for the ``%(name)s`` metric in the Jinja macro."
+msgid ""
+"Please specify the Dataset ID for the ``%(name)s`` metric in the Jinja "
+"macro."
 msgstr ""
 
 msgid "Please use 3 different metric labels"
@@ -8573,17 +8905,18 @@ msgstr "Utilisez 3 libellés de mesure différents"
 
 msgid "Plot the distance (like flight paths) between origin and destination."
 msgstr ""
-"Tracez la distance (comme les trajectoires de vol) entre le point d'origine et la "
-"destination."
+"Tracez la distance (comme les trajectoires de vol) entre le point "
+"d'origine et la destination."
 
 msgid ""
-"Plots the individual metrics for each row in the data vertically and links them "
-"together as a line. This chart is useful for comparing multiple metrics across all "
-"of the samples or rows in the data."
+"Plots the individual metrics for each row in the data vertically and "
+"links them together as a line. This chart is useful for comparing "
+"multiple metrics across all of the samples or rows in the data."
 msgstr ""
-"Représente les mesures individuelles pour chaque ligne de données verticalement et "
-"les relie par une ligne. Ce graphique est utile pour comparer plusieurs mesures "
-"sur l'ensemble des échantillons ou des lignes de données."
+"Représente les mesures individuelles pour chaque ligne de données "
+"verticalement et les relie par une ligne. Ce graphique est utile pour "
+"comparer plusieurs mesures sur l'ensemble des échantillons ou des lignes "
+"de données."
 
 msgid "Plugins"
 msgstr "Plugiciels"
@@ -8617,8 +8950,8 @@ msgstr "Points"
 
 msgid "Points and clusters will update as the viewport is being changed"
 msgstr ""
-"Les points et les grappes seront mis à jour au fur et à mesure de la modification "
-"de la fenêtre de visualisation"
+"Les points et les grappes seront mis à jour au fur et à mesure de la "
+"modification de la fenêtre de visualisation"
 
 #, fuzzy
 msgid "Polygon Column"
@@ -8638,9 +8971,6 @@ msgstr "Polyline"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "Remplir « Valeur par défaut » pour activer ce contrôle"
 
-msgid "Population age data"
-msgstr "Données sur l’âge de la population"
-
 #, fuzzy
 msgid "Port"
 msgstr "Port"
@@ -8679,15 +9009,6 @@ msgstr "Valeurs disponibles pour le préfiltre"
 msgid "Pre-filter is required"
 msgstr "Un préfiltre est requis"
 
-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é lors de l'extraction d'une valeur distincte pour remplir le "
-"composant de contrôle du filtre. Supporte la syntaxe des modèles jinja. Ne "
-"s'applique que lorsque l'option « Activer la sélection du filtre » est activée."
-
 #, fuzzy
 msgid "Predictive"
 msgstr "Prédictif"
@@ -8709,10 +9030,6 @@ msgstr "Prévisualisation"
 msgid "Preview uploaded file"
 msgstr "Téléverser un fichier Excel"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "Prévisualisation : « %s »"
-
 msgid "Previous"
 msgstr "Précédent"
 
@@ -8765,18 +9082,13 @@ msgstr "Progrès"
 msgid "Progressive"
 msgstr "Progressif"
 
-msgid "Propagate"
-msgstr "Répandre"
+#, fuzzy
+msgid "Project Id"
+msgstr "Déclassé"
 
 msgid "Proportional"
 msgstr "Proportionnel"
 
-msgid "Public and privately shared sheets"
-msgstr "Feuilles partagées de manière publique ou privée"
-
-msgid "Publicly shared sheets only"
-msgstr "Seulement les feuilles partagées de manière publique"
-
 msgid "Published"
 msgstr "Publié"
 
@@ -8797,9 +9109,6 @@ msgstr "La valeur doit être plus grande que 0"
 msgid "Put the labels outside of the pie?"
 msgstr "Placer les étiquettes à l’extérieur du graphique circulaire?"
 
-msgid "Put the labels outside the pie?"
-msgstr "Placer les étiquettes à l’extérieur du graphique circulaire?"
-
 msgid "Put your code here"
 msgstr "Mettez votre code ici"
 
@@ -8914,10 +9223,6 @@ msgstr "Rayon en mètres"
 msgid "Radius in miles"
 msgstr "Rayon en milles"
 
-#, python-format
-msgid "Ran %s"
-msgstr "A été exécuté %s"
-
 #, fuzzy
 msgid "Range"
 msgstr "Intervall"
@@ -8949,24 +9254,9 @@ msgstr "Ratio"
 msgid "Raw records"
 msgstr "Registres bruts"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Les graphiques, tableaux de bord et requêtes sauvegardés qui ont été récemment "
-"créés apparaîtront ici"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Les graphiques, tableaux de bord et requêtes modifiés qui ont été récemment "
-"modifiés apparaîtront ici"
-
 msgid "Recently modified"
 msgstr "Dernière modification"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Les graphiques, tableaux de bord et requêtes consultés qui ont été récemment "
-"modifiés apparaîtront ici"
-
 msgid "Recents"
 msgstr "Récents"
 
@@ -8986,11 +9276,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr ""
-"Redirige vers ce point de terminaison lorsque l'on clique sur le tableau dans la "
-"liste des tableaux."
-
 msgid "Redo the action"
 msgstr "Refaire l’action"
 
@@ -8998,15 +9283,16 @@ msgid "Reduce X ticks"
 msgstr "Réduire X points de repère"
 
 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."
+"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 ""
-"Réduit le nombre de points de repère de l’axe des abscisses à afficher. Si la "
-"valeur est définie à True, l’axe des abscisses ne débordera pas et des étiquettes "
-"pourraient être manquantes. Si elle est fausse, une largeur minimale sera "
-"appliquée aux colonnes et la largeur pourrait déborder dans un défilement "
-"horizontal."
+"Réduit le nombre de points de repère de l’axe des abscisses à afficher. "
+"Si la valeur est définie à True, l’axe des abscisses ne débordera pas et "
+"des étiquettes pourraient être manquantes. Si elle est fausse, une "
+"largeur minimale sera appliquée aux colonnes et la largeur pourrait "
+"déborder dans un défilement horizontal."
 
 msgid "Refer to the"
 msgstr "Se référer à"
@@ -9033,6 +9319,10 @@ msgstr "Intervalle d’actualisation"
 msgid "Refresh interval saved"
 msgstr "Intervalle d’actualisation enregistrée"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "Voir le schéma du tableau"
+
 msgid "Refresh the default values"
 msgstr "Actualiser les valeurs par défaut"
 
@@ -9049,16 +9339,16 @@ msgstr "Régulier"
 #, 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."
+"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·e "
-"utilisateur·rice 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 "
-"utilisateur·rice·s peuvent voir si aucun filtre RLS au sein d'un groupe de filtres "
-"ne s'appliquent à eux."
+"utilisateur·rice 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 utilisateur·rice·s peuvent voir si aucun filtre RLS au sein "
+"d'un groupe de filtres ne s'appliquent à eux."
 
 #, fuzzy
 msgid "Relational"
@@ -9097,8 +9387,10 @@ msgid "Remove table preview"
 msgstr "Supprimer la prévisualisation du tableau"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "Colonnes supprimées : %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
 
 msgid "Rename tab"
 msgstr "Renommer l'onglet"
@@ -9109,13 +9401,11 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
-#, fuzzy
-msgid "Rendering"
-msgstr "Rendu"
-
 msgid "Replace"
 msgstr "Remplacer"
 
@@ -9138,30 +9428,34 @@ msgstr "La planification de rapport n'a pas être supprimée."
 
 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."
+"L'exécution de la planification de rapport a échoué à la génération d'un "
+"csv."
 
 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 cadre de "
-"données."
+"L'exécution de la planification de rapport a échoué à la génération d'un "
+"cadre de données."
 
 #, fuzzy
 msgid "Report Schedule execution failed when generating a pdf."
 msgstr ""
-"L'exécution de la planification de rapport a échoué à la génération d'un csv."
+"L'exécution de la planification de rapport a échoué à la génération d'un "
+"csv."
 
 msgid "Report Schedule execution failed when generating a screenshot."
 msgstr ""
-"L'exécution de la planification de rapport a échoué à la génération d'une capture "
-"d’écran."
+"L'exécution de la planification de rapport a échoué à la génération d'une"
+" capture d’écran."
 
 msgid "Report Schedule execution got an unexpected error."
 msgstr ""
-"L'exécution de la planification de rapport a rencontré une erreur inattendue."
+"L'exécution de la planification de rapport a rencontré une erreur "
+"inattendue."
 
 msgid "Report Schedule is still working, refusing to re-compute."
 msgstr ""
-"La planification de rapport est toujours en cours d'exécution, recalcul refusé."
+"La planification de rapport est toujours en cours d'exécution, recalcul "
+"refusé."
 
 msgid "Report Schedule log prune failed."
 msgstr "Échec de l’élagage du journal du planification de rapport."
@@ -9226,6 +9520,9 @@ msgstr "Répulsion"
 msgid "Repulsion strength between nodes"
 msgstr "Force de répulsion entre les nœuds"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "La requête est incorrecte : %(error)s"
@@ -9262,6 +9559,10 @@ msgstr "L'opération de rééchantillonnage nécessite DatetimeIndex"
 msgid "Reset"
 msgstr "Réinitialiser"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Sélectionner une colonne"
+
 msgid "Reset state"
 msgstr "Réinitialiser l'état"
 
@@ -9287,8 +9588,12 @@ msgstr "Le programme dorsal des résultats n'est pas configuré."
 
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr ""
-"Le programme dorsal des résultats pour les requêtes asynchrones n'est pas "
-"configuré."
+"Le programme dorsal des résultats pour les requêtes asynchrones n'est pas"
+" configuré."
+
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "Récupérer les résultats"
 
 msgid "Return to specific datetime."
 msgstr "Retour à l’horodatage spécifique."
@@ -9329,36 +9634,58 @@ msgstr "Valeur droite"
 
 msgid "Right-click on a dimension value to drill to detail by that value."
 msgstr ""
-"Cliquez avec le bouton droit de la souris sur une valeur de dimension pour obtenir "
-"des informations détaillées sur cette valeur."
+"Cliquez avec le bouton droit de la souris sur une valeur de dimension "
+"pour obtenir des informations détaillées sur cette valeur."
 
 msgid "Role"
 msgstr "Rôle"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Nom de l'alerte"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "Une valeur est obligatoire"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Le nom est obligatoire"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "Ensemble de données modifé avec succès"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Rôles"
 
 #, 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."
+"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 ""
-"Les rôles sont une liste qui définit l'accès au tableau de bord. En accordant à un "
-"rôle l'accès à un tableau de bord, les contrôles au niveau de l'ensemble de "
-"données seront contournés. Si aucun rôle n'est défini, les autorisations d'accès "
-"normales s'appliquent."
+"Les rôles sont une liste qui définit l'accès au tableau de bord. En "
+"accordant à un rôle l'accès à un tableau de bord, les contrôles au niveau"
+" de l'ensemble de données seront contournés. Si aucun rôle n'est défini, "
+"les autorisations d'accès normales s'appliquent."
 
 #, 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."
+"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 ""
-"Les rôles sont une liste qui définit l'accès au tableau de bord. En accordant à un "
-"rôle l'accès à un tableau de bord, les contrôles au niveau de l'ensemble de "
-"données seront contournés. Si aucun rôle n'est défini, les autorisations d'accès "
-"normales s'appliquent."
+"Les rôles sont une liste qui définit l'accès au tableau de bord. En "
+"accordant à un rôle l'accès à un tableau de bord, les contrôles au niveau"
+" de l'ensemble de données seront contournés. Si aucun rôle n'est défini, "
+"les autorisations d'accès normales s'appliquent."
 
 #, fuzzy
 msgid "Rolling Function"
@@ -9404,10 +9731,13 @@ msgid "Row Level Security"
 msgstr "Sécurité au niveau de la rangée"
 
 #, fuzzy
-msgid "Row containing the headers to use as column names (0 is first line of data)."
+msgid ""
+"Row containing the headers to use as column names (0 is first line of "
+"data)."
 msgstr ""
-"Rangée contenant les en-têtes à utiliser comme noms de colonnes (0 est la première "
-"ligne de données). Laissez vide s'il n'y a pas de ligne d'en-tête"
+"Rangée contenant les en-têtes à utiliser comme noms de colonnes (0 est la"
+" première ligne de données). Laissez vide s'il n'y a pas de ligne d'en-"
+"tête"
 
 msgid "Row limit"
 msgstr "Nombre de rangées maximum"
@@ -9421,9 +9751,6 @@ msgstr "Rangées par page, 0 signifie aucune pagination"
 msgid "Rows subtotal position"
 msgstr "Position du sous-total des rangées"
 
-msgid "Rows to Read"
-msgstr "Rangées à lire"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "Rangées à lire"
@@ -9493,32 +9820,30 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL copié!"
 
-msgid "SQL Expression"
-msgstr "Expression SQL"
-
 msgid "SQL Lab"
 msgstr "SQL Lab"
 
-msgid "SQL Lab View"
-msgstr "Vue SQL Lab"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "Requêtes enregistrées"
 
 #, 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"
+"Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB "
+"storage space.\n"
 "To keep SQL Lab from crashing, please delete some query tabs.\n"
-"You can re-access these queries by using the Save feature before you delete the "
-"tab.\n"
+"You can re-access these queries by using the Save feature before you "
+"delete the tab.\n"
 "Note that you will need to close other SQL Lab windows before you do this."
 msgstr ""
-"SQL Lab utilise le stockage local de votre navigateur pour stocker les requêtes et "
-"les résultats. Actuellement, vous utilisez %(currentUsage)s ko sur %(maxStorage)d "
-"ko à partir de l’espace de stockage. Pour éviter que SQL Lab ne tombe en panne, "
-"veuillez supprimer certains onglets de requête. Vous pouvez accéder à nouveau à "
-"ces requêtes en utilisant la fonction Enregistrer avant de supprimer l’onglet. "
-"Veuillez noter que vous devrez fermer les autres fenêtres de SQL Lab avant de le "
-"faire."
+"SQL Lab utilise le stockage local de votre navigateur pour stocker les "
+"requêtes et les résultats. Actuellement, vous utilisez %(currentUsage)s "
+"ko sur %(maxStorage)d ko à partir de l’espace de stockage. Pour éviter "
+"que SQL Lab ne tombe en panne, veuillez supprimer certains onglets de "
+"requête. Vous pouvez accéder à nouveau à ces requêtes en utilisant la "
+"fonction Enregistrer avant de supprimer l’onglet. Veuillez noter que vous"
+" devrez fermer les autres fenêtres de SQL Lab avant de le faire."
 
 msgid "SQL Query"
 msgstr "Requête SQL"
@@ -9601,20 +9926,10 @@ msgstr "Les exemples de l'ensemble de données n'ont pas pu être récupérés."
 msgid "Samples for datasource could not be retrieved."
 msgstr "Les exemples de source de données n'ont pas pu être récupérés."
 
-msgid "Sankey"
-msgstr "Sankey"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Enregistrer le graphique"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "Diagramme Sankey"
-
-msgid "Sankey Diagram with Loops"
-msgstr "Diagramme Sankey avec boucles"
-
 #, fuzzy
 msgid "Satellite"
 msgstr "Satellite"
@@ -9681,13 +9996,10 @@ msgstr "Enregistrer ou remplacer l’ensemble de données"
 msgid "Save query"
 msgstr "Enregistrer la requête"
 
-msgid "Save the query to enable this feature"
-msgstr "Enregistrer la requête pour permettre cette fonction"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
-"Enregistrez cette requête en tant qu’ensemble de données virtuel pour continuer à "
-"explorer"
+"Enregistrez cette requête en tant qu’ensemble de données virtuel pour "
+"continuer à explorer"
 
 msgid "Saved"
 msgstr "Enregistré"
@@ -9713,6 +10025,10 @@ msgstr "Requête enregistrée introuvable."
 msgid "Saved query parameters are invalid."
 msgstr "Les paramètres des requêtes enregistrée sont invalides."
 
+#, fuzzy
+msgid "Saving..."
+msgstr "Chargement..."
+
 msgid "Scale and Move"
 msgstr "Échelle et mouvement"
 
@@ -9727,12 +10043,13 @@ msgid "Scatter Plot"
 msgstr "Deck.gl - Diagramme de dispersion"
 
 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 ""
-"Le diagramme de dispersion a l’axe horizontal en unités linéaires et les points "
-"sont connectés dans l’ordre. Il montre une relation statistique entre deux "
+"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 ""
+"Le diagramme de dispersion a l’axe horizontal en unités linéaires et les "
+"points sont connectés dans l’ordre. Il montre une relation statistique "
+"entre deux variables."
 
 msgid "Schedule"
 msgstr "Planifier"
@@ -9770,11 +10087,6 @@ msgstr "Schéma"
 msgid "Schema cache timeout"
 msgstr "Délai d'attente pour le cache du schéma dépassé"
 
-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"
-
 #, fuzzy
 msgid "Schemas allowed for File upload"
 msgstr "Schémas autorisés pour le chargement de CSV"
@@ -9796,7 +10108,9 @@ msgid "Scroll"
 msgstr "Défiler"
 
 msgid "Scroll down to the bottom to enable overwriting changes. "
-msgstr "Faites défiler vers le bas pour activer les modifications de remplacement. "
+msgstr ""
+"Faites défiler vers le bas pour activer les modifications de "
+"remplacement. "
 
 msgid "Search"
 msgstr "Rechercher"
@@ -9845,7 +10159,8 @@ msgstr "Mesure secondaire"
 
 msgid "Secondary currency format"
 msgstr ""
-"Nombre de pas entre les points de repère lors de l'affichage de l'échelle des X"
+"Nombre de pas entre les points de repère lors de l'affichage de l'échelle"
+" des X"
 
 msgid "Secondary y-axis Bounds"
 msgstr "Limites secondaires de l'axe des ordonnées"
@@ -9864,9 +10179,6 @@ msgstr "%s secondes"
 msgid "Seconds value"
 msgstr "secondes"
 
-msgid "Secure Extra"
-msgstr "Secure Extra"
-
 msgid "Secure extra"
 msgstr "Secure Extra"
 
@@ -9918,7 +10230,9 @@ msgstr "Supprimer la base de données"
 
 #, fuzzy
 msgid "Select a database table and create dataset"
-msgstr "Sélectionner une tableau de base de données et créer un ensemble de données"
+msgstr ""
+"Sélectionner une tableau de base de données et créer un ensemble de "
+"données"
 
 #, fuzzy
 msgid "Select a database table."
@@ -9952,8 +10266,8 @@ msgid "Select a metric to display on the right axis"
 msgstr "Choisir une mesure pour l'axe de droite"
 
 msgid ""
-"Select a metric to display. You can use an aggregation function on a column or "
-"write custom SQL to create a metric."
+"Select a metric to display. You can use an aggregation function on a "
+"column or write custom SQL to create a metric."
 msgstr ""
 
 #, fuzzy
@@ -9968,12 +10282,16 @@ msgstr "Sélectionner un schéma si la base de données le prend en charge"
 msgid "Select a sheet name from the uploaded file"
 msgstr "Sélectionner une base de données vers laquelle téléverser le fichier"
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Supprimer la base de données"
+
 msgid ""
-"Select a time grain for the visualization. The grain is the time interval "
-"represented by a single point on the chart."
+"Select a time grain for the visualization. The grain is the time interval"
+" represented by a single point on the chart."
 msgstr ""
-"Sélectionner une période temporelle pour la visualisation. La période est "
-"l'intervalle temporel représenté par un seul point dans le graphique."
+"Sélectionner une période temporelle pour la visualisation. La période est"
+" l'intervalle temporel représenté par un seul point dans le graphique."
 
 msgid "Select a visualization type"
 msgstr "Selectionner un type de visualisation"
@@ -9989,8 +10307,8 @@ msgstr "Sélectionner toutes les données"
 msgid "Select all items"
 msgstr "Sélectionner tous les articles"
 
-msgid "Select any columns for metadata inspection"
-msgstr "Sélectionner n’importe quelle colonne pour l’inspection des métadonnées"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 #, fuzzy
 msgid "Select catalog or type to search catalogs"
@@ -10018,8 +10336,14 @@ msgstr "Sélectionner un schéma de couleurs"
 msgid "Select column"
 msgstr "Sélectionner une colonne"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+"Sélectionnez dans la liste déroulante les noms des colonnes à analyser en"
+" tant que dates"
+
 msgid ""
-"Select columns that will be displayed in the table. You can multiselect columns."
+"Select columns that will be displayed in the table. You can multiselect "
+"columns."
 msgstr ""
 
 #, fuzzy
@@ -10049,16 +10373,18 @@ msgstr "Supprimer la base de données"
 #, fuzzy
 msgid "Select database or type to search databases"
 msgstr ""
-"Sélectionner une base de données ou un type de base de données pour effectuer une "
-"recherche"
+"Sélectionner une base de données ou un type de base de données pour "
+"effectuer une recherche"
 
 msgid ""
-"Select databases require additional fields to be completed in the Advanced tab to "
-"successfully connect the database. Learn what requirements your databases has "
+"Select databases require additional fields to be completed in the "
+"Advanced tab to successfully connect the database. Learn what "
+"requirements your databases has "
 msgstr ""
-"Certaines bases de données exigent que des champs supplémentaires soient remplis "
-"dans l'onglet Avancé pour que la connexion à la base de données soit réussie. "
-"Découvrez quelles sont les exigences de votre base de données "
+"Certaines bases de données exigent que des champs supplémentaires soient "
+"remplis dans l'onglet Avancé pour que la connexion à la base de données "
+"soit réussie. Découvrez quelles sont les exigences de votre base de "
+"données "
 
 #, fuzzy
 msgid "Select dataset source"
@@ -10082,15 +10408,15 @@ msgid "Select format"
 msgstr "Format de courriel"
 
 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."
+"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 ""
-"Select one or many metrics to display. You can use an aggregation function on a "
-"column or write custom SQL to create a metric."
+"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 "Select operator"
@@ -10113,6 +10439,14 @@ msgstr "Sélectionner la base de données ou taper le nom de l’ensemble de don
 msgid "Select owners"
 msgstr "Sélectionner les propriétaires"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Tout Dé-Sélectionner"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Sélectionner les propriétaires"
+
 msgid "Select saved metrics"
 msgstr "Sélectionner les mesures sauvegardées"
 
@@ -10128,9 +10462,19 @@ msgstr "Sélectionner le schéma ou taper le nom des schémas"
 msgid "Select scheme"
 msgstr "Sélectionner un schéma"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "Sélectionner un objet"
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Désélectionner tout"
+
 #, fuzzy
 msgid "Select table or type to search tables"
 msgstr "Sélectionner un tableau ou un type de tableau pour effectuer une recherche"
@@ -10140,47 +10484,44 @@ msgid "Select the Annotation Layer you would like to use."
 msgstr "Sélectionner la couche d'annotation que vous souhaitez utiliser."
 
 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."
+"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 ""
-"Sélectionnez les graphiques auxquels vous souhaitez appliquer des filtres croisés "
-"dans ce tableau de bord. Si vous désélectionnez un graphique, il ne sera pas "
-"filtré lors de l'application de filtres croisés à partir de n'importe quel "
-"graphique du tableau de bord. Vous pouvez sélectionner « Tous les graphiques » "
-"pour appliquer des filtres croisés à tous les graphiques qui utilisent le même "
-"ensemble de données ou contiennent le même nom de colonne dans le tableau de bord."
+"Sélectionnez les graphiques auxquels vous souhaitez appliquer des filtres"
+" croisés dans ce tableau de bord. Si vous désélectionnez un graphique, il"
+" ne sera pas filtré lors de l'application de filtres croisés à partir de "
+"n'importe quel graphique du tableau de bord. Vous pouvez sélectionner « "
+"Tous les graphiques » pour appliquer des filtres croisés à tous les "
+"graphiques qui utilisent le même ensemble de données ou contiennent le "
+"même nom de colonne dans le tableau de bord."
 
 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."
+"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 ""
-"Sélectionnez les graphiques auxquels vous souhaitez appliquer des filtres croisés "
-"lorsque vous interagissez avec ce graphique. Vous pouvez sélectionner « Tous les "
-"graphiques » pour appliquer des filtres à tous les graphiques qui utilisent le "
-"même ensemble de données ou contiennent le même nom de colonne dans le tableau de "
-"bord."
+"Sélectionnez les graphiques auxquels vous souhaitez appliquer des filtres"
+" croisés lorsque vous interagissez avec ce graphique. Vous pouvez "
+"sélectionner « Tous les graphiques » pour appliquer des filtres à tous "
+"les graphiques qui utilisent le même ensemble de données ou contiennent "
+"le même nom de colonne dans le tableau de bord."
 
 #, fuzzy
 msgid "Select the geojson column"
 msgstr "Sélectionner la colonne geojson"
 
-msgid "Select the number of bins for the histogram"
-msgstr "Sélectionner le nombre de rectangles pour l’histogramme"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "Sélectionner les colonnes numériques pour dessiner l’histogramme"
-
 #, python-format
 msgid ""
-"Select values in highlighted field(s) in the control panel. Then run the query by "
-"clicking on the %s button."
+"Select values in highlighted field(s) in the control panel. Then run the "
+"query by clicking on the %s button."
 msgstr ""
-"Sélectionnez les valeurs dans le ou les champ(s) en surbrillance dans le panneau "
-"de commande. Exécutez ensuite la requête en cliquant sur le bouton %s."
+"Sélectionnez les valeurs dans le ou les champ(s) en surbrillance dans le "
+"panneau de commande. Exécutez ensuite la requête en cliquant sur le "
+"bouton %s."
 
 #, fuzzy
 msgid "Selecting a database is required"
@@ -10199,9 +10540,6 @@ msgstr "Envoyer comme PNG"
 msgid "Send as text"
 msgstr "Envoyer comme fichier texte"
 
-msgid "Send range filter events to other charts"
-msgstr "Envoyer des événements de filtre de plage à d'autres graphiques"
-
 msgid "September"
 msgstr "Septembre"
 
@@ -10215,14 +10553,6 @@ msgstr "Série"
 msgid "Series Height"
 msgstr "Hauteur de série"
 
-#, fuzzy
-msgid "Series Limit Sort By"
-msgstr "Classer par limite de série"
-
-#, fuzzy
-msgid "Series Limit Sort Descending"
-msgstr "Classer par limite de série, descendant"
-
 #, fuzzy
 msgid "Series Order"
 msgstr "Ordre de série"
@@ -10254,6 +10584,10 @@ msgstr "Pagination du serveur"
 msgid "Service Account"
 msgstr "Compte de service"
 
+#, fuzzy
+msgid "Service version"
+msgstr "Compte de service"
+
 msgid "Set auto-refresh interval"
 msgstr "Définir l'intervalle de rafraîchissement automatique"
 
@@ -10272,11 +10606,12 @@ msgstr ""
 
 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."
+"        represented by one ring with the innermost circle as the top of "
+"the hierarchy."
 msgstr ""
-"Définit les niveaux de hiérarchie du graphique. Chaque niveau est représenté par "
-"un anneau, le cercle le plus à l'intérieur étant le sommet de la hiérarchie."
+"Définit les niveaux de hiérarchie du graphique. Chaque niveau est "
+"représenté par un anneau, le cercle le plus à l'intérieur étant le sommet"
+" de la hiérarchie."
 
 msgid "Settings"
 msgstr "Paramètres"
@@ -10284,6 +10619,10 @@ msgstr "Paramètres"
 msgid "Settings for time series"
 msgstr "Paramètres pour les séries temporelles"
 
+#, fuzzy
+msgid "Shape"
+msgstr "Forme circulaire"
+
 msgid "Share"
 msgstr "Partager"
 
@@ -10315,25 +10654,25 @@ msgid "Short description must be unique for this layer"
 msgstr "La description courte doit être unique pour cette couche"
 
 msgid ""
-"Should daily seasonality be applied. An integer value will specify Fourier order "
-"of seasonality."
+"Should daily seasonality be applied. An integer value will specify "
+"Fourier order of seasonality."
 msgstr ""
 "La saisonnalité quotidienne doit-elle être appliquée? Une valeur entière "
 "spécifiera l'ordre Fourier de la saisonnalité."
 
 msgid ""
-"Should weekly seasonality be applied. An integer value will specify Fourier order "
-"of seasonality."
+"Should weekly seasonality be applied. An integer value will specify "
+"Fourier order of seasonality."
 msgstr ""
-"La saisonnalité hebdomadaire doit-elle être appliquée? Une valeur entière "
-"spécifiera l'ordre Fourier de la saisonnalité."
+"La saisonnalité hebdomadaire doit-elle être appliquée? Une valeur entière"
+" spécifiera l'ordre Fourier de la saisonnalité."
 
 msgid ""
-"Should yearly seasonality be applied. An integer value will specify Fourier order "
-"of seasonality."
+"Should yearly seasonality be applied. An integer value will specify "
+"Fourier order of seasonality."
 msgstr ""
-"La saisonnalité annuelle doit-elle être appliquée? Une valeur entière spécifiera "
-"l'ordre Fourier de la saisonnalité."
+"La saisonnalité annuelle doit-elle être appliquée? Une valeur entière "
+"spécifiera l'ordre Fourier de la saisonnalité."
 
 msgid "Show"
 msgstr "Afficher"
@@ -10353,18 +10692,9 @@ msgstr "Afficher l’énoncé CREATE VIEW"
 msgid "Show Cell bars"
 msgstr "Afficher les barres de cellules"
 
-msgid "Show Chart"
-msgstr "Afficher le graphique"
-
-msgid "Show Column"
-msgstr "Afficher la colonne"
-
 msgid "Show Dashboard"
 msgstr "Afficher le tableau de bord"
 
-msgid "Show Database"
-msgstr "Afficher la base de données"
-
 #, fuzzy
 msgid "Show Labels"
 msgstr "Afficher les tables"
@@ -10375,9 +10705,6 @@ msgstr "Afficher les journaux"
 msgid "Show Markers"
 msgstr "Afficher les marqueurs"
 
-msgid "Show Metric"
-msgstr "Afficher la mesure"
-
 #, fuzzy
 msgid "Show Metric Names"
 msgstr "Afficher les noms de mesure"
@@ -10386,9 +10713,6 @@ msgstr "Afficher les noms de mesure"
 msgid "Show Range Filter"
 msgstr "Afficher le filtre d’intervalle"
 
-msgid "Show Table"
-msgstr "Afficher les tableaux"
-
 #, fuzzy
 msgid "Show Timestamp"
 msgstr "Afficher l'horodatage"
@@ -10419,20 +10743,17 @@ msgid "Show Y-axis"
 msgstr "Afficher l’axe des ordonnées"
 
 msgid ""
-"Show Y-axis on the sparkline. Will display the manually set min/max if set or min/"
-"max values in the data otherwise."
+"Show Y-axis on the sparkline. Will display the manually set min/max if "
+"set or min/max values in the data otherwise."
 msgstr ""
-"Afficher l’axe des ordonnées sur la ligne de la bougie. Les valeurs min/max "
-"définies manuellement s’afficheront si elles sont définies ou autrement min/max "
-"dans les données."
+"Afficher l’axe des ordonnées sur la ligne de la bougie. Les valeurs "
+"min/max définies manuellement s’afficheront si elles sont définies ou "
+"autrement min/max dans les données."
 
 #, fuzzy
 msgid "Show all columns"
 msgstr "Afficher toutes les colonnes"
 
-msgid "Show all..."
-msgstr "Afficher tout…"
-
 msgid "Show axis line ticks"
 msgstr "Afficher les coches de ligne d’axe"
 
@@ -10453,18 +10774,24 @@ msgstr "Afficher le total des colonnes"
 
 msgid "Show data points as circle markers on the lines"
 msgstr ""
-"Afficher les points de données sous forme de marqueurs circulaires sur les lignes"
+"Afficher les points de données sous forme de marqueurs circulaires sur "
+"les lignes"
 
 #, fuzzy
 msgid "Show empty columns"
 msgstr "Afficher les colonnes libres"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "Afficher la mesure"
+
 msgid ""
-"Show hierarchical relationships of data, with the value represented by area, "
-"showing proportion and contribution to the whole."
+"Show hierarchical relationships of data, with the value represented by "
+"area, showing proportion and contribution to the whole."
 msgstr ""
-"Afficher les relations hiérarchiques des données, avec la valeur représentée par "
-"aire, montrant la proportion et la contribution à l’ensemble."
+"Afficher les relations hiérarchiques des données, avec la valeur "
+"représentée par aire, montrant la proportion et la contribution à "
+"l’ensemble."
 
 msgid "Show info tooltip"
 msgstr "Afficher l'info-bulle"
@@ -10483,9 +10810,6 @@ msgstr "Afficher la légende"
 msgid "Show less columns"
 msgstr "Afficher moins de colonne"
 
-msgid "Show less..."
-msgstr "Afficher moins…"
-
 msgid "Show minor ticks on axes."
 msgstr ""
 
@@ -10527,54 +10851,61 @@ msgstr "Afficher les marqueurs"
 msgid "Show the value on top of the bar"
 msgstr "Afficher la valeur en haut de la barre"
 
+#, fuzzy
+msgid "Show total"
+msgstr "Afficher le total"
+
 msgid ""
-"Show total aggregations of selected metrics. Note that row limit does not apply to "
-"the result."
+"Show total aggregations of selected metrics. Note that row limit does not"
+" apply to the result."
 msgstr ""
-"Afficher les agrégats totaux des mesures sélectionnées. Notez que la limite de "
-"ligne ne s’applique pas au résultat."
+"Afficher les agrégats totaux des mesures sélectionnées. Notez que la "
+"limite de ligne ne s’applique pas au résultat."
 
 msgid ""
-"Showcases a single metric front-and-center. Big number is best used to call "
-"attention to a KPI or the one thing you want your audience to focus on."
+"Showcases a single metric front-and-center. Big number is best used to "
+"call attention to a KPI or the one thing you want your audience to focus "
+"on."
 msgstr ""
-"Présente une seule mesure au premier plan. Il est préférable d’utiliser un grand "
-"chiffre pour attirer l’attention sur un ICR ou sur la chose sur laquelle vous "
-"voulez que votre public se concentre."
+"Présente une seule mesure au premier plan. Il est préférable d’utiliser "
+"un grand chiffre pour attirer l’attention sur un ICR ou sur la chose sur "
+"laquelle vous voulez que votre public se concentre."
 
 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."
+"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 ""
-"Présente un seul chiffre accompagné d’un graphique linéaire simple pour attirer "
-"l’attention sur une mesure importante ainsi que son changement au fil du temps ou "
-"d’autres dimensions."
+"Présente un seul chiffre accompagné d’un graphique linéaire simple pour "
+"attirer l’attention sur une mesure importante ainsi que son changement au"
+" fil du temps ou d’autres dimensions."
 
 msgid ""
-"Showcases how a metric changes as the funnel progresses. This classic chart is "
-"useful for visualizing drop-off between stages in a pipeline or lifecycle."
+"Showcases how a metric changes as the funnel progresses. This classic "
+"chart is useful for visualizing drop-off between stages in a pipeline or "
+"lifecycle."
 msgstr ""
-"Montre comment une mesure change au fur et à mesure que l’entonnoir progresse. Ce "
-"graphique classique est utile pour visualiser la baisse entre les étapes d'un "
-"pipeline ou d'un cycle de vie."
+"Montre comment une mesure change au fur et à mesure que l’entonnoir "
+"progresse. Ce graphique classique est utile pour visualiser la baisse "
+"entre les étapes d'un pipeline ou d'un cycle de vie."
 
 msgid ""
-"Showcases the flow or link between categories using thickness of chords. The value "
-"and corresponding thickness can be different for each side."
+"Showcases the flow or link between categories using thickness of chords. "
+"The value and corresponding thickness can be different for each side."
 msgstr ""
-"Met en évidence le flux ou le lien entre les catégories en utilisant l'épaisseur "
-"des accords. La valeur et l'épaisseur correspondante peuvent être différentes pour "
-"chaque côté."
+"Met en évidence le flux ou le lien entre les catégories en utilisant "
+"l'épaisseur des accords. La valeur et l'épaisseur correspondante peuvent "
+"être différentes pour chaque côté."
 
 msgid ""
-"Showcases the progress of a single metric against a given target. The higher the "
-"fill, the closer the metric is to the target."
+"Showcases the progress of a single metric against a given target. The "
+"higher the fill, the closer the metric is to the target."
 msgstr ""
-"Affiche la progression d’une seule mesure par rapport à une cible donnée. Plus le "
-"remplissage est élevé, plus la mesure est proche de la cible."
+"Affiche la progression d’une seule mesure par rapport à une cible donnée."
+" Plus le remplissage est élevé, plus la mesure est proche de la cible."
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "Affichage de %s sur %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -10591,7 +10922,8 @@ msgstr "Simple"
 
 msgid "Simple ad-hoc metrics are not enabled for this dataset"
 msgstr ""
-"Les mesures ponctuelles simples ne sont pas activées pour cet ensemble de données"
+"Les mesures ponctuelles simples ne sont pas activées pour cet ensemble de"
+" données"
 
 #, fuzzy
 msgid "Single"
@@ -10612,23 +10944,21 @@ msgstr "Valeur unique"
 msgid "Single value type"
 msgstr "Type de valeur unique"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "Définit la taille de la grille en pixels"
+
 msgid "Size of edge symbols"
 msgstr "Taille des symboles de bord"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "Taille du marqueur. S’applique également aux observations prévisionnelles."
 
-msgid "Sizes of vehicles"
-msgstr "Tailles des véhicules"
-
-msgid "Skip Rows"
-msgstr "Sauter des rangées"
-
 #, 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 Pas un "
-"nombre."
+"Sauter les lignes vides au lieu des les interpréter comme des valeurs Pas"
+" un nombre."
 
 #, fuzzy
 msgid "Skip rows"
@@ -10651,11 +10981,12 @@ msgid "Smooth Line"
 msgstr "Ligne lisse"
 
 msgid ""
-"Smooth-line is a variation of the line chart. Without angles and hard edges, "
-"Smooth-line sometimes looks smarter and more professional."
+"Smooth-line is a variation of the line chart. Without angles and hard "
+"edges, Smooth-line sometimes looks smarter and more professional."
 msgstr ""
-"La ligne lisse est une variation du graphique linéaire. Sans angles et bords durs, "
-"la ligne lisse semble parfois plus intelligente et plus professionnelle."
+"La ligne lisse est une variation du graphique linéaire. Sans angles et "
+"bords durs, la ligne lisse semble parfois plus intelligente et plus "
+"professionnelle."
 
 msgid "Solid"
 msgstr "Solide"
@@ -10664,8 +10995,8 @@ msgid "Some roles do not exist"
 msgstr "Des profils n'existent pas"
 
 msgid ""
-"Something went wrong with embedded authentication. Check the dev console for "
-"details."
+"Something went wrong with embedded authentication. Check the dev console "
+"for details."
 msgstr ""
 
 #, fuzzy
@@ -10675,8 +11006,8 @@ msgstr "Une erreur est survenue."
 #, 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"
+"Désolé, une erreur s'est produite lors de la récupération des "
+"informations de cette base de données : %s"
 
 msgid "Sorry there was an error fetching saved charts: "
 msgstr ""
@@ -10700,7 +11031,9 @@ msgstr "Désolé, une erreur inconnue s'est produite."
 
 #, fuzzy
 msgid "Sorry, something went wrong. Embedding could not be deactivated."
-msgstr "Désolé, un problème s'est produit. L'intégration n'a pas pu être désactivée."
+msgstr ""
+"Désolé, un problème s'est produit. L'intégration n'a pas pu être "
+"désactivée."
 
 #, fuzzy
 msgid "Sorry, something went wrong. Please try again."
@@ -10709,9 +11042,6 @@ msgstr "Une erreur s'est produite. Ré essayez plus tard."
 msgid "Sorry, something went wrong. Try again later."
 msgstr "Une erreur s'est produite. Réessayez plus tard."
 
-msgid "Sorry, there appears to be no data"
-msgstr "Désolé, il ne semble pas y avoir de données"
-
 #, fuzzy, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr ""
@@ -10733,10 +11063,6 @@ msgstr "Désolé, votre navigateur ne supporte pas la copie. Utilisez Ctrl/Cmd +
 msgid "Sort"
 msgstr "Trier"
 
-#, fuzzy
-msgid "Sort Bars"
-msgstr "Trier les barres"
-
 #, fuzzy
 msgid "Sort Descending"
 msgstr "Trier par ordre décroissant "
@@ -10761,9 +11087,6 @@ msgstr "Trier l’axe des ordonnées"
 msgid "Sort ascending"
 msgstr "Trier par ordre croissant"
 
-msgid "Sort bars by x labels."
-msgstr "Trier les barres par étiquettes x."
-
 msgid "Sort by"
 msgstr "Trier par"
 
@@ -10791,6 +11114,10 @@ msgstr "Trier les valeurs de filtre"
 msgid "Sort metric"
 msgstr "Trier les mesures"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "Exporter la requête"
+
 #, fuzzy
 msgid "Sort rows by"
 msgstr "Trier les rangées par"
@@ -10804,10 +11131,6 @@ msgstr "Trier par type"
 msgid "Source"
 msgstr "Source"
 
-#, fuzzy
-msgid "Source / Target"
-msgstr "Source / cible"
-
 msgid "Source SQL"
 msgstr "SQL source"
 
@@ -10832,11 +11155,11 @@ msgstr "Spécifiezrle nom pour le schéma CREATE VIEW AS dans : public"
 
 #, fuzzy
 msgid ""
-"Specify the database version. This is used with Presto for query cost estimation, "
-"and Dremio for syntax changes, among others."
+"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."
+"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."
 
 #, fuzzy
 msgid "Split number"
@@ -10858,9 +11181,6 @@ msgstr "Milles carrés"
 msgid "Stack"
 msgstr "Empiler"
 
-msgid "Stack Trace:"
-msgstr "Stack Trace :"
-
 msgid "Stack series"
 msgstr "Série de piles"
 
@@ -10877,9 +11197,6 @@ msgstr "Barres empilées"
 msgid "Stacked Style"
 msgstr "Style empilé"
 
-msgid "Stacked style"
-msgstr "Style empilé"
-
 msgid "Standard time series"
 msgstr "Série de temps standard"
 
@@ -10911,10 +11228,12 @@ msgstr "Date de début incluse de l'intervalle de temps"
 msgid "Start y-axis at 0"
 msgstr "Commencer l’axe des ordonnées à 0"
 
-msgid "Start y-axis at zero. Uncheck to start y-axis at minimum value in the data."
+msgid ""
+"Start y-axis at zero. Uncheck to start y-axis at minimum value in the "
+"data."
 msgstr ""
-"Commencer l’axe des ordonnées à zéro. Décochez pour démarrer l’axe des ordonnées à "
-"la valeur minimale dans les données."
+"Commencer l’axe des ordonnées à zéro. Décochez pour démarrer l’axe des "
+"ordonnées à la valeur minimale dans les données."
 
 #, fuzzy
 msgid "Started"
@@ -10951,14 +11270,16 @@ msgid "Stepped Line"
 msgstr "Ligne en escalier"
 
 msgid ""
-"Stepped-line graph (also called step chart) is a variation of line chart but with "
-"the line forming a series of steps between data points. A step chart can be useful "
-"when you want to show the changes that occur at irregular intervals."
+"Stepped-line graph (also called step chart) is a variation of line chart "
+"but with the line forming a series of steps between data points. A step "
+"chart can be useful when you want to show the changes that occur at "
+"irregular intervals."
 msgstr ""
-"Le graphique à lignes en escalier (également appelé graphique à étapes) est une "
-"variation du graphique linéaire, mais la ligne formant une série d’étapes entre "
-"les points de données. Un tableau des étapes peut être utile lorsque vous voulez "
-"afficher les changements qui se produisent à des intervalles irréguliers."
+"Le graphique à lignes en escalier (également appelé graphique à étapes) "
+"est une variation du graphique linéaire, mais la ligne formant une série "
+"d’étapes entre les points de données. Un tableau des étapes peut être "
+"utile lorsque vous voulez afficher les changements qui se produisent à "
+"des intervalles irréguliers."
 
 msgid "Stop"
 msgstr "Arrêter"
@@ -10987,10 +11308,6 @@ msgstr "Rues"
 msgid "Strength to pull the graph toward center"
 msgstr "Force pour tirer le graphique vers le centre"
 
-#, fuzzy
-msgid "Stretched style"
-msgstr "Style étiré"
-
 #, fuzzy
 msgid "Stroke Color"
 msgstr "Couleur du trait"
@@ -11015,16 +11332,20 @@ msgstr "Modifier les extrémités de la barre de progression avec un capuchon ro
 msgid "Subdomain"
 msgstr "Sous-domaine"
 
-#, fuzzy
-msgid "Subheader"
-msgstr "Sous-titre"
-
 msgid "Subheader Font Size"
 msgstr "Taille de la police du sous-titre"
 
 msgid "Submit"
 msgstr "Soumettre"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "Titre de l’onglet"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Taille de la bulle"
+
 msgid "Subtotal"
 msgstr "Sous-total"
 
@@ -11080,9 +11401,6 @@ msgstr "Documentation Superset SDK intégrée."
 msgid "Superset chart"
 msgstr "Graphique Superset"
 
-msgid "Superset dashboard"
-msgstr "Tableau de bord de Superset"
-
 msgid "Superset encountered an error while running a command."
 msgstr "Superset a rencontré une erreur lors de l'exécution d'une commande."
 
@@ -11093,9 +11411,6 @@ msgstr "Superset a rencontré une erreur inattendue."
 msgid "Supported databases"
 msgstr "Bases de données prises en charge"
 
-msgid "Survey Responses"
-msgstr "Réponses à l'enquête"
-
 #, fuzzy
 msgid "Swap dataset"
 msgstr "Échanger l'ensembles de données"
@@ -11104,13 +11419,20 @@ msgid "Swap rows and columns"
 msgstr "Échanger les rangées et les colonnes"
 
 msgid ""
-"Swiss army knife for visualizing data. Choose between step, line, scatter, and bar "
-"charts. This viz type has many customization options as well."
+"Swiss army knife for visualizing data. Choose between step, line, "
+"scatter, and bar charts. This viz type has many customization options as "
+"well."
+msgstr ""
+"Couteau suisse pour la visualisation des données. Vous avez le choix "
+"entre des diagrammes en escalier, des diagrammes linéaires, des "
+"diagrammes de dispersion et des diagrammes à barres. Ce type d'affichage "
+"dispose également de nombreuses options de personnalisation."
+
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
 msgstr ""
-"Couteau suisse pour la visualisation des données. Vous avez le choix entre des "
-"diagrammes en escalier, des diagrammes linéaires, des diagrammes de dispersion et "
-"des diagrammes à barres. Ce type d'affichage dispose également de nombreuses "
-"options de personnalisation."
 
 #, fuzzy
 msgid "Symbol"
@@ -11123,24 +11445,32 @@ msgstr "Symbôle des deux extrémités de la ligne de bord"
 msgid "Symbol size"
 msgstr "Taille du symbôle"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "Synchroniser les colonnes de la source"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "Syntaxe"
 
 #, python-format
 msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s"
 msgstr ""
-"Erreur de syntaxe : %(qualifier)s entrée « %(input)s » en attente « %(expected)s"
+"Erreur de syntaxe : %(qualifier)s entrée « %(input)s » en attente « "
+"%(expected)s"
 
 msgid "TABLES"
 msgstr "TABLEAUX"
 
-#, fuzzy
-msgid "TEMPORAL X-AXIS"
-msgstr "AXE DES ABSISSES TEMPOREL"
-
 #, fuzzy
 msgid "TEMPORAL_RANGE"
 msgstr "TEMPORAL_RANGE"
@@ -11176,12 +11506,16 @@ msgid ""
 "Table [%(table)s] could not be found, please double check your database "
 "connection, schema, and table name"
 msgstr ""
-"La tableau [%(table_name)s] n'a pu être trouvé, vérifiez à nouveau votre connexion "
-"à votre base de données, le schéma et le nom du tableau"
+"La tableau [%(table_name)s] n'a pu être trouvé, vérifiez à nouveau votre "
+"connexion à votre base de données, le schéma et le nom du tableau"
+
+#, fuzzy
+msgid "Table actions"
+msgstr "Colonnex du tableau"
 
 msgid ""
-"Table already exists. You can change your 'if table already exists' strategy to "
-"append or replace or provide a different Table Name to use."
+"Table already exists. You can change your 'if table already exists' "
+"strategy to append or replace or provide a different Table Name to use."
 msgstr ""
 
 msgid "Table cache timeout"
@@ -11191,6 +11525,10 @@ msgstr "Délai d'attente du cache du tableau dépassé"
 msgid "Table columns"
 msgstr "Colonnex du tableau"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Nom du tableau"
+
 msgid "Table name undefined"
 msgstr "Nom du tableau non défini"
 
@@ -11199,11 +11537,11 @@ msgid "Table or View \"%(table)s\" does not exist."
 msgstr "Le tableau ou la vue « %(table)s » n'existe pas."
 
 msgid ""
-"Table that visualizes paired t-tests, which are used to understand statistical "
-"differences between groups."
+"Table that visualizes paired t-tests, which are used to understand "
+"statistical differences between groups."
 msgstr ""
-"Tableau qui visualise les tests T appariés, qui sont utilisés pour comprendre les "
-"différences statistiques entre les groupes."
+"Tableau qui visualise les tests T appariés, qui sont utilisés pour "
+"comprendre les différences statistiques entre les groupes."
 
 msgid "Tables"
 msgstr "Tableaux"
@@ -11263,13 +11601,6 @@ msgstr "L'objet identifié n'a pas pu être supprimé."
 msgid "Tags"
 msgstr "Balises"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the densest areas "
-"of information lie"
-msgstr ""
-"Prenez vos points de données et regroupez-les en « rectangles » pour voir où se "
-"trouvent les zones d’information les plus denses"
-
 #, fuzzy
 msgid "Target"
 msgstr "Cible"
@@ -11293,19 +11624,24 @@ msgid "Template parameters"
 msgstr "Paramètres du modèle"
 
 msgid ""
-"Templated link, it's possible to include {{ metric }} or other values coming from "
-"the controls."
+"Templated link, it's possible to include {{ metric }} or other values "
+"coming from the controls."
 msgstr ""
-"Lien template, il est possible d'inclure {{ metric }} or autres valeurs provenant "
-"de ces contrôles."
+"Lien template, il est possible d'inclure {{ metric }} or autres valeurs "
+"provenant de ces contrôles."
+
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "Est temporel"
 
 msgid ""
-"Terminate running queries when browser window closed or navigated to another page. "
-"Available for Presto, Hive, MySQL, Postgres and Snowflake databases."
+"Terminate running queries when browser window closed or navigated to "
+"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
+"databases."
 msgstr ""
-"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."
+"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."
 
 msgid "Test Connection"
 msgstr "Test de connexion"
@@ -11330,36 +11666,35 @@ msgid "The API response from %s does not match the IDatabaseTable interface."
 msgstr "La réponse API de %s ne correspond pas à l’interface IDatabaseTable."
 
 msgid ""
-"The CSS for individual dashboards can be altered here, or in the dashboard view "
-"where changes are immediately visible"
+"The CSS for individual dashboards can be altered here, or in the "
+"dashboard view where changes are immediately visible"
 msgstr ""
-"Le Css pour certains tableaux de bords peut être modifié ici, ou dans la vue de "
-"tableau de bord pour que les changement soient visibles immédiatement"
+"Le Css pour certains tableaux de bords peut être modifié ici, ou dans la "
+"vue de tableau de bord pour que les changement soient visibles "
+"immédiatement"
 
 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 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 ""
-"La requête CTAS (create table as select) ne comporte pas d'instruction SELECT à la "
-"fin. Assurez-vous que votre requête comporte une instruction SELECT à la fin. "
-"Ensuite, essayez d'exécuter à nouveau votre requête."
+"La requête CTAS (create table as select) ne comporte pas d'instruction "
+"SELECT à la fin. Assurez-vous que votre requête comporte une instruction "
+"SELECT à la fin. Ensuite, essayez d'exécuter à nouveau votre requête."
 
 msgid ""
-"The GeoJsonLayer takes in GeoJSON formatted data and renders it as interactive "
-"polygons, lines and points (circles, icons and/or texts)."
-msgstr ""
-"La couche GeoJsonLayer reçoit des données au format GeoJSON et les restitue sous "
-"forme de polygones, de lignes et de points interactifs (cercles, icônes et/ou "
-"textes)."
-
-msgid "The SQL is invalid and cannot be parsed."
+"The GeoJsonLayer takes in GeoJSON formatted data and renders it as "
+"interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
+"La couche GeoJsonLayer reçoit des données au format GeoJSON et les "
+"restitue sous forme de polygones, de lignes et de points interactifs "
+"(cercles, icônes et/ou textes)."
 
 msgid ""
-"The Sankey chart visually tracks the movement and transformation of values across\n"
-"          system stages. Nodes represent stages, connected by links depicting "
-"value flow. Node\n"
+"The Sankey chart visually tracks the movement and transformation of "
+"values across\n"
+"          system stages. Nodes represent stages, connected by links "
+"depicting value flow. Node\n"
 "          height corresponds to the visualized metric, providing a clear "
 "representation of\n"
 "          value distribution and transformation."
@@ -11372,13 +11707,14 @@ msgid "The X-axis is not on the filters list"
 msgstr "L’axe des absisses ne figure pas dans la liste des filtres"
 
 msgid ""
-"The X-axis is not on the filters list which will prevent it from being used in\n"
-"            time range filters in dashboards. Would you like to add it to the "
-"filters list?"
+"The X-axis is not on the filters list which will prevent it from being "
+"used in\n"
+"            time range filters in dashboards. Would you like to add it to"
+" the filters list?"
 msgstr ""
-"L’axe des absisses ne figure pas dans la liste des filtres, ce qui l’empêchera "
-"d’être utilisé dans les filtres de plage de temps dans les tableaux de bord. "
-"Voulez-vous l’ajouter à la liste des filtres?"
+"L’axe des absisses ne figure pas dans la liste des filtres, ce qui "
+"l’empêchera d’être utilisé dans les filtres de plage de temps dans les "
+"tableaux de bord. Voulez-vous l’ajouter à la liste des filtres?"
 
 msgid "The annotation has been saved"
 msgstr "Cette annotation a été sauvegardée"
@@ -11386,12 +11722,16 @@ msgstr "Cette annotation a été sauvegardée"
 msgid "The annotation has been updated"
 msgstr "Cette annotation a été modifiée"
 
+#, fuzzy
+msgid "The background color of the charts."
+msgstr "Ajouter le nom du graphique"
+
 msgid ""
-"The category of source nodes used to assign colors. If a node is associated with "
-"more than one category, only the first will be used."
+"The category of source nodes used to assign colors. If a node is "
+"associated with more than one category, only the first will be used."
 msgstr ""
-"La catégorie de nœuds sources utilisée pour attribuer des couleurs. Si un nœud est "
-"associé à plus d’une catégorie, seul le premier sera utilisé."
+"La catégorie de nœuds sources utilisée pour attribuer des couleurs. Si un"
+" nœud est associé à plus d’une catégorie, seul le premier sera utilisé."
 
 #, fuzzy
 msgid "The chart datasource does not exist"
@@ -11405,23 +11745,29 @@ msgid "The chart query context does not exist"
 msgstr "Le graphique n'existe pas"
 
 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"
+"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 ""
-"Le classique. Il est idéal pour montrer la part de chaque investisseur dans la "
-"société, les groupes démographiques qui suivent votre blog ou la part du budget "
-"allouée au complexe militaro-industriel.        Les diagrammes circulaires peuvent "
-"être difficiles à interpréter avec précision. Si la clarté des proportions "
-"relatives est importante, envisagez plutôt d'utiliser un diagramme à barres ou un "
-"autre type de diagramme."
+"        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 ""
+"Le classique. Il est idéal pour montrer la part de chaque investisseur "
+"dans la société, les groupes démographiques qui suivent votre blog ou la "
+"part du budget allouée au complexe militaro-industriel.        Les "
+"diagrammes circulaires peuvent être difficiles à interpréter avec "
+"précision. Si la clarté des proportions relatives est importante, "
+"envisagez plutôt d'utiliser un diagramme à barres ou un autre type de "
+"diagramme."
 
 msgid "The color for points and clusters in RGB"
 msgstr "La couleur des points et des grappes en RVB"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "Métrique servant à trier les résultats"
+
 #, fuzzy
 msgid "The color of the isoband"
 msgstr "Métrique servant à trier les résultats"
@@ -11437,8 +11783,19 @@ msgid ""
 "The color scheme is determined by the related dashboard.\n"
 "        Edit the color scheme in the dashboard properties."
 msgstr ""
-"La palette de couleurs est déterminée par le tableau de bord correspondant.        "
-"Modifiez la palette de couleurs dans les propriétés du tableau de bord."
+"La palette de couleurs est déterminée par le tableau de bord "
+"correspondant.        Modifiez la palette de couleurs dans les propriétés"
+" du tableau de bord."
+
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+"Ce schéma de couleurs est remplacé par des couleurs d’étiquettes "
+"personnalisées.    Vérifiez les métadonnées JSON dans les paramètres "
+"avancés"
 
 #, fuzzy
 msgid "The column header label"
@@ -11453,10 +11810,18 @@ msgstr ""
 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 "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
-"The country code standard that Superset should expect to find in the [country] "
-"column"
-msgstr "Le code pays standard que Superset s'attend à trouver dans la colonne [pays]"
+"The country code standard that Superset should expect to find in the "
+"[country] column"
+msgstr ""
+"Le code pays standard que Superset s'attend à trouver dans la colonne "
+"[pays]"
 
 msgid "The dashboard has been saved"
 msgstr "Ce tableau de bord a été sauvegardé"
@@ -11464,30 +11829,15 @@ msgstr "Ce tableau de bord a été sauvegardé"
 msgid "The data source seems to have been deleted"
 msgstr "La source de données semble avoir été effacée"
 
-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."
-
-#, 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 "
-"brisera ces objets."
+#, fuzzy
+msgid "The database"
+msgstr "Supprimer la base de données"
 
 #, fuzzy
 msgid "The database columns that contains lines information"
 msgstr ""
-"Les colonnes de la base de données qui contiennent les informations sur les lignes"
+"Les colonnes de la base de données qui contiennent les informations sur "
+"les lignes"
 
 #, fuzzy
 msgid "The database could not be found"
@@ -11503,8 +11853,9 @@ 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. Veuillez "
-"contacter un administrateur pour obtenir davantage d'aide ou essayez à nouveau."
+"Impossible de trouver la base de données référencée dans cette requête. "
+"Veuillez contacter un administrateur pour obtenir davantage d'aide ou "
+"essayez à nouveau."
 
 msgid "The database returned an unexpected error."
 msgstr "La base de données a renvoyé une erreur inattendue."
@@ -11519,14 +11870,9 @@ msgstr "La base de données a été supprimée."
 msgid "The database was not found."
 msgstr "Base de données introuvable."
 
-#, 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 ""
-"L'ensemble de données %s est lié aux graphiques %s qui apparaissent dans %s "
-"tableaux de bord. Êtes-vous sûr de vouloir continuer? La suppression de l'ensemble "
-"de données brisera ces objets."
+#, fuzzy
+msgid "The dataset"
+msgstr "Nouvel ensemble de données"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "L’ensemble de donnée associé à ce graphique n'existe plus"
@@ -11544,10 +11890,10 @@ msgid ""
 "                here may affect other charts\n"
 "                in undesirable ways."
 msgstr ""
-"La configuration du jeu de donnée indiqué ici                s'applique à tous les "
-"graphiques utilisant ce ensemble de données.                Rappelez vous que "
-"changer ces paramètres                peut affecter d'autres "
-"graphiques                de manière non voulue."
+"La configuration du jeu de donnée indiqué ici                s'applique à"
+" tous les graphiques utilisant ce ensemble de données.                "
+"Rappelez vous que changer ces paramètres                peut affecter "
+"d'autres graphiques                de manière non voulue."
 
 msgid "The dataset has been saved"
 msgstr "L’ensemble de données a été sauvegardé"
@@ -11568,74 +11914,92 @@ msgid "The default schema that should be used for the connection."
 msgstr ""
 
 msgid ""
-"The description can be displayed as widget headers in the dashboard view. Supports "
-"markdown."
+"The description can be displayed as widget headers in the dashboard view."
+" Supports markdown."
 msgstr ""
-"La description peut être affichée comme des widgets d'entête dans la vue tableau "
-"de bord. Prend en charge le Markdown."
+"La description peut être affichée comme des widgets d'entête dans la vue "
+"tableau de bord. Prend en charge le Markdown."
 
 msgid "The distance between cells, in pixels"
 msgstr "La distance entre les cellules, en pixels"
 
 #, fuzzy
 msgid ""
-"The duration of time in seconds before the cache is invalidated. Set to -1 to "
-"bypass the cache."
+"The duration of time in seconds before the cache is invalidated. Set to "
+"-1 to bypass the cache."
 msgstr ""
-"Durée en secondes avant l'invalidation du cache. La valeur -1 permet de contourner "
-"le cache."
+"Durée en secondes avant l'invalidation du cache. La valeur -1 permet de "
+"contourner le cache."
 
 #, fuzzy
 msgid "The encoding format of the lines"
 msgstr "Mesure servant à trier les résultats"
 
 msgid ""
-"The engine_params object gets unpacked into the sqlalchemy.create_engine call."
+"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 appel."
+
+msgid "The exponent to compute all sizes from. \"EXP\" only"
 msgstr ""
-"L'objet engine_params contient les paramètres envoyés à sqlalchemy.create_engine "
-"appel."
 
-#, python-format
 msgid ""
-"The following entries in `series_columns` are missing in `columns`: %(columns)s. "
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
 msgstr ""
-"Les entrées suivantes dans « series_columns » sont manquantes dans « columns » : "
+
+#, 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. "
 
 #, python-format
 msgid ""
 "The following filters have the 'Select first filter value by default'\n"
-"                    option checked and could not be loaded, which is preventing "
-"the dashboard\n"
+"                    option checked and could not be loaded, which is "
+"preventing the dashboard\n"
 "                    from rendering: %s"
 msgstr ""
 
 msgid "The function to use when aggregating points into groups"
 msgstr "La fonction à utiliser lors de l’agrégation de points en groupes"
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
-"          representing the frequency or count of values within different ranges or "
-"bins.\n"
-"          It helps visualize patterns, clusters, and outliers in the data and "
-"provides\n"
+"          representing the frequency or count of values within different "
+"ranges or bins.\n"
+"          It helps visualize patterns, clusters, and outliers in the data"
+" and provides\n"
 "          insights into its shape, central tendency, and spread."
 msgstr ""
 
 #, 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-service et ne peut être atteint."
+msgstr ""
+"L'hôte « %(hostname)s » est peut-être hors-service et ne peut être "
+"atteint."
 
 #, python-format
 msgid ""
-"The host \"%(hostname)s\" might be down, and can't be reached on port %(port)s."
+"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-service et ne peut être atteint sur le "
-"port %(port)s."
+"L'hôte « %(hostname)s » est peut-être hors-service et ne peut être "
+"atteint sur le port %(port)s."
 
 msgid "The host might be down, and can't be reached on the provided port."
 msgstr ""
-"L'hôte est peut-être hors-service et ne peut être atteint sur le port fourni."
+"L'hôte est peut-être hors-service et ne peut être atteint sur le port "
+"fourni."
 
 #, python-format
 msgid "The hostname \"%(hostname)s\" cannot be resolved."
@@ -11647,66 +12011,71 @@ msgstr "Le nom d'hôte fourni ne peut pas être résolu."
 msgid "The id of the active chart"
 msgstr "L'identifiant du graphique actif"
 
-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 ""
-"La liste des graphiques associés à ce tableau. En modifiant cette source de "
-"données, vous pouvez changer le comportement des graphiques associés. Notez "
-"également que les graphiques doivent pointer vers une source de données, de sorte "
-"que ce formulaire échouera lors de l'enregistrement si vous supprimez des "
-"graphiques d'une source de données. Si vous souhaitez modifier la source de "
-"données d'un graphique, écrasez le graphique de la « vue d'exploration »"
+#, fuzzy
+msgid "The layer attribution"
+msgstr "Attributs du formulaire liés au temps"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr "Le nombre maximal d'événements à retourner, équivalent au nombre de rangées"
-
 msgid ""
-"The maximum number of subdivisions of each group; lower values are pruned first"
+"The maximum number of subdivisions of each group; lower values are pruned"
+" first"
 msgstr ""
-"Le nombre maximal de subdivisions de chaque groupe; les valeurs inférieures sont "
-"d’abord élaguées"
+"Le nombre maximal de subdivisions de chaque groupe; les valeurs "
+"inférieures sont d’abord élaguées"
 
 msgid "The maximum value of metrics. It is an optional configuration"
 msgstr "La valeur maximale des mesures. Il s’agit d’une configuration optionnelle"
 
 #, python-format
 msgid ""
-"The metadata_params in Extra field is not configured correctly. The key %(key)s is "
-"invalid."
+"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."
+"Le paramètre metadata_params dans Champ supplémentaire n'est pas "
+"correctement configuré. La clé %(key)s est invalide."
 
 msgid ""
-"The metadata_params in Extra field is not configured correctly. The key %{key}s is "
-"invalid."
+"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."
+"Le paramètre metadata_params dans Champ supplémentaire n'est pas "
+"correctement configuré. La clé %{key}s est invalide."
 
-msgid "The metadata_params object gets unpacked into the sqlalchemy.MetaData call."
+msgid ""
+"The metadata_params object gets unpacked into the sqlalchemy.MetaData "
+"call."
+msgstr ""
+"L'objet metadata_params contient les paramètres envoyés à sqlalchemy. "
+"appel MetaData."
+
+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 ""
-"L'objet metadata_params contient les paramètres envoyés à sqlalchemy. appel "
-"MetaData."
+"Le nombre minimum de périodes glissantes requises pour afficher une "
+"valeur. Par exemple, si vous effectuez une somme cumulative sur sept "
+"jours, vous voudrez peut-être que votre \"période minimale\" soit de "
+"sept, de sorte que tous les points de données affichés correspondent au "
+"total de sept périodes. Cela cachera la \"hausse\" qui a lieu au cours "
+"des sept premières périodes"
 
+#, fuzzy
 msgid ""
-"The minimum number of rolling periods required to show a value. For instance if "
-"you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so "
-"that all data points shown are the total of 7 periods. This will hide the \"ramp "
-"up\" taking place over the first 7 periods"
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "La valeur maximale des mesures. Il s’agit d’une configuration optionnelle"
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Nom de la colonne d'identification"
+
+msgid "The name of the layer as described in GetCapabilities"
 msgstr ""
-"Le nombre minimum de périodes glissantes requises pour afficher une valeur. Par "
-"exemple, si vous effectuez une somme cumulative sur sept jours, vous voudrez peut-"
-"être que votre \"période minimale\" soit de sept, de sorte que tous les points de "
-"données affichés correspondent au total de sept périodes. Cela cachera la "
-"\"hausse\" qui a lieu au cours des sept premières périodes"
 
 #, fuzzy
 msgid "The name of the rule must be unique"
@@ -11720,42 +12089,45 @@ msgid "The number of bins for the histogram"
 msgstr "Sélectionner le nombre de rectangles pour l’histogramme"
 
 msgid ""
-"The number of hours, negative or positive, to shift the time column. This can be "
-"used to move UTC time to local time."
+"The number of hours, negative or positive, to shift the time column. This"
+" can be used to move UTC time to local time."
 msgstr ""
-"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."
+"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."
 
 #, 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."
+"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 ""
-"Le nombre de résultats affichés est limité à %(rows)d par la configuration "
-"DISPLAY_MAX_ROW. Veuillez ajouter des limites/filtres supplémentaires ou "
-"télécharger en csv pour voir plus de rangées jusqu’à la limite de %(limit)d."
+"Le nombre de résultats affichés est limité à %(rows)d par la "
+"configuration DISPLAY_MAX_ROW. Veuillez ajouter des limites/filtres "
+"supplémentaires ou télécharger en csv pour voir plus de rangées jusqu’à "
+"la limite de %(limit)d."
 
 #, 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."
+"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 ""
-"Le nombre de résultats affichés est limité à %(rows)d. Veuillez ajouter des "
-"limites/filtres supplémentaires, télécharger au format csv ou contacter un "
-"administrateur pour voir plus de rangées jusqu'à la limite %(limit)d."
+"Le nombre de résultats affichés est limité à %(rows)d. Veuillez ajouter "
+"des limites/filtres supplémentaires, télécharger au format csv ou "
+"contacter un administrateur pour voir plus de rangées jusqu'à la limite "
+"%(limit)d."
 
 #, fuzzy, python-format
 msgid "The number of rows displayed is limited to %(rows)d by the dropdown."
 msgstr ""
-"Le nombre de rangées affichées est limité à %(rows)d par la liste déroulante."
+"Le nombre de rangées affichées est limité à %(rows)d par la liste "
+"déroulante."
 
 #, python-format
 msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown."
 msgstr ""
-"Le nombre de rangées affichées est limité à %(rows)d par la liste déroulante de "
-"limite."
+"Le nombre de rangées affichées est limité à %(rows)d par la liste "
+"déroulante de limite."
 
 #, python-format
 msgid "The number of rows displayed is limited to %(rows)d by the query"
@@ -11763,11 +12135,11 @@ msgstr "Le nombre de rangées affichées est limité à %(rows)d par la requête
 
 #, python-format
 msgid ""
-"The number of rows displayed is limited to %(rows)d by the query and limit "
-"dropdown."
+"The number of rows displayed is limited to %(rows)d by the query and "
+"limit dropdown."
 msgstr ""
-"Le nombre de rangées affichées est limité à %(rows)d par la requête et liste "
-"déroulante de limite."
+"Le nombre de rangées affichées est limité à %(rows)d par la requête et "
+"liste déroulante de limite."
 
 msgid "The number of seconds before expiring the cache"
 msgstr "Le nombre de secondes avant l'expiration du cache"
@@ -11789,91 +12161,102 @@ 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."
 
 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 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."
+"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."
 
 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 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."
+"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."
 
 #, 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."
+"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 ""
-"Les mots de passe pour les bases de données ci-dessous sont nécessaires pour les "
-"importer en même temps que les ensembles de donné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."
+"Les mots de passe pour les bases de données ci-dessous sont nécessaires "
+"pour les importer en même temps que les ensembles de donné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."
 
 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 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 enregistré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."
+"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 enregistré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."
 
 #, 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."
+"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 des bases de données ci-dessous sont nécessaires pour les "
-"importer. Veuillez noter que les sections « Securité supplémentaire » et "
-"« Certificat » de la configuration de la base de données ne sont pas présentes "
-"dans les fichiers d'exploration et doivent être ajoutées manuellement après "
-"l'importation si elles sont nécessaires."
+"Les mots de passe des bases de données ci-dessous sont nécessaires pour "
+"les importer. Veuillez noter que les sections « Securité supplémentaire »"
+" et « Certificat » de la configuration de la base de données ne sont pas "
+"présentes dans les fichiers d'exploration et doivent être ajoutées "
+"manuellement après l'importation si elles sont nécessaires."
 
 msgid "The pattern of timestamp format. For strings use "
-msgstr "Le modèle de format d'horodatage. Pour les chaînes de caractères, utilisez "
+msgstr ""
+"Le modèle de format d'horodatage. Pour les chaînes de caractères, "
+"utilisez "
 
 msgid ""
 "The periodicity over which to pivot time. Users can provide\n"
 "            \"Pandas\" offset alias.\n"
-"            Click on the info bubble for more details on accepted \"freq\" "
-"expressions."
+"            Click on the info bubble for more details on accepted "
+"\"freq\" expressions."
 msgstr ""
-"La périodicité sur laquelle pivoter le temps. Les utilisateurs peuvent fournir un "
-"alias de décalage « Pandas ».            Cliquez sur la bulle d'information pour "
-"plus de détails sur les expressions « freq » acceptées."
+"La périodicité sur laquelle pivoter le temps. Les utilisateurs peuvent "
+"fournir un alias de décalage « Pandas ».            Cliquez sur la bulle "
+"d'information pour plus de détails sur les expressions « freq » "
+"acceptées."
 
 msgid "The pixel radius"
 msgstr "Rayon des pixels"
 
 msgid ""
-"The pointer to a physical table (or view). Keep in mind that the chart is "
-"associated to this Superset logical table, and this logical table points the "
-"physical table referenced here."
+"The pointer to a physical table (or view). Keep in mind that the chart is"
+" associated to this Superset logical table, and this logical table points"
+" the physical table referenced here."
 msgstr ""
-"Pointeur vers une table physique (ou une vue). Gardez à l'esprit que le graphique "
-"est associé à ce tableau logique Superset et que ce tableau logique pointe vers le "
-"tableau physique décrit ici."
+"Pointeur vers une table physique (ou une vue). Gardez à l'esprit que le "
+"graphique est associé à ce tableau logique Superset et que ce tableau "
+"logique pointe vers le tableau physique décrit ici."
 
 msgid "The port is closed."
 msgstr "Le port est fermé."
@@ -11883,7 +12266,8 @@ msgstr "Le numéro de port est invalide."
 
 msgid "The primary metric is used to define the arc segment sizes"
 msgstr ""
-"La mesure principale est utilisée pour définir les tailles des segments d’arc"
+"La mesure principale est utilisée pour définir les tailles des segments "
+"d’arc"
 
 #, fuzzy
 msgid "The provided table was not found in the provided database"
@@ -11893,11 +12277,11 @@ msgid "The query associated with the results was deleted."
 msgstr "La requête associée aux résutlats a été supprimée."
 
 msgid ""
-"The query associated with these results could not be found. You need to re-run the "
-"original query."
+"The query associated with these results could not be found. You need to "
+"re-run the original query."
 msgstr ""
-"La requête associée à ces résultats n'a pas pu être trouvée. Vous devez réexécuter "
-"la requête originale."
+"La requête associée à ces résultats n'a pas pu être trouvée. Vous devez "
+"réexécuter la requête originale."
 
 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."
@@ -11907,12 +12291,12 @@ msgstr "La requête ne peut pas être chargée"
 
 #, 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."
+"The query estimation was killed after %(sqllab_timeout)s seconds. It "
+"might be too complex, or the database might be under heavy load."
 msgstr ""
-"L’estimation de requête a été interrompue après %(sqllab_timeout)s secondes. Elle "
-"est peut-être trop complexe ou la base de donnée est soumise à une charge trop "
-"importante."
+"L’estimation de requête a été interrompue après %(sqllab_timeout)s "
+"secondes. Elle est peut-être trop complexe ou la base de donnée est "
+"soumise à une charge trop importante."
 
 msgid "The query has a syntax error."
 msgstr "La requête a une erreur de syntaxe."
@@ -11922,27 +12306,30 @@ msgstr "La requête n'a pas retourné de résultat"
 
 #, 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."
+"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é interrompue après %(sqllab_timeout)s secondes. Elle est peut-être "
-"trop complexe ou la base de donnée est soumise à une charge trop importante."
+"La requête a été interrompue après %(sqllab_timeout)s secondes. Elle est "
+"peut-être trop complexe ou la base de donnée est soumise à une charge "
+"trop importante."
 
 msgid ""
-"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to turn "
-"off clustering, but beware that a large number of points (>1000) will cause lag."
+"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 "
+"to turn off clustering, but beware that a large number of points (>1000) "
+"will cause lag."
 msgstr ""
-"Rayon (en pixels) utilisé par l’algorithme pour définir une grappe. Choisissez 0 "
-"pour désactiver la mise en grappe, mais faites attention, car un grand nombre de "
-"points (>1 000) causera un décalage."
+"Rayon (en pixels) utilisé par l’algorithme pour définir une grappe. "
+"Choisissez 0 pour désactiver la mise en grappe, mais faites attention, "
+"car un grand nombre de points (>1 000) causera un décalage."
 
 msgid ""
-"The radius of individual points (ones that are not in a cluster). Either a "
-"numerical column or `Auto`, which scales the point based on the largest cluster"
+"The radius of individual points (ones that are not in a cluster). Either "
+"a numerical column or `Auto`, which scales the point based on the largest"
+" cluster"
 msgstr ""
-"Le rayon des points individuels (ceux qui ne sont pas dans une grappe). Une "
-"colonne numérique ou « Auto », qui met à l’échelle le point en fonction de la plus "
-"grande grappe"
+"Le rayon des points individuels (ceux qui ne sont pas dans une grappe). "
+"Une colonne numérique ou « Auto », qui met à l’échelle le point en "
+"fonction de la plus grande grappe"
 
 msgid "The report has been created"
 msgstr "Le rapport a été créé"
@@ -11952,41 +12339,49 @@ msgid "The report will be sent to your email at"
 msgstr "Les rapports planifiés seront envoyés à votre adresse courriel à"
 
 msgid ""
-"The result of this query must be a value capable of numeric interpretation e.g. 1, "
-"1.0, or \"1\" (compatible with Python's float() function)."
+"The result of this query must be a value capable of numeric "
+"interpretation e.g. 1, 1.0, or \"1\" (compatible with Python's float() "
+"function)."
+msgstr ""
+
+msgid "The result size exceeds the allowed limit."
 msgstr ""
 
 msgid "The results backend no longer has the data from the query."
 msgstr "Le programme dorsal des résultats n'a plus les données de la requête."
 
 msgid ""
-"The results stored in the backend were stored in a different format, and no longer "
-"can be deserialized."
+"The results stored in the backend were stored in a different format, and "
+"no longer can be deserialized."
 msgstr ""
-"Les résultats stockés dans le programme dorsal le sont dans un format différent et "
-"ne peuvent plus être déserialisés."
+"Les résultats stockés dans le programme dorsal le sont dans un format "
+"différent et ne peuvent plus être déserialisés."
 
 msgid "The rich tooltip shows a list of all series for that point in time"
-msgstr "L’infobulle détaillée affiche une liste de toutes les séries pour ce moment"
+msgstr ""
+"L’infobulle détaillée affiche une liste de toutes les séries pour ce "
+"moment"
 
-msgid "The row limit set for the chart was reached. The chart may show partial data."
+msgid ""
+"The row limit set for the chart was reached. The chart may show partial "
+"data."
 msgstr ""
 
 #, python-format
 msgid ""
-"The schema \"%(schema)s\" does not exist. A valid schema must be used to run this "
-"query."
+"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."
+"Le schéma « %(schema)s » n'existe pas. Un schéma valide doit être utilisé"
+" pour cette requête."
 
 #, python-format
 msgid ""
-"The schema \"%(schema_name)s\" does not exist. A valid schema must be used to run "
-"this query."
+"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."
+"Le schéma « %(schema_name)s » n'existe pas. Un schéma valide doit être "
+"utilisé pour cette requête."
 
 msgid "The schema of the submitted payload is invalid."
 msgstr ""
@@ -11997,11 +12392,16 @@ msgstr "Le schéma a été supprimé ou renommé dans la base de données."
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "Le rapport a été créé"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
-msgstr ""
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "Afficher les valeurs de série sur le graphique"
 
 msgid "The size of each cell in meters"
 msgstr ""
@@ -12009,6 +12409,9 @@ msgstr ""
 msgid "The size of the square cell, in pixels"
 msgstr "La taille de la cellule carrée, en pixels"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 #, fuzzy
 msgid "The submitted payload failed validation."
 msgstr "Les données fournies ont un schéma incorrect."
@@ -12021,85 +12424,81 @@ msgstr "Les données utiles soumises ont un schéma incorrect."
 
 #, python-format
 msgid ""
-"The table \"%(table)s\" does not exist. A valid table must be used to run this "
-"query."
+"The table \"%(table)s\" does not exist. A valid table must be used to run"
+" this query."
 msgstr ""
-"Le tableau « %(table)s » n'existe pas. Un tableau valide doit être utilisé pour "
-"cette requête."
+"Le tableau « %(table)s » n'existe pas. Un tableau valide doit être "
+"utilisé pour cette requête."
 
 #, python-format
 msgid ""
-"The table \"%(table_name)s\" does not exist. A valid table must be used to run "
-"this query."
-msgstr ""
-"Le tableau « %(table_name)s » n'existe pas. Un tableau valide doit être utilisé "
-"pour cette requête."
-
-msgid ""
-"The table was created. As part of this two-phase configuration process, you should "
-"now click the edit button by the new table to configure it."
+"The table \"%(table_name)s\" does not exist. A valid table must be used "
+"to run this query."
 msgstr ""
-"Le tableau a été créé. Dans le cadre de cette configuration en deux étapes, vous "
-"devez maintenant cliquer sur le bouton d'édition du nouveau tableau pour la "
-"configurer."
+"Le tableau « %(table_name)s » n'existe pas. Un tableau valide doit être "
+"utilisé pour cette requête."
 
 msgid "The table was deleted or renamed in the database."
 msgstr "Le tableau a été supprimé ou renommé dans la base de données."
 
 msgid ""
-"The time column for the visualization. Note that you can define arbitrary "
-"expression that return a DATETIME column in the table. Also note that the filter "
-"below is applied against this column or expression"
+"The time column for the visualization. Note that you can define arbitrary"
+" expression that return a DATETIME column in the table. Also note that "
+"the filter below is applied against this column or expression"
 msgstr ""
 "La colonne temps pour la visualisation. Notez que vous pouvez définir "
-"arbitrairement l'expression que retourne la colonne DATETIME dans le tableau. "
-"Veuillez aussi noter que le filtre ci-dessous est appliqué à cette colonne ou "
-"expression"
+"arbitrairement l'expression que retourne la colonne DATETIME dans le "
+"tableau. Veuillez aussi noter que le filtre ci-dessous est appliqué à "
+"cette colonne ou expression"
 
 msgid ""
-"The time granularity for the visualization. Note that you can type and use simple "
-"natural language as in `10 seconds`, `1 day` or `56 weeks`"
+"The time granularity for the visualization. Note that you can type and "
+"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`"
 msgstr ""
-"La granularité temporelle pour la visualisation. Noter que vous pouvez taper et "
-"utiliser le langage naturel comme « 10 secondes », « 1 jour » ou « 56 semaines »"
+"La granularité temporelle pour la visualisation. Noter que vous pouvez "
+"taper et utiliser le langage naturel comme « 10 secondes », « 1 jour » ou"
+" « 56 semaines »"
 
 msgid ""
-"The time granularity for the visualization. Note that you can type and use simple "
-"natural language as in `10 seconds`,`1 day` or `56 weeks`"
+"The time granularity for the visualization. Note that you can type and "
+"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`"
 msgstr ""
-"La granularité temporelle pour la visualisation. Noter que vous pouvez taper et "
-"utiliser le langage naturel comme « 10 secondes », « 1 jour » ou « 56 semaines »"
+"La granularité temporelle pour la visualisation. Noter que vous pouvez "
+"taper et utiliser le langage naturel comme « 10 secondes », « 1 jour » ou"
+" « 56 semaines »"
 
 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."
+"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 ""
-"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é de "
-"temps. Les options ici sont définies pour chaque type de SGBD dans le code source "
-"de Superset."
+"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é de temps. Les options ici sont définies pour "
+"chaque type de SGBD dans le code source de Superset."
 
 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."
+"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 ""
-"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 « espaces réservés » sont exprimées en UTC (sans "
-"fuseau). Les horodatages 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."
+"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 « espaces "
+"réservés » sont exprimées en UTC (sans fuseau). Les horodatages 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."
 
 msgid ""
-"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 for each block. Should be a smaller unit than "
+"domain_granularity. Should be larger or equal to Time Grain"
 msgstr ""
 "L’unité de temps pour chaque bloc. Doit être une unité plus petite que "
 "domain_granularity. Doit être plus grand ou égal au fragment de temps"
@@ -12107,6 +12506,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr "L’unité de temps utilisée pour le regroupement des blocs"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "Ajouter le nom du graphique"
+
 msgid "The type of visualization to display"
 msgstr "Le type de visualisation à afficher"
 
@@ -12121,8 +12524,8 @@ msgstr "L'utilisateur·rice semble avoir été effacé·e"
 
 msgid "The user/password combination is not valid (Incorrect password for user)."
 msgstr ""
-"La combinaison utilisateur·rice/mot de passe n'est pas valide (mot de passe "
-"incorrect pour l’utilisateur·rice)."
+"La combinaison utilisateur·rice/mot de passe n'est pas valide (mot de "
+"passe incorrect pour l’utilisateur·rice)."
 
 #, python-format
 msgid "The username \"%(username)s\" does not exist."
@@ -12130,8 +12533,16 @@ msgstr "L’utilisateur·rice « %(username)s » n'existe pas."
 
 msgid "The username provided when connecting to a database is not valid."
 msgstr ""
-"Le nom d'utilisateur·rice fourni lors de la connexion à une base de données n'est "
-"pas valide."
+"Le nom d'utilisateur·rice fourni lors de la connexion à une base de "
+"données n'est pas valide."
+
+#, fuzzy
+msgid "The version of the service"
+msgstr "Choisissez la contribution au total"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "Afficher la valeur en haut de la barre"
 
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "La façon dont les points de repères sont disposés sur l’axe des absisses"
@@ -12140,6 +12551,13 @@ msgstr "La façon dont les points de repères sont disposés sur l’axe des abs
 msgid "The width of the Isoline in pixels"
 msgstr "L'identifiant du graphique actif"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "La largeur des lignes"
+
 #, fuzzy
 msgid "The width of the lines"
 msgstr "La largeur des lignes"
@@ -12157,9 +12575,6 @@ msgstr "Il n'y a pas de graphiques ajouté dans ce tableau de bord"
 msgid "There are no components added to this tab"
 msgstr "Il n'y a pas de composant à ajouter dans cet onglet"
 
-msgid "There are no databases available"
-msgstr "Aucune base de données n’est disponible"
-
 msgid "There are no filters in this dashboard."
 msgstr "Pas de filtre dans ce tableau de bord."
 
@@ -12167,36 +12582,41 @@ msgid "There are unsaved changes."
 msgstr "Il existe des changements non enregistrés."
 
 msgid ""
-"There is a syntax error in the SQL query. Perhaps there was a misspelling or a "
-"typo."
+"There is a syntax error in the SQL query. Perhaps there was a misspelling"
+" or a typo."
 msgstr ""
-"Il y a une erreur de syntaxe dans la requête SQL. Peut-être une faute de frappe."
+"Il y a une erreur de syntaxe dans la requête SQL. Peut-être une faute de "
+"frappe."
+
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "Le type de visualisation à afficher"
 
 msgid ""
-"There is no chart definition associated with this component, could it have been "
-"deleted?"
+"There is no chart definition associated with this component, could it "
+"have been deleted?"
 msgstr ""
-"Il n'y a pas de définition de graphique associé à ce composant. A-t-il été "
-"supprimé?"
+"Il n'y a pas de définition de graphique associé à ce composant. A-t-il "
+"été supprimé?"
 
 msgid ""
-"There is not enough space for this component. Try decreasing its width, or "
-"increasing the destination width."
+"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 destination."
+"Espace insuffisant pour ce composant. Diminuez sa largeur ou augmentez la"
+" largeur de destination."
 
 #, 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 cet "
-"ensemble de données"
+"Désolé, une erreur s'est produite lors de la récupération des "
+"informations de cet ensemble de données"
 
 #, fuzzy
 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 : "
+"Désolé, une erreur s'est produite lors de la récupération des "
+"informations de cette base de données : "
 
 #, fuzzy, python-format
 msgid "There was an error fetching the favorite status: %s"
@@ -12206,6 +12626,10 @@ msgstr "Erreur à la récupération du statut favori de ce tableau de bord : %s
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Erreur à la récupération du statut favori de ce tableau de bord : %s"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Une erreur s'est produite lors de la récupération des schémas"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "Une erreur s'est produite lors de la récupération des tableaux"
@@ -12217,8 +12641,8 @@ msgstr "Une erreur s'est produite lors de la récupération des données de grap
 #, fuzzy
 msgid "There was an error loading the dataset metadata"
 msgstr ""
-"Une erreur s'est produite lors du chargement des métadonnées de l'ensemble de "
-"données"
+"Une erreur s'est produite lors du chargement des métadonnées de "
+"l'ensemble de données"
 
 msgid "There was an error loading the schemas"
 msgstr "Une erreur s'est produite lors de la récupération des schémas"
@@ -12226,13 +12650,25 @@ msgstr "Une erreur s'est produite lors de la récupération des schémas"
 msgid "There was an error loading the tables"
 msgstr "Une erreur s'est produite lors de la récupération des tableaux"
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr ""
+"Désolé, une erreur s'est produite lors de la récupération des graphiques "
+"sauvegardés : %s"
+
 #, fuzzy, python-format
 msgid "There was an error saving the favorite status: %s"
-msgstr "Une erreur s'est produite lors de l'enregistrement du statut de favori : %s"
+msgstr ""
+"Une erreur s'est produite lors de l'enregistrement du statut de favori : "
+"%s"
 
 msgid "There was an error with your request"
 msgstr "Il y avait une erreur avec vore requête"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Il y a eu un problème lors de la suppression de : %s"
+
 #, 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"
@@ -12248,12 +12684,14 @@ msgstr "Il y a eu un problème lors de la suppression des %s sélectionné(e)s 
 #, python-format
 msgid "There was an issue deleting the selected annotations: %s"
 msgstr ""
-"Il y a eu un problème lors de la suppression des annotations sélectionnées : %s"
+"Il y a eu un problème lors de la suppression des annotations "
+"sélectionnées : %s"
 
 #, 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"
+"Il y a eu un problème lors de la suppression des graphiques sélectionnés "
+": %s"
 
 msgid "There was an issue deleting the selected dashboards: "
 msgstr "Il y a eu un problème lors de la suppression des graphiques sélectionnés: "
@@ -12266,15 +12704,21 @@ msgstr ""
 
 #, python-format
 msgid "There was an issue deleting the selected layers: %s"
-msgstr "Il y a eu un problème lors de la suppression des couches sélectionnées : %s"
+msgstr ""
+"Il y a eu un problème lors de la suppression des couches sélectionnées : "
+"%s"
 
 #, python-format
 msgid "There was an issue deleting the selected queries: %s"
-msgstr "Il y a eu un problème lors de la suppression des requêtes sélectionnées : %s"
+msgstr ""
+"Il y a eu un problème lors de la suppression des requêtes sélectionnées :"
+" %s"
 
 #, 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 modèles sélectionnées : %s"
+msgstr ""
+"Il y a eu un problème lors de la suppression des modèles sélectionnées : "
+"%s"
 
 #, python-format
 msgid "There was an issue deleting: %s"
@@ -12287,19 +12731,21 @@ msgstr "Il y a eu un problème de duplication de l'ensemble de données."
 #, fuzzy, python-format
 msgid "There was an issue duplicating the selected datasets: %s"
 msgstr ""
-"Il y a eu un problème de duplication des ensembles de données sélectionnés : %s"
+"Il y a eu un problème de duplication des ensembles de données "
+"sélectionnés : %s"
 
 msgid "There was an issue favoriting this dashboard."
 msgstr "Il y a eu un problème pour mettre ce tableau de bord en favori."
 
 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."
+"Désolé, une erreur s'est produite lors de la récupération des rapports de"
+" ce tableau de bord."
 
 msgid "There was an issue fetching the favorite status of this dashboard."
 msgstr ""
-"Il y a eu un problème pour récupérer le statut de favori de ce tableau de bord."
+"Il y a eu un problème pour récupérer le statut de favori de ce tableau de"
+" bord."
 
 #, fuzzy, python-format
 msgid "There was an issue fetching your chart: %s"
@@ -12308,56 +12754,43 @@ msgstr "Une erreur s'est produite lors de la récupération de votre graphique :
 #, 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 vos tableaux de bord  : %s"
+"Une erreur s'est produite lors de la récupération de vos tableaux de bord"
+"  : %s"
 
 #, python-format
 msgid "There was an issue fetching your recent activity: %s"
 msgstr ""
-"Une erreur s'est produite lors de lors de la récupération de votre activité "
-"récente : %s"
+"Une erreur s'est produite lors de lors de la récupération de votre "
+"activité récente : %s"
 
 #, 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"
+"Une erreur s'est produite lors de la récupération de vos requêtes "
+"sauvegardées : %s"
 
 #, 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"
+"Il y a eu un problème lors de la prévisualisation de la requête "
+"sélectionnée %s"
 
 #, 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"
 
-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, veuillez fournir un arbre. Voici un lien "
-"erroné : {}"
-
 msgid "These are the datasets this filter will be applied to."
 msgstr "Ce sont les jeux de données sur lesquelles vont s'appliquer les filtres."
 
 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és dynamiquement lorsque vous cliquez sur le bouton "
-"d'enregistrement ou d'écrasement dans la vue d'exploration. Cet objet JSON est "
-"exposé ici à titre de référence et pour les utilisateurs expérimentés qui "
-"souhaiteraient modifier des paramètres spécifiques."
-
-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 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 ""
-"Cet objet JSON est généré dynamiquement lorsque vous cliquez sur le bouton "
-"enregistrer ou écraser dans la vue du tableau de bord. Il est exposé ici à titre "
-"de référence et pour les utilisateurs expérimentés qui souhaitent modifier des "
-"paramètres spécifiques."
+"Cet objet JSON est généré dynamiquement lorsque vous cliquez sur le "
+"bouton enregistrer ou écraser dans la vue du tableau de bord. Il est "
+"exposé ici à titre de référence et pour les utilisateurs expérimentés qui"
+" souhaitent modifier des paramètres spécifiques."
 
 #, python-format
 msgid "This action will permanently delete %s."
@@ -12366,49 +12799,53 @@ msgstr "Cette action supprimera définitivement %s."
 msgid "This action will permanently delete the layer."
 msgstr "Cette action supprimera définitivement la couche ."
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "Cette action supprimera définitivement la couche ."
+
 msgid "This action will permanently delete the saved query."
 msgstr "Cette action supprimera définitivement la requête sauvegardée."
 
 msgid "This action will permanently delete the template."
 msgstr "Cette acion supprimera définitivement le modèle."
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "Cette action supprimera définitivement la couche ."
+
 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)."
+"Cela peut être soit une adresse IP (ex 127.0.0.1) ou un nom de domaine "
+"(ex mydatabase.com)."
 
 msgid ""
-"This chart applies cross-filters to charts whose datasets contain columns with the "
-"same name."
+"This chart applies cross-filters to charts whose datasets contain columns"
+" with the same name."
 msgstr ""
-"Ce graphique applique des filtres croisés aux graphiques dont les ensembles de "
-"données contiennent des colonnes du même nom."
+"Ce graphique applique des filtres croisés aux graphiques dont les "
+"ensembles de données contiennent des colonnes du même nom."
 
 msgid "This chart has been moved to a different filter scope."
 msgstr "Ce graphique a été déplacé vers un autre champ de filtrage."
 
 msgid "This chart is managed externally, and can't be edited in Superset"
-msgstr "Ce graphique est géré à l’externe et ne peut pas être modifié dans Superset"
-
-msgid "This chart might be incompatible with the filter (datasets don't match)"
 msgstr ""
-"Ce graphique peut être incompatible avec le filtre (les ensembles de données ne "
-"correspondent pas)"
+"Ce graphique est géré à l’externe et ne peut pas être modifié dans "
+"Superset"
 
-msgid ""
-"This chart type is not supported when using an unsaved query as a chart source. "
+msgid "This chart might be incompatible with the filter (datasets don't match)"
 msgstr ""
-"Ce type de graphique n'est pas pris en charge lors de l'utilisation d'une requête "
-"non enregistrée comme source graphique. "
+"Ce graphique peut être incompatible avec le filtre (les ensembles de "
+"données ne correspondent pas)"
 
 msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
+"This chart type is not supported when using an unsaved query as a chart "
+"source. "
 msgstr ""
-"Ce schéma de couleurs est remplacé par des couleurs d’étiquettes "
-"personnalisées.    Vérifiez les métadonnées JSON dans les paramètres avancés"
+"Ce type de graphique n'est pas pris en charge lors de l'utilisation d'une"
+" requête non enregistrée comme source graphique. "
 
 msgid "This column might be incompatible with current dataset"
 msgstr "Cette colonne peut être incompatible avec l’ensemble de données actuel"
@@ -12417,57 +12854,61 @@ msgid "This column must contain date/time information."
 msgstr "Cette colonne doit contenir une information date/heure."
 
 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."
+"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 ""
-"Définissez une fonction qui reçoit l'entrée et produit le contenu d'une info-bulle."
+"Définissez une fonction qui reçoit l'entrée et produit le contenu d'une "
+"info-bulle."
 
 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 ""
-"Cela contrôle si le champ « time_range » de la vue actuelle doit être transmis au "
-"graphique contenant les données d'annotation."
+"Cela contrôle si le champ « time_range » de la vue actuelle doit être "
+"transmis au graphique contenant les données d'annotation."
 
 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 ""
-"Cela contrôle si le champ de fragment de temps de la vue actuelle doit être "
-"transmis au graphique contenant les données d'annotation."
+"Cela contrôle si le champ de fragment de temps de la vue actuelle doit "
+"être transmis au graphique contenant les données d'annotation."
 
 #, python-format
 msgid ""
-"This dashboard is currently auto refreshing; the next auto refresh will be in %s."
+"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."
+"Ce tableau de bord est en train de se rafraîchir automatiquement; le "
+"prochain rafraîchissement sera dans %s."
 
 msgid "This dashboard is managed externally, and can't be edited in Superset"
 msgstr ""
-"Ce tableau de bord est géré à l’externe et ne peut pas être modifié dans Superset"
+"Ce tableau de bord est géré à l’externe et ne peut pas être modifié dans "
+"Superset"
 
 msgid ""
-"This dashboard is not published which means it will not show up in the list of "
-"dashboards. Favorite it to see it there or access it by using the URL directly."
+"This dashboard is not published which means it will not show up in the "
+"list of dashboards. Favorite it to see it there or access it by using the"
+" URL directly."
 msgstr ""
-"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."
+"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."
 
 msgid ""
-"This dashboard is not published, it will not show up in the list of dashboards. "
-"Click here to publish this dashboard."
+"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."
+"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."
 
 msgid "This dashboard is now hidden"
 msgstr "Ce tableau de bord est maintenant caché"
@@ -12479,30 +12920,37 @@ msgid "This dashboard is published. Click to make it a draft."
 msgstr "Ce tableau de bord est publié. Cliquez pour en faire un brouillon."
 
 msgid ""
-"This dashboard is ready to embed. In your application, pass the following id to "
-"the SDK:"
+"This dashboard is ready to embed. In your application, pass the following"
+" id to the SDK:"
 msgstr ""
-"Ce tableau de bord est prêt à être intégré. Dans votre application, transmettez "
-"l’identifiant suivant au SDK :"
+"Ce tableau de bord est prêt à être intégré. Dans votre application, "
+"transmettez l’identifiant suivant au SDK :"
 
 msgid "This dashboard was saved successfully."
 msgstr "Ce Tableau de Bord a été sauvegardé avec succès."
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
-"Cette base de données est gérée à l’externe et ne peut pas être modifiée dans "
-"Superset"
+"Cette base de données est gérée à l’externe et ne peut pas être modifiée "
+"dans Superset"
 
 msgid ""
-"This database table does not contain any data. Please select a different table."
+"This database table does not contain any data. Please select a different "
+"table."
 msgstr ""
-"Cette table de base de données ne contient aucune donnée. Veuillez sélectionner un "
-"autre tableau."
+"Cette table de base de données ne contient aucune donnée. Veuillez "
+"sélectionner un autre tableau."
 
 msgid "This dataset is managed externally, and can't be edited in Superset"
 msgstr ""
-"Cet ensemble de données est géré à l'externe et ne peut pas être modifié dans "
-"Superset"
+"Cet ensemble de données est géré à l'externe et ne peut pas être modifié "
+"dans Superset"
 
 msgid "This dataset is not used to power any charts."
 msgstr "Cet ensemble de données n'est pas utilisé pour alimenter des graphiques."
@@ -12510,74 +12958,64 @@ msgstr "Cet ensemble de données n'est pas utilisé pour alimenter des graphique
 msgid "This defines the element to be plotted on the chart"
 msgstr "Ceci définit l'élément à tracer sur le graphique"
 
-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."
+msgid "This email is already associated with an account."
 msgstr ""
-"La saisonnalité quotidienne doit-elle être appliquée? Une valeur entière "
-"spécifiera l'ordre Fourier de la saisonnalité."
 
 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 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 ""
+"La saisonnalité quotidienne doit-elle être appliquée? Une valeur entière "
+"spécifiera l'ordre Fourier de la saisonnalité."
 
 msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query against "
-"this string as a subquery."
+"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 ""
-"Ce champ agit comme une vue Superset, ce qui signifie que Superset exécutera une "
-"requête sur cette chaîne en tant que sous-requête."
 
 msgid "This filter might be incompatible with current dataset"
 msgstr "Ce filtre pourrait être incompatible avec l’ensemble de données actuel"
 
 msgid "This functionality is disabled in your environment for security reasons."
 msgstr ""
-"Cette fonctionnalité est désactivée dans votre environnement pour des raisons de "
-"sécurité."
+"Cette fonctionnalité est désactivée dans votre environnement pour des "
+"raisons de sécurité."
 
 msgid ""
-"This is the condition that will be added to the WHERE clause. For example, to only "
-"return rows for a particular client, you might define a regular filter with the "
-"clause `client_id = 9`. To display no rows unless a user belongs to a RLS filter "
-"role, a base filter can be created with the clause `1 = 0` (always false)."
+"This is the condition that will be added to the WHERE clause. For "
+"example, to only return rows for a particular client, you might define a "
+"regular filter with the clause `client_id = 9`. To display no rows unless"
+" a user belongs to a RLS filter role, a base filter can be created with "
+"the clause `1 = 0` (always false)."
 msgstr ""
-"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 utilisateur·rice·s qui appartiennent à un role de filtre RLS, un filtre de "
-"base peut être créé avec la  clause « 1 = 0 » (toujours faux)."
+"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 utilisateur·rice·s qui "
+"appartiennent à un role de filtre RLS, un filtre de base peut être créé "
+"avec la  clause « 1 = 0 » (toujours faux)."
 
 msgid ""
-"This json object describes the positioning of the widgets in the dashboard. It is "
-"dynamically generated when adjusting the widgets size and positions by using drag "
-"& drop in the dashboard view"
+"This json object describes the positioning of the widgets in the "
+"dashboard. It is dynamically generated when adjusting the widgets size "
+"and positions by using drag & drop in the dashboard view"
 msgstr ""
-"Cet objet json décrit le positionnement des widgets dans le tableau de bord. Il "
-"est généré dynamiquement lors de l'ajustement de la taille et de la position des "
-"widgets par glisser-déposer dans la vue du tableau de bord"
+"Cet objet json décrit le positionnement des widgets dans le tableau de "
+"bord. Il est généré dynamiquement lors de l'ajustement de la taille et de"
+" la position des widgets par glisser-déposer dans la vue du tableau de "
+"bord"
 
 msgid "This markdown component has an error."
 msgstr "Ce composant markdown comporte une erreur."
 
 msgid "This markdown component has an error. Please revert your recent changes."
 msgstr ""
-"Ce composant markdown comporte une erreur. Reprenez vos modifications récentes."
+"Ce composant markdown comporte une erreur. Reprenez vos modifications "
+"récentes."
 
 msgid "This may be triggered by:"
 msgstr "Cela peut être déclenché par :"
 
-#, 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é)."
-
 msgid "This metric might be incompatible with current dataset"
 msgstr "Cette mesure pourrait être incompatible avec l’ensemble de données actuel"
 
@@ -12585,8 +13023,8 @@ msgid "This option has been disabled by the administrator."
 msgstr "Cette option a été désactivée par les administrateurs."
 
 msgid ""
-"This page is intended to be embedded in an iframe, but it looks like that is not "
-"the case."
+"This page is intended to be embedded in an iframe, but it looks like that"
+" is not the case."
 msgstr ""
 
 #, fuzzy
@@ -12594,37 +13032,41 @@ msgid ""
 "This section allows you to configure how to use the slice\n"
 "              to generate annotations."
 msgstr ""
-"Cette section vous permet de configurer l'utilisation de la tranche pour générer "
-"des annotations."
+"Cette section vous permet de configurer l'utilisation de la tranche pour "
+"générer des annotations."
 
 msgid ""
-"This section contains options that allow for advanced analytical post processing "
-"of query results"
+"This section contains options that allow for advanced analytical post "
+"processing of query results"
 msgstr ""
-"Cette section contient des options qui permettent un post-traitement analytique "
-"avancé des résultats de la requête"
+"Cette section contient des options qui permettent un post-traitement "
+"analytique avancé des résultats de la requête"
 
 msgid "This section contains validation errors"
 msgstr "Cette section contient des erreurs de validation"
 
 msgid ""
-"This session has encountered an interruption, and some controls may not work as "
-"intended. If you are the developer of this app, please check that the guest token "
-"is being generated correctly."
+"This session has encountered an interruption, and some controls may not "
+"work as intended. If you are the developer of this app, please check that"
+" the guest token is being generated correctly."
 msgstr ""
-"Cette session a été interrompue et certaines commandes peuvent ne pas fonctionner "
-"comme prévu. Si vous êtes le développeur·euse de cette application, veuillez "
-"vérifier que le jeton d'invité est généré correctement."
+"Cette session a été interrompue et certaines commandes peuvent ne pas "
+"fonctionner comme prévu. Si vous êtes le développeur·euse de cette "
+"application, veuillez vérifier que le jeton d'invité est généré "
+"correctement."
 
 msgid "This table already has a dataset"
 msgstr "Ce tableau contient déjà un ensemble de données"
 
 msgid ""
-"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 associated with it. You can only "
+"associate one dataset with a table.\n"
+msgstr ""
+"Ce tableau est déjà associé à un ensemble de données. Vous ne pouvez "
+"associer qu'un seul ensemble de données à un tableau.\n"
+
+msgid "This username is already taken. Please choose another one."
 msgstr ""
-"Ce tableau est déjà associé à un ensemble de données. Vous ne pouvez associer "
-"qu'un seul ensemble de données à un tableau.\n"
 
 msgid "This value should be greater than the left target value"
 msgstr "Cette valeur devrait être plus grande que la valeur cible de gauche"
@@ -12645,9 +13087,9 @@ msgstr[0] "Cela a été déclenché par :"
 msgstr[1] ""
 
 msgid ""
-"This will be applied to the whole table. Arrows (↑ and ↓) will be added to main "
-"columns for increase and decrease. Basic conditional formatting can be overwritten "
-"by conditional formatting below."
+"This will be applied to the whole table. Arrows (↑ and ↓) will be added "
+"to main columns for increase and decrease. Basic conditional formatting "
+"can be overwritten by conditional formatting below."
 msgstr ""
 
 msgid "This will remove your current embed configuration."
@@ -12692,8 +13134,8 @@ msgstr "Fragment de temps"
 #, fuzzy
 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."
+"Une période délimitée (à la fois début et fin) doit être spécifiée quand "
+"on utilise une Comparaison de temps."
 
 #, fuzzy
 msgid "Time Granularity"
@@ -12715,9 +13157,6 @@ msgstr "Ratio de temps"
 msgid "Time Series"
 msgstr "Séries temporelles"
 
-msgid "Time Series - Bar Chart"
-msgstr "Séries temporelles – Diagramme à barres"
-
 msgid "Time Series - Line Chart"
 msgstr "Séries temporelles – Graphique linéaire"
 
@@ -12733,9 +13172,6 @@ msgstr "Séries temporelles – Pourcentage de changement"
 msgid "Time Series - Period Pivot"
 msgstr "Séries temporelles – Période Pivot"
 
-msgid "Time Series - Stacked"
-msgstr "Séries temporelles – empilées"
-
 #, fuzzy
 msgid "Time Series Options"
 msgstr "Options des séries temporelles"
@@ -12770,16 +13206,16 @@ msgid ""
 "Time delta in natural language\n"
 "                  (example:  24 hours, 7 days, 56 weeks, 365 days)"
 msgstr ""
-"Delta temporel dans le langage naturel (exemple : 24 heures, 7 jours, 56 semaines, "
-"365 jours)"
+"Delta temporel dans le langage naturel (exemple : 24 heures, 7 jours, 56 "
+"semaines, 365 jours)"
 
 #, python-format
 msgid ""
 "Time delta is ambiguous. Please specify [%(human_readable)s ago] or "
 "[%(human_readable)s later]."
 msgstr ""
-"Le delta temporel est ambigu. Veuillez spécifier [%(human_readable)s ago] ou "
-"[%(human_readable)s later]."
+"Le delta temporel est ambigu. Veuillez spécifier [%(human_readable)s ago]"
+" ou [%(human_readable)s later]."
 
 msgid "Time filter"
 msgstr "Filtre de temps"
@@ -12834,19 +13270,8 @@ msgid ""
 "Time string is ambiguous. Please specify [%(human_readable)s ago] or "
 "[%(human_readable)s later]."
 msgstr ""
-"La chaîne temporelle est ambigue. Veuillez spécifier [%(human_readable)s ago] ou "
-"[%(human_readable)s later]."
-
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "Graphique en aires (hérité)"
-
-#, fuzzy
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Séries temporelles – Diagramme à barres (hérité)"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr "Tableau linéaire (héritage)"
+"La chaîne temporelle est ambigue. Veuillez spécifier [%(human_readable)s "
+"ago] ou [%(human_readable)s later]."
 
 #, fuzzy
 msgid "Time-series Percent Change"
@@ -12869,9 +13294,6 @@ msgstr "Format d’horodatage"
 msgid "Timezone"
 msgstr "Fuseau horaire"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Décalage de fuseau horaire (en heures) pour cette source de données"
-
 msgid "Timezone selector"
 msgstr "Sélecteur de fuseau horaire"
 
@@ -12892,6 +13314,11 @@ msgstr "Le titre est obligatoire"
 msgid "Title or Slug"
 msgstr "Titre ou logotype"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "Pour filtrer sur une mesure, utiliser l'onglet Custom SQL."
 
@@ -12940,6 +13367,10 @@ msgstr "Total (%(aggfunc)s)"
 msgid "Total (%(aggregatorName)s)"
 msgstr "Total (%(aggregatorName)s)"
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "Total : (%s)"
+
 #, fuzzy
 msgid "Total value"
 msgstr "Valeur totale"
@@ -13001,19 +13432,19 @@ msgid "Truncate X Axis"
 msgstr "Trier les métriques"
 
 msgid ""
-"Truncate X Axis. Can be overridden by specifying a min or max bound. Only "
-"applicable for numerical X axis."
+"Truncate X Axis. Can be overridden by specifying a min or max bound. Only"
+" applicable for numerical X axis."
 msgstr ""
-"Tronquer l'axe X. Peut être surpasser en spécifiant une limite min ou max. "
-"Seulement applicable sur les axes X numériques."
+"Tronquer l'axe X. Peut être surpasser en spécifiant une limite min ou "
+"max. Seulement applicable sur les axes X numériques."
 
 msgid "Truncate Y Axis"
 msgstr "Tronquer l’axe des absisses"
 
 msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound."
 msgstr ""
-"Tronquer l’axe des ordonnées. Peut être modifié en spécifiant une limite minimale "
-"ou maximale."
+"Tronquer l’axe des ordonnées. Peut être modifié en spécifiant une limite "
+"minimale ou maximale."
 
 msgid "Truncate long cells to the \"min width\" set above"
 msgstr "Tronquer les cellules longues à la « largeur minimale » définie ci-dessus"
@@ -13023,8 +13454,8 @@ msgstr "Tronquer la date spécifiée à la précision spécifiée par l'unité d
 
 msgid "Try applying different filters or ensuring your datasource has data"
 msgstr ""
-"Essayez d’appliquer différents filtres ou de vous assurer que votre source de "
-"données contient des données"
+"Essayez d’appliquer différents filtres ou de vous assurer que votre "
+"source de données contient des données"
 
 #, fuzzy
 msgid "Try different criteria to display results."
@@ -13057,9 +13488,6 @@ msgstr "Saisir une valeur ici"
 msgid "Type is required"
 msgstr "Le type est requis"
 
-msgid "Type of Google Sheets allowed"
-msgstr "Type de feuilles Google Sheets autorisées"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "Type de comparaison, différence de valeur ou pourcentage"
 
@@ -13092,15 +13520,16 @@ msgid "Unable to connect to database \"%(database)s\"."
 msgstr "Impossible de se connecter à la base de données « %(database)s »."
 
 msgid ""
-"Unable to connect. Verify that the following roles are set on the service account: "
-"\"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and "
-"the following permissions are set \"bigquery.readsessions.create\", \"bigquery."
-"readsessions.getData\""
+"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 ""
-"Impossible de se connecter. Vérifiez que les rôles suivants sont définis sur le "
-"compte de service : « BigQuery Data Viewer », « BigQuery Metadata Viewer », "
-"« BigQuery Job User » et que les permissions suivantes sont définies « bigquery."
-"readsessions.create », « bigquery.readsessions.getData »"
+"Impossible de se connecter. Vérifiez que les rôles suivants sont définis "
+"sur le compte de service : « BigQuery Data Viewer », « BigQuery Metadata "
+"Viewer », « BigQuery Job User » et que les permissions suivantes sont "
+"définies « bigquery.readsessions.create », « "
+"bigquery.readsessions.getData »"
 
 msgid "Unable to create chart without a query id."
 msgstr "Impossible de créer un graphique sans ID de requête."
@@ -13116,7 +13545,8 @@ msgid "Unable to find such a holiday: [%(holiday)s]"
 msgstr "Impossible de trouver un tel congé : [%(holiday)s]"
 
 msgid ""
-"Unable to load columns for the selected table. Please select a different table."
+"Unable to load columns for the selected table. Please select a different "
+"table."
 msgstr ""
 "Impossible de charger les colonnes pour le tableau sélectionné. Veuillez "
 "sélectionner un autre tableau."
@@ -13126,32 +13556,38 @@ msgid "Unable to load dashboard"
 msgstr "Ajouté à 1 tableau de bord"
 
 msgid ""
-"Unable to migrate query editor state to backend. Superset will retry later. Please "
-"contact your administrator if this problem persists."
+"Unable to migrate query editor state to backend. Superset will retry "
+"later. Please contact your administrator if this problem persists."
 msgstr ""
-"Impossible de migrer l'état de l'éditeur de requêtes dans le programme dorsal. "
-"Superset réessayera plus tard. Veuillez contacter votre administrateur si le "
-"problème persiste."
+"Impossible de migrer l'état de l'éditeur de requêtes dans le programme "
+"dorsal. Superset réessayera plus tard. Veuillez contacter votre "
+"administrateur si le problème persiste."
 
 msgid ""
-"Unable to migrate query state to backend. Superset will retry later. Please "
-"contact your administrator if this problem persists."
+"Unable to migrate query state to backend. Superset will retry later. "
+"Please contact your administrator if this problem persists."
 msgstr ""
-"Impossible de migrer l'état de la requête vers le programme dorsal. Superset "
-"réessayera plus tard. Veuillez contacter votre administrateur si ce problème "
-"persiste."
+"Impossible de migrer l'état de la requête vers le programme dorsal. "
+"Superset réessayera plus tard. Veuillez contacter votre administrateur si"
+" ce problème persiste."
 
 msgid ""
-"Unable to migrate table schema state to backend. Superset will retry later. Please "
-"contact your administrator if this problem persists."
+"Unable to migrate table schema state to backend. Superset will retry "
+"later. Please contact your administrator if this problem persists."
+msgstr ""
+"Impossible de migrer l'état du schéma de tableau vers le programme "
+"dorsal. Superset réessayera plus tard. Veuillez contacter votre "
+"administrateur si ce problème persiste."
+
+msgid "Unable to parse SQL"
 msgstr ""
-"Impossible de migrer l'état du schéma de tableau vers le programme dorsal. "
-"Superset réessayera plus tard. Veuillez contacter votre administrateur si ce "
-"problème persiste."
 
 msgid "Unable to retrieve dashboard colors"
 msgstr "Impossible de récupérer les couleurs du tableau de bord"
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "Indéfini"
 
@@ -13170,8 +13606,8 @@ msgstr "Erreur inattendue"
 
 msgid "Unexpected error occurred, please check your logs for details"
 msgstr ""
-"Une erreur inattendue s'est produite, veuillez consulter vos journaux pour plus de "
-"détails"
+"Une erreur inattendue s'est produite, veuillez consulter vos journaux "
+"pour plus de détails"
 
 #, fuzzy
 msgid "Unexpected error: "
@@ -13185,6 +13621,10 @@ msgstr "Aucune expression sauvegardée n'a été trouvée"
 msgid "Unexpected time range: %(error)s"
 msgstr "Intervalle de temps inattendu: %s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "annuler"
+
 msgid "Unknown"
 msgstr "Inconnu"
 
@@ -13224,6 +13664,10 @@ msgstr "Type inconnu"
 msgid "Unknown value"
 msgstr "Valeur inconnue"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "en cours d’exécution"
+
 #, 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"
@@ -13292,9 +13736,6 @@ msgstr "Téléverser un fichier en colonnes"
 msgid "Upload Columnar file to database"
 msgstr "Téléverser un fichier en colonnes vers la base de données"
 
-msgid "Upload Credentials"
-msgstr "Téléverser les informations de connexion"
-
 #, fuzzy
 msgid "Upload Enabled"
 msgstr "Téléversement activé"
@@ -13317,6 +13758,10 @@ msgstr "Téléverser un fichier vers la base de données."
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr "Téléverser un fichier avec une extension valide. Valide: [%s]"
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Téléverser les informations de connexion"
+
 #, fuzzy
 msgid "Upload file to database"
 msgstr "Téléverser un fichier vers la base de données"
@@ -13377,18 +13822,19 @@ msgstr ""
 "superpositions.          Votre graphique doit être l'un de ces types de "
 "visualisation : [%s]"
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "Lancer la requête"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
-"Utiliser le formatage de la date même lorsque la valeur mesure n'est pas un "
-"horodatage"
-
-msgid "Use legacy datasource editor"
-msgstr "Utiliser l'ancien éditeur de source de données"
+"Utiliser le formatage de la date même lorsque la valeur mesure n'est pas "
+"un horodatage"
 
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr ""
-"Utiliser les mesures comme groupe de niveau supérieur pour les colonnes ou les "
-"lignes"
+"Utiliser les mesures comme groupe de niveau supérieur pour les colonnes "
+"ou les lignes"
 
 msgid "Use only a single value."
 msgstr "N’utiliser qu’une seule valeur."
@@ -13396,12 +13842,6 @@ msgstr "N’utiliser qu’une seule valeur."
 msgid "Use the Advanced Analytics options below"
 msgstr "Utiliser les options d’analyse avancée ci-dessous"
 
-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."
-
 #, fuzzy
 msgid "Use the edit button to change this field"
 msgstr "Utiliser le bouton Editer pour changer ce champ"
@@ -13416,22 +13856,23 @@ msgid "Use this to define a static color for all circles"
 msgstr "Utiliser ceci pour définir une couleur statique pour tous les cercles"
 
 msgid ""
-"Used internally to identify the plugin. Should be set to the package name from the "
-"pluginʼs package.json"
+"Used internally to identify the plugin. Should be set to the package name"
+" from the pluginʼs package.json"
 msgstr ""
-"Utilisé en interne pour identifier le plugiciel. Devrait être le nom du paquet "
-"tiré de package.json du plugiciel"
+"Utilisé en interne pour identifier le plugiciel. Devrait être le nom du "
+"paquet tiré de package.json du plugiciel"
 
 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."
+"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 ""
-"Utilisé pour résumer un ensemble de données en regroupant plusieurs statistiques "
-"le long de deux axes. Exemples : Chiffre d'affaires par région et par mois, tâches "
-"par statut et par destinataire,utilisateur·rice·s actif·ve·s par âge et par lieu. "
-"Ce n'est pas la visualisation la plus impressionnante, mais elle est très "
+"Utilisé pour résumer un ensemble de données en regroupant plusieurs "
+"statistiques le long de deux axes. Exemples : Chiffre d'affaires par "
+"région et par mois, tâches par statut et par "
+"destinataire,utilisateur·rice·s actif·ve·s par âge et par lieu. Ce n'est "
+"pas la visualisation la plus impressionnante, mais elle est très "
 "informative et polyvalente."
 
 msgid "User"
@@ -13447,39 +13888,60 @@ msgstr "L'utilisateur·rice doit sélectionner une valeur pour ce filtre"
 msgid "User query"
 msgstr "Requête d’utilisateur·rice"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "Username"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Le nom est obligatoire"
+
+#, fuzzy
+msgid "Users"
+msgstr "série"
+
 #, fuzzy
 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é."
+"%(dialect)s ne peut pas être utilisé comme source de données pour des "
+"raisons de sécurité."
 
 msgid ""
-"Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data"
+"Uses Gaussian Kernel Density Estimation to visualize spatial distribution"
+" of data"
 msgstr ""
 "Utilise l’estimation de la densité du noyau gaussien pour visualiser la "
 "distribution spatiale des données"
 
 msgid ""
-"Uses a gauge to showcase progress of a metric towards a target. The position of "
-"the dial represents the progress and the terminal value in the gauge represents "
-"the target value."
+"Uses 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 ""
-"Utilise une jauge pour montrer la progression d’une mesure vers une cible. La "
-"position du cadran représente la progression et la valeur de borne dans la jauge "
-"représente la valeur cible."
+"Utilise une jauge pour montrer la progression d’une mesure vers une "
+"cible. La position du cadran représente la progression et la valeur de "
+"borne dans la jauge représente la valeur cible."
 
 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."
+"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 ""
+"Utilise des cercles pour visualiser le flux de données à travers les "
+"différentes étapes d’un système. Placez le curseur sur les chemins "
+"individuels dans la visualisation pour comprendre les étapes qu’une "
+"valeur a suivies. Utile pour la visualisation d’entonnoirs et de "
+"pipelines à plusieurs étapes et groupes."
+
+#, python-format
+msgid "Validating connectivity for %s"
 msgstr ""
-"Utilise des cercles pour visualiser le flux de données à travers les différentes "
-"étapes d’un système. Placez le curseur sur les chemins individuels dans la "
-"visualisation pour comprendre les étapes qu’une valeur a suivies. Utile pour la "
-"visualisation d’entonnoirs et de pipelines à plusieurs étapes et groupes."
 
 msgid "Value"
 msgstr "Valeur"
@@ -13509,9 +13971,16 @@ msgstr ""
 msgid "Value format"
 msgstr "Format de courriel"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "La valeur doit être plus grande que 0"
+
 msgid "Value is required"
 msgstr "Une valeur est obligatoire"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "La valeur doit être plus grande que 0"
@@ -13526,18 +13995,11 @@ msgid "Values dependent on"
 msgstr "Valeurs dépendent de"
 
 msgid ""
-"Values selected in other filters will affect the filter options to only show "
-"relevant values"
+"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"
-
-#, fuzzy
-msgid "Vehicle Types"
-msgstr "Types du véhicule"
-
-msgid "Verbose Name"
-msgstr "Nom Verbose"
+"Les valeurs sélectionnées dans d'autres filtres affecteront les options "
+"de filtrage afin de n'afficher que les valeurs pertinentes"
 
 msgid "Version"
 msgstr "Version"
@@ -13553,9 +14015,6 @@ msgstr "Vertical"
 msgid "Vertical (Left)"
 msgstr "Vertical (gauche)"
 
-msgid "Video game consoles"
-msgstr "Consoles de jeux vidéo"
-
 #, fuzzy
 msgid "View"
 msgstr "Voir"
@@ -13602,19 +14061,18 @@ msgstr "Virtuel"
 msgid "Virtual (SQL)"
 msgstr "Virtuel (SQL)"
 
-msgid "Virtual dataset"
-msgstr "Ensemble de données virtuel"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "L’ensemble de données virtuel ne peut pas être vide"
 
 msgid "Virtual dataset query cannot consist of multiple statements"
 msgstr ""
-"Une requête sur un ensemble de données virtuel ne peut pas être composée de "
-"plusieurs instructions"
+"Une requête sur un ensemble de données virtuel ne peut pas être composée "
+"de plusieurs instructions"
 
 msgid "Virtual dataset query must be read-only"
-msgstr "L'interrogation de l'ensemble de données virtuel doit être en lecture seule"
+msgstr ""
+"L'interrogation de l'ensemble de données virtuel doit être en lecture "
+"seule"
 
 msgid "Visual Tweaks"
 msgstr "Modifications visuelles"
@@ -13626,113 +14084,105 @@ msgid "Visualization Type"
 msgstr "Type de visualisation"
 
 msgid ""
-"Visualize a parallel set of metrics across multiple groups. Each group is "
-"visualized using its own line of points and each metric is represented as an edge "
-"in the chart."
+"Visualize a parallel set of metrics across multiple groups. Each group is"
+" visualized using its own line of points and each metric is represented "
+"as an edge in the chart."
 msgstr ""
-"Visualisez un ensemble parallèle de mesures dans plusieurs groupes. Chaque groupe "
-"est visualisé en utilisant sa propre ligne de points et chaque mesure est "
-"représentée comme un bord dans le graphique."
+"Visualisez un ensemble parallèle de mesures dans plusieurs groupes. "
+"Chaque groupe est visualisé en utilisant sa propre ligne de points et "
+"chaque mesure est représentée comme un bord dans le graphique."
 
 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."
+"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 ""
-"Visualisez une mesure connexe entre les paires de groupes. Les cartes thermiques "
-"excellent à mettre en valeur la corrélation ou la force entre deux groupes. La "
-"couleur est utilisée pour souligner la force du lien entre chaque paire de groupes."
+"Visualisez une mesure connexe entre les paires de groupes. Les cartes "
+"thermiques excellent à mettre en valeur la corrélation ou la force entre "
+"deux groupes. La couleur est utilisée pour souligner la force du lien "
+"entre chaque paire de groupes."
 
 msgid ""
-"Visualize geospatial data like 3D buildings, landscapes, or objects in grid view."
+"Visualize geospatial data like 3D buildings, landscapes, or objects in "
+"grid view."
 msgstr ""
-"Visualisez des données géospatiales telles que des bâtiments, des paysages ou des "
-"objets en 3D dans une vue grille."
+"Visualisez des données géospatiales telles que des bâtiments, des "
+"paysages ou des objets en 3D dans une vue grille."
 
 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 ""
-"Visualisez comment une mesure change au fil du temps à l’aide de barres. Ajoutez "
-"un groupe par colonne pour visualiser les mesure au niveau du groupe et la façon "
-"dont elles changent au fil du temps."
-
-msgid "Visualize multiple levels of hierarchy using a familiar tree-like structure."
+"Visualize multiple levels of hierarchy using a familiar tree-like "
+"structure."
 msgstr ""
-"Visualisez plusieurs niveaux de hiérarchie à l’aide d’une structure familière "
-"semblable à un arbre."
+"Visualisez plusieurs niveaux de hiérarchie à l’aide d’une structure "
+"familière semblable à un arbre."
 
 msgid ""
-"Visualize two different series using the same x-axis. Note that both series can be "
-"visualized with a different chart type (e.g. 1 using bars and 1 using a line)."
+"Visualize two different series using the same x-axis. Note that both "
+"series can be visualized with a different chart type (e.g. 1 using bars "
+"and 1 using a line)."
 msgstr ""
-"Visualisez deux séries différentes en utilisant le même axe des x. Notez que les "
-"deux séries peuvent être visualisées avec un type de graphique différent (p. ex., "
-"1 utilisant des barres et 1 utilisant une ligne)."
+"Visualisez deux séries différentes en utilisant le même axe des x. Notez "
+"que les deux séries peuvent être visualisées avec un type de graphique "
+"différent (p. ex., 1 utilisant des barres et 1 utilisant une ligne)."
 
 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."
+"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 ""
-"Visualise une mesure sur trois dimensions de données dans un seul graphique (axe "
-"des absisses, axe des ordonnées et taille des bulles). Les bulles du même groupe "
-"peuvent être présentées en utilisant la couleur des bulles."
+"Visualise une mesure sur trois dimensions de données dans un seul "
+"graphique (axe des absisses, axe des ordonnées et taille des bulles). Les"
+" bulles du même groupe peuvent être présentées en utilisant la couleur "
+"des bulles."
 
 msgid "Visualizes connected points, which form a path, on a map."
 msgstr "Visualise les points connectés, qui forment un chemin, sur une carte."
 
 msgid ""
-"Visualizes geographic areas from your data as polygons on a Mapbox rendered map. "
-"Polygons can be colored using a metric."
+"Visualizes geographic areas from your data as polygons on a Mapbox "
+"rendered map. Polygons can be colored using a metric."
 msgstr ""
-"Visualise les zones géographiques de vos données sous forme de polygones sur une "
-"carte rendue par Mapbox. Les polygones peuvent être colorés à l’aide d’une mesure."
+"Visualise les zones géographiques de vos données sous forme de polygones "
+"sur une carte rendue par Mapbox. Les polygones peuvent être colorés à "
+"l’aide d’une mesure."
 
 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."
+"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 ""
-"Visualise la façon dont une mesure a changé au fil du temps à l’aide d’une échelle "
-"de couleurs et d’une vue de calendrier. Les valeurs grises sont utilisées pour "
-"indiquer les valeurs manquantes et le schéma de couleurs linéaires est utilisé "
-"pour coder l’amplitude de la valeur de chaque jour."
+"Visualise la façon dont une mesure a changé au fil du temps à l’aide "
+"d’une échelle de couleurs et d’une vue de calendrier. Les valeurs grises "
+"sont utilisées pour indiquer les valeurs manquantes et le schéma de "
+"couleurs linéaires est utilisé pour coder l’amplitude de la valeur de "
+"chaque jour."
 
 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."
+"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 ""
-"Visualise la façon dont une seule mesure varie entre les principales subdivisions "
-"d’un pays (États, provinces, etc.) sur une carte de choroplète. La valeur de "
-"chaque subdivision est élevée lorsque vous survolez la limite géographique "
-"correspondante."
+"Visualise la façon dont une seule mesure varie entre les principales "
+"subdivisions d’un pays (États, provinces, etc.) sur une carte de "
+"choroplète. La valeur de chaque subdivision est élevée lorsque vous "
+"survolez la limite géographique correspondante."
 
 msgid ""
-"Visualizes many different time-series objects in a single chart. This chart is "
-"being deprecated and we recommend using the Time-series Chart instead."
+"Visualizes many different time-series objects in a single chart. This "
+"chart is being deprecated and we recommend using the Time-series Chart "
+"instead."
 msgstr ""
-"Visualise de nombreux objets de séries temporelles différents dans un seul "
-"tableau. Ce graphique est en cours d’amortissement et nous vous recommandons "
-"d’utiliser plutôt le graphique des séries temporelles."
-
-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 ""
-"Visualise le flux des valeurs de différents groupes à travers les différentes "
-"étapes d’un système. Les nouvelles étapes du pipeline sont visualisées comme des "
-"nœuds ou des couches. L’épaisseur des barres ou des bords représente la mesure "
-"visualisée."
+"Visualise de nombreux objets de séries temporelles différents dans un "
+"seul tableau. Ce graphique est en cours d’amortissement et nous vous "
+"recommandons d’utiliser plutôt le graphique des séries temporelles."
 
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
 msgstr ""
-"Visualise les mots dans une colonne qui apparaît le plus souvent. La police plus "
-"grosse correspond à une fréquence plus élevée."
+"Visualise les mots dans une colonne qui apparaît le plus souvent. La "
+"police plus grosse correspond à une fréquence plus élevée."
 
 msgid "Viz is missing a datasource"
 msgstr "Viz est une source de données manquante"
@@ -13743,6 +14193,12 @@ msgstr "Type Viz"
 msgid "WED"
 msgstr "MER"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr "En attente de %s"
@@ -13756,17 +14212,15 @@ msgstr "Ajouter un nouvelle base de données?"
 msgid "Warning"
 msgstr "Avertissement"
 
-msgid "Warning Message"
-msgstr "Message d'avertissement"
-
 msgid "Warning!"
 msgstr "Attention!"
 
 msgid ""
-"Warning! Changing the dataset may break the chart if the metadata does not exist."
+"Warning! Changing the dataset may break the chart if the metadata does "
+"not exist."
 msgstr ""
-"Attention! Changer l’ensemble de données peut mettre en erreur le graphique si la "
-"métadonnées n'existe pas."
+"Attention! Changer l’ensemble de données peut mettre en erreur le "
+"graphique si la métadonnées n'existe pas."
 
 msgid "Was unable to check your query"
 msgstr "Impossible de vérifier votre requête"
@@ -13775,25 +14229,30 @@ msgid "Waterfall Chart"
 msgstr "Graphique en cascade"
 
 msgid ""
-"We are unable to connect to your database. Click \"See more\" for database-"
-"provided information that may help troubleshoot the issue."
+"We are unable to connect to your database. Click \"See more\" for "
+"database-provided information that may help troubleshoot the issue."
 msgstr ""
-"Nous ne pouvons pas nous connecter à votre base de données. Cliquez sur « Voir "
-"plus » pour obtenir des renseignements fournis par la base de données qui "
-"pourraient aider à résoudre le problème."
+"Nous ne pouvons pas nous connecter à votre base de données. Cliquez sur «"
+" Voir plus » pour obtenir des renseignements fournis par la base de "
+"données qui pourraient aider à résoudre le problème."
 
 #, 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."
+msgstr ""
+"Nous ne pouvons résoudre la colonne « %(column)s » à la ligne "
+"%(location)s."
 
 #, 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 »"
 
 #, python-format
-msgid "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s."
+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."
+"Nous ne pouvons résoudre la colonne « %(column_name)s » à la ligne "
+"%(location)s."
 
 #, python-format
 msgid "We have the following keys: %s"
@@ -13802,18 +14261,20 @@ msgstr "Nous avons les clés suivantes : %s"
 msgid "We were unable to active or deactivate this report."
 msgstr "Nous n'avons pas pu activer ou désactiver ce rapport."
 
-msgid "We were unable to carry over any controls when switching to this new dataset."
+msgid ""
+"We were unable to carry over any controls when switching to this new "
+"dataset."
 msgstr ""
-"Nous n’avons pas été en mesure de reporter les contrôles lors du passage à ce "
-"nouvel ensemble de données."
+"Nous n’avons pas été en mesure de reporter les contrôles lors du passage "
+"à ce nouvel ensemble de données."
 
 #, python-format
 msgid ""
-"We were unable to connect to your database named \"%(database)s\". Please verify "
-"your database name and try again."
+"We were unable to connect to your database named \"%(database)s\". Please"
+" verify your database name and try again."
 msgstr ""
-"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."
+"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."
 
 msgid "Web"
 msgstr "Web"
@@ -13857,31 +14318,31 @@ msgstr "Poids"
 
 #, python-format
 msgid ""
-"We’re having trouble loading these results. Queries are set to timeout after %s "
-"second."
+"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."
+"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."
+"Erreur au chargement de ces résultats. Les requêtes s'interrompent au "
+"bout de %s secondes."
 msgstr[1] ""
-"Erreur au chargement de ces résultats. Les requêtes s'interrompent au bout de %s "
-"secondes."
+"Erreur au chargement de ces résultats. Les requêtes s'interrompent au "
+"bout de %s secondes."
 
 #, python-format
 msgid ""
-"We’re having trouble loading this visualization. Queries are set to timeout after "
-"%s second."
+"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."
+"We’re having trouble loading this visualization. Queries are set to "
+"timeout after %s seconds."
 msgstr[0] ""
-"Nous avons des difficultés à charger cette visualisation. Les requêtes sont "
-"paramétrées pour être interrompues au bout de %s secondes."
+"Nous avons des difficultés à charger cette visualisation. Les requêtes "
+"sont paramétrées pour être interrompues au bout de %s secondes."
 msgstr[1] ""
-"Nous avons des difficultés à charger cette visualisation. Les requêtes sont "
-"paramétrées pour être interrompues au bout de %s secondes."
+"Nous avons des difficultés à charger cette visualisation. Les requêtes "
+"sont paramétrées pour être interrompues au bout de %s secondes."
 
 msgid "What should be shown as the label"
 msgstr ""
@@ -13897,100 +14358,95 @@ msgid "What should happen if the table already exists"
 msgstr "Un ensemble de filtre avec ce tableau existe déjà"
 
 msgid ""
-"When `Calculation type` is set to \"Percentage change\", the Y Axis Format is "
-"forced to `.1%`"
+"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 "
-"des ordonnées est à forcé à « .1% »"
+"Lorsque « Type de calcul » vaut « Pourcentage de changement », le format "
+"de l'axe des ordonnées est à forcé à « .1% »"
 
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr ""
-"Lorsqu’une mesure secondaire est fournie, une échelle de couleur linéaire est "
-"utilisée."
-
-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, cette option "
-"force la création du tableau dans ce schéma"
+"Lorsqu’une mesure secondaire est fournie, une échelle de couleur linéaire"
+" est utilisée."
 
 msgid "When checked, the map will zoom to your data after each query"
 msgstr ""
-"Si cette option est cochée, la carte sera zoomée sur vos données après chaque "
-"requête"
+"Si cette option est cochée, la carte sera zoomée sur vos données après "
+"chaque requête"
 
 msgid "When enabled, users are able to visualize SQL Lab results in Explore."
 msgstr ""
-"Quand activé, les utilisateur·rice·s peuvent visualiser les résulats de SQL Lab "
-"dans Explorer."
+"Quand activé, les utilisateur·rice·s peuvent visualiser les résulats de "
+"SQL Lab dans Explorer."
 
 msgid "When only a primary metric is provided, a categorical color scale is used."
 msgstr ""
-"Lorsque seule une mesure primaire est fournie, une échelle de couleur catégorique "
-"est utilisée."
+"Lorsque seule une mesure primaire est fournie, une échelle de couleur "
+"catégorique est utilisée."
+
+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 ""
+"Lorsque vous spécifiez SQL, la source de données agit comme une vue. "
+"Superset utilisera cette déclaration comme une sous-requête tout en "
+"regroupant et en filtrant les requêtes parentales générées."
 
 msgid ""
-"When specifying SQL, the datasource acts as a view. Superset will use this "
-"statement as a subquery while grouping and filtering on the generated parent "
-"queries."
+"When the secondary temporal columns are filtered, apply the same filter "
+"to the main datetime column."
 msgstr ""
-"Lorsque vous spécifiez SQL, la source de données agit comme une vue. Superset "
-"utilisera cette déclaration comme une sous-requête tout en regroupant et en "
-"filtrant les requêtes parentales générées."
 
 msgid ""
-"When the secondary temporal columns are filtered, apply the same filter to the "
-"main datetime column."
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
 msgstr ""
 
 msgid ""
-"When using \"Autocomplete filters\", this can be used to improve performance of "
-"the query fetching the values. Use this option to apply a predicate (WHERE clause) "
-"to the query selecting the distinct values from the table. Typically the intent "
-"would be to limit the scan by applying a relative time filter on a partitioned or "
-"indexed time-related field."
+"When using \"Autocomplete filters\", this can be used to improve "
+"performance of the query fetching the values. Use this option to apply a "
+"predicate (WHERE clause) to the query selecting the distinct values from "
+"the table. Typically the intent would be to limit the scan by applying a "
+"relative time filter on a partitioned or indexed time-related field."
 msgstr ""
-"Lorsque vous utilisez les « filtres de saisie semi-automatique », cette option "
-"peut être utilisée pour améliorer les performances de la requête qui récupère les "
-"valeurs. Utilisez cette option pour appliquer un prédicat (clause WHERE) à la "
-"requête en sélectionnant les valeurs distinctes du tableau. Généralement, "
-"l'objectif est de limiter l'analyse en appliquant un filtre temporel relatif sur "
-"un champ temporel partitionné ou indexé."
+"Lorsque vous utilisez les « filtres de saisie semi-automatique », cette "
+"option peut être utilisée pour améliorer les performances de la requête "
+"qui récupère les valeurs. Utilisez cette option pour appliquer un "
+"prédicat (clause WHERE) à la requête en sélectionnant les valeurs "
+"distinctes du tableau. Généralement, l'objectif est de limiter l'analyse "
+"en appliquant un filtre temporel relatif sur un champ temporel "
+"partitionné ou indexé."
 
 msgid "When using 'Group By' you are limited to use a single metric"
 msgstr "Quand vous utilisez « Grouper par » vous êtes limité à une seule mesure"
 
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
-"Lorsque vous utilisez un formatage autre que adaptatif, les étiquettes peuvent se "
-"chevaucher"
+"Lorsque vous utilisez un formatage autre que adaptatif, les étiquettes "
+"peuvent se chevaucher"
 
-msgid "When using this option, default value can’t be set"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
 msgstr ""
-"Lorsque vous utilisez cette option, la valeur par défaut ne peut pas être définie"
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr ""
-"Si la barre de progression se chevauche lorsqu’il y a plusieurs groupes de données"
-
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr "Si le tableau a été générée par le flux « Visualiser » dans SQL Lab"
-
-msgid "Whether this column is exposed in the `Filters` section of the explore view."
-msgstr ""
-"Si cette colonne est exposée dans la section « Filtres » de la vue d'exploration."
+"Si la barre de progression se chevauche lorsqu’il y a plusieurs groupes "
+"de données"
 
 msgid ""
-"Whether to align background charts with both positive and negative values at 0"
+"Whether to align background charts with both positive and negative values"
+" at 0"
 msgstr ""
-"Alignement ou non des graphiques d'arrière-plan avec des valeurs positives et "
-"négatives à 0"
+"Alignement ou non des graphiques d'arrière-plan avec des valeurs "
+"positives et négatives à 0"
 
 msgid "Whether to align positive and negative values in cell bar chart at 0"
 msgstr ""
-"Si les valeurs positives et négatives doivent être alignées sur 0 dans le "
-"diagramme à barres de la cellule"
+"Si les valeurs positives et négatives doivent être alignées sur 0 dans le"
+" diagramme à barres de la cellule"
 
 msgid "Whether to always show the annotation label"
 msgstr "Indiquer si l'étiquette de l'annotation doit toujours être affichée"
@@ -14000,22 +14456,26 @@ msgstr "Animation ou non de la progression et la valeur ou simplement les affich
 
 msgid "Whether to apply a normal distribution based on rank on the color scale"
 msgstr ""
-"Application ou non d’une distribution normale en fonction du classement sur "
-"l’échelle de couleurs"
+"Application ou non d’une distribution normale en fonction du classement "
+"sur l’échelle de couleurs"
 
 msgid "Whether to apply filter when items are clicked"
 msgstr "Application ou non du filtre lorsque vous cliquez sur les éléments"
 
 msgid "Whether to colorize numeric values by if they are positive or negative"
 msgstr ""
-"Colorisation ou non des valeurs numériques si elles sont positives ou négatives"
+"Colorisation ou non des valeurs numériques si elles sont positives ou "
+"négatives"
 
-msgid "Whether to colorize numeric values by whether they are positive or negative"
+msgid ""
+"Whether to colorize numeric values by whether they are positive or "
+"negative"
 msgstr ""
 
 msgid "Whether to display a bar chart background in table columns"
 msgstr ""
-"Affichage ou non d'un fond de diagramme à barres dans les colonnes du tableau"
+"Affichage ou non d'un fond de diagramme à barres dans les colonnes du "
+"tableau"
 
 msgid "Whether to display a legend for the chart"
 msgstr "Affichage ou non une légende pour le graphique"
@@ -14023,6 +14483,10 @@ msgstr "Affichage ou non une légende pour le graphique"
 msgid "Whether to display bubbles on top of countries"
 msgstr "Affichage ou non des bulles au-dessus des pays"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Affichage ou non une légende pour le graphique"
+
 msgid "Whether to display the aggregate count"
 msgstr "Affichage ou non du nombre total"
 
@@ -14032,13 +14496,6 @@ msgstr "Affichage ou non du tableau de données interactif"
 msgid "Whether to display the labels."
 msgstr "Afficher ou non des étiquettes."
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the 5% "
-"threshold."
-msgstr ""
-"Afficher ou non lesdesétiquettes. Notez que l’étiquette s’affiche uniquement "
-"lorsque le seuil est de 5 %."
-
 msgid "Whether to display the legend (toggles)"
 msgstr "Affichage ou non de la légende (commutateurs)"
 
@@ -14054,6 +14511,10 @@ msgstr "Affichage ou non des valeurs min et max de l’axe des ordonnées"
 msgid "Whether to display the numerical values within the cells"
 msgstr "Affichage ou non des valeurs numériques dans les cellules"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Indiquer si le pourcentage doit être inclus dans l'infobulle"
+
 #, fuzzy
 msgid "Whether to display the stroke"
 msgstr "Affichage ou non du trait"
@@ -14068,13 +14529,21 @@ msgstr "Affichage ou non de l’horodatage"
 msgid "Whether to display the tooltip labels."
 msgstr "Métrique servant à trier les résultats"
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Affichage ou non des valeurs numériques dans les cellules"
+
 msgid "Whether to display the trend line"
 msgstr "Affichage ou non de la ligne de tendance"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Affichage ou non du nombre total"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr ""
-"Activation ou non de la modification de la position et de la mise à l’échelle du "
-"graphique."
+"Activation ou non de la modification de la position et de la mise à "
+"l’échelle du graphique."
 
 msgid "Whether to enable node dragging in force layout mode."
 msgstr "Activation ou non du glissement de nœud en mode de disposition en force."
@@ -14096,49 +14565,30 @@ msgstr "Indiquer si le pourcentage doit être inclus dans l'infobulle"
 
 msgid "Whether to include the time granularity as defined in the time section"
 msgstr ""
-"Inclure ou non la granularité temporelle telle qu'elle est définie dans la section "
-"temps"
+"Inclure ou non la granularité temporelle telle qu'elle est définie dans "
+"la section temps"
 
 #, fuzzy
 msgid "Whether to make the grid 3D"
 msgstr "Si la grille doit être en 3D"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "Si l'histogramme doit être cumulatif"
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, column has "
-"to be DATETIME or DATETIME-like"
-msgstr ""
-"Pour que cette colonne soit disponible en tant qu'option [Granularité temporelle], "
-"la colonne doit être de type DATETIME ou semblable à DATETIME"
-
-msgid "Whether to normalize the histogram"
-msgstr "Normaliser ou non l'histogramme"
-
 msgid "Whether to populate autocomplete filters options"
 msgstr "Remplir ou non les options des filtres d'autocomplétion"
 
-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 ""
-"Remplir ou non la liste déroulante du filtre dans la section filtre de la vue "
-"d'exploration avec une liste de valeurs distinctes récupérées à la volée dans le "
-"backend"
-
 #, fuzzy
 msgid "Whether to show as Nightingale chart."
 msgstr ""
-"Indiquer ou non s’il y a lieu de montrer la progression du graphique de jauge"
+"Indiquer ou non s’il y a lieu de montrer la progression du graphique de "
+"jauge"
 
+#, fuzzy
 msgid ""
-"Whether to show extra controls or not. Extra controls include things like making "
-"mulitBar charts stacked or side by side."
+"Whether to show extra controls or not. Extra controls include things like"
+" making multiBar charts stacked or side by side."
 msgstr ""
-"Montrer ou non des contrôles supplémentaires. Les contrôles supplémentaires "
-"comprennent des choses comme faire des tableaux à barres multiples empilés ou côte "
-"à côte."
+"Montrer ou non des contrôles supplémentaires. Les contrôles "
+"supplémentaires comprennent des choses comme faire des tableaux à barres "
+"multiples empilés ou côte à côte."
 
 msgid "Whether to show minor ticks on the axis"
 msgstr "Montrer ou non les taches mineures sur l'axe"
@@ -14148,7 +14598,8 @@ msgstr "Montrer ou non le pointeur"
 
 msgid "Whether to show the progress of gauge chart"
 msgstr ""
-"Indiquer ou non s’il y a lieu de montrer la progression du graphique de jauge"
+"Indiquer ou non s’il y a lieu de montrer la progression du graphique de "
+"jauge"
 
 msgid "Whether to show the split lines on the axis"
 msgstr "Indiquer ou non s’il faut afficher les lignes divisées sur l’axe"
@@ -14160,20 +14611,15 @@ msgstr "Trier ou non par ordre décroissant ou croissant sur l'axe de base."
 msgid "Whether to sort descending or ascending"
 msgstr "Trier ou non par ordre décroissant ou croissant"
 
-#, fuzzy
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr ""
-"Trier ou non par ordre décroissant ou croissant en présence d'une limite de série"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
-"Trier ou non les résultats par ordre décroissant en fonction de l'indicateur "
-"sélectionné."
+"Trier ou non les résultats par ordre décroissant en fonction de "
+"l'indicateur sélectionné."
 
 msgid "Whether to sort tooltip by the selected metric in descending order."
 msgstr ""
-"Trier ou non les infobulles par ordre décroissant en fonction de l'indicateur "
-"sélectionné."
+"Trier ou non les infobulles par ordre décroissant en fonction de "
+"l'indicateur sélectionné."
 
 #, fuzzy
 msgid "Whether to truncate metrics"
@@ -14230,9 +14676,6 @@ msgstr "Écrire une description pour votre requête"
 msgid "Write a handlebars template to render the data"
 msgstr "Écrire un modèle handlebar pour afficher les données"
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "MARGE INFÉRIEURE DU TITRE DE L'AXE DES ABSCISSES"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "MARGE DU TITRE DE L'AXE DES ABCISSES"
 
@@ -14251,6 +14694,10 @@ msgstr "Étiquette de l’axe des abscisses"
 msgid "X Axis Title"
 msgstr "Titre de l’axe des absisses"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Marge du titre de l'axe des ordonnées"
+
 msgid "X Log Scale"
 msgstr "Échelle logarithmique X"
 
@@ -14273,6 +14720,9 @@ msgstr "Axe des abscisses"
 msgid "XScale Interval"
 msgstr "Intervalle XScale"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Limites ordonnées 2"
 
@@ -14359,44 +14809,62 @@ msgid "You are adding tags to %s %ss"
 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?"
+"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 une ou plusieurs cartes qui existent déjà. L'écrasement pourrait "
-"vous faire perdre une partie de votre travail. Êtes-vous sûr de vouloir les "
-"écraser?"
+"Vous importez une ou plusieurs cartes qui existent déjà. L'écrasement "
+"pourrait vous faire perdre une partie de votre travail. Êtes-vous sûr de "
+"vouloir les écraser?"
 
 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?"
+"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 "
-"pourrait vous faire perdre une partie de votre travail. Êtes-vous sûr de vouloir "
-"les écraser?"
+"Vous importez un ou plusieurs tableaux de bord qui existent déjà. "
+"L'écrasement pourrait vous faire perdre une partie de votre travail. "
+"Êtes-vous sûr de vouloir les écraser?"
 
 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?"
+"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 "
-"pourrait vous faire perdre une partie de votre travail. Êtes-vous sûr de vouloir "
-"les écraser?"
+"Vous importez une ou plusieurs bases de données qui existent déjà. "
+"L'écrasement pourrait vous faire perdre une partie de votre travail. "
+"Êtes-vous sûr de vouloir les écraser?"
 
 msgid ""
-"You are importing one or more datasets that already exist. Overwriting might cause "
-"you to lose some of your work. Are you sure you want to overwrite?"
+"You are importing one or more datasets that already exist. Overwriting "
+"might cause you to lose some of your work. Are you sure you want to "
+"overwrite?"
 msgstr ""
-"Vous importez un ou plusieurs ensembles de données qui existent déjà. L'écrasement "
-"pourrait vous faire perdre une partie de votre travail. Êtes-vous sûr de vouloir "
-"les écraser?"
+"Vous importez un ou plusieurs ensembles de données qui existent déjà. "
+"L'écrasement pourrait vous faire perdre une partie de votre travail. "
+"Êtes-vous sûr de vouloir les écraser?"
 
 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?"
+"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 enregistrées qui existent déjà. "
-"L'écrasement pourrait vous faire perdre une partie de votre travail. Êtes-vous sûr "
-"de vouloir les écraser?"
+"L'écrasement pourrait vous faire perdre une partie de votre travail. "
+"Êtes-vous sûr de vouloir les écraser?"
+
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
 
 #, fuzzy
 msgid "You can"
@@ -14411,41 +14879,46 @@ msgstr "Vous pouvez ajouter les composants dans le mode Éditer."
 
 msgid "You can also just click on the chart to apply cross-filter."
 msgstr ""
-"Vous pouvez également cliquer sur le graphique pour appliquer le filtre croisé."
+"Vous pouvez également cliquer sur le graphique pour appliquer le filtre "
+"croisé."
 
 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."
+"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 ""
-"Vous pouvez choisir d'afficher tous les graphiques auxquels vous avez accès ou "
-"seulement ceux que vous possédez. Votre sélection de filtre sera sauvegardée et "
-"restera active jusqu'à ce que vous décidiez de la modifier."
+"Vous pouvez choisir d'afficher tous les graphiques auxquels vous avez "
+"accès ou seulement ceux que vous possédez. Votre sélection de filtre sera"
+" sauvegardée et restera active jusqu'à ce que vous décidiez de la "
+"modifier."
 
-msgid "You can create a new chart or use existing ones from the panel on the right"
+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 utiliser des graphiques existants dans "
-"le panneau de droite"
+"Vous pouvez créer un nouveau graphique ou utiliser des graphiques "
+"existants dans le panneau de droite"
 
 msgid "You can preview the list of dashboards in the chart settings dropdown."
 msgstr ""
-"Vous pouvez prévisualiser la liste des tableaux de bord dans le menu déroulant des "
-"paramètres du graphique."
+"Vous pouvez prévisualiser la liste des tableaux de bord dans le menu "
+"déroulant des paramètres du graphique."
 
 msgid "You can't apply cross-filter on this data point."
 msgstr "Vous ne pouvez pas appliquer de filtre croisé à ce point de données."
 
 msgid ""
-"You cannot delete the last temporal filter as it's used for time range filters in "
-"dashboards."
+"You cannot delete the last temporal filter as it's used for time range "
+"filters in dashboards."
 msgstr ""
-"Vous ne pouvez pas supprimer le dernier filtre temporel, car il est utilisé pour "
-"les filtres temporels dans les tableaux de bord."
+"Vous ne pouvez pas supprimer le dernier filtre temporel, car il est "
+"utilisé pour les filtres temporels dans les tableaux de bord."
 
 msgid "You cannot use 45° tick layout along with the time range filter"
 msgstr ""
-"Vous ne pouvez pas utiliser la disposition de 45° avec le filtre de plage de temps"
+"Vous ne pouvez pas utiliser la disposition de 45° avec le filtre de plage"
+" de temps"
 
 #, fuzzy, python-format
 msgid "You do not have permission to edit this %s"
@@ -14483,9 +14956,6 @@ msgstr "Vous n'avez pas accès à cet ensemble de données."
 msgid "You don't have access to this embedded dashboard config."
 msgstr "Vous n'avez pas accès à la configuration de ce tableau de bord intégré."
 
-msgid "You don't have any favorites yet!"
-msgstr "Vous n'avez pas encore de favoris!"
-
 #, fuzzy
 msgid "You don't have permission to modify the value."
 msgstr "Vous n'avez pas les permission pour modifier la valeur."
@@ -14522,23 +14992,24 @@ msgstr "Vous avez des modifications non enregistrées."
 
 #, python-format
 msgid ""
-"You have used all %(historyLength)s undo slots and will not be able to fully undo "
-"subsequent actions. You may save your current state to reset the history."
+"You have used all %(historyLength)s undo slots and will not be able to "
+"fully undo subsequent actions. You may save your current state to reset "
+"the history."
 msgstr ""
-"Vous avez utilisé tous les emplacements d%(historyLength)s'annulation et ne "
-"pourrez pas annuler complètement les actions subséquentes. Vous pouvez enregistrer "
-"votre état actuel pour réinitialiser l’historique."
+"Vous avez utilisé tous les emplacements d%(historyLength)s'annulation et "
+"ne pourrez pas annuler complètement les actions subséquentes. Vous pouvez"
+" enregistrer votre état actuel pour réinitialiser l’historique."
 
 msgid "You may have an error in your SQL statement. {message}"
 msgstr "Vous avez possiblement une erreur dans votre requête SQL. {message}"
 
 msgid ""
-"You must be a dataset owner in order to edit. Please reach out to a dataset owner "
-"to request modifications or edit access."
+"You must be a dataset owner in order to edit. Please reach out to a "
+"dataset owner to request modifications or edit access."
 msgstr ""
-"Vous devez être propriétaire d'un ensemble de données pour pouvoir le modifier. "
-"Veuillez communiquer avec un propriétaire d’ensemble de données pour demander des "
-"modifications ou modifier l’accès."
+"Vous devez être propriétaire d'un ensemble de données pour pouvoir le "
+"modifier. Veuillez communiquer avec un propriétaire d’ensemble de données"
+" pour demander des modifications ou modifier l’accès."
 
 msgid "You must pick a name for the new dashboard"
 msgstr "Vous devez entrer un nom pour le nouveau tableau de Bord"
@@ -14550,20 +15021,21 @@ msgid "You need to configure HTML sanitization to use CSS"
 msgstr "Vous devez configurer la désinfection HTML pour utiliser CSS"
 
 msgid ""
-"You updated the values in the control panel, but the chart was not updated "
-"automatically. Run the query by clicking on the \"Update chart\" button or"
+"You updated the values in the control panel, but the chart was not "
+"updated automatically. Run the query by clicking on the \"Update chart\" "
+"button or"
 msgstr ""
-"Vous avez mis à jour les valeurs dans le panneau de commande, mais le graphique "
-"n’a pas été mis à jour automatiquement. Exécutez la requête en cliquant sur le "
-"bouton « Mettre à jour le graphique » ou"
+"Vous avez mis à jour les valeurs dans le panneau de commande, mais le "
+"graphique n’a pas été mis à jour automatiquement. Exécutez la requête en "
+"cliquant sur le bouton « Mettre à jour le graphique » ou"
 
 msgid ""
-"You've changed datasets. Any controls with data (columns, metrics) that match this "
-"new dataset have been retained."
+"You've changed datasets. Any controls with data (columns, metrics) that "
+"match this new dataset have been retained."
 msgstr ""
-"Vous avez modifié les ensembles de données. Tous les contrôles contenant des "
-"données (colonnes, mesures) qui correspondent à ce nouveau ensemble de données ont "
-"été conservés."
+"Vous avez modifié les ensembles de données. Tous les contrôles contenant "
+"des données (colonnes, mesures) qui correspondent à ce nouveau ensemble "
+"de données ont été conservés."
 
 msgid "Your chart is not up to date"
 msgstr "Votre graphique n’est pas à jour"
@@ -14571,6 +15043,9 @@ msgstr "Votre graphique n’est pas à jour"
 msgid "Your chart is ready to go!"
 msgstr "Votre graphique est prêt!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr ""
 "Votre tableau de bord est trop gros. Veuille réduire sa taille avant de "
@@ -14586,11 +15061,11 @@ msgid "Your query could not be updated"
 msgstr "Votre requête n'a pas pu être mise à jour"
 
 msgid ""
-"Your query has been scheduled. To see details of your query, navigate to Saved "
-"queries"
+"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, veuillez "
-"naviguer vers Requêtes sauvegardées"
+"Votre requête a été planifiée. Pour voir les détails de votre requête, "
+"veuillez naviguer vers Requêtes sauvegardées"
 
 #, fuzzy
 msgid "Your query was not properly saved"
@@ -14602,6 +15077,9 @@ msgstr "Votre requête a été enregistrée"
 msgid "Your query was updated"
 msgstr "Votre requête a été mise à jour"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "Votre rapport n'a pas pu être supprimée"
 
@@ -14615,6 +15093,10 @@ msgstr "Imputation nulle"
 msgid "Zoom"
 msgstr "Zoom"
 
+#, fuzzy
+msgid "Zoom level"
+msgstr "zone de zoom"
+
 msgid "Zoom level of the map"
 msgstr "Niveau de zoom de la carte"
 
@@ -14623,7 +15105,8 @@ msgstr "[ tableau de bord sans titre ]"
 
 msgid "[Longitude] and [Latitude] columns must be present in [Group By]"
 msgstr ""
-"Les colonnes [Longitude] et [Latitude] doivent êtres présentes dans [Grouper par]"
+"Les colonnes [Longitude] et [Latitude] doivent êtres présentes dans "
+"[Grouper par]"
 
 msgid "[Longitude] and [Latitude] must be set"
 msgstr "Les colonnes [Longitude] et [Latitude] doivent êtres définies"
@@ -14645,12 +15128,13 @@ msgid "[desc]"
 msgstr "[décroissant]"
 
 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"
+"[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 ""
-"[Facultatif] cette mesure secondaire est utilisée pour définir la couleur en tant "
-"que rapport par rapport à la mesure primaire. Si elle est omise, la couleur est "
-"catégorique et basée sur des étiquettes"
+"[Facultatif] cette mesure secondaire est utilisée pour définir la couleur"
+" en tant que rapport par rapport à la mesure primaire. Si elle est omise,"
+" la couleur est catégorique et basée sur des étiquettes"
 
 #, fuzzy
 msgid "[untitled]"
@@ -14666,14 +15150,14 @@ msgid "`confidence_interval` must be between 0 and 1 (exclusive)"
 msgstr "« confidence_interval » doit être entre 0 et 1 (exclusif)"
 
 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."
+"`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 » est COUNT(*) si un groupe par est utilisé. Les colonnes numériques "
-"seront regroupées avec l’agrégateur. Les colonnes non numériques seront utilisées "
-"pour étiqueter les points. Laissez vide pour obtenir un compte de points dans "
-"chaque regroupement."
+"« count » est COUNT(*) si un groupe par est utilisé. Les colonnes "
+"numériques seront regroupées avec l’agrégateur. Les colonnes non "
+"numériques seront utilisées pour étiqueter les points. Laissez vide pour "
+"obtenir un compte de points dans chaque regroupement."
 
 msgid "`operation` property of post processing object undefined"
 msgstr "La propriété « operation » de l'objet de post-traitement est indéfinie"
@@ -14682,7 +15166,8 @@ msgid "`prophet` package not installed"
 msgstr "Paquet « prophet » non installée"
 
 msgid ""
-"`rename_columns` must have the same length as `columns` + `time_shift_columns`."
+"`rename_columns` must have the same length as `columns` + "
+"`time_shift_columns`."
 msgstr ""
 "\"rename_columns\" doit être de la même longueur que \"columns\" + "
 "\"time_shift_columns\"."
@@ -14740,9 +15225,6 @@ msgstr "at"
 msgid "auto"
 msgstr "auto"
 
-msgid "auto (Smooth)"
-msgstr "auto (lisse)"
-
 msgid "background"
 msgstr "contexte"
 
@@ -14793,9 +15275,6 @@ msgstr "changement"
 msgid "chart"
 msgstr "graphique"
 
-msgid "charts"
-msgstr "graphiques"
-
 msgid "choose WHERE or HAVING..."
 msgstr "choisir WHERE ou HAVING..."
 
@@ -14805,6 +15284,10 @@ msgstr "reinitialiser tous les filtres"
 msgid "click here"
 msgstr "cliquer ici"
 
+#, fuzzy
+msgid "close"
+msgstr "Fermer"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr "code ISO 3166-1 alpha-2 (cca2)"
 
@@ -14854,15 +15337,9 @@ msgstr "css_template"
 msgid "cumsum"
 msgstr "cumsum"
 
-msgid "cumulative"
-msgstr "cumulatif"
-
 msgid "dashboard"
 msgstr "tableau de bord"
 
-msgid "dashboards"
-msgstr "tableaux de bord"
-
 msgid "database"
 msgstr "base de données"
 
@@ -14939,9 +15416,6 @@ msgstr "deckGL"
 msgid "default"
 msgstr "défaut"
 
-msgid "delete"
-msgstr "supprimer"
-
 msgid "descendant"
 msgstr "décroissant"
 
@@ -14954,9 +15428,6 @@ msgstr "déviation"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr "dialect+driver://username:password@host:port/database"
 
-msgid "draft"
-msgstr "ébauche"
-
 msgid "dttm"
 msgstr "dttm"
 
@@ -14996,9 +15467,6 @@ msgstr "p. ex. world_population"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "p. ex., xy12345.us-east-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "p. ex. une colonne \"id utilisateur\""
-
 msgid "edit mode"
 msgstr "mode edition"
 
@@ -15008,6 +15476,10 @@ msgstr "sujet d'email"
 msgid "entries"
 msgstr "entrées"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "entrées"
+
 msgid "error"
 msgstr "erreur"
 
@@ -15071,7 +15543,9 @@ msgid "heatmap"
 msgstr "carte thermique"
 
 msgid "heatmap: values are normalized across the entire heatmap"
-msgstr "carte thermique : les valeurs sont normalisées sur toute la carte thermique"
+msgstr ""
+"carte thermique : les valeurs sont normalisées sur toute la carte "
+"thermique"
 
 msgid "here"
 msgstr "ici"
@@ -15079,13 +15553,6 @@ msgstr "ici"
 msgid "hour"
 msgstr "heure"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the browser "
-"scales up the image"
-msgstr ""
-"attribut CSS de rendu d'image de l'objet toile qui définit la façon dont le "
-"navigateur met à l'échelle l'image"
-
 msgid "in"
 msgstr "dans"
 
@@ -15095,6 +15562,10 @@ msgstr "dans modal"
 msgid "invalid email"
 msgstr "email invalide"
 
+#, fuzzy
+msgid "is"
+msgstr "dans"
+
 msgid "is expected to be a Mapbox URL"
 msgstr "est attendu d'être une URL de Mapbox"
 
@@ -15104,6 +15575,29 @@ msgstr "devrait être un nombre"
 msgid "is expected to be an integer"
 msgstr "devrait être un nombre entier"
 
+#, fuzzy, python-format
+msgid ""
+"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 brisera ces objets."
+
+#, fuzzy, python-format
+msgid ""
+"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 ""
+"L'ensemble de données %s est lié aux graphiques %s qui apparaissent dans "
+"%s tableaux de bord. Êtes-vous sûr de vouloir continuer? La suppression "
+"de l'ensemble de données brisera ces objets."
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "clé a-z"
 
@@ -15132,11 +15626,11 @@ msgid "log"
 msgstr "journal"
 
 msgid ""
-"lower percentile must be greater than 0 and less than 100. Must be lower than "
-"upper percentile."
+"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."
+"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."
 
 #, fuzzy
 msgid "max"
@@ -15243,48 +15737,37 @@ msgstr "p99"
 msgid "page_size.all"
 msgstr "page_size.all"
 
-msgid "page_size.entries"
-msgstr "page_size.entries"
-
-msgid "page_size.show"
-msgstr "page_size.show"
-
 #, fuzzy
 msgid "pending"
 msgstr "en attente"
 
-msgid "percentile (exclusive)"
-msgstr "percentile (exclusif)"
-
 msgid ""
-"percentiles must be a list or tuple with two numeric values, of which the first is "
-"lower than the second value"
+"percentiles must be a list or tuple with two numeric values, of which the"
+" first is lower than the second value"
 msgstr ""
-"percentiles doit être une liste ou un tuple avec deux valeurs numériques, dont la "
-"première est inférieure à la deuxième valeur"
+"percentiles doit être une liste ou un tuple avec deux valeurs numériques,"
+" dont la première est inférieure à la deuxième valeur"
 
 #, fuzzy
 msgid "permalink state not found"
 msgstr "état du programme de rapport introuvable"
 
-msgid "pixelated (Sharp)"
-msgstr "pixellisé (aiguisé)"
-
 msgid "pixels"
 msgstr "pixels"
 
 msgid "previous calendar month"
 msgstr "mois calendaire précédent"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "année calendaire précédente"
+
 msgid "previous calendar week"
 msgstr "semaine calendaire précédente"
 
 msgid "previous calendar year"
 msgstr "année calendaire précédente"
 
-msgid "published"
-msgstr "publié"
-
 #, fuzzy
 msgid "quarter"
 msgstr "trimestre"
@@ -15306,10 +15789,6 @@ msgstr "redémarrage"
 msgid "recent"
 msgstr "récent"
 
-#, fuzzy
-msgid "recents"
-msgstr "récents"
-
 #, fuzzy
 msgid "recipients"
 msgstr "récents"
@@ -15336,8 +15815,8 @@ msgid "running"
 msgstr "en cours d’exécution"
 
 #, fuzzy
-msgid "saved queries"
-msgstr "Requêtes enregistrées"
+msgid "save"
+msgstr "Enregistrer"
 
 #, fuzzy
 msgid "seconds"
@@ -15348,16 +15827,13 @@ msgid "series"
 msgstr "série"
 
 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"
+"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érie : traiter chaque série indépendamment; dans l’ensemble : toutes les séries "
-"utilisent la même échelle; changement : afficher les changements par rapport au "
-"premier point de données de chaque série"
-
-#, fuzzy
-msgid "shift start date"
-msgstr "Date de début"
+"série : traiter chaque série indépendamment; dans l’ensemble : toutes les"
+" séries utilisent la même échelle; changement : afficher les changements "
+"par rapport au premier point de données de chaque série"
 
 msgid "sql"
 msgstr "sql"
@@ -15422,10 +15898,6 @@ msgstr "icône de type temporel"
 msgid "textarea"
 msgstr "textarea"
 
-#, fuzzy
-msgid "to"
-msgstr "à"
-
 #, fuzzy
 msgid "top"
 msgstr "haut"
@@ -15438,12 +15910,20 @@ msgstr "annuler"
 msgid "unknown type icon"
 msgstr "icône de type inconnu"
 
+#, fuzzy
+msgid "unset"
+msgstr "Juin"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "Dernière mise à jour %s"
+
 msgid ""
-"upper percentile must be greater than 0 and less than 100. Must be higher than "
-"lower percentile."
+"upper percentile must be greater than 0 and less than 100. Must be higher"
+" than lower percentile."
 msgstr ""
-"le centile supérieur doit être supérieur à 0 et inférieur à 100. Doit être "
-"supérieur au percentile inférieur."
+"le centile supérieur doit être supérieur à 0 et inférieur à 100. Doit "
+"être supérieur au percentile inférieur."
 
 #, fuzzy
 msgid "use latest_partition template"
@@ -15466,9 +15946,6 @@ msgstr "variance"
 msgid "view instructions"
 msgstr "voir les instructions"
 
-msgid "virtual"
-msgstr "virtuel"
-
 msgid "viz type"
 msgstr "type viz"
 
@@ -15504,3 +15981,6 @@ msgstr "année"
 
 msgid "zoom area"
 msgstr "zone de zoom"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/it/LC_MESSAGES/messages.po b/superset/translations/it/LC_MESSAGES/messages.po
index 52f9356bb04a021f57f266ad28e80d8c6525a904..124fc80ed1c30f935d65cd3ef8c7457bcc08740d 100644
--- a/superset/translations/it/LC_MESSAGES/messages.po
+++ b/superset/translations/it/LC_MESSAGES/messages.po
@@ -17,16 +17,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2018-02-11 22:26+0200\n"
 "Last-Translator: Raffaele Spangaro <raffa@raffaelespangaro.it>\n"
 "Language: it\n"
 "Language-Team: Italiano <>\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=1; plural=0\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -66,7 +66,10 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
 
@@ -86,9 +89,17 @@ msgstr "Salva e vai alla dashboard"
 msgid " a new one"
 msgstr "Cambiato il"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr ""
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr ""
 
@@ -149,10 +160,7 @@ msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr ""
 
 #, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
+msgid "%(label)s file"
 msgstr ""
 
 #, python-format
@@ -167,22 +175,6 @@ msgstr ""
 msgid "%(object)s does not exist in this database."
 msgstr ""
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr ""
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr ""
@@ -198,13 +190,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr ""
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -212,10 +197,6 @@ msgid_plural ""
 "\"%(undefinedParameter)s\"?"
 msgstr[0] ""
 
-#, python-format
-msgid "%(type)s File"
-msgstr ""
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -267,10 +248,6 @@ msgstr ""
 msgid "%s column(s)"
 msgstr "Visualizza colonne"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -358,6 +335,10 @@ msgid ""
 "\n"
 msgstr ""
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "Seleziona data finale"
 
@@ -423,6 +404,12 @@ msgstr ""
 msgid "10 minute"
 msgstr "10 minuti"
 
+msgid "10/90 percentiles"
+msgstr ""
+
+msgid "10000"
+msgstr ""
+
 #, fuzzy
 msgid "104 weeks"
 msgstr "settimana"
@@ -528,6 +515,9 @@ msgstr ""
 msgid "5 seconds"
 msgstr ""
 
+msgid "5/95 percentiles"
+msgstr ""
+
 #, fuzzy
 msgid "52 weeks"
 msgstr "settimana"
@@ -601,9 +591,6 @@ msgstr ""
 msgid "A Big Number"
 msgstr "Numero Grande"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "Selezionare i nomi delle colonne da elaborare come date dall'elenco a discesa."
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr ""
 
@@ -613,6 +600,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr ""
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -688,11 +678,6 @@ msgid ""
 "templating syntax"
 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 ""
-
 #, fuzzy
 msgid "A timeout occurred while executing the query."
 msgstr "Errore nel creare il datasource"
@@ -800,28 +785,31 @@ msgstr ""
 msgid "Add CSS template"
 msgstr "Template CSS"
 
-msgid "Add Chart"
-msgstr "Aggiungi grafico"
-
-msgid "Add Column"
-msgstr "Aggiungi colonna"
-
 msgid "Add Dashboard"
 msgstr ""
 
-msgid "Add Database"
-msgstr "Aggiungi Database"
+msgid "Add Divider"
+msgstr ""
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Aggiungi filtro"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Aggiungi grafico"
 
 msgid "Add Log"
 msgstr ""
 
-msgid "Add Metric"
-msgstr "Aggiungi metrica"
-
 #, fuzzy
 msgid "Add Report"
 msgstr "Importa"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "Formato Datetime"
+
 #, fuzzy
 msgid "Add Rule"
 msgstr "Formato Datetime"
@@ -829,6 +817,10 @@ msgstr "Formato Datetime"
 msgid "Add Tag"
 msgstr ""
 
+#, fuzzy
+msgid "Add User"
+msgstr "Formato Datetime"
+
 msgid "Add a Plugin"
 msgstr "Aggiungi colonna"
 
@@ -910,9 +902,6 @@ msgid ""
 "displayed in the filter."
 msgstr ""
 
-msgid "Add filters and dividers"
-msgstr ""
-
 msgid "Add item"
 msgstr "Aggiungi filtro"
 
@@ -928,6 +917,10 @@ msgstr ""
 msgid "Add new formatter"
 msgstr ""
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Aggiungi filtro"
+
 msgid "Add required control values to preview chart"
 msgstr ""
 
@@ -951,13 +944,14 @@ msgstr "Salva e vai alla dashboard"
 msgid "Add to dashboard"
 msgstr "Aggiungi ad una nuova dashboard"
 
-#, fuzzy
-msgid "Add/Edit Filters"
-msgstr "Aggiungi filtro"
-
 msgid "Added"
 msgstr ""
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -973,9 +967,6 @@ msgstr ""
 msgid "Additional information"
 msgstr ""
 
-msgid "Additional metadata"
-msgstr ""
-
 msgid "Additional padding for legend."
 msgstr ""
 
@@ -1049,6 +1040,14 @@ msgstr "Analytics avanzate"
 msgid "Advanced-Analytics"
 msgstr "Analytics avanzate"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Grafico a Proiettile"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Importa dashboard"
+
 #, fuzzy
 msgid "After"
 msgstr "Aggiungi filtro"
@@ -1082,6 +1081,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "Creato il"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "Creato il"
+
 #, fuzzy
 msgid "Aggregation function"
 msgstr "Testa la Connessione"
@@ -1162,6 +1165,10 @@ msgstr ""
 msgid "All"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Colonna del Tempo"
+
 msgid "All Text"
 msgstr ""
 
@@ -1177,27 +1184,15 @@ msgstr "Filtri"
 msgid "All panels"
 msgstr ""
 
-msgid "All panels with this column will be affected by this filter"
-msgstr ""
-
 msgid "Allow CREATE TABLE AS"
 msgstr "Permetti CREATE TABLE AS"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Permetti l'opzione CREATE TABLE AS in SQL Lab"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "Permetti CREATE TABLE AS"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Permetti l'opzione CREATE TABLE AS in SQL Lab"
-
-msgid "Allow Csv Upload"
+msgid "Allow DDL and DML"
 msgstr ""
 
-msgid "Allow DML"
-msgstr "Permetti DML"
-
 msgid "Allow changing catalogs"
 msgstr ""
 
@@ -1212,6 +1207,9 @@ msgstr ""
 msgid "Allow creation of new tables based on queries"
 msgstr ""
 
+msgid "Allow creation of new values"
+msgstr ""
+
 msgid "Allow creation of new views based on queries"
 msgstr ""
 
@@ -1226,11 +1224,6 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr ""
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-
 #, fuzzy
 msgid "Allow node selections"
 msgstr "Seleziona una colonna"
@@ -1238,18 +1231,17 @@ msgstr "Seleziona una colonna"
 msgid "Allow sending multiple polygons as a filter event"
 msgstr ""
 
-msgid "Allow this database to be explored"
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
 msgstr ""
 
-msgid "Allow this database to be queried in SQL Lab"
+msgid "Allow this database to be explored"
 msgstr ""
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
+msgid "Allow this database to be queried in SQL Lab"
 msgstr ""
-"Permetti agli utenti di eseguire dichiarazioni diverse da SELECT (UPDATE,"
-" DELETE, CREATE, ...) nel SQL Lab"
 
 msgid "Allowed Domains (comma separated)"
 msgstr ""
@@ -1291,6 +1283,10 @@ msgstr ""
 msgid "An error has occurred"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Errore nel creare il datasource"
+
 msgid "An error occurred"
 msgstr ""
 
@@ -1301,6 +1297,10 @@ msgstr "Errore nel creare il datasource"
 msgid "An error occurred when running alert query"
 msgstr "Errore nel rendering della visualizzazione: %s"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Errore nel creare il datasource"
+
 #, fuzzy
 msgid "An error occurred while accessing the value."
 msgstr "Errore nel creare il datasource"
@@ -1314,6 +1314,10 @@ msgstr "Errore nel creare il datasource"
 msgid "An error occurred while creating %ss: %s"
 msgstr "Errore nel creare il datasource"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Errore nel creare il datasource"
+
 msgid "An error occurred while creating the data source"
 msgstr "Errore nel creare il datasource"
 
@@ -1454,6 +1458,10 @@ msgid ""
 "button."
 msgstr ""
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Errore nel creare il datasource"
+
 #, fuzzy
 msgid "An error occurred while updating the value."
 msgstr "Errore nel creare il datasource"
@@ -1653,12 +1661,6 @@ msgstr "Filtri"
 msgid "Apply metrics on"
 msgstr "Metrica"
 
-msgid "Apply to all panels"
-msgstr ""
-
-msgid "Apply to specific panels"
-msgstr ""
-
 msgid "April"
 msgstr ""
 
@@ -1701,6 +1703,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected queries?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected roles?"
+msgstr ""
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr ""
 
@@ -1710,6 +1715,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected templates?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected users?"
+msgstr ""
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr ""
 
@@ -1750,15 +1758,13 @@ msgstr ""
 msgid "Assist"
 msgstr ""
 
-msgid "Associated Charts"
-msgstr ""
-
-msgid "Async Execution"
-msgstr ""
-
 msgid "Asynchronous query execution"
 msgstr ""
 
+#, fuzzy
+msgid "Attribution"
+msgstr "descrizione"
+
 msgid "August"
 msgstr ""
 
@@ -1784,6 +1790,17 @@ msgstr ""
 msgid "Automatic Color"
 msgstr ""
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Visualizza colonne"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Visualizza colonne"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr ""
 
@@ -1791,6 +1808,9 @@ msgstr ""
 msgid "Average"
 msgstr "Database"
 
+msgid "Average (Mean)"
+msgstr ""
+
 #, fuzzy
 msgid "Average value"
 msgstr "Valore del filtro"
@@ -1831,6 +1851,9 @@ msgstr ""
 msgid "Backend"
 msgstr ""
 
+msgid "Background Color"
+msgstr ""
+
 #, fuzzy
 msgid "Backward values"
 msgstr "Valore del filtro"
@@ -1849,10 +1872,6 @@ msgstr ""
 msgid "Bar Chart"
 msgstr "Esplora grafico"
 
-#, fuzzy
-msgid "Bar Chart (legacy)"
-msgstr "Esplora grafico"
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
 
@@ -1868,10 +1887,25 @@ msgstr "Azione"
 msgid "Base"
 msgstr "Database"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Database"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Grafici"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Larghezza"
+
 #, fuzzy
 msgid "Based on a metric"
 msgstr "Seleziona una metrica"
@@ -1892,9 +1926,6 @@ msgstr ""
 msgid "Batch editing %d filters:"
 msgstr ""
 
-msgid "Battery level over time"
-msgstr ""
-
 msgid "Be careful."
 msgstr ""
 
@@ -1917,6 +1948,14 @@ msgstr "Numero Grande con Linea del Trend"
 msgid "Bins"
 msgstr "Min"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Colonna del Tempo"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Larghezza"
+
 #, fuzzy
 msgid "Bottom"
 msgstr "dttm"
@@ -2029,9 +2068,6 @@ msgstr "Grafico a Proiettile"
 msgid "Business"
 msgstr ""
 
-msgid "Business Data Type"
-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"
@@ -2099,7 +2135,7 @@ msgstr "Template CSS"
 msgid "CSS templates could not be deleted."
 msgstr "La query non può essere caricata"
 
-msgid "CSV Upload"
+msgid "CSV upload"
 msgstr ""
 
 msgid "CTAS & CVAS SCHEMA"
@@ -2111,8 +2147,9 @@ msgid ""
 "last statement. Then, try running your query again."
 msgstr ""
 
-msgid "CTAS Schema"
-msgstr "Schema CTAS"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "Descrizione"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2126,9 +2163,6 @@ msgstr ""
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr ""
 
-msgid "Cache Timeout"
-msgstr "Cache Timeout"
-
 msgid "Cache Timeout (seconds)"
 msgstr ""
 
@@ -2173,9 +2207,6 @@ msgstr ""
 msgid "Can select multiple values"
 msgstr ""
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr ""
-
 msgid "Cancel"
 msgstr "Annulla"
 
@@ -2188,6 +2219,10 @@ msgstr ""
 msgid "Cannot delete a database that has datasets attached"
 msgstr ""
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr ""
 
@@ -2199,6 +2234,10 @@ msgstr "Cerca / Filtra"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr ""
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Login"
+
 msgid "Catalog"
 msgstr ""
 
@@ -2280,13 +2319,14 @@ msgstr ""
 msgid "Change order of rows."
 msgstr ""
 
-msgid "Changed By"
-msgstr "Modificato da"
-
 #, fuzzy
 msgid "Changed by"
 msgstr "Modificato da"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "Gestisci"
+
 msgid "Changes saved."
 msgstr ""
 
@@ -2334,9 +2374,6 @@ msgstr ""
 msgid "Chart %(id)s not found"
 msgstr ""
 
-msgid "Chart Cache Timeout"
-msgstr "Cache Timeout"
-
 #, fuzzy, python-format
 msgid "Chart Data: %s"
 msgstr "Opzioni del grafico"
@@ -2442,6 +2479,10 @@ msgstr ""
 msgid "Chart properties updated"
 msgstr "Elenco Dashboard"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "Grafici"
+
 #, fuzzy
 msgid "Chart title"
 msgstr "Grafici"
@@ -2492,6 +2533,10 @@ msgstr ""
 msgid "Choose File"
 msgstr "Seleziona una sorgente"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Rimuovi il grafico dalla dashboard"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Rimuovi il grafico dalla dashboard"
 
@@ -2517,10 +2562,6 @@ msgstr "Seleziona una metrica per l'asse destro"
 msgid "Choose a source"
 msgstr "Seleziona una destinazione"
 
-#, fuzzy
-msgid "Choose a source and a target"
-msgstr "Seleziona una destinazione"
-
 #, fuzzy
 msgid "Choose a target"
 msgstr "Seleziona una destinazione"
@@ -2601,9 +2642,6 @@ msgstr ""
 msgid "Circular"
 msgstr ""
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2626,7 +2664,9 @@ msgstr "Grafico a Proiettile"
 msgid "Clear form"
 msgstr "Formato D3"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 
 msgid ""
@@ -2653,6 +2693,9 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr ""
 
+msgid "Click to add new layer"
+msgstr ""
+
 msgid "Click to cancel sorting"
 msgstr ""
 
@@ -2774,14 +2817,14 @@ msgstr ""
 msgid "Column Configuration"
 msgstr "Controlli del filtro"
 
-#, fuzzy
-msgid "Column Data Types"
-msgstr "Analytics avanzate"
-
 #, fuzzy
 msgid "Column Formatting"
 msgstr "Formato Datetime"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Mostra query salvate"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2797,10 +2840,6 @@ msgstr ""
 msgid "Column data types"
 msgstr "Analytics avanzate"
 
-#, fuzzy
-msgid "Column datatype"
-msgstr "Colonna"
-
 msgid "Column header tooltip"
 msgstr ""
 
@@ -2830,18 +2869,19 @@ msgid ""
 msgstr ""
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
 msgstr "Colonna"
 
-msgid "Columns"
-msgstr ""
+#, fuzzy
+msgid "Columnar upload"
+msgstr "Colonna"
 
-msgid "Columns To Be Parsed as Dates"
+msgid "Columns"
 msgstr ""
 
-#, fuzzy
-msgid "Columns To Read"
-msgstr "Mostra colonna"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "Visualizza colonne"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2854,6 +2894,9 @@ msgstr ""
 msgid "Columns subtotal position"
 msgstr ""
 
+msgid "Columns to be parsed as dates"
+msgstr ""
+
 msgid "Columns to calculate distribution across."
 msgstr ""
 
@@ -2871,6 +2914,10 @@ msgstr ""
 msgid "Columns to group by on the rows"
 msgstr ""
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Mostra colonna"
+
 #, fuzzy
 msgid "Combine metrics"
 msgstr "Mostra metrica"
@@ -2906,17 +2953,6 @@ msgid ""
 "and color."
 msgstr ""
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-
 #, fuzzy
 msgid "Comparison"
 msgstr "Colonna del Tempo"
@@ -2979,12 +3015,19 @@ msgstr ""
 msgid "Configure the basics of your Annotation Layer."
 msgstr ""
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 
 msgid "Configure your how you overlay is displayed here."
 msgstr ""
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Porta Broker"
+
 #, fuzzy
 msgid "Confirm overwrite"
 msgstr "Sovrascrivi la slice %s"
@@ -2992,6 +3035,9 @@ msgstr "Sovrascrivi la slice %s"
 msgid "Confirm save"
 msgstr ""
 
+msgid "Confirm the user's password"
+msgstr ""
+
 #, fuzzy
 msgid "Connect"
 msgstr "Testa la Connessione"
@@ -3025,9 +3071,6 @@ msgstr ""
 msgid "Connection failed, please check your connection settings."
 msgstr ""
 
-msgid "Connection looks good!"
-msgstr ""
-
 #, fuzzy
 msgid "Content format"
 msgstr "Formato Datetime"
@@ -3070,21 +3113,21 @@ msgstr "copia URL in appunti"
 msgid "Copy"
 msgstr ""
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "copia URL in appunti"
 
-msgid "Copy and Paste JSON credentials"
+msgid "Copy URL"
 msgstr ""
 
-msgid "Copy and paste the entire service account .json file here"
+msgid "Copy and Paste JSON credentials"
 msgstr ""
 
 msgid "Copy link"
 msgstr ""
 
-msgid "Copy message"
-msgstr ""
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Copia di %s"
@@ -3102,6 +3145,9 @@ msgstr "Query vuota?"
 msgid "Copy query link to your clipboard"
 msgstr "copia URL in appunti"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr ""
 
@@ -3118,6 +3164,9 @@ msgstr "copia URL in appunti"
 msgid "Copy to clipboard"
 msgstr ""
 
+msgid "Corner Radius"
+msgstr ""
+
 #, fuzzy
 msgid "Correlation"
 msgstr "Descrizione"
@@ -3148,6 +3197,9 @@ msgstr "Non posso connettermi al server"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 #, fuzzy
 msgid "Count"
 msgstr "Colonna"
@@ -3248,6 +3300,9 @@ msgstr ""
 msgid "Creator"
 msgstr "Creatore"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 #, fuzzy
 msgid "Crimson"
 msgstr "Azione"
@@ -3340,7 +3395,10 @@ msgstr ""
 msgid "Custom color palettes"
 msgstr ""
 
-#, fuzzy
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
+#, fuzzy
 msgid "Custom date"
 msgstr "Ultima Modifica"
 
@@ -3375,9 +3433,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr ""
 
-msgid "D3 Format"
-msgstr "Formato D3"
-
 msgid "D3 format"
 msgstr "Formato D3"
 
@@ -3437,6 +3492,21 @@ msgstr ""
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr ""
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "La tua query non può essere salvata"
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "La tua query non può essere salvata"
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "La tua query non può essere salvata"
+
 msgid "Dashboard could not be deleted."
 msgstr "La tua query non può essere salvata"
 
@@ -3450,6 +3520,10 @@ msgstr ""
 msgid "Dashboard imported"
 msgstr "Elenco Dashboard"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "La tua query non può essere salvata"
+
 msgid "Dashboard parameters are invalid."
 msgstr ""
 
@@ -3496,10 +3570,6 @@ msgstr "Elenco Dashboard"
 msgid "Data"
 msgstr "Database"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "Database"
-
 #, fuzzy
 msgid "Data Table"
 msgstr "Modifica Tabella"
@@ -3525,6 +3595,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr ""
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Database"
+
 msgid "Data preview"
 msgstr ""
 
@@ -3695,13 +3769,6 @@ msgid ""
 "database table to the left or "
 msgstr ""
 
-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 ""
-
 #, fuzzy
 msgid "Datasets could not be deleted."
 msgstr "La query non può essere caricata"
@@ -3741,9 +3808,6 @@ msgstr "Formato Datetime"
 msgid "Date/Time"
 msgstr "Tempo"
 
-msgid "Datetime Format"
-msgstr "Formato Datetime"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3775,14 +3839,12 @@ msgstr "Azione"
 msgid "December"
 msgstr ""
 
-msgid "Decides which column to sort the base axis by."
+msgid "Decides which column or measure to sort the base axis by."
 msgstr ""
 
-msgid "Decides which measure to sort the base axis by."
-msgstr ""
-
-msgid "Decimal Character"
-msgstr ""
+#, fuzzy
+msgid "Decimal character"
+msgstr "Grafico a Proiettile"
 
 msgid "Deck.gl - 3D Grid"
 msgstr ""
@@ -3827,9 +3889,6 @@ msgstr "Creato il"
 msgid "Default Catalog"
 msgstr "Valore del filtro"
 
-msgid "Default Endpoint"
-msgstr "Endpoint predefinito"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "Valore del filtro"
@@ -3837,7 +3896,10 @@ msgstr "Valore del filtro"
 msgid "Default URL"
 msgstr "URL del Database"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
 
 #, fuzzy
@@ -3859,10 +3921,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr ""
 
-#, fuzzy
-msgid "Default value is required"
-msgstr "Sorgente Dati"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 
@@ -3907,9 +3965,6 @@ msgid ""
 "[Periods] text box"
 msgstr ""
 
-msgid "Defines how each series is broken down"
-msgstr ""
-
 msgid "Defines the grid size in pixels"
 msgstr ""
 
@@ -3964,9 +4019,17 @@ msgstr "Cancella"
 msgid "Delete Report?"
 msgstr "Template CSS"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "Cancella"
+
 msgid "Delete Template?"
 msgstr "Template CSS"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Cancella"
+
 msgid "Delete all Really?"
 msgstr ""
 
@@ -3986,12 +4049,20 @@ msgstr "Importa"
 msgid "Delete query"
 msgstr "Cancella"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "Cancella"
+
 msgid "Delete template"
 msgstr ""
 
 msgid "Delete this container and save to remove this message."
 msgstr ""
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Cancella"
+
 #, fuzzy
 msgid "Deleted"
 msgstr "Cancella"
@@ -4045,13 +4116,29 @@ msgstr[0] ""
 msgid "Deleted %s"
 msgstr "Cancella"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Cancella"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Cancella"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Cancella"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Cancella"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Cancella"
 
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 
 msgid "Delimited long & lat single column"
@@ -4064,19 +4151,12 @@ msgstr ""
 msgid "Delivery method"
 msgstr "mese"
 
-msgid "Demographics"
-msgstr ""
-
 msgid "Density"
 msgstr ""
 
 msgid "Dependent on"
 msgstr ""
 
-#, fuzzy
-msgid "Deprecated"
-msgstr "Creato il"
-
 msgid "Description"
 msgstr "Descrizione"
 
@@ -4170,10 +4250,6 @@ msgstr ""
 msgid "Discard"
 msgstr ""
 
-#, fuzzy
-msgid "Display"
-msgstr "Valore del filtro"
-
 #, fuzzy
 msgid "Display Name"
 msgstr "Valore del filtro"
@@ -4182,12 +4258,19 @@ msgstr "Valore del filtro"
 msgid "Display all"
 msgstr "Valore del filtro"
 
+msgid "Display column in the chart"
+msgstr ""
+
 msgid "Display column level subtotal"
 msgstr ""
 
 msgid "Display column level total"
 msgstr ""
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Colonna"
+
 msgid "Display configuration"
 msgstr ""
 
@@ -4209,7 +4292,7 @@ msgid "Display row level total"
 msgstr ""
 
 #, fuzzy
-msgid "Display settings"
+msgid "Display type icon"
 msgstr "Mostra query salvate"
 
 msgid ""
@@ -4226,9 +4309,6 @@ msgstr ""
 msgid "Distribution"
 msgstr "descrizione"
 
-msgid "Distribution - Bar Chart"
-msgstr "Distribuzione - Grafico Barre"
-
 msgid "Divider"
 msgstr ""
 
@@ -4259,9 +4339,18 @@ msgstr ""
 msgid "Download as image"
 msgstr ""
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr ""
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr ""
 
@@ -4355,6 +4444,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "Mostra database"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Mostra database"
+
+#, python-format
+msgid "Duplicate role %(name)s"
+msgstr ""
+
 msgid "Duplicate tab"
 msgstr ""
 
@@ -4367,17 +4464,6 @@ msgid ""
 "the cache. Note this defaults to the global timeout if undefined."
 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 ""
-
-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."
-
 #, fuzzy
 msgid ""
 "Duration (in seconds) of the caching timeout for this chart. Set to -1 to"
@@ -4385,12 +4471,6 @@ msgid ""
 "undefined."
 msgstr "Durata (in secondi) per il timeout della cache per questa slice."
 
-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 ""
-
 #, fuzzy
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
@@ -4409,6 +4489,9 @@ msgstr ""
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr ""
 
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr ""
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr ""
 
@@ -4434,10 +4517,6 @@ msgstr ""
 msgid "ERROR"
 msgstr "Errore..."
 
-#, python-format
-msgid "ERROR: %s"
-msgstr ""
-
 msgid "Edge length"
 msgstr ""
 
@@ -4464,31 +4543,19 @@ msgstr ""
 msgid "Edit CSS template properties"
 msgstr "Template CSS"
 
-msgid "Edit Chart"
-msgstr "Modifica grafico"
-
 #, fuzzy
 msgid "Edit Chart Properties"
 msgstr "Elenco Dashboard"
 
-msgid "Edit Column"
-msgstr "Edita colonna"
-
 msgid "Edit Dashboard"
 msgstr ""
 
-msgid "Edit Database"
-msgstr "Mostra database"
-
 msgid "Edit Dataset "
 msgstr "Mostra database"
 
 msgid "Edit Log"
 msgstr "Modifica"
 
-msgid "Edit Metric"
-msgstr "Modifica metrica"
-
 msgid "Edit Plugin"
 msgstr "Edita colonna"
 
@@ -4497,16 +4564,21 @@ msgid "Edit Report"
 msgstr "Importa"
 
 #, fuzzy
-msgid "Edit Rule"
+msgid "Edit Role"
 msgstr "Ricerca Query"
 
-msgid "Edit Table"
-msgstr "Modifica Tabella"
+#, fuzzy
+msgid "Edit Rule"
+msgstr "Ricerca Query"
 
 #, fuzzy
 msgid "Edit Tag"
 msgstr "Modifica"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Query vuota?"
+
 msgid "Edit annotation"
 msgstr "Azione"
 
@@ -4546,6 +4618,10 @@ msgstr ""
 msgid "Edit query"
 msgstr "Query vuota?"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "Ricerca Query"
+
 msgid "Edit template"
 msgstr "Template CSS"
 
@@ -4559,6 +4635,10 @@ msgstr "Aggiungi ad una nuova dashboard"
 msgid "Edit time range"
 msgstr ""
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Query vuota?"
+
 msgid "Edited"
 msgstr "Modifica"
 
@@ -4585,6 +4665,13 @@ msgstr ""
 msgid "Elevation"
 msgstr "Descrizione"
 
+msgid "Email"
+msgstr ""
+
+#, fuzzy
+msgid "Email is required"
+msgstr "Sorgente Dati"
+
 msgid "Email reports active"
 msgstr ""
 
@@ -4601,6 +4688,10 @@ msgstr ""
 msgid "Embed dashboard"
 msgstr "Salva e vai alla dashboard"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "La tua query non può essere salvata"
+
 msgid "Embedding deactivated."
 msgstr ""
 
@@ -4611,9 +4702,6 @@ msgstr "Filtrabile"
 msgid "Emphasis"
 msgstr ""
 
-msgid "Employment and education"
-msgstr ""
-
 msgid "Empty circle"
 msgstr ""
 
@@ -4638,9 +4726,6 @@ msgstr ""
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr ""
 
-msgid "Enable Filter Select"
-msgstr "Abilita il filtro di Select"
-
 msgid "Enable cross-filtering"
 msgstr ""
 
@@ -4742,10 +4827,24 @@ msgstr "Nome Completo"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr ""
 
-msgid "Entity"
+msgid "Enter the unique project id for your database."
 msgstr ""
 
-msgid "Entity ID"
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Nome Completo"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "Nome Completo"
+
+msgid "Enter the user's username"
+msgstr ""
+
+msgid "Entity"
 msgstr ""
 
 msgid "Equal Date Sizes"
@@ -4762,6 +4861,14 @@ msgstr "Errore..."
 msgid "Error Fetching Tagged Objects"
 msgstr "Errore nel recupero dei metadati della tabella"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Errore nel recupero dati"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Errore nel creare il datasource"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr ""
@@ -4784,6 +4891,9 @@ msgstr ""
 msgid "Error message"
 msgstr ""
 
+msgid "Error parsing"
+msgstr ""
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "Errore nel creare il datasource"
@@ -4799,6 +4909,22 @@ msgstr ""
 msgid "Error saving dataset"
 msgstr "Errore nel creare il datasource"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Errore nel creare il datasource"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Errore nel recupero dati"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Errore nel recupero dati"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Errore nel recupero dati"
+
 #, fuzzy
 msgid "Error while fetching charts"
 msgstr "Errore nel recupero dati"
@@ -4807,10 +4933,30 @@ msgstr "Errore nel recupero dati"
 msgid "Error while fetching data: %s"
 msgstr "Errore nel recupero dati"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Errore nel recupero dati"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Errore nel recupero dati"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Errore nel recupero dati"
+
 #, fuzzy, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "Errore nel recupero dati"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Errore nel recupero dati"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Errore nel recupero dati"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr ""
@@ -4835,16 +4981,6 @@ msgstr ""
 msgid "Event"
 msgstr "mese"
 
-msgid "Event Flow"
-msgstr ""
-
-#, fuzzy
-msgid "Event Names"
-msgstr "Nome Completo"
-
-msgid "Event definition"
-msgstr ""
-
 msgid "Event flow"
 msgstr ""
 
@@ -4867,10 +5003,10 @@ msgstr ""
 msgid "Examples"
 msgstr ""
 
-msgid "Excel Upload"
+msgid "Excel file format cannot be determined"
 msgstr ""
 
-msgid "Excel file format cannot be determined"
+msgid "Excel upload"
 msgstr ""
 
 msgid "Exclude selected values"
@@ -4967,12 +5103,6 @@ msgstr "Esporta in YAML"
 msgid "Export to Pivoted .CSV"
 msgstr "Esporta in YAML"
 
-msgid "Export to YAML"
-msgstr "Esporta in YAML"
-
-msgid "Export to YAML?"
-msgstr "Esporta in YAML?"
-
 msgid "Export to full .CSV"
 msgstr ""
 
@@ -4992,11 +5122,9 @@ msgstr ""
 msgid "Expose in SQL Lab"
 msgstr "Esponi in SQL Lab"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Esponi questo DB in SQL Lab"
-
-msgid "Expression"
-msgstr "Espressione"
+#, fuzzy
+msgid "Extent"
+msgstr "textarea"
 
 msgid "Extra"
 msgstr "Extra"
@@ -5018,10 +5146,6 @@ msgid ""
 "\"warning_markdown\": \"This is a warning.\" }`."
 msgstr ""
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr ""
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr ""
 
@@ -5040,6 +5164,10 @@ msgstr "textarea"
 msgid "FEB"
 msgstr ""
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Mostra database"
+
 msgid "FRI"
 msgstr ""
 
@@ -5050,16 +5178,15 @@ msgstr "Creatore"
 msgid "Factor to multiply the metric by"
 msgstr ""
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr ""
 
 msgid "Failed at retrieving results"
 msgstr "Errore nel recupero dei dati dal backend"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr ""
-
 msgid "Failed to create report"
 msgstr ""
 
@@ -5090,6 +5217,10 @@ msgstr "Cerca / Filtra"
 msgid "Failed to start remote query on a worker."
 msgstr ""
 
+#, fuzzy
+msgid "Failed to stop query."
+msgstr "Seleziona data finale"
+
 #, fuzzy
 msgid "Failed to tag items"
 msgstr "Seleziona data finale"
@@ -5114,9 +5245,6 @@ msgstr ""
 msgid "February"
 msgstr ""
 
-msgid "Fetch Values Predicate"
-msgstr ""
-
 msgid "Fetch data preview"
 msgstr ""
 
@@ -5141,15 +5269,12 @@ msgstr ""
 msgid "File"
 msgstr ""
 
-#, fuzzy
-msgid "File Settings"
-msgstr "Abilita il filtro di Select"
-
 msgid "File extension is not allowed."
 msgstr ""
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "Abilita il filtro di Select"
 
 msgid "File upload"
 msgstr ""
@@ -5223,9 +5348,6 @@ msgstr ""
 msgid "Filter your charts"
 msgstr "Controlli del filtro"
 
-msgid "Filterable"
-msgstr "Filtrabile"
-
 msgid "Filters"
 msgstr "Filtri"
 
@@ -5238,6 +5360,15 @@ msgstr "Lista Metriche"
 msgid "Filters for comparison must have a value"
 msgstr ""
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+msgid "Filters for values greater than or equal."
+msgstr ""
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr ""
@@ -5263,6 +5394,14 @@ msgstr ""
 msgid "First"
 msgstr ""
 
+#, fuzzy
+msgid "First name"
+msgstr "Grafici"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "Sorgente Dati"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5343,6 +5482,9 @@ msgstr "Formato Datetime"
 msgid "Force refresh"
 msgstr ""
 
+msgid "Force refresh Slack channels list"
+msgstr ""
+
 msgid "Force refresh catalog list"
 msgstr ""
 
@@ -5473,6 +5615,10 @@ msgstr "Mostra query salvate"
 msgid "Geohash"
 msgstr ""
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Colonna"
+
 msgid "Get the last date by the date unit."
 msgstr ""
 
@@ -5534,9 +5680,6 @@ msgstr "Raggruppa per"
 msgid "Group by"
 msgstr "Raggruppa per"
 
-msgid "Groupable"
-msgstr "Raggruppabile"
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5554,11 +5697,6 @@ msgstr "Template CSS"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-
 #, fuzzy
 msgid "Has created by"
 msgstr "è stata creata"
@@ -5566,9 +5704,6 @@ msgstr "è stata creata"
 msgid "Header"
 msgstr ""
 
-msgid "Header Row"
-msgstr ""
-
 #, fuzzy
 msgid "Header row"
 msgstr "Grafico a torta"
@@ -5576,19 +5711,16 @@ msgstr "Grafico a torta"
 msgid "Heatmap"
 msgstr "Mappa di Intensità"
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "Esplora grafico"
-
-msgid "Heatmap Options"
-msgstr ""
-
 msgid "Height"
 msgstr "Altezza"
 
 msgid "Height of the sparkline"
 msgstr ""
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Colonna del Tempo"
+
 msgid "Hide Line"
 msgstr ""
 
@@ -5616,10 +5748,6 @@ msgstr "Cerca"
 msgid "Histogram"
 msgstr "Istogramma"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "Esplora grafico"
-
 msgid "Home"
 msgstr ""
 
@@ -5695,19 +5823,12 @@ msgid ""
 "hive.server2.proxy.user property."
 msgstr ""
 
-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.<br/>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."
+msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr ""
 
-#, fuzzy
-msgid "If Table Already Exists"
-msgstr "Una o più metriche da mostrare"
-
-msgid "If a metric is specified, sorting will be done based on the metric value"
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
 msgstr ""
 
 msgid ""
@@ -5715,8 +5836,9 @@ msgid ""
 "it sorts the results ascending."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr ""
+#, fuzzy
+msgid "If table already exists"
+msgstr "Una o più metriche da mostrare"
 
 msgid "Ignore cache when generating report"
 msgstr ""
@@ -5736,9 +5858,6 @@ msgstr ""
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr ""
 
-msgid "Impersonate the logged on user"
-msgstr ""
-
 msgid "Import"
 msgstr "Importa"
 
@@ -5749,9 +5868,6 @@ msgstr "Importa"
 msgid "Import Dashboard(s)"
 msgstr "Importa dashboard"
 
-msgid "Import a table definition"
-msgstr ""
-
 msgid "Import chart failed for an unknown reason"
 msgstr ""
 
@@ -5786,15 +5902,15 @@ msgstr "Query vuota?"
 msgid "Import saved query failed for an unknown reason."
 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 ""
-
 #, fuzzy
 msgid "In"
 msgstr "Min"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr ""
 
@@ -5819,17 +5935,18 @@ msgstr "Creato il"
 msgid "Index"
 msgstr "Min"
 
-msgid "Index Column"
-msgstr ""
-
 #, fuzzy
-msgid "Index Label"
-msgstr "Tabella"
+msgid "Index column"
+msgstr "Colonna del Tempo"
 
 #, fuzzy
 msgid "Index label"
 msgstr "Tabella"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "minuto"
+
 msgid "Info"
 msgstr ""
 
@@ -5848,6 +5965,12 @@ msgstr ""
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr ""
 
+msgid "Insert Layer URL"
+msgstr ""
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr ""
 
@@ -5883,9 +6006,6 @@ msgstr "Controlli del filtro"
 msgid "Intervals"
 msgstr "Filtrabile"
 
-msgid "Intesity"
-msgstr ""
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -5926,6 +6046,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr ""
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr ""
@@ -5990,6 +6113,10 @@ msgstr ""
 msgid "Invert current page"
 msgstr "Ultima Modifica"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Nome Completo"
+
 #, fuzzy
 msgid "Is certified"
 msgstr "Modificato"
@@ -6175,12 +6302,6 @@ msgstr ""
 msgid "Last"
 msgstr ""
 
-msgid "Last Changed"
-msgstr "Ultima Modifica"
-
-msgid "Last Modified"
-msgstr "Ultima Modifica"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr ""
@@ -6189,6 +6310,10 @@ msgstr ""
 msgid "Last Updated %s by %s"
 msgstr "Ultima Modifica"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Valore del filtro"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr ""
@@ -6197,6 +6322,10 @@ msgstr ""
 msgid "Last day"
 msgstr "Cluster"
 
+#, fuzzy
+msgid "Last login"
+msgstr "mese"
+
 msgid "Last modified"
 msgstr "Ultima Modifica"
 
@@ -6204,6 +6333,14 @@ msgstr "Ultima Modifica"
 msgid "Last month"
 msgstr "mese"
 
+#, fuzzy
+msgid "Last name"
+msgstr "Database"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Sorgente Dati"
+
 #, fuzzy
 msgid "Last quarter"
 msgstr "condividi query"
@@ -6219,15 +6356,41 @@ msgstr "settimana"
 msgid "Last year"
 msgstr "Cluster"
 
+msgid "Lat"
+msgstr ""
+
 msgid "Latitude"
 msgstr ""
 
 msgid "Latitude of default viewport"
 msgstr ""
 
+#, fuzzy
+msgid "Layer"
+msgstr "anno"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Nome Completo"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "Controlli del filtro"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Grafici"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Valore del filtro"
+
+#, fuzzy
+msgid "Layers"
+msgstr "Filtri"
+
 msgid "Layout"
 msgstr ""
 
@@ -6240,11 +6403,6 @@ msgstr ""
 msgid "Layout type of tree"
 msgstr ""
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-
 #, fuzzy
 msgid "Least recently modified"
 msgstr "Ultima Modifica"
@@ -6317,11 +6475,6 @@ msgstr ""
 msgid "Limit type"
 msgstr "Tipo"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-
 msgid "Limits the number of cells that get retrieved."
 msgstr ""
 
@@ -6359,6 +6512,9 @@ msgid ""
 "chart common in many fields."
 msgstr ""
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr ""
 
@@ -6390,10 +6546,17 @@ msgstr "Importa"
 msgid "Link Copied!"
 msgstr ""
 
+msgid "List Roles"
+msgstr ""
+
 #, fuzzy
 msgid "List Unique Values"
 msgstr "Filtrabile"
 
+#, fuzzy
+msgid "List Users"
+msgstr "Numero Grande"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr ""
 
@@ -6461,6 +6624,10 @@ msgstr ""
 msgid "Login"
 msgstr "Login"
 
+#, fuzzy
+msgid "Login count"
+msgstr "Colonna"
+
 #, fuzzy
 msgid "Login with"
 msgstr "Larghezza"
@@ -6471,6 +6638,9 @@ msgstr "Logout"
 msgid "Logs"
 msgstr ""
 
+msgid "Lon"
+msgstr ""
+
 msgid "Long dashed"
 msgstr ""
 
@@ -6512,9 +6682,6 @@ msgstr ""
 msgid "Main"
 msgstr "Min"
 
-msgid "Main Datetime Column"
-msgstr ""
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6549,6 +6716,10 @@ msgstr ""
 msgid "Map"
 msgstr "Treemap"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Azione"
+
 msgid "Map Style"
 msgstr ""
 
@@ -6592,6 +6763,9 @@ msgstr ""
 msgid "Markup type"
 msgstr ""
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "Max"
 
@@ -6599,7 +6773,7 @@ msgstr "Max"
 msgid "Max Bubble Size"
 msgstr "Grandezza della bolla"
 
-msgid "Max Events"
+msgid "Max. features"
 msgstr ""
 
 msgid "Maximum"
@@ -6611,6 +6785,9 @@ msgstr ""
 msgid "Maximum Radius"
 msgstr ""
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6653,6 +6830,18 @@ msgstr "Valore del filtro"
 msgid "Medium"
 msgstr ""
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -6753,11 +6942,6 @@ msgid ""
 "appropriate)."
 msgstr ""
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-
 msgid "Metrics"
 msgstr "Metriche"
 
@@ -6800,7 +6984,7 @@ msgstr ""
 msgid "Minimum Radius"
 msgstr ""
 
-msgid "Minimum leaf node event count"
+msgid "Minimum must be strictly less than maximum"
 msgstr ""
 
 msgid ""
@@ -6815,6 +6999,10 @@ msgstr ""
 msgid "Minimum value"
 msgstr "Valore del filtro"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "La data di inizio non può essere dopo la data di fine"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr ""
 
@@ -6840,6 +7028,9 @@ msgstr "minuto"
 msgid "Minutes value"
 msgstr "Valore del filtro"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 #, fuzzy
 msgid "Missing URL parameters"
 msgstr "Parametri"
@@ -6859,6 +7050,11 @@ msgstr "Modificato"
 msgid "Modified %s"
 msgstr "Ultima Modifica"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+
 msgid "Modified by"
 msgstr "Modificato"
 
@@ -6866,10 +7062,6 @@ msgstr "Modificato"
 msgid "Modified by: %s"
 msgstr "Ultima Modifica"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr ""
-
 msgid "Monday"
 msgstr ""
 
@@ -6936,9 +7128,6 @@ msgstr "Rimuovi il grafico dalla dashboard"
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr ""
 
-msgid "Must have at least one numeric column specified"
-msgstr "Devi specificare una colonna numerica"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr ""
 
@@ -6965,9 +7154,6 @@ msgstr "Uno o più controlli per 'Raggruppa per'"
 msgid "NOV"
 msgstr ""
 
-msgid "NOW"
-msgstr ""
-
 #, fuzzy
 msgid "NUMERIC"
 msgstr "Metrica"
@@ -6995,9 +7181,6 @@ msgstr "Colonna del Tempo"
 msgid "Name of the source nodes"
 msgstr ""
 
-msgid "Name of the table that exists in the source database"
-msgstr "Nome delle tabella esistente nella sorgente del database"
-
 msgid "Name of the target nodes"
 msgstr ""
 
@@ -7015,20 +7198,24 @@ msgstr ""
 msgid "Need help? Learn more about"
 msgstr ""
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Errore di rete."
+
 #, fuzzy
 msgid "Network error"
 msgstr "Errore di rete."
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Errore nel creare il datasource"
+
 msgid "Network error."
 msgstr "Errore di rete."
 
 msgid "New chart"
 msgstr "Grafico a torta"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr ""
-
 #, fuzzy
 msgid "New dataset"
 msgstr "Seleziona una destinazione"
@@ -7084,6 +7271,10 @@ msgstr "Grafici"
 msgid "No Tags created"
 msgstr "è stata creata"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Seleziona una colonna"
+
 #, fuzzy
 msgid "No annotation layers"
 msgstr "Azione"
@@ -7105,10 +7296,6 @@ msgstr "Filtri"
 msgid "No charts"
 msgstr "Grafici"
 
-#, fuzzy
-msgid "No charts yet"
-msgstr "Grafici"
-
 #, fuzzy
 msgid "No columns found"
 msgstr "Colonna del Tempo"
@@ -7125,10 +7312,6 @@ msgstr ""
 msgid "No compatible schema found"
 msgstr ""
 
-#, fuzzy
-msgid "No dashboards yet"
-msgstr "Elenco Dashboard"
-
 msgid "No data"
 msgstr "Metadati JSON"
 
@@ -7138,6 +7321,10 @@ msgstr ""
 msgid "No data in file"
 msgstr ""
 
+#, fuzzy
+msgid "No databases available"
+msgstr "descrizione"
+
 msgid "No databases match your search"
 msgstr ""
 
@@ -7173,13 +7360,6 @@ msgstr ""
 msgid "No matching records found"
 msgstr "Nessun record trovato"
 
-#, fuzzy
-msgid "No of Bins"
-msgstr "Copia di %s"
-
-msgid "No recents yet"
-msgstr ""
-
 msgid "No records found"
 msgstr "Nessun record trovato"
 
@@ -7202,6 +7382,10 @@ msgid ""
 "contains data for the selected time range."
 msgstr ""
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Grafici"
+
 msgid "No rows were returned for this dataset"
 msgstr ""
 
@@ -7216,10 +7400,6 @@ msgstr "Espressione SQL"
 msgid "No saved metrics found"
 msgstr "Seleziona una metrica"
 
-#, fuzzy
-msgid "No saved queries yet"
-msgstr "Query salvate"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 
@@ -7238,6 +7418,10 @@ msgstr "Colonna del Tempo"
 msgid "No time columns"
 msgstr "Colonna del Tempo"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Grafici"
+
 msgid "No validator found (configured for the engine)"
 msgstr ""
 
@@ -7321,6 +7505,9 @@ msgstr ""
 msgid "Not up to date"
 msgstr ""
 
+msgid "Nothing here yet"
+msgstr ""
+
 msgid "Nothing triggered"
 msgstr ""
 
@@ -7426,9 +7613,6 @@ msgstr ""
 msgid "Offline"
 msgstr ""
 
-msgid "Offset"
-msgstr "Offset"
-
 msgid "On Grace"
 msgstr ""
 
@@ -7453,6 +7637,9 @@ msgstr ""
 msgid "One or many metrics to display"
 msgstr "Una o più metriche da mostrare"
 
+msgid "One or more annotation layers failed loading."
+msgstr ""
+
 msgid "One or more columns already exist"
 msgstr ""
 
@@ -7480,12 +7667,6 @@ msgstr ""
 msgid "One or more parameters specified in the query are missing."
 msgstr ""
 
-msgid "One ore more annotation layers failed loading."
-msgstr ""
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr ""
-
 msgid "Only Total"
 msgstr ""
 
@@ -7498,9 +7679,6 @@ msgstr ""
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
 
-msgid "Only selected panels will be affected by this filter"
-msgstr ""
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7580,15 +7758,19 @@ msgstr "Azione"
 msgid "Or choose from a list of other databases we support:"
 msgstr ""
 
-msgid "Order by entity id"
-msgstr ""
-
 msgid "Order results by selected columns"
 msgstr ""
 
 msgid "Ordering"
 msgstr ""
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 #, fuzzy
 msgid "Orientation"
 msgstr "Azione"
@@ -7703,6 +7885,9 @@ msgid ""
 " or username."
 msgstr "Proprietari è una lista di utenti che può alterare la dashboard."
 
+msgid "PDF download failed, please refresh and try again."
+msgstr ""
+
 msgid "Page length"
 msgstr ""
 
@@ -7763,6 +7948,14 @@ msgstr ""
 msgid "Password"
 msgstr "Porta Broker"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "Sorgente Dati"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Elenco Dashboard"
+
 msgid "Paste Private Key here"
 msgstr ""
 
@@ -7822,6 +8015,14 @@ msgstr ""
 msgid "Periods must be a whole number"
 msgstr ""
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Espressione"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr ""
 
@@ -7837,9 +8038,6 @@ msgstr ""
 msgid "Physical (table or view)"
 msgstr ""
 
-msgid "Physical dataset"
-msgstr "Seleziona una destinazione"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
 
@@ -7861,15 +8059,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr ""
 
-msgid "Pick at least one field for [Series]"
-msgstr "Seleziona almeno un campo per [Series]"
-
 msgid "Pick at least one metric"
 msgstr "Seleziona almeno una metrica"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "Seleziona esattamente 2 colonne come [Sorgente / Destinazione]"
-
 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."
@@ -7882,9 +8074,8 @@ msgstr ""
 msgid "Pie Chart"
 msgstr "Grafico a torta"
 
-#, fuzzy
-msgid "Pie Chart (legacy)"
-msgstr "Esplora grafico"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr ""
@@ -7896,6 +8087,14 @@ msgstr ""
 msgid "Pin"
 msgstr "Min"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "Cancella"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Altezza"
+
 msgid "Pivot Table"
 msgstr "Vista Pivot"
 
@@ -7945,6 +8144,9 @@ msgid ""
 "your query again."
 msgstr ""
 
+msgid "Please choose a valid value"
+msgstr ""
+
 #, fuzzy
 msgid "Please choose at least one groupby"
 msgstr "Seleziona almeno una metrica"
@@ -7955,12 +8157,24 @@ msgstr ""
 msgid "Please confirm the overwrite values."
 msgstr ""
 
+msgid "Please confirm your password"
+msgstr ""
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Inserisci un nome per la slice"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr ""
 
@@ -7972,9 +8186,6 @@ msgid "Please reach out to the Chart Owner for assistance."
 msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] ""
 
-msgid "Please save the query to enable sharing"
-msgstr ""
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
 
@@ -8052,9 +8263,6 @@ msgstr ""
 msgid "Populate \"Default value\" to enable this control"
 msgstr ""
 
-msgid "Population age data"
-msgstr ""
-
 #, fuzzy
 msgid "Port"
 msgstr "Importa"
@@ -8095,16 +8303,6 @@ msgstr ""
 msgid "Pre-filter is required"
 msgstr "Sorgente Dati"
 
-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\"."
-
 #, fuzzy
 msgid "Predictive"
 msgstr "Azione"
@@ -8125,10 +8323,6 @@ msgstr ""
 msgid "Preview uploaded file"
 msgstr ""
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr ""
-
 msgid "Previous"
 msgstr ""
 
@@ -8178,18 +8372,13 @@ msgstr ""
 msgid "Progressive"
 msgstr ""
 
-msgid "Propagate"
-msgstr ""
+#, fuzzy
+msgid "Project Id"
+msgstr "Creato il"
 
 msgid "Proportional"
 msgstr ""
 
-msgid "Public and privately shared sheets"
-msgstr ""
-
-msgid "Publicly shared sheets only"
-msgstr ""
-
 msgid "Published"
 msgstr ""
 
@@ -8209,9 +8398,6 @@ msgstr "La data di inizio non può essere dopo la data di fine"
 msgid "Put the labels outside of the pie?"
 msgstr ""
 
-msgid "Put the labels outside the pie?"
-msgstr ""
-
 msgid "Put your code here"
 msgstr ""
 
@@ -8325,10 +8511,6 @@ msgstr "Parametri"
 msgid "Radius in miles"
 msgstr ""
 
-#, python-format
-msgid "Ran %s"
-msgstr ""
-
 #, fuzzy
 msgid "Range"
 msgstr "Gestisci"
@@ -8360,19 +8542,10 @@ msgstr "Descrizione"
 msgid "Raw records"
 msgstr ""
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 #, fuzzy
 msgid "Recently modified"
 msgstr "Ultima Modifica"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 msgid "Recents"
 msgstr ""
 
@@ -8391,9 +8564,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-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"
-
 msgid "Redo the action"
 msgstr ""
 
@@ -8432,6 +8602,9 @@ msgstr ""
 msgid "Refresh interval saved"
 msgstr ""
 
+msgid "Refresh table schema"
+msgstr ""
+
 msgid "Refresh the default values"
 msgstr ""
 
@@ -8490,8 +8663,9 @@ msgid "Remove table preview"
 msgstr ""
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr ""
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
 
 msgid "Rename tab"
 msgstr ""
@@ -8502,13 +8676,11 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
-#, fuzzy
-msgid "Rendering"
-msgstr "Importa"
-
 msgid "Replace"
 msgstr ""
 
@@ -8611,6 +8783,9 @@ msgstr "Espressione"
 msgid "Repulsion strength between nodes"
 msgstr ""
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr ""
@@ -8643,6 +8818,10 @@ msgstr ""
 msgid "Reset"
 msgstr ""
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Colonna del Tempo"
+
 msgid "Reset state"
 msgstr ""
 
@@ -8670,6 +8849,10 @@ msgstr ""
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr ""
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "Risultati della ricerca"
+
 msgid "Return to specific datetime."
 msgstr ""
 
@@ -8713,6 +8896,28 @@ msgstr ""
 msgid "Role"
 msgstr "Profilo"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Nome Completo"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "Sorgente Dati"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Sorgente Dati"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "Seleziona una destinazione"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Ruoli"
 
@@ -8788,9 +8993,6 @@ msgstr ""
 msgid "Rows subtotal position"
 msgstr ""
 
-msgid "Rows to Read"
-msgstr ""
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "Mostra colonna"
@@ -8859,14 +9061,12 @@ msgstr ""
 msgid "SQL Copied!"
 msgstr ""
 
-msgid "SQL Expression"
-msgstr "Espressione SQL"
-
 msgid "SQL Lab"
 msgstr ""
 
-msgid "SQL Lab View"
-msgstr "Vista Tabella"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "Query salvate"
 
 #, python-format
 msgid ""
@@ -8959,20 +9159,10 @@ msgstr "La tua query non può essere salvata"
 msgid "Samples for datasource could not be retrieved."
 msgstr "La tua query non può essere salvata"
 
-msgid "Sankey"
-msgstr "Sankey"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Grafico a torta"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "Esplora grafico"
-
-msgid "Sankey Diagram with Loops"
-msgstr ""
-
 #, fuzzy
 msgid "Satellite"
 msgstr "Aggiungi filtro"
@@ -9039,9 +9229,6 @@ msgstr ""
 msgid "Save query"
 msgstr "query condivisa"
 
-msgid "Save the query to enable this feature"
-msgstr ""
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
 
@@ -9070,6 +9257,9 @@ msgstr ""
 msgid "Saved query parameters are invalid."
 msgstr ""
 
+msgid "Saving..."
+msgstr ""
+
 msgid "Scale and Move"
 msgstr ""
 
@@ -9124,11 +9314,6 @@ msgstr "Schema"
 msgid "Schema cache timeout"
 msgstr "Cache Timeout"
 
-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"
-
 msgid "Schemas allowed for File upload"
 msgstr ""
 
@@ -9216,9 +9401,6 @@ msgstr ""
 msgid "Seconds value"
 msgstr "Mostra Tabelle"
 
-msgid "Secure Extra"
-msgstr "Sicurezza"
-
 msgid "Secure extra"
 msgstr "Sicurezza"
 
@@ -9319,6 +9501,10 @@ msgstr ""
 msgid "Select a sheet name from the uploaded file"
 msgstr ""
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Database"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -9338,7 +9524,7 @@ msgstr "Seleziona data finale"
 msgid "Select all items"
 msgstr "Seleziona data finale"
 
-msgid "Select any columns for metadata inspection"
+msgid "Select an aggregation method to apply to the metric."
 msgstr ""
 
 msgid "Select catalog or type to search catalogs"
@@ -9368,6 +9554,11 @@ msgstr "Testa la Connessione"
 msgid "Select column"
 msgstr "Colonna del Tempo"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+"Selezionare i nomi delle colonne da elaborare come date dall'elenco a "
+"discesa."
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9460,6 +9651,14 @@ msgstr ""
 msgid "Select owners"
 msgstr "Seleziona una colonna"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Seleziona data finale"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Seleziona una colonna"
+
 #, fuzzy
 msgid "Select saved metrics"
 msgstr "Seleziona una metrica"
@@ -9474,9 +9673,19 @@ msgstr ""
 msgid "Select scheme"
 msgstr ""
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr ""
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Seleziona data finale"
+
 msgid "Select table or type to search tables"
 msgstr ""
 
@@ -9502,12 +9711,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr "Seleziona data finale"
 
-msgid "Select the number of bins for the histogram"
-msgstr ""
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr ""
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9530,9 +9733,6 @@ msgstr ""
 msgid "Send as text"
 msgstr ""
 
-msgid "Send range filter events to other charts"
-msgstr ""
-
 msgid "September"
 msgstr ""
 
@@ -9545,13 +9745,6 @@ msgstr ""
 msgid "Series Height"
 msgstr ""
 
-msgid "Series Limit Sort By"
-msgstr ""
-
-#, fuzzy
-msgid "Series Limit Sort Descending"
-msgstr "Importa"
-
 #, fuzzy
 msgid "Series Order"
 msgstr "Query salvate"
@@ -9583,6 +9776,9 @@ msgstr ""
 msgid "Service Account"
 msgstr ""
 
+msgid "Service version"
+msgstr ""
+
 msgid "Set auto-refresh interval"
 msgstr ""
 
@@ -9611,6 +9807,10 @@ msgstr ""
 msgid "Settings for time series"
 msgstr ""
 
+#, fuzzy
+msgid "Shape"
+msgstr "Gestisci"
+
 msgid "Share"
 msgstr ""
 
@@ -9676,18 +9876,9 @@ msgstr ""
 msgid "Show Cell bars"
 msgstr "Grafico a Proiettile"
 
-msgid "Show Chart"
-msgstr "Mostra grafico"
-
-msgid "Show Column"
-msgstr "Mostra colonna"
-
 msgid "Show Dashboard"
 msgstr ""
 
-msgid "Show Database"
-msgstr "Mostra database"
-
 #, fuzzy
 msgid "Show Labels"
 msgstr "Mostra Tabelle"
@@ -9698,9 +9889,6 @@ msgstr "Mostra colonna"
 msgid "Show Markers"
 msgstr ""
 
-msgid "Show Metric"
-msgstr "Mostra metrica"
-
 #, fuzzy
 msgid "Show Metric Names"
 msgstr "Mostra metrica"
@@ -9709,9 +9897,6 @@ msgstr "Mostra metrica"
 msgid "Show Range Filter"
 msgstr "Cerca / Filtra"
 
-msgid "Show Table"
-msgstr "Mostra Tabelle"
-
 msgid "Show Timestamp"
 msgstr ""
 
@@ -9749,9 +9934,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "Mostra colonna"
 
-msgid "Show all..."
-msgstr ""
-
 msgid "Show axis line ticks"
 msgstr ""
 
@@ -9777,6 +9959,10 @@ msgstr ""
 msgid "Show empty columns"
 msgstr "Colonna del Tempo"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "Mostra metrica"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9799,9 +9985,6 @@ msgstr ""
 msgid "Show less columns"
 msgstr "Colonna del Tempo"
 
-msgid "Show less..."
-msgstr ""
-
 msgid "Show minor ticks on axes."
 msgstr ""
 
@@ -9842,6 +10025,10 @@ msgstr "Mostra grafico"
 msgid "Show the value on top of the bar"
 msgstr ""
 
+#, fuzzy
+msgid "Show total"
+msgstr "Mostra colonna"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9876,7 +10063,7 @@ msgid ""
 msgstr ""
 
 #, python-format
-msgid "Showing %s of %s"
+msgid "Showing %s of %s items"
 msgstr ""
 
 msgid "Shows a list of all series available at that point in time"
@@ -9912,16 +10099,13 @@ msgstr "Valore del filtro"
 msgid "Single value type"
 msgstr ""
 
-msgid "Size of edge symbols"
-msgstr ""
-
-msgid "Size of marker. Also applies to forecast observations."
+msgid "Size in pixels"
 msgstr ""
 
-msgid "Sizes of vehicles"
+msgid "Size of edge symbols"
 msgstr ""
 
-msgid "Skip Rows"
+msgid "Size of marker. Also applies to forecast observations."
 msgstr ""
 
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
@@ -9994,9 +10178,6 @@ msgstr ""
 msgid "Sorry, something went wrong. Try again later."
 msgstr ""
 
-msgid "Sorry, there appears to be no data"
-msgstr ""
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr ""
@@ -10015,10 +10196,6 @@ msgstr ""
 msgid "Sort"
 msgstr "Importa"
 
-#, fuzzy
-msgid "Sort Bars"
-msgstr "Importa dashboard"
-
 #, fuzzy
 msgid "Sort Descending"
 msgstr "Importa"
@@ -10044,9 +10221,6 @@ msgstr ""
 msgid "Sort ascending"
 msgstr ""
 
-msgid "Sort bars by x labels."
-msgstr ""
-
 msgid "Sort by"
 msgstr ""
 
@@ -10075,6 +10249,10 @@ msgstr "Filtrabile"
 msgid "Sort metric"
 msgstr "Mostra metrica"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "condividi query"
+
 msgid "Sort rows by"
 msgstr ""
 
@@ -10088,9 +10266,6 @@ msgstr "Grafici"
 msgid "Source"
 msgstr "Sorgente"
 
-msgid "Source / Target"
-msgstr ""
-
 msgid "Source SQL"
 msgstr ""
 
@@ -10136,9 +10311,6 @@ msgstr "Query salvate"
 msgid "Stack"
 msgstr ""
 
-msgid "Stack Trace:"
-msgstr ""
-
 msgid "Stack series"
 msgstr ""
 
@@ -10154,9 +10326,6 @@ msgstr ""
 msgid "Stacked Style"
 msgstr ""
 
-msgid "Stacked style"
-msgstr ""
-
 msgid "Standard time series"
 msgstr ""
 
@@ -10257,9 +10426,6 @@ msgstr ""
 msgid "Strength to pull the graph toward center"
 msgstr ""
 
-msgid "Stretched style"
-msgstr ""
-
 #, fuzzy
 msgid "Stroke Color"
 msgstr "Porta Broker"
@@ -10284,15 +10450,20 @@ msgstr ""
 msgid "Subdomain"
 msgstr ""
 
-msgid "Subheader"
-msgstr ""
-
 msgid "Subheader Font Size"
 msgstr ""
 
 msgid "Submit"
 msgstr ""
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "%s - senza nome"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Grandezza della bolla"
+
 msgid "Subtotal"
 msgstr ""
 
@@ -10349,9 +10520,6 @@ msgstr ""
 msgid "Superset chart"
 msgstr "Esplora grafico"
 
-msgid "Superset dashboard"
-msgstr "Importa dashboard"
-
 msgid "Superset encountered an error while running a command."
 msgstr ""
 
@@ -10362,9 +10530,6 @@ msgstr ""
 msgid "Supported databases"
 msgstr "Database"
 
-msgid "Survey Responses"
-msgstr ""
-
 #, fuzzy
 msgid "Swap dataset"
 msgstr "Seleziona una destinazione"
@@ -10378,6 +10543,12 @@ msgid ""
 "well."
 msgstr ""
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr ""
 
@@ -10388,9 +10559,20 @@ msgstr ""
 msgid "Symbol size"
 msgstr "Grandezza della bolla"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr ""
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr ""
 
@@ -10401,10 +10583,6 @@ msgstr ""
 msgid "TABLES"
 msgstr ""
 
-#, fuzzy
-msgid "TEMPORAL X-AXIS"
-msgstr "è temporale"
-
 #, fuzzy
 msgid "TEMPORAL_RANGE"
 msgstr "è temporale"
@@ -10441,6 +10619,10 @@ msgid ""
 "connection, schema, and table name"
 msgstr ""
 
+#, fuzzy
+msgid "Table actions"
+msgstr "Colonna del Tempo"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10454,6 +10636,10 @@ msgstr "Cache Timeout"
 msgid "Table columns"
 msgstr "Colonna del Tempo"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Database"
+
 msgid "Table name undefined"
 msgstr ""
 
@@ -10523,11 +10709,6 @@ msgstr "La query non può essere caricata"
 msgid "Tags"
 msgstr ""
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-
 #, fuzzy
 msgid "Target"
 msgstr "Database"
@@ -10553,6 +10734,10 @@ msgid ""
 "coming from the controls."
 msgstr ""
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "è temporale"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10600,9 +10785,6 @@ msgid ""
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10634,6 +10816,9 @@ msgstr "La tua query non può essere salvata"
 msgid "The annotation has been updated"
 msgstr "La tua query non può essere salvata"
 
+msgid "The background color of the charts."
+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."
@@ -10664,6 +10849,9 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr ""
 
+msgid "The color of the elements border"
+msgstr ""
+
 msgid "The color of the isoband"
 msgstr ""
 
@@ -10678,6 +10866,12 @@ msgid ""
 "        Edit the color scheme in the dashboard properties."
 msgstr ""
 
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+
 msgid "The column header label"
 msgstr ""
 
@@ -10690,6 +10884,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr ""
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10701,22 +10901,9 @@ msgstr ""
 msgid "The data source seems to have been deleted"
 msgstr ""
 
-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."
-
-#, 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 ""
+#, fuzzy
+msgid "The database"
+msgstr "Database"
 
 msgid "The database columns that contains lines information"
 msgstr ""
@@ -10750,12 +10937,9 @@ msgstr ""
 msgid "The database was not found."
 msgstr "Template CSS"
 
-#, 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 ""
+#, fuzzy
+msgid "The dataset"
+msgstr "Seleziona una destinazione"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr ""
@@ -10815,6 +10999,15 @@ msgid ""
 "call."
 msgstr ""
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10832,6 +11025,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr ""
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10864,26 +11060,13 @@ msgstr ""
 msgid "The id of the active 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 ""
-"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'"
+#, fuzzy
+msgid "The layer attribution"
+msgstr "Attributi relativi al tempo"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10916,6 +11099,18 @@ msgid ""
 "periods"
 msgstr ""
 
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr ""
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Colonna del Tempo"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 msgid "The name of the rule must be unique"
 msgstr ""
 
@@ -11109,6 +11304,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr ""
 
@@ -11146,10 +11344,14 @@ msgstr ""
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "La tua query non può essere salvata"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
+msgid "The service url of the layer"
 msgstr ""
 
 msgid "The size of each cell in meters"
@@ -11158,6 +11360,9 @@ msgstr ""
 msgid "The size of the square cell, in pixels"
 msgstr ""
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr ""
 
@@ -11179,14 +11384,6 @@ msgid ""
 "to run this query."
 msgstr ""
 
-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."
-
 msgid "The table was deleted or renamed in the database."
 msgstr ""
 
@@ -11231,6 +11428,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr ""
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "Salva e vai alla dashboard"
+
 msgid "The type of visualization to display"
 msgstr "Il tipo di visualizzazione da mostrare"
 
@@ -11253,12 +11454,24 @@ msgstr ""
 msgid "The username provided when connecting to a database is not valid."
 msgstr ""
 
+msgid "The version of the service"
+msgstr ""
+
+msgid "The visible title of the layer"
+msgstr ""
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr ""
 
 msgid "The width of the Isoline in pixels"
 msgstr ""
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+msgid "The width of the elements border"
+msgstr ""
+
 msgid "The width of the lines"
 msgstr ""
 
@@ -11276,9 +11489,6 @@ msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s."
 msgid "There are no components added to this tab"
 msgstr ""
 
-msgid "There are no databases available"
-msgstr ""
-
 msgid "There are no filters in this dashboard."
 msgstr ""
 
@@ -11290,6 +11500,10 @@ msgid ""
 " or a typo."
 msgstr ""
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "Il tipo di visualizzazione da mostrare"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11316,6 +11530,10 @@ msgstr ""
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Errore nel creare il datasource"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Errore nel creare il datasource"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "Errore nel creare il datasource"
@@ -11333,6 +11551,10 @@ msgstr ""
 msgid "There was an error loading the tables"
 msgstr ""
 
+#, fuzzy
+msgid "There was an error retrieving dashboard tabs."
+msgstr "Errore nel creare il datasource"
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr ""
@@ -11340,6 +11562,10 @@ msgstr ""
 msgid "There was an error with your request"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Errore nel recupero dati"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr ""
@@ -11423,25 +11649,9 @@ msgstr ""
 msgid "There was an issue previewing the selected query. %s"
 msgstr ""
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr ""
-
 msgid "These are the datasets this filter will be applied to."
 msgstr ""
 
-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."
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11459,12 +11669,18 @@ msgstr ""
 msgid "This action will permanently delete the layer."
 msgstr ""
 
+msgid "This action will permanently delete the role."
+msgstr ""
+
 msgid "This action will permanently delete the saved query."
 msgstr ""
 
 msgid "This action will permanently delete the template."
 msgstr ""
 
+msgid "This action will permanently delete the user."
+msgstr ""
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11489,11 +11705,6 @@ msgid ""
 "source. "
 msgstr ""
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-
 msgid "This column might be incompatible with current dataset"
 msgstr ""
 
@@ -11559,6 +11770,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr ""
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 
@@ -11576,6 +11793,9 @@ msgstr ""
 msgid "This defines the element to be plotted on the chart"
 msgstr ""
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11586,13 +11806,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-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."
-
 msgid "This filter might be incompatible with current dataset"
 msgstr ""
 
@@ -11626,12 +11839,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr ""
 
-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 ""
-
 msgid "This metric might be incompatible with current dataset"
 msgstr ""
 
@@ -11670,6 +11877,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr ""
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr ""
 
@@ -11749,9 +11959,6 @@ msgstr "Formato Datetime"
 msgid "Time Series"
 msgstr "Colonna del Tempo"
 
-msgid "Time Series - Bar Chart"
-msgstr "Serie Temporali - Grafico Barre"
-
 msgid "Time Series - Line Chart"
 msgstr "Serie Temporali - Grafico Lineare"
 
@@ -11767,9 +11974,6 @@ msgstr "Serie Temporali - Cambiamento Percentuale"
 msgid "Time Series - Period Pivot"
 msgstr ""
 
-msgid "Time Series - Stacked"
-msgstr "Serie Temporali - Stacked"
-
 #, fuzzy
 msgid "Time Series Options"
 msgstr "Colonna del Tempo"
@@ -11863,17 +12067,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr ""
 
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "Esplora grafico"
-
-#, fuzzy
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Serie Temporali - Grafico Barre"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr ""
-
 #, fuzzy
 msgid "Time-series Percent Change"
 msgstr "Serie Temporali - Cambiamento Percentuale"
@@ -11894,9 +12087,6 @@ msgstr "Formato Datetime"
 msgid "Timezone"
 msgstr ""
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Timezone offset (in ore) per questa sorgente dati"
-
 #, fuzzy
 msgid "Timezone selector"
 msgstr "Seleziona una colonna"
@@ -11919,6 +12109,11 @@ msgstr "Sorgente Dati"
 msgid "Title or Slug"
 msgstr ""
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr ""
 
@@ -11964,6 +12159,9 @@ msgstr ""
 msgid "Total (%(aggregatorName)s)"
 msgstr ""
 
+msgid "Total (Sum)"
+msgstr ""
+
 #, fuzzy
 msgid "Total value"
 msgstr "Valore del filtro"
@@ -12074,9 +12272,6 @@ msgstr ""
 msgid "Type is required"
 msgstr ""
 
-msgid "Type of Google Sheets allowed"
-msgstr ""
-
 msgid "Type of comparison, value difference or percentage"
 msgstr ""
 
@@ -12152,9 +12347,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr ""
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr ""
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr ""
 
@@ -12185,6 +12386,9 @@ msgstr "Espressione SQL"
 msgid "Unexpected time range: %(error)s"
 msgstr ""
 
+msgid "Unhide"
+msgstr ""
+
 msgid "Unknown"
 msgstr ""
 
@@ -12223,6 +12427,10 @@ msgstr "Grafici"
 msgid "Unknown value"
 msgstr ""
 
+#, fuzzy
+msgid "Unpin"
+msgstr "Testa la Connessione"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr ""
@@ -12290,9 +12498,6 @@ msgstr "Colonna"
 msgid "Upload Columnar file to database"
 msgstr "Mostra database"
 
-msgid "Upload Credentials"
-msgstr ""
-
 msgid "Upload Enabled"
 msgstr ""
 
@@ -12314,6 +12519,9 @@ msgstr "Mostra database"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+msgid "Upload credentials"
+msgstr ""
+
 #, fuzzy
 msgid "Upload file to database"
 msgstr "Mostra database"
@@ -12369,10 +12577,11 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr ""
 
-msgid "Use date formatting even when metric value is not a timestamp"
-msgstr ""
+#, fuzzy
+msgid "Use current extent"
+msgstr "condividi query"
 
-msgid "Use legacy datasource editor"
+msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 
 msgid "Use metrics as a top level group for columns or for rows"
@@ -12384,11 +12593,6 @@ msgstr ""
 msgid "Use the Advanced Analytics options below"
 msgstr ""
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-
 msgid "Use the edit button to change this field"
 msgstr ""
 
@@ -12425,10 +12629,24 @@ msgstr ""
 msgid "User query"
 msgstr "condividi query"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 #, fuzzy
 msgid "Username"
 msgstr "Ricerca Query"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Sorgente Dati"
+
+#, fuzzy
+msgid "Users"
+msgstr "Query salvate"
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
 
@@ -12450,6 +12668,10 @@ msgid ""
 "funnels and pipelines."
 msgstr ""
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr ""
 
@@ -12478,10 +12700,17 @@ msgstr ""
 msgid "Value format"
 msgstr "Formato Datetime"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "La data di inizio non può essere dopo la data di fine"
+
 #, fuzzy
 msgid "Value is required"
 msgstr "Sorgente Dati"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "La data di inizio non può essere dopo la data di fine"
@@ -12502,12 +12731,6 @@ msgid ""
 "show relevant values"
 msgstr ""
 
-msgid "Vehicle Types"
-msgstr ""
-
-msgid "Verbose Name"
-msgstr "Nome Completo"
-
 msgid "Version"
 msgstr ""
 
@@ -12520,9 +12743,6 @@ msgstr ""
 msgid "Vertical (Left)"
 msgstr ""
 
-msgid "Video game consoles"
-msgstr ""
-
 msgid "View"
 msgstr ""
 
@@ -12567,9 +12787,6 @@ msgstr ""
 msgid "Virtual (SQL)"
 msgstr ""
 
-msgid "Virtual dataset"
-msgstr "Mostra database"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr ""
 
@@ -12606,11 +12823,6 @@ msgid ""
 "grid view."
 msgstr ""
 
-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."
@@ -12655,13 +12867,6 @@ msgid ""
 "instead."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -12676,6 +12881,12 @@ msgstr "Tipo"
 msgid "WED"
 msgstr ""
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr ""
@@ -12690,9 +12901,6 @@ msgstr ""
 msgid "Warning"
 msgstr ""
 
-msgid "Warning Message"
-msgstr ""
-
 msgid "Warning!"
 msgstr ""
 
@@ -12824,13 +13032,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr ""
 
-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"
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr ""
 
@@ -12851,6 +13052,11 @@ msgid ""
 "to the main datetime column."
 msgstr ""
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -12865,22 +13071,14 @@ msgstr ""
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
 
-msgid "When using this option, default value can’t be set"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
 msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr ""
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr ""
-
-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."
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -12918,6 +13116,10 @@ msgstr ""
 msgid "Whether to display bubbles on top of countries"
 msgstr ""
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Seleziona una metrica da visualizzare"
+
 msgid "Whether to display the aggregate count"
 msgstr ""
 
@@ -12927,11 +13129,6 @@ msgstr ""
 msgid "Whether to display the labels."
 msgstr ""
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-
 msgid "Whether to display the legend (toggles)"
 msgstr ""
 
@@ -12947,6 +13144,10 @@ msgstr ""
 msgid "Whether to display the numerical values within the cells"
 msgstr ""
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Seleziona una metrica da visualizzare"
+
 msgid "Whether to display the stroke"
 msgstr ""
 
@@ -12960,9 +13161,17 @@ msgstr ""
 msgid "Whether to display the tooltip labels."
 msgstr "Seleziona una metrica da visualizzare"
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Seleziona una metrica da visualizzare"
+
 msgid "Whether to display the trend line"
 msgstr ""
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Seleziona una metrica da visualizzare"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr ""
 
@@ -12987,36 +13196,15 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr ""
 
-msgid "Whether to make the histogram cumulative"
-msgstr ""
-
-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"
-
-msgid "Whether to normalize the histogram"
-msgstr ""
-
 msgid "Whether to populate autocomplete filters options"
 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 ""
-"Usato per popolare la finestra a cascata dei filtri dall'elenco dei "
-"valori distinti prelevati dal backend al volo"
-
 msgid "Whether to show as Nightingale chart."
 msgstr ""
 
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr ""
 
 msgid "Whether to show minor ticks on the axis"
@@ -13037,9 +13225,6 @@ msgstr ""
 msgid "Whether to sort descending or ascending"
 msgstr ""
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr ""
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 
@@ -13099,9 +13284,6 @@ msgstr ""
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr ""
-
 msgid "X AXIS TITLE MARGIN"
 msgstr ""
 
@@ -13122,6 +13304,10 @@ msgstr ""
 msgid "X Axis Title"
 msgstr ""
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Testa la Connessione"
+
 msgid "X Log Scale"
 msgstr ""
 
@@ -13144,6 +13330,9 @@ msgstr ""
 msgid "XScale Interval"
 msgstr ""
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr ""
 
@@ -13257,6 +13446,19 @@ msgid ""
 "want to overwrite?"
 msgstr ""
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 #, fuzzy
 msgid "You can"
 msgstr "Mappa della Nazione"
@@ -13333,9 +13535,6 @@ msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s."
 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."
 
-msgid "You don't have any favorites yet!"
-msgstr ""
-
 #, 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."
@@ -13414,6 +13613,9 @@ msgstr ""
 msgid "Your chart is ready to go!"
 msgstr ""
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr ""
 
@@ -13441,6 +13643,9 @@ msgstr "La tua query è stata salvata"
 msgid "Your query was updated"
 msgstr "La tua query è stata salvata"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 #, fuzzy
 msgid "Your report could not be deleted"
 msgstr "La query non può essere caricata"
@@ -13455,6 +13660,9 @@ msgstr "descrizione"
 msgid "Zoom"
 msgstr ""
 
+msgid "Zoom level"
+msgstr ""
+
 msgid "Zoom level of the map"
 msgstr ""
 
@@ -13575,9 +13783,6 @@ msgstr ""
 msgid "auto"
 msgstr "Descrizione"
 
-msgid "auto (Smooth)"
-msgstr ""
-
 msgid "background"
 msgstr ""
 
@@ -13627,10 +13832,6 @@ msgstr "Gestisci"
 msgid "chart"
 msgstr ""
 
-#, fuzzy
-msgid "charts"
-msgstr "Grafici"
-
 msgid "choose WHERE or HAVING..."
 msgstr ""
 
@@ -13641,6 +13842,9 @@ msgstr "Cerca / Filtra"
 msgid "click here"
 msgstr ""
 
+msgid "close"
+msgstr ""
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr ""
 
@@ -13697,17 +13901,9 @@ msgstr ""
 msgid "cumsum"
 msgstr ""
 
-#, fuzzy
-msgid "cumulative"
-msgstr "Azione"
-
 msgid "dashboard"
 msgstr ""
 
-#, fuzzy
-msgid "dashboards"
-msgstr "Elenco Dashboard"
-
 msgid "database"
 msgstr "Database"
 
@@ -13776,9 +13972,6 @@ msgstr ""
 msgid "default"
 msgstr "Endpoint predefinito"
 
-msgid "delete"
-msgstr "Cancella"
-
 msgid "descendant"
 msgstr ""
 
@@ -13792,9 +13985,6 @@ msgstr "descrizione"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr ""
 
-msgid "draft"
-msgstr ""
-
 msgid "dttm"
 msgstr "dttm"
 
@@ -13836,10 +14026,6 @@ msgstr ""
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr ""
 
-#, fuzzy
-msgid "e.g., a \"user id\" column"
-msgstr "Colonna del Tempo"
-
 #, fuzzy
 msgid "edit mode"
 msgstr "Ricerca Query"
@@ -13851,6 +14037,10 @@ msgstr ""
 msgid "entries"
 msgstr "Query salvate"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "Query salvate"
+
 #, fuzzy
 msgid "error"
 msgstr "Errore..."
@@ -13922,11 +14112,6 @@ msgstr ""
 msgid "hour"
 msgstr "ora"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-
 msgid "in"
 msgstr "Min"
 
@@ -13936,6 +14121,10 @@ msgstr "in modale"
 msgid "invalid email"
 msgstr ""
 
+#, fuzzy
+msgid "is"
+msgstr "Min"
+
 msgid "is expected to be a Mapbox URL"
 msgstr ""
 
@@ -13945,6 +14134,22 @@ msgstr ""
 msgid "is expected to be an integer"
 msgstr ""
 
+#, python-format
+msgid ""
+"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 ""
+
+#, python-format
+msgid ""
+"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 ""
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr ""
 
@@ -14078,19 +14283,10 @@ msgstr ""
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr ""
-
-msgid "page_size.show"
-msgstr ""
-
 #, fuzzy
 msgid "pending"
 msgstr "Importa"
 
-msgid "percentile (exclusive)"
-msgstr ""
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14100,22 +14296,19 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "Template CSS"
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 msgid "pixels"
 msgstr ""
 
 msgid "previous calendar month"
 msgstr ""
 
-msgid "previous calendar week"
+msgid "previous calendar quarter"
 msgstr ""
 
-msgid "previous calendar year"
+msgid "previous calendar week"
 msgstr ""
 
-msgid "published"
+msgid "previous calendar year"
 msgstr ""
 
 #, fuzzy
@@ -14138,9 +14331,6 @@ msgstr ""
 msgid "recent"
 msgstr ""
 
-msgid "recents"
-msgstr ""
-
 msgid "recipients"
 msgstr ""
 
@@ -14165,8 +14355,8 @@ msgid "running"
 msgstr "Testa la Connessione"
 
 #, fuzzy
-msgid "saved queries"
-msgstr "Query salvate"
+msgid "save"
+msgstr "Gestisci"
 
 msgid "seconds"
 msgstr ""
@@ -14181,10 +14371,6 @@ msgid ""
 "series"
 msgstr ""
 
-#, fuzzy
-msgid "shift start date"
-msgstr "Ultima Modifica"
-
 msgid "sql"
 msgstr ""
 
@@ -14245,9 +14431,6 @@ msgstr ""
 msgid "textarea"
 msgstr "textarea"
 
-msgid "to"
-msgstr ""
-
 msgid "top"
 msgstr ""
 
@@ -14257,6 +14440,14 @@ msgstr ""
 msgid "unknown type icon"
 msgstr ""
 
+#, fuzzy
+msgid "unset"
+msgstr "Colonna"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "%s - senza nome"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14283,9 +14474,6 @@ msgstr ""
 msgid "view instructions"
 msgstr "descrizione"
 
-msgid "virtual"
-msgstr ""
-
 #, fuzzy
 msgid "viz type"
 msgstr "Tipo"
@@ -14322,3 +14510,6 @@ msgstr "anno"
 
 msgid "zoom area"
 msgstr ""
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/ja/LC_MESSAGES/messages.po b/superset/translations/ja/LC_MESSAGES/messages.po
index fd9ee19b8edfaca2bec519f923b7948ff65a50c1..2e3f9ef4d7516068dc70a4bcd22bd714579b9bf0 100644
--- a/superset/translations/ja/LC_MESSAGES/messages.po
+++ b/superset/translations/ja/LC_MESSAGES/messages.po
@@ -17,16 +17,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2024-05-14 13:30+0900\n"
 "Last-Translator: Yuri Umezaki <bungoume@gmail.com>\n"
 "Language: ja\n"
 "Language-Team: ja <LL@li.org>\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=1; plural=0\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -68,9 +68,12 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
-msgstr "エラー: %(text)s\n"
+msgstr ""
 
 msgid " (excluded)"
 msgstr "(除く)"
@@ -88,9 +91,17 @@ msgstr ""
 msgid " a new one"
 msgstr "新規"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr "遵守すべき表現"
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr "スーパーセットのサンドボックスパーサーのソースコード"
 
@@ -157,15 +168,9 @@ msgstr "合計を表示"
 msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr "%(dialect)s は、セキュリティ上の理由からデータ ソースとして使用できません。"
 
-#, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
-msgstr ""
-"%(message)s\n"
-"これは次の原因で引き起こされる可能性があります: \n"
-"%(issues)s"
+#, fuzzy, python-format
+msgid "%(label)s file"
+msgstr "%(prefix)s %(title)s"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -179,22 +184,6 @@ msgstr "%(name)s.pdf"
 msgid "%(object)s does not exist in this database."
 msgstr "%(object)s はこのデータベースに存在しません。"
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr "%(other)s のグラフがここに表示されます"
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr "%(other)s のダッシュボードがここに表示されます"
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr "%(other)s の最近の記事がここに表示されます"
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s の保存されたクエリがここに表示されます"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr "%(prefix)s %(title)s"
@@ -212,16 +201,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr "%(rows)d 行が返されました"
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-"%(subtitle)s\n"
-"これは次の原因で引き起こされる可能性があります:\n"
-" %(issue)s"
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -229,10 +208,6 @@ msgid_plural ""
 "\"%(undefinedParameter)s\"?"
 msgstr[0] "\"%(unknownParameter)s?\" の代わりに %(suggestion)s"
 
-#, fuzzy, python-format
-msgid "%(type)s File"
-msgstr "%(prefix)s %(title)s"
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -287,10 +262,6 @@ msgstr "%s 集約"
 msgid "%s column(s)"
 msgstr "%s 列"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr "%s の対象外アイテムが非表示になっています。"
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -393,6 +364,10 @@ msgstr ""
 "-- 注: クエリを保存しない限り、Cookie をクリアしたりブラウザを変更したりすると、これらのタブは表示されなくなります。\n"
 "\n"
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0 選択済み"
 
@@ -454,6 +429,13 @@ msgstr "1年の年初毎"
 msgid "10 minute"
 msgstr "10分"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 パーセンタイル"
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr "104週間"
 
@@ -550,6 +532,10 @@ msgstr "5秒"
 msgid "5 seconds"
 msgstr "5秒"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 パーセンタイル"
+
 msgid "52 weeks"
 msgstr "52週間"
 
@@ -616,9 +602,6 @@ msgstr ">= (大きいか等しい)"
 msgid "A Big Number"
 msgstr "大きな数字"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "日付として解析する列の名前をドロップダウン・リストから選択する。"
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr "ファイルのアップロードを許可するスキーマのカンマ区切りのリスト"
 
@@ -628,6 +611,9 @@ msgstr "SSH トンネル経由で接続する場合はデータベース ポー
 msgid "A database with the same name already exists."
 msgstr "同じ名前のデータベースがすでに存在します。"
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 #, fuzzy
 msgid ""
 "A dictionary with column names and their data types if you need to change"
@@ -701,11 +687,6 @@ msgid ""
 "templating syntax"
 msgstr "Jinja テンプレート構文を使用してクエリで使用可能になるパラメーターのセット"
 
-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 "クエリの実行中にタイムアウトが発生しました。"
 
@@ -808,33 +789,41 @@ msgstr "最近の"
 msgid "Add CSS template"
 msgstr "CSSテンプレートを追加"
 
-msgid "Add Chart"
-msgstr "チャートを追加"
-
-msgid "Add Column"
-msgstr "列を追加"
-
 msgid "Add Dashboard"
 msgstr "ダッシュボードを追加"
 
-msgid "Add Database"
-msgstr "データベースを追加"
+#, fuzzy
+msgid "Add Divider"
+msgstr "区切り線"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "フィルタを追加"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "レイヤーを隠す"
 
 msgid "Add Log"
 msgstr "ログを追加"
 
-msgid "Add Metric"
-msgstr "指標を追加"
-
 msgid "Add Report"
 msgstr "レポートの追加"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "除外される役割"
+
 msgid "Add Rule"
 msgstr "ルールの追加"
 
 msgid "Add Tag"
 msgstr "タグを追加"
 
+#, fuzzy
+msgid "Add User"
+msgstr "ルールの追加"
+
 msgid "Add a Plugin"
 msgstr "プラグインを追加"
 
@@ -916,9 +905,6 @@ msgstr ""
 "サブセットのみをスキャンしてクエリのパフォーマンスを向上させたい場合\n"
 "基になるデータの値を変更するか、フィルターに表示される使用可能な値を制限します。"
 
-msgid "Add filters and dividers"
-msgstr "フィルターとディバイダーを追加"
-
 msgid "Add item"
 msgstr "項目の追加"
 
@@ -934,6 +920,10 @@ msgstr "新しいカラーフォーマッタを追加"
 msgid "Add new formatter"
 msgstr "新しいフォーマッタを追加"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "フィルターの追加と編集"
+
 msgid "Add required control values to preview chart"
 msgstr "必要なコントロール値をプレビューチャートに追加します"
 
@@ -955,12 +945,14 @@ msgstr "ダッシュボードの名前を追加"
 msgid "Add to dashboard"
 msgstr "ダッシュボードに追加"
 
-msgid "Add/Edit Filters"
-msgstr "フィルタの追加/編集"
-
 msgid "Added"
 msgstr "追加済み"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -975,9 +967,6 @@ msgstr "追加のフィールドが必要な場合があります"
 msgid "Additional information"
 msgstr "追加情報"
 
-msgid "Additional metadata"
-msgstr "追加のメタデータ"
-
 msgid "Additional padding for legend."
 msgstr "凡例の追加パディング"
 
@@ -1042,6 +1031,14 @@ msgstr "高度なデータ型"
 msgid "Advanced-Analytics"
 msgstr "高度な分析"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "チャートを選択"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "ダッシュボードの選択"
+
 msgid "After"
 msgstr "後"
 
@@ -1072,6 +1069,10 @@ msgstr "グリッド セルの境界内でデータを集計し、集計され
 msgid "Aggregation"
 msgstr "集計"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "集計"
+
 msgid "Aggregation function"
 msgstr "集計関数"
 
@@ -1151,6 +1152,10 @@ msgstr "整列 +/-"
 msgid "All"
 msgstr "全部"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "テーブルの列"
+
 msgid "All Text"
 msgstr "すべてのテキスト"
 
@@ -1166,26 +1171,14 @@ msgstr "すべてのフィルタ"
 msgid "All panels"
 msgstr "すべてのパネル"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr "この列のすべてのパネルは、このフィルターの影響を受けます"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "テーブル作成を許可"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "SQL Lab でテーブル作成オプションを許可する。"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "ビュー作成を許可"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "SQL Lab でビュー作成オプションを許可する。"
-
-msgid "Allow Csv Upload"
-msgstr "CSVアップロードを許可"
-
-msgid "Allow DML"
-msgstr "DML を許可"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr "カタログ変更の許可"
@@ -1201,6 +1194,10 @@ msgstr "列の再配置を許可する"
 msgid "Allow creation of new tables based on queries"
 msgstr "クエリに基づいた新しいテーブルの作成を許可する"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "クエリに基づいた新しいビューの作成を許可する"
+
 msgid "Allow creation of new views based on queries"
 msgstr "クエリに基づいた新しいビューの作成を許可する"
 
@@ -1215,28 +1212,24 @@ msgstr "エンド ユーザーが列ヘッダーをドラッグ アンド ドロ
 msgid "Allow file uploads to database"
 msgstr "データベースへのファイルのアップロードを許可する"
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr "UPDATE、DELETE、CREATE などの非 SELECT ステートメントを使用したデータベースの操作を許可します。"
-
 msgid "Allow node selections"
 msgstr "ノード選択を許可する"
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr "複数のポリゴンをフィルター イベントとして送信できるようにする"
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "このデータベースの探索を許可"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "SQL Lab でのこのデータベースのクエリを許可"
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
-msgstr "ユーザーが SQL Lab で非 SELECT ステートメント (UPDATE、DELETE、CREATE など) を実行できるようにする"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "許可されたドメイン (カンマ区切り)"
 
@@ -1278,6 +1271,10 @@ msgstr "データベースに個々のパラメータを渡すときは、エン
 msgid "An error has occurred"
 msgstr "エラーが発生しました"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "データセットの取得中にエラーが発生しました: %s"
+
 msgid "An error occurred"
 msgstr "エラーが発生しました"
 
@@ -1287,6 +1284,10 @@ msgstr "データセットの保存中にエラーが発生しました"
 msgid "An error occurred when running alert query"
 msgstr "アラート クエリの実行中にエラーが発生しました。"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "値へのアクセス中にエラーが発生しました。"
+
 msgid "An error occurred while accessing the value."
 msgstr "値へのアクセス中にエラーが発生しました。"
 
@@ -1299,6 +1300,10 @@ msgstr "テーブル スキーマを折りたたむときにエラーが発生
 msgid "An error occurred while creating %ss: %s"
 msgstr "%ss の作成中にエラーが発生しました: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "値の作成中にエラーが発生しました。"
+
 msgid "An error occurred while creating the data source"
 msgstr "データ ソースの作成中にエラーが発生しました"
 
@@ -1432,6 +1437,10 @@ msgid ""
 "button."
 msgstr "クエリをバックエンドに保存中にエラーが発生しました。変更内容が失われないように、[クエリを保存] ボタンを使用してクエリを保存してください。"
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "%ss の取得中にエラーが発生しました: %s"
+
 msgid "An error occurred while updating the value."
 msgstr "値の更新中にエラーが発生しました。"
 
@@ -1613,12 +1622,6 @@ msgstr "フィルターを適用する"
 msgid "Apply metrics on"
 msgstr "指標を適用する"
 
-msgid "Apply to all panels"
-msgstr "すべてのパネルに適用"
-
-msgid "Apply to specific panels"
-msgstr "特定のパネルに適用"
-
 msgid "April"
 msgstr "4月"
 
@@ -1660,6 +1663,10 @@ msgstr "選択したレイヤーを削除してもよろしいですか?"
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "選択したクエリを削除しますか?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "選択したルールを削除してもよろしいですか?"
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "選択したルールを削除してもよろしいですか?"
 
@@ -1669,6 +1676,10 @@ msgstr "選択したタグを削除してもよろしいですか?"
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "選択したテンプレートを削除してもよろしいですか?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "選択したクエリを削除しますか?"
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "このデータセットを上書きしてもよろしいですか?"
 
@@ -1706,15 +1717,13 @@ msgstr "パラメータのセットを次のように割り当てます"
 msgid "Assist"
 msgstr "アシスト"
 
-msgid "Associated Charts"
-msgstr "関連チャート"
-
-msgid "Async Execution"
-msgstr "非同期実行"
-
 msgid "Asynchronous query execution"
 msgstr "非同期でのクエリ実行"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "分布"
+
 msgid "August"
 msgstr "8月"
 
@@ -1739,12 +1748,26 @@ msgstr "自動補完のクエリ述語"
 msgid "Automatic Color"
 msgstr "自動カラー"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "列をカスタマイズする"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "列をカスタマイズする"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "利用可能な並べ替えモード"
 
 msgid "Average"
 msgstr "平均"
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr "平均値"
 
@@ -1782,6 +1805,10 @@ msgstr "すべて戻す"
 msgid "Backend"
 msgstr "バックエンド"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "背景"
+
 msgid "Backward values"
 msgstr "逆方向の値"
 
@@ -1797,9 +1824,6 @@ msgstr "棒"
 msgid "Bar Chart"
 msgstr "棒グラフ"
 
-msgid "Bar Chart (legacy)"
-msgstr "棒グラフ (従来の)"
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr "棒グラフは、指標を一連の棒として表示するために使用されます"
 
@@ -1812,10 +1836,25 @@ msgstr "バーの向き"
 msgid "Base"
 msgstr "ベース"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "DBポート番号"
+
+#, fuzzy
+msgid "Base height"
+msgstr "チャートの高さ"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr "ベースレイヤーのマップスタイル。 Mapbox のドキュメントを参照してください: %s"
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "線の幅"
+
 msgid "Based on a metric"
 msgstr "メトリクスに基づく"
 
@@ -1835,9 +1874,6 @@ msgstr "基本情報"
 msgid "Batch editing %d filters:"
 msgstr " %d フィルタのバッチ編集:"
 
-msgid "Battery level over time"
-msgstr "時間の経過に伴うバッテリー残量"
-
 msgid "Be careful."
 msgstr "気をつけてください。"
 
@@ -1860,6 +1896,14 @@ msgstr "トレンドラインのある大きな数"
 msgid "Bins"
 msgstr "In"
 
+#, fuzzy
+msgid "Border color"
+msgstr "シリーズカラー"
+
+#, fuzzy
+msgid "Border width"
+msgstr "線の幅"
+
 msgid "Bottom"
 msgstr "底"
 
@@ -1972,9 +2016,6 @@ msgstr "ブレットチャート"
 msgid "Business"
 msgstr "ビジネス"
 
-msgid "Business Data Type"
-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"
@@ -2043,8 +2084,9 @@ msgstr "CSSテンプレート"
 msgid "CSS templates could not be deleted."
 msgstr "CSS テンプレートを削除できませんでした。"
 
-msgid "CSV Upload"
-msgstr "CSVアップロード"
+#, fuzzy
+msgid "CSV upload"
+msgstr "アップロード"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "CTAS & CVAS SCHEMA"
@@ -2058,8 +2100,9 @@ msgstr ""
 "であるクエリでのみ実行できます。クエリの最後のステートメントとして SELECT "
 "が含まれていることを確認してください。次に、クエリを再度実行してみます。"
 
-msgid "CTAS Schema"
-msgstr "CTASスキーマ"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "カスタム"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2075,9 +2118,6 @@ msgstr "CVAS (選択としてビューを作成) クエリに複数のステー
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "CVAS (選択としてビューを作成) クエリは SELECT ステートメントではありません。"
 
-msgid "Cache Timeout"
-msgstr "キャッシュタイムアウト"
-
 msgid "Cache Timeout (seconds)"
 msgstr "キャッシュタイムアウト (秒)"
 
@@ -2122,9 +2162,6 @@ msgstr "トップレベルのタブをネストされたタブに移動できま
 msgid "Can select multiple values"
 msgstr "複数の値を選択できます"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "シリーズとブレークダウンの間に重複を含めることはできません。"
-
 msgid "Cancel"
 msgstr "キャンセル"
 
@@ -2137,6 +2174,10 @@ msgstr "クエリにアクセスできません。"
 msgid "Cannot delete a database that has datasets attached"
 msgstr "データセットがアタッチされているデータベースは削除できません。"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr "SSH トンネルに複数の認証情報を持つことはできません。"
 
@@ -2147,6 +2188,10 @@ msgstr "フィルタを読み込めません"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "時間文字列 [%(human_readable)s] を解析できません。"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "パーティション図"
+
 #, fuzzy
 msgid "Catalog"
 msgstr "タグ"
@@ -2224,12 +2269,13 @@ msgstr "列の順序を変更します。"
 msgid "Change order of rows."
 msgstr "行の順序を変更します。"
 
-msgid "Changed By"
-msgstr "更新者"
-
 msgid "Changed by"
 msgstr "更新者"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "変化"
+
 msgid "Changes saved."
 msgstr "変更が保存されました。"
 
@@ -2277,9 +2323,6 @@ msgstr "チャート"
 msgid "Chart %(id)s not found"
 msgstr "チャート %(id)s が見つかりません。"
 
-msgid "Chart Cache Timeout"
-msgstr "チャートキャッシュタイムアウト"
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr "チャートデータ: %s"
@@ -2373,6 +2416,10 @@ msgstr "グラフのパラメータが無効です。"
 msgid "Chart properties updated"
 msgstr "グラフのプロパティが更新されました"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "チャート"
+
 msgid "Chart title"
 msgstr "チャートのタイトル"
 
@@ -2420,6 +2467,10 @@ msgstr "[グループ化]に[点半径]の選択肢が存在する必要があ
 msgid "Choose File"
 msgstr "ファイルを選択"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "両方ではなくチャートまたはダッシュボードを選択してください。"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "両方ではなくチャートまたはダッシュボードを選択してください。"
 
@@ -2442,9 +2493,6 @@ msgstr "数値形式を選択してください"
 msgid "Choose a source"
 msgstr "ソースを選択してください"
 
-msgid "Choose a source and a target"
-msgstr "ソースとターゲットを選択してください"
-
 msgid "Choose a target"
 msgstr "ターゲットを選択してください"
 
@@ -2529,9 +2577,6 @@ msgstr "サークルレーダー形状"
 msgid "Circular"
 msgstr "円形"
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2552,7 +2597,10 @@ msgstr "すべてのデータをクリア"
 msgid "Clear form"
 msgstr "クリアフォーム"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr "「フィルタの追加/編集」ボタンをクリックして、新しいダッシュボード フィルタを作成します"
 
 msgid ""
@@ -2579,6 +2627,10 @@ msgstr "このデータベースに接続するために必要な必須フィー
 msgid "Click to add a contour"
 msgstr "クリックして輪郭を追加します"
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "クリックして輪郭を追加します"
+
 msgid "Click to cancel sorting"
 msgstr "クリックすると並べ替えをキャンセルします"
 
@@ -2696,12 +2748,13 @@ msgstr "列 \"%(column)s\" が数値ではないか、クエリ結果に存在
 msgid "Column Configuration"
 msgstr "列構成"
 
-msgid "Column Data Types"
-msgstr "列のデータ種類"
-
 msgid "Column Formatting"
 msgstr "列の書式設定"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "ポリゴン設定"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2717,9 +2770,6 @@ msgstr "経度データを含む列"
 msgid "Column data types"
 msgstr "列のデータ種類"
 
-msgid "Column datatype"
-msgstr "列のデータ種類"
-
 msgid "Column header tooltip"
 msgstr "列ヘッダーのツールチップ"
 
@@ -2747,17 +2797,19 @@ msgid ""
 msgstr "データフレームの行ラベルとして使用する列。インデックス列がない場合は空のままにします。"
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
+msgstr "列のデータ種類"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "列ファイル"
 
 msgid "Columns"
 msgstr "列"
 
-msgid "Columns To Be Parsed as Dates"
-msgstr "日付として解析される列"
-
-msgid "Columns To Read"
-msgstr "読むべきコラム"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s 列"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2770,6 +2822,10 @@ msgstr "データソースに列がありません。: %(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr "列の小計位置"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "日付として解析される列"
+
 msgid "Columns to calculate distribution across."
 msgstr "全体の分布を計算する列。"
 
@@ -2785,6 +2841,10 @@ msgstr "列でグループ化する列"
 msgid "Columns to group by on the rows"
 msgstr "行をグループ化するための列"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "読むべきコラム"
+
 msgid "Combine metrics"
 msgstr "メトリクスを結合する"
 
@@ -2823,17 +2883,6 @@ msgid ""
 "and color."
 msgstr "異なるグループ間でメトリクスが時間の経過とともにどのように変化するかを比較します。各グループは行にマッピングされ、時間の経過に伴う変化がバーの長さと色で視覚化されます。"
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr "共有タイムライン ビューでさまざまなアクティビティにかかる時間を比較します。"
-
 msgid "Comparison"
 msgstr "比較"
 
@@ -2893,18 +2942,28 @@ msgstr "フィルタスコープを構成する"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "注釈レイヤーの基本を構成します。"
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr "このダッシュボードを外部 Web アプリケーションに埋め込むように構成します。"
 
 msgid "Configure your how you overlay is displayed here."
 msgstr "ここでオーバーレイの表示方法を設定します。"
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "パスワードを表示します。"
+
 msgid "Confirm overwrite"
 msgstr "上書きの確認"
 
 msgid "Confirm save"
 msgstr "保存の確認"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "接続"
 
@@ -2936,9 +2995,6 @@ msgstr "接続に失敗しました。接続設定を確認してください。
 msgid "Connection failed, please check your connection settings."
 msgstr "接続に失敗しました。接続設定を確認してください"
 
-msgid "Connection looks good!"
-msgstr "接続は良好です!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "日付形式"
@@ -2977,21 +3033,21 @@ msgstr "クリップボードにコピーされました!"
 msgid "Copy"
 msgstr "コピー"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "SELECT文をクリップボードにコピー"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "JSON認証情報をコピーして貼り付けます"
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "サービス アカウントの .json ファイル全体をここにコピーして貼り付けます"
-
 msgid "Copy link"
 msgstr "リンクをコピー"
 
-msgid "Copy message"
-msgstr "メッセージをコピー"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "%sのコピー"
@@ -3008,6 +3064,9 @@ msgstr "クエリ URL のコピー"
 msgid "Copy query link to your clipboard"
 msgstr "クエリのlinkをクリップボードにコピー"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr "接続しようとしているアカウントの識別子をコピーします。"
 
@@ -3023,6 +3082,10 @@ msgstr "クリップボードにコピー"
 msgid "Copy to clipboard"
 msgstr "クリップボードにコピー"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "内半径"
+
 #, fuzzy
 msgid "Correlation"
 msgstr "相関"
@@ -3053,6 +3116,9 @@ msgstr "データベース ドライバーを読み込めませんでした。:
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr "ホスト名を解決できませんでした。: \"%(host)s\"。"
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr "カウント"
 
@@ -3145,6 +3211,9 @@ msgstr "データソースの作成と新しいタブの作成"
 msgid "Creator"
 msgstr "作成者"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr "真紅"
 
@@ -3232,6 +3301,9 @@ msgstr "カスタムSQLフィールドにはサブクエリを含めることは
 msgid "Custom color palettes"
 msgstr "自動補完"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "カスタム"
@@ -3266,9 +3338,6 @@ msgstr "データソース、フィルター、レイアウトをカスタマイ
 msgid "Cyclic dependency detected"
 msgstr "循環依存関係が検出されました"
 
-msgid "D3 Format"
-msgstr "D3フォーマット"
-
 msgid "D3 format"
 msgstr "D3フォーマット"
 
@@ -3327,6 +3396,21 @@ msgstr "ダッシュボード [%s] が作成され、グラフ [%s] が追加さ
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr "ダッシュボード [{}] が作成されチャート [{}] が追加されました。"
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "ダッシュボードを更新できませんでした。"
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "ダッシュボードを更新できませんでした。"
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "ダッシュボードを更新できませんでした。"
+
 msgid "Dashboard could not be deleted."
 msgstr "ダッシュボードを削除できませんでした。"
 
@@ -3339,7 +3423,11 @@ msgstr "ダッシュボードが存在しません。"
 msgid "Dashboard imported"
 msgstr "ダッシュボードがインポートされました"
 
-msgid "Dashboard parameters are invalid."
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "ダッシュボードを更新できませんでした。"
+
+msgid "Dashboard parameters are invalid."
 msgstr "ダッシュボードパラメータが無効です。"
 
 msgid "Dashboard properties"
@@ -3382,10 +3470,6 @@ msgstr "破線"
 msgid "Data"
 msgstr "データ"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "インポートされたデータセット"
-
 msgid "Data Table"
 msgstr "データテーブル"
 
@@ -3410,6 +3494,10 @@ msgstr "結果バックエンドからデータを取得できませんでした
 msgid "Data for %s"
 msgstr "JSの追加データ"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "インポートされたデータセット"
+
 msgid "Data preview"
 msgstr "データプレビュー"
 
@@ -3566,15 +3654,6 @@ msgid ""
 "database table to the left or "
 msgstr "データセットはデータベース テーブルまたは SQL クエリから作成できます。"
 
-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 ""
-"データセットにはメインの時間列 (main_dttm_col) を含めることができますが、セカンダリの時間列を含めることもできます。この属性が "
-"true の場合、セカンダリ列がフィルタリングされるたびに、同じフィルタがメインの日時列に適用されます。"
-
 msgid "Datasets could not be deleted."
 msgstr "データセットを削除できませんでした。"
 
@@ -3608,9 +3687,6 @@ msgstr "日付形式の文字列"
 msgid "Date/Time"
 msgstr "日付/時刻"
 
-msgid "Datetime Format"
-msgstr "日時フォーマット"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3638,13 +3714,12 @@ msgstr "非アクティブ化"
 msgid "December"
 msgstr "12月"
 
-msgid "Decides which column to sort the base axis by."
-msgstr "基本軸をソートする列を決定します。"
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "基準軸をソートする基準を決定します。"
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "小数文字"
 
 msgid "Deck.gl - 3D Grid"
@@ -3687,9 +3762,6 @@ msgstr "減少"
 msgid "Default Catalog"
 msgstr "デフォルト値"
 
-msgid "Default Endpoint"
-msgstr "デフォルトのエンドポイント"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "スキームの選択"
@@ -3697,8 +3769,11 @@ msgstr "スキームの選択"
 msgid "Default URL"
 msgstr "デフォルトのURL"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
-msgstr "データセットリストページからアクセスする際のリダイレクト先のデフォルトURL"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
+msgstr ""
 
 msgid "Default Value"
 msgstr "デフォルト値"
@@ -3717,9 +3792,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr "デフォルトの最小列幅(ピクセル単位)。他の列にそれほどスペースが必要ない場合、実際の幅はこれよりも大きくなる可能性があります"
 
-msgid "Default value is required"
-msgstr "デフォルト値は必須です"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr "「フィルターにデフォルト値がある」がチェックされている場合は、デフォルト値を設定する必要があります"
 
@@ -3766,9 +3838,6 @@ msgid ""
 "[Periods] text box"
 msgstr "適用するローリング ウィンドウ関数を定義し、[期間] テキスト ボックスと連動します。"
 
-msgid "Defines how each series is broken down"
-msgstr "各シリーズをどのように分類するかを定義します"
-
 msgid "Defines the grid size in pixels"
 msgstr "グリッド サイズをピクセル単位で定義します"
 
@@ -3822,9 +3891,17 @@ msgstr "クエリを削除しますか?"
 msgid "Delete Report?"
 msgstr "レポートを削除しますか?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "削除"
+
 msgid "Delete Template?"
 msgstr "テンプレートを削除しますか?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "クエリを削除しますか?"
+
 msgid "Delete all Really?"
 msgstr "本当に全部削除しますか?"
 
@@ -3843,12 +3920,20 @@ msgstr "電子メールレポートを削除する"
 msgid "Delete query"
 msgstr "クエリを削除"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "削除"
+
 msgid "Delete template"
 msgstr "テンプレートを削除"
 
 msgid "Delete this container and save to remove this message."
 msgstr "このコンテナを削除し、保存してこのメ​​ッセージを削除します。"
 
+#, fuzzy
+msgid "Delete user"
+msgstr "クエリを削除"
+
 msgid "Deleted"
 msgstr "削除"
 
@@ -3901,13 +3986,30 @@ msgstr[0] " %(num)d 件の保存したクエリを削除しました。"
 msgid "Deleted %s"
 msgstr "%s を削除しました"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "削除しました: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "削除しました: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "削除しました: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "削除しました: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "削除しました: %s"
 
+#, fuzzy
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr "タブを削除すると、タブ内のすべてのコンテンツが削除されます。このアクションを元に戻すこともできます。"
 
 msgid "Delimited long & lat single column"
@@ -3919,18 +4021,12 @@ msgstr "区切り文字"
 msgid "Delivery method"
 msgstr "配送方法"
 
-msgid "Demographics"
-msgstr "人口統計"
-
 msgid "Density"
 msgstr "密度"
 
 msgid "Dependent on"
 msgstr "応じて"
 
-msgid "Deprecated"
-msgstr "廃止された"
-
 msgid "Description"
 msgstr "廃止された"
 
@@ -4024,9 +4120,6 @@ msgstr "このデータセットのサンプルは返されませんでした"
 msgid "Discard"
 msgstr "破棄"
 
-msgid "Display"
-msgstr "画面"
-
 msgid "Display Name"
 msgstr "表示名"
 
@@ -4034,12 +4127,20 @@ msgstr "表示名"
 msgid "Display all"
 msgstr "表示名"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "列レベルの合計を表示します"
+
 msgid "Display column level subtotal"
 msgstr "列レベルの小計を表示します"
 
 msgid "Display column level total"
 msgstr "列レベルの合計を表示します"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "列レベルの合計を表示します"
+
 msgid "Display configuration"
 msgstr "表示設定"
 
@@ -4060,8 +4161,9 @@ msgstr "行レベルの小計を表示する"
 msgid "Display row level total"
 msgstr "行レベルの合計を表示します"
 
-msgid "Display settings"
-msgstr "ディスプレイの設定"
+#, fuzzy
+msgid "Display type icon"
+msgstr "ブール型アイコン"
 
 msgid ""
 "Displays connections between entities in a graph structure. Useful for "
@@ -4079,9 +4181,6 @@ msgstr "全体に分散"
 msgid "Distribution"
 msgstr "分布"
 
-msgid "Distribution - Bar Chart"
-msgstr "分布 - 棒グラフ"
-
 msgid "Divider"
 msgstr "区切り線"
 
@@ -4109,9 +4208,18 @@ msgstr "画像としてダウンロード"
 msgid "Download as image"
 msgstr "画像としてダウンロード"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "CSVにダウンロード"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "下書き"
 
@@ -4204,6 +4312,14 @@ msgstr "重複する列/メトリック ラベル: %(labels)s。すべての列
 msgid "Duplicate dataset"
 msgstr "重複したデータセット"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "重複"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "列名が重複しています: %(columns)s"
+
 msgid "Duplicate tab"
 msgstr "タブの複製"
 
@@ -4218,19 +4334,6 @@ msgstr ""
 "このデータベースのチャートのキャッシュ タイムアウトの期間 (秒単位)。タイムアウト 0 はキャッシュが期限切れにならないことを示し、-1 "
 "はキャッシュをバイパスします。未定義の場合、デフォルトでグローバル タイムアウトになることに注意してください。"
 
-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 ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-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 "
@@ -4239,14 +4342,6 @@ msgstr ""
 "このチャートのキャッシュ タイムアウトの期間 (秒単位)。キャッシュをバイパスするには、-1 "
 "に設定します。未定義の場合、これはデフォルトでデータセットのタイムアウトになることに注意してください。"
 
-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 ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4263,6 +4358,10 @@ msgstr "持続時間 (ms) (1.40008 => 1ms 400µs 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "持続時間 (ms) (100.40008 => 100ms 400µs 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "持続時間 (ms) (66000 => 1 分 6 秒)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "持続時間 (ms) (66000 => 1 分 6 秒)"
 
@@ -4284,10 +4383,6 @@ msgstr "終了 (独占)"
 msgid "ERROR"
 msgstr "エラー"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "エラー: %s"
-
 msgid "Edge length"
 msgstr "線の長さ"
 
@@ -4312,45 +4407,38 @@ msgstr "CSSを編集"
 msgid "Edit CSS template properties"
 msgstr "CSSテンプレートのプロパティを編集する"
 
-msgid "Edit Chart"
-msgstr "チャートを編集"
-
 msgid "Edit Chart Properties"
 msgstr "チャートのプロパティを編集"
 
-msgid "Edit Column"
-msgstr "列の編集"
-
 msgid "Edit Dashboard"
 msgstr "ダッシュボードを編集"
 
-msgid "Edit Database"
-msgstr "データベースを編集"
-
 msgid "Edit Dataset "
 msgstr "データセットの編集"
 
 msgid "Edit Log"
 msgstr "ログを編集"
 
-msgid "Edit Metric"
-msgstr "指標を編集"
-
 msgid "Edit Plugin"
 msgstr "プラグインの編集"
 
 msgid "Edit Report"
 msgstr "レポートの編集"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "編集モード"
+
 msgid "Edit Rule"
 msgstr "ルールの編集"
 
-msgid "Edit Table"
-msgstr "テーブルを編集"
-
 msgid "Edit Tag"
 msgstr "タグの編集"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "クエリを編集"
+
 msgid "Edit annotation"
 msgstr "注釈を編集する"
 
@@ -4387,6 +4475,10 @@ msgstr "プロパティの編集"
 msgid "Edit query"
 msgstr "クエリを編集"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "編集モード"
+
 msgid "Edit template"
 msgstr "テンプレートを編集"
 
@@ -4399,6 +4491,10 @@ msgstr "ダッシュボードを編集する"
 msgid "Edit time range"
 msgstr "期間を編集"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "クエリを編集"
+
 msgid "Edited"
 msgstr "編集した項目"
 
@@ -4424,6 +4520,14 @@ msgstr "ユーザー名またはパスワードが間違っています。"
 msgid "Elevation"
 msgstr "標高"
 
+#, fuzzy
+msgid "Email"
+msgstr "詳細"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "値が要求されます"
+
 msgid "Email reports active"
 msgstr "電子メールレポートがアクティブです"
 
@@ -4439,6 +4543,10 @@ msgstr "コードを埋め込む"
 msgid "Embed dashboard"
 msgstr "ダッシュボードを埋め込む"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "ダッシュボードを削除できませんでした。"
+
 msgid "Embedding deactivated."
 msgstr "埋め込みが無効になりました。"
 
@@ -4448,9 +4556,6 @@ msgstr "フィルターイベントの発行"
 msgid "Emphasis"
 msgstr "強調"
 
-msgid "Employment and education"
-msgstr "雇用と教育"
-
 msgid "Empty circle"
 msgstr "空の円"
 
@@ -4472,9 +4577,6 @@ msgstr "空の行"
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr "データベースの設定で「データベースへのファイルのアップロードを許可する」を有効にする"
 
-msgid "Enable Filter Select"
-msgstr "フィルター選択を有効にする。"
-
 msgid "Enable cross-filtering"
 msgstr "クロスフィルタリングを有効にする"
 
@@ -4574,12 +4676,26 @@ msgstr "レポート名"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "必要な %(dbModelName)s 認証情報を入力してください"
 
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "アラート名"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "アラート名"
+
+msgid "Enter the user's username"
+msgstr ""
+
 msgid "Entity"
 msgstr "実在物"
 
-msgid "Entity ID"
-msgstr "エンティティID"
-
 msgid "Equal Date Sizes"
 msgstr "等しい日付サイズ"
 
@@ -4592,6 +4708,14 @@ msgstr "エラー"
 msgid "Error Fetching Tagged Objects"
 msgstr "タグ付きオブジェクトの取得エラー"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "データの取得中にエラーが発生しました: %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "データセットの保存中にエラーが発生しました"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr "HAVING 句の jinja 式にエラーがあります。: %(msg)s"
@@ -4614,6 +4738,10 @@ msgstr "チャート データソースのロード中にエラーが発生し
 msgid "Error message"
 msgstr "エラーメッセージ"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "エラーダーク"
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "データセットの保存中にエラーが発生しました"
@@ -4629,6 +4757,22 @@ msgstr "Excelファイルをアップロードする"
 msgid "Error saving dataset"
 msgstr "データセットの保存中にエラーが発生しました"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "データセットの保存中にエラーが発生しました"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "チャートの取得中にエラーが発生しました"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "チャートの取得中にエラーが発生しました"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "チャートの取得中にエラーが発生しました"
+
 msgid "Error while fetching charts"
 msgstr "チャートの取得中にエラーが発生しました"
 
@@ -4636,10 +4780,30 @@ msgstr "チャートの取得中にエラーが発生しました"
 msgid "Error while fetching data: %s"
 msgstr "データの取得中にエラーが発生しました: %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "チャートの取得中にエラーが発生しました"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "チャートの取得中にエラーが発生しました"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "チャートの取得中にエラーが発生しました"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "仮想データセット クエリのレンダリング中にエラーが発生しました。: %(msg)s"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "チャートの取得中にエラーが発生しました"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "チャートの取得中にエラーが発生しました"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "エラー: %(error)s"
@@ -4663,15 +4827,6 @@ msgstr "クエリを実行する前にコストを見積もる"
 msgid "Event"
 msgstr "イベント"
 
-msgid "Event Flow"
-msgstr "イベントの流れ"
-
-msgid "Event Names"
-msgstr "イベント名"
-
-msgid "Event definition"
-msgstr "イベントの定義"
-
 msgid "Event flow"
 msgstr "イベントの流れ"
 
@@ -4693,13 +4848,13 @@ msgstr "例"
 msgid "Examples"
 msgstr "例"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "CSVアップロード"
-
 msgid "Excel file format cannot be determined"
 msgstr "エクセルファイルの形式が特定できません。"
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "CSVアップロード"
+
 msgid "Exclude selected values"
 msgstr "選択した値を除外する"
 
@@ -4790,12 +4945,6 @@ msgstr "PDFにエクスポート"
 msgid "Export to Pivoted .CSV"
 msgstr "ピボットされたCSVにエクスポート"
 
-msgid "Export to YAML"
-msgstr "YAMLにエクスポート"
-
-msgid "Export to YAML?"
-msgstr "YAMLにエクスポートしますか?"
-
 msgid "Export to full .CSV"
 msgstr "完全なCSVにエクスポート"
 
@@ -4814,11 +4963,9 @@ msgstr "SQL Lab でデータベースを公開する"
 msgid "Expose in SQL Lab"
 msgstr "SQL ラボで公開"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "このDBをSQL Labで公開"
-
-msgid "Expression"
-msgstr "表現"
+#, fuzzy
+msgid "Extent"
+msgstr "最近の"
 
 msgid "Extra"
 msgstr "エクストラ"
@@ -4842,10 +4989,6 @@ msgstr ""
 " \"certified_by\": \"Data Platform Team\", \"details\": \"This table is "
 "the source of true.\" \" }, \"warning_markdown\": \"これは警告です。\" }`。"
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "追加フィールドは JSON でデコードできません。 %(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "Extra parameters for use in jinja templated queries"
 
@@ -4863,6 +5006,10 @@ msgstr "押し出し"
 msgid "FEB"
 msgstr "2月"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "データセットを編集"
+
 msgid "FRI"
 msgstr "金曜日"
 
@@ -4872,16 +5019,15 @@ msgstr "要素"
 msgid "Factor to multiply the metric by"
 msgstr "メトリックに乗算する係数"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "失敗"
 
 msgid "Failed at retrieving results"
 msgstr "結果の取得に失敗しました"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "クエリの停止に失敗しました。 %s"
-
 msgid "Failed to create report"
 msgstr "レポートの作成に失敗しました"
 
@@ -4910,6 +5056,10 @@ msgstr "クロスフィルターのスコープを保存できませんでした
 msgid "Failed to start remote query on a worker."
 msgstr "ワーカー上でリモート クエリを開始できませんでした。"
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "クエリの停止に失敗しました。 %s"
+
 msgid "Failed to tag items"
 msgstr "アイテムのタグ付けに失敗しました"
 
@@ -4933,9 +5083,6 @@ msgstr "おすすめのカラーパレット"
 msgid "February"
 msgstr "2月"
 
-msgid "Fetch Values Predicate"
-msgstr "値のフェッチ述語"
-
 msgid "Fetch data preview"
 msgstr "データプレビューを読み込み"
 
@@ -4960,16 +5107,13 @@ msgstr "フィールドは必須です。"
 msgid "File"
 msgstr "ファイル"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "フィルター設定"
-
 #, fuzzy
 msgid "File extension is not allowed."
 msgstr "データ URI は許可されません。"
 
-msgid "File size exceeds the maximum allowed size."
-msgstr "ファイルサイズが最大許容サイズを超えています。"
+#, fuzzy
+msgid "File settings"
+msgstr "フィルター設定"
 
 #, fuzzy
 msgid "File upload"
@@ -5035,9 +5179,6 @@ msgstr "フィルター値リストを空にすることはできません。"
 msgid "Filter your charts"
 msgstr "チャートを検索"
 
-msgid "Filterable"
-msgstr "フィルタ可能"
-
 msgid "Filters"
 msgstr "フィルタ"
 
@@ -5050,6 +5191,16 @@ msgstr "メトリクスによるフィルター"
 msgid "Filters for comparison must have a value"
 msgstr "比較用のフィルタには値が必要です"
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "「row_limit」は 0 以上でなければなりません。"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "フィルターは範囲外です (%d)"
@@ -5078,6 +5229,14 @@ msgstr "終了"
 msgid "First"
 msgstr "最初"
 
+#, fuzzy
+msgid "First name"
+msgstr "チャート名"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "名前が必要です"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5154,6 +5313,10 @@ msgstr "日付形式を強制する"
 msgid "Force refresh"
 msgstr "強制更新"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "スキーマリストの強制更新"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "テーブルリストを強制更新"
@@ -5270,6 +5433,10 @@ msgstr "GeoJson 設定"
 msgid "Geohash"
 msgstr "ジオハッシュ"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "空の列"
+
 msgid "Get the last date by the date unit."
 msgstr "最終日付を日付単位で取得します。"
 
@@ -5327,9 +5494,6 @@ msgstr "グループキー"
 msgid "Group by"
 msgstr "グループ化"
 
-msgid "Groupable"
-msgstr "グループ分け可能"
-
 msgid "Guest user cannot modify chart payload"
 msgstr "ゲストユーザーはチャートペイロードを変更できません。"
 
@@ -5346,20 +5510,12 @@ msgstr "ハンドルバーのテンプレート"
 msgid "Hard value bounds applied for color coding."
 msgstr "カラーコーディングにはハード値の境界が適用されます。"
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr "カラーコーディングにはハード値の境界が適用されます。正規化がヒートマップ全体に対して適用される場合にのみ関連し、適用されます。"
-
 msgid "Has created by"
 msgstr "によって作成されました。"
 
 msgid "Header"
 msgstr "見出し"
 
-msgid "Header Row"
-msgstr "ヘッダー行"
-
 #, fuzzy
 msgid "Header row"
 msgstr "ヘッダー行"
@@ -5367,19 +5523,16 @@ msgstr "ヘッダー行"
 msgid "Heatmap"
 msgstr "ヒートマップ"
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "円グラフ (レガシー)"
-
-msgid "Heatmap Options"
-msgstr "ヒートマップオプション"
-
 msgid "Height"
 msgstr "高さ"
 
 msgid "Height of the sparkline"
 msgstr "スパークラインの高さ"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "時間列"
+
 msgid "Hide Line"
 msgstr "線を隠す"
 
@@ -5404,10 +5557,6 @@ msgstr "階層"
 msgid "Histogram"
 msgstr "ヒストグラム"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "円グラフ (レガシー)"
-
 msgid "Home"
 msgstr "ホーム"
 
@@ -5483,30 +5632,22 @@ msgstr ""
 "Hive および hive.server2.enable.doAs が有効な場合、クエリはサービス "
 "アカウントとして実行されますが、hive.server2.proxy.user プロパティを介して現在ログオンしているユーザーになりすまします。"
 
-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.<br/>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 Lab のすべてのクエリは、実行権限が必要な現在ログオンしているユーザーとして実行されます。<br/>Hive "
-"および hive.server2.enable.doAs が有効な場合、クエリは次のように実行されます。サービス "
-"アカウントですが、hive.server2.proxy.user プロパティを介して現在ログオンしているユーザーになりすまします。"
-
-msgid "If Table Already Exists"
-msgstr "テーブルがすでに存在する場合"
-
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr "メトリックが指定されている場合、ソートはメトリック値に基づいて行われます"
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
 msgstr "このコントロールが有効な場合、結果/値は降順で並べ替えられ、それ以外の場合は結果は昇順で並べ替えられます。"
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr "選択した場合は、Extra で CSV アップロードを許可するスキーマを設定してください。"
+#, fuzzy
+msgid "If table already exists"
+msgstr "ラベルはすでに存在します。"
 
 msgid "Ignore cache when generating report"
 msgstr "レポート生成時にキャッシュを無視する"
@@ -5526,9 +5667,6 @@ msgstr "イメージのダウンロードに失敗しました。更新して再
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr "ログインユーザーの偽装 (Presto、Trino、Drill、Hive、および GSheets)"
 
-msgid "Impersonate the logged on user"
-msgstr "ログオンしているユーザー"
-
 msgid "Import"
 msgstr "インポート"
 
@@ -5539,9 +5677,6 @@ msgstr "インポート %s"
 msgid "Import Dashboard(s)"
 msgstr "ダッシュボードをインポート"
 
-msgid "Import a table definition"
-msgstr "テーブル定義のインポート"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "不明な理由でチャートのインポートに失敗しました。"
 
@@ -5572,16 +5707,14 @@ msgstr "クエリのインポート"
 msgid "Import saved query failed for an unknown reason."
 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 ""
-"重要!テーブルがまだエンティティ ID "
-"で並べ替えられていない場合は、これを選択します。そうでない場合、各エンティティのすべてのイベントが返されるという保証はありません。"
-
 msgid "In"
 msgstr "In"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "シリーズを含める"
 
@@ -5604,17 +5737,18 @@ msgstr "増加"
 msgid "Index"
 msgstr "索引"
 
-msgid "Index Column"
-msgstr "インデックス列"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "範囲ラベル"
+msgid "Index column"
+msgstr "行列"
 
 #, fuzzy
 msgid "Index label"
 msgstr "範囲ラベル"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "キーとインデックスを表示 (%s)"
+
 msgid "Info"
 msgstr "情報"
 
@@ -5633,6 +5767,13 @@ msgstr "カスタム幅をピクセル単位で入力"
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr "入力フィールドはカスタム回転をサポートしています。例えば30°の場合は 30"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "レイヤーを隠す"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "強度"
 
@@ -5663,9 +5804,6 @@ msgstr "インターバル開始列"
 msgid "Intervals"
 msgstr "間隔"
 
-msgid "Intesity"
-msgstr "強度"
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -5710,6 +5848,9 @@ msgstr "保存されたメトリクスの通貨コードが無効です"
 msgid "Invalid date/timestamp format"
 msgstr "無効な日付/タイムスタンプのフォーマット"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "無効なフィルタ操作タイプ: %(op)s"
@@ -5773,6 +5914,10 @@ msgstr "逆選択"
 msgid "Invert current page"
 msgstr "現在のページを反転する"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "電子メールレポートがアクティブです"
+
 msgid "Is certified"
 msgstr "認定されています。"
 
@@ -5948,12 +6093,6 @@ msgstr "大きい"
 msgid "Last"
 msgstr "ラスト"
 
-msgid "Last Changed"
-msgstr "最終更新"
-
-msgid "Last Modified"
-msgstr "最終更新"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "最終更新 %s"
@@ -5962,6 +6101,10 @@ msgstr "最終更新 %s"
 msgid "Last Updated %s by %s"
 msgstr "最終更新日: %s、作成者: %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "目標値"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr "%s で確認された最後の利用可能な値"
@@ -5969,12 +6112,24 @@ msgstr "%s で確認された最後の利用可能な値"
 msgid "Last day"
 msgstr "最終日"
 
+#, fuzzy
+msgid "Last login"
+msgstr "先月"
+
 msgid "Last modified"
 msgstr "最終更新"
 
 msgid "Last month"
 msgstr "先月"
 
+#, fuzzy
+msgid "Last name"
+msgstr "データセット名"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "名前が必要です"
+
 msgid "Last quarter"
 msgstr "最後の四半期"
 
@@ -5987,15 +6142,42 @@ msgstr "先週"
 msgid "Last year"
 msgstr "去年"
 
+#, fuzzy
+msgid "Lat"
+msgstr "フラット"
+
 msgid "Latitude"
 msgstr "緯度"
 
 msgid "Latitude of default viewport"
 msgstr "デフォルトのビューポートの緯度"
 
+#, fuzzy
+msgid "Layer"
+msgstr "年"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "アラート名"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "レイヤー構成"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "チャートのタイトル"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "フィルタタイプ"
+
+#, fuzzy
+msgid "Layers"
+msgstr "アラート"
+
 msgid "Layout"
 msgstr "レイアウト"
 
@@ -6008,11 +6190,6 @@ msgstr "グラフのレイアウトタイプ"
 msgid "Layout type of tree"
 msgstr "ツリーのレイアウトタイプ"
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr "この数よりも少ないイベントを表すリーフ ノードは、最初は視覚化で非表示になります。"
-
 msgid "Least recently modified"
 msgstr "最も最近変更されていないもの"
 
@@ -6077,11 +6254,6 @@ msgstr "いいね (大文字と小文字は区別されません)"
 msgid "Limit type"
 msgstr "制限の種類"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr "行を制限すると、データが不完全になり、グラフが誤解を招く可能性があります。代わりに、ソース/ターゲット名をフィルタリングまたはグループ化することを検討してください。"
-
 msgid "Limits the number of cells that get retrieved."
 msgstr "取得されるセルの数を制限します。"
 
@@ -6121,6 +6293,9 @@ msgstr ""
 "折れ線グラフは、特定のカテゴリにわたって取得された測定値を視覚化するために使用されます。折れ線グラフは、情報を直線セグメントで接続された一連のデータ"
 " ポイントとして表示するグラフの一種です。多くの分野で一般的な基本的なタイプのチャートです。"
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "d3.js で定義された線補間"
 
@@ -6148,9 +6323,16 @@ msgstr "行のエンコーディング"
 msgid "Link Copied!"
 msgstr "リンクをコピーしました!"
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr "一意の値をリストする"
 
+#, fuzzy
+msgid "List Users"
+msgstr "スプリット番号"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr "JavaScript 関数で使用できる追加列のリスト"
 
@@ -6218,6 +6400,10 @@ msgstr "対数 y 軸"
 msgid "Login"
 msgstr "ログイン"
 
+#, fuzzy
+msgid "Login count"
+msgstr "カウント"
+
 msgid "Login with"
 msgstr "でログイン"
 
@@ -6227,6 +6413,10 @@ msgstr "ログアウト"
 msgid "Logs"
 msgstr "ログ"
 
+#, fuzzy
+msgid "Lon"
+msgstr "on"
+
 msgid "Long dashed"
 msgstr "長破線"
 
@@ -6268,9 +6458,6 @@ msgstr "月"
 msgid "Main"
 msgstr "最小値"
 
-msgid "Main Datetime Column"
-msgstr "メイン日時列"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6302,6 +6489,10 @@ msgstr "Y 軸の最小値/最大値を手動で設定します。"
 msgid "Map"
 msgstr "地図"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "ヒートマップオプション"
+
 msgid "Map Style"
 msgstr "Map Style"
 
@@ -6344,14 +6535,17 @@ msgstr "Markers"
 msgid "Markup type"
 msgstr "マークアップの種類"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "最大値"
 
 msgid "Max Bubble Size"
 msgstr "最大バブルサイズ"
 
-msgid "Max Events"
-msgstr "最大イベント数"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "最大"
@@ -6362,6 +6556,9 @@ msgstr "最大フォントサイズ"
 msgid "Maximum Radius"
 msgstr "最大半径"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6401,6 +6598,18 @@ msgstr "中央値"
 msgid "Medium"
 msgstr "中"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr "メニューアクションのトリガー"
 
@@ -6498,11 +6707,6 @@ msgstr ""
 "シリーズまたは行制限が存在する場合に上位シリーズを並べ替える方法を定義するために使用されるメトリック。未定義の場合は、最初のメトリック "
 "(該当する場合) に戻ります。"
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr "シリーズ制限が存在する場合、制限を順序付けるために使用されるメトリック。未定義の場合は、最初のメトリック (該当する場合) に戻ります。"
-
 msgid "Metrics"
 msgstr "指標"
 
@@ -6542,8 +6746,8 @@ msgstr "最小フォントサイズ"
 msgid "Minimum Radius"
 msgstr "最小半径"
 
-msgid "Minimum leaf node event count"
-msgstr "最小リーフノードイベント数"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
 "Minimum radius size of the circle, in pixels. As the zoom level changes, "
@@ -6556,6 +6760,10 @@ msgstr "ラベルを表示するためのパーセントポイント単位の最
 msgid "Minimum value"
 msgstr "最小値"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "開始日は終了日を超えてはいけません。"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "グラフに表示するラベルの最小値。"
 
@@ -6579,6 +6787,9 @@ msgstr "分 %s"
 msgid "Minutes value"
 msgstr "最小値"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr "URLパラメータが欠落しています"
 
@@ -6595,6 +6806,11 @@ msgstr "変更"
 msgid "Modified %s"
 msgstr "%sを変更しました"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+
 msgid "Modified by"
 msgstr "変更者"
 
@@ -6602,10 +6818,6 @@ msgstr "変更者"
 msgid "Modified by: %s"
 msgstr "変更者: %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "変更された列: %s"
-
 msgid "Monday"
 msgstr "月曜日"
 
@@ -6666,9 +6878,6 @@ msgstr "チャートまたはダッシュボードのいずれかを選択して
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr "[Label] として ’count’ を持つには、[Group By] 列が必要です。"
 
-msgid "Must have at least one numeric column specified"
-msgstr "少なくとも 1 つの数値列を指定する必要があります。"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr "SSH トンネルの資格情報を提供する必要があります。"
 
@@ -6693,9 +6902,6 @@ msgstr "グループ化されていません"
 msgid "NOV"
 msgstr "11月"
 
-msgid "NOW"
-msgstr "今"
-
 msgid "NUMERIC"
 msgstr "数値"
 
@@ -6721,9 +6927,6 @@ msgstr "id列の名前"
 msgid "Name of the source nodes"
 msgstr "ソースノードの名前"
 
-msgid "Name of the table that exists in the source database"
-msgstr "ソースデータベースに存在するテーブルの名前"
-
 msgid "Name of the target nodes"
 msgstr "対象ノード名"
 
@@ -6739,19 +6942,23 @@ msgstr "助けが必要?データベースに接続する方法を学ぶ"
 msgid "Need help? Learn more about"
 msgstr "助けが必要?詳しくはこちら"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "ネットワークエラー"
+
 msgid "Network error"
 msgstr "ネットワークエラー"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "データ ソースの作成中にエラーが発生しました"
+
 msgid "Network error."
 msgstr "ネットワークエラー"
 
 msgid "New chart"
 msgstr "新しいチャート"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "新しい列が追加されました: %s"
-
 msgid "New dataset"
 msgstr "新しいデータセット"
 
@@ -6799,6 +7006,10 @@ msgstr "まだルールはありません"
 msgid "No Tags created"
 msgstr "タグは作成されていません"
 
+#, fuzzy
+msgid "No actions"
+msgstr "アクションを元に戻す"
+
 msgid "No annotation layers"
 msgstr "注釈レイヤーなし"
 
@@ -6817,9 +7028,6 @@ msgstr "使用可能なフィルターはありません。"
 msgid "No charts"
 msgstr "チャートなし"
 
-msgid "No charts yet"
-msgstr "まだチャートはありません"
-
 msgid "No columns found"
 msgstr "列が見つかりません"
 
@@ -6836,9 +7044,6 @@ msgstr "互換性のあるデータセットが見つかりません"
 msgid "No compatible schema found"
 msgstr "互換性のあるスキーマが見つかりません"
 
-msgid "No dashboards yet"
-msgstr "ダッシュボードはまだありません"
-
 msgid "No data"
 msgstr "データなし"
 
@@ -6848,6 +7053,10 @@ msgstr "フィルタリング後にデータがないか、最新の時間レコ
 msgid "No data in file"
 msgstr "ファイルにデータがありません。"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "利用可能なデータベースがありません"
+
 msgid "No databases match your search"
 msgstr "検索に一致するデータベースはありません"
 
@@ -6878,12 +7087,6 @@ msgstr "現在追加されているグローバル フィルターはありま
 msgid "No matching records found"
 msgstr "該当する記録が見つかりません"
 
-msgid "No of Bins"
-msgstr "ビンの数"
-
-msgid "No recents yet"
-msgstr "最近の情報はまだありません"
-
 msgid "No records found"
 msgstr "レコードが見つかりません。"
 
@@ -6905,6 +7108,10 @@ msgid ""
 "contains data for the selected time range."
 msgstr "このクエリでは結果が返されませんでした。結果が返されることを期待していた場合は、フィルターが適切に構成されていること、およびデータソースに選択した時間範囲のデータが含まれていることを確認してください。"
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "まだルールはありません"
+
 msgid "No rows were returned for this dataset"
 msgstr "このデータセットに対して行が返されませんでした"
 
@@ -6917,9 +7124,6 @@ msgstr "保存された式が見つかりません"
 msgid "No saved metrics found"
 msgstr "保存されたメトリクスが見つかりません"
 
-msgid "No saved queries yet"
-msgstr "保存されたクエリはまだありません"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr "保存された結果が見つかりません。クエリを再実行する必要があります"
 
@@ -6935,6 +7139,10 @@ msgstr "テンポラル列が見つかりません"
 msgid "No time columns"
 msgstr "時間列はありません"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "まだルールはありません"
+
 msgid "No validator found (configured for the engine)"
 msgstr "バリデータが見つかりません。 (エンジン用に構成されています。)"
 
@@ -7012,6 +7220,10 @@ msgstr "トリガーされません"
 msgid "Not up to date"
 msgstr "最新ではありません"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "何もトリガーされませんでした"
+
 msgid "Nothing triggered"
 msgstr "何もトリガーされませんでした"
 
@@ -7117,9 +7329,6 @@ msgstr "10月"
 msgid "Offline"
 msgstr "オフライン"
 
-msgid "Offset"
-msgstr "オフセット"
-
 msgid "On Grace"
 msgstr "オン・グレース"
 
@@ -7146,6 +7355,10 @@ msgstr "列としてピボットする 1 つまたは複数のコントロール
 msgid "One or many metrics to display"
 msgstr "表示する 1 つまたは複数のメトリック"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "1つ以上の注釈レイヤーの読み込みに失敗しました。"
+
 msgid "One or more columns already exist"
 msgstr "1 つ以上の列がすでに存在します。"
 
@@ -7173,12 +7386,6 @@ msgstr "クエリで指定された1つ以上のパラメータの形式が正
 msgid "One or more parameters specified in the query are missing."
 msgstr "クエリで指定された1つ以上のパラメーターが見つかりません。"
 
-msgid "One ore more annotation layers failed loading."
-msgstr "1つ以上の注釈レイヤーの読み込みに失敗しました。"
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "このデータベースに対してはSELECTステートメントのみが許可されます。"
-
 msgid "Only Total"
 msgstr "合計のみ"
 
@@ -7191,9 +7398,6 @@ msgstr "「ラベル タイプ」がパーセンテージに設定されてい
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr "「ラベル タイプ」が値を表示するように設定されている場合にのみ適用されます。"
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "選択したパネルのみがこのフィルターの影響を受けます"
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7269,15 +7473,19 @@ msgstr "オプション"
 msgid "Or choose from a list of other databases we support:"
 msgstr "または、サポートされている他のデータベースのリストから選択してください:"
 
-msgid "Order by entity id"
-msgstr "エンティティ ID による順序"
-
 msgid "Order results by selected columns"
 msgstr "選択した列ごとに結果を並べ替えます"
 
 msgid "Ordering"
 msgstr "注文"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr "オリエンテーション"
 
@@ -7395,6 +7603,10 @@ msgid ""
 " or username."
 msgstr "所有者は、ダッシュボードを変更できるユーザーのリストです。名前またはユーザー名で検索できます。"
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "イメージのダウンロードに失敗しました。更新して再試行してください。"
+
 msgid "Page length"
 msgstr "ページの長さ"
 
@@ -7452,6 +7664,14 @@ msgstr "高さと親の高さの比率がこの値を下回るパーティショ
 msgid "Password"
 msgstr "パスワード"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "タイプが必要です。"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "ダッシュボードは存在しません"
+
 msgid "Paste Private Key here"
 msgstr "秘密キーをここに貼り付けます"
 
@@ -7508,6 +7728,14 @@ msgstr "ピリオド"
 msgid "Periods must be a whole number"
 msgstr "ピリオドは整数でなければなりません。"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "バージョン"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr "このチャートを認証した個人または団体。"
 
@@ -7523,9 +7751,6 @@ msgstr "物理"
 msgid "Physical (table or view)"
 msgstr "物理 (テーブルまたはビュー)"
 
-msgid "Physical dataset"
-msgstr "物理データセット"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr "カテゴリカルカラーを定義するディメンションを選択してください"
 
@@ -7547,15 +7772,9 @@ msgstr "deck.gl チャートのセットを選択して重ね合わせる"
 msgid "Pick a title for you annotation."
 msgstr "注釈のタイトルを選択してください。"
 
-msgid "Pick at least one field for [Series]"
-msgstr "[シリーズ] のフィールドを少なくとも1つ選択してください。"
-
 msgid "Pick at least one metric"
 msgstr "少なくとも1つの指標を選択してください"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "[ソース/ターゲット]として正確に2つの列を選択してください。"
-
 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."
@@ -7567,8 +7786,8 @@ msgstr "お気に入りのマークアップ言語を選択してください"
 msgid "Pie Chart"
 msgstr "円グラフ"
 
-msgid "Pie Chart (legacy)"
-msgstr "円グラフ (レガシー)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "円の形"
@@ -7579,6 +7798,14 @@ msgstr "区分的に"
 msgid "Pin"
 msgstr "Pin"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "左上"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "右上"
+
 msgid "Pivot Table"
 msgstr "ピボットテーブル"
 
@@ -7631,6 +7858,9 @@ msgstr ""
 "テンプレート パラメータに構文エラーがないか確認し、それらが SQL "
 "クエリとパラメータ設定全体で一致していることを確認してください。次に、クエリを再度実行してみます。"
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr "少なくとも1つのグループを選択してください。"
 
@@ -7640,12 +7870,25 @@ msgstr "確認してください"
 msgid "Please confirm the overwrite values."
 msgstr "上書き値を確認してください。"
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "確認してください"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "テストするには SQLAlchemy URI を入力してください"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr "有効なテキストを入力してください。スペースのみの入力はできません。"
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "パスワードを再入力してください。"
 
@@ -7657,9 +7900,6 @@ msgid "Please reach out to the Chart Owner for assistance."
 msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] "サポートが必要な場合は、チャートの所有者にお問い合わせください。"
 
-msgid "Please save the query to enable sharing"
-msgstr "共有を有効にするにはクエリを保存して下さい"
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr "まずチャートを保存してから、新しい電子メール レポートを作成してみてください。"
 
@@ -7732,9 +7972,6 @@ msgstr "ポリライン"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "このコントロールを有効にするには、「デフォルト値」を入力してください"
 
-msgid "Population age data"
-msgstr "人口年齢データ"
-
 msgid "Port"
 msgstr "ポート"
 
@@ -7772,14 +8009,6 @@ msgstr "利用可能な値を事前にフィルタリングする"
 msgid "Pre-filter is required"
 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 テンプレート構文をサポートします。 "
-"「フィルター選択を有効にする」がオンの場合にのみ適用されます。"
-
 msgid "Predictive"
 msgstr "予測的"
 
@@ -7799,10 +8028,6 @@ msgstr "プレビュー"
 msgid "Preview uploaded file"
 msgstr "Excelファイルをアップロードする"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "プレビュー: `%s`"
-
 msgid "Previous"
 msgstr "前"
 
@@ -7848,18 +8073,13 @@ msgstr "進捗"
 msgid "Progressive"
 msgstr "プログレッシブ"
 
-msgid "Propagate"
-msgstr "伝播する"
+#, fuzzy
+msgid "Project Id"
+msgstr "廃止された"
 
 msgid "Proportional"
 msgstr "比例"
 
-msgid "Public and privately shared sheets"
-msgstr "パブリックおよびプライベート共有シート"
-
-msgid "Publicly shared sheets only"
-msgstr "公開共有シートのみ"
-
 msgid "Published"
 msgstr "公開"
 
@@ -7879,9 +8099,6 @@ msgstr "値は 0 より大きくする必要があります"
 msgid "Put the labels outside of the pie?"
 msgstr "ラベルを円の外側に置きますか?"
 
-msgid "Put the labels outside the pie?"
-msgstr "ラベルを円の外側に置きますか?"
-
 msgid "Put your code here"
 msgstr "ここにコードを入力してください"
 
@@ -7984,10 +8201,6 @@ msgstr "半径(メートル)"
 msgid "Radius in miles"
 msgstr "半径(マイル)"
 
-#, python-format
-msgid "Ran %s"
-msgstr "ラン %s"
-
 msgid "Range"
 msgstr "範囲"
 
@@ -8015,18 +8228,9 @@ msgstr "比率"
 msgid "Raw records"
 msgstr "生のレコード"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr "最近作成したグラフ、ダッシュボード、保存したクエリがここに表示されます"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr "最近編集したグラフ、ダッシュボード、保存したクエリがここに表示されます"
-
 msgid "Recently modified"
 msgstr "更新"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr "最近表示したグラフ、ダッシュボード、保存したクエリがここに表示されます"
-
 msgid "Recents"
 msgstr "最近"
 
@@ -8045,9 +8249,6 @@ msgstr "定期的(毎回)"
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr "テーブルリストからテーブルをクリックすると、このエンドポイントにリダイレクトされます。"
-
 msgid "Redo the action"
 msgstr "アクションをやり直す"
 
@@ -8087,6 +8288,10 @@ msgstr "更新間隔"
 msgid "Refresh interval saved"
 msgstr "更新間隔が保存されました"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "テーブルスキーマを参照"
+
 msgid "Refresh the default values"
 msgstr "デフォルト値を更新する"
 
@@ -8143,8 +8348,9 @@ msgid "Remove table preview"
 msgstr "テーブルのプレビューを削除"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "削除された列: %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
 
 msgid "Rename tab"
 msgstr "タブの名前を変更"
@@ -8155,11 +8361,10 @@ msgstr "HTMLのレンダリング"
 msgid "Render columns in HTML format"
 msgstr "列をHTML形式でレンダリングする。"
 
-msgid "Render data in HTML format if applicable."
-msgstr "該当する場合、データをHTML形式でレンダリングします。"
-
-msgid "Rendering"
-msgstr "レンダリング"
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
+msgstr ""
 
 msgid "Replace"
 msgstr "交換"
@@ -8257,6 +8462,9 @@ msgstr "反発力"
 msgid "Repulsion strength between nodes"
 msgstr "節点間の反発力"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "リクエストが正しくありません: %(error)s"
@@ -8289,6 +8497,10 @@ msgstr "リサンプル操作には DatetimeIndex が必要です。"
 msgid "Reset"
 msgstr "リセット"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "列を選択"
+
 msgid "Reset state"
 msgstr "リセット状態"
 
@@ -8314,6 +8526,10 @@ msgstr "結果バックエンドが構成されていません。"
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr "非同期クエリに必要な結果バックエンドが構成されていません。"
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "結果の再取得"
+
 msgid "Return to specific datetime."
 msgstr "特定の日付時刻に戻ります。"
 
@@ -8353,6 +8569,28 @@ msgstr "ディメンション値を右クリックして、その値で詳細に
 msgid "Role"
 msgstr "役割"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "アラート名"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "値が要求されます"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "名前が必要です"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "データセットが正常に変更されました。"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "役割"
 
@@ -8430,9 +8668,6 @@ msgstr "ページごとの行数、0 はページネーションなしを意味
 msgid "Rows subtotal position"
 msgstr "行の小計位置"
 
-msgid "Rows to Read"
-msgstr "読み取る行数"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "読み取る行数"
@@ -8499,14 +8734,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL がコピーされました!"
 
-msgid "SQL Expression"
-msgstr "SQL 式"
-
 msgid "SQL Lab"
 msgstr "SQL Lab"
 
-msgid "SQL Lab View"
-msgstr "SQL Lab ビュー"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "保存したクエリ"
 
 #, python-format
 msgid ""
@@ -8595,20 +8828,10 @@ msgstr "データセットのサンプルを取得できませんでした。"
 msgid "Samples for datasource could not be retrieved."
 msgstr "データソースのサンプルを取得できませんでした。"
 
-msgid "Sankey"
-msgstr "サンキー"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "チャートを保存"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "サンキーダイアグラム"
-
-msgid "Sankey Diagram with Loops"
-msgstr "ループ付きサンキーダイアグラム"
-
 msgid "Satellite"
 msgstr "衛星"
 
@@ -8669,9 +8892,6 @@ msgstr "データセットの保存または上書き"
 msgid "Save query"
 msgstr "クエリを保存"
 
-msgid "Save the query to enable this feature"
-msgstr "この機能を有効にするためクエリを保存する"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr "探索を続けるには、このクエリを仮想データセットとして保存します"
 
@@ -8699,6 +8919,10 @@ msgstr "保存されたクエリが見つかりません。"
 msgid "Saved query parameters are invalid."
 msgstr "保存したクエリ パラメーターが無効です。"
 
+#, fuzzy
+msgid "Saving..."
+msgstr "読み込み中..."
+
 msgid "Scale and Move"
 msgstr "拡大縮小と移動"
 
@@ -8751,9 +8975,6 @@ msgstr "スキーマ"
 msgid "Schema cache timeout"
 msgstr "スキーマキャッシュタイムアウト"
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr "スキーマ、Postgres、Redshift、DB2 などの一部のデータベースでのみ使用されます。"
-
 msgid "Schemas allowed for File upload"
 msgstr "ファイルのアップロードに許可されるスキーマ"
 
@@ -8836,9 +9057,6 @@ msgstr "秒 %s"
 msgid "Seconds value"
 msgstr "秒"
 
-msgid "Secure Extra"
-msgstr "安全性の強化"
-
 msgid "Secure extra"
 msgstr "追加の安全性"
 
@@ -8930,6 +9148,10 @@ msgstr "データベースがこれをサポートしている場合はスキー
 msgid "Select a sheet name from the uploaded file"
 msgstr "ファイルをアップロードするデータベースを選択してください。"
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "データベースを削除"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -8947,8 +9169,8 @@ msgstr "すべてのデータを選択"
 msgid "Select all items"
 msgstr "すべての項目を選択"
 
-msgid "Select any columns for metadata inspection"
-msgstr "メタデータ検査用の列を選択します"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 #, fuzzy
 msgid "Select catalog or type to search catalogs"
@@ -8974,6 +9196,9 @@ msgstr "配色を選択してください"
 msgid "Select column"
 msgstr "列を選択"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr "日付として解析する列の名前をドロップダウン・リストから選択する。"
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9067,6 +9292,14 @@ msgstr "データセット名を選択または入力します"
 msgid "Select owners"
 msgstr "所有者の選択"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "タグの選択"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "所有者の選択"
+
 msgid "Select saved metrics"
 msgstr "保存されたメトリクスを選択する"
 
@@ -9079,9 +9312,19 @@ msgstr "スキーマを選択するか、スキーマを検索するために入
 msgid "Select scheme"
 msgstr "スキームの選択"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "件名を選択"
 
+#, fuzzy
+msgid "Select tab"
+msgstr "すべての選択を解除"
+
 msgid "Select table or type to search tables"
 msgstr "テーブルを選択するか、テーブルを検索するタイプを選択してください"
 
@@ -9111,12 +9354,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr "geojson列を選択します"
 
-msgid "Select the number of bins for the histogram"
-msgstr "ヒストグラムのビンの数を選択します"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "ヒストグラムを描画する数値列を選択します"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9140,9 +9377,6 @@ msgstr "PNGとして送信"
 msgid "Send as text"
 msgstr "テキストとして送信"
 
-msgid "Send range filter events to other charts"
-msgstr "範囲フィルター イベントを他のチャートに送信する"
-
 msgid "September"
 msgstr "9月"
 
@@ -9155,12 +9389,6 @@ msgstr "シリーズ"
 msgid "Series Height"
 msgstr "シリーズ高さ"
 
-msgid "Series Limit Sort By"
-msgstr "シリーズ制限の並べ替え基準"
-
-msgid "Series Limit Sort Descending"
-msgstr "シリーズ制限降順ソート"
-
 msgid "Series Order"
 msgstr "シリーズの順序"
 
@@ -9188,6 +9416,10 @@ msgstr "サーバーのページネーション"
 msgid "Service Account"
 msgstr "サービスアカウント"
 
+#, fuzzy
+msgid "Service version"
+msgstr "サービスアカウント"
+
 msgid "Set auto-refresh interval"
 msgstr "自動更新間隔を設定"
 
@@ -9217,6 +9449,10 @@ msgstr "設定"
 msgid "Settings for time series"
 msgstr "時系列の設定"
 
+#, fuzzy
+msgid "Shape"
+msgstr "円の形"
+
 msgid "Share"
 msgstr "共有"
 
@@ -9278,18 +9514,9 @@ msgstr "CREATE VIEW文を表示"
 msgid "Show Cell bars"
 msgstr "セルバーを表示"
 
-msgid "Show Chart"
-msgstr "チャートを表示"
-
-msgid "Show Column"
-msgstr "列を表示"
-
 msgid "Show Dashboard"
 msgstr "ダッシュボードを表示"
 
-msgid "Show Database"
-msgstr "データベースを表示"
-
 msgid "Show Labels"
 msgstr "ラベルを表示"
 
@@ -9299,18 +9526,12 @@ msgstr "ログを表示"
 msgid "Show Markers"
 msgstr "マーカーを表示"
 
-msgid "Show Metric"
-msgstr "指標を表示"
-
 msgid "Show Metric Names"
 msgstr "メトリック名の表示"
 
 msgid "Show Range Filter"
 msgstr "範囲フィルターを表示"
 
-msgid "Show Table"
-msgstr "テーブルを表示"
-
 msgid "Show Timestamp"
 msgstr "タイムスタンプを表示"
 
@@ -9345,9 +9566,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "すべての列を表示"
 
-msgid "Show all..."
-msgstr "すべて表示..."
-
 msgid "Show axis line ticks"
 msgstr "軸線目盛りを表示"
 
@@ -9369,6 +9587,10 @@ msgstr "データポイントをライン上の円マーカーとして表示"
 msgid "Show empty columns"
 msgstr "空の列を表示"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "指標を表示"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9389,9 +9611,6 @@ msgstr "凡例を表示"
 msgid "Show less columns"
 msgstr "表示する列を減らします"
 
-msgid "Show less..."
-msgstr "表示を減らす..."
-
 msgid "Show minor ticks on axes."
 msgstr "軸に小さな目盛りを表示します。"
 
@@ -9429,6 +9648,10 @@ msgstr "マーカーを表示"
 msgid "Show the value on top of the bar"
 msgstr "値をバーの上に表示"
 
+#, fuzzy
+msgid "Show total"
+msgstr "合計を表示"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9464,8 +9687,8 @@ msgid ""
 "higher the fill, the closer the metric is to the target."
 msgstr "指定されたターゲットに対する単一のメトリクスの進捗状況を示します。フィルが高いほど、メトリクスはターゲットに近づきます。"
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "Showing %s of %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -9498,18 +9721,16 @@ msgstr "単一値"
 msgid "Single value type"
 msgstr "単一値型"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "グリッド サイズをピクセル単位で定義します"
+
 msgid "Size of edge symbols"
 msgstr "エッジシンボルのサイズ"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "マーカーのサイズ。予報観測にも適用されます。"
 
-msgid "Sizes of vehicles"
-msgstr "車両のサイズ"
-
-msgid "Skip Rows"
-msgstr "行をスキップ"
-
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
 msgstr "空白行を数値ではない値として解釈せずにスキップする"
 
@@ -9579,9 +9800,6 @@ msgstr "申し訳ありませんが、問題が発生しました。もう一度
 msgid "Sorry, something went wrong. Try again later."
 msgstr "申し訳ありませんが、問題が発生しました。あとでもう一度試してみてください"
 
-msgid "Sorry, there appears to be no data"
-msgstr "申し訳ありませんが、データがないようです"
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr "申し訳ありませんが、%s の保存中にエラーが発生しました: %s"
@@ -9599,9 +9817,6 @@ msgstr "申し訳ありませんが、お使いのブラウザはコピーをサ
 msgid "Sort"
 msgstr "種類"
 
-msgid "Sort Bars"
-msgstr "ソートバー"
-
 msgid "Sort Descending"
 msgstr "降順で並べ替え"
 
@@ -9623,9 +9838,6 @@ msgstr "Y軸の並べ替え"
 msgid "Sort ascending"
 msgstr "昇順に並べ替え"
 
-msgid "Sort bars by x labels."
-msgstr "バーを x ラベルで並べ替えます。"
-
 msgid "Sort by"
 msgstr "並び替え"
 
@@ -9651,6 +9863,10 @@ msgstr "ソートフィルター値"
 msgid "Sort metric"
 msgstr "ソートメトリック"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "クエリのエクスポート"
+
 msgid "Sort rows by"
 msgstr "行の並べ替え基準"
 
@@ -9663,9 +9879,6 @@ msgstr "ソートタイプ"
 msgid "Source"
 msgstr "ソース"
 
-msgid "Source / Target"
-msgstr "ソース・ターゲット"
-
 msgid "Source SQL"
 msgstr "ソースSQL"
 
@@ -9707,9 +9920,6 @@ msgstr "平方マイル"
 msgid "Stack"
 msgstr "スタック"
 
-msgid "Stack Trace:"
-msgstr "スタックトレース:"
-
 msgid "Stack series"
 msgstr "スタックシリーズ"
 
@@ -9725,9 +9935,6 @@ msgstr "積み上げバー"
 msgid "Stacked Style"
 msgstr "スタックスタイル"
 
-msgid "Stacked style"
-msgstr "スタックスタイル"
-
 msgid "Standard time series"
 msgstr "標準時系列"
 
@@ -9824,9 +10031,6 @@ msgstr "街路"
 msgid "Strength to pull the graph toward center"
 msgstr "グラフを中心に引っ張る強さ"
 
-msgid "Stretched style"
-msgstr "ストレッチスタイル"
-
 msgid "Stroke Color"
 msgstr "ストロークの色"
 
@@ -9848,15 +10052,20 @@ msgstr "進行状況バーの端を丸いキャップでスタイル設定しま
 msgid "Subdomain"
 msgstr "サブドメイン"
 
-msgid "Subheader"
-msgstr "サブヘッダー"
-
 msgid "Subheader Font Size"
 msgstr "サブヘッダーのフォントサイズ"
 
 msgid "Submit"
 msgstr "提出する"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "タブタイトル"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "バブルサイズ"
+
 msgid "Subtotal"
 msgstr "小計"
 
@@ -9909,9 +10118,6 @@ msgstr "Superset組み込み SDK ドキュメント。"
 msgid "Superset chart"
 msgstr "Supersetチャート"
 
-msgid "Superset dashboard"
-msgstr "Supersetダッシュボード"
-
 msgid "Superset encountered an error while running a command."
 msgstr "コマンドの実行中にSupersetでエラーが発生しました。"
 
@@ -9921,9 +10127,6 @@ msgstr "Supersetで予期しないエラーが発生しました。"
 msgid "Supported databases"
 msgstr "サポートされているデータベース"
 
-msgid "Survey Responses"
-msgstr "アンケートの回答"
-
 msgid "Swap dataset"
 msgstr "データセットを交換する"
 
@@ -9938,6 +10141,12 @@ msgstr ""
 "データを視覚化するためのスイスアーミーナイフ。ステップ チャート、折れ線グラフ、散布図、棒グラフから選択します。この Viz "
 "タイプには多くのカスタマイズ オプションもあります。"
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr "シンボル"
 
@@ -9947,9 +10156,20 @@ msgstr "稜線の両端の記号"
 msgid "Symbol size"
 msgstr "シンボルサイズ"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "ソースから列を同期する"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "構文"
 
@@ -9960,9 +10180,6 @@ msgstr "構文エラー: %(qualifier)s 入力 \"%(input)s\" は \"%(expected)s 
 msgid "TABLES"
 msgstr "テーブル"
 
-msgid "TEMPORAL X-AXIS"
-msgstr "時間X軸"
-
 msgid "TEMPORAL_RANGE"
 msgstr "TEMPORAL_RANGE"
 
@@ -9998,6 +10215,10 @@ msgid ""
 "connection, schema, and table name"
 msgstr "テーブル [%(table_name)s] が見つかりませんでした。データベース接続、スキーマ、テーブル名を再確認してください。"
 
+#, fuzzy
+msgid "Table actions"
+msgstr "テーブルの列"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10009,6 +10230,10 @@ msgstr "テーブルキャッシュタイムアウト"
 msgid "Table columns"
 msgstr "テーブルの列"
 
+#, fuzzy
+msgid "Table name"
+msgstr "テーブル名"
+
 msgid "Table name undefined"
 msgstr "テーブル名が未定義です。"
 
@@ -10070,11 +10295,6 @@ msgstr "タグ付きオブジェクトを削除できませんでした。"
 msgid "Tags"
 msgstr "タグ"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr "データポイントを取得し、それらを「ビン」にグループ化して、情報が最も密集している領域がどこにあるかを確認します"
-
 msgid "Target"
 msgstr "目標"
 
@@ -10099,6 +10319,10 @@ msgid ""
 "coming from the controls."
 msgstr "テンプレート化されたリンク。{{ metric }} またはコントロールからの他の値を含めることができます。"
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "一時的なものである"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10147,9 +10371,6 @@ msgstr ""
 "GeoJsonLayer は、GeoJSON 形式のデータを取り込み、それをインタラクティブなポリゴン、ライン、ポイント "
 "(円、アイコン、および/またはテキスト) としてレンダリングします。"
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr "SQLが無効なので解析できません。"
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10181,6 +10402,10 @@ msgstr "注釈が保存されました"
 msgid "The annotation has been updated"
 msgstr "注釈が更新されました"
 
+#, fuzzy
+msgid "The background color of the charts."
+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."
@@ -10213,6 +10438,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr "RGB でのポイントとクラスターの色"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "等値線の色"
+
 msgid "The color of the isoband"
 msgstr "等帯域の色"
 
@@ -10229,6 +10458,15 @@ msgstr ""
 "配色は、関連するダッシュボードによって決まります。\n"
 " ダッシュボードのプロパティで配色を編集します。"
 
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+"この配色はカスタム ラベルの色によって上書きされています。\n"
+" 詳細設定で JSON メタデータを確認してください。"
+
 msgid "The column header label"
 msgstr "列ヘッダーのラベル"
 
@@ -10241,6 +10479,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr "データベース内の列が削除されたか、名前が変更されました。"
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10252,20 +10496,9 @@ msgstr "ダッシュボードが保存されました"
 msgid "The data source seems to have been deleted"
 msgstr "データソースが削除されたようです。"
 
-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 "データベースによって推論されたデータ型。場合によっては、式で定義された列に手動で型を入力することが必要になる場合があります。ほとんどの場合、ユーザーはこれを変更する必要はありません。"
-
-#, 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 ラボ"
-" タブを開いています。続行してもよろしいですか?データベースを削除すると、それらのオブジェクトが壊れます。"
+#, fuzzy
+msgid "The database"
+msgstr "データベースを削除"
 
 msgid "The database columns that contains lines information"
 msgstr "行情報を含むデータベース列"
@@ -10297,14 +10530,9 @@ msgstr "データベースが削除されました。"
 msgid "The database was not found."
 msgstr "データベースが見つかりませんでした。"
 
-#, 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 "
-"チャートにリンクされています。続行してもよろしいですか?データセットを削除すると、それらのオブジェクトが壊れます。"
+#, fuzzy
+msgid "The dataset"
+msgstr "新しいデータセット"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "このチャートに関連付けられたデータセットはもう存在しません。"
@@ -10366,6 +10594,15 @@ msgid ""
 "call."
 msgstr "engine_params オブジェクトは sqlalchemy.create_engine 呼び出しに解凍されます。"
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10383,6 +10620,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr "ポイントをグループに集約するときに使用する関数"
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10415,20 +10655,13 @@ msgstr "指定されたホスト名を解決できません。"
 msgid "The id of the active chart"
 msgstr "アクティブなチャートのID"
 
-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 "このテーブルに関連付けられているグラフのリスト。このデータソースを変更すると、これらの関連するグラフの動作が変更される場合があります。また、グラフはデータソースを指す必要があるため、データソースからグラフを削除するとこのフォームの保存に失敗することにも注意してください。グラフのデータソースを変更したい場合は、「探索ビュー」からグラフを上書きします。"
+#, fuzzy
+msgid "The layer attribution"
+msgstr "時間関連のフォーム属性"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr "Isoband のしきい値範囲の下限値"
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr "返されるイベントの最大数 (行数に相当)"
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10460,9 +10693,22 @@ msgid ""
 "periods. This will hide the \"ramp up\" taking place over the first 7 "
 "periods"
 msgstr ""
-"値を表示するために必要なローリング期間の最小数。たとえば、7 日間の累積合計を計算する場合、表示されるすべてのデータ ポイントが 7 "
-"期間の合計になるように、「最小期間」を 7 に設定することができます。これにより、最初の 7 "
-"期間にわたって行われる「ランプアップ」が非表示になります。"
+"値を表示するために必要なローリング期間の最小数。たとえば、7 日間の累積合計を計算する場合、表示されるすべてのデータ ポイントが 7 "
+"期間の合計になるように、「最小期間」を 7 に設定することができます。これにより、最初の 7 "
+"期間にわたって行われる「ランプアップ」が非表示になります。"
+
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "メトリクスの最大値。オプションの構成です"
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "id列の名前"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
 
 msgid "The name of the rule must be unique"
 msgstr "ルールの名前は一意である必要があります"
@@ -10682,6 +10928,10 @@ msgid ""
 "function)."
 msgstr "このクエリの結果は、数値解釈可能な値である必要があります。 1、1.0、または「1」(Python の float() 関数と互換性があります)。"
 
+#, fuzzy
+msgid "The result size exceeds the allowed limit."
+msgstr "ファイルサイズが最大許容サイズを超えています。"
+
 msgid "The results backend no longer has the data from the query."
 msgstr "結果バックエンドにはクエリからのデータがなくなりました。"
 
@@ -10719,11 +10969,16 @@ msgstr "データベース内のスキーマが削除されたか、名前が変
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "レポートが作成されました"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
-msgstr ""
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "チャート上に系列値を表示"
 
 msgid "The size of each cell in meters"
 msgstr "各セルのサイズ (メートル単位)"
@@ -10731,6 +10986,9 @@ msgstr "各セルのサイズ (メートル単位)"
 msgid "The size of the square cell, in pixels"
 msgstr "正方形のセルのサイズ (ピクセル単位)"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr "送信されたペイロードは検証に失敗しました。"
 
@@ -10752,11 +11010,6 @@ msgid ""
 "to run this query."
 msgstr "テーブル \"%(table_name)s\" は存在しません。このクエリを実行するには、有効なテーブルを使用する必要があります。"
 
-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 "テーブルが作成されました。この 2 段階の構成プロセスの一環として、新しいテーブルの横にある編集ボタンをクリックして構成する必要があります。"
-
 msgid "The table was deleted or renamed in the database."
 msgstr "データベース内のテーブルが削除されたか、名前が変更されました。"
 
@@ -10810,6 +11063,10 @@ msgstr "各ブロックの時間単位。 Domain_granularity よりも小さい
 msgid "The time unit used for the grouping of blocks"
 msgstr "ブロックのグループ化に使用される時間単位"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "チャートの名前を追加"
+
 msgid "The type of visualization to display"
 msgstr "表示する可視化のタイプ"
 
@@ -10832,12 +11089,27 @@ msgstr "ユーザー名「%(ユーザー名)s」は存在しません。"
 msgid "The username provided when connecting to a database is not valid."
 msgstr "データベース接続時に指定されたユーザー名が無効です。"
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "凡例の位置を選択してください"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "値をバーの上に表示"
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "目盛りを X 軸に配置する方法"
 
 msgid "The width of the Isoline in pixels"
 msgstr "等値線の幅 (ピクセル単位)"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "線の幅"
+
 msgid "The width of the lines"
 msgstr "線の幅"
 
@@ -10854,9 +11126,6 @@ msgstr "このダッシュボードにはグラフが追加されていません
 msgid "There are no components added to this tab"
 msgstr "このタブにはコンポーネントが追加されていません"
 
-msgid "There are no databases available"
-msgstr "利用可能なデータベースがありません"
-
 msgid "There are no filters in this dashboard."
 msgstr "このダッシュボードにはフィルターはありません。"
 
@@ -10868,6 +11137,10 @@ msgid ""
 " or a typo."
 msgstr "SQL クエリに構文エラーがあります。もしかしたら誤字・脱字がないか確認して下さい。"
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "表示する可視化のタイプ"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -10892,6 +11165,10 @@ msgstr "お気に入りステータスの取得中にエラーが発生しまし
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "お気に入りステータスの取得中にエラーが発生しました: %s"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "スキーマのロード中にエラーが発生しました"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "テーブルのロード中にエラーが発生しました"
@@ -10908,6 +11185,10 @@ msgstr "スキーマのロード中にエラーが発生しました"
 msgid "There was an error loading the tables"
 msgstr "テーブルのロード中にエラーが発生しました"
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr "申し訳ありませんが、このダッシュボードの保存中にエラーが発生しました: %s"
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr "お気に入りステータスの保存中にエラーが発生しました: %s"
@@ -10915,6 +11196,10 @@ msgstr "お気に入りステータスの保存中にエラーが発生しまし
 msgid "There was an error with your request"
 msgstr "リクエストにエラーがありました"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "削除中に問題が発生しました: %s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "%s の削除中に問題が発生しました: %s"
@@ -10998,23 +11283,9 @@ msgstr "選択したクエリのプレビュー中に問題が発生しました
 msgid "There was an issue previewing the selected query. %s"
 msgstr "選択したクエリのプレビュー中に問題が発生しました。 %s"
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr "Sankey にループがあります。ツリーを用意してください。ここに問題のあるリンクがあります: {}"
-
 msgid "These are the datasets this filter will be applied to."
 msgstr "これらは、このフィルターが適用されるデータセットです。"
 
-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 ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11031,12 +11302,20 @@ msgstr "この操作により %s が完全に削除されます。"
 msgid "This action will permanently delete the layer."
 msgstr "このアクションにより、レイヤーが完全に削除されます。"
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "このアクションにより、レイヤーが完全に削除されます。"
+
 msgid "This action will permanently delete the saved query."
 msgstr "この操作を実行すると、保存したクエリは完全に削除されます。"
 
 msgid "This action will permanently delete the template."
 msgstr "このアクションにより、テンプレートが完全に削除されます。"
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "このアクションにより、レイヤーが完全に削除されます。"
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11061,13 +11340,6 @@ msgid ""
 "source. "
 msgstr "このグラフ タイプは、保存されていないクエリをグラフ ソースとして使用する場合にはサポートされません。"
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-"この配色はカスタム ラベルの色によって上書きされています。\n"
-" 詳細設定で JSON メタデータを確認してください。"
-
 msgid "This column might be incompatible with current dataset"
 msgstr "この列は現在のデータセットと互換性がない可能性があります"
 
@@ -11143,6 +11415,12 @@ msgstr "このダッシュボードはすぐに埋め込むことができます
 msgid "This dashboard was saved successfully."
 msgstr "このダッシュボードは正常に保存されました。"
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr "このデータベースは外部で管理されており、Supersetでは編集できません"
 
@@ -11160,6 +11438,9 @@ msgstr "このデータセットはグラフの作成には使用されません
 msgid "This defines the element to be plotted on the chart"
 msgstr "これは、チャート上にプロットされる要素を定義します。"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11170,11 +11451,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr "このフィールドは、メトリクスをグラフに添付するための一意の識別子として使用されます。 SQL クエリのエイリアスとしても使用されます。"
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr "このフィールドはSuperset ビューとして機能します。つまり、Supersetはこの文字列に対してサブクエリとしてクエリを実行します。"
-
 msgid "This filter might be incompatible with current dataset"
 msgstr "このフィルターは現在のデータセットと互換性がない可能性があります"
 
@@ -11209,14 +11485,6 @@ msgstr "このマークダウンコンポーネントにエラーがあります
 msgid "This may be triggered by:"
 msgstr "これは次のような原因で引き起こされる可能性があります:"
 
-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 ""
-"このメトリックは、系列または行の制限が存在する場合に、行の選択基準 (行の並べ替え方法) "
-"を定義するために使用されます。定義されていない場合は、(該当する場合) 最初のメトリックに戻ります。"
-
 msgid "This metric might be incompatible with current dataset"
 msgstr "このメトリクスは現在のデータセットと互換性がない可能性があります"
 
@@ -11259,6 +11527,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr "このテーブルにはすでにデータセットが関連付けられています。 1 つのテーブルに関連付けられるのは 1 つのデータセットのみです。\n"
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr "この値は左の目標値より大きくなければなりません"
 
@@ -11333,9 +11604,6 @@ msgstr "時間比率"
 msgid "Time Series"
 msgstr "時系列"
 
-msgid "Time Series - Bar Chart"
-msgstr "時系列 - 棒グラフ"
-
 msgid "Time Series - Line Chart"
 msgstr "時系列 - 折れ線グラフ"
 
@@ -11351,9 +11619,6 @@ msgstr "時系列 - 変化率"
 msgid "Time Series - Period Pivot"
 msgstr "時系列 - 期間ピボット"
 
-msgid "Time Series - Stacked"
-msgstr "時系列 - 積み上げ"
-
 msgid "Time Series Options"
 msgstr "時系列オプション"
 
@@ -11443,16 +11708,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr "時間文字列があいまいです。 [%(human_readable)s 前] または [%(human_readable)s 後] を指定してください。"
 
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "時系列棒グラフ (レガシー)"
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr "時系列棒グラフ (レガシー)"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr "折れ線グラフ (レガシー)"
-
 msgid "Time-series Percent Change"
 msgstr "時系列変化率"
 
@@ -11471,9 +11726,6 @@ msgstr "タイムスタンプ形式"
 msgid "Timezone"
 msgstr "タイムゾーン"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "このデータソースのタイムゾーン オフセット (時間単位)"
-
 msgid "Timezone selector"
 msgstr "タイムゾーンセレクター"
 
@@ -11492,6 +11744,11 @@ msgstr "タイトルは必須です"
 msgid "Title or Slug"
 msgstr "タイトルまたはスラッグ"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "メトリックでフィルタするには、[カスタム SQL] タブを使用します。"
 
@@ -11533,6 +11790,10 @@ msgstr "合計 (%(aggfunc)s)"
 msgid "Total (%(aggregatorName)s)"
 msgstr "合計 (%(aggregatorName)s)"
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "合計: %s"
+
 msgid "Total value"
 msgstr "総価値"
 
@@ -11637,9 +11898,6 @@ msgstr "ここに値を入力してください"
 msgid "Type is required"
 msgstr "タイプが必要です。"
 
-msgid "Type of Google Sheets allowed"
-msgstr "許可される Google スプレッドシートの種類"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "比較の種類、値の差またはパーセンテージ"
 
@@ -11715,9 +11973,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr "テーブル スキーマの状態をバックエンドに移行できません。スーパーセットは後で再試行します。この問題が解決しない場合は、管理者に問い合わせてください。"
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr "ダッシュボードの色を取得できません"
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "未定義"
 
@@ -11747,6 +12011,10 @@ msgstr "保存された式が見つかりません"
 msgid "Unexpected time range: %(error)s"
 msgstr "予期しない時間範囲: %(error)s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "元に戻す"
+
 msgid "Unknown"
 msgstr "不明"
 
@@ -11784,6 +12052,10 @@ msgstr "不明なタイプ"
 msgid "Unknown value"
 msgstr "不明な値"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "実行中"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr "関数 %(func)s の安全でない戻り値の型: %(value_type)s"
@@ -11847,9 +12119,6 @@ msgstr "列形式ファイルのアップロード"
 msgid "Upload Columnar file to database"
 msgstr "列形式ファイルをデータベースにアップロードする"
 
-msgid "Upload Credentials"
-msgstr "認証情報のアップロード"
-
 msgid "Upload Enabled"
 msgstr "アップロードが有効になりました。"
 
@@ -11872,6 +12141,10 @@ msgstr "ファイルをデータベースにアップロードする"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr "有効な拡張子のファイルをアップロードしてください。有効なもの: [%s]"
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "認証情報のアップロード"
+
 msgid "Upload file to database"
 msgstr "ファイルをデータベースにアップロードする"
 
@@ -11926,12 +12199,13 @@ msgstr ""
 "別の既存のグラフを注釈とオーバーレイのソースとして使用してください。\n"
 " グラフは次の視覚化タイプのいずれかである必要があります: [%s]"
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "現在のクエリを実行する"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr "メトリック値がタイムスタンプでない場合でも日付形式を使用する"
 
-msgid "Use legacy datasource editor"
-msgstr "従来のデータソース エディタを使用する"
-
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr "メトリクスを列または行の最上位グループとして使用する"
 
@@ -11941,11 +12215,6 @@ msgstr "単一の値のみを使用します。"
 msgid "Use the Advanced Analytics options below"
 msgstr "以下の高度な分析オプションを使用してください"
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr "サービス アカウントの作成時に自動的にダウンロードした JSON ファイルを使用します。"
-
 msgid "Use the edit button to change this field"
 msgstr "このフィールドを変更するには編集ボタンを使用してください。"
 
@@ -11985,9 +12254,23 @@ msgstr "ユーザーはフィルターを適用する前に値を選択する必
 msgid "User query"
 msgstr "ユーザークエリ"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "ユーザー名"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "名前が必要です"
+
+#, fuzzy
+msgid "Users"
+msgstr "シリーズ"
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr "セキュリティ上の理由から、ユーザーは検索パスを設定できません。"
 
@@ -12009,6 +12292,10 @@ msgid ""
 "funnels and pipelines."
 msgstr "円を使用して、システムのさまざまな段階を通るデータの流れを視覚化します。ビジュアライゼーション内の個々のパスの上にマウスを移動すると、値がどの段階を経たかを理解できます。マルチステージ、マルチグループのファネルとパイプラインの視覚化に役立ちます。"
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "値"
 
@@ -12034,9 +12321,16 @@ msgstr "期間間の価値の差"
 msgid "Value format"
 msgstr "値の形式"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "値は 0 より大きくする必要があります"
+
 msgid "Value is required"
 msgstr "値が要求されます"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "値は 0 より大きくする必要があります"
@@ -12055,12 +12349,6 @@ msgid ""
 "show relevant values"
 msgstr "他のフィルターで選択された値は、関連する値のみを表示するフィルター オプションに影響します。"
 
-msgid "Vehicle Types"
-msgstr "車両の種類"
-
-msgid "Verbose Name"
-msgstr "詳細な名前"
-
 msgid "Version"
 msgstr "バージョン"
 
@@ -12073,9 +12361,6 @@ msgstr "垂直"
 msgid "Vertical (Left)"
 msgstr "縦型(左)"
 
-msgid "Video game consoles"
-msgstr "ビデオゲーム機"
-
 msgid "View"
 msgstr "表示"
 
@@ -12117,9 +12402,6 @@ msgstr "バーチャル"
 msgid "Virtual (SQL)"
 msgstr "仮想 (SQL)"
 
-msgid "Virtual dataset"
-msgstr "仮想データセット"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "仮想データセットのクエリを空にすることはできません。"
 
@@ -12158,13 +12440,6 @@ msgid ""
 "grid view."
 msgstr "3D の建物、風景、オブジェクトなどの地理空間データをグリッド ビューで視覚化します。"
 
-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."
@@ -12217,13 +12492,6 @@ msgid ""
 "instead."
 msgstr "さまざまな時系列オブジェクトを 1 つのグラフに視覚化します。このチャートは非推奨となるため、代わりに時系列チャートを使用することをお勧めします。"
 
-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 "システムのさまざまな段階におけるさまざまなグループの価値観の流れを視覚化します。パイプラインの新しいステージはノードまたはレイヤーとして視覚化されます。バーまたはエッジの太さは、視覚化されるメトリックを表します。"
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -12238,6 +12506,12 @@ msgstr "可視化タイプ"
 msgid "WED"
 msgstr "水"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, fuzzy, python-format
 msgid "Waiting on %s"
 msgstr "Showing %s of %s"
@@ -12252,9 +12526,6 @@ msgstr "新しいデータベースを追加しますか?"
 msgid "Warning"
 msgstr "警告"
 
-msgid "Warning Message"
-msgstr "警告メッセージ"
-
 msgid "Warning!"
 msgstr "警告!"
 
@@ -12384,11 +12655,6 @@ msgstr "「計算タイプ」が「変化率」に設定されている場合、
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr "二次メトリックが提供される場合、線形カラー スケールが使用されます。"
 
-msgid ""
-"When allowing CREATE TABLE AS option in SQL Lab, this option forces the "
-"table to be created in this schema"
-msgstr "SQL Lab で CREATE TABLE AS オプションを許可すると、このオプションによりテーブルがこのスキーマに強制的に作成されます"
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr "チェックすると、各クエリの後にマップがデータにズームします"
 
@@ -12411,6 +12677,11 @@ msgid ""
 "to the main datetime column."
 msgstr "セカンダリ テンポラル列がフィルター処理される場合、同じフィルターをメインの日時列に適用します。"
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -12429,20 +12700,14 @@ msgstr "「Group By」を使用する場合、使用できる指標は 1 つに
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr "アダプティブフォーマット以外を使用すると、ラベルが重なる場合があります"
 
-msgid "When using this option, default value can’t be set"
-msgstr "このオプションを使用する場合、デフォルト値は設定できません"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr "データのグループが複数ある場合にプログレスバーが重なるかどうか"
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr "テーブルが SQL Lab の「視覚化」フローによって生成されたかどうか"
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr "この列が探索ビューの「フィルター」セクションで公開されるかどうか。"
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -12482,6 +12747,10 @@ msgstr "チャートの凡例を表示するかどうか"
 msgid "Whether to display bubbles on top of countries"
 msgstr "国の上にバブルを表示するかどうか"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "チャートの凡例を表示するかどうか"
+
 msgid "Whether to display the aggregate count"
 msgstr "集計数を表示するかどうか"
 
@@ -12491,11 +12760,6 @@ msgstr "対話型データテーブルを表示するかどうか"
 msgid "Whether to display the labels."
 msgstr "ラベルを表示するかどうか。"
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr "ラベルを表示するかどうか。ラベルは 5% のしきい値の場合にのみ表示されることに注意してください。"
-
 msgid "Whether to display the legend (toggles)"
 msgstr "凡例を表示するかどうか(切り替え)"
 
@@ -12511,6 +12775,10 @@ msgstr "Y軸の最小値と最大値を表示するかどうか"
 msgid "Whether to display the numerical values within the cells"
 msgstr "セル内の数値を表示するかどうか"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "ツールチップにパーセンテージを含めるかどうか"
+
 msgid "Whether to display the stroke"
 msgstr "ストロークを表示するかどうか"
 
@@ -12523,9 +12791,17 @@ msgstr "タイムスタンプを表示するかどうか"
 msgid "Whether to display the tooltip labels."
 msgstr "ツールチップのラベルを表示するかどうか。"
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "セル内の数値を表示するかどうか"
+
 msgid "Whether to display the trend line"
 msgstr "トレンドラインを表示するかどうか"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "集計数を表示するかどうか"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr "グラフの位置とスケーリングの変更を有効にするかどうか。"
 
@@ -12550,33 +12826,17 @@ msgstr "時間セクションで定義された時間粒度を含めるかどう
 msgid "Whether to make the grid 3D"
 msgstr "グリッドを3Dにするかどうか"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "ヒストグラムを累積するかどうか"
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr "この列を [時間粒度] オプションとして利用可能にするかどうか、列は DATETIME または DATETIME のようなものである必要があります"
-
-msgid "Whether to normalize the histogram"
-msgstr "ヒストグラムを正規化するかどうか"
-
 msgid "Whether to populate autocomplete filters options"
 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 "探索ビューのフィルター セクションのフィルターのドロップダウンに、バックエンドからオンザフライで取得した個別の値のリストを入力するかどうか"
-
 #, fuzzy
 msgid "Whether to show as Nightingale chart."
 msgstr "ゲージチャートの進行状況を表示するかどうか"
 
+#, fuzzy
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr "追加のコントロールを表示するかどうか。追加のコントロールには、複数棒グラフを積み上げたり並べたりするなどの機能が含まれます。"
 
 msgid "Whether to show minor ticks on the axis"
@@ -12597,9 +12857,6 @@ msgstr "基本軸で昇順または降順でソートするかどうか。"
 msgid "Whether to sort descending or ascending"
 msgstr "降順または昇順でソートするかどうか"
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr "シリーズ制限が存在する場合に降順または昇順のどちらで並べ替えるか"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr "選択したメトリックによって結果を降順に並べ替えるかどうか。"
 
@@ -12657,9 +12914,6 @@ msgstr "クエリの説明を書いてください"
 msgid "Write a handlebars template to render the data"
 msgstr "データをレンダリングするハンドルバー テンプレートを作成する"
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "X 軸タイトルの下マージン"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "X 軸のタイトルマージン"
 
@@ -12678,6 +12932,10 @@ msgstr "X 軸ラベル"
 msgid "X Axis Title"
 msgstr "X 軸タイトル"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Y 軸のタイトルマージン"
+
 msgid "X Log Scale"
 msgstr "X ログスケール"
 
@@ -12699,6 +12957,9 @@ msgstr "X軸"
 msgid "XScale Interval"
 msgstr "XSスケール間隔"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Y 2 バウンド"
 
@@ -12814,6 +13075,19 @@ msgstr ""
 "すでに存在する 1 "
 "つ以上の保存済みクエリをインポートしています。上書きすると、作業内容の一部が失われる可能性があります。上書きしてもよろしいですか?"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr "あなたはできる"
 
@@ -12885,9 +13159,6 @@ msgstr "このデータセットへのアクセス権がありません。"
 msgid "You don't have access to this embedded dashboard config."
 msgstr "この埋め込みダッシュボード構成にアクセスする権限がありません。"
 
-msgid "You don't have any favorites yet!"
-msgstr "まだお気に入りはありません!"
-
 msgid "You don't have permission to modify the value."
 msgstr "値を変更する権限がありません。"
 
@@ -12960,6 +13231,9 @@ msgstr "チャートが最新ではありません"
 msgid "Your chart is ready to go!"
 msgstr "チャートの準備が整いました!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr "ダッシュボードが大きすぎます。保存する前にサイズを縮小してください。"
 
@@ -12986,6 +13260,9 @@ msgstr "クエリが保存されました"
 msgid "Your query was updated"
 msgstr "クエリが更新されました"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "レポートを削除できませんでした"
 
@@ -12998,6 +13275,10 @@ msgstr "ゼロインピュテーション"
 msgid "Zoom"
 msgstr "ズーム"
 
+#, fuzzy
+msgid "Zoom level"
+msgstr "ズームエリア"
+
 msgid "Zoom level of the map"
 msgstr "マップのズームレベル"
 
@@ -13115,9 +13396,6 @@ msgstr "で"
 msgid "auto"
 msgstr "自動"
 
-msgid "auto (Smooth)"
-msgstr "オート(スムーズ)"
-
 msgid "background"
 msgstr "背景"
 
@@ -13164,9 +13442,6 @@ msgstr "変化"
 msgid "chart"
 msgstr "チャート"
 
-msgid "charts"
-msgstr "チャート"
-
 msgid "choose WHERE or HAVING..."
 msgstr "どこにあるか、持っているかを選択してください..."
 
@@ -13176,6 +13451,10 @@ msgstr "すべてのフィルターをクリアする"
 msgid "click here"
 msgstr "ここをクリック"
 
+#, fuzzy
+msgid "close"
+msgstr "閉じる"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr "コード ISO 3166-1 alpha-2 (cca2)"
 
@@ -13229,15 +13508,9 @@ msgstr "css_テンプレート"
 msgid "cumsum"
 msgstr "合計"
 
-msgid "cumulative"
-msgstr "累積的な"
-
 msgid "dashboard"
 msgstr "ダッシュボード"
 
-msgid "dashboards"
-msgstr "ダッシュボード"
-
 msgid "database"
 msgstr "データベース"
 
@@ -13301,9 +13574,6 @@ msgstr "deckGL"
 msgid "default"
 msgstr "デフォルト"
 
-msgid "delete"
-msgstr "削除"
-
 msgid "descendant"
 msgstr "子孫"
 
@@ -13316,9 +13586,6 @@ msgstr "偏差"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr "方言ドライバー://ユーザー名:パスワード@ホスト:ポート/データベース"
 
-msgid "draft"
-msgstr "下書き"
-
 msgid "dttm"
 msgstr "dttm"
 
@@ -13359,9 +13626,6 @@ msgstr "例世界人口"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "例xy12345.us-east-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "例: 「ユーザー ID」列"
-
 msgid "edit mode"
 msgstr "編集モード"
 
@@ -13372,6 +13636,10 @@ msgstr "件名を選択"
 msgid "entries"
 msgstr "エントリ"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "エントリ"
+
 msgid "error"
 msgstr "エラー"
 
@@ -13438,11 +13706,6 @@ msgstr "ここ"
 msgid "hour"
 msgstr "時間"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr "mage-rendering ブラウザが画像を拡大する方法を定義する Canvas オブジェクトの CSS 属性"
-
 msgid "in"
 msgstr "In"
 
@@ -13453,6 +13716,10 @@ msgstr "モーダルで"
 msgid "invalid email"
 msgstr "パーマリンクキーが無効です。"
 
+#, fuzzy
+msgid "is"
+msgstr "In"
+
 msgid "is expected to be a Mapbox URL"
 msgstr "Mapbox URL であることが期待されます"
 
@@ -13462,6 +13729,26 @@ msgstr "は数値であると予想されます"
 msgid "is expected to be an integer"
 msgstr "整数であることが期待されます"
 
+#, fuzzy, python-format
+msgid ""
+"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 ラボ"
+" タブを開いています。続行してもよろしいですか?データベースを削除すると、それらのオブジェクトが壊れます。"
+
+#, fuzzy, python-format
+msgid ""
+"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 "
+"チャートにリンクされています。続行してもよろしいですか?データセットを削除すると、それらのオブジェクトが壊れます。"
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "key a-z"
 
@@ -13583,18 +13870,9 @@ msgstr "p99"
 msgid "page_size.all"
 msgstr "page_size.all"
 
-msgid "page_size.entries"
-msgstr "page_size.entries"
-
-msgid "page_size.show"
-msgstr "page_size.show"
-
 msgid "pending"
 msgstr "保留中"
 
-msgid "percentile (exclusive)"
-msgstr "パーセンタイル (排他)"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -13603,24 +13881,22 @@ msgstr "percentiles は2つの数値を含むリストまたはタプルでな
 msgid "permalink state not found"
 msgstr "パーマリンクの状態が見つかりません。"
 
-msgid "pixelated (Sharp)"
-msgstr "ピクセル化 (シャープ)"
-
 msgid "pixels"
 msgstr "ピクセル"
 
 msgid "previous calendar month"
 msgstr "前暦月"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "前暦年"
+
 msgid "previous calendar week"
 msgstr "前の暦週"
 
 msgid "previous calendar year"
 msgstr "前暦年"
 
-msgid "published"
-msgstr "公開"
-
 msgid "quarter"
 msgstr "四半期"
 
@@ -13639,9 +13915,6 @@ msgstr "再起動"
 msgid "recent"
 msgstr "最近の"
 
-msgid "recents"
-msgstr "最近の"
-
 #, fuzzy
 msgid "recipients"
 msgstr "最近の"
@@ -13664,8 +13937,9 @@ msgstr "行レベルのセキュリティ"
 msgid "running"
 msgstr "実行中"
 
-msgid "saved queries"
-msgstr "保存したクエリ"
+#, fuzzy
+msgid "save"
+msgstr "保存"
 
 msgid "seconds"
 msgstr "秒"
@@ -13681,10 +13955,6 @@ msgstr ""
 "series: 各シリーズを独立して扱います。全体: すべてのシリーズで同じスケールが使用されます。 Change: 各シリーズの最初のデータ "
 "ポイントと比較した変化を表示します。"
 
-#, fuzzy
-msgid "shift start date"
-msgstr "開始日"
-
 msgid "sql"
 msgstr "SQL"
 
@@ -13740,9 +14010,6 @@ msgstr "テンポラルタイプアイコン"
 msgid "textarea"
 msgstr "テキストエリア"
 
-msgid "to"
-msgstr "to"
-
 msgid "top"
 msgstr "上"
 
@@ -13752,6 +14019,14 @@ msgstr "元に戻す"
 msgid "unknown type icon"
 msgstr "不明なタイプのアイコン"
 
+#, fuzzy
+msgid "unset"
+msgstr "6月"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "%sが更新されました"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -13775,9 +14050,6 @@ msgstr "差異"
 msgid "view instructions"
 msgstr "説明を見る"
 
-msgid "virtual"
-msgstr "バーチャル"
-
 msgid "viz type"
 msgstr "可視化タイプ"
 
@@ -13814,3 +14086,6 @@ msgstr "年"
 
 msgid "zoom area"
 msgstr "ズームエリア"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/ko/LC_MESSAGES/messages.po b/superset/translations/ko/LC_MESSAGES/messages.po
index bd245cfa076ec9c04d6edea2010628f4d3e34542..10e770c56a5d0795b6104014e740e8e647dd206f 100644
--- a/superset/translations/ko/LC_MESSAGES/messages.po
+++ b/superset/translations/ko/LC_MESSAGES/messages.po
@@ -17,16 +17,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2019-02-02 22:28+0900\n"
 "Last-Translator: \n"
 "Language: ko\n"
 "Language-Team: ko <LL@li.org>\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=1; plural=0\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -66,7 +66,10 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
 
@@ -85,9 +88,17 @@ msgstr "대시보드 저장"
 msgid " a new one"
 msgstr ""
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr ""
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr ""
 
@@ -148,10 +159,7 @@ msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr ""
 
 #, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
+msgid "%(label)s file"
 msgstr ""
 
 #, python-format
@@ -166,22 +174,6 @@ msgstr ""
 msgid "%(object)s does not exist in this database."
 msgstr ""
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr ""
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr ""
@@ -197,13 +189,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr ""
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -211,10 +196,6 @@ msgid_plural ""
 "\"%(undefinedParameter)s\"?"
 msgstr[0] ""
 
-#, python-format
-msgid "%(type)s File"
-msgstr ""
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -266,10 +247,6 @@ msgstr ""
 msgid "%s column(s)"
 msgstr ""
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -357,6 +334,10 @@ msgid ""
 "\n"
 msgstr ""
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "테이블 선택"
 
@@ -421,6 +402,12 @@ msgstr ""
 msgid "10 minute"
 msgstr "10분"
 
+msgid "10/90 percentiles"
+msgstr ""
+
+msgid "10000"
+msgstr ""
+
 #, fuzzy
 msgid "104 weeks"
 msgstr "주"
@@ -526,6 +513,9 @@ msgstr "30초"
 msgid "5 seconds"
 msgstr "30초"
 
+msgid "5/95 percentiles"
+msgstr ""
+
 #, fuzzy
 msgid "52 weeks"
 msgstr "주"
@@ -599,9 +589,6 @@ msgstr ""
 msgid "A Big Number"
 msgstr "테이블 명"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "드롭다운 목록에서 날짜로 처리할 열 이름을 선택합니다."
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr ""
 
@@ -612,6 +599,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr "같은 이름의 데이터베이스가 이미 존재합니다"
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -687,11 +677,6 @@ msgid ""
 "templating syntax"
 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 ""
 
@@ -795,27 +780,30 @@ msgstr ""
 msgid "Add CSS template"
 msgstr "CSS 템플릿"
 
-msgid "Add Chart"
-msgstr "차트 추가"
-
-msgid "Add Column"
-msgstr "컬럼 추가"
-
 msgid "Add Dashboard"
 msgstr "대시보드 추가"
 
-msgid "Add Database"
-msgstr "데이터베이스 추가"
+msgid "Add Divider"
+msgstr ""
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "테이블 추가"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "차트 추가"
 
 msgid "Add Log"
 msgstr "로그 추가"
 
-msgid "Add Metric"
-msgstr "메트릭 추가"
-
 msgid "Add Report"
 msgstr ""
 
+#, fuzzy
+msgid "Add Role"
+msgstr "D3 포멧"
+
 #, fuzzy
 msgid "Add Rule"
 msgstr "D3 포멧"
@@ -823,6 +811,10 @@ msgstr "D3 포멧"
 msgid "Add Tag"
 msgstr ""
 
+#, fuzzy
+msgid "Add User"
+msgstr "D3 포멧"
+
 msgid "Add a Plugin"
 msgstr "플러그인 추가"
 
@@ -906,9 +898,6 @@ msgid ""
 "displayed in the filter."
 msgstr ""
 
-msgid "Add filters and dividers"
-msgstr ""
-
 msgid "Add item"
 msgstr "테이블 추가"
 
@@ -924,6 +913,10 @@ msgstr ""
 msgid "Add new formatter"
 msgstr ""
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "테이블 추가"
+
 msgid "Add required control values to preview chart"
 msgstr ""
 
@@ -948,13 +941,14 @@ msgstr "대시보드 추가"
 msgid "Add to dashboard"
 msgstr "대시보드 추가"
 
-#, fuzzy
-msgid "Add/Edit Filters"
-msgstr "테이블 추가"
-
 msgid "Added"
 msgstr ""
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -970,10 +964,6 @@ msgstr ""
 msgid "Additional information"
 msgstr "주석"
 
-#, fuzzy
-msgid "Additional metadata"
-msgstr "주석"
-
 #, fuzzy
 msgid "Additional padding for legend."
 msgstr "주석"
@@ -1041,6 +1031,14 @@ msgstr ""
 msgid "Advanced-Analytics"
 msgstr ""
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "차트 추가"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "대시보드 저장"
+
 #, fuzzy
 msgid "After"
 msgstr "분기"
@@ -1074,6 +1072,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "생성자"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "생성자"
+
 msgid "Aggregation function"
 msgstr ""
 
@@ -1153,6 +1155,10 @@ msgstr ""
 msgid "All"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "컬럼 수정"
+
 msgid "All Text"
 msgstr ""
 
@@ -1168,27 +1174,15 @@ msgstr "필터"
 msgid "All panels"
 msgstr ""
 
-msgid "All panels with this column will be affected by this filter"
-msgstr ""
-
 msgid "Allow CREATE TABLE AS"
 msgstr ""
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr ""
-
 msgid "Allow CREATE VIEW AS"
 msgstr ""
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr ""
-
-msgid "Allow Csv Upload"
+msgid "Allow DDL and DML"
 msgstr ""
 
-msgid "Allow DML"
-msgstr "DML 허용"
-
 msgid "Allow changing catalogs"
 msgstr ""
 
@@ -1203,6 +1197,9 @@ msgstr ""
 msgid "Allow creation of new tables based on queries"
 msgstr ""
 
+msgid "Allow creation of new values"
+msgstr ""
+
 msgid "Allow creation of new views based on queries"
 msgstr ""
 
@@ -1217,26 +1214,22 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr ""
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-
 msgid "Allow node selections"
 msgstr ""
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr ""
 
-msgid "Allow this database to be explored"
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
 msgstr ""
 
-msgid "Allow this database to be queried in SQL Lab"
+msgid "Allow this database to be explored"
 msgstr ""
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
+msgid "Allow this database to be queried in SQL Lab"
 msgstr ""
 
 msgid "Allowed Domains (comma separated)"
@@ -1278,6 +1271,10 @@ msgstr ""
 msgid "An error has occurred"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
 msgid "An error occurred"
 msgstr ""
 
@@ -1288,6 +1285,10 @@ msgstr ""
 msgid "An error occurred when running alert query"
 msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
 #, fuzzy
 msgid "An error occurred while accessing the value."
 msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
@@ -1301,6 +1302,10 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
 msgid "An error occurred while creating the data source"
 msgstr ""
 
@@ -1441,6 +1446,10 @@ msgid ""
 "button."
 msgstr ""
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
 #, fuzzy
 msgid "An error occurred while updating the value."
 msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
@@ -1639,12 +1648,6 @@ msgstr "필터"
 msgid "Apply metrics on"
 msgstr "메트릭"
 
-msgid "Apply to all panels"
-msgstr ""
-
-msgid "Apply to specific panels"
-msgstr ""
-
 msgid "April"
 msgstr ""
 
@@ -1687,6 +1690,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected queries?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected roles?"
+msgstr ""
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr ""
 
@@ -1696,6 +1702,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected templates?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected users?"
+msgstr ""
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr ""
 
@@ -1735,15 +1744,13 @@ msgstr ""
 msgid "Assist"
 msgstr ""
 
-msgid "Associated Charts"
-msgstr ""
-
-msgid "Async Execution"
-msgstr ""
-
 msgid "Asynchronous query execution"
 msgstr ""
 
+#, fuzzy
+msgid "Attribution"
+msgstr "설명"
+
 msgid "August"
 msgstr ""
 
@@ -1769,6 +1776,17 @@ msgstr ""
 msgid "Automatic Color"
 msgstr ""
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "컬럼 목록"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "컬럼 목록"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr ""
 
@@ -1776,6 +1794,9 @@ msgstr ""
 msgid "Average"
 msgstr "Query 공유"
 
+msgid "Average (Mean)"
+msgstr ""
+
 #, fuzzy
 msgid "Average value"
 msgstr "원본 값"
@@ -1815,6 +1836,9 @@ msgstr ""
 msgid "Backend"
 msgstr ""
 
+msgid "Background Color"
+msgstr ""
+
 msgid "Backward values"
 msgstr ""
 
@@ -1832,9 +1856,6 @@ msgstr ""
 msgid "Bar Chart"
 msgstr "차트 보기"
 
-msgid "Bar Chart (legacy)"
-msgstr ""
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
 
@@ -1849,10 +1870,25 @@ msgstr "주석"
 msgid "Base"
 msgstr "데이터베이스"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "데이터베이스"
+
+#, fuzzy
+msgid "Base height"
+msgstr "차트 유형"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "차트 유형"
+
 msgid "Based on a metric"
 msgstr ""
 
@@ -1872,9 +1908,6 @@ msgstr ""
 msgid "Batch editing %d filters:"
 msgstr ""
 
-msgid "Battery level over time"
-msgstr ""
-
 msgid "Be careful."
 msgstr ""
 
@@ -1898,6 +1931,14 @@ msgstr ""
 msgid "Bins"
 msgstr "활동"
 
+#, fuzzy
+msgid "Border color"
+msgstr "컬럼 수정"
+
+#, fuzzy
+msgid "Border width"
+msgstr "차트 유형"
+
 #, fuzzy
 msgid "Bottom"
 msgstr "날짜/시간"
@@ -2008,9 +2049,6 @@ msgstr ""
 msgid "Business"
 msgstr ""
 
-msgid "Business Data Type"
-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"
@@ -2078,7 +2116,7 @@ msgid "CSS templates could not be deleted."
 msgstr "CSS 템플릿을 삭제할 수 없습니다."
 
 #, fuzzy
-msgid "CSV Upload"
+msgid "CSV upload"
 msgstr "CSV 업로드"
 
 msgid "CTAS & CVAS SCHEMA"
@@ -2090,8 +2128,9 @@ msgid ""
 "last statement. Then, try running your query again."
 msgstr ""
 
-msgid "CTAS Schema"
-msgstr ""
+#, fuzzy
+msgid "CUSTOM"
+msgstr "생성자"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2105,9 +2144,6 @@ msgstr ""
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr ""
 
-msgid "Cache Timeout"
-msgstr ""
-
 msgid "Cache Timeout (seconds)"
 msgstr ""
 
@@ -2152,9 +2188,6 @@ msgstr ""
 msgid "Can select multiple values"
 msgstr ""
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr ""
-
 msgid "Cancel"
 msgstr "취소"
 
@@ -2167,6 +2200,10 @@ msgstr ""
 msgid "Cannot delete a database that has datasets attached"
 msgstr ""
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr ""
 
@@ -2177,6 +2214,10 @@ msgstr ""
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr ""
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "실패"
+
 msgid "Catalog"
 msgstr ""
 
@@ -2259,13 +2300,14 @@ msgstr ""
 msgid "Change order of rows."
 msgstr ""
 
-msgid "Changed By"
-msgstr ""
-
 #, fuzzy
 msgid "Changed by"
 msgstr "관리"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "관리"
+
 msgid "Changes saved."
 msgstr ""
 
@@ -2315,9 +2357,6 @@ msgstr "차트"
 msgid "Chart %(id)s not found"
 msgstr ""
 
-msgid "Chart Cache Timeout"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "Chart Data: %s"
 msgstr "차트"
@@ -2423,6 +2462,10 @@ msgstr "차트의 파라미터가 부적절합니다."
 msgid "Chart properties updated"
 msgstr "대시보드"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "차트"
+
 #, fuzzy
 msgid "Chart title"
 msgstr "차트 유형"
@@ -2472,6 +2515,9 @@ msgstr ""
 msgid "Choose File"
 msgstr "CSV 파일"
 
+msgid "Choose a chart for displaying on the map"
+msgstr ""
+
 msgid "Choose a chart or dashboard not both"
 msgstr ""
 
@@ -2496,10 +2542,6 @@ msgstr ""
 msgid "Choose a source"
 msgstr "데이터소스 선택"
 
-#, fuzzy
-msgid "Choose a source and a target"
-msgstr "데이터소스 선택"
-
 #, fuzzy
 msgid "Choose a target"
 msgstr "데이터소스 선택"
@@ -2580,9 +2622,6 @@ msgstr ""
 msgid "Circular"
 msgstr ""
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2604,7 +2643,9 @@ msgstr "차트 추가"
 msgid "Clear form"
 msgstr ""
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 
 msgid ""
@@ -2631,6 +2672,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr ""
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "클릭하여 제목 수정하기"
+
 msgid "Click to cancel sorting"
 msgstr ""
 
@@ -2754,14 +2799,14 @@ msgstr ""
 msgid "Column Configuration"
 msgstr ""
 
-#, fuzzy
-msgid "Column Data Types"
-msgstr "차트 유형"
-
 #, fuzzy
 msgid "Column Formatting"
 msgstr "주석"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Query 공유"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2777,10 +2822,6 @@ msgstr ""
 msgid "Column data types"
 msgstr "차트 유형"
 
-#, fuzzy
-msgid "Column datatype"
-msgstr "컬럼 추가"
-
 msgid "Column header tooltip"
 msgstr ""
 
@@ -2810,18 +2851,19 @@ msgid ""
 msgstr ""
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
+msgstr "컬럼 추가"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "컬럼 추가"
 
 msgid "Columns"
 msgstr "칼럼"
 
-msgid "Columns To Be Parsed as Dates"
-msgstr ""
-
-#, fuzzy
-msgid "Columns To Read"
-msgstr "컬럼 보기"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "컬럼 추가"
 
 #, fuzzy, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2834,6 +2876,9 @@ msgstr "데이터 소스의 컬럼이 없습니다 : %(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr ""
 
+msgid "Columns to be parsed as dates"
+msgstr ""
+
 msgid "Columns to calculate distribution across."
 msgstr ""
 
@@ -2849,6 +2894,10 @@ msgstr ""
 msgid "Columns to group by on the rows"
 msgstr ""
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "컬럼 보기"
+
 #, fuzzy
 msgid "Combine metrics"
 msgstr "메트릭"
@@ -2884,17 +2933,6 @@ msgid ""
 "and color."
 msgstr ""
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-
 #, fuzzy
 msgid "Comparison"
 msgstr "컬럼 수정"
@@ -2959,18 +2997,28 @@ msgstr ""
 msgid "Configure the basics of your Annotation Layer."
 msgstr ""
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 
 msgid "Configure your how you overlay is displayed here."
 msgstr ""
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "대시보드 보기"
+
 msgid "Confirm overwrite"
 msgstr ""
 
 msgid "Confirm save"
 msgstr ""
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr ""
 
@@ -3004,9 +3052,6 @@ msgstr "연결하는데 실패했습니다. 커넥션 "
 msgid "Connection failed, please check your connection settings."
 msgstr "연결하는데 실패했습니다. 커넥션 "
 
-msgid "Connection looks good!"
-msgstr ""
-
 #, fuzzy
 msgid "Content format"
 msgstr "D3 포멧"
@@ -3049,21 +3094,21 @@ msgstr ""
 msgid "Copy"
 msgstr ""
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "클립보드에 복사하기"
 
-msgid "Copy and Paste JSON credentials"
+msgid "Copy URL"
 msgstr ""
 
-msgid "Copy and paste the entire service account .json file here"
+msgid "Copy and Paste JSON credentials"
 msgstr ""
 
 msgid "Copy link"
 msgstr ""
 
-msgid "Copy message"
-msgstr ""
-
 #, python-format
 msgid "Copy of %s"
 msgstr ""
@@ -3081,6 +3126,9 @@ msgstr ""
 msgid "Copy query link to your clipboard"
 msgstr "클립보드에 복사하기"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr ""
 
@@ -3096,6 +3144,9 @@ msgstr ""
 msgid "Copy to clipboard"
 msgstr "클립보드에 복사하기"
 
+msgid "Corner Radius"
+msgstr ""
+
 msgid "Correlation"
 msgstr ""
 
@@ -3125,6 +3176,9 @@ msgstr ""
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 #, fuzzy
 msgid "Count"
 msgstr "컬럼 추가"
@@ -3226,6 +3280,9 @@ msgstr ""
 msgid "Creator"
 msgstr "생성자"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 #, fuzzy
 msgid "Crimson"
 msgstr "활동"
@@ -3316,6 +3373,9 @@ msgstr ""
 msgid "Custom color palettes"
 msgstr ""
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "시작 시간"
@@ -3351,9 +3411,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr ""
 
-msgid "D3 Format"
-msgstr "D3 포멧"
-
 msgid "D3 format"
 msgstr ""
 
@@ -3414,6 +3471,21 @@ msgstr ""
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr ""
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "대시보드를 업데이트할 수 없습니다."
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "대시보드를 업데이트할 수 없습니다."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "대시보드를 업데이트할 수 없습니다."
+
 msgid "Dashboard could not be deleted."
 msgstr "대시보드를 삭제할 수 없습니다."
 
@@ -3427,6 +3499,10 @@ msgstr "대시보드가 존재하지 않습니다"
 msgid "Dashboard imported"
 msgstr "대시보드"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "대시보드를 업데이트할 수 없습니다."
+
 msgid "Dashboard parameters are invalid."
 msgstr "대시보드 인자가 부적절합니다."
 
@@ -3473,10 +3549,6 @@ msgstr "대시보드"
 msgid "Data"
 msgstr "데이터베이스"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "데이터베이스"
-
 #, fuzzy
 msgid "Data Table"
 msgstr "테이블 수정"
@@ -3502,6 +3574,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr ""
 
+#, fuzzy
+msgid "Data imported"
+msgstr "데이터베이스"
+
 msgid "Data preview"
 msgstr "데이터 미리보기"
 
@@ -3666,13 +3742,6 @@ msgid ""
 "database table to the left or "
 msgstr ""
 
-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 ""
-
 #, fuzzy
 msgid "Datasets could not be deleted."
 msgstr "데이터베이스를 삭제할 수 없습니다."
@@ -3711,9 +3780,6 @@ msgstr "D3 포멧"
 msgid "Date/Time"
 msgstr "시작 시간"
 
-msgid "Datetime Format"
-msgstr ""
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3741,14 +3807,12 @@ msgstr ""
 msgid "December"
 msgstr ""
 
-msgid "Decides which column to sort the base axis by."
-msgstr ""
-
-msgid "Decides which measure to sort the base axis by."
+msgid "Decides which column or measure to sort the base axis by."
 msgstr ""
 
-msgid "Decimal Character"
-msgstr ""
+#, fuzzy
+msgid "Decimal character"
+msgstr "차트 추가"
 
 msgid "Deck.gl - 3D Grid"
 msgstr ""
@@ -3793,9 +3857,6 @@ msgstr "생성자"
 msgid "Default Catalog"
 msgstr "삭제"
 
-msgid "Default Endpoint"
-msgstr ""
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "테이블 선택"
@@ -3803,7 +3864,10 @@ msgstr "테이블 선택"
 msgid "Default URL"
 msgstr ""
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
 
 msgid "Default Value"
@@ -3823,10 +3887,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr ""
 
-#, fuzzy
-msgid "Default value is required"
-msgstr "데이터소스"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 
@@ -3871,9 +3931,6 @@ msgid ""
 "[Periods] text box"
 msgstr ""
 
-msgid "Defines how each series is broken down"
-msgstr ""
-
 msgid "Defines the grid size in pixels"
 msgstr ""
 
@@ -3928,9 +3985,17 @@ msgstr "삭제"
 msgid "Delete Report?"
 msgstr "CSS 템플릿"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "삭제"
+
 msgid "Delete Template?"
 msgstr "CSS 템플릿"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "삭제"
+
 msgid "Delete all Really?"
 msgstr ""
 
@@ -3949,12 +4014,20 @@ msgstr ""
 msgid "Delete query"
 msgstr "삭제"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "삭제"
+
 msgid "Delete template"
 msgstr "템플릿 불러오기"
 
 msgid "Delete this container and save to remove this message."
 msgstr ""
 
+#, fuzzy
+msgid "Delete user"
+msgstr "삭제"
+
 #, fuzzy
 msgid "Deleted"
 msgstr "삭제"
@@ -4008,13 +4081,29 @@ msgstr[0] ""
 msgid "Deleted %s"
 msgstr "삭제"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "삭제"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "삭제"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "삭제"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "삭제"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "삭제"
 
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 
 msgid "Delimited long & lat single column"
@@ -4027,19 +4116,12 @@ msgstr "구분자"
 msgid "Delivery method"
 msgstr "월"
 
-msgid "Demographics"
-msgstr ""
-
 msgid "Density"
 msgstr ""
 
 msgid "Dependent on"
 msgstr ""
 
-#, fuzzy
-msgid "Deprecated"
-msgstr "생성자"
-
 msgid "Description"
 msgstr "설명"
 
@@ -4132,10 +4214,6 @@ msgstr ""
 msgid "Discard"
 msgstr "대시보드"
 
-#, fuzzy
-msgid "Display"
-msgstr "필터"
-
 #, fuzzy
 msgid "Display Name"
 msgstr "필터"
@@ -4144,12 +4222,19 @@ msgstr "필터"
 msgid "Display all"
 msgstr "필터"
 
+msgid "Display column in the chart"
+msgstr ""
+
 msgid "Display column level subtotal"
 msgstr ""
 
 msgid "Display column level total"
 msgstr ""
 
+#, fuzzy
+msgid "Display column name"
+msgstr "컬럼 추가"
+
 msgid "Display configuration"
 msgstr ""
 
@@ -4171,7 +4256,7 @@ msgid "Display row level total"
 msgstr ""
 
 #, fuzzy
-msgid "Display settings"
+msgid "Display type icon"
 msgstr "Query 공유"
 
 msgid ""
@@ -4188,9 +4273,6 @@ msgstr ""
 msgid "Distribution"
 msgstr "설명"
 
-msgid "Distribution - Bar Chart"
-msgstr ""
-
 msgid "Divider"
 msgstr ""
 
@@ -4221,9 +4303,18 @@ msgstr ""
 msgid "Download as image"
 msgstr ""
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr ""
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr ""
 
@@ -4317,6 +4408,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "차트 수정"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "차트 수정"
+
+#, python-format
+msgid "Duplicate role %(name)s"
+msgstr ""
+
 msgid "Duplicate tab"
 msgstr ""
 
@@ -4329,29 +4428,12 @@ msgid ""
 "the cache. Note this defaults to the global timeout if undefined."
 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 ""
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-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."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4368,6 +4450,9 @@ msgstr ""
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr ""
 
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr ""
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr ""
 
@@ -4391,10 +4476,6 @@ msgstr ""
 msgid "ERROR"
 msgstr "%s 에러"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr ""
-
 msgid "Edge length"
 msgstr ""
 
@@ -4420,31 +4501,19 @@ msgstr "CSS 수정"
 msgid "Edit CSS template properties"
 msgstr "CSS 템플릿"
 
-msgid "Edit Chart"
-msgstr "차트 수정"
-
 #, fuzzy
 msgid "Edit Chart Properties"
 msgstr "대시보드 수정"
 
-msgid "Edit Column"
-msgstr "컬럼 수정"
-
 msgid "Edit Dashboard"
 msgstr "대시보드 수정"
 
-msgid "Edit Database"
-msgstr "데이터베이스 편집"
-
 msgid "Edit Dataset "
 msgstr "차트 수정"
 
 msgid "Edit Log"
 msgstr "로그 수정"
 
-msgid "Edit Metric"
-msgstr "메트릭 편집"
-
 msgid "Edit Plugin"
 msgstr "플러그인 수정"
 
@@ -4452,16 +4521,21 @@ msgid "Edit Report"
 msgstr ""
 
 #, fuzzy
-msgid "Edit Rule"
+msgid "Edit Role"
 msgstr "Query 검색"
 
-msgid "Edit Table"
-msgstr "테이블 수정"
+#, fuzzy
+msgid "Edit Rule"
+msgstr "Query 검색"
 
 #, fuzzy
 msgid "Edit Tag"
 msgstr "로그 수정"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "저장된 Query 수정"
+
 msgid "Edit annotation"
 msgstr "주석"
 
@@ -4499,6 +4573,10 @@ msgstr ""
 msgid "Edit query"
 msgstr "저장된 Query 수정"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "Query 검색"
+
 msgid "Edit template"
 msgstr "템플릿 불러오기"
 
@@ -4512,6 +4590,10 @@ msgstr "대시보드 추가"
 msgid "Edit time range"
 msgstr ""
 
+#, fuzzy
+msgid "Edit user"
+msgstr "저장된 Query 수정"
+
 msgid "Edited"
 msgstr "테이블 수정"
 
@@ -4538,6 +4620,13 @@ msgstr ""
 msgid "Elevation"
 msgstr "생성자"
 
+msgid "Email"
+msgstr ""
+
+#, fuzzy
+msgid "Email is required"
+msgstr "데이터소스"
+
 msgid "Email reports active"
 msgstr ""
 
@@ -4554,6 +4643,10 @@ msgstr ""
 msgid "Embed dashboard"
 msgstr "대시보드 저장"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "대시보드를 삭제할 수 없습니다."
+
 msgid "Embedding deactivated."
 msgstr ""
 
@@ -4564,9 +4657,6 @@ msgstr "필터"
 msgid "Emphasis"
 msgstr ""
 
-msgid "Employment and education"
-msgstr ""
-
 msgid "Empty circle"
 msgstr ""
 
@@ -4591,9 +4681,6 @@ msgstr ""
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr ""
 
-msgid "Enable Filter Select"
-msgstr ""
-
 msgid "Enable cross-filtering"
 msgstr ""
 
@@ -4696,10 +4783,24 @@ msgstr "차트 유형"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr ""
 
-msgid "Entity"
+msgid "Enter the unique project id for your database."
 msgstr ""
 
-msgid "Entity ID"
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "테이블 명"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "테이블 명"
+
+msgid "Enter the user's username"
+msgstr ""
+
+msgid "Entity"
 msgstr ""
 
 msgid "Equal Date Sizes"
@@ -4716,6 +4817,14 @@ msgstr "%s 에러"
 msgid "Error Fetching Tagged Objects"
 msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "차트 수정"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr ""
@@ -4738,6 +4847,9 @@ msgstr ""
 msgid "Error message"
 msgstr ""
 
+msgid "Error parsing"
+msgstr ""
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "차트 수정"
@@ -4754,6 +4866,22 @@ msgstr "엑셀 업로드"
 msgid "Error saving dataset"
 msgstr "차트 수정"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "차트 수정"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
 #, fuzzy
 msgid "Error while fetching charts"
 msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
@@ -4762,10 +4890,30 @@ msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였
 msgid "Error while fetching data: %s"
 msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr ""
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr ""
@@ -4790,16 +4938,6 @@ msgstr ""
 msgid "Event"
 msgstr "월"
 
-msgid "Event Flow"
-msgstr ""
-
-#, fuzzy
-msgid "Event Names"
-msgstr "테이블 명"
-
-msgid "Event definition"
-msgstr ""
-
 msgid "Event flow"
 msgstr ""
 
@@ -4822,13 +4960,13 @@ msgstr ""
 msgid "Examples"
 msgstr ""
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "CSV 업로드"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "CSV 업로드"
+
 msgid "Exclude selected values"
 msgstr ""
 
@@ -4922,12 +5060,6 @@ msgstr "대시보드 가져오기"
 msgid "Export to Pivoted .CSV"
 msgstr "대시보드 가져오기"
 
-msgid "Export to YAML"
-msgstr ""
-
-msgid "Export to YAML?"
-msgstr ""
-
 msgid "Export to full .CSV"
 msgstr ""
 
@@ -4946,12 +5078,9 @@ msgstr ""
 msgid "Expose in SQL Lab"
 msgstr ""
 
-msgid "Expose this DB in SQL Lab"
+msgid "Extent"
 msgstr ""
 
-msgid "Expression"
-msgstr "표현식"
-
 msgid "Extra"
 msgstr ""
 
@@ -4971,10 +5100,6 @@ msgid ""
 "\"warning_markdown\": \"This is a warning.\" }`."
 msgstr ""
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr ""
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr ""
 
@@ -4992,6 +5117,10 @@ msgstr ""
 msgid "FEB"
 msgstr ""
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "차트 수정"
+
 msgid "FRI"
 msgstr ""
 
@@ -5002,16 +5131,15 @@ msgstr "생성자"
 msgid "Factor to multiply the metric by"
 msgstr ""
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "실패"
 
 msgid "Failed at retrieving results"
 msgstr ""
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr ""
-
 msgid "Failed to create report"
 msgstr ""
 
@@ -5041,6 +5169,10 @@ msgstr "필터"
 msgid "Failed to start remote query on a worker."
 msgstr ""
 
+#, fuzzy
+msgid "Failed to stop query."
+msgstr "테이블 선택"
+
 #, fuzzy
 msgid "Failed to tag items"
 msgstr "테이블 선택"
@@ -5065,9 +5197,6 @@ msgstr ""
 msgid "February"
 msgstr ""
 
-msgid "Fetch Values Predicate"
-msgstr ""
-
 msgid "Fetch data preview"
 msgstr ""
 
@@ -5092,15 +5221,12 @@ msgstr ""
 msgid "File"
 msgstr "CSV 파일"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "Query 공유"
-
 msgid "File extension is not allowed."
 msgstr ""
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "Query 공유"
 
 #, fuzzy
 msgid "File upload"
@@ -5174,9 +5300,6 @@ msgstr ""
 msgid "Filter your charts"
 msgstr ""
 
-msgid "Filterable"
-msgstr ""
-
 msgid "Filters"
 msgstr "필터"
 
@@ -5189,6 +5312,15 @@ msgstr "필터"
 msgid "Filters for comparison must have a value"
 msgstr ""
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+msgid "Filters for values greater than or equal."
+msgstr ""
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr ""
@@ -5214,6 +5346,14 @@ msgstr ""
 msgid "First"
 msgstr ""
 
+#, fuzzy
+msgid "First name"
+msgstr "차트 유형"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "데이터소스"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5292,6 +5432,9 @@ msgstr "D3 포멧"
 msgid "Force refresh"
 msgstr ""
 
+msgid "Force refresh Slack channels list"
+msgstr ""
+
 msgid "Force refresh catalog list"
 msgstr ""
 
@@ -5419,6 +5562,10 @@ msgstr "Query 공유"
 msgid "Geohash"
 msgstr ""
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "컬럼 추가"
+
 msgid "Get the last date by the date unit."
 msgstr ""
 
@@ -5477,9 +5624,6 @@ msgstr ""
 msgid "Group by"
 msgstr ""
 
-msgid "Groupable"
-msgstr ""
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5497,11 +5641,6 @@ msgstr "템플릿 불러오기"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-
 #, fuzzy
 msgid "Has created by"
 msgstr "생성자"
@@ -5509,9 +5648,6 @@ msgstr "생성자"
 msgid "Header"
 msgstr ""
 
-msgid "Header Row"
-msgstr ""
-
 #, fuzzy
 msgid "Header row"
 msgstr "차트 이동"
@@ -5519,19 +5655,16 @@ msgstr "차트 이동"
 msgid "Heatmap"
 msgstr ""
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "차트 보기"
-
-msgid "Heatmap Options"
-msgstr ""
-
 msgid "Height"
 msgstr ""
 
 msgid "Height of the sparkline"
 msgstr ""
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "컬럼 수정"
+
 msgid "Hide Line"
 msgstr ""
 
@@ -5559,10 +5692,6 @@ msgstr "검색"
 msgid "Histogram"
 msgstr ""
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "차트 보기"
-
 msgid "Home"
 msgstr ""
 
@@ -5637,19 +5766,12 @@ msgid ""
 "hive.server2.proxy.user property."
 msgstr ""
 
-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.<br/>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."
+msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr ""
 
-#, fuzzy
-msgid "If Table Already Exists"
-msgstr "데이터셋 %(name)s 은 이미 존재합니다"
-
-msgid "If a metric is specified, sorting will be done based on the metric value"
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
 msgstr ""
 
 msgid ""
@@ -5657,8 +5779,9 @@ msgid ""
 "it sorts the results ascending."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr ""
+#, fuzzy
+msgid "If table already exists"
+msgstr "데이터셋 %(name)s 은 이미 존재합니다"
 
 msgid "Ignore cache when generating report"
 msgstr ""
@@ -5678,9 +5801,6 @@ msgstr ""
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr ""
 
-msgid "Impersonate the logged on user"
-msgstr ""
-
 msgid "Import"
 msgstr ""
 
@@ -5691,9 +5811,6 @@ msgstr "대시보드 가져오기"
 msgid "Import Dashboard(s)"
 msgstr "대시보드 가져오기"
 
-msgid "Import a table definition"
-msgstr ""
-
 msgid "Import chart failed for an unknown reason"
 msgstr "차트 불러오기는 알 수 없는 이유로 실패했습니다"
 
@@ -5729,15 +5846,15 @@ msgstr "대시보드 가져오기"
 msgid "Import saved query failed for an unknown reason."
 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 ""
-
 #, fuzzy
 msgid "In"
 msgstr "활동"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr ""
 
@@ -5763,17 +5880,18 @@ msgstr "생성자"
 msgid "Index"
 msgstr "분"
 
-msgid "Index Column"
-msgstr ""
-
 #, fuzzy
-msgid "Index Label"
-msgstr "레이블"
+msgid "Index column"
+msgstr "컬럼 수정"
 
 #, fuzzy
 msgid "Index label"
 msgstr "레이블"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "분"
+
 msgid "Info"
 msgstr "정보"
 
@@ -5792,6 +5910,12 @@ msgstr ""
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr ""
 
+msgid "Insert Layer URL"
+msgstr ""
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr ""
 
@@ -5827,9 +5951,6 @@ msgstr "컬럼 목록"
 msgid "Intervals"
 msgstr "새로고침 간격"
 
-msgid "Intesity"
-msgstr ""
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -5870,6 +5991,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr ""
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr ""
@@ -5934,6 +6058,10 @@ msgstr ""
 msgid "Invert current page"
 msgstr "Superset 튜토리얼"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "차트 유형"
+
 #, fuzzy
 msgid "Is certified"
 msgstr "수정됨"
@@ -6119,12 +6247,6 @@ msgstr "Query 공유"
 msgid "Last"
 msgstr ""
 
-msgid "Last Changed"
-msgstr ""
-
-msgid "Last Modified"
-msgstr "마지막 수정"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr ""
@@ -6133,6 +6255,10 @@ msgstr ""
 msgid "Last Updated %s by %s"
 msgstr "마지막 수정"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "원본 값"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr ""
@@ -6141,6 +6267,10 @@ msgstr ""
 msgid "Last day"
 msgstr "년"
 
+#, fuzzy
+msgid "Last login"
+msgstr "월"
+
 msgid "Last modified"
 msgstr "마지막 수정"
 
@@ -6148,6 +6278,14 @@ msgstr "마지막 수정"
 msgid "Last month"
 msgstr "월"
 
+#, fuzzy
+msgid "Last name"
+msgstr "데이터소스 명"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "데이터소스"
+
 #, fuzzy
 msgid "Last quarter"
 msgstr "분기"
@@ -6163,15 +6301,41 @@ msgstr "주"
 msgid "Last year"
 msgstr "년"
 
+msgid "Lat"
+msgstr ""
+
 msgid "Latitude"
 msgstr ""
 
 msgid "Latitude of default viewport"
 msgstr ""
 
+#, fuzzy
+msgid "Layer"
+msgstr "년"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "테이블 명"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr ""
 
+#, fuzzy
+msgid "Layer title"
+msgstr "차트 유형"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "필터"
+
+#, fuzzy
+msgid "Layers"
+msgstr "경고"
+
 msgid "Layout"
 msgstr ""
 
@@ -6184,11 +6348,6 @@ msgstr ""
 msgid "Layout type of tree"
 msgstr ""
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-
 msgid "Least recently modified"
 msgstr ""
 
@@ -6258,11 +6417,6 @@ msgstr ""
 msgid "Limit type"
 msgstr "시각화 유형"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-
 msgid "Limits the number of cells that get retrieved."
 msgstr ""
 
@@ -6300,6 +6454,9 @@ msgid ""
 "chart common in many fields."
 msgstr ""
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr ""
 
@@ -6328,10 +6485,17 @@ msgstr ""
 msgid "Link Copied!"
 msgstr "복사됨!"
 
+msgid "List Roles"
+msgstr ""
+
 #, fuzzy
 msgid "List Unique Values"
 msgstr "필터"
 
+#, fuzzy
+msgid "List Users"
+msgstr "저장된 Query 수정"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr ""
 
@@ -6401,6 +6565,10 @@ msgstr ""
 msgid "Login"
 msgstr "로그인"
 
+#, fuzzy
+msgid "Login count"
+msgstr "컬럼 추가"
+
 msgid "Login with"
 msgstr ""
 
@@ -6410,6 +6578,9 @@ msgstr "로그아웃"
 msgid "Logs"
 msgstr "로그"
 
+msgid "Lon"
+msgstr ""
+
 msgid "Long dashed"
 msgstr ""
 
@@ -6451,9 +6622,6 @@ msgstr ""
 msgid "Main"
 msgstr "분"
 
-msgid "Main Datetime Column"
-msgstr ""
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6488,6 +6656,10 @@ msgstr ""
 msgid "Map"
 msgstr "트리맵"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "주석"
+
 msgid "Map Style"
 msgstr ""
 
@@ -6531,13 +6703,16 @@ msgstr ""
 msgid "Markup type"
 msgstr ""
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr ""
 
 msgid "Max Bubble Size"
 msgstr ""
 
-msgid "Max Events"
+msgid "Max. features"
 msgstr ""
 
 msgid "Maximum"
@@ -6549,6 +6724,9 @@ msgstr ""
 msgid "Maximum Radius"
 msgstr ""
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6591,6 +6769,18 @@ msgstr "원본 값"
 msgid "Medium"
 msgstr ""
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -6686,11 +6876,6 @@ msgid ""
 "appropriate)."
 msgstr ""
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-
 msgid "Metrics"
 msgstr "메트릭"
 
@@ -6734,7 +6919,7 @@ msgstr ""
 msgid "Minimum Radius"
 msgstr ""
 
-msgid "Minimum leaf node event count"
+msgid "Minimum must be strictly less than maximum"
 msgstr ""
 
 msgid ""
@@ -6749,6 +6934,10 @@ msgstr ""
 msgid "Minimum value"
 msgstr "테이블 명"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "시작 날짜가 끝 날짜보다 클 수 없습니다"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr ""
 
@@ -6773,6 +6962,9 @@ msgstr "분"
 msgid "Minutes value"
 msgstr "테이블 명"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 #, fuzzy
 msgid "Missing URL parameters"
 msgstr "주석"
@@ -6791,6 +6983,11 @@ msgstr "수정됨"
 msgid "Modified %s"
 msgstr "마지막 수정"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+
 msgid "Modified by"
 msgstr "수정됨"
 
@@ -6798,10 +6995,6 @@ msgstr "수정됨"
 msgid "Modified by: %s"
 msgstr "마지막 수정"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr ""
-
 msgid "Monday"
 msgstr ""
 
@@ -6865,9 +7058,6 @@ msgstr ""
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr ""
 
-msgid "Must have at least one numeric column specified"
-msgstr ""
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr ""
 
@@ -6893,9 +7083,6 @@ msgstr ""
 msgid "NOV"
 msgstr ""
 
-msgid "NOW"
-msgstr ""
-
 #, fuzzy
 msgid "NUMERIC"
 msgstr "메트릭"
@@ -6923,9 +7110,6 @@ msgstr "컬럼 수정"
 msgid "Name of the source nodes"
 msgstr ""
 
-msgid "Name of the table that exists in the source database"
-msgstr ""
-
 msgid "Name of the target nodes"
 msgstr ""
 
@@ -6943,20 +7127,23 @@ msgstr ""
 msgid "Need help? Learn more about"
 msgstr ""
 
+#, fuzzy
+msgid "Network Error"
+msgstr "알 수 없는 에러"
+
 #, fuzzy
 msgid "Network error"
 msgstr "알 수 없는 에러"
 
+msgid "Network error while attempting to fetch resource"
+msgstr ""
+
 msgid "Network error."
 msgstr ""
 
 msgid "New chart"
 msgstr "차트 이동"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr ""
-
 #, fuzzy
 msgid "New dataset"
 msgstr "데이터소스 선택"
@@ -7010,6 +7197,10 @@ msgstr "차트"
 msgid "No Tags created"
 msgstr "생성자"
 
+#, fuzzy
+msgid "No actions"
+msgstr "주석"
+
 #, fuzzy
 msgid "No annotation layers"
 msgstr "주석 레이어"
@@ -7031,10 +7222,6 @@ msgstr "필터"
 msgid "No charts"
 msgstr ""
 
-#, fuzzy
-msgid "No charts yet"
-msgstr "차트"
-
 #, fuzzy
 msgid "No columns found"
 msgstr "컬럼 추가"
@@ -7051,10 +7238,6 @@ msgstr ""
 msgid "No compatible schema found"
 msgstr ""
 
-#, fuzzy
-msgid "No dashboards yet"
-msgstr "대시보드"
-
 msgid "No data"
 msgstr ""
 
@@ -7064,6 +7247,10 @@ msgstr ""
 msgid "No data in file"
 msgstr "파일에 데이터가 없습니다"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "데이터베이스 선택"
+
 msgid "No databases match your search"
 msgstr ""
 
@@ -7096,12 +7283,6 @@ msgstr ""
 msgid "No matching records found"
 msgstr ""
 
-msgid "No of Bins"
-msgstr ""
-
-msgid "No recents yet"
-msgstr ""
-
 msgid "No records found"
 msgstr ""
 
@@ -7124,6 +7305,10 @@ msgid ""
 "contains data for the selected time range."
 msgstr ""
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "차트"
+
 msgid "No rows were returned for this dataset"
 msgstr ""
 
@@ -7138,10 +7323,6 @@ msgstr "표현식"
 msgid "No saved metrics found"
 msgstr "저장된 Query"
 
-#, fuzzy
-msgid "No saved queries yet"
-msgstr "저장된 Query"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 
@@ -7158,6 +7339,10 @@ msgstr ""
 msgid "No time columns"
 msgstr ""
 
+#, fuzzy
+msgid "No users yet"
+msgstr "차트"
+
 msgid "No validator found (configured for the engine)"
 msgstr ""
 
@@ -7238,6 +7423,10 @@ msgstr ""
 msgid "Not up to date"
 msgstr ""
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "주석 레이어"
+
 msgid "Nothing triggered"
 msgstr ""
 
@@ -7341,9 +7530,6 @@ msgstr ""
 msgid "Offline"
 msgstr ""
 
-msgid "Offset"
-msgstr "오프셋"
-
 msgid "On Grace"
 msgstr ""
 
@@ -7368,6 +7554,10 @@ msgstr ""
 msgid "One or many metrics to display"
 msgstr ""
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "주석 레이어"
+
 msgid "One or more columns already exist"
 msgstr "하나 이상의 칼럼이 이미 존재합니다"
 
@@ -7395,12 +7585,6 @@ msgstr ""
 msgid "One or more parameters specified in the query are missing."
 msgstr ""
 
-msgid "One ore more annotation layers failed loading."
-msgstr ""
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr ""
-
 msgid "Only Total"
 msgstr ""
 
@@ -7413,9 +7597,6 @@ msgstr ""
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
 
-msgid "Only selected panels will be affected by this filter"
-msgstr ""
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7495,15 +7676,19 @@ msgstr "주석"
 msgid "Or choose from a list of other databases we support:"
 msgstr ""
 
-msgid "Order by entity id"
-msgstr ""
-
 msgid "Order results by selected columns"
 msgstr ""
 
 msgid "Ordering"
 msgstr ""
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 #, fuzzy
 msgid "Orientation"
 msgstr "주석"
@@ -7616,6 +7801,9 @@ msgid ""
 " or username."
 msgstr ""
 
+msgid "PDF download failed, please refresh and try again."
+msgstr ""
+
 msgid "Page length"
 msgstr ""
 
@@ -7675,6 +7863,14 @@ msgstr ""
 msgid "Password"
 msgstr "비밀번호"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "데이터소스"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "대시보드가 존재하지 않습니다"
+
 msgid "Paste Private Key here"
 msgstr ""
 
@@ -7734,6 +7930,14 @@ msgstr ""
 msgid "Periods must be a whole number"
 msgstr ""
 
+#, fuzzy
+msgid "Permissions"
+msgstr "표현식"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr ""
 
@@ -7749,9 +7953,6 @@ msgstr ""
 msgid "Physical (table or view)"
 msgstr ""
 
-msgid "Physical dataset"
-msgstr "데이터소스 선택"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
 
@@ -7773,15 +7974,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr ""
 
-msgid "Pick at least one field for [Series]"
-msgstr ""
-
 msgid "Pick at least one metric"
 msgstr "적어도 하나의 메트릭을 선택하세요"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-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."
@@ -7794,9 +7989,8 @@ msgstr ""
 msgid "Pie Chart"
 msgstr "차트 이동"
 
-#, fuzzy
-msgid "Pie Chart (legacy)"
-msgstr "차트 보기"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr ""
@@ -7807,6 +8001,13 @@ msgstr ""
 msgid "Pin"
 msgstr ""
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "삭제"
+
+msgid "Pin Right"
+msgstr ""
+
 msgid "Pivot Table"
 msgstr "피봇 테이블"
 
@@ -7856,6 +8057,9 @@ msgid ""
 "your query again."
 msgstr ""
 
+msgid "Please choose a valid value"
+msgstr ""
+
 #, fuzzy
 msgid "Please choose at least one groupby"
 msgstr "적어도 하나의 'Group by'필드를 선택하세요"
@@ -7863,13 +8067,25 @@ msgstr "적어도 하나의 'Group by'필드를 선택하세요"
 msgid "Please confirm"
 msgstr ""
 
-msgid "Please confirm the overwrite values."
+msgid "Please confirm the overwrite values."
+msgstr ""
+
+msgid "Please confirm your password"
+msgstr ""
+
+msgid "Please enter a SQLAlchemy URI to test"
+msgstr ""
+
+msgid "Please enter a valid email address"
+msgstr ""
+
+msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
-msgid "Please enter a SQLAlchemy URI to test"
+msgid "Please provide a valid range"
 msgstr ""
 
-msgid "Please enter valid text. Spaces alone are not permitted."
+msgid "Please provide a value within range"
 msgstr ""
 
 msgid "Please re-enter the password."
@@ -7883,9 +8099,6 @@ msgid "Please reach out to the Chart Owner for assistance."
 msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] ""
 
-msgid "Please save the query to enable sharing"
-msgstr ""
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
 
@@ -7960,9 +8173,6 @@ msgstr ""
 msgid "Populate \"Default value\" to enable this control"
 msgstr ""
 
-msgid "Population age data"
-msgstr ""
-
 #, fuzzy
 msgid "Port"
 msgstr "생성자"
@@ -8003,12 +8213,6 @@ msgstr ""
 msgid "Pre-filter is required"
 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 ""
-
 msgid "Predictive"
 msgstr ""
 
@@ -8028,10 +8232,6 @@ msgstr "데이터 미리보기"
 msgid "Preview uploaded file"
 msgstr "엑셀 업로드"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr ""
-
 msgid "Previous"
 msgstr ""
 
@@ -8081,18 +8281,13 @@ msgstr ""
 msgid "Progressive"
 msgstr ""
 
-msgid "Propagate"
-msgstr ""
+#, fuzzy
+msgid "Project Id"
+msgstr "생성자"
 
 msgid "Proportional"
 msgstr ""
 
-msgid "Public and privately shared sheets"
-msgstr ""
-
-msgid "Publicly shared sheets only"
-msgstr ""
-
 msgid "Published"
 msgstr ""
 
@@ -8112,9 +8307,6 @@ msgstr "값은 0보다 커야합니다"
 msgid "Put the labels outside of the pie?"
 msgstr ""
 
-msgid "Put the labels outside the pie?"
-msgstr ""
-
 msgid "Put your code here"
 msgstr ""
 
@@ -8227,10 +8419,6 @@ msgstr ""
 msgid "Radius in miles"
 msgstr ""
 
-#, python-format
-msgid "Ran %s"
-msgstr ""
-
 #, fuzzy
 msgid "Range"
 msgstr "관리"
@@ -8262,18 +8450,9 @@ msgstr "생성자"
 msgid "Raw records"
 msgstr ""
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 msgid "Recently modified"
 msgstr ""
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 msgid "Recents"
 msgstr ""
 
@@ -8292,9 +8471,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr ""
-
 msgid "Redo the action"
 msgstr ""
 
@@ -8334,6 +8510,10 @@ msgstr "새로고침 간격"
 msgid "Refresh interval saved"
 msgstr "새로고침 간격"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "테이블 선택"
+
 msgid "Refresh the default values"
 msgstr ""
 
@@ -8392,8 +8572,9 @@ msgid "Remove table preview"
 msgstr ""
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr ""
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
 
 msgid "Rename tab"
 msgstr ""
@@ -8404,10 +8585,9 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
-msgstr ""
-
-msgid "Rendering"
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
 msgid "Replace"
@@ -8510,6 +8690,9 @@ msgstr "표현식"
 msgid "Repulsion strength between nodes"
 msgstr ""
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "부적절한 요청입니다 : %(error)s"
@@ -8541,6 +8724,10 @@ msgstr ""
 msgid "Reset"
 msgstr ""
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "컬럼 목록"
+
 msgid "Reset state"
 msgstr ""
 
@@ -8567,6 +8754,10 @@ msgstr ""
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr ""
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "검색 결과"
+
 msgid "Return to specific datetime."
 msgstr ""
 
@@ -8608,6 +8799,28 @@ msgstr ""
 msgid "Role"
 msgstr "역할"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "테이블 명"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "데이터소스"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "데이터소스"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "데이터소스 선택"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "역할"
 
@@ -8681,9 +8894,6 @@ msgstr ""
 msgid "Rows subtotal position"
 msgstr ""
 
-msgid "Rows to Read"
-msgstr ""
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "컬럼 보기"
@@ -8752,14 +8962,12 @@ msgstr ""
 msgid "SQL Copied!"
 msgstr "복사됨!"
 
-msgid "SQL Expression"
-msgstr "SQL 표현식"
-
 msgid "SQL Lab"
 msgstr "SQL Lab"
 
-msgid "SQL Lab View"
-msgstr ""
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "저장된 Query"
 
 #, python-format
 msgid ""
@@ -8853,20 +9061,10 @@ msgstr "데이터베이스를 생성할 수 없습니다."
 msgid "Samples for datasource could not be retrieved."
 msgstr "데이터베이스를 생성할 수 없습니다."
 
-msgid "Sankey"
-msgstr ""
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "차트 보기"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "차트 보기"
-
-msgid "Sankey Diagram with Loops"
-msgstr ""
-
 #, fuzzy
 msgid "Satellite"
 msgstr "테이블 추가"
@@ -8933,9 +9131,6 @@ msgstr ""
 msgid "Save query"
 msgstr "Query 저장"
 
-msgid "Save the query to enable this feature"
-msgstr ""
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
 
@@ -8965,6 +9160,9 @@ msgstr "저장된 쿼리를 찾을 수 없습니다."
 msgid "Saved query parameters are invalid."
 msgstr "차트의 파라미터가 부적절합니다."
 
+msgid "Saving..."
+msgstr ""
+
 msgid "Scale and Move"
 msgstr ""
 
@@ -9021,9 +9219,6 @@ msgstr "스키마"
 msgid "Schema cache timeout"
 msgstr "차트 유형"
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr ""
-
 msgid "Schemas allowed for File upload"
 msgstr ""
 
@@ -9112,9 +9307,6 @@ msgstr "30초"
 msgid "Seconds value"
 msgstr "30초"
 
-msgid "Secure Extra"
-msgstr "보안"
-
 msgid "Secure extra"
 msgstr "보안"
 
@@ -9214,6 +9406,10 @@ msgstr ""
 msgid "Select a sheet name from the uploaded file"
 msgstr ""
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "데이터베이스 선택"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -9233,7 +9429,7 @@ msgstr "테이블 선택"
 msgid "Select all items"
 msgstr "테이블 선택"
 
-msgid "Select any columns for metadata inspection"
+msgid "Select an aggregation method to apply to the metric."
 msgstr ""
 
 msgid "Select catalog or type to search catalogs"
@@ -9262,6 +9458,9 @@ msgstr ""
 msgid "Select column"
 msgstr "컬럼 목록"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr "드롭다운 목록에서 날짜로 처리할 열 이름을 선택합니다."
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9352,6 +9551,14 @@ msgstr ""
 msgid "Select owners"
 msgstr ""
 
+#, fuzzy
+msgid "Select page size"
+msgstr "테이블 선택"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "필터"
+
 #, fuzzy
 msgid "Select saved metrics"
 msgstr "저장된 Query"
@@ -9367,9 +9574,19 @@ msgstr ""
 msgid "Select scheme"
 msgstr "테이블 선택"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr ""
 
+#, fuzzy
+msgid "Select tab"
+msgstr "테이블 선택"
+
 msgid "Select table or type to search tables"
 msgstr ""
 
@@ -9396,12 +9613,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr "테이블 선택"
 
-msgid "Select the number of bins for the histogram"
-msgstr ""
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr ""
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9424,9 +9635,6 @@ msgstr ""
 msgid "Send as text"
 msgstr ""
 
-msgid "Send range filter events to other charts"
-msgstr ""
-
 msgid "September"
 msgstr ""
 
@@ -9439,12 +9647,6 @@ msgstr ""
 msgid "Series Height"
 msgstr ""
 
-msgid "Series Limit Sort By"
-msgstr ""
-
-msgid "Series Limit Sort Descending"
-msgstr ""
-
 #, fuzzy
 msgid "Series Order"
 msgstr "저장된 Query"
@@ -9476,6 +9678,9 @@ msgstr ""
 msgid "Service Account"
 msgstr ""
 
+msgid "Service version"
+msgstr ""
+
 msgid "Set auto-refresh interval"
 msgstr "새로고침 간격"
 
@@ -9504,6 +9709,10 @@ msgstr ""
 msgid "Settings for time series"
 msgstr ""
 
+#, fuzzy
+msgid "Shape"
+msgstr "관리"
+
 msgid "Share"
 msgstr "Query 공유"
 
@@ -9567,18 +9776,9 @@ msgstr ""
 msgid "Show Cell bars"
 msgstr "차트 추가"
 
-msgid "Show Chart"
-msgstr "차트 보기"
-
-msgid "Show Column"
-msgstr "컬럼 보기"
-
 msgid "Show Dashboard"
 msgstr "대시보드 보기"
 
-msgid "Show Database"
-msgstr "데이터베이스 보기"
-
 #, fuzzy
 msgid "Show Labels"
 msgstr "테이블 보기"
@@ -9589,9 +9789,6 @@ msgstr "컬럼 보기"
 msgid "Show Markers"
 msgstr ""
 
-msgid "Show Metric"
-msgstr "메트릭 보기"
-
 #, fuzzy
 msgid "Show Metric Names"
 msgstr "메트릭 보기"
@@ -9600,9 +9797,6 @@ msgstr "메트릭 보기"
 msgid "Show Range Filter"
 msgstr "테이블 추가"
 
-msgid "Show Table"
-msgstr "테이블 보기"
-
 msgid "Show Timestamp"
 msgstr ""
 
@@ -9640,9 +9834,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "컬럼 보기"
 
-msgid "Show all..."
-msgstr ""
-
 msgid "Show axis line ticks"
 msgstr ""
 
@@ -9668,6 +9859,10 @@ msgstr ""
 msgid "Show empty columns"
 msgstr "컬럼 수정"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "메트릭 보기"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9690,9 +9885,6 @@ msgstr ""
 msgid "Show less columns"
 msgstr "컬럼 수정"
 
-msgid "Show less..."
-msgstr ""
-
 msgid "Show minor ticks on axes."
 msgstr ""
 
@@ -9733,6 +9925,10 @@ msgstr "차트 보기"
 msgid "Show the value on top of the bar"
 msgstr ""
 
+#, fuzzy
+msgid "Show total"
+msgstr "컬럼 보기"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9767,7 +9963,7 @@ msgid ""
 msgstr ""
 
 #, python-format
-msgid "Showing %s of %s"
+msgid "Showing %s of %s items"
 msgstr ""
 
 msgid "Shows a list of all series available at that point in time"
@@ -9804,16 +10000,13 @@ msgstr "원본 값"
 msgid "Single value type"
 msgstr ""
 
-msgid "Size of edge symbols"
-msgstr ""
-
-msgid "Size of marker. Also applies to forecast observations."
+msgid "Size in pixels"
 msgstr ""
 
-msgid "Sizes of vehicles"
+msgid "Size of edge symbols"
 msgstr ""
 
-msgid "Skip Rows"
+msgid "Size of marker. Also applies to forecast observations."
 msgstr ""
 
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
@@ -9885,9 +10078,6 @@ msgstr ""
 msgid "Sorry, something went wrong. Try again later."
 msgstr ""
 
-msgid "Sorry, there appears to be no data"
-msgstr ""
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr ""
@@ -9905,10 +10095,6 @@ msgstr ""
 msgid "Sort"
 msgstr ""
 
-#, fuzzy
-msgid "Sort Bars"
-msgstr "대시보드 가져오기"
-
 msgid "Sort Descending"
 msgstr ""
 
@@ -9933,9 +10119,6 @@ msgstr ""
 msgid "Sort ascending"
 msgstr ""
 
-msgid "Sort bars by x labels."
-msgstr ""
-
 msgid "Sort by"
 msgstr ""
 
@@ -9963,6 +10146,10 @@ msgstr "필터"
 msgid "Sort metric"
 msgstr "메트릭"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "Query 공유"
+
 msgid "Sort rows by"
 msgstr ""
 
@@ -9976,10 +10163,6 @@ msgstr "차트 유형"
 msgid "Source"
 msgstr ""
 
-#, fuzzy
-msgid "Source / Target"
-msgstr "데이터소스 명"
-
 msgid "Source SQL"
 msgstr ""
 
@@ -10025,9 +10208,6 @@ msgstr "저장된 Query"
 msgid "Stack"
 msgstr ""
 
-msgid "Stack Trace:"
-msgstr ""
-
 msgid "Stack series"
 msgstr ""
 
@@ -10043,9 +10223,6 @@ msgstr ""
 msgid "Stacked Style"
 msgstr ""
 
-msgid "Stacked style"
-msgstr ""
-
 msgid "Standard time series"
 msgstr ""
 
@@ -10146,9 +10323,6 @@ msgstr ""
 msgid "Strength to pull the graph toward center"
 msgstr ""
 
-msgid "Stretched style"
-msgstr ""
-
 #, fuzzy
 msgid "Stroke Color"
 msgstr "포트"
@@ -10172,15 +10346,19 @@ msgstr ""
 msgid "Subdomain"
 msgstr ""
 
-msgid "Subheader"
-msgstr ""
-
 msgid "Subheader Font Size"
 msgstr ""
 
 msgid "Submit"
 msgstr ""
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "제목"
+
+msgid "Subtitle Font Size"
+msgstr ""
+
 msgid "Subtotal"
 msgstr ""
 
@@ -10236,9 +10414,6 @@ msgstr ""
 msgid "Superset chart"
 msgstr "Superset 튜토리얼"
 
-msgid "Superset dashboard"
-msgstr "대시보드 저장"
-
 msgid "Superset encountered an error while running a command."
 msgstr ""
 
@@ -10250,9 +10425,6 @@ msgstr "이슈 1002 - 데이터베이스에 예상치 못한 에러가 발생했
 msgid "Supported databases"
 msgstr "데이터베이스 선택"
 
-msgid "Survey Responses"
-msgstr ""
-
 #, fuzzy
 msgid "Swap dataset"
 msgstr "데이터소스 선택"
@@ -10266,6 +10438,12 @@ msgid ""
 "well."
 msgstr ""
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr ""
 
@@ -10275,9 +10453,20 @@ msgstr ""
 msgid "Symbol size"
 msgstr ""
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr ""
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr ""
 
@@ -10288,9 +10477,6 @@ msgstr ""
 msgid "TABLES"
 msgstr ""
 
-msgid "TEMPORAL X-AXIS"
-msgstr ""
-
 msgid "TEMPORAL_RANGE"
 msgstr ""
 
@@ -10326,6 +10512,10 @@ msgid ""
 "connection, schema, and table name"
 msgstr ""
 
+#, fuzzy
+msgid "Table actions"
+msgstr "컬럼 수정"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10339,6 +10529,10 @@ msgstr "차트 유형"
 msgid "Table columns"
 msgstr "컬럼 수정"
 
+#, fuzzy
+msgid "Table name"
+msgstr "테이블 명"
+
 msgid "Table name undefined"
 msgstr "테이블 명이 정해지지 않았습니다"
 
@@ -10410,11 +10604,6 @@ msgstr "데이터베이스를 삭제할 수 없습니다."
 msgid "Tags"
 msgstr "상태"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-
 #, fuzzy
 msgid "Target"
 msgstr "시작 시간"
@@ -10443,6 +10632,9 @@ msgid ""
 "coming from the controls."
 msgstr ""
 
+msgid "Temporal X-Axis"
+msgstr ""
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10487,9 +10679,6 @@ msgid ""
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10521,6 +10710,10 @@ msgstr "주석 레이어"
 msgid "The annotation has been updated"
 msgstr "주석 레이어"
 
+#, fuzzy
+msgid "The background color of the charts."
+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."
@@ -10550,6 +10743,9 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr ""
 
+msgid "The color of the elements border"
+msgstr ""
+
 msgid "The color of the isoband"
 msgstr ""
 
@@ -10564,6 +10760,12 @@ msgid ""
 "        Edit the color scheme in the dashboard properties."
 msgstr ""
 
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+
 msgid "The column header label"
 msgstr ""
 
@@ -10576,6 +10778,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr ""
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10587,18 +10795,9 @@ msgstr ""
 msgid "The data source seems to have been deleted"
 msgstr ""
 
-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 ""
-
-#, 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 ""
+#, fuzzy
+msgid "The database"
+msgstr "데이터베이스 선택"
 
 msgid "The database columns that contains lines information"
 msgstr ""
@@ -10634,12 +10833,9 @@ msgstr "데이터베이스를 삭제할 수 없습니다."
 msgid "The database was not found."
 msgstr "데이터베이스를 찾을 수 없습니다."
 
-#, 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 ""
+#, fuzzy
+msgid "The dataset"
+msgstr "데이터소스 선택"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr ""
@@ -10698,6 +10894,15 @@ msgid ""
 "call."
 msgstr ""
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10715,6 +10920,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr ""
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10747,20 +10955,12 @@ msgstr ""
 msgid "The id of the active 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'"
+msgid "The layer attribution"
 msgstr ""
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10793,6 +10993,18 @@ msgid ""
 "periods"
 msgstr ""
 
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr ""
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "컬럼 수정"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 #, fuzzy
 msgid "The name of the rule must be unique"
 msgstr "새 차트 생성"
@@ -10985,6 +11197,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr ""
 
@@ -11022,10 +11237,14 @@ msgstr ""
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "주석 레이어"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
+msgid "The service url of the layer"
 msgstr ""
 
 msgid "The size of each cell in meters"
@@ -11034,6 +11253,9 @@ msgstr ""
 msgid "The size of the square cell, in pixels"
 msgstr ""
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr ""
 
@@ -11052,12 +11274,7 @@ msgstr ""
 #, python-format
 msgid ""
 "The table \"%(table_name)s\" does not exist. A valid table must be used "
-"to run this query."
-msgstr ""
-
-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."
+"to run this query."
 msgstr ""
 
 msgid "The table was deleted or renamed in the database."
@@ -11104,6 +11321,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr ""
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "새 차트 생성"
+
 msgid "The type of visualization to display"
 msgstr ""
 
@@ -11126,12 +11347,24 @@ msgstr "메트릭 '%(metric)s' 이 존재하지 않습니다."
 msgid "The username provided when connecting to a database is not valid."
 msgstr ""
 
+msgid "The version of the service"
+msgstr ""
+
+msgid "The visible title of the layer"
+msgstr ""
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr ""
 
 msgid "The width of the Isoline in pixels"
 msgstr ""
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+msgid "The width of the elements border"
+msgstr ""
+
 msgid "The width of the lines"
 msgstr ""
 
@@ -11148,9 +11381,6 @@ msgstr ""
 msgid "There are no components added to this tab"
 msgstr ""
 
-msgid "There are no databases available"
-msgstr ""
-
 msgid "There are no filters in this dashboard."
 msgstr ""
 
@@ -11163,6 +11393,9 @@ msgid ""
 " or a typo."
 msgstr "이슈 1003 - SQL 쿼리에 문법 오류가 있습니다. 오탈자가 있는지 확인하세요."
 
+msgid "There is currently no information to display."
+msgstr ""
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11189,6 +11422,10 @@ msgstr ""
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
@@ -11206,6 +11443,10 @@ msgstr ""
 msgid "There was an error loading the tables"
 msgstr ""
 
+#, fuzzy
+msgid "There was an error retrieving dashboard tabs."
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr ""
@@ -11213,6 +11454,10 @@ msgstr ""
 msgid "There was an error with your request"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다."
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr ""
@@ -11296,21 +11541,9 @@ msgstr ""
 msgid "There was an issue previewing the selected query. %s"
 msgstr ""
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr ""
-
 msgid "These are the datasets this filter will be applied to."
 msgstr ""
 
-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 ""
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11324,12 +11557,18 @@ msgstr ""
 msgid "This action will permanently delete the layer."
 msgstr ""
 
+msgid "This action will permanently delete the role."
+msgstr ""
+
 msgid "This action will permanently delete the saved query."
 msgstr ""
 
 msgid "This action will permanently delete the template."
 msgstr ""
 
+msgid "This action will permanently delete the user."
+msgstr ""
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11354,11 +11593,6 @@ msgid ""
 "source. "
 msgstr ""
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-
 msgid "This column might be incompatible with current dataset"
 msgstr ""
 
@@ -11425,6 +11659,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr ""
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 
@@ -11442,6 +11682,9 @@ msgstr ""
 msgid "This defines the element to be plotted on the chart"
 msgstr ""
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11452,11 +11695,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr ""
-
 msgid "This filter might be incompatible with current dataset"
 msgstr ""
 
@@ -11486,12 +11724,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr ""
 
-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 ""
-
 msgid "This metric might be incompatible with current dataset"
 msgstr ""
 
@@ -11530,6 +11762,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr ""
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr ""
 
@@ -11610,9 +11845,6 @@ msgstr "D3 포멧"
 msgid "Time Series"
 msgstr "컬럼 수정"
 
-msgid "Time Series - Bar Chart"
-msgstr ""
-
 msgid "Time Series - Line Chart"
 msgstr ""
 
@@ -11628,9 +11860,6 @@ msgstr ""
 msgid "Time Series - Period Pivot"
 msgstr ""
 
-msgid "Time Series - Stacked"
-msgstr ""
-
 #, fuzzy
 msgid "Time Series Options"
 msgstr "컬럼 수정"
@@ -11724,17 +11953,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr ""
 
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "차트 보기"
-
-#, fuzzy
-msgid "Time-series Bar Chart (legacy)"
-msgstr "시계열 테이블"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr ""
-
 #, fuzzy
 msgid "Time-series Percent Change"
 msgstr "시계열 테이블"
@@ -11754,9 +11972,6 @@ msgstr ""
 msgid "Timezone"
 msgstr ""
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr ""
-
 msgid "Timezone selector"
 msgstr ""
 
@@ -11778,6 +11993,11 @@ msgstr "데이터소스"
 msgid "Title or Slug"
 msgstr ""
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr ""
 
@@ -11822,6 +12042,9 @@ msgstr ""
 msgid "Total (%(aggregatorName)s)"
 msgstr ""
 
+msgid "Total (Sum)"
+msgstr ""
+
 #, fuzzy
 msgid "Total value"
 msgstr "원본 값"
@@ -11932,9 +12155,6 @@ msgstr ""
 msgid "Type is required"
 msgstr ""
 
-msgid "Type of Google Sheets allowed"
-msgstr ""
-
 msgid "Type of comparison, value difference or percentage"
 msgstr ""
 
@@ -12008,9 +12228,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr ""
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr ""
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr ""
 
@@ -12041,6 +12267,9 @@ msgstr "표현식"
 msgid "Unexpected time range: %(error)s"
 msgstr ""
 
+msgid "Unhide"
+msgstr ""
+
 msgid "Unknown"
 msgstr ""
 
@@ -12080,6 +12309,9 @@ msgstr "알 수 없는 에러"
 msgid "Unknown value"
 msgstr "알 수 없는 에러"
 
+msgid "Unpin"
+msgstr ""
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr ""
@@ -12148,10 +12380,6 @@ msgstr "컬럼 추가"
 msgid "Upload Columnar file to database"
 msgstr "차트 수정"
 
-#, fuzzy
-msgid "Upload Credentials"
-msgstr "엑셀 업로드"
-
 #, fuzzy
 msgid "Upload Enabled"
 msgstr "엑셀 업로드"
@@ -12175,6 +12403,10 @@ msgstr "차트 수정"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "엑셀 업로드"
+
 #, fuzzy
 msgid "Upload file to database"
 msgstr "차트 수정"
@@ -12230,10 +12462,11 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr ""
 
-msgid "Use date formatting even when metric value is not a timestamp"
-msgstr ""
+#, fuzzy
+msgid "Use current extent"
+msgstr "Query 실행"
 
-msgid "Use legacy datasource editor"
+msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 
 msgid "Use metrics as a top level group for columns or for rows"
@@ -12245,11 +12478,6 @@ msgstr ""
 msgid "Use the Advanced Analytics options below"
 msgstr ""
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-
 msgid "Use the edit button to change this field"
 msgstr ""
 
@@ -12286,10 +12514,24 @@ msgstr ""
 msgid "User query"
 msgstr "Query 공유"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 #, fuzzy
 msgid "Username"
 msgstr "Query 검색"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "데이터소스"
+
+#, fuzzy
+msgid "Users"
+msgstr "저장된 Query"
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
 
@@ -12311,6 +12553,10 @@ msgid ""
 "funnels and pipelines."
 msgstr ""
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr ""
 
@@ -12337,10 +12583,17 @@ msgstr ""
 msgid "Value format"
 msgstr ""
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "값은 0보다 커야합니다"
+
 #, fuzzy
 msgid "Value is required"
 msgstr "데이터소스"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "값은 0보다 커야합니다"
@@ -12359,12 +12612,6 @@ msgid ""
 "show relevant values"
 msgstr ""
 
-msgid "Vehicle Types"
-msgstr ""
-
-msgid "Verbose Name"
-msgstr ""
-
 msgid "Version"
 msgstr ""
 
@@ -12377,9 +12624,6 @@ msgstr ""
 msgid "Vertical (Left)"
 msgstr ""
 
-msgid "Video game consoles"
-msgstr ""
-
 #, fuzzy
 msgid "View"
 msgstr "데이터 미리보기"
@@ -12425,9 +12669,6 @@ msgstr ""
 msgid "Virtual (SQL)"
 msgstr ""
 
-msgid "Virtual dataset"
-msgstr "차트 수정"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr ""
 
@@ -12464,11 +12705,6 @@ msgid ""
 "grid view."
 msgstr ""
 
-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."
@@ -12513,13 +12749,6 @@ msgid ""
 "instead."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -12534,6 +12763,12 @@ msgstr "시각화 유형"
 msgid "WED"
 msgstr ""
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr ""
@@ -12548,9 +12783,6 @@ msgstr ""
 msgid "Warning"
 msgstr ""
 
-msgid "Warning Message"
-msgstr "경고 메시지"
-
 msgid "Warning!"
 msgstr ""
 
@@ -12680,11 +12912,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr ""
 
-msgid ""
-"When allowing CREATE TABLE AS option in SQL Lab, this option forces the "
-"table to be created in this schema"
-msgstr ""
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr ""
 
@@ -12705,6 +12932,11 @@ msgid ""
 "to the main datetime column."
 msgstr ""
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -12719,20 +12951,14 @@ msgstr "'Group By'를 사용 할 때 오직 하나의 메트릭만 사용 가능
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
 
-msgid "When using this option, default value can’t be set"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
 msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr ""
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr ""
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -12770,6 +12996,9 @@ msgstr ""
 msgid "Whether to display bubbles on top of countries"
 msgstr ""
 
+msgid "Whether to display in the chart"
+msgstr ""
+
 msgid "Whether to display the aggregate count"
 msgstr ""
 
@@ -12779,11 +13008,6 @@ msgstr ""
 msgid "Whether to display the labels."
 msgstr ""
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-
 msgid "Whether to display the legend (toggles)"
 msgstr ""
 
@@ -12799,6 +13023,9 @@ msgstr ""
 msgid "Whether to display the numerical values within the cells"
 msgstr ""
 
+msgid "Whether to display the percentage value in the tooltip"
+msgstr ""
+
 msgid "Whether to display the stroke"
 msgstr ""
 
@@ -12811,9 +13038,15 @@ msgstr ""
 msgid "Whether to display the tooltip labels."
 msgstr ""
 
+msgid "Whether to display the total value in the tooltip"
+msgstr ""
+
 msgid "Whether to display the trend line"
 msgstr ""
 
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr ""
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr ""
 
@@ -12838,32 +13071,15 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr ""
 
-msgid "Whether to make the histogram cumulative"
-msgstr ""
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr ""
-
-msgid "Whether to normalize the histogram"
-msgstr ""
-
 msgid "Whether to populate autocomplete filters options"
 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 ""
-
 msgid "Whether to show as Nightingale chart."
 msgstr ""
 
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr ""
 
 msgid "Whether to show minor ticks on the axis"
@@ -12884,9 +13100,6 @@ msgstr ""
 msgid "Whether to sort descending or ascending"
 msgstr ""
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr ""
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 
@@ -12946,9 +13159,6 @@ msgstr ""
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr ""
-
 msgid "X AXIS TITLE MARGIN"
 msgstr ""
 
@@ -12968,6 +13178,9 @@ msgstr ""
 msgid "X Axis Title"
 msgstr ""
 
+msgid "X Axis Title Margin"
+msgstr ""
+
 msgid "X Log Scale"
 msgstr ""
 
@@ -12990,6 +13203,9 @@ msgstr ""
 msgid "XScale Interval"
 msgstr "새로고침 간격"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr ""
 
@@ -13101,6 +13317,19 @@ msgid ""
 "want to overwrite?"
 msgstr ""
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr ""
 
@@ -13170,9 +13399,6 @@ msgstr ""
 msgid "You don't have access to this embedded dashboard config."
 msgstr ""
 
-msgid "You don't have any favorites yet!"
-msgstr ""
-
 msgid "You don't have permission to modify the value."
 msgstr ""
 
@@ -13245,6 +13471,9 @@ msgstr ""
 msgid "Your chart is ready to go!"
 msgstr ""
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr ""
 
@@ -13271,6 +13500,9 @@ msgstr ""
 msgid "Your query was updated"
 msgstr ""
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 #, fuzzy
 msgid "Your report could not be deleted"
 msgstr "차트를 삭제할 수 없습니다."
@@ -13285,6 +13517,9 @@ msgstr "설명"
 msgid "Zoom"
 msgstr ""
 
+msgid "Zoom level"
+msgstr ""
+
 msgid "Zoom level of the map"
 msgstr ""
 
@@ -13402,9 +13637,6 @@ msgstr ""
 msgid "auto"
 msgstr "생성자"
 
-msgid "auto (Smooth)"
-msgstr ""
-
 msgid "background"
 msgstr ""
 
@@ -13454,10 +13686,6 @@ msgstr "관리"
 msgid "chart"
 msgstr ""
 
-#, fuzzy
-msgid "charts"
-msgstr "차트"
-
 msgid "choose WHERE or HAVING..."
 msgstr ""
 
@@ -13468,6 +13696,9 @@ msgstr "필터"
 msgid "click here"
 msgstr ""
 
+msgid "close"
+msgstr ""
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr ""
 
@@ -13524,16 +13755,9 @@ msgstr ""
 msgid "cumsum"
 msgstr ""
 
-msgid "cumulative"
-msgstr ""
-
 msgid "dashboard"
 msgstr "대시보드"
 
-#, fuzzy
-msgid "dashboards"
-msgstr "대시보드"
-
 msgid "database"
 msgstr "데이터베이스"
 
@@ -13602,9 +13826,6 @@ msgstr ""
 msgid "default"
 msgstr "삭제"
 
-msgid "delete"
-msgstr "삭제"
-
 msgid "descendant"
 msgstr ""
 
@@ -13618,9 +13839,6 @@ msgstr "활동"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr ""
 
-msgid "draft"
-msgstr ""
-
 msgid "dttm"
 msgstr "날짜/시간"
 
@@ -13661,10 +13879,6 @@ msgstr ""
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr ""
 
-#, fuzzy
-msgid "e.g., a \"user id\" column"
-msgstr "컬럼 수정"
-
 #, fuzzy
 msgid "edit mode"
 msgstr "Query 검색"
@@ -13676,6 +13890,10 @@ msgstr ""
 msgid "entries"
 msgstr "저장된 Query"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "저장된 Query"
+
 #, fuzzy
 msgid "error"
 msgstr "%s 에러"
@@ -13749,11 +13967,6 @@ msgstr "Query 공유"
 msgid "hour"
 msgstr "시간"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-
 msgid "in"
 msgstr ""
 
@@ -13763,6 +13976,10 @@ msgstr ""
 msgid "invalid email"
 msgstr ""
 
+#, fuzzy
+msgid "is"
+msgstr "활동"
+
 msgid "is expected to be a Mapbox URL"
 msgstr ""
 
@@ -13772,6 +13989,22 @@ msgstr ""
 msgid "is expected to be an integer"
 msgstr ""
 
+#, python-format
+msgid ""
+"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 ""
+
+#, python-format
+msgid ""
+"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 ""
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr ""
 
@@ -13904,18 +14137,9 @@ msgstr ""
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr ""
-
-msgid "page_size.show"
-msgstr ""
-
 msgid "pending"
 msgstr ""
 
-msgid "percentile (exclusive)"
-msgstr ""
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -13925,22 +14149,19 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "CSS 템플릿을 찾을수 없습니다."
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 msgid "pixels"
 msgstr ""
 
 msgid "previous calendar month"
 msgstr ""
 
-msgid "previous calendar week"
+msgid "previous calendar quarter"
 msgstr ""
 
-msgid "previous calendar year"
+msgid "previous calendar week"
 msgstr ""
 
-msgid "published"
+msgid "previous calendar year"
 msgstr ""
 
 #, fuzzy
@@ -13963,9 +14184,6 @@ msgstr ""
 msgid "recent"
 msgstr ""
 
-msgid "recents"
-msgstr ""
-
 msgid "recipients"
 msgstr ""
 
@@ -13989,8 +14207,8 @@ msgid "running"
 msgstr ""
 
 #, fuzzy
-msgid "saved queries"
-msgstr "저장된 Query"
+msgid "save"
+msgstr "저장"
 
 #, fuzzy
 msgid "seconds"
@@ -14006,10 +14224,6 @@ msgid ""
 "series"
 msgstr ""
 
-#, fuzzy
-msgid "shift start date"
-msgstr "시작 시간"
-
 msgid "sql"
 msgstr ""
 
@@ -14068,10 +14282,6 @@ msgstr ""
 msgid "textarea"
 msgstr ""
 
-#, fuzzy
-msgid "to"
-msgstr "중지"
-
 #, fuzzy
 msgid "top"
 msgstr "중지"
@@ -14083,6 +14293,14 @@ msgstr ""
 msgid "unknown type icon"
 msgstr "알 수 없는 에러"
 
+#, fuzzy
+msgid "unset"
+msgstr "컬럼 추가"
+
+#, fuzzy
+msgid "updated"
+msgstr "분기"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14107,9 +14325,6 @@ msgstr ""
 msgid "view instructions"
 msgstr "10초"
 
-msgid "virtual"
-msgstr ""
-
 #, fuzzy
 msgid "viz type"
 msgstr "시각화 유형"
@@ -14146,3 +14361,6 @@ msgstr "년"
 
 msgid "zoom area"
 msgstr ""
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/messages.pot b/superset/translations/messages.pot
index e32e2b65976a3d19d342497affc2b31042057d07..cddc8896fbc77aaad8f1696c370331076325c0f6 100644
--- a/superset/translations/messages.pot
+++ b/superset/translations/messages.pot
@@ -16,23 +16,23 @@
 # under the License.
 
 # Translations template for Superset.
-# Copyright (C) 2024 Superset
+# Copyright (C) 2025 Superset
 # This file is distributed under the same license as the Superset project.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
 #
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: Superset VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -72,7 +72,10 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
 
@@ -90,9 +93,17 @@ msgstr ""
 msgid " a new one"
 msgstr ""
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr ""
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr ""
 
@@ -151,10 +162,7 @@ msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr ""
 
 #, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
+msgid "%(label)s file"
 msgstr ""
 
 #, python-format
@@ -169,22 +177,6 @@ msgstr ""
 msgid "%(object)s does not exist in this database."
 msgstr ""
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr ""
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr ""
@@ -200,13 +192,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr ""
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-
 #, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -215,10 +200,6 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#, python-format
-msgid "%(type)s File"
-msgstr ""
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -270,10 +251,6 @@ msgstr ""
 msgid "%s column(s)"
 msgstr ""
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -363,6 +340,10 @@ msgid ""
 "\n"
 msgstr ""
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr ""
 
@@ -423,6 +404,12 @@ msgstr ""
 msgid "10 minute"
 msgstr ""
 
+msgid "10/90 percentiles"
+msgstr ""
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr ""
 
@@ -519,6 +506,9 @@ msgstr ""
 msgid "5 seconds"
 msgstr ""
 
+msgid "5/95 percentiles"
+msgstr ""
+
 msgid "52 weeks"
 msgstr ""
 
@@ -585,9 +575,6 @@ msgstr ""
 msgid "A Big Number"
 msgstr ""
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr ""
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr ""
 
@@ -597,6 +584,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr ""
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -669,11 +659,6 @@ msgid ""
 "templating syntax"
 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 ""
 
@@ -770,25 +755,25 @@ msgstr ""
 msgid "Add CSS template"
 msgstr ""
 
-msgid "Add Chart"
+msgid "Add Dashboard"
 msgstr ""
 
-msgid "Add Column"
+msgid "Add Divider"
 msgstr ""
 
-msgid "Add Dashboard"
+msgid "Add Filter"
 msgstr ""
 
-msgid "Add Database"
+msgid "Add Layer"
 msgstr ""
 
 msgid "Add Log"
 msgstr ""
 
-msgid "Add Metric"
+msgid "Add Report"
 msgstr ""
 
-msgid "Add Report"
+msgid "Add Role"
 msgstr ""
 
 msgid "Add Rule"
@@ -797,6 +782,9 @@ msgstr ""
 msgid "Add Tag"
 msgstr ""
 
+msgid "Add User"
+msgstr ""
+
 msgid "Add a Plugin"
 msgstr ""
 
@@ -872,9 +860,6 @@ msgid ""
 "displayed in the filter."
 msgstr ""
 
-msgid "Add filters and dividers"
-msgstr ""
-
 msgid "Add item"
 msgstr ""
 
@@ -890,6 +875,9 @@ msgstr ""
 msgid "Add new formatter"
 msgstr ""
 
+msgid "Add or edit filters"
+msgstr ""
+
 msgid "Add required control values to preview chart"
 msgstr ""
 
@@ -911,12 +899,15 @@ msgstr ""
 msgid "Add to dashboard"
 msgstr ""
 
-msgid "Add/Edit Filters"
-msgstr ""
-
 msgid "Added"
 msgstr ""
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 #, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -932,9 +923,6 @@ msgstr ""
 msgid "Additional information"
 msgstr ""
 
-msgid "Additional metadata"
-msgstr ""
-
 msgid "Additional padding for legend."
 msgstr ""
 
@@ -998,6 +986,12 @@ msgstr ""
 msgid "Advanced-Analytics"
 msgstr ""
 
+msgid "Affected Charts"
+msgstr ""
+
+msgid "Affected Dashboards"
+msgstr ""
+
 msgid "After"
 msgstr ""
 
@@ -1028,6 +1022,9 @@ msgstr ""
 msgid "Aggregation"
 msgstr ""
 
+msgid "Aggregation Method"
+msgstr ""
+
 msgid "Aggregation function"
 msgstr ""
 
@@ -1105,6 +1102,10 @@ msgstr ""
 msgid "All"
 msgstr ""
 
+#, python-format
+msgid "All %s hidden columns"
+msgstr ""
+
 msgid "All Text"
 msgstr ""
 
@@ -1120,25 +1121,13 @@ msgstr ""
 msgid "All panels"
 msgstr ""
 
-msgid "All panels with this column will be affected by this filter"
-msgstr ""
-
 msgid "Allow CREATE TABLE AS"
 msgstr ""
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr ""
-
 msgid "Allow CREATE VIEW AS"
 msgstr ""
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr ""
-
-msgid "Allow Csv Upload"
-msgstr ""
-
-msgid "Allow DML"
+msgid "Allow DDL and DML"
 msgstr ""
 
 msgid "Allow changing catalogs"
@@ -1155,6 +1144,9 @@ msgstr ""
 msgid "Allow creation of new tables based on queries"
 msgstr ""
 
+msgid "Allow creation of new values"
+msgstr ""
+
 msgid "Allow creation of new views based on queries"
 msgstr ""
 
@@ -1169,26 +1161,22 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr ""
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-
 msgid "Allow node selections"
 msgstr ""
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr ""
 
-msgid "Allow this database to be explored"
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
 msgstr ""
 
-msgid "Allow this database to be queried in SQL Lab"
+msgid "Allow this database to be explored"
 msgstr ""
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
+msgid "Allow this database to be queried in SQL Lab"
 msgstr ""
 
 msgid "Allowed Domains (comma separated)"
@@ -1230,6 +1218,9 @@ msgstr ""
 msgid "An error has occurred"
 msgstr ""
 
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr ""
+
 msgid "An error occurred"
 msgstr ""
 
@@ -1239,6 +1230,9 @@ msgstr ""
 msgid "An error occurred when running alert query"
 msgstr ""
 
+msgid "An error occurred while accessing the copy link."
+msgstr ""
+
 msgid "An error occurred while accessing the value."
 msgstr ""
 
@@ -1251,6 +1245,9 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr ""
 
+msgid "An error occurred while creating the copy link."
+msgstr ""
+
 msgid "An error occurred while creating the data source"
 msgstr ""
 
@@ -1384,6 +1381,10 @@ msgid ""
 "button."
 msgstr ""
 
+#, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr ""
+
 msgid "An error occurred while updating the value."
 msgstr ""
 
@@ -1563,12 +1564,6 @@ msgstr ""
 msgid "Apply metrics on"
 msgstr ""
 
-msgid "Apply to all panels"
-msgstr ""
-
-msgid "Apply to specific panels"
-msgstr ""
-
 msgid "April"
 msgstr ""
 
@@ -1610,6 +1605,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected queries?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected roles?"
+msgstr ""
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr ""
 
@@ -1619,6 +1617,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected templates?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected users?"
+msgstr ""
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr ""
 
@@ -1655,13 +1656,10 @@ msgstr ""
 msgid "Assist"
 msgstr ""
 
-msgid "Associated Charts"
-msgstr ""
-
-msgid "Async Execution"
+msgid "Asynchronous query execution"
 msgstr ""
 
-msgid "Asynchronous query execution"
+msgid "Attribution"
 msgstr ""
 
 msgid "August"
@@ -1688,12 +1686,24 @@ msgstr ""
 msgid "Automatic Color"
 msgstr ""
 
+msgid "Autosize Column"
+msgstr ""
+
+msgid "Autosize all columns"
+msgstr ""
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr ""
 
 msgid "Average"
 msgstr ""
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr ""
 
@@ -1730,6 +1740,9 @@ msgstr ""
 msgid "Backend"
 msgstr ""
 
+msgid "Background Color"
+msgstr ""
+
 msgid "Backward values"
 msgstr ""
 
@@ -1745,9 +1758,6 @@ msgstr ""
 msgid "Bar Chart"
 msgstr ""
 
-msgid "Bar Chart (legacy)"
-msgstr ""
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
 
@@ -1760,10 +1770,22 @@ msgstr ""
 msgid "Base"
 msgstr ""
 
+msgid "Base exponent"
+msgstr ""
+
+msgid "Base height"
+msgstr ""
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+msgid "Base width"
+msgstr ""
+
 msgid "Based on a metric"
 msgstr ""
 
@@ -1783,9 +1805,6 @@ msgstr ""
 msgid "Batch editing %d filters:"
 msgstr ""
 
-msgid "Battery level over time"
-msgstr ""
-
 msgid "Be careful."
 msgstr ""
 
@@ -1807,6 +1826,12 @@ msgstr ""
 msgid "Bins"
 msgstr ""
 
+msgid "Border color"
+msgstr ""
+
+msgid "Border width"
+msgstr ""
+
 msgid "Bottom"
 msgstr ""
 
@@ -1911,9 +1936,6 @@ msgstr ""
 msgid "Business"
 msgstr ""
 
-msgid "Business Data Type"
-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"
@@ -1978,7 +2000,7 @@ msgstr ""
 msgid "CSS templates could not be deleted."
 msgstr ""
 
-msgid "CSV Upload"
+msgid "CSV upload"
 msgstr ""
 
 msgid "CTAS & CVAS SCHEMA"
@@ -1990,7 +2012,7 @@ msgid ""
 "last statement. Then, try running your query again."
 msgstr ""
 
-msgid "CTAS Schema"
+msgid "CUSTOM"
 msgstr ""
 
 msgid ""
@@ -2005,9 +2027,6 @@ msgstr ""
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr ""
 
-msgid "Cache Timeout"
-msgstr ""
-
 msgid "Cache Timeout (seconds)"
 msgstr ""
 
@@ -2052,9 +2071,6 @@ msgstr ""
 msgid "Can select multiple values"
 msgstr ""
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr ""
-
 msgid "Cancel"
 msgstr ""
 
@@ -2067,6 +2083,10 @@ msgstr ""
 msgid "Cannot delete a database that has datasets attached"
 msgstr ""
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr ""
 
@@ -2077,6 +2097,9 @@ msgstr ""
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr ""
 
+msgid "Cartodiagram"
+msgstr ""
+
 msgid "Catalog"
 msgstr ""
 
@@ -2153,10 +2176,10 @@ msgstr ""
 msgid "Change order of rows."
 msgstr ""
 
-msgid "Changed By"
+msgid "Changed by"
 msgstr ""
 
-msgid "Changed by"
+msgid "Changed on"
 msgstr ""
 
 msgid "Changes saved."
@@ -2206,9 +2229,6 @@ msgstr ""
 msgid "Chart %(id)s not found"
 msgstr ""
 
-msgid "Chart Cache Timeout"
-msgstr ""
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr ""
@@ -2303,6 +2323,9 @@ msgstr ""
 msgid "Chart properties updated"
 msgstr ""
 
+msgid "Chart size"
+msgstr ""
+
 msgid "Chart title"
 msgstr ""
 
@@ -2350,6 +2373,9 @@ msgstr ""
 msgid "Choose File"
 msgstr ""
 
+msgid "Choose a chart for displaying on the map"
+msgstr ""
+
 msgid "Choose a chart or dashboard not both"
 msgstr ""
 
@@ -2371,9 +2397,6 @@ msgstr ""
 msgid "Choose a source"
 msgstr ""
 
-msgid "Choose a source and a target"
-msgstr ""
-
 msgid "Choose a target"
 msgstr ""
 
@@ -2447,9 +2470,6 @@ msgstr ""
 msgid "Circular"
 msgstr ""
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2470,7 +2490,9 @@ msgstr ""
 msgid "Clear form"
 msgstr ""
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 
 msgid ""
@@ -2497,6 +2519,9 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr ""
 
+msgid "Click to add new layer"
+msgstr ""
+
 msgid "Click to cancel sorting"
 msgstr ""
 
@@ -2614,10 +2639,10 @@ msgstr ""
 msgid "Column Configuration"
 msgstr ""
 
-msgid "Column Data Types"
+msgid "Column Formatting"
 msgstr ""
 
-msgid "Column Formatting"
+msgid "Column Settings"
 msgstr ""
 
 msgid ""
@@ -2634,9 +2659,6 @@ msgstr ""
 msgid "Column data types"
 msgstr ""
 
-msgid "Column datatype"
-msgstr ""
-
 msgid "Column header tooltip"
 msgstr ""
 
@@ -2662,16 +2684,17 @@ msgid ""
 "label is used."
 msgstr ""
 
-msgid "Columnar Upload"
+msgid "Column type"
 msgstr ""
 
-msgid "Columns"
+msgid "Columnar upload"
 msgstr ""
 
-msgid "Columns To Be Parsed as Dates"
+msgid "Columns"
 msgstr ""
 
-msgid "Columns To Read"
+#, python-format
+msgid "Columns (%s)"
 msgstr ""
 
 #, python-format
@@ -2685,6 +2708,9 @@ msgstr ""
 msgid "Columns subtotal position"
 msgstr ""
 
+msgid "Columns to be parsed as dates"
+msgstr ""
+
 msgid "Columns to calculate distribution across."
 msgstr ""
 
@@ -2700,6 +2726,9 @@ msgstr ""
 msgid "Columns to group by on the rows"
 msgstr ""
 
+msgid "Columns to read"
+msgstr ""
+
 msgid "Combine metrics"
 msgstr ""
 
@@ -2734,17 +2763,6 @@ msgid ""
 "and color."
 msgstr ""
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-
 msgid "Comparison"
 msgstr ""
 
@@ -2802,18 +2820,27 @@ msgstr ""
 msgid "Configure the basics of your Annotation Layer."
 msgstr ""
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 
 msgid "Configure your how you overlay is displayed here."
 msgstr ""
 
+msgid "Confirm Password"
+msgstr ""
+
 msgid "Confirm overwrite"
 msgstr ""
 
 msgid "Confirm save"
 msgstr ""
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr ""
 
@@ -2844,9 +2871,6 @@ msgstr ""
 msgid "Connection failed, please check your connection settings."
 msgstr ""
 
-msgid "Connection looks good!"
-msgstr ""
-
 msgid "Content format"
 msgstr ""
 
@@ -2883,19 +2907,19 @@ msgstr ""
 msgid "Copy"
 msgstr ""
 
-msgid "Copy SELECT statement to the clipboard"
+msgid "Copy SELECT statement"
 msgstr ""
 
-msgid "Copy and Paste JSON credentials"
+msgid "Copy SELECT statement to the clipboard"
 msgstr ""
 
-msgid "Copy and paste the entire service account .json file here"
+msgid "Copy URL"
 msgstr ""
 
-msgid "Copy link"
+msgid "Copy and Paste JSON credentials"
 msgstr ""
 
-msgid "Copy message"
+msgid "Copy link"
 msgstr ""
 
 #, python-format
@@ -2914,6 +2938,9 @@ msgstr ""
 msgid "Copy query link to your clipboard"
 msgstr ""
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr ""
 
@@ -2929,6 +2956,9 @@ msgstr ""
 msgid "Copy to clipboard"
 msgstr ""
 
+msgid "Corner Radius"
+msgstr ""
+
 msgid "Correlation"
 msgstr ""
 
@@ -2958,6 +2988,9 @@ msgstr ""
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr ""
 
@@ -3047,6 +3080,9 @@ msgstr ""
 msgid "Creator"
 msgstr ""
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr ""
 
@@ -3126,6 +3162,9 @@ msgstr ""
 msgid "Custom color palettes"
 msgstr ""
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 msgid "Custom date"
 msgstr ""
 
@@ -3158,9 +3197,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr ""
 
-msgid "D3 Format"
-msgstr ""
-
 msgid "D3 format"
 msgstr ""
 
@@ -3219,6 +3255,18 @@ msgstr ""
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr ""
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+msgid "Dashboard cannot be favorited."
+msgstr ""
+
+msgid "Dashboard cannot be unfavorited."
+msgstr ""
+
+msgid "Dashboard color configuration could not be updated."
+msgstr ""
+
 msgid "Dashboard could not be deleted."
 msgstr ""
 
@@ -3231,6 +3279,9 @@ msgstr ""
 msgid "Dashboard imported"
 msgstr ""
 
+msgid "Dashboard native filters could not be patched."
+msgstr ""
+
 msgid "Dashboard parameters are invalid."
 msgstr ""
 
@@ -3271,9 +3322,6 @@ msgstr ""
 msgid "Data"
 msgstr ""
 
-msgid "Data Imported"
-msgstr ""
-
 msgid "Data Table"
 msgstr ""
 
@@ -3298,6 +3346,9 @@ msgstr ""
 msgid "Data for %s"
 msgstr ""
 
+msgid "Data imported"
+msgstr ""
+
 msgid "Data preview"
 msgstr ""
 
@@ -3451,13 +3502,6 @@ msgid ""
 "database table to the left or "
 msgstr ""
 
-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 "Datasets could not be deleted."
 msgstr ""
 
@@ -3491,9 +3535,6 @@ msgstr ""
 msgid "Date/Time"
 msgstr ""
 
-msgid "Datetime Format"
-msgstr ""
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3521,13 +3562,10 @@ msgstr ""
 msgid "December"
 msgstr ""
 
-msgid "Decides which column to sort the base axis by."
-msgstr ""
-
-msgid "Decides which measure to sort the base axis by."
+msgid "Decides which column or measure to sort the base axis by."
 msgstr ""
 
-msgid "Decimal Character"
+msgid "Decimal character"
 msgstr ""
 
 msgid "Deck.gl - 3D Grid"
@@ -3569,16 +3607,16 @@ msgstr ""
 msgid "Default Catalog"
 msgstr ""
 
-msgid "Default Endpoint"
-msgstr ""
-
 msgid "Default Schema"
 msgstr ""
 
 msgid "Default URL"
 msgstr ""
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
 
 msgid "Default Value"
@@ -3598,9 +3636,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr ""
 
-msgid "Default value is required"
-msgstr ""
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 
@@ -3645,9 +3680,6 @@ msgid ""
 "[Periods] text box"
 msgstr ""
 
-msgid "Defines how each series is broken down"
-msgstr ""
-
 msgid "Defines the grid size in pixels"
 msgstr ""
 
@@ -3701,9 +3733,15 @@ msgstr ""
 msgid "Delete Report?"
 msgstr ""
 
+msgid "Delete Role?"
+msgstr ""
+
 msgid "Delete Template?"
 msgstr ""
 
+msgid "Delete User?"
+msgstr ""
+
 msgid "Delete all Really?"
 msgstr ""
 
@@ -3722,12 +3760,18 @@ msgstr ""
 msgid "Delete query"
 msgstr ""
 
+msgid "Delete role"
+msgstr ""
+
 msgid "Delete template"
 msgstr ""
 
 msgid "Delete this container and save to remove this message."
 msgstr ""
 
+msgid "Delete user"
+msgstr ""
+
 msgid "Deleted"
 msgstr ""
 
@@ -3789,13 +3833,29 @@ msgstr[1] ""
 msgid "Deleted %s"
 msgstr ""
 
+#, python-format
+msgid "Deleted role: %s"
+msgstr ""
+
+#, python-format
+msgid "Deleted roles: %s"
+msgstr ""
+
+#, python-format
+msgid "Deleted user: %s"
+msgstr ""
+
+#, python-format
+msgid "Deleted users: %s"
+msgstr ""
+
 #, python-format
 msgid "Deleted: %s"
 msgstr ""
 
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 
 msgid "Delimited long & lat single column"
@@ -3807,18 +3867,12 @@ msgstr ""
 msgid "Delivery method"
 msgstr ""
 
-msgid "Demographics"
-msgstr ""
-
 msgid "Density"
 msgstr ""
 
 msgid "Dependent on"
 msgstr ""
 
-msgid "Deprecated"
-msgstr ""
-
 msgid "Description"
 msgstr ""
 
@@ -3908,21 +3962,24 @@ msgstr ""
 msgid "Discard"
 msgstr ""
 
-msgid "Display"
-msgstr ""
-
 msgid "Display Name"
 msgstr ""
 
 msgid "Display all"
 msgstr ""
 
+msgid "Display column in the chart"
+msgstr ""
+
 msgid "Display column level subtotal"
 msgstr ""
 
 msgid "Display column level total"
 msgstr ""
 
+msgid "Display column name"
+msgstr ""
+
 msgid "Display configuration"
 msgstr ""
 
@@ -3943,7 +4000,7 @@ msgstr ""
 msgid "Display row level total"
 msgstr ""
 
-msgid "Display settings"
+msgid "Display type icon"
 msgstr ""
 
 msgid ""
@@ -3959,9 +4016,6 @@ msgstr ""
 msgid "Distribution"
 msgstr ""
 
-msgid "Distribution - Bar Chart"
-msgstr ""
-
 msgid "Divider"
 msgstr ""
 
@@ -3989,9 +4043,18 @@ msgstr ""
 msgid "Download as image"
 msgstr ""
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr ""
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr ""
 
@@ -4084,6 +4147,13 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr ""
 
+msgid "Duplicate role"
+msgstr ""
+
+#, python-format
+msgid "Duplicate role %(name)s"
+msgstr ""
+
 msgid "Duplicate tab"
 msgstr ""
 
@@ -4096,29 +4166,12 @@ msgid ""
 "the cache. Note this defaults to the global timeout if undefined."
 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 ""
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-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."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4135,6 +4188,9 @@ msgstr ""
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr ""
 
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr ""
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr ""
 
@@ -4156,10 +4212,6 @@ msgstr ""
 msgid "ERROR"
 msgstr ""
 
-#, python-format
-msgid "ERROR: %s"
-msgstr ""
-
 msgid "Edge length"
 msgstr ""
 
@@ -4184,45 +4236,36 @@ msgstr ""
 msgid "Edit CSS template properties"
 msgstr ""
 
-msgid "Edit Chart"
-msgstr ""
-
 msgid "Edit Chart Properties"
 msgstr ""
 
-msgid "Edit Column"
-msgstr ""
-
 msgid "Edit Dashboard"
 msgstr ""
 
-msgid "Edit Database"
-msgstr ""
-
 msgid "Edit Dataset "
 msgstr ""
 
 msgid "Edit Log"
 msgstr ""
 
-msgid "Edit Metric"
-msgstr ""
-
 msgid "Edit Plugin"
 msgstr ""
 
 msgid "Edit Report"
 msgstr ""
 
-msgid "Edit Rule"
+msgid "Edit Role"
 msgstr ""
 
-msgid "Edit Table"
+msgid "Edit Rule"
 msgstr ""
 
 msgid "Edit Tag"
 msgstr ""
 
+msgid "Edit User"
+msgstr ""
+
 msgid "Edit annotation"
 msgstr ""
 
@@ -4259,6 +4302,9 @@ msgstr ""
 msgid "Edit query"
 msgstr ""
 
+msgid "Edit role"
+msgstr ""
+
 msgid "Edit template"
 msgstr ""
 
@@ -4271,6 +4317,9 @@ msgstr ""
 msgid "Edit time range"
 msgstr ""
 
+msgid "Edit user"
+msgstr ""
+
 msgid "Edited"
 msgstr ""
 
@@ -4296,6 +4345,12 @@ msgstr ""
 msgid "Elevation"
 msgstr ""
 
+msgid "Email"
+msgstr ""
+
+msgid "Email is required"
+msgstr ""
+
 msgid "Email reports active"
 msgstr ""
 
@@ -4311,6 +4366,9 @@ msgstr ""
 msgid "Embed dashboard"
 msgstr ""
 
+msgid "Embedded dashboard could not be deleted."
+msgstr ""
+
 msgid "Embedding deactivated."
 msgstr ""
 
@@ -4320,9 +4378,6 @@ msgstr ""
 msgid "Emphasis"
 msgstr ""
 
-msgid "Employment and education"
-msgstr ""
-
 msgid "Empty circle"
 msgstr ""
 
@@ -4344,9 +4399,6 @@ msgstr ""
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr ""
 
-msgid "Enable Filter Select"
-msgstr ""
-
 msgid "Enable cross-filtering"
 msgstr ""
 
@@ -4444,10 +4496,22 @@ msgstr ""
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr ""
 
-msgid "Entity"
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+msgid "Enter the user's first name"
 msgstr ""
 
-msgid "Entity ID"
+msgid "Enter the user's last name"
+msgstr ""
+
+msgid "Enter the user's username"
+msgstr ""
+
+msgid "Entity"
 msgstr ""
 
 msgid "Equal Date Sizes"
@@ -4462,6 +4526,13 @@ msgstr ""
 msgid "Error Fetching Tagged Objects"
 msgstr ""
 
+#, python-format
+msgid "Error deleting %s"
+msgstr ""
+
+msgid "Error faving chart"
+msgstr ""
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr ""
@@ -4484,6 +4555,9 @@ msgstr ""
 msgid "Error message"
 msgstr ""
 
+msgid "Error parsing"
+msgstr ""
+
 msgid "Error reading CSV file"
 msgstr ""
 
@@ -4496,6 +4570,18 @@ msgstr ""
 msgid "Error saving dataset"
 msgstr ""
 
+msgid "Error unfaving chart"
+msgstr ""
+
+msgid "Error while adding role!"
+msgstr ""
+
+msgid "Error while adding user!"
+msgstr ""
+
+msgid "Error while duplicating role!"
+msgstr ""
+
 msgid "Error while fetching charts"
 msgstr ""
 
@@ -4503,10 +4589,25 @@ msgstr ""
 msgid "Error while fetching data: %s"
 msgstr ""
 
+msgid "Error while fetching permissions"
+msgstr ""
+
+msgid "Error while fetching roles"
+msgstr ""
+
+msgid "Error while fetching users"
+msgstr ""
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr ""
 
+msgid "Error while updating role!"
+msgstr ""
+
+msgid "Error while updating user!"
+msgstr ""
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr ""
@@ -4530,15 +4631,6 @@ msgstr ""
 msgid "Event"
 msgstr ""
 
-msgid "Event Flow"
-msgstr ""
-
-msgid "Event Names"
-msgstr ""
-
-msgid "Event definition"
-msgstr ""
-
 msgid "Event flow"
 msgstr ""
 
@@ -4560,10 +4652,10 @@ msgstr ""
 msgid "Examples"
 msgstr ""
 
-msgid "Excel Upload"
+msgid "Excel file format cannot be determined"
 msgstr ""
 
-msgid "Excel file format cannot be determined"
+msgid "Excel upload"
 msgstr ""
 
 msgid "Exclude selected values"
@@ -4652,12 +4744,6 @@ msgstr ""
 msgid "Export to Pivoted .CSV"
 msgstr ""
 
-msgid "Export to YAML"
-msgstr ""
-
-msgid "Export to YAML?"
-msgstr ""
-
 msgid "Export to full .CSV"
 msgstr ""
 
@@ -4676,10 +4762,7 @@ msgstr ""
 msgid "Expose in SQL Lab"
 msgstr ""
 
-msgid "Expose this DB in SQL Lab"
-msgstr ""
-
-msgid "Expression"
+msgid "Extent"
 msgstr ""
 
 msgid "Extra"
@@ -4701,10 +4784,6 @@ msgid ""
 "\"warning_markdown\": \"This is a warning.\" }`."
 msgstr ""
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr ""
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr ""
 
@@ -4722,6 +4801,9 @@ msgstr ""
 msgid "FEB"
 msgstr ""
 
+msgid "FIT DATA"
+msgstr ""
+
 msgid "FRI"
 msgstr ""
 
@@ -4731,14 +4813,13 @@ msgstr ""
 msgid "Factor to multiply the metric by"
 msgstr ""
 
-msgid "Failed"
+msgid "Fail login count"
 msgstr ""
 
-msgid "Failed at retrieving results"
+msgid "Failed"
 msgstr ""
 
-#, python-format
-msgid "Failed at stopping query. %s"
+msgid "Failed at retrieving results"
 msgstr ""
 
 msgid "Failed to create report"
@@ -4769,6 +4850,9 @@ msgstr ""
 msgid "Failed to start remote query on a worker."
 msgstr ""
 
+msgid "Failed to stop query."
+msgstr ""
+
 msgid "Failed to tag items"
 msgstr ""
 
@@ -4791,9 +4875,6 @@ msgstr ""
 msgid "February"
 msgstr ""
 
-msgid "Fetch Values Predicate"
-msgstr ""
-
 msgid "Fetch data preview"
 msgstr ""
 
@@ -4818,13 +4899,10 @@ msgstr ""
 msgid "File"
 msgstr ""
 
-msgid "File Settings"
-msgstr ""
-
 msgid "File extension is not allowed."
 msgstr ""
 
-msgid "File size exceeds the maximum allowed size."
+msgid "File settings"
 msgstr ""
 
 msgid "File upload"
@@ -4890,9 +4968,6 @@ msgstr ""
 msgid "Filter your charts"
 msgstr ""
 
-msgid "Filterable"
-msgstr ""
-
 msgid "Filters"
 msgstr ""
 
@@ -4905,6 +4980,15 @@ msgstr ""
 msgid "Filters for comparison must have a value"
 msgstr ""
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+msgid "Filters for values greater than or equal."
+msgstr ""
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr ""
@@ -4929,6 +5013,12 @@ msgstr ""
 msgid "First"
 msgstr ""
 
+msgid "First name"
+msgstr ""
+
+msgid "First name is required"
+msgstr ""
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5005,6 +5095,9 @@ msgstr ""
 msgid "Force refresh"
 msgstr ""
 
+msgid "Force refresh Slack channels list"
+msgstr ""
+
 msgid "Force refresh catalog list"
 msgstr ""
 
@@ -5119,6 +5212,9 @@ msgstr ""
 msgid "Geohash"
 msgstr ""
 
+msgid "Geometry Column"
+msgstr ""
+
 msgid "Get the last date by the date unit."
 msgstr ""
 
@@ -5176,9 +5272,6 @@ msgstr ""
 msgid "Group by"
 msgstr ""
 
-msgid "Groupable"
-msgstr ""
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5194,38 +5287,27 @@ msgstr ""
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-
 msgid "Has created by"
 msgstr ""
 
 msgid "Header"
 msgstr ""
 
-msgid "Header Row"
-msgstr ""
-
 msgid "Header row"
 msgstr ""
 
 msgid "Heatmap"
 msgstr ""
 
-msgid "Heatmap (legacy)"
-msgstr ""
-
-msgid "Heatmap Options"
-msgstr ""
-
 msgid "Height"
 msgstr ""
 
 msgid "Height of the sparkline"
 msgstr ""
 
+msgid "Hide Column"
+msgstr ""
+
 msgid "Hide Line"
 msgstr ""
 
@@ -5250,9 +5332,6 @@ msgstr ""
 msgid "Histogram"
 msgstr ""
 
-msgid "Histogram (legacy)"
-msgstr ""
-
 msgid "Home"
 msgstr ""
 
@@ -5325,18 +5404,12 @@ msgid ""
 "hive.server2.proxy.user property."
 msgstr ""
 
-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.<br/>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 ""
-
-msgid "If Table Already Exists"
+msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr ""
 
-msgid "If a metric is specified, sorting will be done based on the metric value"
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
 msgstr ""
 
 msgid ""
@@ -5344,7 +5417,7 @@ msgid ""
 "it sorts the results ascending."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
+msgid "If table already exists"
 msgstr ""
 
 msgid "Ignore cache when generating report"
@@ -5365,9 +5438,6 @@ msgstr ""
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr ""
 
-msgid "Impersonate the logged on user"
-msgstr ""
-
 msgid "Import"
 msgstr ""
 
@@ -5378,9 +5448,6 @@ msgstr ""
 msgid "Import Dashboard(s)"
 msgstr ""
 
-msgid "Import a table definition"
-msgstr ""
-
 msgid "Import chart failed for an unknown reason"
 msgstr ""
 
@@ -5411,12 +5478,12 @@ msgstr ""
 msgid "Import saved query failed for an unknown reason."
 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."
+msgid "In"
 msgstr ""
 
-msgid "In"
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
 msgstr ""
 
 msgid "Include Series"
@@ -5441,13 +5508,14 @@ msgstr ""
 msgid "Index"
 msgstr ""
 
-msgid "Index Column"
+msgid "Index column"
 msgstr ""
 
-msgid "Index Label"
+msgid "Index label"
 msgstr ""
 
-msgid "Index label"
+#, python-format
+msgid "Indexes (%s)"
 msgstr ""
 
 msgid "Info"
@@ -5468,6 +5536,12 @@ msgstr ""
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr ""
 
+msgid "Insert Layer URL"
+msgstr ""
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr ""
 
@@ -5498,9 +5572,6 @@ msgstr ""
 msgid "Intervals"
 msgstr ""
 
-msgid "Intensity"
-msgstr ""
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -5541,6 +5612,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr ""
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr ""
@@ -5604,6 +5678,9 @@ msgstr ""
 msgid "Invert current page"
 msgstr ""
 
+msgid "Is active?"
+msgstr ""
+
 msgid "Is certified"
 msgstr ""
 
@@ -5776,12 +5853,6 @@ msgstr ""
 msgid "Last"
 msgstr ""
 
-msgid "Last Changed"
-msgstr ""
-
-msgid "Last Modified"
-msgstr ""
-
 #, python-format
 msgid "Last Updated %s"
 msgstr ""
@@ -5790,6 +5861,9 @@ msgstr ""
 msgid "Last Updated %s by %s"
 msgstr ""
 
+msgid "Last Value"
+msgstr ""
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr ""
@@ -5797,12 +5871,21 @@ msgstr ""
 msgid "Last day"
 msgstr ""
 
+msgid "Last login"
+msgstr ""
+
 msgid "Last modified"
 msgstr ""
 
 msgid "Last month"
 msgstr ""
 
+msgid "Last name"
+msgstr ""
+
+msgid "Last name is required"
+msgstr ""
+
 msgid "Last quarter"
 msgstr ""
 
@@ -5815,15 +5898,36 @@ msgstr ""
 msgid "Last year"
 msgstr ""
 
+msgid "Lat"
+msgstr ""
+
 msgid "Latitude"
 msgstr ""
 
 msgid "Latitude of default viewport"
 msgstr ""
 
+msgid "Layer"
+msgstr ""
+
+msgid "Layer Name"
+msgstr ""
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr ""
 
+msgid "Layer title"
+msgstr ""
+
+msgid "Layer type"
+msgstr ""
+
+msgid "Layers"
+msgstr ""
+
 msgid "Layout"
 msgstr ""
 
@@ -5836,11 +5940,6 @@ msgstr ""
 msgid "Layout type of tree"
 msgstr ""
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-
 msgid "Least recently modified"
 msgstr ""
 
@@ -5904,11 +6003,6 @@ msgstr ""
 msgid "Limit type"
 msgstr ""
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-
 msgid "Limits the number of cells that get retrieved."
 msgstr ""
 
@@ -5944,6 +6038,9 @@ msgid ""
 "chart common in many fields."
 msgstr ""
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr ""
 
@@ -5971,9 +6068,15 @@ msgstr ""
 msgid "Link Copied!"
 msgstr ""
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr ""
 
+msgid "List Users"
+msgstr ""
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr ""
 
@@ -6040,6 +6143,9 @@ msgstr ""
 msgid "Login"
 msgstr ""
 
+msgid "Login count"
+msgstr ""
+
 msgid "Login with"
 msgstr ""
 
@@ -6049,6 +6155,9 @@ msgstr ""
 msgid "Logs"
 msgstr ""
 
+msgid "Lon"
+msgstr ""
+
 msgid "Long dashed"
 msgstr ""
 
@@ -6088,9 +6197,6 @@ msgstr ""
 msgid "Main"
 msgstr ""
 
-msgid "Main Datetime Column"
-msgstr ""
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6122,6 +6228,9 @@ msgstr ""
 msgid "Map"
 msgstr ""
 
+msgid "Map Options"
+msgstr ""
+
 msgid "Map Style"
 msgstr ""
 
@@ -6164,13 +6273,16 @@ msgstr ""
 msgid "Markup type"
 msgstr ""
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr ""
 
 msgid "Max Bubble Size"
 msgstr ""
 
-msgid "Max Events"
+msgid "Max. features"
 msgstr ""
 
 msgid "Maximum"
@@ -6182,6 +6294,9 @@ msgstr ""
 msgid "Maximum Radius"
 msgstr ""
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6221,6 +6336,18 @@ msgstr ""
 msgid "Medium"
 msgstr ""
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -6314,11 +6441,6 @@ msgid ""
 "appropriate)."
 msgstr ""
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-
 msgid "Metrics"
 msgstr ""
 
@@ -6358,7 +6480,7 @@ msgstr ""
 msgid "Minimum Radius"
 msgstr ""
 
-msgid "Minimum leaf node event count"
+msgid "Minimum must be strictly less than maximum"
 msgstr ""
 
 msgid ""
@@ -6372,6 +6494,9 @@ msgstr ""
 msgid "Minimum value"
 msgstr ""
 
+msgid "Minimum value cannot be higher than maximum value"
+msgstr ""
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr ""
 
@@ -6394,6 +6519,9 @@ msgstr ""
 msgid "Minutes value"
 msgstr ""
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr ""
 
@@ -6410,6 +6538,12 @@ msgstr ""
 msgid "Modified %s"
 msgstr ""
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 msgid "Modified by"
 msgstr ""
 
@@ -6417,10 +6551,6 @@ msgstr ""
 msgid "Modified by: %s"
 msgstr ""
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr ""
-
 msgid "Monday"
 msgstr ""
 
@@ -6481,9 +6611,6 @@ msgstr ""
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr ""
 
-msgid "Must have at least one numeric column specified"
-msgstr ""
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr ""
 
@@ -6508,9 +6635,6 @@ msgstr ""
 msgid "NOV"
 msgstr ""
 
-msgid "NOW"
-msgstr ""
-
 msgid "NUMERIC"
 msgstr ""
 
@@ -6535,9 +6659,6 @@ msgstr ""
 msgid "Name of the source nodes"
 msgstr ""
 
-msgid "Name of the table that exists in the source database"
-msgstr ""
-
 msgid "Name of the target nodes"
 msgstr ""
 
@@ -6553,17 +6674,19 @@ msgstr ""
 msgid "Need help? Learn more about"
 msgstr ""
 
+msgid "Network Error"
+msgstr ""
+
 msgid "Network error"
 msgstr ""
 
-msgid "Network error."
+msgid "Network error while attempting to fetch resource"
 msgstr ""
 
-msgid "New chart"
+msgid "Network error."
 msgstr ""
 
-#, python-format
-msgid "New columns added: %s"
+msgid "New chart"
 msgstr ""
 
 msgid "New dataset"
@@ -6612,6 +6735,9 @@ msgstr ""
 msgid "No Tags created"
 msgstr ""
 
+msgid "No actions"
+msgstr ""
+
 msgid "No annotation layers"
 msgstr ""
 
@@ -6630,9 +6756,6 @@ msgstr ""
 msgid "No charts"
 msgstr ""
 
-msgid "No charts yet"
-msgstr ""
-
 msgid "No columns found"
 msgstr ""
 
@@ -6648,9 +6771,6 @@ msgstr ""
 msgid "No compatible schema found"
 msgstr ""
 
-msgid "No dashboards yet"
-msgstr ""
-
 msgid "No data"
 msgstr ""
 
@@ -6660,6 +6780,9 @@ msgstr ""
 msgid "No data in file"
 msgstr ""
 
+msgid "No databases available"
+msgstr ""
+
 msgid "No databases match your search"
 msgstr ""
 
@@ -6690,12 +6813,6 @@ msgstr ""
 msgid "No matching records found"
 msgstr ""
 
-msgid "No of Bins"
-msgstr ""
-
-msgid "No recents yet"
-msgstr ""
-
 msgid "No records found"
 msgstr ""
 
@@ -6717,6 +6834,9 @@ msgid ""
 "contains data for the selected time range."
 msgstr ""
 
+msgid "No roles yet"
+msgstr ""
+
 msgid "No rows were returned for this dataset"
 msgstr ""
 
@@ -6729,9 +6849,6 @@ msgstr ""
 msgid "No saved metrics found"
 msgstr ""
 
-msgid "No saved queries yet"
-msgstr ""
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 
@@ -6747,6 +6864,9 @@ msgstr ""
 msgid "No time columns"
 msgstr ""
 
+msgid "No users yet"
+msgstr ""
+
 msgid "No validator found (configured for the engine)"
 msgstr ""
 
@@ -6822,6 +6942,9 @@ msgstr ""
 msgid "Not up to date"
 msgstr ""
 
+msgid "Nothing here yet"
+msgstr ""
+
 msgid "Nothing triggered"
 msgstr ""
 
@@ -6921,9 +7044,6 @@ msgstr ""
 msgid "Offline"
 msgstr ""
 
-msgid "Offset"
-msgstr ""
-
 msgid "On Grace"
 msgstr ""
 
@@ -6947,6 +7067,9 @@ msgstr ""
 msgid "One or many metrics to display"
 msgstr ""
 
+msgid "One or more annotation layers failed loading."
+msgstr ""
+
 msgid "One or more columns already exist"
 msgstr ""
 
@@ -6974,12 +7097,6 @@ msgstr ""
 msgid "One or more parameters specified in the query are missing."
 msgstr ""
 
-msgid "One or more annotation layers failed loading."
-msgstr ""
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr ""
-
 msgid "Only Total"
 msgstr ""
 
@@ -6992,9 +7109,6 @@ msgstr ""
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
 
-msgid "Only selected panels will be affected by this filter"
-msgstr ""
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7070,15 +7184,19 @@ msgstr ""
 msgid "Or choose from a list of other databases we support:"
 msgstr ""
 
-msgid "Order by entity id"
-msgstr ""
-
 msgid "Order results by selected columns"
 msgstr ""
 
 msgid "Ordering"
 msgstr ""
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr ""
 
@@ -7188,6 +7306,9 @@ msgid ""
 " or username."
 msgstr ""
 
+msgid "PDF download failed, please refresh and try again."
+msgstr ""
+
 msgid "Page length"
 msgstr ""
 
@@ -7245,6 +7366,12 @@ msgstr ""
 msgid "Password"
 msgstr ""
 
+msgid "Password is required"
+msgstr ""
+
+msgid "Passwords do not match!"
+msgstr ""
+
 msgid "Paste Private Key here"
 msgstr ""
 
@@ -7299,6 +7426,13 @@ msgstr ""
 msgid "Periods must be a whole number"
 msgstr ""
 
+msgid "Permissions"
+msgstr ""
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr ""
 
@@ -7314,9 +7448,6 @@ msgstr ""
 msgid "Physical (table or view)"
 msgstr ""
 
-msgid "Physical dataset"
-msgstr ""
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
 
@@ -7338,15 +7469,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr ""
 
-msgid "Pick at least one field for [Series]"
-msgstr ""
-
 msgid "Pick at least one metric"
 msgstr ""
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-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."
@@ -7358,7 +7483,7 @@ msgstr ""
 msgid "Pie Chart"
 msgstr ""
 
-msgid "Pie Chart (legacy)"
+msgid "Pie charts on a map"
 msgstr ""
 
 msgid "Pie shape"
@@ -7370,6 +7495,12 @@ msgstr ""
 msgid "Pin"
 msgstr ""
 
+msgid "Pin Left"
+msgstr ""
+
+msgid "Pin Right"
+msgstr ""
+
 msgid "Pivot Table"
 msgstr ""
 
@@ -7418,6 +7549,9 @@ msgid ""
 "your query again."
 msgstr ""
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr ""
 
@@ -7427,12 +7561,24 @@ msgstr ""
 msgid "Please confirm the overwrite values."
 msgstr ""
 
+msgid "Please confirm your password"
+msgstr ""
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr ""
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr ""
 
@@ -7444,9 +7590,6 @@ msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] ""
 msgstr[1] ""
 
-msgid "Please save the query to enable sharing"
-msgstr ""
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
 
@@ -7519,9 +7662,6 @@ msgstr ""
 msgid "Populate \"Default value\" to enable this control"
 msgstr ""
 
-msgid "Population age data"
-msgstr ""
-
 msgid "Port"
 msgstr ""
 
@@ -7559,12 +7699,6 @@ msgstr ""
 msgid "Pre-filter is required"
 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 ""
-
 msgid "Predictive"
 msgstr ""
 
@@ -7583,10 +7717,6 @@ msgstr ""
 msgid "Preview uploaded file"
 msgstr ""
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr ""
-
 msgid "Previous"
 msgstr ""
 
@@ -7632,18 +7762,12 @@ msgstr ""
 msgid "Progressive"
 msgstr ""
 
-msgid "Propagate"
+msgid "Project Id"
 msgstr ""
 
 msgid "Proportional"
 msgstr ""
 
-msgid "Public and privately shared sheets"
-msgstr ""
-
-msgid "Publicly shared sheets only"
-msgstr ""
-
 msgid "Published"
 msgstr ""
 
@@ -7662,9 +7786,6 @@ msgstr ""
 msgid "Put the labels outside of the pie?"
 msgstr ""
 
-msgid "Put the labels outside the pie?"
-msgstr ""
-
 msgid "Put your code here"
 msgstr ""
 
@@ -7766,10 +7887,6 @@ msgstr ""
 msgid "Radius in miles"
 msgstr ""
 
-#, python-format
-msgid "Ran %s"
-msgstr ""
-
 msgid "Range"
 msgstr ""
 
@@ -7797,18 +7914,9 @@ msgstr ""
 msgid "Raw records"
 msgstr ""
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 msgid "Recently modified"
 msgstr ""
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 msgid "Recents"
 msgstr ""
 
@@ -7827,9 +7935,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr ""
-
 msgid "Redo the action"
 msgstr ""
 
@@ -7867,6 +7972,9 @@ msgstr ""
 msgid "Refresh interval saved"
 msgstr ""
 
+msgid "Refresh table schema"
+msgstr ""
+
 msgid "Refresh the default values"
 msgstr ""
 
@@ -7920,8 +8028,10 @@ msgid "Remove table preview"
 msgstr ""
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr ""
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
 
 msgid "Rename tab"
 msgstr ""
@@ -7932,10 +8042,9 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
-msgstr ""
-
-msgid "Rendering"
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
 msgid "Replace"
@@ -8031,6 +8140,9 @@ msgstr ""
 msgid "Repulsion strength between nodes"
 msgstr ""
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr ""
@@ -8062,6 +8174,9 @@ msgstr ""
 msgid "Reset"
 msgstr ""
 
+msgid "Reset columns"
+msgstr ""
+
 msgid "Reset state"
 msgstr ""
 
@@ -8087,6 +8202,9 @@ msgstr ""
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr ""
 
+msgid "Retry fetching results"
+msgstr ""
+
 msgid "Return to specific datetime."
 msgstr ""
 
@@ -8126,6 +8244,24 @@ msgstr ""
 msgid "Role"
 msgstr ""
 
+msgid "Role Name"
+msgstr ""
+
+msgid "Role is required"
+msgstr ""
+
+msgid "Role name is required"
+msgstr ""
+
+msgid "Role successfully updated!"
+msgstr ""
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr ""
 
@@ -8197,9 +8333,6 @@ msgstr ""
 msgid "Rows subtotal position"
 msgstr ""
 
-msgid "Rows to Read"
-msgstr ""
-
 msgid "Rows to read"
 msgstr ""
 
@@ -8264,13 +8397,10 @@ msgstr ""
 msgid "SQL Copied!"
 msgstr ""
 
-msgid "SQL Expression"
-msgstr ""
-
 msgid "SQL Lab"
 msgstr ""
 
-msgid "SQL Lab View"
+msgid "SQL Lab queries"
 msgstr ""
 
 #, python-format
@@ -8357,18 +8487,9 @@ msgstr ""
 msgid "Samples for datasource could not be retrieved."
 msgstr ""
 
-msgid "Sankey"
-msgstr ""
-
 msgid "Sankey Chart"
 msgstr ""
 
-msgid "Sankey Diagram (legacy)"
-msgstr ""
-
-msgid "Sankey Diagram with Loops"
-msgstr ""
-
 msgid "Satellite"
 msgstr ""
 
@@ -8429,9 +8550,6 @@ msgstr ""
 msgid "Save query"
 msgstr ""
 
-msgid "Save the query to enable this feature"
-msgstr ""
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
 
@@ -8459,6 +8577,9 @@ msgstr ""
 msgid "Saved query parameters are invalid."
 msgstr ""
 
+msgid "Saving..."
+msgstr ""
+
 msgid "Scale and Move"
 msgstr ""
 
@@ -8510,9 +8631,6 @@ msgstr ""
 msgid "Schema cache timeout"
 msgstr ""
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr ""
-
 msgid "Schemas allowed for File upload"
 msgstr ""
 
@@ -8594,9 +8712,6 @@ msgstr ""
 msgid "Seconds value"
 msgstr ""
 
-msgid "Secure Extra"
-msgstr ""
-
 msgid "Secure extra"
 msgstr ""
 
@@ -8684,6 +8799,9 @@ msgstr ""
 msgid "Select a sheet name from the uploaded file"
 msgstr ""
 
+msgid "Select a tab"
+msgstr ""
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -8701,7 +8819,7 @@ msgstr ""
 msgid "Select all items"
 msgstr ""
 
-msgid "Select any columns for metadata inspection"
+msgid "Select an aggregation method to apply to the metric."
 msgstr ""
 
 msgid "Select catalog or type to search catalogs"
@@ -8725,6 +8843,9 @@ msgstr ""
 msgid "Select column"
 msgstr ""
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -8805,6 +8926,12 @@ msgstr ""
 msgid "Select owners"
 msgstr ""
 
+msgid "Select page size"
+msgstr ""
+
+msgid "Select roles"
+msgstr ""
+
 msgid "Select saved metrics"
 msgstr ""
 
@@ -8817,9 +8944,18 @@ msgstr ""
 msgid "Select scheme"
 msgstr ""
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr ""
 
+msgid "Select tab"
+msgstr ""
+
 msgid "Select table or type to search tables"
 msgstr ""
 
@@ -8844,12 +8980,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr ""
 
-msgid "Select the number of bins for the histogram"
-msgstr ""
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr ""
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -8871,9 +9001,6 @@ msgstr ""
 msgid "Send as text"
 msgstr ""
 
-msgid "Send range filter events to other charts"
-msgstr ""
-
 msgid "September"
 msgstr ""
 
@@ -8886,12 +9013,6 @@ msgstr ""
 msgid "Series Height"
 msgstr ""
 
-msgid "Series Limit Sort By"
-msgstr ""
-
-msgid "Series Limit Sort Descending"
-msgstr ""
-
 msgid "Series Order"
 msgstr ""
 
@@ -8919,6 +9040,9 @@ msgstr ""
 msgid "Service Account"
 msgstr ""
 
+msgid "Service version"
+msgstr ""
+
 msgid "Set auto-refresh interval"
 msgstr ""
 
@@ -8946,6 +9070,9 @@ msgstr ""
 msgid "Settings for time series"
 msgstr ""
 
+msgid "Shape"
+msgstr ""
+
 msgid "Share"
 msgstr ""
 
@@ -9004,18 +9131,9 @@ msgstr ""
 msgid "Show Cell bars"
 msgstr ""
 
-msgid "Show Chart"
-msgstr ""
-
-msgid "Show Column"
-msgstr ""
-
 msgid "Show Dashboard"
 msgstr ""
 
-msgid "Show Database"
-msgstr ""
-
 msgid "Show Labels"
 msgstr ""
 
@@ -9025,18 +9143,12 @@ msgstr ""
 msgid "Show Markers"
 msgstr ""
 
-msgid "Show Metric"
-msgstr ""
-
 msgid "Show Metric Names"
 msgstr ""
 
 msgid "Show Range Filter"
 msgstr ""
 
-msgid "Show Table"
-msgstr ""
-
 msgid "Show Timestamp"
 msgstr ""
 
@@ -9069,9 +9181,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr ""
 
-msgid "Show all..."
-msgstr ""
-
 msgid "Show axis line ticks"
 msgstr ""
 
@@ -9093,6 +9202,9 @@ msgstr ""
 msgid "Show empty columns"
 msgstr ""
 
+msgid "Show entries per page"
+msgstr ""
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9113,9 +9225,6 @@ msgstr ""
 msgid "Show less columns"
 msgstr ""
 
-msgid "Show less..."
-msgstr ""
-
 msgid "Show minor ticks on axes."
 msgstr ""
 
@@ -9152,6 +9261,9 @@ msgstr ""
 msgid "Show the value on top of the bar"
 msgstr ""
 
+msgid "Show total"
+msgstr ""
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9186,7 +9298,7 @@ msgid ""
 msgstr ""
 
 #, python-format
-msgid "Showing %s of %s"
+msgid "Showing %s of %s items"
 msgstr ""
 
 msgid "Shows a list of all series available at that point in time"
@@ -9219,16 +9331,13 @@ msgstr ""
 msgid "Single value type"
 msgstr ""
 
-msgid "Size of edge symbols"
-msgstr ""
-
-msgid "Size of marker. Also applies to forecast observations."
+msgid "Size in pixels"
 msgstr ""
 
-msgid "Sizes of vehicles"
+msgid "Size of edge symbols"
 msgstr ""
 
-msgid "Skip Rows"
+msgid "Size of marker. Also applies to forecast observations."
 msgstr ""
 
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
@@ -9299,9 +9408,6 @@ msgstr ""
 msgid "Sorry, something went wrong. Try again later."
 msgstr ""
 
-msgid "Sorry, there appears to be no data"
-msgstr ""
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr ""
@@ -9319,9 +9425,6 @@ msgstr ""
 msgid "Sort"
 msgstr ""
 
-msgid "Sort Bars"
-msgstr ""
-
 msgid "Sort Descending"
 msgstr ""
 
@@ -9343,9 +9446,6 @@ msgstr ""
 msgid "Sort ascending"
 msgstr ""
 
-msgid "Sort bars by x labels."
-msgstr ""
-
 msgid "Sort by"
 msgstr ""
 
@@ -9371,6 +9471,9 @@ msgstr ""
 msgid "Sort metric"
 msgstr ""
 
+msgid "Sort query by"
+msgstr ""
+
 msgid "Sort rows by"
 msgstr ""
 
@@ -9383,9 +9486,6 @@ msgstr ""
 msgid "Source"
 msgstr ""
 
-msgid "Source / Target"
-msgstr ""
-
 msgid "Source SQL"
 msgstr ""
 
@@ -9427,9 +9527,6 @@ msgstr ""
 msgid "Stack"
 msgstr ""
 
-msgid "Stack Trace:"
-msgstr ""
-
 msgid "Stack series"
 msgstr ""
 
@@ -9445,9 +9542,6 @@ msgstr ""
 msgid "Stacked Style"
 msgstr ""
 
-msgid "Stacked style"
-msgstr ""
-
 msgid "Standard time series"
 msgstr ""
 
@@ -9542,9 +9636,6 @@ msgstr ""
 msgid "Strength to pull the graph toward center"
 msgstr ""
 
-msgid "Stretched style"
-msgstr ""
-
 msgid "Stroke Color"
 msgstr ""
 
@@ -9566,15 +9657,18 @@ msgstr ""
 msgid "Subdomain"
 msgstr ""
 
-msgid "Subheader"
-msgstr ""
-
 msgid "Subheader Font Size"
 msgstr ""
 
 msgid "Submit"
 msgstr ""
 
+msgid "Subtitle"
+msgstr ""
+
+msgid "Subtitle Font Size"
+msgstr ""
+
 msgid "Subtotal"
 msgstr ""
 
@@ -9626,9 +9720,6 @@ msgstr ""
 msgid "Superset chart"
 msgstr ""
 
-msgid "Superset dashboard"
-msgstr ""
-
 msgid "Superset encountered an error while running a command."
 msgstr ""
 
@@ -9638,9 +9729,6 @@ msgstr ""
 msgid "Supported databases"
 msgstr ""
 
-msgid "Survey Responses"
-msgstr ""
-
 msgid "Swap dataset"
 msgstr ""
 
@@ -9653,6 +9741,12 @@ msgid ""
 "well."
 msgstr ""
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr ""
 
@@ -9662,9 +9756,20 @@ msgstr ""
 msgid "Symbol size"
 msgstr ""
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr ""
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr ""
 
@@ -9675,9 +9780,6 @@ msgstr ""
 msgid "TABLES"
 msgstr ""
 
-msgid "TEMPORAL X-AXIS"
-msgstr ""
-
 msgid "TEMPORAL_RANGE"
 msgstr ""
 
@@ -9713,6 +9815,9 @@ msgid ""
 "connection, schema, and table name"
 msgstr ""
 
+msgid "Table actions"
+msgstr ""
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -9724,6 +9829,9 @@ msgstr ""
 msgid "Table columns"
 msgstr ""
 
+msgid "Table name"
+msgstr ""
+
 msgid "Table name undefined"
 msgstr ""
 
@@ -9785,11 +9893,6 @@ msgstr ""
 msgid "Tags"
 msgstr ""
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-
 msgid "Target"
 msgstr ""
 
@@ -9813,6 +9916,9 @@ msgid ""
 "coming from the controls."
 msgstr ""
 
+msgid "Temporal X-Axis"
+msgstr ""
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -9857,9 +9963,6 @@ msgid ""
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -9889,6 +9992,9 @@ msgstr ""
 msgid "The annotation has been updated"
 msgstr ""
 
+msgid "The background color of the charts."
+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."
@@ -9916,6 +10022,9 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr ""
 
+msgid "The color of the elements border"
+msgstr ""
+
 msgid "The color of the isoband"
 msgstr ""
 
@@ -9930,6 +10039,12 @@ msgid ""
 "        Edit the color scheme in the dashboard properties."
 msgstr ""
 
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+
 msgid "The column header label"
 msgstr ""
 
@@ -9942,6 +10057,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr ""
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -9953,17 +10074,7 @@ msgstr ""
 msgid "The data source seems to have been deleted"
 msgstr ""
 
-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 ""
-
-#, 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 "The database"
 msgstr ""
 
 msgid "The database columns that contains lines information"
@@ -9995,11 +10106,7 @@ msgstr ""
 msgid "The database was not found."
 msgstr ""
 
-#, 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."
+msgid "The dataset"
 msgstr ""
 
 msgid "The dataset associated with this chart no longer exists"
@@ -10050,12 +10157,21 @@ msgid ""
 "-1 to bypass the cache."
 msgstr ""
 
-msgid "The encoding format of the lines"
+msgid "The encoding format of the lines"
+msgstr ""
+
+msgid ""
+"The engine_params object gets unpacked into the sqlalchemy.create_engine "
+"call."
+msgstr ""
+
+msgid "The exponent to compute all sizes from. \"EXP\" only"
 msgstr ""
 
 msgid ""
-"The engine_params object gets unpacked into the sqlalchemy.create_engine "
-"call."
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
 msgstr ""
 
 #, python-format
@@ -10075,6 +10191,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr ""
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10107,20 +10226,12 @@ msgstr ""
 msgid "The id of the active 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'"
+msgid "The layer attribution"
 msgstr ""
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10153,6 +10264,17 @@ msgid ""
 "periods"
 msgstr ""
 
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr ""
+
+msgid "The name of the geometry column"
+msgstr ""
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 msgid "The name of the rule must be unique"
 msgstr ""
 
@@ -10344,6 +10466,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr ""
 
@@ -10381,10 +10506,13 @@ msgstr ""
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+msgid "The screenshot has been downloaded."
+msgstr ""
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
+msgid "The service url of the layer"
 msgstr ""
 
 msgid "The size of each cell in meters"
@@ -10393,6 +10521,9 @@ msgstr ""
 msgid "The size of the square cell, in pixels"
 msgstr ""
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr ""
 
@@ -10414,11 +10545,6 @@ msgid ""
 "to run this query."
 msgstr ""
 
-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 "The table was deleted or renamed in the database."
 msgstr ""
 
@@ -10463,6 +10589,9 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr ""
 
+msgid "The type of the layer"
+msgstr ""
+
 msgid "The type of visualization to display"
 msgstr ""
 
@@ -10485,12 +10614,24 @@ msgstr ""
 msgid "The username provided when connecting to a database is not valid."
 msgstr ""
 
+msgid "The version of the service"
+msgstr ""
+
+msgid "The visible title of the layer"
+msgstr ""
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr ""
 
 msgid "The width of the Isoline in pixels"
 msgstr ""
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+msgid "The width of the elements border"
+msgstr ""
+
 msgid "The width of the lines"
 msgstr ""
 
@@ -10507,9 +10648,6 @@ msgstr ""
 msgid "There are no components added to this tab"
 msgstr ""
 
-msgid "There are no databases available"
-msgstr ""
-
 msgid "There are no filters in this dashboard."
 msgstr ""
 
@@ -10521,6 +10659,9 @@ msgid ""
 " or a typo."
 msgstr ""
 
+msgid "There is currently no information to display."
+msgstr ""
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -10544,6 +10685,9 @@ msgstr ""
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr ""
 
+msgid "There was an error generating the permalink."
+msgstr ""
+
 msgid "There was an error loading the catalogs"
 msgstr ""
 
@@ -10559,6 +10703,9 @@ msgstr ""
 msgid "There was an error loading the tables"
 msgstr ""
 
+msgid "There was an error retrieving dashboard tabs."
+msgstr ""
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr ""
@@ -10566,6 +10713,10 @@ msgstr ""
 msgid "There was an error with your request"
 msgstr ""
 
+#, python-format
+msgid "There was an issue deleting %s"
+msgstr ""
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr ""
@@ -10649,21 +10800,9 @@ msgstr ""
 msgid "There was an issue previewing the selected query. %s"
 msgstr ""
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr ""
-
 msgid "These are the datasets this filter will be applied to."
 msgstr ""
 
-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 ""
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -10677,12 +10816,18 @@ msgstr ""
 msgid "This action will permanently delete the layer."
 msgstr ""
 
+msgid "This action will permanently delete the role."
+msgstr ""
+
 msgid "This action will permanently delete the saved query."
 msgstr ""
 
 msgid "This action will permanently delete the template."
 msgstr ""
 
+msgid "This action will permanently delete the user."
+msgstr ""
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -10707,11 +10852,6 @@ msgid ""
 "source. "
 msgstr ""
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-
 msgid "This column might be incompatible with current dataset"
 msgstr ""
 
@@ -10777,6 +10917,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr ""
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 
@@ -10794,6 +10940,9 @@ msgstr ""
 msgid "This defines the element to be plotted on the chart"
 msgstr ""
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -10804,11 +10953,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr ""
-
 msgid "This filter might be incompatible with current dataset"
 msgstr ""
 
@@ -10838,12 +10982,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr ""
 
-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 ""
-
 msgid "This metric might be incompatible with current dataset"
 msgstr ""
 
@@ -10882,6 +11020,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr ""
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr ""
 
@@ -10956,9 +11097,6 @@ msgstr ""
 msgid "Time Series"
 msgstr ""
 
-msgid "Time Series - Bar Chart"
-msgstr ""
-
 msgid "Time Series - Line Chart"
 msgstr ""
 
@@ -10974,9 +11112,6 @@ msgstr ""
 msgid "Time Series - Period Pivot"
 msgstr ""
 
-msgid "Time Series - Stacked"
-msgstr ""
-
 msgid "Time Series Options"
 msgstr ""
 
@@ -11064,15 +11199,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr ""
 
-msgid "Time-series Area Chart (legacy)"
-msgstr ""
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr ""
-
-msgid "Time-series Line Chart (legacy)"
-msgstr ""
-
 msgid "Time-series Percent Change"
 msgstr ""
 
@@ -11091,9 +11217,6 @@ msgstr ""
 msgid "Timezone"
 msgstr ""
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr ""
-
 msgid "Timezone selector"
 msgstr ""
 
@@ -11112,6 +11235,11 @@ msgstr ""
 msgid "Title or Slug"
 msgstr ""
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr ""
 
@@ -11153,6 +11281,9 @@ msgstr ""
 msgid "Total (%(aggregatorName)s)"
 msgstr ""
 
+msgid "Total (Sum)"
+msgstr ""
+
 msgid "Total value"
 msgstr ""
 
@@ -11256,9 +11387,6 @@ msgstr ""
 msgid "Type is required"
 msgstr ""
 
-msgid "Type of Google Sheets allowed"
-msgstr ""
-
 msgid "Type of comparison, value difference or percentage"
 msgstr ""
 
@@ -11331,9 +11459,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr ""
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr ""
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr ""
 
@@ -11362,6 +11496,9 @@ msgstr ""
 msgid "Unexpected time range: %(error)s"
 msgstr ""
 
+msgid "Unhide"
+msgstr ""
+
 msgid "Unknown"
 msgstr ""
 
@@ -11399,6 +11536,9 @@ msgstr ""
 msgid "Unknown value"
 msgstr ""
 
+msgid "Unpin"
+msgstr ""
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr ""
@@ -11460,9 +11600,6 @@ msgstr ""
 msgid "Upload Columnar file to database"
 msgstr ""
 
-msgid "Upload Credentials"
-msgstr ""
-
 msgid "Upload Enabled"
 msgstr ""
 
@@ -11482,6 +11619,9 @@ msgstr ""
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+msgid "Upload credentials"
+msgstr ""
+
 msgid "Upload file to database"
 msgstr ""
 
@@ -11532,10 +11672,10 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr ""
 
-msgid "Use date formatting even when metric value is not a timestamp"
+msgid "Use current extent"
 msgstr ""
 
-msgid "Use legacy datasource editor"
+msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 
 msgid "Use metrics as a top level group for columns or for rows"
@@ -11547,11 +11687,6 @@ msgstr ""
 msgid "Use the Advanced Analytics options below"
 msgstr ""
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-
 msgid "Use the edit button to change this field"
 msgstr ""
 
@@ -11588,9 +11723,21 @@ msgstr ""
 msgid "User query"
 msgstr ""
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr ""
 
+msgid "Username is required"
+msgstr ""
+
+msgid "Users"
+msgstr ""
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
 
@@ -11612,6 +11759,10 @@ msgid ""
 "funnels and pipelines."
 msgstr ""
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr ""
 
@@ -11637,9 +11788,15 @@ msgstr ""
 msgid "Value format"
 msgstr ""
 
+msgid "Value greater than"
+msgstr ""
+
 msgid "Value is required"
 msgstr ""
 
+msgid "Value less than"
+msgstr ""
+
 msgid "Value must be 0 or greater"
 msgstr ""
 
@@ -11657,12 +11814,6 @@ msgid ""
 "show relevant values"
 msgstr ""
 
-msgid "Vehicle Types"
-msgstr ""
-
-msgid "Verbose Name"
-msgstr ""
-
 msgid "Version"
 msgstr ""
 
@@ -11675,9 +11826,6 @@ msgstr ""
 msgid "Vertical (Left)"
 msgstr ""
 
-msgid "Video game consoles"
-msgstr ""
-
 msgid "View"
 msgstr ""
 
@@ -11719,9 +11867,6 @@ msgstr ""
 msgid "Virtual (SQL)"
 msgstr ""
 
-msgid "Virtual dataset"
-msgstr ""
-
 msgid "Virtual dataset query cannot be empty"
 msgstr ""
 
@@ -11757,11 +11902,6 @@ msgid ""
 "grid view."
 msgstr ""
 
-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."
@@ -11806,13 +11946,6 @@ msgid ""
 "instead."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -11827,6 +11960,12 @@ msgstr ""
 msgid "WED"
 msgstr ""
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr ""
@@ -11840,9 +11979,6 @@ msgstr ""
 msgid "Warning"
 msgstr ""
 
-msgid "Warning Message"
-msgstr ""
-
 msgid "Warning!"
 msgstr ""
 
@@ -11972,11 +12108,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr ""
 
-msgid ""
-"When allowing CREATE TABLE AS option in SQL Lab, this option forces the "
-"table to be created in this schema"
-msgstr ""
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr ""
 
@@ -11997,6 +12128,11 @@ msgid ""
 "to the main datetime column."
 msgstr ""
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -12011,20 +12147,14 @@ msgstr ""
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
 
-msgid "When using this option, default value can’t be set"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
 msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr ""
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr ""
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -12062,6 +12192,9 @@ msgstr ""
 msgid "Whether to display bubbles on top of countries"
 msgstr ""
 
+msgid "Whether to display in the chart"
+msgstr ""
+
 msgid "Whether to display the aggregate count"
 msgstr ""
 
@@ -12071,11 +12204,6 @@ msgstr ""
 msgid "Whether to display the labels."
 msgstr ""
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-
 msgid "Whether to display the legend (toggles)"
 msgstr ""
 
@@ -12091,6 +12219,9 @@ msgstr ""
 msgid "Whether to display the numerical values within the cells"
 msgstr ""
 
+msgid "Whether to display the percentage value in the tooltip"
+msgstr ""
+
 msgid "Whether to display the stroke"
 msgstr ""
 
@@ -12103,9 +12234,15 @@ msgstr ""
 msgid "Whether to display the tooltip labels."
 msgstr ""
 
+msgid "Whether to display the total value in the tooltip"
+msgstr ""
+
 msgid "Whether to display the trend line"
 msgstr ""
 
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr ""
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr ""
 
@@ -12130,26 +12267,9 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr ""
 
-msgid "Whether to make the histogram cumulative"
-msgstr ""
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr ""
-
-msgid "Whether to normalize the histogram"
-msgstr ""
-
 msgid "Whether to populate autocomplete filters options"
 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 ""
-
 msgid "Whether to show as Nightingale chart."
 msgstr ""
 
@@ -12176,9 +12296,6 @@ msgstr ""
 msgid "Whether to sort descending or ascending"
 msgstr ""
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr ""
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 
@@ -12236,9 +12353,6 @@ msgstr ""
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr ""
-
 msgid "X AXIS TITLE MARGIN"
 msgstr ""
 
@@ -12257,6 +12371,9 @@ msgstr ""
 msgid "X Axis Title"
 msgstr ""
 
+msgid "X Axis Title Margin"
+msgstr ""
+
 msgid "X Log Scale"
 msgstr ""
 
@@ -12278,6 +12395,9 @@ msgstr ""
 msgid "XScale Interval"
 msgstr ""
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr ""
 
@@ -12388,6 +12508,19 @@ msgid ""
 "want to overwrite?"
 msgstr ""
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr ""
 
@@ -12457,9 +12590,6 @@ msgstr ""
 msgid "You don't have access to this embedded dashboard config."
 msgstr ""
 
-msgid "You don't have any favorites yet!"
-msgstr ""
-
 msgid "You don't have permission to modify the value."
 msgstr ""
 
@@ -12532,6 +12662,9 @@ msgstr ""
 msgid "Your chart is ready to go!"
 msgstr ""
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr ""
 
@@ -12558,6 +12691,9 @@ msgstr ""
 msgid "Your query was updated"
 msgstr ""
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr ""
 
@@ -12570,6 +12706,9 @@ msgstr ""
 msgid "Zoom"
 msgstr ""
 
+msgid "Zoom level"
+msgstr ""
+
 msgid "Zoom level of the map"
 msgstr ""
 
@@ -12683,9 +12822,6 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
-msgid "auto (Smooth)"
-msgstr ""
-
 msgid "background"
 msgstr ""
 
@@ -12731,9 +12867,6 @@ msgstr ""
 msgid "chart"
 msgstr ""
 
-msgid "charts"
-msgstr ""
-
 msgid "choose WHERE or HAVING..."
 msgstr ""
 
@@ -12743,6 +12876,9 @@ msgstr ""
 msgid "click here"
 msgstr ""
 
+msgid "close"
+msgstr ""
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr ""
 
@@ -12792,15 +12928,9 @@ msgstr ""
 msgid "cumsum"
 msgstr ""
 
-msgid "cumulative"
-msgstr ""
-
 msgid "dashboard"
 msgstr ""
 
-msgid "dashboards"
-msgstr ""
-
 msgid "database"
 msgstr ""
 
@@ -12864,9 +12994,6 @@ msgstr ""
 msgid "default"
 msgstr ""
 
-msgid "delete"
-msgstr ""
-
 msgid "descendant"
 msgstr ""
 
@@ -12879,9 +13006,6 @@ msgstr ""
 msgid "dialect+driver://username:password@host:port/database"
 msgstr ""
 
-msgid "draft"
-msgstr ""
-
 msgid "dttm"
 msgstr ""
 
@@ -12921,9 +13045,6 @@ msgstr ""
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr ""
 
-msgid "e.g., a \"user id\" column"
-msgstr ""
-
 msgid "edit mode"
 msgstr ""
 
@@ -12933,6 +13054,9 @@ msgstr ""
 msgid "entries"
 msgstr ""
 
+msgid "entries per page"
+msgstr ""
+
 msgid "error"
 msgstr ""
 
@@ -12999,11 +13123,6 @@ msgstr ""
 msgid "hour"
 msgstr ""
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-
 msgid "in"
 msgstr ""
 
@@ -13013,6 +13132,9 @@ msgstr ""
 msgid "invalid email"
 msgstr ""
 
+msgid "is"
+msgstr ""
+
 msgid "is expected to be a Mapbox URL"
 msgstr ""
 
@@ -13022,6 +13144,22 @@ msgstr ""
 msgid "is expected to be an integer"
 msgstr ""
 
+#, python-format
+msgid ""
+"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 ""
+
+#, python-format
+msgid ""
+"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 ""
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr ""
 
@@ -13142,18 +13280,9 @@ msgstr ""
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr ""
-
-msgid "page_size.show"
-msgstr ""
-
 msgid "pending"
 msgstr ""
 
-msgid "percentile (exclusive)"
-msgstr ""
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -13162,22 +13291,19 @@ msgstr ""
 msgid "permalink state not found"
 msgstr ""
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 msgid "pixels"
 msgstr ""
 
 msgid "previous calendar month"
 msgstr ""
 
-msgid "previous calendar week"
+msgid "previous calendar quarter"
 msgstr ""
 
-msgid "previous calendar year"
+msgid "previous calendar week"
 msgstr ""
 
-msgid "published"
+msgid "previous calendar year"
 msgstr ""
 
 msgid "quarter"
@@ -13198,9 +13324,6 @@ msgstr ""
 msgid "recent"
 msgstr ""
 
-msgid "recents"
-msgstr ""
-
 msgid "recipients"
 msgstr ""
 
@@ -13222,7 +13345,7 @@ msgstr ""
 msgid "running"
 msgstr ""
 
-msgid "saved queries"
+msgid "save"
 msgstr ""
 
 msgid "seconds"
@@ -13237,9 +13360,6 @@ msgid ""
 "series"
 msgstr ""
 
-msgid "shift start date"
-msgstr ""
-
 msgid "sql"
 msgstr ""
 
@@ -13294,9 +13414,6 @@ msgstr ""
 msgid "textarea"
 msgstr ""
 
-msgid "to"
-msgstr ""
-
 msgid "top"
 msgstr ""
 
@@ -13306,6 +13423,12 @@ msgstr ""
 msgid "unknown type icon"
 msgstr ""
 
+msgid "unset"
+msgstr ""
+
+msgid "updated"
+msgstr ""
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -13329,9 +13452,6 @@ msgstr ""
 msgid "view instructions"
 msgstr ""
 
-msgid "virtual"
-msgstr ""
-
 msgid "viz type"
 msgstr ""
 
@@ -13367,3 +13487,6 @@ msgstr ""
 
 msgid "zoom area"
 msgstr ""
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/nl/LC_MESSAGES/messages.po b/superset/translations/nl/LC_MESSAGES/messages.po
index ffdc05c88ba0a0a9cacecf3a0373269b76d0a633..618afe1fafb0ac228bc26c2c06c2355eb7db4a26 100644
--- a/superset/translations/nl/LC_MESSAGES/messages.po
+++ b/superset/translations/nl/LC_MESSAGES/messages.po
@@ -13,16 +13,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version:  superset-ds\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2024-05-08 14:41+0000\n"
 "Last-Translator: \n"
 "Language: nl\n"
 "Language-Team: Dutch\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -68,12 +68,12 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
-"\n"
-"            Fout: %(text)s\n"
-"            "
 
 msgid " (excluded)"
 msgstr " (uitgesloten)"
@@ -91,9 +91,17 @@ msgstr " een dashboard OF "
 msgid " a new one"
 msgstr " een nieuwe"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr " uitdrukking die moet voldoen aan de "
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr " broncode van Superset's sandboxed parser"
 
@@ -167,15 +175,9 @@ msgstr ""
 "%(dialect)s kunnen om veiligheidsredenen niet als gegevensbron worden "
 "gebruikt."
 
-#, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
-msgstr ""
-"%(message)s\n"
-"Dit kan worden geactiveerd door: \n"
-"%(issues)s"
+#, fuzzy, python-format
+msgid "%(label)s file"
+msgstr "%(prefix)s %(title)s"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -189,22 +191,6 @@ msgstr "%(name)s.csv"
 msgid "%(object)s does not exist in this database."
 msgstr "%(object)s bestaat niet in deze database."
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr "%(other)s grafieken verschijnen hier"
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr "%(other)s dashboards zullen hier verschijnen"
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr "%(other)s recenten verschijnen hier"
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s opgeslagen queries zullen hier verschijnen"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr "%(prefix)s %(title)s"
@@ -220,16 +206,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr "%(rows)d rijen teruggegeven"
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-"%(subtitle)s\n"
-"Dit kan geactiveerd worden door:\n"
-" %(issue)s"
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -238,10 +214,6 @@ msgid_plural ""
 msgstr[0] "%(suggestion)s in plaats van “%(undefinedParameter)s?”"
 msgstr[1] ""
 
-#, fuzzy, python-format
-msgid "%(type)s File"
-msgstr "%(prefix)s %(title)s"
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -296,10 +268,6 @@ msgstr "%s aggrega(a)t(en)"
 msgid "%s column(s)"
 msgstr "%s kolom(men)"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -406,6 +374,10 @@ msgstr ""
 "blijven als u uw cookies leegt of van browser verandert.\n"
 "\n"
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0 Geselecteerd"
 
@@ -467,6 +439,13 @@ msgstr "1 jaar start frequentie"
 msgid "10 minute"
 msgstr "10 minuten"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 percentielen"
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr "104 weken"
 
@@ -563,6 +542,10 @@ msgstr "5 seconden"
 msgid "5 seconds"
 msgstr "5 seconden"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 percentielen"
+
 msgid "52 weeks"
 msgstr "52 week"
 
@@ -629,11 +612,6 @@ msgstr ">= (Groter of gelijk)"
 msgid "A Big Number"
 msgstr "Een groot getal"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr ""
-"Selecteer de kolomnamen die moeten worden behandeld als datums "
-"in de vervolgkeuzelijst"
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr ""
 "Een komma gescheiden lijst van schema's waar bestanden naar mogen "
@@ -645,6 +623,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr "Een database met dezelfde naam bestaat al."
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 #, fuzzy
 msgid ""
 "A dictionary with column names and their data types if you need to change"
@@ -735,14 +716,6 @@ msgstr ""
 "Een set parameters die beschikbaar worden in de query met behulp van "
 "Jinja templating syntax"
 
-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 ""
-"Een tijdsschema dat visualiseert hoe een gerelateerde metriek van "
-"meerdere groepen verschilt na verloop van tijd. Elke groep wordt "
-"gevisualiseerd met behulp van een andere kleur."
-
 msgid "A timeout occurred while executing the query."
 msgstr "Er is een time-out opgetreden tijdens het uitvoeren van de query."
 
@@ -847,33 +820,41 @@ msgstr "recente"
 msgid "Add CSS template"
 msgstr "Voeg CSS template toe"
 
-msgid "Add Chart"
-msgstr "Voeg grafiek toe"
-
-msgid "Add Column"
-msgstr "Kolom toevoegen"
-
 msgid "Add Dashboard"
 msgstr "Voeg Dashboard toe"
 
-msgid "Add Database"
-msgstr "Voeg Database toe"
+#, fuzzy
+msgid "Add Divider"
+msgstr "Verdeler"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Filter toevoegen"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Laag verbergen"
 
 msgid "Add Log"
 msgstr "Voeg Log toe"
 
-msgid "Add Metric"
-msgstr "Voeg metriek toe"
-
 msgid "Add Report"
 msgstr "Rapport toevoegen"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "Uitgesloten rollen"
+
 msgid "Add Rule"
 msgstr "Regel toevoegen"
 
 msgid "Add Tag"
 msgstr "Label toevoegen"
 
+#, fuzzy
+msgid "Add User"
+msgstr "Regel toevoegen"
+
 msgid "Add a Plugin"
 msgstr "Voeg een Plugin toe"
 
@@ -961,9 +942,6 @@ msgstr ""
 "                    van de onderliggende gegevens te scannen of de "
 "beschikbare waarden in het filter te beperken."
 
-msgid "Add filters and dividers"
-msgstr "Filters en scheidingen toevoegen"
-
 msgid "Add item"
 msgstr "Voeg item toe"
 
@@ -979,6 +957,10 @@ msgstr "Voeg nieuwe kleur formatter toe"
 msgid "Add new formatter"
 msgstr "Nieuwe formatter toevoegen"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Filters toevoegen en bewerken"
+
 msgid "Add required control values to preview chart"
 msgstr "Vereiste controlewaarden toevoegen aan de grafiek voorbeeld"
 
@@ -1000,12 +982,15 @@ msgstr "Naam van het dashboard toevoegen"
 msgid "Add to dashboard"
 msgstr "Toevoegen aan het dashboard"
 
-msgid "Add/Edit Filters"
-msgstr "Filters toevoegen/bewerken"
-
 msgid "Added"
 msgstr "Toegevoegd"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -1021,9 +1006,6 @@ msgstr "Mogelijk zijn aanvullende velden verplicht"
 msgid "Additional information"
 msgstr "Bijkomende informatie"
 
-msgid "Additional metadata"
-msgstr "Additionele metadata"
-
 msgid "Additional padding for legend."
 msgstr "Additionele opvulling voor legende."
 
@@ -1088,6 +1070,14 @@ msgstr "Geavanceerd gegevenstype"
 msgid "Advanced-Analytics"
 msgstr "Geavanceerde Analytics"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Selecteer grafieken"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Selecteer dashboards"
+
 msgid "After"
 msgstr "Na"
 
@@ -1124,6 +1114,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "Aggregatie"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "Aggregatie"
+
 msgid "Aggregation function"
 msgstr "Aggregatie functie"
 
@@ -1207,6 +1201,10 @@ msgstr "Uitlijnen +/-"
 msgid "All"
 msgstr "Alle"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Tabel kolommen"
+
 msgid "All Text"
 msgstr "Alle tekst"
 
@@ -1222,26 +1220,14 @@ msgstr "Alle filters"
 msgid "All panels"
 msgstr "Alle panelen"
 
-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"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "Sta CREATE TABLE AS toe"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Sta de CREATE TABLE AS optie toe in SQL Lab"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "Sta CREATE VIEW AS toe"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Sta de CREATE VIEW AS optie toe in SQL Lab"
-
-msgid "Allow Csv Upload"
-msgstr "Csv upload toestaan"
-
-msgid "Allow DML"
-msgstr "DML toestaan"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr ""
@@ -1259,6 +1245,10 @@ msgstr "Kolommen kunnen worden gerangschikt"
 msgid "Allow creation of new tables based on queries"
 msgstr "Aanmaken van nieuwe tabellen op basis van query’s mogelijk maken"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "Aanmaken van nieuwe views gebaseerd op queries toestaan"
+
 msgid "Allow creation of new views based on queries"
 msgstr "Aanmaken van nieuwe views gebaseerd op queries toestaan"
 
@@ -1276,32 +1266,24 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr "Sta bestandsuploads naar database toe"
 
-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."
-
 msgid "Allow node selections"
 msgstr "Sta node selecties toe"
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr "Versturen van meerdere veelhoeken als filtergebeurtenis toestaan"
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "Toestaan dat deze database wordt verkend"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "Sta toe dat deze database wordt opgevraagd in SQL Lab"
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
-msgstr ""
-"Gebruikers toestaan niet-SELECT statements uit te voeren (UPDATE, DELETE,"
-" CREATE, ...) in SQL Lab"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "Toegestane domeinen (komma gescheiden)"
 
@@ -1350,6 +1332,10 @@ msgstr ""
 msgid "An error has occurred"
 msgstr "Er is een fout opgetreden"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Er is een fout opgetreden bij het ophalen van datasets: %s"
+
 msgid "An error occurred"
 msgstr "Er is een fout opgetreden"
 
@@ -1359,6 +1345,10 @@ msgstr "Er is een fout opgetreden bij het opslaan van dataset"
 msgid "An error occurred when running alert query"
 msgstr "Er is een fout opgetreden bij het uitvoeren van de waarschuwing query"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Er is een fout opgetreden tijdens het openen van de waarde."
+
 msgid "An error occurred while accessing the value."
 msgstr "Er is een fout opgetreden tijdens het openen van de waarde."
 
@@ -1373,6 +1363,10 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr "Er is een fout opgetreden tijdens het aanmaken van %s: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Fout opgetreden tijdens het aanmaken van de waarde."
+
 msgid "An error occurred while creating the data source"
 msgstr "Er is een fout opgetreden bij het aanmaken van de gegevensbron"
 
@@ -1535,6 +1529,10 @@ msgstr ""
 "backend. Sla uw query op met de knop \"Opslaan\" om te voorkomen dat u uw"
 " wijzigingen verliest."
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Er is een fout opgetreden bij het ophalen van %s: %s"
+
 msgid "An error occurred while updating the value."
 msgstr "Fout opgetreden tijdens het bijwerken van de waarde."
 
@@ -1724,12 +1722,6 @@ msgstr "Filters toepassen"
 msgid "Apply metrics on"
 msgstr "Metrieken toepassen op"
 
-msgid "Apply to all panels"
-msgstr "Toepassen op alle panelen"
-
-msgid "Apply to specific panels"
-msgstr "Toepassen op specifieke panelen"
-
 msgid "April"
 msgstr "April"
 
@@ -1771,6 +1763,10 @@ msgstr "Weet je zeker dat je de geselecteerde lagen wilt verwijderen?"
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "Weet je zeker dat je de geselecteerde query’s wilt verwijderen?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "Weet u zeker dat u de geselecteerde regels wilt verwijderen?"
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "Weet u zeker dat u de geselecteerde regels wilt verwijderen?"
 
@@ -1780,6 +1776,10 @@ msgstr "Weet u zeker dat u de geselecteerde tags wilt verwijderen?"
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "Weet je zeker dat je de geselecteerde sjablonen wilt verwijderen?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "Weet je zeker dat je de geselecteerde query’s wilt verwijderen?"
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "Weet je zeker dat je deze data wilt overschrijven?"
 
@@ -1820,15 +1820,13 @@ msgstr "Een set parameters toewijzen als"
 msgid "Assist"
 msgstr "Assisteren"
 
-msgid "Associated Charts"
-msgstr "Gerelateerde grafieken"
-
-msgid "Async Execution"
-msgstr "Async uitvoering"
-
 msgid "Asynchronous query execution"
 msgstr "Asynchrone uitvoering van query’s"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "Verspreiding"
+
 msgid "August"
 msgstr "Augustus"
 
@@ -1853,12 +1851,26 @@ msgstr "Autocomplete query predicaat"
 msgid "Automatic Color"
 msgstr "Automatische kleur"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Kolommen aanpassen"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Kolommen aanpassen"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "Beschikbare sorteer modi:"
 
 msgid "Average"
 msgstr "Gemiddeld"
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr "Gemiddelde waarde"
 
@@ -1896,6 +1908,10 @@ msgstr "Terug naar alles"
 msgid "Backend"
 msgstr "Backend"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "achtergrond"
+
 msgid "Backward values"
 msgstr "Achterwaartse waarden"
 
@@ -1911,9 +1927,6 @@ msgstr "Staaf"
 msgid "Bar Chart"
 msgstr "Staafdiagram"
 
-msgid "Bar Chart (legacy)"
-msgstr "Staafdiagram (legacy)"
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
 "Staafdiagrammen worden gebruikt om metrieken als reeks staven weer te "
@@ -1928,10 +1941,25 @@ msgstr "Staaf oriëntatie"
 msgid "Base"
 msgstr "Basis"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Database poort"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Grafiek hoogte"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr "Basislaag kaartstijl. Zie Mapbox documentatie: %s"
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Lijndikte"
+
 msgid "Based on a metric"
 msgstr "Gebaseerd op een metriek"
 
@@ -1951,9 +1979,6 @@ msgstr "Basis informatie"
 msgid "Batch editing %d filters:"
 msgstr "Batchbewerking %d filters:"
 
-msgid "Battery level over time"
-msgstr "Batterij niveau na verloop van tijd"
-
 msgid "Be careful."
 msgstr "Pas op."
 
@@ -1976,6 +2001,14 @@ msgstr "Groot getal met trendlijn"
 msgid "Bins"
 msgstr "in"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Series kleuren"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Rand dikte"
+
 msgid "Bottom"
 msgstr "Onderaan"
 
@@ -2108,9 +2141,6 @@ msgstr "Kogel diagram"
 msgid "Business"
 msgstr "Bedrijf"
 
-msgid "Business Data Type"
-msgstr "Bedrijfsgegevenstype"
-
 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"
@@ -2180,8 +2210,9 @@ msgstr "CSS templates"
 msgid "CSS templates could not be deleted."
 msgstr "CSS-sjablonen konden niet worden verwijderd."
 
-msgid "CSV Upload"
-msgstr "CSV Upload"
+#, fuzzy
+msgid "CSV upload"
+msgstr "Upload"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "CTAS & CVAS SCHEMA"
@@ -2196,8 +2227,9 @@ msgstr ""
 "laatste verklaring een SELECT heeft. Probeer vervolgens uw zoekopdracht "
 "opnieuw uit te voeren."
 
-msgid "CTAS Schema"
-msgstr "CTAS Schema"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "Aangepast"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2215,9 +2247,6 @@ msgstr "CVAS (create view as select) query heeft meer dan één instructie."
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "CVAS (create view as select) query is geen SELECT instructie."
 
-msgid "Cache Timeout"
-msgstr "Buffer Timeout"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Cache Timeout (seconden)"
 
@@ -2262,9 +2291,6 @@ msgstr "Kan bovenste tabblad niet in geneste tabbladen verplaatsen"
 msgid "Can select multiple values"
 msgstr "Kan meerdere waarden selecteren"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "Overlapping tussen Series en Breakdowns is niet mogelijk"
-
 msgid "Cancel"
 msgstr "Annuleer"
 
@@ -2277,6 +2303,10 @@ msgstr "Kan geen toegang krijgen tot de query"
 msgid "Cannot delete a database that has datasets attached"
 msgstr "Een database gekoppeld aan datasets kan niet worden verwijderd"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr "Kan niet meerdere inloggegevens hebben voor de SSH tunnel"
 
@@ -2287,6 +2317,10 @@ msgstr "Kan filter niet laden"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "Kan tijdstring [%(human_readable)s] niet parsen"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Verdeel Diagram"
+
 #, fuzzy
 msgid "Catalog"
 msgstr "tag"
@@ -2364,12 +2398,13 @@ msgstr "Wijzig volgorde van kolommen."
 msgid "Change order of rows."
 msgstr "Verander de volgorde van rijen."
 
-msgid "Changed By"
-msgstr "Gewijzigd door"
-
 msgid "Changed by"
 msgstr "Gewijzigd door"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "wijziging"
+
 msgid "Changes saved."
 msgstr "Wijzigingen opgeslagen."
 
@@ -2422,9 +2457,6 @@ msgstr "Grafiek"
 msgid "Chart %(id)s not found"
 msgstr "Grafiek %(id)s niet gevonden"
 
-msgid "Chart Cache Timeout"
-msgstr "Cache time-out"
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr "Grafiekgegevens: %s"
@@ -2519,6 +2551,10 @@ msgstr "Grafiekparameters zijn ongeldig."
 msgid "Chart properties updated"
 msgstr "Grafiek eigenschappen bijgewerkt"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "grafieken"
+
 msgid "Chart title"
 msgstr "Titel grafiek"
 
@@ -2568,6 +2604,10 @@ msgstr "Keuze van [Punt radius] moet aanwezig zijn in [Groep door]"
 msgid "Choose File"
 msgstr "Kies Bestand"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Kies een grafiek of een dashboard, niet beide"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Kies een grafiek of een dashboard, niet beide"
 
@@ -2590,9 +2630,6 @@ msgstr "Kies een getal opmaak"
 msgid "Choose a source"
 msgstr "Kies een bron"
 
-msgid "Choose a source and a target"
-msgstr "Kies een bron en een doel"
-
 msgid "Choose a target"
 msgstr "Kies een doel"
 
@@ -2679,11 +2716,6 @@ msgstr "Cirkel radarvorm"
 msgid "Circular"
 msgstr "Rond"
 
-msgid "Classic chart that visualizes how metrics change over time."
-msgstr ""
-"Klassieke grafiek die visualiseert hoe metrieken na verloop van tijd "
-"veranderen."
-
 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."
@@ -2707,7 +2739,10 @@ msgstr "Wis alle gegevens"
 msgid "Clear form"
 msgstr "Formulier wissen"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 "Klik op de \"+Toevoegen/Bewerken van Filters\" knop om nieuwe dashboard "
 "filters te maken"
@@ -2742,6 +2777,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr "Klik om een contour toe te voegen"
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "Klik om een contour toe te voegen"
+
 msgid "Click to cancel sorting"
 msgstr "Klik om sortering te annuleren"
 
@@ -2864,12 +2903,13 @@ msgstr ""
 msgid "Column Configuration"
 msgstr "Kolom Configuratie"
 
-msgid "Column Data Types"
-msgstr "Kolom gegevenstypen"
-
 msgid "Column Formatting"
 msgstr "Kolom Opmaak"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Polygoon Instellingen"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2885,9 +2925,6 @@ msgstr "Kolom met lengtegraad gegevens"
 msgid "Column data types"
 msgstr "Kolom gegevenstypen"
 
-msgid "Column datatype"
-msgstr "Kolom gegevenstype"
-
 msgid "Column header tooltip"
 msgstr "Kolomkop tooltip"
 
@@ -2917,17 +2954,19 @@ msgstr ""
 " index kolom is."
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
+msgstr "Kolom gegevenstype"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "Columnar bestand"
 
 msgid "Columns"
 msgstr "Kolommen"
 
-msgid "Columns To Be Parsed as Dates"
-msgstr "Kolommen die als datums worden geparsed"
-
-msgid "Columns To Read"
-msgstr "Kolommen om te Lezen"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s kolom(men)"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2940,6 +2979,10 @@ msgstr "Kolommen ontbreken in databron: %(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr "Kolommen subtotaal positie"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "Kolommen die als datums worden geparsed"
+
 msgid "Columns to calculate distribution across."
 msgstr "Kolommen om de distributie te berekenen."
 
@@ -2955,6 +2998,10 @@ msgstr "Kolommen om te groeperen op de kolommen"
 msgid "Columns to group by on the rows"
 msgstr "Kolommen om te groeperen op de rijen"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Kolommen om te Lezen"
+
 msgid "Combine metrics"
 msgstr "Combineer metrieken"
 
@@ -3000,22 +3047,6 @@ msgstr ""
 "verschillende groepen. Elke groep wordt toegewezen aan een rij en "
 "verandert na verloop van tijd weergegeven balklengtes en kleur."
 
-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 ""
-"Vergelijk metrieken van verschillende categorieën met behulp van bars. "
-"Lengtes worden gebruikt om de grootte van elke waarde en kleur aan te "
-"geven om groepen te onderscheiden."
-
-msgid ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-"Vergelijk de duur van de verschillende activiteiten in een gedeelde "
-"tijdlijnweergave."
-
 msgid "Comparison"
 msgstr "Vergelijken"
 
@@ -3074,6 +3105,9 @@ msgstr "Filter scopes configureren"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "Configureer de basis van uw Aantekeningenlaag."
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 "Configureer dit dashboard om het in een externe webapplicatie in te "
@@ -3082,12 +3116,19 @@ msgstr ""
 msgid "Configure your how you overlay is displayed here."
 msgstr "Configureer hier hoe uw overlay wordt weergegeven."
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Toon wachtwoord."
+
 msgid "Confirm overwrite"
 msgstr "Overschrijven bevestigen"
 
 msgid "Confirm save"
 msgstr "Opslaan bevestigen"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "Verbinden"
 
@@ -3119,9 +3160,6 @@ msgstr "Verbinding mislukt, controleer uw verbindingsinstellingen"
 msgid "Connection failed, please check your connection settings."
 msgstr "Verbinding mislukt, controleer uw verbindingsinstellingen"
 
-msgid "Connection looks good!"
-msgstr "Verbinding ziet er goed uit!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "Datum opmaak"
@@ -3160,21 +3198,21 @@ msgstr "Gekopieerd naar het klembord!"
 msgid "Copy"
 msgstr "Kopiëren"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "Kopieer SELECT-instructie naar het klembord"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "Kopieer en plak JSON aanmeldgegevens"
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "Kopieer en plak hier het volledige .json service-account bestand"
-
 msgid "Copy link"
 msgstr "Kopieer link"
 
-msgid "Copy message"
-msgstr "Kopieer bericht"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Kopie van %s"
@@ -3191,6 +3229,9 @@ msgstr "Kopieer query URL"
 msgid "Copy query link to your clipboard"
 msgstr "Kopieer query link naar uw klembord"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr ""
 "Kopieer de identifier van de account waarmee u verbinding probeert te "
@@ -3208,6 +3249,10 @@ msgstr "Kopieer naar Klembord"
 msgid "Copy to clipboard"
 msgstr "Kopieer naar klembord"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "Inner Radius"
+
 msgid "Correlation"
 msgstr "Correlatie"
 
@@ -3237,6 +3282,9 @@ msgstr "Kon het database driver niet laden: {}"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr "Kan de hostname niet omzetten: \"%(host)s\"."
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr "Tel"
 
@@ -3330,6 +3378,9 @@ msgstr "Een gegevensbron maken en een nieuw tabblad maken"
 msgid "Creator"
 msgstr "Maker"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr "Donkerrood"
 
@@ -3415,6 +3466,9 @@ msgstr "Aangepaste SQL velden mogen geen sub-query's bevatten."
 msgid "Custom color palettes"
 msgstr "Automatisch aanvullen"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "Aangepast"
@@ -3452,9 +3506,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr "Cyclische afhankelijkheid gedetecteerd"
 
-msgid "D3 Format"
-msgstr "D3 Formaat"
-
 msgid "D3 format"
 msgstr "D3 formaat"
 
@@ -3516,18 +3567,37 @@ msgstr "Dashboard [%s] is zojuist aangemaakt en grafiek [%s] is eraan toegevoegd
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr "Dashboard [{}] is zojuist aangemaakt en grafiek [{}] is eraan toegevoegd"
 
-msgid "Dashboard could not be deleted."
-msgstr "Dashboard kon niet worden verwijderd."
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
 
-msgid "Dashboard could not be updated."
+#, fuzzy
+msgid "Dashboard cannot be favorited."
 msgstr "Dashboard kon niet worden bijgewerkt."
 
-msgid "Dashboard does not exist"
-msgstr "Het dashboard bestaat niet"
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "Dashboard kon niet worden bijgewerkt."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "Dashboard kon niet worden bijgewerkt."
+
+msgid "Dashboard could not be deleted."
+msgstr "Dashboard kon niet worden verwijderd."
+
+msgid "Dashboard could not be updated."
+msgstr "Dashboard kon niet worden bijgewerkt."
+
+msgid "Dashboard does not exist"
+msgstr "Het dashboard bestaat niet"
 
 msgid "Dashboard imported"
 msgstr "Dashboard geïmporteerd"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "Dashboard kon niet worden bijgewerkt."
+
 msgid "Dashboard parameters are invalid."
 msgstr "Dashboard parameters zijn ongeldig."
 
@@ -3574,10 +3644,6 @@ msgstr "Gestippeld"
 msgid "Data"
 msgstr "Gegevens"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "Dataset geïmporteerd"
-
 msgid "Data Table"
 msgstr "Data Tabel"
 
@@ -3607,6 +3673,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr "Extra data voor JS"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Dataset geïmporteerd"
+
 msgid "Data preview"
 msgstr "Data voorbeeld"
 
@@ -3767,17 +3837,6 @@ msgstr ""
 "Datasets kunnen worden gemaakt vanuit databasetabellen of SQL queries. "
 "Selecteer een databasetabel links of "
 
-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 ""
-"Datasets kunnen een hoofdtijdelijke kolom hebben (main_dttm_col), maar "
-"kunnen ook secundaire tijdkolommen hebben. Wanneer dit attribuut waar is,"
-" wanneer de secundaire kolommen worden gefilterd, wordt hetzelfde filter "
-"toegepast op de hoofddatetime kolom."
-
 msgid "Datasets could not be deleted."
 msgstr "Data’s konden niet worden verwijderd."
 
@@ -3811,9 +3870,6 @@ msgstr "Datum opmaak string"
 msgid "Date/Time"
 msgstr "Datum/Tijd"
 
-msgid "Datetime Format"
-msgstr "Datumtijd Opmaak"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3843,13 +3899,12 @@ msgstr "Deactiveren"
 msgid "December"
 msgstr "December"
 
-msgid "Decides which column to sort the base axis by."
-msgstr "Bepaalt de kolom waarop de basisas gesorteerd moet worden."
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "Besluit welke maatregel de basisas sorteert."
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "Decimaal teken"
 
 msgid "Deck.gl - 3D Grid"
@@ -3892,9 +3947,6 @@ msgstr "Verlaag"
 msgid "Default Catalog"
 msgstr "Standaard waarde"
 
-msgid "Default Endpoint"
-msgstr "Standaard eindpunt"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "Selecteer schema"
@@ -3902,10 +3954,11 @@ msgstr "Selecteer schema"
 msgid "Default URL"
 msgstr "Standaard URL"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
-"Standaard URL om naar door te verwijzen bij toegang vanaf de dataset "
-"lijst pagina"
 
 msgid "Default Value"
 msgstr "Standaard waarde"
@@ -3927,9 +3980,6 @@ msgstr ""
 "steeds groter zijn dan deze als andere kolommen niet veel ruimte nodig "
 "hebben"
 
-msgid "Default value is required"
-msgstr "Standaardwaarde is vereist"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 "Standaardwaarde moet worden ingesteld wanneer \"Filter heeft "
@@ -3994,9 +4044,6 @@ msgstr ""
 "Definieert een rollend venster functie om toe te passen, werkt samen met "
 "het [Periods] tekstvak"
 
-msgid "Defines how each series is broken down"
-msgstr "Bepaalt hoe elke serie is opgesplitst"
-
 msgid "Defines the grid size in pixels"
 msgstr "Definieert de rastergrootte in pixels"
 
@@ -4060,9 +4107,17 @@ msgstr "Verwijder Query?"
 msgid "Delete Report?"
 msgstr "Verwijder Rapport?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "verwijder"
+
 msgid "Delete Template?"
 msgstr "Template verwijderen?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Verwijder Query?"
+
 msgid "Delete all Really?"
 msgstr "Ben je zeker dat je alles wil verwijderen?"
 
@@ -4081,12 +4136,20 @@ msgstr "E-mailrapport verwijderen"
 msgid "Delete query"
 msgstr "Verwijder query"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "verwijder"
+
 msgid "Delete template"
 msgstr "Verwijder template"
 
 msgid "Delete this container and save to remove this message."
 msgstr "Verwijder deze container en sla op om dit bericht te verwijderen."
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Verwijder query"
+
 msgid "Deleted"
 msgstr "Verwijderd"
 
@@ -4148,13 +4211,30 @@ msgstr[1] "%(num)d opgeslagen zoekopdrachten verwijderd"
 msgid "Deleted %s"
 msgstr "Verwijderd %s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Verwijderd: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Verwijderd: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Verwijderd: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Verwijderd: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Verwijderd: %s"
 
+#, fuzzy
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 "Het verwijderen van een tabblad zal alle inhoud erin verwijderen. U kunt "
 "deze actie nog steeds ongedaan maken met de"
@@ -4168,18 +4248,12 @@ msgstr "Scheidingsteken"
 msgid "Delivery method"
 msgstr "Levering methode"
 
-msgid "Demographics"
-msgstr "Demografisch"
-
 msgid "Density"
 msgstr "Dichtheid"
 
 msgid "Dependent on"
 msgstr "Afhankelijk van"
 
-msgid "Deprecated"
-msgstr "Verouderd"
-
 msgid "Description"
 msgstr "Omschrijving"
 
@@ -4280,9 +4354,6 @@ msgstr "Er zijn geen voorbeelden gevonden voor deze dataset"
 msgid "Discard"
 msgstr "Negeren"
 
-msgid "Display"
-msgstr "Weergeven"
-
 msgid "Display Name"
 msgstr "Toon naam"
 
@@ -4290,12 +4361,20 @@ msgstr "Toon naam"
 msgid "Display all"
 msgstr "Toon naam"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "Toon kolomniveau totaal"
+
 msgid "Display column level subtotal"
 msgstr "Toon kolomniveau subtotaal"
 
 msgid "Display column level total"
 msgstr "Toon kolomniveau totaal"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Toon kolomniveau totaal"
+
 msgid "Display configuration"
 msgstr "Weergave configuratie"
 
@@ -4321,8 +4400,9 @@ msgstr "Toon rijniveau subtotaal"
 msgid "Display row level total"
 msgstr "Toon rijniveau totaal"
 
-msgid "Display settings"
-msgstr "Weergave instellingen"
+#, fuzzy
+msgid "Display type icon"
+msgstr "boolean type icoon"
 
 msgid ""
 "Displays connections between entities in a graph structure. Useful for "
@@ -4342,9 +4422,6 @@ msgstr "Verspreid over"
 msgid "Distribution"
 msgstr "Verspreiding"
 
-msgid "Distribution - Bar Chart"
-msgstr "Verdeling - Staafdiagram"
-
 msgid "Divider"
 msgstr "Verdeler"
 
@@ -4372,9 +4449,18 @@ msgstr "Download als Afbeelding"
 msgid "Download as image"
 msgstr "Download als afbeelding"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "Download naar CSV"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "Concept"
 
@@ -4475,6 +4561,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "Dupliceer dataset"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Dupliceer"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "Dubbele kolomnaam (of -namen): %(columns)s"
+
 msgid "Duplicate tab"
 msgstr "Tabblad Dupliceren"
 
@@ -4491,22 +4585,6 @@ msgstr ""
 " gaat voorbij aan de cache. Merk op dat de standaard timeout is ingesteld"
 " op de globale timeout indien niet gedefinieerd."
 
-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 ""
-"Duur (in seconden) van de caching time-out voor grafieken van deze "
-"database. Een time-out van 0 geeft aan dat de cache nooit verloopt. Merk "
-"op dat dit standaard de globale time-out is indien niet gedefinieerd."
-
-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."
-
 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 "
@@ -4516,15 +4594,6 @@ msgstr ""
 "-1 om de cache te omzeilen. Hou er rekening mee dat dit standaard de "
 "timeout van de dataset is, indien niet gedefinieerd."
 
-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 ""
-"Duur (in seconden) van de caching time-out voor deze tabel. Een time-out "
-"van 0 geeft aan dat de cache nooit verloopt. Merk op dat deze standaard "
-"de database time-out heeft als deze niet gedefinieerd is."
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4545,6 +4614,10 @@ msgstr "Duur in ms (1,40008 => 1ms 400μs 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "Duur in ms (100.40008 => 100ms 400μs 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "Duur in ms (66000 => 1m 6s)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "Duur in ms (66000 => 1m 6s)"
 
@@ -4566,10 +4639,6 @@ msgstr "EINDE (EXCLUSIEF)"
 msgid "ERROR"
 msgstr "FOUT"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "FOUT: %s"
-
 msgid "Edge length"
 msgstr "Rand lengte"
 
@@ -4594,45 +4663,38 @@ msgstr "Bewerk CSS"
 msgid "Edit CSS template properties"
 msgstr "Bewerk CSS template eigenschappen"
 
-msgid "Edit Chart"
-msgstr "Bewerk grafiek"
-
 msgid "Edit Chart Properties"
 msgstr "Bewerk Grafiek Eigenschappen"
 
-msgid "Edit Column"
-msgstr "Kolom toevoegen"
-
 msgid "Edit Dashboard"
 msgstr "Bewerk Dashboard"
 
-msgid "Edit Database"
-msgstr "Bewerk Database"
-
 msgid "Edit Dataset "
 msgstr "Bewerk Dataset "
 
 msgid "Edit Log"
 msgstr "Bewerk Log"
 
-msgid "Edit Metric"
-msgstr "Bewerk Metriek"
-
 msgid "Edit Plugin"
 msgstr "Bewerk Plugin"
 
 msgid "Edit Report"
 msgstr "Bewerk Rapport"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "bewerk modus"
+
 msgid "Edit Rule"
 msgstr "Bewerk Regel"
 
-msgid "Edit Table"
-msgstr "Bewerk tabel"
-
 msgid "Edit Tag"
 msgstr "Bewerk Tag"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Bewerk query"
+
 msgid "Edit annotation"
 msgstr "Bewerk aantekening"
 
@@ -4669,6 +4731,10 @@ msgstr "Eigenschappen bewerken"
 msgid "Edit query"
 msgstr "Bewerk query"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "bewerk modus"
+
 msgid "Edit template"
 msgstr "Bewerk template"
 
@@ -4681,6 +4747,10 @@ msgstr "Bewerk het dashboard"
 msgid "Edit time range"
 msgstr "Tijdsbereik bewerken"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Bewerk query"
+
 msgid "Edited"
 msgstr "Bewerkt"
 
@@ -4708,6 +4778,14 @@ msgstr "Ofwel is de gebruikersnaam ofwel het wachtwoord verkeerd."
 msgid "Elevation"
 msgstr "Hoogte"
 
+#, fuzzy
+msgid "Email"
+msgstr "Details"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "Waarde is vereist"
+
 msgid "Email reports active"
 msgstr "E-mailrapporten actief"
 
@@ -4723,6 +4801,10 @@ msgstr "Code embedden"
 msgid "Embed dashboard"
 msgstr "Dashboard embedden"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "Dashboard kon niet worden verwijderd."
+
 msgid "Embedding deactivated."
 msgstr "Embedden gedeactiveerd."
 
@@ -4732,9 +4814,6 @@ msgstr "Filtergebeurtenissen aflaten"
 msgid "Emphasis"
 msgstr "Nadruk"
 
-msgid "Employment and education"
-msgstr "Werkgelegenheid en onderwijs"
-
 msgid "Empty circle"
 msgstr "Lege cirkel"
 
@@ -4758,9 +4837,6 @@ msgstr ""
 "Schakel 'Sta bestandsuploads naar database toe' in in alle database-"
 "instellingen"
 
-msgid "Enable Filter Select"
-msgstr "Inschakelen Filter Keuze"
-
 msgid "Enable cross-filtering"
 msgstr "Schakel cross-filtering in"
 
@@ -4864,12 +4940,26 @@ msgstr "Naam rapport"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "Voer de vereiste %(dbModelName)s aanmeldgegevens in"
 
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Naam van de waarschuwing"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "Naam van de waarschuwing"
+
+msgid "Enter the user's username"
+msgstr ""
+
 msgid "Entity"
 msgstr "Entiteit"
 
-msgid "Entity ID"
-msgstr "Entiteit ID"
-
 msgid "Equal Date Sizes"
 msgstr "Gelijke datumgrootte"
 
@@ -4882,6 +4972,14 @@ msgstr "Fout"
 msgid "Error Fetching Tagged Objects"
 msgstr "Fout bij ophalen van getagde objecten"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Fout bij het ophalen van gegevens: %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Fout bij opslaan dataset"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr "Fout in jinja expressie in HAVING clausule: %(msg)s"
@@ -4906,6 +5004,10 @@ msgstr ""
 msgid "Error message"
 msgstr "Foutmelding"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "fout donker"
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "Fout bij opslaan dataset"
@@ -4921,6 +5023,22 @@ msgstr "Upload Excel-bestand"
 msgid "Error saving dataset"
 msgstr "Fout bij opslaan dataset"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Fout bij opslaan dataset"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Fout bij het ophalen van grafieken"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Fout bij het ophalen van grafieken"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Fout bij het ophalen van grafieken"
+
 msgid "Error while fetching charts"
 msgstr "Fout bij het ophalen van grafieken"
 
@@ -4928,10 +5046,30 @@ msgstr "Fout bij het ophalen van grafieken"
 msgid "Error while fetching data: %s"
 msgstr "Fout bij het ophalen van gegevens: %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Fout bij het ophalen van grafieken"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Fout bij het ophalen van grafieken"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Fout bij het ophalen van grafieken"
+
 #, 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"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Fout bij het ophalen van grafieken"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Fout bij het ophalen van grafieken"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "Fout: %(error)s"
@@ -4955,15 +5093,6 @@ msgstr "Kostenraming voordat een query wordt uitgevoerd"
 msgid "Event"
 msgstr "Gebeurtenis"
 
-msgid "Event Flow"
-msgstr "Gebeurtenis Stroom"
-
-msgid "Event Names"
-msgstr "Gebeurtenis Namen"
-
-msgid "Event definition"
-msgstr "Gebeurtenis definitie"
-
 msgid "Event flow"
 msgstr "Gebeurtenis stroom"
 
@@ -4985,13 +5114,13 @@ msgstr "Voorbeeld"
 msgid "Examples"
 msgstr "Voorbeelden"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "CSV upload"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "CSV upload"
+
 msgid "Exclude selected values"
 msgstr "Geselecteerde waarden uitsluiten"
 
@@ -5083,12 +5212,6 @@ msgstr "Exporteer naar PDF"
 msgid "Export to Pivoted .CSV"
 msgstr "Exporteren naar pivoted .CSV"
 
-msgid "Export to YAML"
-msgstr "Export naar YAML"
-
-msgid "Export to YAML?"
-msgstr "Export naar YAML?"
-
 msgid "Export to full .CSV"
 msgstr "Exporteer naar volledige .CSV"
 
@@ -5107,11 +5230,9 @@ msgstr "Database weergeven in SQL Lab"
 msgid "Expose in SQL Lab"
 msgstr "Weergeven in SQL Lab"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Expose deze DB in SQL Lab"
-
-msgid "Expression"
-msgstr "Expressie"
+#, fuzzy
+msgid "Extent"
+msgstr "recent"
 
 msgid "Extra"
 msgstr "Extra"
@@ -5137,10 +5258,6 @@ msgstr ""
 " bron van de waarheid. }, \"warning_markdown\": \"Dit is een "
 "waarschuwing\" }`."
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "Extra veld kan niet gedecodeerd worden door JSON. %(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "Extra parameters voor gebruik in jinja templated queries"
 
@@ -5160,6 +5277,10 @@ msgstr "Geëxtrudeerd"
 msgid "FEB"
 msgstr "FEB"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Bewerk de dataset"
+
 msgid "FRI"
 msgstr "VR"
 
@@ -5169,16 +5290,15 @@ msgstr "Factor"
 msgid "Factor to multiply the metric by"
 msgstr "Factor om de metriek te vermenigvuldigen met"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "Mislukt"
 
 msgid "Failed at retrieving results"
 msgstr "Fout bij het ophalen van resultaten"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "Opschorten van query mislukt. %s"
-
 msgid "Failed to create report"
 msgstr "Aanmaken rapport mislukt"
 
@@ -5207,6 +5327,10 @@ msgstr "Opslaan van cross-filter scope mislukt"
 msgid "Failed to start remote query on a worker."
 msgstr "Het starten van externe query op een werker is mislukt."
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "Opschorten van query mislukt. %s"
+
 msgid "Failed to tag items"
 msgstr "Fout bij het taggen van items"
 
@@ -5230,9 +5354,6 @@ msgstr ""
 msgid "February"
 msgstr "Februari"
 
-msgid "Fetch Values Predicate"
-msgstr "Waarden ophalen Predicaat"
-
 msgid "Fetch data preview"
 msgstr "Gegevens ophalen preview"
 
@@ -5257,16 +5378,13 @@ msgstr "Veld is verplicht"
 msgid "File"
 msgstr "Bestand"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "Filter Instellingen"
-
 #, fuzzy
 msgid "File extension is not allowed."
 msgstr "Data-URI is niet toegestaan."
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "Filter Instellingen"
 
 #, fuzzy
 msgid "File upload"
@@ -5334,9 +5452,6 @@ msgstr "Filterwaardenlijst kan niet leeg zijn"
 msgid "Filter your charts"
 msgstr "Filter je grafieken"
 
-msgid "Filterable"
-msgstr "Filterbaar"
-
 msgid "Filters"
 msgstr "Filters"
 
@@ -5349,6 +5464,16 @@ msgstr "Filter op metrieken"
 msgid "Filters for comparison must have a value"
 msgstr "Filters voor vergelijking moeten een waarde hebben"
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "`rij_limiet` moet groter of gelijk aan 0 zijn"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "Filters buiten bereik (%d)"
@@ -5382,6 +5507,14 @@ msgstr "Beëindigen"
 msgid "First"
 msgstr "Eerste"
 
+#, fuzzy
+msgid "First name"
+msgstr "Grafiek naam"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "Naam is vereist"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5472,6 +5605,10 @@ msgstr "Forceer datum opmaak"
 msgid "Force refresh"
 msgstr "Vernieuwen forceren"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Forceer vernieuwen schema lijst"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "Forceer vernieuwen tabel lijst"
@@ -5592,6 +5729,10 @@ msgstr "GeoJson Instellingen"
 msgid "Geohash"
 msgstr "Geohash"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Lege kolom"
+
 msgid "Get the last date by the date unit."
 msgstr "Verkrijg de laatste datum door de datum eenheid."
 
@@ -5651,9 +5792,6 @@ msgstr "Groep Sleutel"
 msgid "Group by"
 msgstr "Groep per"
 
-msgid "Groupable"
-msgstr "Groepeerbaar"
-
 msgid "Guest user cannot modify chart payload"
 msgstr "Gastgebruiker kan de grafiek-payload niet wijzigen"
 
@@ -5670,22 +5808,12 @@ msgstr "Handlebars Sjabloon"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-"Hard waarde grenzen toegepast voor kleurcodering. Is alleen relevant en "
-"toegepast wanneer de normalisatie wordt toegepast tegen de hele heatmap."
-
 msgid "Has created by"
 msgstr "Is aangemaakt door"
 
 msgid "Header"
 msgstr "Koptekst"
 
-msgid "Header Row"
-msgstr "Koptekst rij"
-
 #, fuzzy
 msgid "Header row"
 msgstr "Koptekst rij"
@@ -5693,19 +5821,16 @@ msgstr "Koptekst rij"
 msgid "Heatmap"
 msgstr "Heatmap"
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "Cirkel Grafiek (legacy)"
-
-msgid "Heatmap Options"
-msgstr "Heatmap Opties"
-
 msgid "Height"
 msgstr "Hoogte"
 
 msgid "Height of the sparkline"
 msgstr "Hoogte van de sparkline"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Tijdkolom"
+
 msgid "Hide Line"
 msgstr "Lijn verbergen"
 
@@ -5730,10 +5855,6 @@ msgstr "Hierarchy"
 msgid "Histogram"
 msgstr "Histogram"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "Cirkel Grafiek (legacy)"
-
 msgid "Home"
 msgstr "Startpagina"
 
@@ -5815,27 +5936,16 @@ msgstr ""
 "maar imiteer de momenteel ingelogde gebruiker via hive.server2.proxy.user"
 " eigenschap."
 
-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.<br/>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 ""
-"Indien Presto, alle zoekopdrachten in SQL Lab zullen worden uitgevoerd "
-"als de momenteel ingelogde gebruiker die toestemming moet hebben om ze "
-"uit te voeren.<br/>Als Hive en hive.server2.enable.doAs is ingeschakeld, "
-"worden de zoekopdrachten als serviceaccount uitgevoerd, maar imiteer de "
-"momenteel ingelogde gebruiker via hive.server2.proxy.user eigenschap."
-
-msgid "If Table Already Exists"
-msgstr "Als Tabel al bestaat"
-
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr ""
 "Als een metriek is opgegeven, zal sortering worden gedaan op basis van de"
 " metrische waarde"
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
@@ -5843,10 +5953,9 @@ msgstr ""
 "Indien ingeschakeld, sorteert deze controle de resultaten/waarden "
 "aflopend, anders worden de resultaten oplopend gesorteerd."
 
-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."
+#, fuzzy
+msgid "If table already exists"
+msgstr "Label bestaat al"
 
 msgid "Ignore cache when generating report"
 msgstr "Negeer cache bij genereren van rapport"
@@ -5868,9 +5977,6 @@ msgstr ""
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr "Inloggen als ingelogde gebruiker (Presto, Trino, Drill, Hive en GSheets)"
 
-msgid "Impersonate the logged on user"
-msgstr "De aangemelde gebruiker imiteren"
-
 msgid "Import"
 msgstr "Importeer"
 
@@ -5881,9 +5987,6 @@ msgstr "Importeer %s"
 msgid "Import Dashboard(s)"
 msgstr "Importeer Dashboard(s)"
 
-msgid "Import a table definition"
-msgstr "Importeer een tabeldefinitie"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "Import grafiek mislukt om een onbekende reden"
 
@@ -5914,17 +6017,14 @@ msgstr "Importeer queries"
 msgid "Import saved query failed for an unknown reason."
 msgstr "Import opgeslagen query mislukt om een onbekende reden."
 
-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 ""
-"Belangrijk! Selecteer dit als de tabel nog niet is gesorteerd op entiteit"
-" id, anders is er geen garantie dat alle gebeurtenissen voor elk entiteit"
-" worden teruggegeven."
-
 msgid "In"
 msgstr "In"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "Includeer Serie"
 
@@ -5947,17 +6047,18 @@ msgstr "Verhoog"
 msgid "Index"
 msgstr "Index"
 
-msgid "Index Column"
-msgstr "Index Kolom"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "Bereik labels"
+msgid "Index column"
+msgstr "Lijnen kolom"
 
 #, fuzzy
 msgid "Index label"
 msgstr "Bereik labels"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Bekijk sleutels & indexen (%s)"
+
 msgid "Info"
 msgstr "Info"
 
@@ -5976,6 +6077,13 @@ msgstr "Voer aangepaste breedte in pixels in"
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr "Invoerveld ondersteunt aangepaste rotatie. b.v. 30 voor 30°"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "Laag verbergen"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "Intensiteit"
 
@@ -6008,9 +6116,6 @@ msgstr "Interval Startkolom"
 msgid "Intervals"
 msgstr "Intervallen"
 
-msgid "Intesity"
-msgstr "Intensiteit"
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -6058,6 +6163,9 @@ msgstr "Ongeldige valuta code in opgeslagen metriek"
 msgid "Invalid date/timestamp format"
 msgstr "Ongeldig datum/tijdstempel opmaak"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "Ongeldig filterwerkingstype: %(op)s"
@@ -6121,6 +6229,10 @@ msgstr "Selectie omkeren"
 msgid "Invert current page"
 msgstr "Huidige pagina omkeren"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "E-mailrapporten actief"
+
 msgid "Is certified"
 msgstr "Is gecertificeerd"
 
@@ -6298,12 +6410,6 @@ msgstr "Groot"
 msgid "Last"
 msgstr "Laatste"
 
-msgid "Last Changed"
-msgstr "Laatste wijziging"
-
-msgid "Last Modified"
-msgstr "Laatst gewijzigd"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "Laatst bijgewerkt %s"
@@ -6312,6 +6418,10 @@ msgstr "Laatst bijgewerkt %s"
 msgid "Last Updated %s by %s"
 msgstr "Laatst bijgewerkt %s door %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Doel waarde"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr "Laatst beschikbare waarde gezien op %s"
@@ -6319,12 +6429,24 @@ msgstr "Laatst beschikbare waarde gezien op %s"
 msgid "Last day"
 msgstr "Afgelopen dag"
 
+#, fuzzy
+msgid "Last login"
+msgstr "Afgelopen maand"
+
 msgid "Last modified"
 msgstr "Laatst gewijzigd"
 
 msgid "Last month"
 msgstr "Afgelopen maand"
 
+#, fuzzy
+msgid "Last name"
+msgstr "dataset naam"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Naam is vereist"
+
 msgid "Last quarter"
 msgstr "Afgelopen kwartaal"
 
@@ -6337,15 +6459,42 @@ msgstr "Afgelopen week"
 msgid "Last year"
 msgstr "Afgelopen jaar"
 
+#, fuzzy
+msgid "Lat"
+msgstr "vlak"
+
 msgid "Latitude"
 msgstr "Breedtegraad"
 
 msgid "Latitude of default viewport"
 msgstr "Breedtegraad van standaard viewport"
 
+#, fuzzy
+msgid "Layer"
+msgstr "jaar"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Naam van de waarschuwing"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "Laagconfiguratie"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Titel grafiek"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Filter type"
+
+#, fuzzy
+msgid "Layers"
+msgstr "waarschuwingen"
+
 msgid "Layout"
 msgstr "Indeling"
 
@@ -6358,13 +6507,6 @@ msgstr "Indeling type van de grafiek"
 msgid "Layout type of tree"
 msgstr "Indeling type van boomstructuur"
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-"Eindknooppunten die minder dan dit aantal evenementen vertegenwoordigen "
-"worden in het begin verborgen in de visualisatie"
-
 msgid "Least recently modified"
 msgstr "Meest recente wijziging"
 
@@ -6429,13 +6571,6 @@ msgstr "Like (hoofdlettergevoelig)"
 msgid "Limit type"
 msgstr "Limiet type"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-"Rijen beperken kan leiden tot onvolledige data en misleidende grafieken. "
-"Overweeg het filteren of groeperen van bron/doelnamen."
-
 msgid "Limits the number of cells that get retrieved."
 msgstr "Beperkt het aantal cellen dat wordt opgehaald."
 
@@ -6483,6 +6618,9 @@ msgstr ""
 "lijnsegmenten. Het is een basissoort grafiek dat op veel gebieden "
 "gebruikelijk is."
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "Lijn interpolatie zoals gedefinieerd door d3.js"
 
@@ -6510,9 +6648,16 @@ msgstr "Lijnen codering"
 msgid "Link Copied!"
 msgstr "Link gekopieerd!"
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr "Lijst Unieke Waarden"
 
+#, fuzzy
+msgid "List Users"
+msgstr "Splits nummer"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr "Lijst met extra kolommen beschikbaar gemaakt in JavaScript functies"
 
@@ -6580,6 +6725,10 @@ msgstr "Logaritmische y-as"
 msgid "Login"
 msgstr "Aanmelden"
 
+#, fuzzy
+msgid "Login count"
+msgstr "tellen"
+
 msgid "Login with"
 msgstr "Log in met"
 
@@ -6589,6 +6738,10 @@ msgstr "Afmelden"
 msgid "Logs"
 msgstr "Logboek"
 
+#, fuzzy
+msgid "Lon"
+msgstr "op"
+
 msgid "Long dashed"
 msgstr "Lang strepen"
 
@@ -6630,9 +6783,6 @@ msgstr "MA"
 msgid "Main"
 msgstr "min"
 
-msgid "Main Datetime Column"
-msgstr "Kolom Hoofd Datumtijd"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6668,6 +6818,10 @@ msgstr "Stel handmatig min/max waarden in voor de y-as."
 msgid "Map"
 msgstr "Kaart"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Heatmap Opties"
+
 msgid "Map Style"
 msgstr "Kaart Stijl"
 
@@ -6710,14 +6864,17 @@ msgstr "Markeringen"
 msgid "Markup type"
 msgstr "Opmaaktype(Markup type)"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "Max"
 
 msgid "Max Bubble Size"
 msgstr "Max Bubbel Grootte"
 
-msgid "Max Events"
-msgstr "Max Gebeurtenissen"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "Maximum"
@@ -6728,6 +6885,9 @@ msgstr "Maximale Lettergrootte"
 msgid "Maximum Radius"
 msgstr "Maximum Radius"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6772,6 +6932,18 @@ msgstr "Mediaan waarden"
 msgid "Medium"
 msgstr "Gemiddeld"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr "Menu acties trigger"
 
@@ -6871,13 +7043,6 @@ msgstr ""
 "als een serie of rijlimiet aanwezig is. Indien ongedefinieerd wordt deze "
 "teruggekeerd naar de eerste metriek (indien gepast)."
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-"Metriek wordt gebruikt om de limiet te ordenen als deze aanwezig is. Als "
-"deze ongedefinieerd is, wordt de eerst metriek gebruikt (indien gepast)."
-
 msgid "Metrics"
 msgstr "Metrieken"
 
@@ -6917,8 +7082,8 @@ msgstr "Minimale Lettergrootte"
 msgid "Minimum Radius"
 msgstr "Minimale Radius"
 
-msgid "Minimum leaf node event count"
-msgstr "Minimum aantal gebeurtenissen per bladknoop"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
 "Minimum radius size of the circle, in pixels. As the zoom level changes, "
@@ -6933,6 +7098,10 @@ msgstr "Minimale drempelwaarde in percentage voor het tonen van labels."
 msgid "Minimum value"
 msgstr "Minimale waarde"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "Van datum kan niet groter zijn dan tot datum"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "Minimale waarde van het label op grafiek."
 
@@ -6956,6 +7125,9 @@ msgstr "Minuten %s"
 msgid "Minutes value"
 msgstr "Minimale waarde"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr "Ontbrekende URL-parameters"
 
@@ -6972,6 +7144,12 @@ msgstr "Gewijzigd"
 msgid "Modified %s"
 msgstr "Gewijzigd %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 msgid "Modified by"
 msgstr "Gewijzigd door"
 
@@ -6979,10 +7157,6 @@ msgstr "Gewijzigd door"
 msgid "Modified by: %s"
 msgstr "Gewijzigd door: %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "Gewijzigde kolommen: %s"
-
 msgid "Monday"
 msgstr "Maandag"
 
@@ -7045,9 +7219,6 @@ msgstr "Je moet een grafiek of een dashboard kiezen"
 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"
 
-msgid "Must have at least one numeric column specified"
-msgstr "Er moet minstens één numerieke kolom gespecificeerd zijn"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr "Inloggegevens moeten beschikbaar zijn voor de SSH tunnel"
 
@@ -7072,9 +7243,6 @@ msgstr "NOT GROUPED BY"
 msgid "NOV"
 msgstr "NOV"
 
-msgid "NOW"
-msgstr "NU"
-
 msgid "NUMERIC"
 msgstr "NUMERIC"
 
@@ -7100,9 +7268,6 @@ msgstr "Naam van de id kolom"
 msgid "Name of the source nodes"
 msgstr "Naam van de bronknooppunten"
 
-msgid "Name of the table that exists in the source database"
-msgstr "Naam van de tabel die bestaat in de brondatabase"
-
 msgid "Name of the target nodes"
 msgstr "Naam van het doel knooppunten"
 
@@ -7118,19 +7283,23 @@ msgstr "Hulp nodig? Leer hoe je je database verbindt"
 msgid "Need help? Learn more about"
 msgstr "Hulp nodig? Leer meer over"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Netwerk fout"
+
 msgid "Network error"
 msgstr "Netwerk fout"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Er is een fout opgetreden bij het aanmaken van de gegevensbron"
+
 msgid "Network error."
 msgstr "Netwerk fout."
 
 msgid "New chart"
 msgstr "Nieuwe grafiek"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "Nieuwe kolommen toegevoegd: %s"
-
 msgid "New dataset"
 msgstr "Nieuw dataset"
 
@@ -7178,6 +7347,10 @@ msgstr "Nog geen regels"
 msgid "No Tags created"
 msgstr "Geen Labels aangemaakt"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Actie ongedaan maken"
+
 msgid "No annotation layers"
 msgstr "Geen annotatielagen"
 
@@ -7196,9 +7369,6 @@ msgstr "Geen beschikbare filters."
 msgid "No charts"
 msgstr "Geen grafieken"
 
-msgid "No charts yet"
-msgstr "Nog geen grafieken"
-
 msgid "No columns found"
 msgstr "Geen kolommen gevonden"
 
@@ -7215,9 +7385,6 @@ msgstr "Geen compatibele datasets gevonden"
 msgid "No compatible schema found"
 msgstr "Geen compatibel schema gevonden"
 
-msgid "No dashboards yet"
-msgstr "Nog geen dashboards"
-
 msgid "No data"
 msgstr "Geen data"
 
@@ -7227,6 +7394,10 @@ msgstr "Geen gegevens na filteren of gegevens is NULL voor het laatste tijdrecor
 msgid "No data in file"
 msgstr "Geen gegevens in het bestand"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "Er zijn geen databases beschikbaar"
+
 msgid "No databases match your search"
 msgstr "Er komen geen databases overeen met uw zoekopdracht"
 
@@ -7257,12 +7428,6 @@ msgstr "Geen globale filters zijn momenteel toegevoegd"
 msgid "No matching records found"
 msgstr "Geen overeenkomende records gevonden"
 
-msgid "No of Bins"
-msgstr "Aantal Bins"
-
-msgid "No recents yet"
-msgstr "Nog geen recenten"
-
 msgid "No records found"
 msgstr "Geen gegevens gevonden"
 
@@ -7287,6 +7452,10 @@ msgstr ""
 "verwacht, zorg er dan voor dat alle filters correct zijn geconfigureerd "
 "en dat de gegevensbron gegevens bevat voor het geselecteerde tijdsbereik."
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Nog geen regels"
+
 msgid "No rows were returned for this dataset"
 msgstr "Er zijn geen rijen teruggegeven voor deze dataset"
 
@@ -7299,9 +7468,6 @@ msgstr "Geen opgeslagen expressies gevonden"
 msgid "No saved metrics found"
 msgstr "Geen opgeslagen metrieken gevonden"
 
-msgid "No saved queries yet"
-msgstr "Nog geen opgeslagen queries"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr "Geen opgeslagen resultaten gevonden, u moet uw query opnieuw uitvoeren"
 
@@ -7319,6 +7485,10 @@ msgstr "Geen tijdelijke kolommen gevonden"
 msgid "No time columns"
 msgstr "Geen tijdskolommen"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Nog geen regels"
+
 msgid "No validator found (configured for the engine)"
 msgstr "Geen validator gevonden (geconfigureerd voor de engine)"
 
@@ -7398,6 +7568,10 @@ msgstr "Niet geactiveerd"
 msgid "Not up to date"
 msgstr "Niet up to date"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "Niets getriggerd"
+
 msgid "Nothing triggered"
 msgstr "Niets getriggerd"
 
@@ -7506,9 +7680,6 @@ msgstr "Oktober"
 msgid "Offline"
 msgstr "Offline"
 
-msgid "Offset"
-msgstr "Verschuiving"
-
 msgid "On Grace"
 msgstr "Op Grace"
 
@@ -7538,6 +7709,10 @@ msgstr "Een of meer bedieningsinstrumenten om als kolommen te pivoteren"
 msgid "One or many metrics to display"
 msgstr "Eén of vele metrieken om weer te geven"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "Aantekening lagen worden nog steeds geladen."
+
 msgid "One or more columns already exist"
 msgstr "Een of meer kolommen bestaan al"
 
@@ -7567,12 +7742,6 @@ msgstr "Een of meer parameters die in de query zijn opgegeven zijn ongeldig."
 msgid "One or more parameters specified in the query are missing."
 msgstr "Een of meer in de query opgegeven parameters ontbreken."
 
-msgid "One ore more annotation layers failed loading."
-msgstr "Aantekening lagen worden nog steeds geladen."
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "Alleen SELECT statements zijn toegestaan tegen deze database."
-
 msgid "Only Total"
 msgstr "Alleen Totaal"
 
@@ -7585,9 +7754,6 @@ msgstr "Geldt alleen wanneer \"Label Type\" niet is ingesteld op een percentage.
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr "Geldt alleen wanneer \"Label Type\" is ingesteld op toon waarden."
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "Alleen geselecteerde panelen zullen door deze filter worden beïnvloed"
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7675,15 +7841,19 @@ msgstr "Opties"
 msgid "Or choose from a list of other databases we support:"
 msgstr "Of kies uit een lijst van andere databases die we ondersteunen:"
 
-msgid "Order by entity id"
-msgstr "Sorteer op entiteit id"
-
 msgid "Order results by selected columns"
 msgstr "Sorteer de resultaten op geselecteerde kolommen"
 
 msgid "Ordering"
 msgstr "Volgorde"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr "Oriëntatie"
 
@@ -7808,6 +7978,12 @@ msgstr ""
 "Eigenaren zijn een lijst met gebruikers die het dashboard kunnen "
 "veranderen. Doorzoekbaar op naam of gebruikersnaam."
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr ""
+"Afbeelding downloaden mislukt, gelieve te vernieuwen en probeer het "
+"opnieuw."
+
 msgid "Page length"
 msgstr "Pagina lengte"
 
@@ -7867,6 +8043,14 @@ msgstr ""
 msgid "Password"
 msgstr "Wachtwoord"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "Type is vereist"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Dashboards bestaan niet"
+
 msgid "Paste Private Key here"
 msgstr "Plak privésleutel hier"
 
@@ -7923,6 +8107,14 @@ msgstr "Periodes"
 msgid "Periods must be a whole number"
 msgstr "Perioden moeten een heel getal zijn"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Versie"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr "Person of groep die deze grafiek heeft gecertificeerd."
 
@@ -7938,9 +8130,6 @@ msgstr "Fysiek"
 msgid "Physical (table or view)"
 msgstr "Fysiek (tabel of overzicht)"
 
-msgid "Physical dataset"
-msgstr "Fysieke dataset"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr "Kies een dimensie van waaruit categorische kleuren worden gedefinieerd"
 
@@ -7962,15 +8151,9 @@ msgstr "Kies een set deck.gl grafieken die bovenop elkaar moeten worden geplaats
 msgid "Pick a title for you annotation."
 msgstr "Kies een titel voor je annotatie."
 
-msgid "Pick at least one field for [Series]"
-msgstr "Kies minstens één veld voor [Series]"
-
 msgid "Pick at least one metric"
 msgstr "Kies ten minste één metriek"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "Kies precies 2 kolommen als [Bron / Doel]"
-
 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."
@@ -7984,8 +8167,8 @@ msgstr "Kies uw favoriete opmaaktaal (markup language)"
 msgid "Pie Chart"
 msgstr "Cirkel diagram"
 
-msgid "Pie Chart (legacy)"
-msgstr "Cirkel Grafiek (legacy)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "Cirkel vorm"
@@ -7996,6 +8179,14 @@ msgstr ""
 msgid "Pin"
 msgstr "Vastzetten"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "Linksboven"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Rechtsboven"
+
 msgid "Pivot Table"
 msgstr "Draaitabel"
 
@@ -8056,6 +8247,9 @@ msgstr ""
 "deze overeenkomen met de SQL query en Set Parameters. Probeer daarna uw "
 "query opnieuw uit te voeren."
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr "Kies ten minste één \"groep bij\""
 
@@ -8065,12 +8259,25 @@ msgstr "Gelieve te bevestigen"
 msgid "Please confirm the overwrite values."
 msgstr "Bevestig de overschrijving waarden."
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "Gelieve te bevestigen"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Voer een SQLAlchemy URI in om te testen"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "Voer het wachtwoord opnieuw in."
 
@@ -8083,9 +8290,6 @@ msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] "Neem contact op met de grafiek eigenaar voor hulp."
 msgstr[1] ""
 
-msgid "Please save the query to enable sharing"
-msgstr "Sla de query op om te kunnen delen"
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr "Sla eerst je grafiek op, probeer dan een nieuw e-mailrapport te maken."
 
@@ -8163,9 +8367,6 @@ msgstr "Polylijn"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "Vul \"Standaardwaarde\" in om deze controle te activeren"
 
-msgid "Population age data"
-msgstr "Populatie leeftijd data"
-
 msgid "Port"
 msgstr "Poort"
 
@@ -8203,15 +8404,6 @@ msgstr "Vooraf-filter beschikbare waarden"
 msgid "Pre-filter is required"
 msgstr "Vooraf-filter is vereist"
 
-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 ""
-"Voorspelling toegepast bij het ophalen van verschillende waarde om het "
-"filter besturingscomponent te vullen. Ondersteunt jinja template syntax. "
-"Geldt alleen wanneer `Filter Selecteren inschakelen` is ingeschakeld."
-
 msgid "Predictive"
 msgstr "Voorspelling"
 
@@ -8231,10 +8423,6 @@ msgstr "Voorvertoning"
 msgid "Preview uploaded file"
 msgstr "Upload Excel-bestand"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "Voorbeeld: `%s`"
-
 msgid "Previous"
 msgstr "Vorige"
 
@@ -8280,18 +8468,13 @@ msgstr "Voortgang"
 msgid "Progressive"
 msgstr "Progressief"
 
-msgid "Propagate"
-msgstr "Propageren"
+#, fuzzy
+msgid "Project Id"
+msgstr "Verouderd"
 
 msgid "Proportional"
 msgstr "Proportioneel"
 
-msgid "Public and privately shared sheets"
-msgstr "Openbare en privé gedeelde sheets"
-
-msgid "Publicly shared sheets only"
-msgstr "Alleen openbaar gedeelde sheets"
-
 msgid "Published"
 msgstr "Gepubliceerd"
 
@@ -8311,9 +8494,6 @@ msgstr "Waarde moet groter zijn dan 0"
 msgid "Put the labels outside of the pie?"
 msgstr "Plaats de labels buiten de cirkel?"
 
-msgid "Put the labels outside the pie?"
-msgstr "Plaats de labels buiten de cirkel?"
-
 msgid "Put your code here"
 msgstr "Plaats je code hier"
 
@@ -8416,10 +8596,6 @@ msgstr "Radius in meters"
 msgid "Radius in miles"
 msgstr "Radius in mijlen"
 
-#, python-format
-msgid "Ran %s"
-msgstr "Heeft %s geduurd"
-
 msgid "Range"
 msgstr "Bereik"
 
@@ -8447,24 +8623,9 @@ msgstr "Verhouding"
 msgid "Raw records"
 msgstr "Ruwe records"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Recent gemaakte grafieken, dashboards en opgeslagen queries verschijnen "
-"hier"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Recent bewerkte grafieken, dashboards en opgeslagen queries verschijnen "
-"hier"
-
 msgid "Recently modified"
 msgstr "Recent gewijzigd"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Onlangs bekeken grafieken, dashboards, en opgeslagen queries zullen hier "
-"verschijnen"
-
 msgid "Recents"
 msgstr "Recente"
 
@@ -8483,11 +8644,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr ""
-"Schakelt door naar dit eindpunt bij het klikken op de tabel vanuit de "
-"tabellijst"
-
 msgid "Redo the action"
 msgstr "De actie opnieuw uitvoeren"
 
@@ -8529,6 +8685,10 @@ msgstr "Interval vernieuwen"
 msgid "Refresh interval saved"
 msgstr "Vernieuwing interval opgeslagen"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "Zie tabel schema"
+
 msgid "Refresh the default values"
 msgstr "Ververs de standaard waarden"
 
@@ -8588,8 +8748,10 @@ msgid "Remove table preview"
 msgstr "Verwijder tabel preview"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "Verwijderde kolommen: %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
 
 msgid "Rename tab"
 msgstr "Tabblad hernoemen"
@@ -8600,12 +8762,11 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
-msgid "Rendering"
-msgstr "Renderen"
-
 msgid "Replace"
 msgstr "Vervang"
 
@@ -8704,6 +8865,9 @@ msgstr "Afstoting"
 msgid "Repulsion strength between nodes"
 msgstr "Afstotingskracht tussen knooppunten"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "Verzoek is onjuist: %(error)s"
@@ -8736,6 +8900,10 @@ msgstr "Hermonsteren bewerking vereist DatumtijdIndex"
 msgid "Reset"
 msgstr "Reset"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Selecteer kolom"
+
 msgid "Reset state"
 msgstr "Reset status"
 
@@ -8763,6 +8931,10 @@ msgstr ""
 "Resultaten die nodig zijn voor asynchrone query's zijn niet "
 "geconfigureerd."
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "Resultaten opnieuw ophalen"
+
 msgid "Return to specific datetime."
 msgstr "Terugkeren naar specifieke datum/tijd."
 
@@ -8804,6 +8976,28 @@ msgstr ""
 msgid "Role"
 msgstr "Rol"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Naam van de waarschuwing"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "Waarde is vereist"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Naam is vereist"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "Gegevens succesvol gewijzigd!"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Rollen"
 
@@ -8887,9 +9081,6 @@ msgstr "Rijen per pagina, 0 betekent geen paginering"
 msgid "Rows subtotal position"
 msgstr "Rijen subtotaal positie"
 
-msgid "Rows to Read"
-msgstr "Te lezen rijen"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "Te lezen rijen"
@@ -8956,14 +9147,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL gekopieerd!"
 
-msgid "SQL Expression"
-msgstr "SQL Expressie"
-
 msgid "SQL Lab"
 msgstr "SQL-lab"
 
-msgid "SQL Lab View"
-msgstr "SQL Lab Weergave"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "opgeslagen queries"
 
 #, python-format
 msgid ""
@@ -9058,20 +9247,10 @@ msgstr "Monsters van dataset konden niet worden opgehaald."
 msgid "Samples for datasource could not be retrieved."
 msgstr "Monsters voor gegevensbron konden niet worden opgehaald."
 
-msgid "Sankey"
-msgstr "Sankey"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Grafiek opslaan"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "Sankey Diagram"
-
-msgid "Sankey Diagram with Loops"
-msgstr "Sankey Diagram met Lussen"
-
 msgid "Satellite"
 msgstr "Satelliet"
 
@@ -9132,9 +9311,6 @@ msgstr "Dataset opslaan of overschrijven"
 msgid "Save query"
 msgstr "Zoekopdracht opslaan"
 
-msgid "Save the query to enable this feature"
-msgstr "Sla de query op om deze functie in te schakelen"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr "Deze query opslaan als virtueel dataset om verder te blijven verkennen"
 
@@ -9162,6 +9338,10 @@ msgstr "Opgeslagen query niet gevonden."
 msgid "Saved query parameters are invalid."
 msgstr "Opgeslagen query parameters zijn ongeldig."
 
+#, fuzzy
+msgid "Saving..."
+msgstr "Bezig met laden…"
+
 msgid "Scale and Move"
 msgstr "Schaal en Verplaats"
 
@@ -9217,11 +9397,6 @@ msgstr "Schema"
 msgid "Schema cache timeout"
 msgstr "Schema cache time-out"
 
-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"
-
 msgid "Schemas allowed for File upload"
 msgstr "Schemas toegestaan voor bestandsupload"
 
@@ -9304,9 +9479,6 @@ msgstr "Seconden %s"
 msgid "Seconds value"
 msgstr "seconden"
 
-msgid "Secure Extra"
-msgstr "Beveilig Extra"
-
 msgid "Secure extra"
 msgstr "Beveilig extra"
 
@@ -9401,6 +9573,10 @@ msgstr "Selecteer een schema als de database dit ondersteunt"
 msgid "Select a sheet name from the uploaded file"
 msgstr "Selecteer een database om het bestand naar te uploaden"
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Verwijder database"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -9420,8 +9596,8 @@ msgstr "Selecteer alle gegevens"
 msgid "Select all items"
 msgstr "Selecteer alle items"
 
-msgid "Select any columns for metadata inspection"
-msgstr "Selecteer alle kolommen voor metadata inspectie"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 #, fuzzy
 msgid "Select catalog or type to search catalogs"
@@ -9447,6 +9623,11 @@ msgstr "Selecteer kleurschema"
 msgid "Select column"
 msgstr "Selecteer kolom"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+"Selecteer de kolomnamen die moeten worden behandeld als datums in de "
+"vervolgkeuzelijst"
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9544,6 +9725,14 @@ msgstr "Selecteer of typ dataset naam"
 msgid "Select owners"
 msgstr "Selecteer eigenaren"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Selecteer Tags"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Selecteer eigenaren"
+
 msgid "Select saved metrics"
 msgstr "Selecteer opgeslagen metrieken"
 
@@ -9556,9 +9745,19 @@ msgstr "Selecteer schema of type om schema's te zoeken"
 msgid "Select scheme"
 msgstr "Selecteer schema"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "Selecteer onderwerp"
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Alles deselecteren"
+
 msgid "Select table or type to search tables"
 msgstr "Selecteer tabel of type om tabellen te zoeken"
 
@@ -9593,12 +9792,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr "Selecteer de kolom geojson"
 
-msgid "Select the number of bins for the histogram"
-msgstr "Selecteer het aantal groepen voor het histogram"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "Selecteer de numerieke kolommen om het histogram te tekenen"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9624,9 +9817,6 @@ msgstr "Verstuur als PNG"
 msgid "Send as text"
 msgstr "Verstuur als tekst"
 
-msgid "Send range filter events to other charts"
-msgstr "Stuur filter bereik gebeurtenissen naar andere grafieken"
-
 msgid "September"
 msgstr "September"
 
@@ -9639,12 +9829,6 @@ msgstr "Series"
 msgid "Series Height"
 msgstr "Series hoogte"
 
-msgid "Series Limit Sort By"
-msgstr "Series Limiet Sorteren op"
-
-msgid "Series Limit Sort Descending"
-msgstr "Series Limiet Sortering Aflopend"
-
 msgid "Series Order"
 msgstr "Series Volgorde"
 
@@ -9672,6 +9856,10 @@ msgstr "Server paginatie"
 msgid "Service Account"
 msgstr "Service Account"
 
+#, fuzzy
+msgid "Service version"
+msgstr "Service Account"
+
 msgid "Set auto-refresh interval"
 msgstr "Stel auto-refresh in"
 
@@ -9702,6 +9890,10 @@ msgstr "Instellingen"
 msgid "Settings for time series"
 msgstr "Instellingen voor tijdreeks"
 
+#, fuzzy
+msgid "Shape"
+msgstr "Cirkel vorm"
+
 msgid "Share"
 msgstr "Deel"
 
@@ -9769,18 +9961,9 @@ msgstr "Toon CREATE VIEW statement"
 msgid "Show Cell bars"
 msgstr "Toon cel balken"
 
-msgid "Show Chart"
-msgstr "Toon grafiek"
-
-msgid "Show Column"
-msgstr "Toon Kolom"
-
 msgid "Show Dashboard"
 msgstr "Toon Dashboard"
 
-msgid "Show Database"
-msgstr "Toon Database"
-
 msgid "Show Labels"
 msgstr "Toon Labels"
 
@@ -9790,18 +9973,12 @@ msgstr "Toon Log"
 msgid "Show Markers"
 msgstr "Toon Markeringen"
 
-msgid "Show Metric"
-msgstr "Toon metriek"
-
 msgid "Show Metric Names"
 msgstr "Toon Metriek Namen"
 
 msgid "Show Range Filter"
 msgstr "Toon Bereik Filter"
 
-msgid "Show Table"
-msgstr "Toon tabel"
-
 msgid "Show Timestamp"
 msgstr "Toon Tijdstempel"
 
@@ -9836,9 +10013,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "Toon alle kolommen"
 
-msgid "Show all..."
-msgstr "Toon alles..."
-
 msgid "Show axis line ticks"
 msgstr "Toon as lijntikken"
 
@@ -9860,6 +10034,10 @@ msgstr "Toon gegevenspunten als cirkelmarkeringen op de lijnen"
 msgid "Show empty columns"
 msgstr "Toon lege kolommen"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "Toon metriek"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9882,9 +10060,6 @@ msgstr "Toon legenda"
 msgid "Show less columns"
 msgstr "Toon minder kolommen"
 
-msgid "Show less..."
-msgstr "Toon minder..."
-
 msgid "Show minor ticks on axes."
 msgstr "Toon kleine tikken op assen."
 
@@ -9922,6 +10097,10 @@ msgstr "Toon Markeringen"
 msgid "Show the value on top of the bar"
 msgstr "Toon de waarde bovenaan de balk"
 
+#, fuzzy
+msgid "Show total"
+msgstr "Toon Totaal"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9971,8 +10150,8 @@ msgstr ""
 "Toont de voortgang van een enkele metriek tegen een bepaald doel. Hoe "
 "hoger de vulling, hoe dichter de metriek bij het doel ligt."
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "Weergave %s van %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -10005,18 +10184,16 @@ msgstr "Enkele waarde"
 msgid "Single value type"
 msgstr "Enkelvoudige waarde type"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "Definieert de rastergrootte in pixels"
+
 msgid "Size of edge symbols"
 msgstr "Grootte van randsymbolen"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "Grootte van marker. Ook van toepassing op de waarnemingen bij de prognose."
 
-msgid "Sizes of vehicles"
-msgstr "Afmetingen van voertuigen"
-
-msgid "Skip Rows"
-msgstr "Rijen overslaan"
-
 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"
 
@@ -10090,9 +10267,6 @@ msgstr "Er is iets fout gegaan. Probeer het opnieuw."
 msgid "Sorry, something went wrong. Try again later."
 msgstr "Sorry, er ging iets mis. Probeer het later nog eens."
 
-msgid "Sorry, there appears to be no data"
-msgstr "Sorry, er lijken geen gegevens te zijn"
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr "Sorry, er was een fout bij het opslaan van deze %s: %s"
@@ -10110,9 +10284,6 @@ msgstr "Sorry, uw browser ondersteunt het kopiëren niet. Gebruik Ctrl / Cmd + C
 msgid "Sort"
 msgstr "Sorteren"
 
-msgid "Sort Bars"
-msgstr "Sorteer Staven"
-
 msgid "Sort Descending"
 msgstr "Sorteer Aflopend"
 
@@ -10134,9 +10305,6 @@ msgstr "Sorteer Y-as"
 msgid "Sort ascending"
 msgstr "Sorteer oplopend"
 
-msgid "Sort bars by x labels."
-msgstr "Sorteer staven op x labels."
-
 msgid "Sort by"
 msgstr "Sorteer op"
 
@@ -10162,6 +10330,10 @@ msgstr "Sorteer filterwaarden"
 msgid "Sort metric"
 msgstr "Sorteer metriek"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "Exporteer query"
+
 msgid "Sort rows by"
 msgstr "Sorteer rijen op"
 
@@ -10174,9 +10346,6 @@ msgstr "Sorteer type"
 msgid "Source"
 msgstr "Bron"
 
-msgid "Source / Target"
-msgstr "Bron / Doel"
-
 msgid "Source SQL"
 msgstr "Bron SQL"
 
@@ -10220,9 +10389,6 @@ msgstr "Vierkante mijlen"
 msgid "Stack"
 msgstr "Stapel"
 
-msgid "Stack Trace:"
-msgstr "Stapeltracering:"
-
 msgid "Stack series"
 msgstr "Stapel series"
 
@@ -10238,9 +10404,6 @@ msgstr "Gestapelde Staven"
 msgid "Stacked Style"
 msgstr "Gestapelde Stijl"
 
-msgid "Stacked style"
-msgstr "Gestapelde stijl"
-
 msgid "Standard time series"
 msgstr "Standaard tijdserie"
 
@@ -10341,9 +10504,6 @@ msgstr "Straten"
 msgid "Strength to pull the graph toward center"
 msgstr "Sterkte om de grafiek naar het midden te trekken"
 
-msgid "Stretched style"
-msgstr "Uitgerekte style"
-
 msgid "Stroke Color"
 msgstr "Lijnkleur"
 
@@ -10365,15 +10525,20 @@ msgstr "Stijl de uiteindes van de voortgangsbalk met een ronde dop"
 msgid "Subdomain"
 msgstr "Subdomein"
 
-msgid "Subheader"
-msgstr "Ondertitel"
-
 msgid "Subheader Font Size"
 msgstr "Ondertitel Lettergrootte"
 
 msgid "Submit"
 msgstr "Bevestigen"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "Titel tabblad"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Bubbelgrootte"
+
 msgid "Subtotal"
 msgstr "Subtotaal"
 
@@ -10426,9 +10591,6 @@ msgstr "Superset ingesloten SDK documentatie."
 msgid "Superset chart"
 msgstr "Superset grafiek"
 
-msgid "Superset dashboard"
-msgstr "Superset dashboard"
-
 msgid "Superset encountered an error while running a command."
 msgstr "Een fout is opgetreden in Superset tijdens het uitvoeren van een commando."
 
@@ -10438,9 +10600,6 @@ msgstr "Er is een onverwachte fout opgetreden in Superset."
 msgid "Supported databases"
 msgstr "Ondersteunde databases"
 
-msgid "Survey Responses"
-msgstr "Enquête antwoorden"
-
 msgid "Swap dataset"
 msgstr "Wissel dataset"
 
@@ -10456,6 +10615,12 @@ msgstr ""
 "stap, lijn, verspreidings en staafdiagrammen. Dit viz type heeft ook veel"
 " aanpassingsmogelijkheden."
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr "Symbool"
 
@@ -10465,9 +10630,20 @@ msgstr "Symbool van twee uiteinden van de randlijn"
 msgid "Symbol size"
 msgstr "Symbool grootte"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "Synchroniseer kolommen van bron"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "Syntax"
 
@@ -10478,9 +10654,6 @@ msgstr "Syntaxfout: %(qualifier)s invoer \"%(input)s\" verwacht \"%(expected)s"
 msgid "TABLES"
 msgstr "TABLES"
 
-msgid "TEMPORAL X-AXIS"
-msgstr "TIJDELIJK X-AXIS"
-
 msgid "TEMPORAL_RANGE"
 msgstr "TIJDELIJK_BEREIK"
 
@@ -10518,6 +10691,10 @@ msgstr ""
 "Tabel [%(table_name)s] kon niet worden gevonden. Controleer de database-"
 "verbinding, schema en tabelnaam"
 
+#, fuzzy
+msgid "Table actions"
+msgstr "Tabel kolommen"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10529,6 +10706,10 @@ msgstr "Tabel cache time-out"
 msgid "Table columns"
 msgstr "Tabel kolommen"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Tabel Naam"
+
 msgid "Table name undefined"
 msgstr "Tabelnaam niet gedefinieerd"
 
@@ -10592,13 +10773,6 @@ msgstr "Het getagde object kon niet worden verwijderd."
 msgid "Tags"
 msgstr "Tags"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-"Neem uw gegevenspunten mee en groepeer ze in \"groepen\" om te zien waar "
-"de dikste delen van informatie liggen"
-
 msgid "Target"
 msgstr "Doel"
 
@@ -10625,6 +10799,10 @@ msgstr ""
 "Sjabloonlink, het is mogelijk om {{ metric }} of andere waarden uit de "
 "bedieningselementen op te nemen."
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "Is tijdelijk"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10680,9 +10858,6 @@ msgstr ""
 "deze weer als interactieve polygonen, lijnen en punten (cirkels, "
 "pictogrammen en/of teksten)."
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10716,6 +10891,10 @@ msgstr "De annotatie is opgeslagen"
 msgid "The annotation has been updated"
 msgstr "De annotatie is bijgewerkt"
 
+#, fuzzy
+msgid "The background color of the charts."
+msgstr "Voeg de naam van de grafiek toe"
+
 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."
@@ -10753,6 +10932,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr "De kleur voor punten en clusters in RGB"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "De kleur van de isoline"
+
 msgid "The color of the isoband"
 msgstr "De kleur van de isoband"
 
@@ -10769,6 +10952,15 @@ msgstr ""
 "Het kleurenschema wordt bepaald door het gerelateerde dashboard.\n"
 "        Bewerk het kleurenschema in de dashboard eigenschappen."
 
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+"Dit kleurenschema wordt overschreven door aangepaste labelkleuren.\n"
+"    Controleer de JSON-metadata in de geavanceerde instellingen"
+
 msgid "The column header label"
 msgstr "De kolomkop label"
 
@@ -10781,6 +10973,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr "De kolom werd verwijderd of hernoemd in de database."
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10792,26 +10990,9 @@ msgstr "Het dashboard is opgeslagen"
 msgid "The data source seems to have been deleted"
 msgstr "De gegevensbron lijkt te zijn verwijderd"
 
-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 ""
-"Het gegevenstype dat werd afgeleid door de database. Het kan nodig zijn "
-"om in sommige gevallen een type handmatig in te voeren voor expression-"
-"gedefinieerde kolommen. In de meeste gevallen zouden gebruikers dit niet "
-"hoeven te veranderen."
-
-#, 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 ""
-"De database %s is gekoppeld aan %s grafieken die verschijnen op %s "
-"dashboards en gebruikers hebben %s SQL Lab tabbladen met behulp van deze "
-"database. Weet u zeker dat u wilt doorgaan? Verwijderen van de database "
-"zal deze objecten breken."
+#, fuzzy
+msgid "The database"
+msgstr "Verwijder database"
 
 msgid "The database columns that contains lines information"
 msgstr "De database kolommen die regels met informatie bevatten"
@@ -10845,15 +11026,9 @@ msgstr "De database is verwijderd."
 msgid "The database was not found."
 msgstr "De database is niet gevonden."
 
-#, 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 ""
-"De dataset %s is gekoppeld aan %s grafieken die verschijnen op %s "
-"dashboards. Weet u zeker dat u wilt doorgaan? Het verwijderen van de "
-"dataset zal deze objecten verbreken."
+#, fuzzy
+msgid "The dataset"
+msgstr "Nieuw dataset"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "De dataset die bij deze grafiek hoort bestaat niet meer"
@@ -10927,6 +11102,15 @@ msgstr ""
 "Het engine_params object wordt uitgepakt in de sqlalchemy.create_engine "
 "call."
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10948,6 +11132,9 @@ msgstr ""
 "De functie die gebruikt moet worden bij het aggregeren van punten in "
 "groepen"
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10984,29 +11171,13 @@ msgstr "De opgegeven hostnaam kan niet worden gevonden."
 msgid "The id of the active chart"
 msgstr "Het id van de actieve grafiek"
 
-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 ""
-"De lijst met grafieken die gekoppeld zijn aan deze tabel. Door het "
-"wijzijgen van deze gegevensbron kan je aanpassen maken hoe deze "
-"bijbehorende grafieken zich gedragen. Houd er ook rekening mee dat "
-"grafieken naar een gegevensbron moeten wijzen, dus dit formulier zal niet"
-" opgeslagen kunnen worden bij het verwijderen van grafieken uit een "
-"gegevensbron. Als je de gegevensbron voor een grafiek wilt wijzigen, "
-"overschrijf je de grafiek van de 'verken weergave'"
+#, fuzzy
+msgid "The layer attribution"
+msgstr "Tijdgerelateerde vormattributen"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr "De onderste limiet van het drempelbereik van de Isoband"
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-"Het maximum aantal te retourneren gebeurtenissen, gelijk aan het aantal "
-"rijen"
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -11052,6 +11223,19 @@ msgstr ""
 " van 7 periodes zijn. Dit zal de \"aanloopperiode\" verbergen die "
 "plaatsvindt in de eerste 7 periodes"
 
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "De maximale waarde van de metrieken. Het is een optionele configuratie"
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Naam van de id kolom"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 msgid "The name of the rule must be unique"
 msgstr "De naam van de regel moet uniek zijn"
 
@@ -11309,6 +11493,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr "De resultaten backend heeft de gegevens van de query niet meer."
 
@@ -11352,11 +11539,16 @@ msgstr "Het schema werd verwijderd of hernoemd in de database."
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "Het rapport is gemaakt"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
-msgstr ""
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "Toon series waarden op de grafiek"
 
 msgid "The size of each cell in meters"
 msgstr "Grootte van elke cel in meters"
@@ -11364,6 +11556,9 @@ msgstr "Grootte van elke cel in meters"
 msgid "The size of the square cell, in pixels"
 msgstr "De grootte van de vierkante cel, in pixels"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr "De ingezonden payload kon niet worden gevalideerd."
 
@@ -11389,13 +11584,6 @@ msgstr ""
 "De tabel \"%(table_name)s\" bestaat niet. Een geldige tabel moet worden "
 "gebruikt om deze query uit te voeren."
 
-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 ""
-"De tabel is aangemaakt. Als onderdeel van dit tweestapsconfiguratieproces"
-" moet u nu op de knop bewerken door de nieuwe tabel om te configureren."
-
 msgid "The table was deleted or renamed in the database."
 msgstr "De tabel werd verwijderd of hernoemd in de database."
 
@@ -11464,6 +11652,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr "De tijdeenheid die gebruikt wordt voor het groeperen van blokken"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "Voeg de naam van de grafiek toe"
+
 msgid "The type of visualization to display"
 msgstr "Het type visualisatie dat moet worden weergegeven"
 
@@ -11490,12 +11682,27 @@ msgstr ""
 "De opgegeven gebruikersnaam tijdens het verbinden met een database is "
 "niet geldig."
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "Kies de positie van de legende"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "Toon de waarde bovenaan de balk"
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "De manier waarop de tikken worden uiteengezet op de X-as"
 
 msgid "The width of the Isoline in pixels"
 msgstr "De breedte van de Isoline in pixels"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "De breedte van de lijnen"
+
 msgid "The width of the lines"
 msgstr "De breedte van de lijnen"
 
@@ -11512,9 +11719,6 @@ msgstr "Er zijn geen grafieken toegevoegd aan dit dashboard"
 msgid "There are no components added to this tab"
 msgstr "Er zijn geen componenten toegevoegd aan dit tabblad"
 
-msgid "There are no databases available"
-msgstr "Er zijn geen databases beschikbaar"
-
 msgid "There are no filters in this dashboard."
 msgstr "Er zijn geen filters in dit dashboard."
 
@@ -11528,6 +11732,10 @@ msgstr ""
 "Er is een syntax fout in de SQL query. Misschien was er een spelling of "
 "een typo."
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "Het type visualisatie dat moet worden weergegeven"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11558,6 +11766,10 @@ msgstr "Er is een fout opgetreden bij het ophalen van de favoriete status: %s"
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Er is een fout opgetreden bij het ophalen van de favoriete status: %s"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Er is een fout opgetreden bij het laden van de schema's"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "Er is een fout opgetreden bij het laden van de tabellen"
@@ -11574,6 +11786,10 @@ msgstr "Er is een fout opgetreden bij het laden van de schema's"
 msgid "There was an error loading the tables"
 msgstr "Er is een fout opgetreden bij het laden van de tabellen"
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr "Sorry, er is een fout opgetreden bij het opslaan van dit dashboard: %s"
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr "Er is een fout opgetreden bij het opslaan van de favoriete status: %s"
@@ -11581,6 +11797,10 @@ msgstr "Er is een fout opgetreden bij het opslaan van de favoriete status: %s"
 msgid "There was an error with your request"
 msgstr "Er is een fout opgetreden in uw verzoek."
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Er was een probleem bij het verwijderen van: %s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "Er was een probleem met het verwijderen van %s: %s"
@@ -11670,27 +11890,9 @@ msgstr "Er was een probleem met het bekijken van de geselecteerde query %s"
 msgid "There was an issue previewing the selected query. %s"
 msgstr "Er was een probleem met het bekijken van de geselecteerde query. %s"
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr ""
-"Er is een lus in uw Sankey, geef een boomstructuur. Hier is een onjuiste "
-"link: {}"
-
 msgid "These are the datasets this filter will be applied to."
 msgstr "Dit zijn de datasets waarop dit filter zal worden toegepast."
 
-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 ""
-"Deze parameters worden dynamisch gegenereerd bij het klikken op opslaan "
-"of overschrijven knop in de verkenningsweergave. Dit JSON-object is hier "
-"blootgesteld ter referentie en voor gevorderde gebruikers die mogelijk "
-"specifieke parameters willen wijzigen."
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11708,12 +11910,20 @@ msgstr "Deze actie zal %s permanent verwijderen."
 msgid "This action will permanently delete the layer."
 msgstr "Deze actie zal de laag permanent verwijderen."
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "Deze actie zal de laag permanent verwijderen."
+
 msgid "This action will permanently delete the saved query."
 msgstr "Deze actie zal de opgeslagen query permanent verwijderen."
 
 msgid "This action will permanently delete the template."
 msgstr "Deze actie zal de template permanent verwijderen."
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "Deze actie zal de laag permanent verwijderen."
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11746,13 +11956,6 @@ msgstr ""
 "Dit grafiek type wordt niet ondersteund bij het gebruik van een niet-"
 "opgeslagen query als grafiekbron. "
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-"Dit kleurenschema wordt overschreven door aangepaste labelkleuren.\n"
-"    Controleer de JSON-metadata in de geavanceerde instellingen"
-
 msgid "This column might be incompatible with current dataset"
 msgstr "Deze kolom is mogelijk niet compatibel met het huidige dataset"
 
@@ -11842,6 +12045,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr "Dit dashboard is succesvol opgeslagen."
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr "Deze database wordt extern beheerd en kan niet worden bewerkt in Superset"
 
@@ -11859,6 +12068,9 @@ msgstr "Deze dataset wordt niet gebruikt om enige grafieken aan te sturen."
 msgid "This defines the element to be plotted on the chart"
 msgstr "Dit definieert het element dat op de grafiek moet worden uitgezet"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11874,13 +12086,6 @@ msgstr ""
 "Dit veld wordt gebruikt als unieke id voor het koppelen van de metrieken "
 "aan de grafieken. Het wordt ook gebruikt als de alias in de SQL query."
 
-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."
-
 msgid "This filter might be incompatible with current dataset"
 msgstr "Dit filter is mogelijk niet compatibel met het huidige dataset"
 
@@ -11924,15 +12129,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr "Dit kan veroorzaakt worden door:"
 
-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 ""
-"Deze metriek wordt gebruikt om rij selectiecriteria te definiëren (hoe de"
-" rijen gesorteerd worden) als een rij limiet aanwezig is. Indien niet "
-"gedefinieerd, keert het terug naar de eerste metriek (indien gepast)."
-
 msgid "This metric might be incompatible with current dataset"
 msgstr "Deze metriek is mogelijk niet compatibel met huidig dataset"
 
@@ -11981,6 +12177,9 @@ msgstr ""
 "Er is al een dataset aan deze tabel gekoppeld. Je kunt slechts één "
 "dataset koppelen met een tabel.\n"
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr "Deze waarde moet groter zijn dan de linker doelwaarde"
 
@@ -12056,9 +12255,6 @@ msgstr "Tijd Ratio"
 msgid "Time Series"
 msgstr "Tijd Series"
 
-msgid "Time Series - Bar Chart"
-msgstr "Tijdreeks - Staafdiagram"
-
 msgid "Time Series - Line Chart"
 msgstr "Tijdreeks - Lijngrafiek"
 
@@ -12074,9 +12270,6 @@ msgstr "Tijdreeks - Procentuele verandering"
 msgid "Time Series - Period Pivot"
 msgstr "Tijdreeksen - Periode draaitabel"
 
-msgid "Time Series - Stacked"
-msgstr "Tijdreeksen - Gestapeld"
-
 msgid "Time Series Options"
 msgstr "Tijd Series Opties"
 
@@ -12170,17 +12363,6 @@ msgstr ""
 "Tijd string is dubbelzinnig. Specificeer [%(human_readable)s geleden] of "
 "[%(human_readable)s later]."
 
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "Tijdreeks Staafdiagram (legacy)"
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Tijdreeks Staafdiagram (legacy)"
-
-#, fuzzy
-msgid "Time-series Line Chart (legacy)"
-msgstr "Tijdreeks Staafdiagram (legacy)"
-
 msgid "Time-series Percent Change"
 msgstr "Tijdreeks Percentage Verandering"
 
@@ -12199,9 +12381,6 @@ msgstr "Tijdsstempel opmaak"
 msgid "Timezone"
 msgstr "Tijdzone"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Tijdzone-offset (in uren) voor deze databron"
-
 msgid "Timezone selector"
 msgstr "Tijdzonekiezer"
 
@@ -12220,6 +12399,11 @@ msgstr "Titel is verplicht"
 msgid "Title or Slug"
 msgstr "Titel of Slug"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "Om te filteren op een metriek, gebruikt u het tabblad Aangepaste SQL."
 
@@ -12261,6 +12445,10 @@ msgstr "Totaal (%(aggfunc)s)"
 msgid "Total (%(aggregatorName)s)"
 msgstr "Totaal (%(aggregatorName)s)"
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "Totaal: %s"
+
 msgid "Total value"
 msgstr "Totaal waarde"
 
@@ -12373,9 +12561,6 @@ msgstr "Geef hier een waarde op"
 msgid "Type is required"
 msgstr "Type is vereist"
 
-msgid "Type of Google Sheets allowed"
-msgstr "Het type Google Sheets toegestaan"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "Type vergelijking, waarde verschil of percentage"
 
@@ -12465,9 +12650,15 @@ msgstr ""
 " zal het later opnieuw proberen. Neem contact op met uw beheerder als dit"
 " probleem zich blijft voordoen."
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr "Dashboard kleuren kunnen niet worden opgehaald"
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "Ongedefinieerd"
 
@@ -12497,6 +12688,10 @@ msgstr "Geen opgeslagen expressies gevonden"
 msgid "Unexpected time range: %(error)s"
 msgstr "Onverwacht tijdsbereik: %(error)s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "ongedaan maken"
+
 msgid "Unknown"
 msgstr "Onbekend"
 
@@ -12534,6 +12729,10 @@ msgstr "Onbekend type"
 msgid "Unknown value"
 msgstr "Onbekende waarde"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "bezig"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr "Onveilig terugkeertype voor functie %(func)s: %(value_type)s"
@@ -12597,9 +12796,6 @@ msgstr "Upload kolombestand"
 msgid "Upload Columnar file to database"
 msgstr "Upload kolombestand naar database"
 
-msgid "Upload Credentials"
-msgstr "Upload Inloggegevens"
-
 msgid "Upload Enabled"
 msgstr "Uploaden Ingeschakeld"
 
@@ -12622,6 +12818,10 @@ msgstr "Upload bestand naar database"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Upload Inloggegevens"
+
 msgid "Upload file to database"
 msgstr "Upload bestand naar database"
 
@@ -12677,12 +12877,13 @@ msgstr ""
 "overlays.\n"
 "          Uw grafiek moet een van deze visualisatietypes zijn: [%s]"
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "Voer huidige query uit"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr "Gebruik datum opmaak zelfs wanneer metrische waarde geen tijdstempel is"
 
-msgid "Use legacy datasource editor"
-msgstr "Gebruik de verouderde gegevensbron editor"
-
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr "Gebruik metrieken als topniveau groep voor kolommen of rijen"
 
@@ -12692,13 +12893,6 @@ msgstr "Gebruik slechts één waarde."
 msgid "Use the Advanced Analytics options below"
 msgstr "Gebruik de onderstaande geavanceerde Analytics opties"
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-"Gebruik het JSON bestand dat je automatisch hebt gedownload bij het "
-"aanmaken van je serviceaccount."
-
 msgid "Use the edit button to change this field"
 msgstr "Gebruik de bewerk knop om dit veld te wijzigen"
 
@@ -12742,9 +12936,23 @@ msgstr "Gebruiker moet een waarde selecteren voordat hij de filter toepast"
 msgid "User query"
 msgstr "Gebruikers query"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "Gebruikersnaam"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Naam is vereist"
+
+#, fuzzy
+msgid "Users"
+msgstr "series"
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
 "Gebruikers hebben geen toestemming om een zoekpad in te stellen om "
@@ -12778,6 +12986,10 @@ msgstr ""
 "Handig voor het visualiseren van trechters en pijplijnen met meerdere "
 "fasen en groepen."
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "Waarde"
 
@@ -12803,9 +13015,16 @@ msgstr ""
 msgid "Value format"
 msgstr "Waarde opmaak"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "Waarde moet groter zijn dan 0"
+
 msgid "Value is required"
 msgstr "Waarde is vereist"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "Waarde moet groter zijn dan 0"
@@ -12826,12 +13045,6 @@ msgstr ""
 "Waarden geselecteerd in andere filters hebben invloed op de filteropties "
 "om alleen relevante waarden te tonen"
 
-msgid "Vehicle Types"
-msgstr "Voertuig Types"
-
-msgid "Verbose Name"
-msgstr "Verklarende naam"
-
 msgid "Version"
 msgstr "Versie"
 
@@ -12844,9 +13057,6 @@ msgstr "Verticaal"
 msgid "Vertical (Left)"
 msgstr "Verticaal (Links)"
 
-msgid "Video game consoles"
-msgstr "Video game consoles"
-
 msgid "View"
 msgstr "Bekijken"
 
@@ -12888,9 +13098,6 @@ msgstr "Virtueel"
 msgid "Virtual (SQL)"
 msgstr "Virtueel (SQL)"
 
-msgid "Virtual dataset"
-msgstr "Virtuele dataset"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "Query virtuele dataset kan niet leeg zijn"
 
@@ -12938,14 +13145,6 @@ msgstr ""
 "Visualiseer geospatiële gegevens zoals 3D gebouwen, landschappen of "
 "objecten in rasterweergave."
 
-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 ""
-"Visualiseer hoe een metriek verandert over de tijd met behulp van staven."
-" Voeg een groep per kolom toe om groepsniveau te visualiseren en hoe ze "
-"na verloop van tijd veranderen."
-
 msgid ""
 "Visualize multiple levels of hierarchy using a familiar tree-like "
 "structure."
@@ -13012,17 +13211,6 @@ msgstr ""
 "grafiek. Deze grafiek wordt niet meer ondersteund en we raden in plaats "
 "daarvan het gebruik van de Tijd series grafiek aan."
 
-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 ""
-"Visualiseert de doorstroming van waarden van verschillende groepen door "
-"verschillende stadia van een systeem. Nieuwe stadia in de pijplijn worden"
-" weergegeven als knooppunten of lagen. De dikte van de balken of randen "
-"representeert de gevisualiseerde maatstaf."
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -13039,6 +13227,12 @@ msgstr "Viz type"
 msgid "WED"
 msgstr "WO"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, fuzzy, python-format
 msgid "Waiting on %s"
 msgstr "Weergave %s van %s"
@@ -13053,9 +13247,6 @@ msgstr "Wilt u een nieuwe database toevoegen?"
 msgid "Warning"
 msgstr "Waarschuwing"
 
-msgid "Warning Message"
-msgstr "Waarschuwing"
-
 msgid "Warning!"
 msgstr "Waarschuwing!"
 
@@ -13206,13 +13397,6 @@ msgstr ""
 "Wanneer een secundaire metrieke wordt verstrekt, wordt een lineaire "
 "kleurschaal gebruikt."
 
-msgid ""
-"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"
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr "Wanneer aangevinkt, zal de kaart uw gegevens zoomen na elke zoekopdracht"
 
@@ -13242,6 +13426,11 @@ msgstr ""
 "Wanneer de secundaire tijdelijke kolommen worden gefilterd, pas hetzelfde"
 " filter toe op de belangrijkste datumtijd kolom."
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -13263,24 +13452,14 @@ msgstr "Bij gebruik van ‘Group By’ bent u beperkt tot het gebruik van één
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr "Bij het gebruik van andere dan adaptieve opmaak kunnen labels overlappen"
 
-msgid "When using this option, default value can’t be set"
-msgstr "Bij gebruik van deze optie kan de standaardwaarde niet worden ingesteld"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr "Of de voortgangsbalk overlapt wanneer er meerdere groepen gegevens zijn"
 
-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"
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-"Of deze kolom is blootgesteld in het `Filters` gedeelte van het "
-"verkenningsoverzicht."
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -13332,6 +13511,10 @@ msgstr "Of een legenda van de grafiek moet worden weergegeven"
 msgid "Whether to display bubbles on top of countries"
 msgstr "Of er bubbels bovenop landen moeten worden weergegeven"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Of een legenda van de grafiek moet worden weergegeven"
+
 msgid "Whether to display the aggregate count"
 msgstr "Of het geaggregeerde aantal moet worden weergegeven"
 
@@ -13341,13 +13524,6 @@ msgstr "Of de interactieve datatabel moet worden weergegeven"
 msgid "Whether to display the labels."
 msgstr "Of de labels getoond moeten worden."
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-"Of de labels moeten worden weergegeven. Merk op dat het label alleen "
-"wordt weergegeven als de drempel van 5% is bereikt."
-
 msgid "Whether to display the legend (toggles)"
 msgstr "Of de legenda moet worden weergegeven (schakelen)"
 
@@ -13363,6 +13539,10 @@ msgstr "Of de min en max waarden van de Y-as getoond moeten worden"
 msgid "Whether to display the numerical values within the cells"
 msgstr "Of de numerieke waarden binnen de cellen moeten worden weergegeven"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Of het percentage in de tooltip moet worden opgenomen"
+
 msgid "Whether to display the stroke"
 msgstr "Of de lijn moet worden weergegeven"
 
@@ -13375,9 +13555,17 @@ msgstr "Of de tijdstempel moet worden weergegeven"
 msgid "Whether to display the tooltip labels."
 msgstr "Of de tooltiplabels moeten worden weergegeven."
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Of de numerieke waarden binnen de cellen moeten worden weergegeven"
+
 msgid "Whether to display the trend line"
 msgstr "Of de trendlijn moet worden weergegeven"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Of het geaggregeerde aantal moet worden weergegeven"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr ""
 "Of het wijzigen van de grafiekpositie en schaling moet worden "
@@ -13408,38 +13596,17 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr "Of het raster 3D moet worden gemaakt"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "Of het histogram cumulatief moet worden gemaakt"
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr ""
-"Of deze kolom nu beschikbaar moet worden gemaakt als een [Tijd "
-"Granulariteit] optie, de kolom moet DATUMTIJD of DATUMTIJD-achtig zijn"
-
-msgid "Whether to normalize the histogram"
-msgstr "Of het histogram moet worden genormaliseerd"
-
 msgid "Whether to populate autocomplete filters options"
 msgstr "Geef aan of de autoaanvulfilteropties moeten worden ingevuld"
 
-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 ""
-"Of de vervolgkeuzelijst van het filter in de filtersectie van de "
-"verkenningsweergave moet worden gevuld met een lijst met afzonderlijke "
-"waarden die direct uit de backend worden opgehaald"
-
 #, fuzzy
 msgid "Whether to show as Nightingale chart."
 msgstr "Of de voortgang van het graadmeterdiagram moet worden weergegeven"
 
+#, fuzzy
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr ""
 "Of er wel of niet extra besturingselementen moeten worden weergegeven. "
 "Extra bedieningselementen omvatten zaken als het gestapeld of naast "
@@ -13463,11 +13630,6 @@ msgstr "Of er oplopend of aflopend moet worden gesorteerd op de basisas."
 msgid "Whether to sort descending or ascending"
 msgstr "Aflopend of oplopend sorteren"
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr ""
-"Of er aflopend of oplopend moet worden gesorteerd als er een reekslimiet "
-"aanwezig is"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 "Of de resultaten in aflopende volgorde moeten worden gesorteerd op de "
@@ -13529,9 +13691,6 @@ msgstr "Schrijf een omschrijving voor uw query"
 msgid "Write a handlebars template to render the data"
 msgstr "Schrijf een handlebars sjabloon om de gegevens weer te geven"
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "X AXIS TITEL ONDER MARGE"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "X AXIS TITEL MARGE"
 
@@ -13550,6 +13709,10 @@ msgstr "X-as Label"
 msgid "X Axis Title"
 msgstr "X-as Titel"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Y-as Titel Marge"
+
 msgid "X Log Scale"
 msgstr "X Log Schaal"
 
@@ -13571,6 +13734,9 @@ msgstr "X-as"
 msgid "XScale Interval"
 msgstr "XSchaal Interval"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Y 2 grenzen"
 
@@ -13695,6 +13861,19 @@ msgstr ""
 " kan leiden tot verlies van je werk. Weet je zeker dat je wilt "
 "overschrijven?"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr "U kunt"
 
@@ -13776,9 +13955,6 @@ msgstr "U hebt geen toegang tot deze dataset."
 msgid "You don't have access to this embedded dashboard config."
 msgstr "U heeft geen toegang tot deze embedden dashboard configuratie."
 
-msgid "You don't have any favorites yet!"
-msgstr "Je hebt nog geen favorieten!"
-
 msgid "You don't have permission to modify the value."
 msgstr "Je hebt geen toestemming om de waarde te wijzigen."
 
@@ -13863,6 +14039,9 @@ msgstr "Je grafiek is niet up to date"
 msgid "Your chart is ready to go!"
 msgstr "Je grafiek is klaar om te beginnen!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr "Uw dashboard is te groot. Beperk de grootte voordat u het opslaat."
 
@@ -13891,6 +14070,9 @@ msgstr "Uw zoekopdracht werd opgeslagen"
 msgid "Your query was updated"
 msgstr "Uw zoekopdracht werd bijgewerkt"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "Uw rapport kon niet worden verwijderd"
 
@@ -13903,6 +14085,10 @@ msgstr "Null imputatie"
 msgid "Zoom"
 msgstr "Zoom"
 
+#, fuzzy
+msgid "Zoom level"
+msgstr "zoom gebied"
+
 msgid "Zoom level of the map"
 msgstr "Zoom niveau van de kaart"
 
@@ -14027,9 +14213,6 @@ msgstr "op"
 msgid "auto"
 msgstr "auto"
 
-msgid "auto (Smooth)"
-msgstr "auto (Glad)"
-
 msgid "background"
 msgstr "achtergrond"
 
@@ -14076,9 +14259,6 @@ msgstr "wijziging"
 msgid "chart"
 msgstr "grafiek"
 
-msgid "charts"
-msgstr "grafieken"
-
 msgid "choose WHERE or HAVING..."
 msgstr "kies WHERE of HAVING…"
 
@@ -14088,6 +14268,10 @@ msgstr "wis alle filters"
 msgid "click here"
 msgstr "klik hier"
 
+#, fuzzy
+msgid "close"
+msgstr "Sluit"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr "code ISO 3166-1 alpha-2 (cca2)"
 
@@ -14141,15 +14325,9 @@ msgstr "css_template"
 msgid "cumsum"
 msgstr "cumsom"
 
-msgid "cumulative"
-msgstr "cumulatief"
-
 msgid "dashboard"
 msgstr "dashboard"
 
-msgid "dashboards"
-msgstr "dashboards"
-
 msgid "database"
 msgstr "database"
 
@@ -14213,9 +14391,6 @@ msgstr "deckGL"
 msgid "default"
 msgstr "standaard"
 
-msgid "delete"
-msgstr "verwijder"
-
 msgid "descendant"
 msgstr "afstammeling"
 
@@ -14228,9 +14403,6 @@ msgstr "afwijking"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr "dialect+driver://gebruikersnaam:wachtwoord@host:poort/database"
 
-msgid "draft"
-msgstr "concept"
-
 msgid "dttm"
 msgstr "dttm"
 
@@ -14271,9 +14443,6 @@ msgstr "bijv. wereld_bevolking"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "bijv. xy12345.us-oost-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "b.v. een \"gebruiker id\" kolom"
-
 msgid "edit mode"
 msgstr "bewerk modus"
 
@@ -14284,6 +14453,10 @@ msgstr "Selecteer onderwerp"
 msgid "entries"
 msgstr "items"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "items"
+
 msgid "error"
 msgstr "fout"
 
@@ -14350,13 +14523,6 @@ msgstr "hier"
 msgid "hour"
 msgstr "uur"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-"image-rendering CSS-attribuut van het canvasobject dat bepaalt hoe de "
-"browser de afbeelding schaalt"
-
 msgid "in"
 msgstr "in"
 
@@ -14367,6 +14533,10 @@ msgstr "in modal"
 msgid "invalid email"
 msgstr "Ongeldige permalink sleutel"
 
+#, fuzzy
+msgid "is"
+msgstr "in"
+
 msgid "is expected to be a Mapbox URL"
 msgstr "wordt verwacht een Mapbox URL te zijn"
 
@@ -14376,6 +14546,29 @@ msgstr "wordt verwacht dat het een getal is"
 msgid "is expected to be an integer"
 msgstr "wordt verwacht een geheel getal te zijn"
 
+#, fuzzy, python-format
+msgid ""
+"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 ""
+"De database %s is gekoppeld aan %s grafieken die verschijnen op %s "
+"dashboards en gebruikers hebben %s SQL Lab tabbladen met behulp van deze "
+"database. Weet u zeker dat u wilt doorgaan? Verwijderen van de database "
+"zal deze objecten breken."
+
+#, fuzzy, python-format
+msgid ""
+"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 ""
+"De dataset %s is gekoppeld aan %s grafieken die verschijnen op %s "
+"dashboards. Weet u zeker dat u wilt doorgaan? Het verwijderen van de "
+"dataset zal deze objecten verbreken."
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "sleutel a-z"
 
@@ -14499,18 +14692,9 @@ msgstr "p99"
 msgid "page_size.all"
 msgstr "page_size.all"
 
-msgid "page_size.entries"
-msgstr "page_size.entries"
-
-msgid "page_size.show"
-msgstr "page_size.show"
-
 msgid "pending"
 msgstr "in behandeling"
 
-msgid "percentile (exclusive)"
-msgstr "percentiel (exclusief)"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14521,24 +14705,22 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "permalink status niet gevonden"
 
-msgid "pixelated (Sharp)"
-msgstr "korrelig (Scherp)"
-
 msgid "pixels"
 msgstr "pixels"
 
 msgid "previous calendar month"
 msgstr "vorige kalendermaand"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "vorig kalenderjaar"
+
 msgid "previous calendar week"
 msgstr "vorige kalenderweek"
 
 msgid "previous calendar year"
 msgstr "vorig kalenderjaar"
 
-msgid "published"
-msgstr "gepubliceerd"
-
 msgid "quarter"
 msgstr "kwartaal"
 
@@ -14557,9 +14739,6 @@ msgstr "herstart"
 msgid "recent"
 msgstr "recent"
 
-msgid "recents"
-msgstr "recente"
-
 #, fuzzy
 msgid "recipients"
 msgstr "recente"
@@ -14582,8 +14761,9 @@ msgstr "rij-level-beveiliging"
 msgid "running"
 msgstr "bezig"
 
-msgid "saved queries"
-msgstr "opgeslagen queries"
+#, fuzzy
+msgid "save"
+msgstr "Opslaan"
 
 msgid "seconds"
 msgstr "seconden"
@@ -14600,10 +14780,6 @@ msgstr ""
 "gebruiken dezelfde schaal; wijziging: Toon wijzigingen vergeleken met het"
 " eerste gegevenspunt in elke serie"
 
-#, fuzzy
-msgid "shift start date"
-msgstr "Start datum"
-
 msgid "sql"
 msgstr ""
 
@@ -14658,9 +14834,6 @@ msgstr "tijdelijk type icoon"
 msgid "textarea"
 msgstr "tekstveld"
 
-msgid "to"
-msgstr "naar"
-
 msgid "top"
 msgstr "bovenkant"
 
@@ -14670,6 +14843,14 @@ msgstr "ongedaan maken"
 msgid "unknown type icon"
 msgstr "onbekend type icoon"
 
+#, fuzzy
+msgid "unset"
+msgstr "Juni"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "laatst bijgewerkt %s"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14695,9 +14876,6 @@ msgstr "variantie"
 msgid "view instructions"
 msgstr "bekijk instructies"
 
-msgid "virtual"
-msgstr "virtueel"
-
 msgid "viz type"
 msgstr "viz type"
 
@@ -14734,3 +14912,6 @@ msgstr "jaar"
 
 msgid "zoom area"
 msgstr "zoom gebied"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/pl/LC_MESSAGES/messages.po b/superset/translations/pl/LC_MESSAGES/messages.po
index 9aca1ac01b13dcb01ef378187947ebb84a1e5a18..0d4e3a2a57e577bc364aa3ffe8d6ff3ddc7501bc 100644
--- a/superset/translations/pl/LC_MESSAGES/messages.po
+++ b/superset/translations/pl/LC_MESSAGES/messages.po
@@ -17,16 +17,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2021-11-16 17:33+0100\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language: fr\n"
 "Language-Team: fr <LL@li.org>\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -63,19 +63,20 @@ msgid ""
 "              "
 msgstr ""
 "\n"
-"                Ten filtr został odziedziczony z kontekstu pulpitu nawigacyjnego.\n"
+"                Ten filtr został odziedziczony z kontekstu pulpitu "
+"nawigacyjnego.\n"
 "                Nie zostanie zapisany podczas zapisywania wykresu.\n"
 "              "
 
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
-"\n"
-"            Błąd: %(text)s\n"
-"            "
 
 msgid " (excluded)"
 msgstr " (wykluczony)"
@@ -84,8 +85,8 @@ msgid ""
 " Set the opacity to 0 if you do not want to override the color specified "
 "in the GeoJSON"
 msgstr ""
-" Ustaw krycie na 0, jeśli nie chcesz zastępować koloru określonego "
-"w GeoJSON"
+" Ustaw krycie na 0, jeśli nie chcesz zastępować koloru określonego w "
+"GeoJSON"
 
 #, fuzzy
 msgid " a dashboard OR "
@@ -95,9 +96,17 @@ msgstr " pulpit nawigacyjny LUB"
 msgid " a new one"
 msgstr " nowy"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr " wyrażenie, które musi być zgodne z "
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr " kod źródłowy parsera sandbox Superset"
 
@@ -149,8 +158,7 @@ msgid " to mark a column as a time column"
 msgstr " aby oznaczyć kolumnę jako kolumnę czasową"
 
 msgid " to open SQL Lab. From there you can save the query as a dataset."
-msgstr ""
-" aby otworzyć SQL Lab. Tam możesz zapisać zapytanie jako zestaw danych."
+msgstr " aby otworzyć SQL Lab. Tam możesz zapisać zapytanie jako zestaw danych."
 
 msgid " to visualize your data."
 msgstr " aby zwizualizować swoje dane."
@@ -173,14 +181,12 @@ msgstr "Pokaż całkowitą wartość"
 #, python-format
 msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr ""
-"%(dialect)s nie może być użyty jako źródło danych ze względów bezpieczeństwa."
+"%(dialect)s nie może być użyty jako źródło danych ze względów "
+"bezpieczeństwa."
 
 #, fuzzy, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
-msgstr "%(message)sTo może być wywołane przez: %(issues)s"
+msgid "%(label)s file"
+msgstr "%(type)s Plik"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -194,22 +200,6 @@ msgstr "%(name)s.pdf"
 msgid "%(object)s does not exist in this database."
 msgstr "%(object)s nie istnieje w tej bazie danych."
 
-#, fuzzy, python-format
-msgid "%(other)s charts will appear here"
-msgstr "%(other)s wykresy pojawią się tutaj"
-
-#, fuzzy, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr "%(other)s pulpity nawigacyjne pojawią się tutaj"
-
-#, fuzzy, python-format
-msgid "%(other)s recents will appear here"
-msgstr "%(other)s ostatnie pojawią się tutaj"
-
-#, fuzzy, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s zapisane zapytania pojawią się tutaj"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr "%(prefix)s %(title)s"
@@ -220,32 +210,23 @@ msgid ""
 "schedule with a minimum interval of %(minimum_interval)d minutes per "
 "execution."
 msgstr ""
-"%(report_type)s częstotliwość planowania przekracza limit. Proszę ustawić "
-"harmonogram z minimalnym odstępem wynoszącym %(minimum_interval)d minut na "
-"wykonanie."
+"%(report_type)s częstotliwość planowania przekracza limit. Proszę ustawić"
+" harmonogram z minimalnym odstępem wynoszącym %(minimum_interval)d minut "
+"na wykonanie."
 
 #, python-format
 msgid "%(rows)d rows returned"
 msgstr "%(rows)d wierszy zwróconych"
 
-#, fuzzy, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr "%(subtitle)sTo może być spowodowane przez: %(issue)s"
-
 #, 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 zamiast „%(undefinedParameter)s?”"
-msgstr[1] "%(firstSuggestions)s lub %(lastSuggestion)s zamiast „%(undefinedParameter)s”?"
-
-#, fuzzy, python-format
-msgid "%(type)s File"
-msgstr "%(type)s Plik"
+msgstr[1] ""
+"%(firstSuggestions)s lub %(lastSuggestion)s zamiast "
+"„%(undefinedParameter)s”?"
 
 #, python-format
 msgid ""
@@ -301,17 +282,13 @@ msgstr "%s agregat(y)"
 msgid "%s column(s)"
 msgstr "%s kolumna(y)"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr "%s niekwalifikujące się elementy są ukryte."
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
 "all selected objects."
 msgstr ""
-"%s elementów nie można oznaczyć, ponieważ nie masz uprawnień do edycji wszystkich "
-"wybranych obiektów."
+"%s elementów nie można oznaczyć, ponieważ nie masz uprawnień do edycji "
+"wszystkich wybranych obiektów."
 
 #, python-format
 msgid "%s operator(s)"
@@ -373,7 +350,12 @@ msgid ""
 "\n"
 "    Error: %(text)s\n"
 "    "
-msgstr "*%(name)s*\n\n%(description)s\n\nBłąd: %(text)s\n"
+msgstr ""
+"*%(name)s*\n"
+"\n"
+"%(description)s\n"
+"\n"
+"Błąd: %(text)s\n"
 
 #, python-format
 msgid ""
@@ -384,7 +366,14 @@ msgid ""
 "<%(url)s|Explore in Superset>\n"
 "\n"
 "%(table)s\n"
-msgstr "*%(name)s*\n\n%(description)s\n\n<%(url)s|Eksploruj w Superset>\n\n%(table)s\n"
+msgstr ""
+"*%(name)s*\n"
+"\n"
+"%(description)s\n"
+"\n"
+"<%(url)s|Eksploruj w Superset>\n"
+"\n"
+"%(table)s\n"
 
 #, python-format
 msgid "+ %s more"
@@ -395,8 +384,12 @@ msgid ""
 "clear your cookies or change browsers.\n"
 "\n"
 msgstr ""
-"-- Uwaga: Jeśli nie zapiszesz swojego zapytania, te karty NIE zostaną zapisane, "
-"jeśli wyczyścisz pliki cookie lub zmienisz przeglądarkę.\n"
+"-- Uwaga: Jeśli nie zapiszesz swojego zapytania, te karty NIE zostaną "
+"zapisane, jeśli wyczyścisz pliki cookie lub zmienisz przeglądarkę.\n"
+
+#, python-format
+msgid "... and %s others"
+msgstr ""
 
 msgid "0 Selected"
 msgstr "0 Wybranych"
@@ -467,6 +460,13 @@ msgstr "Częstotliwość na początek roku"
 msgid "10 minute"
 msgstr "10 minut"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 percentyli"
+
+msgid "10000"
+msgstr ""
+
 #, fuzzy
 msgid "104 weeks"
 msgstr "104 tygodnie"
@@ -571,6 +571,10 @@ msgstr "5 sekund"
 msgid "5 seconds"
 msgstr "5 sekund"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 percentyli"
+
 #, fuzzy
 msgid "52 weeks"
 msgstr "52 tygodnie"
@@ -645,13 +649,11 @@ msgstr ">= (Większe lub równe)"
 msgid "A Big Number"
 msgstr "Duża liczba"
 
-#, fuzzy
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "Z listy rozwijanej wybierz nazwy kolumn, które mają być traktowane jako daty."
-
 #, fuzzy
 msgid "A comma-separated list of schemas that files are allowed to upload to."
-msgstr "Lista schematów oddzielonych przecinkami, do których można przesyłać pliki."
+msgstr ""
+"Lista schematów oddzielonych przecinkami, do których można przesyłać "
+"pliki."
 
 msgid "A database port is required when connecting via SSH Tunnel."
 msgstr "Wymagany jest port bazy danych podczas łączenia przez tunel SSH."
@@ -659,6 +661,9 @@ msgstr "Wymagany jest port bazy danych podczas łączenia przez tunel SSH."
 msgid "A database with the same name already exists."
 msgstr "Baza danych o tej samej nazwie już istnieje."
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 #, fuzzy
 msgid ""
 "A dictionary with column names and their data types if you need to change"
@@ -673,8 +678,8 @@ msgid ""
 "A full URL pointing to the location of the built plugin (could be hosted "
 "on a CDN for example)"
 msgstr ""
-"Pełny URL wskazujący lokalizację zbudowanego wtyczki (może być "
-"hostowany na przykład na CDN-ie)."
+"Pełny URL wskazujący lokalizację zbudowanego wtyczki (może być hostowany "
+"na przykład na CDN-ie)."
 
 msgid "A handlebars template that is applied to the data"
 msgstr "Szablon handlebars stosowany do danych"
@@ -705,8 +710,8 @@ msgid ""
 "A map that takes rendering circles with a variable radius at "
 "latitude/longitude coordinates"
 msgstr ""
-"Mapa, która rysuje okręgi o zmiennym promieniu na współrzędnych szerokości"
-"/długości geograficznej."
+"Mapa, która rysuje okręgi o zmiennym promieniu na współrzędnych "
+"szerokości/długości geograficznej."
 
 msgid "A metric to use for color"
 msgstr "Metryka do użycia jako kolor"
@@ -749,14 +754,8 @@ msgid ""
 "A set of parameters that become available in the query using Jinja "
 "templating syntax"
 msgstr ""
-"Zestaw parametrów dostępnych w zapytaniu przy użyciu składni szablonów Jinja."
-
-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 ""
-"Wykres szeregów czasowych, który pokazuje, jak powiązana metryka z wielu "
-"grup zmienia się w czasie. Każda grupa jest przedstawiona w innym kolorze."
+"Zestaw parametrów dostępnych w zapytaniu przy użyciu składni szablonów "
+"Jinja."
 
 msgid "A timeout occurred while executing the query."
 msgstr "Wystąpiło przekroczenie czasu podczas wykonywania zapytania."
@@ -866,28 +865,32 @@ msgstr "Dodaj odbiorców DW"
 msgid "Add CSS template"
 msgstr "Dodaj szablon CSS"
 
-msgid "Add Chart"
-msgstr "Dodaj wykres"
-
-msgid "Add Column"
-msgstr "Dodaj kolumnę"
-
 msgid "Add Dashboard"
 msgstr "Dodaj pulpit"
 
-msgid "Add Database"
-msgstr "Dodaj bazę danych"
+#, fuzzy
+msgid "Add Divider"
+msgstr "Separator"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Dodaj filtr"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Ukryj warstwę"
 
 msgid "Add Log"
 msgstr "Dodaj dziennik"
 
-msgid "Add Metric"
-msgstr "Dodaj metrykę"
-
 #, fuzzy
 msgid "Add Report"
 msgstr "Dodaj raport"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "Wykluczone role"
+
 #, fuzzy
 msgid "Add Rule"
 msgstr "Dodaj regułę"
@@ -895,6 +898,10 @@ msgstr "Dodaj regułę"
 msgid "Add Tag"
 msgstr "Dodaj tag"
 
+#, fuzzy
+msgid "Add User"
+msgstr "Dodaj regułę"
+
 msgid "Add a Plugin"
 msgstr "Dodaj wtyczkę"
 
@@ -934,11 +941,13 @@ msgstr "Dodaj inną metodę powiadamiania"
 
 msgid "Add calculated columns to dataset in \"Edit datasource\" modal"
 msgstr ""
-"Dodaj obliczane kolumny do zestawu danych w oknie modalnym \"Edytuj źródło danych\""
+"Dodaj obliczane kolumny do zestawu danych w oknie modalnym \"Edytuj "
+"źródło danych\""
 
 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal"
 msgstr ""
-"Dodaj obliczane kolumny czasowe do zestawu danych w oknie modalnym \"Edytuj źródło danych\""
+"Dodaj obliczane kolumny czasowe do zestawu danych w oknie modalnym "
+"\"Edytuj źródło danych\""
 
 msgid "Add color for positive/negative change"
 msgstr "Dodaj kolor dla zmiany pozytywnej/negatywnej"
@@ -950,7 +959,9 @@ msgid "Add custom scoping"
 msgstr "Dodaj niestandardowe zakresy"
 
 msgid "Add dataset columns here to group the pivot table columns."
-msgstr "Dodaj tutaj kolumny zestawu danych, aby pogrupować kolumny tabeli przestawnej."
+msgstr ""
+"Dodaj tutaj kolumny zestawu danych, aby pogrupować kolumny tabeli "
+"przestawnej."
 
 msgid "Add delivery method"
 msgstr "Dodaj metodę dostawy"
@@ -977,10 +988,11 @@ msgid ""
 "                    of the underlying data or limit the available values "
 "displayed in the filter."
 msgstr ""
-"Dodaj klauzule filtra, aby kontrolować zapytanie źródłowe filtra, ale tylko w kontekście automatycznego uzupełniania, tj. te warunki nie wpływają na sposób zastosowania filtra do pulpitu. Jest to przydatne, gdy chcesz poprawić wydajność zapytania, skanując tylko podzbiór danych lub ograniczając dostępne wartości wyświetlane w filtrze."
-
-msgid "Add filters and dividers"
-msgstr "Dodaj filtry i dzielniki"
+"Dodaj klauzule filtra, aby kontrolować zapytanie źródłowe filtra, ale "
+"tylko w kontekście automatycznego uzupełniania, tj. te warunki nie "
+"wpływają na sposób zastosowania filtra do pulpitu. Jest to przydatne, gdy"
+" chcesz poprawić wydajność zapytania, skanując tylko podzbiór danych lub "
+"ograniczając dostępne wartości wyświetlane w filtrze."
 
 msgid "Add item"
 msgstr "Dodaj element"
@@ -989,8 +1001,7 @@ msgid "Add metric"
 msgstr "Dodaj metrykę"
 
 msgid "Add metrics to dataset in \"Edit datasource\" modal"
-msgstr ""
-"Dodaj metryki do zestawu danych w oknie modalnym \"Edytuj źródło danych\""
+msgstr "Dodaj metryki do zestawu danych w oknie modalnym \"Edytuj źródło danych\""
 
 msgid "Add new color formatter"
 msgstr "Dodaj nowy formater kolorów"
@@ -998,6 +1009,10 @@ msgstr "Dodaj nowy formater kolorów"
 msgid "Add new formatter"
 msgstr "Dodaj nowy formater"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Dodaj i edytuj filtry"
+
 msgid "Add required control values to preview chart"
 msgstr "Dodaj wymagane wartości kontrolne do podglądu wykresu"
 
@@ -1021,12 +1036,15 @@ msgstr "Dodaj nazwę pulpitu"
 msgid "Add to dashboard"
 msgstr "Dodaj do pulpitu"
 
-msgid "Add/Edit Filters"
-msgstr "Dodaj/edytuj filtry"
-
 msgid "Added"
 msgstr "Dodano"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -1043,10 +1061,6 @@ msgstr "Możliwe, że będą wymagane dodatkowe pola"
 msgid "Additional information"
 msgstr "Dodatkowe informacje"
 
-#, fuzzy
-msgid "Additional metadata"
-msgstr "Dodatkowe metadane"
-
 #, fuzzy
 msgid "Additional padding for legend."
 msgstr "Dodatkowe odstępy dla legendy."
@@ -1069,19 +1083,22 @@ msgid ""
 "Adds color to the chart symbols based on the positive or negative change "
 "from the comparison value."
 msgstr ""
-"Dodaje kolor do symboli wykresu na podstawie pozytywnej lub negatywnej zmiany w stosunku do wartości porównawczej."
+"Dodaje kolor do symboli wykresu na podstawie pozytywnej lub negatywnej "
+"zmiany w stosunku do wartości porównawczej."
 
 msgid ""
 "Adjust column settings such as specifying the columns to read, how "
 "duplicates are handled, column data types, and more."
 msgstr ""
-"Dostosuj ustawienia kolumn, takie jak określenie kolumn do odczytu, sposób obsługi duplikatów, typy danych kolumn i inne."
+"Dostosuj ustawienia kolumn, takie jak określenie kolumn do odczytu, "
+"sposób obsługi duplikatów, typy danych kolumn i inne."
 
 msgid ""
 "Adjust how spaces, blank lines, null values are handled and other file "
 "wide settings."
 msgstr ""
-"Dostosuj sposób obsługi spacji, pustych linii, wartości null i innych ustawień dotyczących całego pliku."
+"Dostosuj sposób obsługi spacji, pustych linii, wartości null i innych "
+"ustawień dotyczących całego pliku."
 
 msgid "Adjust how this database will interact with SQL Lab."
 msgstr "Dostosuj sposób interakcji tej bazy danych z SQL Lab."
@@ -1122,6 +1139,14 @@ msgstr "Zaawansowany typ danych"
 msgid "Advanced-Analytics"
 msgstr "Zaawansowana analityka"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Wybierz wykresy"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Wybierz pulpity nawigacyjne"
+
 #, fuzzy
 msgid "After"
 msgstr "Po"
@@ -1142,24 +1167,31 @@ msgid ""
 "Aggregate function applied to the list of points in each cluster to "
 "produce the cluster label."
 msgstr ""
-"Funkcja agregacyjna zastosowana do listy punktów w każdym klastrze w celu wygenerowania etykiety klastra."
+"Funkcja agregacyjna zastosowana do listy punktów w każdym klastrze w celu"
+" wygenerowania etykiety klastra."
 
 msgid ""
 "Aggregate function to apply when pivoting and computing the total rows "
 "and columns"
 msgstr ""
-"Funkcja agregacyjna stosowana podczas przestawiania i obliczania sum wierszy i kolumn."
+"Funkcja agregacyjna stosowana podczas przestawiania i obliczania sum "
+"wierszy i kolumn."
 
 msgid ""
 "Aggregates data within the boundary of grid cells and maps the aggregated"
 " values to a dynamic color scale"
 msgstr ""
-"Agreguje dane w obrębie komórek siatki i odwzorowuje wartości zagregowane na dynamiczną skalę kolorów."
+"Agreguje dane w obrębie komórek siatki i odwzorowuje wartości zagregowane"
+" na dynamiczną skalę kolorów."
 
 #, fuzzy
 msgid "Aggregation"
 msgstr "Agregacja"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "Agregacja"
+
 #, fuzzy
 msgid "Aggregation function"
 msgstr "Funkcja agregacyjna"
@@ -1208,14 +1240,18 @@ msgstr "Zapytanie alarmowe zwróciło więcej niż jedną kolumnę."
 
 #, fuzzy, python-format
 msgid "Alert query returned more than one column. %(num_cols)s columns returned"
-msgstr "Zapytanie alarmowe zwróciło więcej niż jedną kolumnę. %(num_cols)s kolumn zwrócono."
+msgstr ""
+"Zapytanie alarmowe zwróciło więcej niż jedną kolumnę. %(num_cols)s kolumn"
+" zwrócono."
 
 msgid "Alert query returned more than one row."
 msgstr "Zapytanie alarmowe zwróciło więcej niż jeden wiersz."
 
 #, fuzzy, python-format
 msgid "Alert query returned more than one row. %(num_rows)s rows returned"
-msgstr "Zapytanie alarmowe zwróciło więcej niż jeden wiersz. %(num_rows)s wierszy zwrócono."
+msgstr ""
+"Zapytanie alarmowe zwróciło więcej niż jeden wiersz. %(num_rows)s wierszy"
+" zwrócono."
 
 msgid "Alert running"
 msgstr "Alarm w toku"
@@ -1241,6 +1277,10 @@ msgstr "Wyrównaj +/-"
 msgid "All"
 msgstr "Wszystko"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Kolumny tabeli"
+
 msgid "All Text"
 msgstr "Cały tekst"
 
@@ -1257,26 +1297,14 @@ msgstr "Wszystkie filtry"
 msgid "All panels"
 msgstr "Wszystkie panele"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr "Wszystkie panele z tą kolumną zostaną objęte tym filtrem"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "Zezwól na CREATE TABLE AS"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Zezwól na opcję CREATE TABLE AS w SQL Lab"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "Zezwól na CREATE VIEW AS"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Zezwól na opcję CREATE VIEW AS w SQL Lab"
-
-msgid "Allow Csv Upload"
-msgstr "Zezwól na przesyłanie plików CSV"
-
-msgid "Allow DML"
-msgstr "Zezwól na DML"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr "Zezwól na zmianę katalogów"
@@ -1285,7 +1313,8 @@ msgid ""
 "Allow column names to be changed to case insensitive format, if supported"
 " (e.g. Oracle, Snowflake)."
 msgstr ""
-"Zezwól na zmianę nazw kolumn na format bez rozróżniania wielkości liter, jeśli obsługiwane (np. Oracle, Snowflake)."
+"Zezwól na zmianę nazw kolumn na format bez rozróżniania wielkości liter, "
+"jeśli obsługiwane (np. Oracle, Snowflake)."
 
 msgid "Allow columns to be rearranged"
 msgstr "Zezwól na zmienianie kolejności kolumn"
@@ -1293,6 +1322,10 @@ msgstr "Zezwól na zmienianie kolejności kolumn"
 msgid "Allow creation of new tables based on queries"
 msgstr "Zezwól na tworzenie nowych tabel na podstawie zapytań"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "Zezwól na tworzenie nowych widoków na podstawie zapytań"
+
 msgid "Allow creation of new views based on queries"
 msgstr "Zezwól na tworzenie nowych widoków na podstawie zapytań"
 
@@ -1303,18 +1336,14 @@ 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 ""
-"Zezwól użytkownikowi na przeciąganie i upuszczanie nagłówków kolumn w celu ich zmiany kolejności. Zmiany nie zostaną zapisane przy następnym otwarciu wykresu."
+"Zezwól użytkownikowi na przeciąganie i upuszczanie nagłówków kolumn w "
+"celu ich zmiany kolejności. Zmiany nie zostaną zapisane przy następnym "
+"otwarciu wykresu."
 
 #, fuzzy
 msgid "Allow file uploads to database"
 msgstr "Zezwól na przesyłanie plików do bazy danych."
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-"Zezwól na manipulowanie bazą danych przy użyciu instrukcji innych niż SELECT, takich jak UPDATE, DELETE, CREATE itp."
-
 #, fuzzy
 msgid "Allow node selections"
 msgstr "Zezwól na wybór węzłów"
@@ -1322,18 +1351,18 @@ msgstr "Zezwól na wybór węzłów"
 msgid "Allow sending multiple polygons as a filter event"
 msgstr "Zezwól na wysyłanie wielu wielokątów jako zdarzenia filtra"
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "Zezwól na eksplorację tej bazy danych"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "Zezwól na zapytania do tej bazy danych w SQL Lab"
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
-msgstr ""
-"Zezwól użytkownikom na uruchamianie instrukcji innych niż SELECT (UPDATE, DELETE, CREATE itp.) w SQL Lab"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "Dozwolone domeny (oddzielone przecinkami)"
 
@@ -1346,7 +1375,10 @@ msgid ""
 "middle emphasizes the mean, median, and inner 2 quartiles. The whiskers "
 "around each box visualize the min, max, range, and outer 2 quartiles."
 msgstr ""
-"Znany również jako wykres pudełkowy, ten sposób wizualizacji porównuje rozkłady powiązanej metryki w wielu grupach. Środkowe pole uwydatnia średnią, medianę i dwa wewnętrzne kwartyle. Wąsy wokół każdego pola pokazują minimum, maksimum, zakres i dwa zewnętrzne kwartyle."
+"Znany również jako wykres pudełkowy, ten sposób wizualizacji porównuje "
+"rozkłady powiązanej metryki w wielu grupach. Środkowe pole uwydatnia "
+"średnią, medianę i dwa wewnętrzne kwartyle. Wąsy wokół każdego pola "
+"pokazują minimum, maksimum, zakres i dwa zewnętrzne kwartyle."
 
 msgid "Altered"
 msgstr "Zmodyfikowano"
@@ -1367,17 +1399,23 @@ msgid ""
 "An enclosed time range (both start and end) must be specified when using "
 "a Time Comparison."
 msgstr ""
-"Określony zakres czasu (zarówno początek, jak i koniec) musi być podany podczas korzystania z porównania czasu."
+"Określony zakres czasu (zarówno początek, jak i koniec) musi być podany "
+"podczas korzystania z porównania czasu."
 
 msgid ""
 "An engine must be specified when passing individual parameters to a "
 "database."
 msgstr ""
-"Silnik musi być określony przy przekazywaniu poszczególnych parametrów do bazy danych."
+"Silnik musi być określony przy przekazywaniu poszczególnych parametrów do"
+" bazy danych."
 
 msgid "An error has occurred"
 msgstr "Wystąpił błąd"
 
+#, fuzzy
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Wystąpił błąd podczas pobierania metadanych tabeli."
+
 msgid "An error occurred"
 msgstr "Wystąpił błąd"
 
@@ -1388,6 +1426,10 @@ msgstr "Wystąpił błąd podczas zapisywania zestawu danych"
 msgid "An error occurred when running alert query"
 msgstr "Wystąpił błąd podczas uruchamiania zapytania alarmowego"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Wystąpił błąd podczas dostępu do wartości."
+
 msgid "An error occurred while accessing the value."
 msgstr "Wystąpił błąd podczas dostępu do wartości."
 
@@ -1395,7 +1437,16 @@ msgid ""
 "An error occurred while collapsing the table schema. Please contact your "
 "administrator."
 msgstr ""
-"Wystąpił błąd podczas zwijania schematu tabeli. Skontaktuj się z administratorem."
+"Wystąpił błąd podczas zwijania schematu tabeli. Skontaktuj się z "
+"administratorem."
+
+#, fuzzy, python-format
+msgid "An error occurred while creating %ss: %s"
+msgstr "Wystąpił błąd podczas tworzenia wartości."
+
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Wystąpił błąd podczas tworzenia wartości."
 
 msgid "An error occurred while creating the data source"
 msgstr "Wystąpił błąd podczas tworzenia źródła danych."
@@ -1410,17 +1461,74 @@ msgid ""
 "An error occurred while expanding the table schema. Please contact your "
 "administrator."
 msgstr ""
-"Wystąpił błąd podczas rozwijania schematu tabeli. Skontaktuj się z administratorem."
+"Wystąpił błąd podczas rozwijania schematu tabeli. Skontaktuj się z "
+"administratorem."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching %s info: %s"
+msgstr "Wystąpił błąd podczas pobierania pulpitów nawigacyjnych."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching %ss: %s"
+msgstr "Wystąpił błąd podczas pobierania stanu zakładki."
 
 msgid "An error occurred while fetching available CSS templates"
 msgstr "Wystąpił błąd podczas pobierania dostępnych szablonów CSS."
 
+#, fuzzy, python-format
+msgid "An error occurred while fetching chart owners values: %s"
+msgstr "Wystąpił błąd podczas usuwania wartości."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching dashboard owner values: %s"
+msgstr "Wystąpił błąd podczas pobierania pulpitów nawigacyjnych."
+
 msgid "An error occurred while fetching dashboards"
 msgstr "Wystąpił błąd podczas pobierania pulpitów nawigacyjnych."
 
+#, fuzzy, python-format
+msgid "An error occurred while fetching dashboards: %s"
+msgstr "Wystąpił błąd podczas pobierania pulpitów nawigacyjnych."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching database related data: %s"
+msgstr "Wystąpił błąd podczas pobierania stanu zakładki."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching database values: %s"
+msgstr "Wystąpił błąd podczas pobierania stanu zakładki."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching dataset datasource values: %s"
+msgstr "Wystąpił błąd podczas pobierania stanu zakładki."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching dataset owner values: %s"
+msgstr "Wystąpił błąd podczas pobierania pulpitów nawigacyjnych."
+
+#, fuzzy
+msgid "An error occurred while fetching dataset related data"
+msgstr "Wystąpił błąd podczas pobierania stanu zakładki."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching dataset related data: %s"
+msgstr "Wystąpił błąd podczas pobierania stanu zakładki."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching datasets: %s"
+msgstr "Wystąpił błąd podczas pobierania stanu zakładki."
+
 msgid "An error occurred while fetching function names."
 msgstr "Wystąpił błąd podczas pobierania nazw funkcji."
 
+#, fuzzy, python-format
+msgid "An error occurred while fetching owners values: %s"
+msgstr "Wystąpił błąd podczas usuwania wartości."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching schema values: %s"
+msgstr "Wystąpił błąd podczas usuwania wartości."
+
 msgid "An error occurred while fetching tab state"
 msgstr "Wystąpił błąd podczas pobierania stanu zakładki."
 
@@ -1431,11 +1539,28 @@ msgid ""
 "An error occurred while fetching table metadata. Please contact your "
 "administrator."
 msgstr ""
-"Wystąpił błąd podczas pobierania metadanych tabeli. Skontaktuj się z administratorem."
+"Wystąpił błąd podczas pobierania metadanych tabeli. Skontaktuj się z "
+"administratorem."
+
+#, fuzzy, python-format
+msgid "An error occurred while fetching user values: %s"
+msgstr "Wystąpił błąd podczas usuwania wartości."
+
+#, fuzzy, python-format
+msgid "An error occurred while importing %s: %s"
+msgstr "Wystąpił błąd podczas czyszczenia dzienników."
+
+#, fuzzy
+msgid "An error occurred while loading dashboard information."
+msgstr "Wystąpił błąd podczas pobierania pulpitów nawigacyjnych."
 
 msgid "An error occurred while loading the SQL"
 msgstr "Wystąpił błąd podczas ładowania SQL."
 
+#, fuzzy
+msgid "An error occurred while opening Explore"
+msgstr "Wystąpił błąd podczas czyszczenia dzienników."
+
 msgid "An error occurred while parsing the key."
 msgstr "Wystąpił błąd podczas analizowania klucza."
 
@@ -1444,13 +1569,23 @@ msgstr "Wystąpił błąd podczas czyszczenia dzienników."
 
 msgid "An error occurred while removing query. Please contact your administrator."
 msgstr ""
-"Wystąpił błąd podczas usuwania zapytania. Skontaktuj się z administratorem."
+"Wystąpił błąd podczas usuwania zapytania. Skontaktuj się z "
+"administratorem."
 
 msgid ""
 "An error occurred while removing the table schema. Please contact your "
 "administrator."
 msgstr ""
-"Wystąpił błąd podczas usuwania schematu tabeli. Skontaktuj się z administratorem."
+"Wystąpił błąd podczas usuwania schematu tabeli. Skontaktuj się z "
+"administratorem."
+
+#, fuzzy, python-format
+msgid "An error occurred while rendering the visualization: %s"
+msgstr "Wystąpił błąd podczas usuwania wartości."
+
+#, fuzzy
+msgid "An error occurred while starring this chart"
+msgstr "Wystąpił błąd podczas analizowania klucza."
 
 msgid ""
 "An error occurred while storing your query in the backend. To avoid "
@@ -1458,7 +1593,12 @@ msgid ""
 "button."
 msgstr ""
 "Wystąpił błąd podczas zapisywania zapytania w backendzie. Aby uniknąć "
-"utraty zmian, zapisz zapytanie, korzystając z przycisku „Zapisz zapytanie”."
+"utraty zmian, zapisz zapytanie, korzystając z przycisku „Zapisz "
+"zapytanie”."
+
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Wystąpił błąd podczas czyszczenia dzienników."
 
 msgid "An error occurred while updating the value."
 msgstr "Wystąpił błąd podczas aktualizowania wartości."
@@ -1484,6 +1624,7 @@ msgstr "Animacja"
 msgid "Annotation"
 msgstr "Adnotacja"
 
+#, python-format
 msgid "Annotation Layer %s"
 msgstr "Warstwa adnotacji %s"
 
@@ -1590,26 +1731,35 @@ msgid ""
 "Any color palette selected here will override the colors applied to this "
 "dashboard's individual charts"
 msgstr ""
-"Wybrana tutaj paleta kolorów zastąpi kolory stosowane w poszczególnych wykresach tego panelu."
+"Wybrana tutaj paleta kolorów zastąpi kolory stosowane w poszczególnych "
+"wykresach tego panelu."
 
-msgid "Any databases that allow connections via SQL Alchemy URIs can be added."
-msgstr "Można dodać dowolne bazy danych umożliwiające połączenia za pomocą URI SQL Alchemy."
+#, fuzzy
+msgid "Any databases that allow connections via SQL Alchemy URIs can be added. "
+msgstr ""
+"Można dodać dowolne bazy danych umożliwiające połączenia za pomocą URI "
+"SQL Alchemy."
 
 msgid ""
 "Any databases that allow connections via SQL Alchemy URIs can be added. "
 "Learn about how to connect a database driver "
 msgstr ""
-"Można dodać dowolne bazy danych umożliwiające połączenia za pomocą URI SQL Alchemy. Dowiedz się, jak połączyć sterownik bazy danych."
+"Można dodać dowolne bazy danych umożliwiające połączenia za pomocą URI "
+"SQL Alchemy. Dowiedz się, jak połączyć sterownik bazy danych."
 
+#, python-format
 msgid "Applied cross-filters (%d)"
 msgstr "Zastosowane filtry krzyżowe (%d)"
 
+#, python-format
 msgid "Applied filters (%d)"
 msgstr "Zastosowane filtry (%d)"
 
+#, python-format
 msgid "Applied filters (%s)"
 msgstr "Zastosowane filtry (%s)"
 
+#, python-format
 msgid "Applied filters: %s"
 msgstr "Zastosowane filtry: %s"
 
@@ -1617,7 +1767,9 @@ 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 ""
-"Zastosowane okno przesuwne nie zwróciło żadnych danych. Upewnij się, że zapytanie źródłowe spełnia minimalne okresy zdefiniowane w oknie przesuwnym."
+"Zastosowane okno przesuwne nie zwróciło żadnych danych. Upewnij się, że "
+"zapytanie źródłowe spełnia minimalne okresy zdefiniowane w oknie "
+"przesuwnym."
 
 msgid "Apply"
 msgstr "Zastosuj"
@@ -1637,12 +1789,6 @@ msgstr "Zastosuj filtry"
 msgid "Apply metrics on"
 msgstr "Zastosuj metryki na"
 
-msgid "Apply to all panels"
-msgstr "Zastosuj do wszystkich paneli"
-
-msgid "Apply to specific panels"
-msgstr "Zastosuj do wybranych paneli"
-
 msgid "April"
 msgstr "Kwiecień"
 
@@ -1658,9 +1804,11 @@ msgstr "Czy na pewno chcesz anulować?"
 msgid "Are you sure you want to delete"
 msgstr "Czy na pewno chcesz usunąć"
 
+#, python-format
 msgid "Are you sure you want to delete %s?"
 msgstr "Czy na pewno chcesz usunąć %s?"
 
+#, python-format
 msgid "Are you sure you want to delete the selected %s?"
 msgstr "Czy na pewno chcesz usunąć wybrane %s?"
 
@@ -1682,6 +1830,10 @@ msgstr "Czy na pewno chcesz usunąć wybrane warstwy?"
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "Czy na pewno chcesz usunąć wybrane zapytania?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "Czy na pewno chcesz usunąć wybrane reguły?"
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "Czy na pewno chcesz usunąć wybrane reguły?"
 
@@ -1691,6 +1843,10 @@ msgstr "Czy na pewno chcesz usunąć wybrane tagi?"
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "Czy na pewno chcesz usunąć wybrane szablony?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "Czy na pewno chcesz usunąć wybrane zapytania?"
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "Czy na pewno chcesz nadpisać ten zestaw danych?"
 
@@ -1718,7 +1874,8 @@ msgid ""
 "other."
 msgstr ""
 "Wykresy powierzchniowe są podobne do wykresów liniowych, ponieważ "
-"reprezentują zmienne o tej samej skali, ale wykresy powierzchniowe nakładają metryki na siebie."
+"reprezentują zmienne o tej samej skali, ale wykresy powierzchniowe "
+"nakładają metryki na siebie."
 
 msgid "Arrow"
 msgstr "Strzałka"
@@ -1729,15 +1886,13 @@ msgstr "Przypisz zestaw parametrów jako"
 msgid "Assist"
 msgstr "Asysta"
 
-msgid "Associated Charts"
-msgstr "Powiązane wykresy"
-
-msgid "Async Execution"
-msgstr "Wykonanie asynchroniczne"
-
 msgid "Asynchronous query execution"
 msgstr "Asynchroniczne wykonywanie zapytań"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "Rozkład"
+
 msgid "August"
 msgstr "Sierpień"
 
@@ -1762,12 +1917,26 @@ msgstr "Predykat zapytania autouzupełniania"
 msgid "Automatic Color"
 msgstr "Automatyczny kolor"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Dostosuj kolumny"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Dostosuj kolumny"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "Dostępne tryby sortowania:"
 
 msgid "Average"
 msgstr "Średnia"
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr "Wartość średnia"
 
@@ -1804,6 +1973,10 @@ msgstr "Wróć do wszystkiego"
 msgid "Backend"
 msgstr "Zaplecze"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "tło"
+
 msgid "Backward values"
 msgstr "Wartości wsteczne"
 
@@ -1819,9 +1992,6 @@ msgstr "Słupek"
 msgid "Bar Chart"
 msgstr "Wykres słupkowy"
 
-msgid "Bar Chart (legacy)"
-msgstr "Wykres słupkowy (starsza wersja)"
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr "Wykresy słupkowe służą do przedstawiania metryk w formie serii słupków."
 
@@ -1834,9 +2004,25 @@ msgstr "Orientacja słupków"
 msgid "Base"
 msgstr "Podstawa"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Port bazy danych"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Wysokość wykresu"
+
+#, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr "Styl mapy warstwy podstawowej. Zobacz dokumentację Mapbox: %s"
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Szerokość linii"
+
 msgid "Based on a metric"
 msgstr "Oparte na metryce"
 
@@ -1852,12 +2038,10 @@ msgstr "Podstawowy"
 msgid "Basic information"
 msgstr "Podstawowe informacje"
 
+#, python-format
 msgid "Batch editing %d filters:"
 msgstr "Zbiorowa edycja %d filtrów:"
 
-msgid "Battery level over time"
-msgstr "Poziom baterii w czasie"
-
 msgid "Be careful."
 msgstr "Bądź ostrożny."
 
@@ -1879,6 +2063,14 @@ msgstr "Duża liczba z linią trendu"
 msgid "Bins"
 msgstr "Kosze"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Kolory serii"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Szerokość krawędzi"
+
 msgid "Bottom"
 msgstr "Dół"
 
@@ -1903,25 +2095,28 @@ msgid ""
 "min/max of the data. Note that this feature will only expand the axis "
 "range. It won't narrow the data's extent."
 msgstr ""
-"Granice osi X dla danych liczbowych. Nie dotyczy osi czasowych ani kategorycznych. "
-"Gdy pozostawione puste, granice są definiowane dynamicznie na podstawie wartości min/max danych. "
-"Uwaga: funkcja ta tylko rozszerza zakres osi, nie ograniczając zakresu danych."
+"Granice osi X dla danych liczbowych. Nie dotyczy osi czasowych ani "
+"kategorycznych. Gdy pozostawione puste, granice są definiowane "
+"dynamicznie na podstawie wartości min/max danych. Uwaga: funkcja ta tylko"
+" rozszerza zakres osi, nie ograniczając zakresu danych."
 
 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 ""
-"Granice osi Y. Gdy pozostawione puste, granice są definiowane dynamicznie na podstawie wartości min/max danych. "
-"Uwaga: funkcja ta tylko rozszerza zakres osi, nie ograniczając zakresu danych."
+"Granice osi Y. Gdy pozostawione puste, granice są definiowane dynamicznie"
+" na podstawie wartości min/max danych. Uwaga: funkcja ta tylko rozszerza "
+"zakres osi, nie ograniczając zakresu danych."
 
 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 ""
-"Granice osi. Gdy pozostawione puste, granice są definiowane dynamicznie na podstawie wartości min/max danych. "
-"Uwaga: funkcja ta tylko rozszerza zakres osi, nie ograniczając zakresu danych."
+"Granice osi. Gdy pozostawione puste, granice są definiowane dynamicznie "
+"na podstawie wartości min/max danych. Uwaga: funkcja ta tylko rozszerza "
+"zakres osi, nie ograniczając zakresu danych."
 
 msgid ""
 "Bounds for the primary Y-axis. When left empty, the bounds are "
@@ -1929,8 +2124,9 @@ msgid ""
 "feature will only expand the axis range. It won't narrow the data's "
 "extent."
 msgstr ""
-"Granice głównej osi Y. Gdy pozostawione puste, granice są definiowane dynamicznie na podstawie wartości min/max danych. "
-"Uwaga: funkcja ta tylko rozszerza zakres osi, nie ograniczając zakresu danych."
+"Granice głównej osi Y. Gdy pozostawione puste, granice są definiowane "
+"dynamicznie na podstawie wartości min/max danych. Uwaga: funkcja ta tylko"
+" rozszerza zakres osi, nie ograniczając zakresu danych."
 
 msgid ""
 "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n"
@@ -1940,9 +2136,10 @@ msgid ""
 "will only expand\n"
 "                the axis range. It won't narrow the data's extent."
 msgstr ""
-"Granice drugorzędnej osi Y. Działa tylko, gdy niezależne granice osi Y są włączone. "
-"Gdy pozostawione puste, granice są definiowane dynamicznie na podstawie wartości min/max danych. "
-"Uwaga: funkcja ta tylko rozszerza zakres osi, nie ograniczając zakresu danych."
+"Granice drugorzędnej osi Y. Działa tylko, gdy niezależne granice osi Y są"
+" włączone. Gdy pozostawione puste, granice są definiowane dynamicznie na "
+"podstawie wartości min/max danych. Uwaga: funkcja ta tylko rozszerza "
+"zakres osi, nie ograniczając zakresu danych."
 
 msgid "Box Plot"
 msgstr "Wykres pudełkowy"
@@ -1998,18 +2195,16 @@ msgstr "Wykres punktowy"
 msgid "Business"
 msgstr "Biznes"
 
-msgid "Business Data Type"
-msgstr "Typ danych biznesowych"
-
 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 ""
-"Domyślnie każdy filtr ładuje maksymalnie 1000 opcji podczas pierwszego ładowania strony. "
-"Zaznacz to pole, jeśli masz więcej niż 1000 wartości filtru i chcesz włączyć dynamiczne wyszukiwanie, "
-"które ładuje wartości filtrów podczas wpisywania (może to obciążyć bazę danych)."
+"Domyślnie każdy filtr ładuje maksymalnie 1000 opcji podczas pierwszego "
+"ładowania strony. Zaznacz to pole, jeśli masz więcej niż 1000 wartości "
+"filtru i chcesz włączyć dynamiczne wyszukiwanie, które ładuje wartości "
+"filtrów podczas wpisywania (może to obciążyć bazę danych)."
 
 msgid "By key: use column names as sorting key"
 msgstr "Według klucza: użyj nazw kolumn jako klucza sortowania"
@@ -2068,8 +2263,9 @@ msgstr "Szablony CSS"
 msgid "CSS templates could not be deleted."
 msgstr "Nie można usunąć szablonów CSS."
 
-msgid "CSV Upload"
-msgstr "Przesyłanie CSV"
+#, fuzzy
+msgid "CSV upload"
+msgstr "Przesyłanie pliku"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "SCHEMAT CTAS I CVAS"
@@ -2079,21 +2275,24 @@ msgid ""
 " 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) można uruchomić tylko z zapytaniem, w którym ostatnim "
-"poleceniem jest SELECT. Upewnij się, że w zapytaniu na końcu znajduje się SELECT. "
-"Następnie spróbuj ponownie uruchomić zapytanie."
+"CTAS (create table as select) można uruchomić tylko z zapytaniem, w "
+"którym ostatnim poleceniem jest SELECT. Upewnij się, że w zapytaniu na "
+"końcu znajduje się SELECT. Następnie spróbuj ponownie uruchomić "
+"zapytanie."
 
-msgid "CTAS Schema"
-msgstr "Schemat CTAS"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "Niestandardowy"
 
 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) można uruchomić tylko z zapytaniem zawierającym pojedyncze "
-"polecenie SELECT. Upewnij się, że zapytanie zawiera tylko jedno SELECT. Następnie spróbuj "
-"ponownie uruchomić zapytanie."
+"CVAS (create view as select) można uruchomić tylko z zapytaniem "
+"zawierającym pojedyncze polecenie SELECT. Upewnij się, że zapytanie "
+"zawiera tylko jedno SELECT. Następnie spróbuj ponownie uruchomić "
+"zapytanie."
 
 msgid "CVAS (create view as select) query has more than one statement."
 msgstr "Zapytanie CVAS (create view as select) zawiera więcej niż jedno polecenie."
@@ -2101,9 +2300,6 @@ msgstr "Zapytanie CVAS (create view as select) zawiera więcej niż jedno polece
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "Zapytanie CVAS (create view as select) nie jest poleceniem SELECT."
 
-msgid "Cache Timeout"
-msgstr "Limit czasu pamięci podręcznej"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Limit czasu pamięci podręcznej (w sekundach)"
 
@@ -2113,6 +2309,7 @@ msgstr "Limit czasu pamięci podręcznej"
 msgid "Cached"
 msgstr "Buforowane"
 
+#, python-format
 msgid "Cached %s"
 msgstr "Buforowane %s"
 
@@ -2128,6 +2325,7 @@ msgstr "Oblicz od pierwszego kroku"
 msgid "Calculate from previous step"
 msgstr "Oblicz od poprzedniego kroku"
 
+#, python-format
 msgid "Calculated column [%s] requires an expression"
 msgstr "Obliczona kolumna [%s] wymaga wyrażenia"
 
@@ -2141,14 +2339,13 @@ msgid "Calendar Heatmap"
 msgstr "Mapa cieplna kalendarza"
 
 msgid "Can not move top level tab into nested tabs"
-msgstr "Nie można przenieść zakładki najwyższego poziomu do zakładek zagnieżdżonych"
+msgstr ""
+"Nie można przenieść zakładki najwyższego poziomu do zakładek "
+"zagnieżdżonych"
 
 msgid "Can select multiple values"
 msgstr "Można wybrać wiele wartości"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "Seria i podziały nie mogą się pokrywać"
-
 msgid "Cancel"
 msgstr "Anuluj"
 
@@ -2161,15 +2358,24 @@ msgstr "Nie można uzyskać dostępu do zapytania"
 msgid "Cannot delete a database that has datasets attached"
 msgstr "Nie można usunąć bazy danych, do której są przypisane zestawy danych"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr "Nie można mieć wielu danych uwierzytelniających dla tunelu SSH"
 
 msgid "Cannot load filter"
 msgstr "Nie można załadować filtru"
 
+#, python-format
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "Nie można przeanalizować ciągu czasu [%(human_readable)s]"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Diagram partycji"
+
 msgid "Catalog"
 msgstr "Katalog"
 
@@ -2236,6 +2442,7 @@ msgstr "Certyfikowane przez"
 msgid "Certified by"
 msgstr "Certyfikowane przez"
 
+#, python-format
 msgid "Certified by %s"
 msgstr "Certyfikowane przez %s"
 
@@ -2245,12 +2452,13 @@ msgstr "Zmień kolejność kolumn."
 msgid "Change order of rows."
 msgstr "Zmień kolejność wierszy."
 
-msgid "Changed By"
-msgstr "Zmienione przez"
-
 msgid "Changed by"
 msgstr "Zmienione przez"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "zmiana"
+
 msgid "Changes saved."
 msgstr "Zmiany zapisane."
 
@@ -2298,12 +2506,11 @@ msgstr "Znak interpretowany jako separator dziesiętny"
 msgid "Chart"
 msgstr "Wykres"
 
+#, python-format
 msgid "Chart %(id)s not found"
 msgstr "Nie znaleziono wykresu %(id)s"
 
-msgid "Chart Cache Timeout"
-msgstr "Limit czasu pamięci podręcznej wykresu"
-
+#, python-format
 msgid "Chart Data: %s"
 msgstr "Dane wykresu: %s"
 
@@ -2316,6 +2523,7 @@ msgstr "Opcje wykresu"
 msgid "Chart Orientation"
 msgstr "Orientacja wykresu"
 
+#, python-format
 msgid "Chart Owner: %s"
 msgid_plural "Chart Owners: %s"
 msgstr[0] "Właściciel wykresu: %s"
@@ -2327,12 +2535,15 @@ msgstr "Źródło wykresu"
 msgid "Chart Title"
 msgstr "Tytuł wykresu"
 
+#, python-format
 msgid "Chart [%s] has been overwritten"
 msgstr "Wykres [%s] został nadpisany"
 
+#, python-format
 msgid "Chart [%s] has been saved"
 msgstr "Wykres [%s] został zapisany"
 
+#, python-format
 msgid "Chart [%s] was added to dashboard [%s]"
 msgstr "Wykres [%s] został dodany do pulpitu [%s]"
 
@@ -2361,7 +2572,9 @@ msgid "Chart does not exist"
 msgstr "Wykres nie istnieje"
 
 msgid "Chart has no query context saved. Please save the chart again."
-msgstr "Wykres nie ma zapisanych kontekstów zapytań. Proszę ponownie zapisać wykres."
+msgstr ""
+"Wykres nie ma zapisanych kontekstów zapytań. Proszę ponownie zapisać "
+"wykres."
 
 msgid "Chart height"
 msgstr "Wysokość wykresu"
@@ -2393,6 +2606,10 @@ msgstr "Parametry wykresu są nieprawidłowe."
 msgid "Chart properties updated"
 msgstr "Właściwości wykresu zostały zaktualizowane"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "wykresy"
+
 msgid "Chart title"
 msgstr "Tytuł wykresu"
 
@@ -2415,8 +2632,8 @@ msgid ""
 "Check if the Rose Chart should use segment area instead of segment radius"
 " for proportioning"
 msgstr ""
-"Sprawdź, czy wykres Rose powinien używać powierzchni segmentu zamiast jego "
-"promienia do proporcjonowania."
+"Sprawdź, czy wykres Rose powinien używać powierzchni segmentu zamiast "
+"jego promienia do proporcjonowania."
 
 msgid "Check out this chart in dashboard:"
 msgstr "Sprawdź ten wykres w pulpicie:"
@@ -2442,6 +2659,10 @@ msgstr "Wybór [Promienia punktu] musi być obecny w [Grupuj według]"
 msgid "Choose File"
 msgstr "Wybierz plik"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Wybierz wykres lub pulpit, nie oba jednocześnie"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Wybierz wykres lub pulpit, nie oba jednocześnie"
 
@@ -2464,10 +2685,6 @@ msgstr "Wybierz format liczby"
 msgid "Choose a source"
 msgstr "Wybierz źródło"
 
-#, fuzzy
-msgid "Choose a source and a target"
-msgstr "Wybierz źródło i cel"
-
 #, fuzzy
 msgid "Choose a target"
 msgstr "Wybierz zbiór danych"
@@ -2526,15 +2743,15 @@ msgid ""
 "supports only a single value"
 msgstr ""
 "Lista JSON wartości, które powinny być traktowane jako null. Przykłady: "
-"[„”] dla pustych ciągów, [„None”, „N/A”], [„nan”, „null”]. Uwaga: "
-"baza danych Hive obsługuje tylko jedną wartość"
+"[„”] dla pustych ciągów, [„None”, „N/A”], [„nan”, „null”]. Uwaga: baza "
+"danych Hive obsługuje tylko jedną wartość"
 
 msgid ""
 "Choose whether a country should be shaded by the metric, or assigned a "
 "color based on a categorical color palette"
 msgstr ""
-"Wybierz, czy kraj ma być zaciemniony na podstawie metryki, czy przypisany "
-"do kolorów z palety kolorów kategorycznych."
+"Wybierz, czy kraj ma być zaciemniony na podstawie metryki, czy przypisany"
+" do kolorów z palety kolorów kategorycznych."
 
 msgid "Chord Diagram"
 msgstr "Diagram akordów"
@@ -2558,16 +2775,13 @@ msgstr "Kształt radaru kołowego"
 msgid "Circular"
 msgstr "Okrągły"
 
-msgid "Classic chart that visualizes how metrics change over time."
-msgstr ""
-"Klasyczny wykres wizualizujący, jak zmieniają się miary w czasie."
-
 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 ""
-"Klasyczny widok danych w układzie wiersz-po-kolumnie, jak w arkuszu kalkulacyjnym. "
-"Używaj tabel, aby zaprezentować widok na dane lub pokazać agregowane miary."
+"Klasyczny widok danych w układzie wiersz-po-kolumnie, jak w arkuszu "
+"kalkulacyjnym. Używaj tabel, aby zaprezentować widok na dane lub pokazać "
+"agregowane miary."
 
 msgid "Clause"
 msgstr "Klauzula"
@@ -2586,9 +2800,13 @@ msgstr "Wyczyść wszystkie dane"
 msgid "Clear form"
 msgstr "Wyczyść formularz"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
-"Kliknij przycisk „+Dodaj/Edytuj filtry”, aby utworzyć nowe filtry dashboardu."
+"Kliknij przycisk „+Dodaj/Edytuj filtry”, aby utworzyć nowe filtry "
+"dashboardu."
 
 msgid ""
 "Click on \"Create chart\" button in the control panel on the left to "
@@ -2620,6 +2838,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr "Kliknij, aby dodać kontur"
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "Kliknij, aby dodać kontur"
+
 msgid "Click to cancel sorting"
 msgstr "Kliknij, aby anulować sortowanie"
 
@@ -2730,8 +2952,8 @@ 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 ""
-"Kolor będzie zaciemniony na podstawie znormalizowanej wartości (0% do 100%) "
-"danej komórki w porównaniu do innych komórek w wybranym zakresie: "
+"Kolor będzie zaciemniony na podstawie znormalizowanej wartości (0% do "
+"100%) danej komórki w porównaniu do innych komórek w wybranym zakresie: "
 
 #, fuzzy
 msgid "Color: "
@@ -2748,26 +2970,27 @@ msgid ""
 "Column \"%(column)s\" is not numeric or does not exists in the query "
 "results."
 msgstr ""
-"Kolumna „%(column)s” nie jest liczbowa lub nie istnieje w wynikach zapytania."
+"Kolumna „%(column)s” nie jest liczbowa lub nie istnieje w wynikach "
+"zapytania."
 
 #, fuzzy
 msgid "Column Configuration"
 msgstr "Konfiguracja kolumn"
 
-#, fuzzy
-msgid "Column Data Types"
-msgstr "Typy danych kolumn"
-
 #, fuzzy
 msgid "Column Formatting"
 msgstr "Formatowanie kolumn"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Ustawienia wielokątów"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
 msgstr ""
-"Kolumna zawierająca kody ISO 3166-2 regionu/prowincji/departamentu w twojej "
-"tabeli."
+"Kolumna zawierająca kody ISO 3166-2 regionu/prowincji/departamentu w "
+"twojej tabeli."
 
 msgid "Column containing latitude data"
 msgstr "Kolumna zawierająca dane szerokości geograficznej"
@@ -2779,10 +3002,6 @@ msgstr "Kolumna zawierająca dane długości geograficznej"
 msgid "Column data types"
 msgstr "Typy danych kolumn"
 
-#, fuzzy
-msgid "Column datatype"
-msgstr "Typ danych kolumny"
-
 msgid "Column header tooltip"
 msgstr "Podpowiedź nagłówka kolumny"
 
@@ -2809,23 +3028,23 @@ msgid ""
 "Column to use as the index of the dataframe. If None is given, Index "
 "label is used."
 msgstr ""
-"Kolumna do użycia jako indeks ramki danych. Jeśli nie podano, używany jest "
-"indeks etykiety."
+"Kolumna do użycia jako indeks ramki danych. Jeśli nie podano, używany "
+"jest indeks etykiety."
+
+#, fuzzy
+msgid "Column type"
+msgstr "Typ danych kolumny"
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Columnar upload"
 msgstr "Przesyłanie kolumnowe"
 
 msgid "Columns"
 msgstr "Kolumny"
 
-#, fuzzy
-msgid "Columns To Be Parsed as Dates"
-msgstr "Kolumny do przetworzenia jako daty"
-
-#, fuzzy
-msgid "Columns To Read"
-msgstr "Kolumny do odczytu"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s kolumna(y)"
 
 #, fuzzy, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2838,6 +3057,10 @@ msgstr "Brakujące kolumny w źródle danych: %(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr "Pozycja subtotalu kolumn"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "Kolumny do przetworzenia jako daty"
+
 msgid "Columns to calculate distribution across."
 msgstr "Kolumny do obliczania rozkładu."
 
@@ -2854,6 +3077,10 @@ msgstr "Kolumny do grupowania po kolumnach"
 msgid "Columns to group by on the rows"
 msgstr "Kolumny do grupowania po wierszach"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Kolumny do odczytu"
+
 #, fuzzy
 msgid "Combine metrics"
 msgstr "Łączenie metryk"
@@ -2863,16 +3090,17 @@ msgid ""
 "denote colors from the chosen color scheme and are 1-indexed. Length must"
 " be matching that of interval bounds."
 msgstr ""
-"Kolory oddzielone przecinkami dla przedziałów, np. 1,2,4. Liczby całkowite "
-"oznaczają kolory z wybranego schematu kolorów i są indeksowane od 1. Długość "
-"musi odpowiadać długości granic przedziału."
+"Kolory oddzielone przecinkami dla przedziałów, np. 1,2,4. Liczby "
+"całkowite oznaczają kolory z wybranego schematu kolorów i są indeksowane "
+"od 1. Długość musi odpowiadać długości granic przedziału."
 
 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 ""
-"Granice przedziałów oddzielone przecinkami, np. 2,4,5 dla przedziałów 0-2, "
-"2-4 i 4-5. Ostatnia liczba powinna odpowiadać wartości podanej dla MAX."
+"Granice przedziałów oddzielone przecinkami, np. 2,4,5 dla przedziałów "
+"0-2, 2-4 i 4-5. Ostatnia liczba powinna odpowiadać wartości podanej dla "
+"MAX."
 
 msgid "Comparator option"
 msgstr "Opcja porównania"
@@ -2895,24 +3123,9 @@ msgid ""
 "group is mapped to a row and change over time is visualized bar lengths "
 "and color."
 msgstr ""
-"Porównuje, jak metryka zmienia się w czasie między różnymi grupami. Każda "
-"grupa jest mapowana na wiersz, a zmiany w czasie są wizualizowane przez długość "
-"i kolor słupków."
-
-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 ""
-"Porównuje metryki z różnych kategorii za pomocą słupków. Długość słupków "
-"jest używana do wskazania wielkości każdej wartości, a kolor do odróżnienia "
-"grup."
-
-msgid ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-"Porównuje czas trwania różnych działań w wspólnej osi czasu."
+"Porównuje, jak metryka zmienia się w czasie między różnymi grupami. Każda"
+" grupa jest mapowana na wiersz, a zmiany w czasie są wizualizowane przez "
+"długość i kolor słupków."
 
 msgid "Comparison"
 msgstr "Porównanie"
@@ -2977,13 +3190,21 @@ msgstr "Skonfiguruj zakresy filtrów"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "Skonfiguruj podstawy swojej warstwy adnotacji."
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
-"Skonfiguruj ten pulpit nawigacyjny, aby osadzić go w zewnętrznej aplikacji webowej."
+"Skonfiguruj ten pulpit nawigacyjny, aby osadzić go w zewnętrznej "
+"aplikacji webowej."
 
 msgid "Configure your how you overlay is displayed here."
 msgstr "Skonfiguruj sposób wyświetlania nakładki tutaj."
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Pokaż hasło."
+
 #, fuzzy
 msgid "Confirm overwrite"
 msgstr "Potwierdź nadpisanie"
@@ -2991,6 +3212,9 @@ msgstr "Potwierdź nadpisanie"
 msgid "Confirm save"
 msgstr "Potwierdź zapis"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "Połącz"
 
@@ -3022,9 +3246,6 @@ msgstr "Połączenie nie powiodło się, sprawdź ustawienia połączenia"
 msgid "Connection failed, please check your connection settings."
 msgstr "Połączenie nie powiodło się, sprawdź ustawienia połączenia."
 
-msgid "Connection looks good!"
-msgstr "Połączenie wygląda dobrze!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "Format treści"
@@ -3061,28 +3282,27 @@ msgstr "Etykieta sterowania "
 msgid "Controls labeled "
 msgstr "Etykiety sterowania "
 
-
 msgid "Copied to clipboard!"
 msgstr "Skopiowano do schowka!"
 
 msgid "Copy"
 msgstr "Copier"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "Spokiuj wynik SELECT do schowka"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "Skopiuj i wklej uwioerzytelnienie JSON"
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "Skopiuj i wklej tutaj cały plik konta usługi .json"
-
 msgid "Copy link"
 msgstr "Skopiuj link"
 
-msgid "Copy message"
-msgstr "Skopiuj wiadomość"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Kopia %s"
@@ -3099,6 +3319,9 @@ msgstr "Skopiuj URL zapytania"
 msgid "Copy query link to your clipboard"
 msgstr "Skopiuj link do zapytania do schowka"
 
+msgid "Copy the current data"
+msgstr ""
+
 #, fuzzy
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr "Skopiuj identyfikator konta, z którym próbujesz się połączyć."
@@ -3116,6 +3339,10 @@ msgstr "Skopiuj do schowka"
 msgid "Copy to clipboard"
 msgstr "Skopiuj do schowka"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "Promień wewnętrzny"
+
 #, fuzzy
 msgid "Correlation"
 msgstr "Korelacja"
@@ -3146,6 +3373,9 @@ msgstr "Nie udało się załadować sterownika bazy danych: {}"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr "Nie udało się rozpoznać nazwy hosta: \"%(host)s\"."
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 #, fuzzy
 msgid "Count"
 msgstr "Liczba"
@@ -3196,8 +3426,8 @@ msgid ""
 "Create a dataset to begin visualizing your data as a chart or go to\n"
 "          SQL Lab to query your data."
 msgstr ""
-"Utwórz zestaw danych, aby rozpocząć wizualizację danych w formie wykresu, "
-"lub przejdź do SQL Lab, aby wykonać zapytanie."
+"Utwórz zestaw danych, aby rozpocząć wizualizację danych w formie wykresu,"
+" lub przejdź do SQL Lab, aby wykonać zapytanie."
 
 msgid "Create a new chart"
 msgstr "Utwórz nowy wykres"
@@ -3250,12 +3480,17 @@ msgstr "Tworzenie źródła danych i nowej karty"
 msgid "Creator"
 msgstr "Twórca"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 #, fuzzy
 msgid "Crimson"
 msgstr "Karmazynowy"
 
 msgid "Cross-filter will be applied to all of the charts that use this dataset."
-msgstr "Filtr krzyżowy zostanie zastosowany do wszystkich wykresów korzystających z tego zestawu danych."
+msgstr ""
+"Filtr krzyżowy zostanie zastosowany do wszystkich wykresów korzystających"
+" z tego zestawu danych."
 
 #, fuzzy
 msgid "Cross-filtering is not enabled for this dashboard."
@@ -3344,6 +3579,9 @@ msgstr "Pola niestandardowego SQL nie mogą zawierać podzapytań."
 msgid "Custom color palettes"
 msgstr "Niestandardowe palety kolorów"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "Niestandardowa data"
@@ -3368,7 +3606,9 @@ msgstr "Dostosuj metryki"
 msgid ""
 "Customize chart metrics or columns with currency symbols as prefixes or "
 "suffixes. Choose a symbol from dropdown or type your own."
-msgstr "Dostosuj metryki wykresu lub kolumny, dodając symbole waluty jako prefiksy lub sufiksy. Wybierz symbol z listy rozwijanej lub wpisz własny."
+msgstr ""
+"Dostosuj metryki wykresu lub kolumny, dodając symbole waluty jako "
+"prefiksy lub sufiksy. Wybierz symbol z listy rozwijanej lub wpisz własny."
 
 #, fuzzy
 msgid "Customize columns"
@@ -3380,9 +3620,6 @@ msgstr "Dostosuj źródło danych, filtry i układ."
 msgid "Cyclic dependency detected"
 msgstr "Wykryto zależność cykliczną"
 
-msgid "D3 Format"
-msgstr "Format D3"
-
 msgid "D3 format"
 msgstr "Format D3"
 
@@ -3392,7 +3629,9 @@ msgstr "Składnia formatu D3: https://github.com/d3/d3-format"
 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 "Format liczb D3 dla wartości między -1,0 a 1,0, przydatny, gdy chcesz mieć różną ilość znaczących cyfr dla małych i dużych liczb."
+msgstr ""
+"Format liczb D3 dla wartości między -1,0 a 1,0, przydatny, gdy chcesz "
+"mieć różną ilość znaczących cyfr dla małych i dużych liczb."
 
 msgid "D3 time format for datetime columns"
 msgstr "Format czasu D3 dla kolumn daty i czasu"
@@ -3438,10 +3677,29 @@ msgstr "Pulpit nawigacyjny"
 
 #, fuzzy, python-format
 msgid "Dashboard [%s] just got created and chart [%s] was added to it"
-msgstr "Pulpit nawigacyjny [%s] został właśnie utworzony, a wykres [%s] został do niego dodany."
+msgstr ""
+"Pulpit nawigacyjny [%s] został właśnie utworzony, a wykres [%s] został do"
+" niego dodany."
 
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
-msgstr "Pulpit nawigacyjny [{}] został właśnie utworzony, a wykres [{}] został do niego dodany."
+msgstr ""
+"Pulpit nawigacyjny [{}] został właśnie utworzony, a wykres [{}] został do"
+" niego dodany."
+
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "Nie można zaktualizować pulpitu nawigacyjnego."
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "Nie można zaktualizować pulpitu nawigacyjnego."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "Nie można zaktualizować pulpitu nawigacyjnego."
 
 msgid "Dashboard could not be deleted."
 msgstr "Nie można usunąć pulpitu nawigacyjnego."
@@ -3456,6 +3714,10 @@ msgstr "Pulpit nawigacyjny nie istnieje"
 msgid "Dashboard imported"
 msgstr "Pulpit nawigacyjny zaimportowany"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "Nie można zaktualizować pulpitu nawigacyjnego."
+
 msgid "Dashboard parameters are invalid."
 msgstr "Parametry pulpitu nawigacyjnego są nieprawidłowe."
 
@@ -3475,7 +3737,10 @@ msgid ""
 "          the filter section of each chart. Add temporal columns to the "
 "chart\n"
 "          filters to have this dashboard filter impact those charts."
-msgstr "Filtry zakresu czasu pulpitu nawigacyjnego dotyczą kolumn czasowych zdefiniowanych w sekcji filtrów każdego wykresu. Dodaj kolumny czasowe do filtrów wykresów, aby filtr pulpitu miał na nie wpływ."
+msgstr ""
+"Filtry zakresu czasu pulpitu nawigacyjnego dotyczą kolumn czasowych "
+"zdefiniowanych w sekcji filtrów każdego wykresu. Dodaj kolumny czasowe do"
+" filtrów wykresów, aby filtr pulpitu miał na nie wpływ."
 
 #, fuzzy
 msgid "Dashboard title"
@@ -3502,10 +3767,6 @@ msgstr "Przerywana"
 msgid "Data"
 msgstr "Dane"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "Zaimportowany zestaw danych"
-
 #, fuzzy
 msgid "Data Table"
 msgstr "Tabela danych"
@@ -3529,13 +3790,17 @@ msgid ""
 "Data could not be retrieved from the results backend. You need to re-run "
 "the original query."
 msgstr ""
-"Danych nie można było pobrać z zaplecza wyników. Musisz ponownie uruchomić "
-"oryginalne zapytanie."
+"Danych nie można było pobrać z zaplecza wyników. Musisz ponownie "
+"uruchomić oryginalne zapytanie."
 
 #, fuzzy, python-format
 msgid "Data for %s"
 msgstr "Dane dla %s"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Zaimportowany zestaw danych"
+
 msgid "Data preview"
 msgstr "Podgląd danych"
 
@@ -3588,8 +3853,8 @@ msgid ""
 "Database driver for importing maybe not installed. Visit the Superset "
 "documentation page for installation instructions: "
 msgstr ""
-"Sterownik bazy danych do importu może nie być zainstalowany. Odwiedź stronę "
-"dokumentacji Superset, aby uzyskać instrukcje instalacji: "
+"Sterownik bazy danych do importu może nie być zainstalowany. Odwiedź "
+"stronę dokumentacji Superset, aby uzyskać instrukcje instalacji: "
 
 msgid "Database error"
 msgstr "Błąd bazy danych"
@@ -3636,7 +3901,9 @@ msgid "Database upload file failed"
 msgstr "Nie udało się przesłać pliku do bazy danych"
 
 msgid "Database upload file failed, while saving metadata"
-msgstr "Przesyłanie pliku do bazy danych nie powiodło się podczas zapisywania metadanych."
+msgstr ""
+"Przesyłanie pliku do bazy danych nie powiodło się podczas zapisywania "
+"metadanych."
 
 msgid "Databases"
 msgstr "Bazy danych"
@@ -3701,15 +3968,8 @@ msgid ""
 "Datasets can be created from database tables or SQL queries. Select a "
 "database table to the left or "
 msgstr ""
-"Zestawy danych można tworzyć z tabel baz danych lub zapytań SQL. Wybierz tabelę bazy danych po lewej stronie lub "
-
-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 ""
-"Zestawy danych mogą mieć główną kolumnę czasową (main_dttm_col), ale mogą również mieć dodatkowe kolumny czasowe. Jeśli ten atrybut jest prawdziwy, filtry zastosowane do dodatkowych kolumn są także stosowane do głównej kolumny czasowej."
+"Zestawy danych można tworzyć z tabel baz danych lub zapytań SQL. Wybierz "
+"tabelę bazy danych po lewej stronie lub "
 
 #, fuzzy
 msgid "Datasets could not be deleted."
@@ -3750,14 +4010,12 @@ msgstr "Ciąg formatu daty"
 msgid "Date/Time"
 msgstr "Data/godzina"
 
-msgid "Datetime Format"
-msgstr "Format daty i godziny"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
 msgstr ""
-"Kolumna daty/godziny nie została podana jako część konfiguracji tabeli i jest wymagana dla tego typu wykresu."
+"Kolumna daty/godziny nie została podana jako część konfiguracji tabeli i "
+"jest wymagana dla tego typu wykresu."
 
 msgid "Datetime format"
 msgstr "Format daty i godziny"
@@ -3773,8 +4031,7 @@ msgid "Days %s"
 msgstr "Dni %s"
 
 msgid "Db engine did not return all queried columns"
-msgstr ""
-"Silnik bazy danych nie zwrócił wszystkich zapytanych kolumn."
+msgstr "Silnik bazy danych nie zwrócił wszystkich zapytanych kolumn."
 
 #, fuzzy
 msgid "Deactivate"
@@ -3783,13 +4040,12 @@ msgstr "Dezaktywuj"
 msgid "December"
 msgstr "Grudzień"
 
-msgid "Decides which column to sort the base axis by."
-msgstr "Określa, według której kolumny sortować podstawową oś."
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "Określa, według której miary sortować podstawową oś."
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "Znak dziesiętny"
 
 msgid "Deck.gl - 3D Grid"
@@ -3835,9 +4091,6 @@ msgstr "Zmniejszyć"
 msgid "Default Catalog"
 msgstr "Domyślny katalog"
 
-msgid "Default Endpoint"
-msgstr "Domyślny punkt końcowy"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "Domyślny schemat"
@@ -3845,10 +4098,11 @@ msgstr "Domyślny schemat"
 msgid "Default URL"
 msgstr "Domyślny URL"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
-"Domyślny URL, na który należy przekierować przy dostępie z listy zestawów "
-"danych"
 
 msgid "Default Value"
 msgstr "Domyślna wartość"
@@ -3872,9 +4126,6 @@ msgstr ""
 "Domyślna minimalna szerokość kolumny w pikselach. Rzeczywista szerokość "
 "może być większa, jeśli inne kolumny nie wymagają dużo miejsca."
 
-msgid "Default value is required"
-msgstr "Wymagana jest domyślna wartość"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 "Domyślna wartość musi być ustawiona, gdy zaznaczono opcję „Filtr ma "
@@ -3911,13 +4162,14 @@ msgid ""
 "array."
 msgstr ""
 "Zdefiniuj funkcję JavaScript, która przyjmuje tablicę danych używaną w "
-"wizualizacji i zwraca zmodyfikowaną wersję tej tablicy. Może to służyć do "
-"zmiany właściwości danych, filtrowania lub wzbogacania tablicy."
+"wizualizacji i zwraca zmodyfikowaną wersję tej tablicy. Może to służyć do"
+" zmiany właściwości danych, filtrowania lub wzbogacania tablicy."
 
+#, fuzzy
 msgid ""
 "Define contour layers. Isolines represent a collection of line segments "
-"that separate the area above and below a given threshold. Isobands "
-"represent a collection of polygons that fill the area containing values in"
+"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 ""
 "Zdefiniuj warstwy konturowe. Izolinie reprezentują zestaw odcinków linii "
@@ -3938,9 +4190,6 @@ msgstr ""
 "Definiuje funkcję ruchomego okna do zastosowania, współdziała z polem "
 "tekstowym [Okresy]."
 
-msgid "Defines how each series is broken down"
-msgstr "Określa, jak każda seria jest rozdzielana"
-
 msgid "Defines the grid size in pixels"
 msgstr "Określa rozmiar siatki w pikselach"
 
@@ -3962,20 +4211,21 @@ msgstr ""
 msgid ""
 "Defines the size of the rolling window function, relative to the time "
 "granularity selected"
-msgstr ""
-"Określa rozmiar funkcji ruchomego okna względem wybranej granulacji czasu."
+msgstr "Określa rozmiar funkcji ruchomego okna względem wybranej granulacji czasu."
 
 msgid ""
 "Defines the value that determines the boundary between different regions "
 "or levels in the data "
 msgstr ""
-"Określa wartość decydującą o granicy między różnymi obszarami lub poziomami w danych."
+"Określa wartość decydującą o granicy między różnymi obszarami lub "
+"poziomami w danych."
 
 msgid ""
 "Defines whether the step should appear at the beginning, middle or end "
 "between two data points"
 msgstr ""
-"Określa, czy krok powinien pojawiać się na początku, w środku lub na końcu między dwoma punktami danych."
+"Określa, czy krok powinien pojawiać się na początku, w środku lub na "
+"końcu między dwoma punktami danych."
 
 msgid "Delete"
 msgstr "Usuń"
@@ -4002,9 +4252,17 @@ msgstr "Usunąć zapytanie?"
 msgid "Delete Report?"
 msgstr "Usunąć raport?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "usuń"
+
 msgid "Delete Template?"
 msgstr "Usunąć szablon?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Usunąć zapytanie?"
+
 msgid "Delete all Really?"
 msgstr "Naprawdę wszystko usunąć?"
 
@@ -4023,12 +4281,20 @@ msgstr "Usuń raport e-mailowy"
 msgid "Delete query"
 msgstr "Usuń zapytanie"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "usuń"
+
 msgid "Delete template"
 msgstr "Usuń szablon"
 
 msgid "Delete this container and save to remove this message."
 msgstr "Usuń ten kontener i zapisz, aby usunąć tę wiadomość."
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Usuń zapytanie"
+
 #, fuzzy
 msgid "Deleted"
 msgstr "Usunięto"
@@ -4091,15 +4357,33 @@ msgstr[1] "Usunięto %(num)d zapisane zapytania"
 msgid "Deleted %s"
 msgstr "Usunięto %s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Usunięto: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Usunięto: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Usunięto: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Usunięto: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Usunięto: %s"
 
+#, fuzzy
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
-"Usunięcie karty spowoduje usunięcie całej jej zawartości. Możesz nadal cofnąć tę akcję za pomocą"
+"Usunięcie karty spowoduje usunięcie całej jej zawartości. Możesz nadal "
+"cofnąć tę akcję za pomocą"
 
 msgid "Delimited long & lat single column"
 msgstr "Kolumna z rozdzielonymi współrzędnymi długości i szerokości geograficznej"
@@ -4110,9 +4394,6 @@ msgstr "Separator"
 msgid "Delivery method"
 msgstr "Metoda dostawy"
 
-msgid "Demographics"
-msgstr "Demografia"
-
 #, fuzzy
 msgid "Density"
 msgstr "Gęstość"
@@ -4120,10 +4401,6 @@ msgstr "Gęstość"
 msgid "Dependent on"
 msgstr "Zależne od"
 
-#, fuzzy
-msgid "Deprecated"
-msgstr "Przestarzałe"
-
 msgid "Description"
 msgstr "Opis"
 
@@ -4153,7 +4430,8 @@ msgid ""
 "Determines whether or not this dashboard is visible in the list of all "
 "dashboards"
 msgstr ""
-"Określa, czy ten pulpit nawigacyjny jest widoczny na liście wszystkich pulpitów nawigacyjnych."
+"Określa, czy ten pulpit nawigacyjny jest widoczny na liście wszystkich "
+"pulpitów nawigacyjnych."
 
 #, fuzzy
 msgid "Diamond"
@@ -4189,7 +4467,10 @@ msgid ""
 "geographical data. Use dimensions to categorize, segment, and reveal the "
 "details in your data. Dimensions affect the level of detail in the view."
 msgstr ""
-"Wymiary zawierają wartości jakościowe, takie jak nazwy, daty lub dane geograficzne. Użyj wymiarów, aby kategoryzować, segmentować i ujawniać szczegóły w swoich danych. Wymiary wpływają na poziom szczegółowości widoku."
+"Wymiary zawierają wartości jakościowe, takie jak nazwy, daty lub dane "
+"geograficzne. Użyj wymiarów, aby kategoryzować, segmentować i ujawniać "
+"szczegóły w swoich danych. Wymiary wpływają na poziom szczegółowości "
+"widoku."
 
 msgid "Directed Force Layout"
 msgstr "Układ z wymuszeniem kierunkowym"
@@ -4206,7 +4487,9 @@ msgid ""
 "avoid browser performance issues when using  databases with very wide "
 "tables."
 msgstr ""
-"Wyłącz podgląd danych podczas pobierania metadanych tabel w SQL Lab. Przydatne do unikania problemów z wydajnością przeglądarki przy używaniu baz danych z bardzo szerokimi tabelami."
+"Wyłącz podgląd danych podczas pobierania metadanych tabel w SQL Lab. "
+"Przydatne do unikania problemów z wydajnością przeglądarki przy używaniu "
+"baz danych z bardzo szerokimi tabelami."
 
 #, fuzzy
 msgid "Disable drill to detail"
@@ -4227,10 +4510,6 @@ msgstr "Wyłącza funkcję przechodzenia do szczegółów dla tej bazy danych."
 msgid "Discard"
 msgstr "Odrzuć"
 
-#, fuzzy
-msgid "Display"
-msgstr "Wyświetl"
-
 msgid "Display Name"
 msgstr "Nazwa wyświetlana"
 
@@ -4238,12 +4517,20 @@ msgstr "Nazwa wyświetlana"
 msgid "Display all"
 msgstr "Wyświetl wszystko"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "Wyświetl total na poziomie kolumny"
+
 msgid "Display column level subtotal"
 msgstr "Wyświetl subtotal na poziomie kolumny"
 
 msgid "Display column level total"
 msgstr "Wyświetl total na poziomie kolumny"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Wyświetl total na poziomie kolumny"
+
 msgid "Display configuration"
 msgstr "Konfiguracja wyświetlania"
 
@@ -4251,14 +4538,16 @@ msgid ""
 "Display metrics side by side within each column, as opposed to each "
 "column being displayed side by side for each metric."
 msgstr ""
-"Wyświetl metryki obok siebie w każdej kolumnie, zamiast wyświetlać każdą kolumnę obok siebie dla każdej metryki."
+"Wyświetl metryki obok siebie w każdej kolumnie, zamiast wyświetlać każdą "
+"kolumnę obok siebie dla każdej metryki."
 
 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 ""
-"Wyświetlaj procenty w etykiecie i podpowiedzi jako procent całkowitej wartości, od pierwszego kroku leja lub od poprzedniego kroku w leju."
+"Wyświetlaj procenty w etykiecie i podpowiedzi jako procent całkowitej "
+"wartości, od pierwszego kroku leja lub od poprzedniego kroku w leju."
 
 msgid "Display row level subtotal"
 msgstr "Wyświetl subtotal na poziomie wiersza"
@@ -4267,8 +4556,8 @@ msgid "Display row level total"
 msgstr "Wyświetl total na poziomie wiersza"
 
 #, fuzzy
-msgid "Display settings"
-msgstr "Ustawienia wyświetlania"
+msgid "Display type icon"
+msgstr "ikona typu logicznego"
 
 msgid ""
 "Displays connections between entities in a graph structure. Useful for "
@@ -4276,7 +4565,10 @@ msgid ""
 " 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 ""
-"Wyświetla połączenia między jednostkami w strukturze grafu. Przydatne do mapowania relacji i wskazywania, które węzły są ważne w sieci. Wykresy mogą być skonfigurowane jako kierowane siłą lub krążyć. Jeśli Twoje dane mają komponent geoprzestrzenny, spróbuj wykresu Arc z deck.gl."
+"Wyświetla połączenia między jednostkami w strukturze grafu. Przydatne do "
+"mapowania relacji i wskazywania, które węzły są ważne w sieci. Wykresy "
+"mogą być skonfigurowane jako kierowane siłą lub krążyć. Jeśli Twoje dane "
+"mają komponent geoprzestrzenny, spróbuj wykresu Arc z deck.gl."
 
 #, fuzzy
 msgid "Distribute across"
@@ -4286,9 +4578,6 @@ msgstr "Rozdziel na"
 msgid "Distribution"
 msgstr "Rozkład"
 
-msgid "Distribution - Bar Chart"
-msgstr "Rozkład – Wykres słupkowy"
-
 msgid "Divider"
 msgstr "Separator"
 
@@ -4319,9 +4608,18 @@ msgstr "Pobierz jako obraz"
 msgid "Download as image"
 msgstr "Pobierz jako obraz"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "Pobierz jako CSV"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "Szkic"
 
@@ -4339,7 +4637,9 @@ msgid "Draw area under curves. Only applicable for line types."
 msgstr "Narysuj obszar pod krzywymi. Dotyczy tylko typów linii."
 
 msgid "Draw line from Pie to label when labels outside?"
-msgstr "Narysować linię od wykresu kołowego do etykiety, gdy etykiety są na zewnątrz?"
+msgstr ""
+"Narysować linię od wykresu kołowego do etykiety, gdy etykiety są na "
+"zewnątrz?"
 
 msgid "Draw split lines for minor axis ticks"
 msgstr "Narysuj linie podziału dla mniejszych kresek osi"
@@ -4367,17 +4667,23 @@ msgid "Drill to detail by"
 msgstr "Zagłęb się w szczegóły wg"
 
 msgid "Drill to detail by value is not yet supported for this chart type."
-msgstr "Zagłębianie się w szczegóły wg wartości nie jest jeszcze obsługiwane dla tego typu wykresu."
+msgstr ""
+"Zagłębianie się w szczegóły wg wartości nie jest jeszcze obsługiwane dla "
+"tego typu wykresu."
 
 msgid ""
 "Drill to detail is disabled because this chart does not group data by "
 "dimension value."
-msgstr "Zagłębianie się szczegóły jest wyłączone, ponieważ ten wykres nie grupuje danych według wartości wymiaru."
+msgstr ""
+"Zagłębianie się szczegóły jest wyłączone, ponieważ ten wykres nie grupuje"
+" danych według wartości wymiaru."
 
 msgid ""
 "Drill to detail is disabled for this database. Change the database "
 "settings to enable it."
-msgstr "Zagłębianie się w szczegóły jest wyłączone dla tej bazy danych. Zmień ustawienia bazy danych, aby je włączyć."
+msgstr ""
+"Zagłębianie się w szczegóły jest wyłączone dla tej bazy danych. Zmień "
+"ustawienia bazy danych, aby je włączyć."
 
 #, python-format
 msgid "Drill to detail: %s"
@@ -4414,12 +4720,22 @@ msgstr "Zduplikowane nazwy kolumn: %(columns)s"
 msgid ""
 "Duplicate column/metric labels: %(labels)s. Please make sure all columns "
 "and metrics have a unique label."
-msgstr "Zduplikowane etykiety kolumn/metryk: %(labels)s. Upewnij się, że wszystkie kolumny i metryki mają unikalne etykiety."
+msgstr ""
+"Zduplikowane etykiety kolumn/metryk: %(labels)s. Upewnij się, że "
+"wszystkie kolumny i metryki mają unikalne etykiety."
 
 #, fuzzy
 msgid "Duplicate dataset"
 msgstr "Duplikuj zestaw danych"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Duplikuj"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "Zduplikowane nazwy kolumn: %(columns)s"
+
 msgid "Duplicate tab"
 msgstr "Duplikuj kartę"
 
@@ -4432,20 +4748,10 @@ msgid ""
 " 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 ""
-"Czas trwania (w sekundach) limitu pamięci podręcznej dla wykresów tej bazy danych. Limit 0 oznacza, że pamięć podręczna nigdy nie wygasa, a -1 omija pamięć podręczną. Uwaga: domyślnie używany jest globalny limit, jeśli nie określono inaczej."
-
-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 ""
-"Czas trwania (w sekundach) limitu pamięci podręcznej dla wykresów tej bazy danych. Limit 0 oznacza, że pamięć podręczna nigdy nie wygasa. Uwaga: domyślnie używany jest globalny limit, jeśli nie określono inaczej."
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-msgstr ""
-"Czas trwania (w sekundach) limitu pamięci podręcznej dla tego wykresu. Uwaga: domyślnie używany jest limit dla źródła danych/tabeli, jeśli nie określono inaczej."
+"Czas trwania (w sekundach) limitu pamięci podręcznej dla wykresów tej "
+"bazy danych. Limit 0 oznacza, że pamięć podręczna nigdy nie wygasa, a -1 "
+"omija pamięć podręczną. Uwaga: domyślnie używany jest globalny limit, "
+"jeśli nie określono inaczej."
 
 #, fuzzy
 msgid ""
@@ -4453,20 +4759,17 @@ msgid ""
 " bypass the cache. Note this defaults to the dataset's timeout if "
 "undefined."
 msgstr ""
-"Czas trwania (w sekundach) limitu pamięci podręcznej dla tego wykresu. Ustaw -1, aby ominąć pamięć podręczną. Uwaga: domyślnie używany jest limit zestawu danych, jeśli nie określono inaczej."
-
-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 ""
-"Czas trwania (w sekundach) limitu pamięci podręcznej dla tej tabeli. Limit 0 oznacza, że pamięć podręczna nigdy nie wygasa. Uwaga: domyślnie używany jest limit bazy danych, jeśli nie określono inaczej."
+"Czas trwania (w sekundach) limitu pamięci podręcznej dla tego wykresu. "
+"Ustaw -1, aby ominąć pamięć podręczną. Uwaga: domyślnie używany jest "
+"limit zestawu danych, jeśli nie określono inaczej."
 
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
 msgstr ""
-"Czas trwania (w sekundach) limitu pamięci podręcznej dla metadanych schematów tej bazy danych. Jeśli nie określono, pamięć podręczna nigdy nie wygasa."
+"Czas trwania (w sekundach) limitu pamięci podręcznej dla metadanych "
+"schematów tej bazy danych. Jeśli nie określono, pamięć podręczna nigdy "
+"nie wygasa."
 
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for tables of this "
@@ -4482,6 +4785,10 @@ msgstr "Czas trwania w ms (1.40008 => 1ms 400µs 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "Czas trwania w ms (100.40008 => 100ms 400µs 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "Czas trwania w ms (66000 => 1m 6s)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "Czas trwania w ms (66000 => 1m 6s)"
 
@@ -4506,10 +4813,6 @@ msgstr "KONIEC (WYŁĄCZNY)"
 msgid "ERROR"
 msgstr "BŁĄD"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "BŁĄD: %s"
-
 msgid "Edge length"
 msgstr "Długość krawędzi"
 
@@ -4536,31 +4839,20 @@ msgstr "Edytuj CSS"
 msgid "Edit CSS template properties"
 msgstr "Edytuj właściwości szablonu CSS"
 
-msgid "Edit Chart"
-msgstr "Edytuj wykres"
-
 #, fuzzy
 msgid "Edit Chart Properties"
 msgstr "Edytuj właściwości wykresu"
 
-msgid "Edit Column"
-msgstr "Edytuj kolumnę"
-
 msgid "Edit Dashboard"
 msgstr "Edytuj pulpit nawigacyjny"
 
-msgid "Edit Database"
-msgstr "Edytuj bazę danych"
-
-msgid "Edit Dataset"
+#, fuzzy
+msgid "Edit Dataset "
 msgstr "Edytuj zestaw danych"
 
 msgid "Edit Log"
 msgstr "Edytuj dziennik"
 
-msgid "Edit Metric"
-msgstr "Edytuj metrykę"
-
 msgid "Edit Plugin"
 msgstr "Edytuj wtyczkę"
 
@@ -4568,17 +4860,22 @@ msgstr "Edytuj wtyczkę"
 msgid "Edit Report"
 msgstr "Edytuj raport"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "tryb edycji"
+
 #, fuzzy
 msgid "Edit Rule"
 msgstr "Edytuj regułę"
 
-msgid "Edit Table"
-msgstr "Edytuj tabelę"
-
 #, fuzzy
 msgid "Edit Tag"
 msgstr "Edytuj znacznik"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Edytuj zapytanie"
+
 msgid "Edit annotation"
 msgstr "Edytuj adnotację"
 
@@ -4616,6 +4913,10 @@ msgstr "Edytuj właściwości"
 msgid "Edit query"
 msgstr "Edytuj zapytanie"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "tryb edycji"
+
 msgid "Edit template"
 msgstr "Edytuj szablon"
 
@@ -4628,6 +4929,10 @@ msgstr "Edytuj pulpit nawigacyjny"
 msgid "Edit time range"
 msgstr "Edytuj zakres czasu"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Edytuj zapytanie"
+
 msgid "Edited"
 msgstr "Edytowano"
 
@@ -4656,6 +4961,14 @@ msgstr "Nazwa użytkownika lub hasło są nieprawidłowe."
 msgid "Elevation"
 msgstr "Elewacja"
 
+#, fuzzy
+msgid "Email"
+msgstr "Szczegóły"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "Wartość jest wymagana"
+
 msgid "Email reports active"
 msgstr "Raporty e-mail aktywne"
 
@@ -4674,6 +4987,10 @@ msgstr "Kod osadzania"
 msgid "Embed dashboard"
 msgstr "Osadź pulpit nawigacyjny"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "Nie można usunąć pulpitu nawigacyjnego."
+
 msgid "Embedding deactivated."
 msgstr "Osadzanie zostało dezaktywowane."
 
@@ -4684,9 +5001,6 @@ msgstr "Emituj zdarzenia filtrów"
 msgid "Emphasis"
 msgstr "Podkreślenie"
 
-msgid "Employment and education"
-msgstr "Zatrudnienie i edukacja"
-
 msgid "Empty circle"
 msgstr "Puste koło"
 
@@ -4710,11 +5024,8 @@ msgstr "Pusty wiersz"
 #, fuzzy
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr ""
-"Włącz opcję „Zezwalaj na przesyłanie plików do bazy danych” w ustawieniach "
-"dowolnej bazy danych."
-
-msgid "Enable Filter Select"
-msgstr "Włącz selekcję filtrów"
+"Włącz opcję „Zezwalaj na przesyłanie plików do bazy danych” w "
+"ustawieniach dowolnej bazy danych."
 
 #, fuzzy
 msgid "Enable cross-filtering"
@@ -4752,8 +5063,8 @@ msgid ""
 "                                        please consider filtering those "
 "out"
 msgstr ""
-"Napotkano nieprawidłowy wpis NULL przestrzenny, rozważ przefiltrowanie tych "
-"wartości."
+"Napotkano nieprawidłowy wpis NULL przestrzenny, rozważ przefiltrowanie "
+"tych wartości."
 
 msgid "End"
 msgstr "Koniec"
@@ -4791,8 +5102,8 @@ msgid ""
 "Engine spec \"InvalidEngine\" does not support being configured via "
 "individual parameters."
 msgstr ""
-"Specyfikacja silnika „InvalidEngine” nie obsługuje konfiguracji za pomocą "
-"parametrów indywidualnych."
+"Specyfikacja silnika „InvalidEngine” nie obsługuje konfiguracji za pomocą"
+" parametrów indywidualnych."
 
 msgid "Enter CA_BUNDLE"
 msgstr "Wprowadź CA_BUNDLE"
@@ -4825,12 +5136,25 @@ msgstr "Wprowadź nazwę raportu"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "Wprowadź wymagane dane uwierzytelniające dla %(dbModelName)s"
 
-msgid "Entity"
-msgstr "Encja"
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Wprowadź nazwę alertu"
 
 #, fuzzy
-msgid "Entity ID"
-msgstr "ID encji"
+msgid "Enter the user's last name"
+msgstr "Wprowadź nazwę alertu"
+
+msgid "Enter the user's username"
+msgstr ""
+
+msgid "Entity"
+msgstr "Encja"
 
 msgid "Equal Date Sizes"
 msgstr "Równe rozmiary dat"
@@ -4845,7 +5169,16 @@ msgstr "Błąd"
 #, fuzzy
 msgid "Error Fetching Tagged Objects"
 msgstr ""
-"Przepraszamy, wystąpił błąd podczas pobierania informacji z tej bazy danych: %s"
+"Przepraszamy, wystąpił błąd podczas pobierania informacji z tej bazy "
+"danych: %s"
+
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Wystąpił błąd podczas pobierania danych: %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Wystąpił błąd podczas zapisywania zestawu danych"
 
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
@@ -4861,16 +5194,20 @@ msgstr "Błąd w wyrażeniu jinja w klauzuli WHERE: %(msg)s"
 
 #, python-format
 msgid "Error in jinja expression in fetch values predicate: %(msg)s"
-msgstr ""
-"Błąd w wyrażeniu jinja w predykacie pobierania wartości: %(msg)s"
+msgstr "Błąd w wyrażeniu jinja w predykacie pobierania wartości: %(msg)s"
 
 msgid "Error loading chart datasources. Filters may not work correctly."
 msgstr ""
-"Błąd podczas ładowania źródeł danych wykresu. Filtry mogą nie działać poprawnie."
+"Błąd podczas ładowania źródeł danych wykresu. Filtry mogą nie działać "
+"poprawnie."
 
 msgid "Error message"
 msgstr "Komunikat o błędzie"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "ciemny błąd"
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "Wystąpił błąd podczas odczytu pliku CSV"
@@ -4887,6 +5224,22 @@ msgstr "Błąd podczas odczytu pliku Excel"
 msgid "Error saving dataset"
 msgstr "Wystąpił błąd podczas zapisywania zestawu danych"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Wystąpił błąd podczas zapisywania zestawu danych"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Wystąpił błąd podczas pobierania wykresów"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Wystąpił błąd podczas pobierania wykresów"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Wystąpił błąd podczas pobierania wykresów"
+
 #, fuzzy
 msgid "Error while fetching charts"
 msgstr "Wystąpił błąd podczas pobierania wykresów"
@@ -4895,10 +5248,29 @@ msgstr "Wystąpił błąd podczas pobierania wykresów"
 msgid "Error while fetching data: %s"
 msgstr "Wystąpił błąd podczas pobierania danych: %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Wystąpił błąd podczas pobierania wykresów"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Wystąpił błąd podczas pobierania wykresów"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Wystąpił błąd podczas pobierania wykresów"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
-msgstr ""
-"Błąd podczas renderowania zapytania wirtualnego zestawu danych: %(msg)s"
+msgstr "Błąd podczas renderowania zapytania wirtualnego zestawu danych: %(msg)s"
+
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Wystąpił błąd podczas pobierania wykresów"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Wystąpił błąd podczas pobierania wykresów"
 
 #, python-format
 msgid "Error: %(error)s"
@@ -4925,17 +5297,6 @@ msgstr "Szacuj koszt przed uruchomieniem zapytania"
 msgid "Event"
 msgstr "Zdarzenie"
 
-#, fuzzy
-msgid "Event Flow"
-msgstr "Przepływ zdarzeń"
-
-#, fuzzy
-msgid "Event Names"
-msgstr "Nazwy zdarzeń"
-
-msgid "Event definition"
-msgstr "Definicja zdarzenia"
-
 msgid "Event flow"
 msgstr "Przepływ zdarzeń"
 
@@ -4958,13 +5319,13 @@ msgstr "Przykład"
 msgid "Examples"
 msgstr "Przykłady"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "Przesyłanie pliku CSV"
-
 msgid "Excel file format cannot be determined"
 msgstr "Nie można określić formatu pliku Excel"
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "Przesyłanie pliku CSV"
+
 #, fuzzy
 msgid "Exclude selected values"
 msgstr "Wyklucz wybrane wartości"
@@ -5019,8 +5380,7 @@ msgid ""
 "        Example: '2x+5'"
 msgstr ""
 "Oczekuje formuły z zależnym parametrem czasowym 'x'\n"
-"        w milisekundach od epoki. mathjs jest używane do oceny "
-"formuł.\n"
+"        w milisekundach od epoki. mathjs jest używane do oceny formuł.\n"
 "        Przykład: '2x+5'"
 
 msgid "Experimental"
@@ -5061,12 +5421,6 @@ msgstr "Eksportuj do PDF"
 msgid "Export to Pivoted .CSV"
 msgstr "Eksportuj do .CSV z pivotem"
 
-msgid "Export to YAML"
-msgstr "Eksportuj do YAML"
-
-msgid "Export to YAML?"
-msgstr "Eksportować do YAML?"
-
 #, fuzzy
 msgid "Export to full .CSV"
 msgstr "Eksportuj do pełnego .CSV"
@@ -5087,11 +5441,9 @@ msgstr "Udostępnij bazę danych w SQL Lab"
 msgid "Expose in SQL Lab"
 msgstr "Udostępnij w SQL Lab"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Udostępnij tę bazę danych w SQL Lab"
-
-msgid "Expression"
-msgstr "Wyrażenie"
+#, fuzzy
+msgid "Extent"
+msgstr "niedawny"
 
 msgid "Extra"
 msgstr "Dodatkowe"
@@ -5112,16 +5464,11 @@ msgid ""
 " \"details\": \"This table is the source of truth.\" }, "
 "\"warning_markdown\": \"This is a warning.\" }`."
 msgstr ""
-"Dodatkowe dane do określenia metadanych tabeli. "
-"Obecnie obsługiwane są metadane w formacie: `{ \"certification\": { "
-"\"certified_by\": \"Zespół Platformy Danych\", "
-"\"details\": \"Ta tabela jest źródłem prawdy.\" }, "
+"Dodatkowe dane do określenia metadanych tabeli. Obecnie obsługiwane są "
+"metadane w formacie: `{ \"certification\": { \"certified_by\": \"Zespół "
+"Platformy Danych\", \"details\": \"Ta tabela jest źródłem prawdy.\" }, "
 "\"warning_markdown\": \"To jest ostrzeżenie.\" }`."
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "Dodatkowe pole nie może zostać zdekodowane przez JSON. %(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "Dodatkowe parametry do użycia w zapytaniach szablonów Jinja"
 
@@ -5144,6 +5491,10 @@ msgstr "Ekstrudowany"
 msgid "FEB"
 msgstr "LUT"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Edytuj zestaw danych"
+
 msgid "FRI"
 msgstr "PIĄ"
 
@@ -5154,16 +5505,15 @@ msgstr "Czynnik"
 msgid "Factor to multiply the metric by"
 msgstr "Czynnik, przez który mnoży się metrykę"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "Niepowodzenie"
 
 msgid "Failed at retrieving results"
 msgstr "Nie udało się pobrać wyników"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "Nie udało się zatrzymać zapytania. %s"
-
 msgid "Failed to create report"
 msgstr "Nie udało się stworzyć raportu"
 
@@ -5194,6 +5544,10 @@ msgstr "Nie udało się zapisać zakresu filtrów krzyżowych"
 msgid "Failed to start remote query on a worker."
 msgstr "Nie udało się rozpocząć zapytania zdalnego na pracowniku."
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "Nie udało się zatrzymać zapytania. %s"
+
 #, fuzzy
 msgid "Failed to tag items"
 msgstr "Nie udało się oznaczyć przedmiotów"
@@ -5218,9 +5572,6 @@ msgstr "Wyróżnione palety kolorów"
 msgid "February"
 msgstr "Luty"
 
-msgid "Fetch Values Predicate"
-msgstr "Predykat pobierania wartości"
-
 msgid "Fetch data preview"
 msgstr "Pobierz podgląd danych"
 
@@ -5246,16 +5597,13 @@ msgstr "Pole jest wymagane"
 msgid "File"
 msgstr "Plik"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "Ustawienia filtru"
-
 #, fuzzy
 msgid "File extension is not allowed."
 msgstr "Rozszerzenie pliku nie jest dozwolone."
 
-msgid "File size exceeds the maximum allowed size."
-msgstr "Rozmiar pliku przekracza maksymalny dozwolony rozmiar."
+#, fuzzy
+msgid "File settings"
+msgstr "Ustawienia filtru"
 
 #, fuzzy
 msgid "File upload"
@@ -5306,7 +5654,9 @@ msgid "Filter name"
 msgstr "Nazwa filtra"
 
 msgid "Filter only displays values relevant to selections made in other filters."
-msgstr "Filtr wyświetla tylko wartości istotne dla wyborów dokonanych w innych filtrach."
+msgstr ""
+"Filtr wyświetla tylko wartości istotne dla wyborów dokonanych w innych "
+"filtrach."
 
 msgid "Filter results"
 msgstr "Filtruj wyniki"
@@ -5326,9 +5676,6 @@ msgstr "Lista wartości filtra nie może być pusta"
 msgid "Filter your charts"
 msgstr "Filtruj swoje wykresy"
 
-msgid "Filterable"
-msgstr "Możliwe do filtrowania"
-
 msgid "Filters"
 msgstr "Filtry"
 
@@ -5341,6 +5688,16 @@ msgstr "Filtry według miar"
 msgid "Filters for comparison must have a value"
 msgstr "Filtry porównawcze muszą mieć wartość"
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "`row_limit` musi być większe lub równe 0"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "Filtry poza zakresem (%d)"
@@ -5357,8 +5714,8 @@ msgid ""
 msgstr ""
 "Filtry z tą samą kluczową grupą są łączone za pomocą OR w ramach grupy, "
 "natomiast różne grupy filtrów są łączone za pomocą AND. Nieokreślone "
-"klucze grup są traktowane jako unikalne grupy, czyli nie są grupowane. "
-"Na przykład, jeśli tabela ma trzy filtry, z których dwa są dla działów "
+"klucze grup są traktowane jako unikalne grupy, czyli nie są grupowane. Na"
+" przykład, jeśli tabela ma trzy filtry, z których dwa są dla działów "
 "Finanse i Marketing (klucz grupy = 'department'), a jeden odnosi się do "
 "regionu Europa (klucz grupy = 'region'), klauzula filtra zastosowałaby "
 "filtr (department = 'Finance' OR department = 'Marketing') AND (region = "
@@ -5374,6 +5731,14 @@ msgstr "Zakończ"
 msgid "First"
 msgstr "Pierwszy"
 
+#, fuzzy
+msgid "First name"
+msgstr "Nazwa wykresu"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "Nazwa jest wymagana"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5406,7 +5771,9 @@ msgid "Font size"
 msgstr "Rozmiar czcionki"
 
 msgid "Font size for axis labels, detail value and other text elements"
-msgstr "Rozmiar czcionki dla etykiet osi, wartości szczegółowych i innych elementów tekstu"
+msgstr ""
+"Rozmiar czcionki dla etykiet osi, wartości szczegółowych i innych "
+"elementów tekstu"
 
 msgid "Font size for the biggest value in the list"
 msgstr "Rozmiar czcionki dla największej wartości na liście"
@@ -5469,6 +5836,10 @@ msgstr "Wymuś format daty"
 msgid "Force refresh"
 msgstr "Wymuś odświeżenie"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Wymuś odświeżenie listy schematów"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "Wymuś odświeżenie listy katalogów"
@@ -5492,13 +5863,13 @@ msgstr "Zielony leśny"
 
 msgid "Form data not found in cache, reverting to chart metadata."
 msgstr ""
-"Dane formularza nie zostały znalezione w pamięci podręcznej, "
-"przywracanie metadanych wykresu."
+"Dane formularza nie zostały znalezione w pamięci podręcznej, przywracanie"
+" metadanych wykresu."
 
 msgid "Form data not found in cache, reverting to dataset metadata."
 msgstr ""
-"Dane formularza nie zostały znalezione w pamięci podręcznej, "
-"przywracanie metadanych zestawu danych."
+"Dane formularza nie zostały znalezione w pamięci podręcznej, przywracanie"
+" metadanych zestawu danych."
 
 #, fuzzy
 msgid "Format SQL"
@@ -5509,8 +5880,8 @@ msgid ""
 "represents a new line. ECharts compatibility:\n"
 "{a} (series), {b} (name), {c} (value), {d} (percentage)"
 msgstr ""
-"Formatowanie etykiet danych. Użyj zmiennych: {name}, {value}, {percent}. \\n "
-"reprezentuje nową linię. Kompatybilność z ECharts:\n"
+"Formatowanie etykiet danych. Użyj zmiennych: {name}, {value}, {percent}. "
+"\\n reprezentuje nową linię. Kompatybilność z ECharts:\n"
 "{a} (seria), {b} (nazwa), {c} (wartość), {d} (procent)"
 
 msgid "Formatted CSV attached in email"
@@ -5609,6 +5980,10 @@ msgstr "Ustawienia GeoJson"
 msgid "Geohash"
 msgstr "Geohash"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Pusta kolumna"
+
 msgid "Get the last date by the date unit."
 msgstr "Uzyskaj ostatnią datę według jednostki czasu."
 
@@ -5619,8 +5994,7 @@ msgid "Give access to multiple catalogs in a single database connection."
 msgstr "Udziel dostępu do wielu katalogów w jednym połączeniu z bazą danych."
 
 msgid "Go to the edit mode to configure the dashboard and add charts"
-msgstr ""
-"Przejdź do trybu edycji, aby skonfigurować pulpit i dodać wykresy."
+msgstr "Przejdź do trybu edycji, aby skonfigurować pulpit i dodać wykresy."
 
 msgid "Gold"
 msgstr "Złoty"
@@ -5673,9 +6047,6 @@ msgstr "Klucz grupy"
 msgid "Group by"
 msgstr "Grupuj według"
 
-msgid "Groupable"
-msgstr "Możliwość grupowania"
-
 msgid "Guest user cannot modify chart payload"
 msgstr "Gość nie może modyfikować zawartości wykresu"
 
@@ -5694,13 +6065,6 @@ msgstr "Szablon Handlebars"
 msgid "Hard value bounds applied for color coding."
 msgstr "Stosowane są stałe granice wartości dla kodowania kolorami."
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-"Stałe granice wartości stosowane do kodowania kolorami. Dotyczy to tylko "
-"przypadków, gdy normalizacja dotyczy całej mapy cieplnej."
-
 #, fuzzy
 msgid "Has created by"
 msgstr "Zostało utworzone przez"
@@ -5708,9 +6072,6 @@ msgstr "Zostało utworzone przez"
 msgid "Header"
 msgstr "Nagłówek"
 
-msgid "Header Row"
-msgstr "Wiersz nagłówka"
-
 #, fuzzy
 msgid "Header row"
 msgstr "Wiersz nagłówka"
@@ -5718,19 +6079,16 @@ msgstr "Wiersz nagłówka"
 msgid "Heatmap"
 msgstr "Mapa cieplna"
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "Mapa cieplna (starsza wersja)"
-
-msgid "Heatmap Options"
-msgstr "Opcje mapy cieplnej"
-
 msgid "Height"
 msgstr "Wysokość"
 
 msgid "Height of the sparkline"
 msgstr "Wysokość wykresu liniowego"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Kolumna czasu"
+
 #, fuzzy
 msgid "Hide Line"
 msgstr "Ukryj linię"
@@ -5760,10 +6118,6 @@ msgstr "Hierarchia"
 msgid "Histogram"
 msgstr "Histogram"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "Histogram (starsza wersja)"
-
 msgid "Home"
 msgstr "Strona główna"
 
@@ -5815,8 +6169,8 @@ msgid ""
 "change; or as the ratio between series and time shifts."
 msgstr ""
 "Jak wyświetlać przesunięcia czasowe: jako pojedyncze linie; jako różnicę "
-"między główną serią czasową a każdym przesunięciem; jako procentową zmianę; "
-"lub jako stosunek między seriami a przesunięciami czasowymi."
+"między główną serią czasową a każdym przesunięciem; jako procentową "
+"zmianę; lub jako stosunek między seriami a przesunięciami czasowymi."
 
 msgid "Huge"
 msgstr "Ogromny"
@@ -5843,39 +6197,29 @@ msgid ""
 msgstr ""
 "Jeśli Presto lub Trino, wszystkie zapytania w SQL Lab będą wykonywane "
 "jako aktualnie zalogowany użytkownik, który musi mieć uprawnienia do ich "
-"uruchomienia. Jeśli Hive i hive.server2.enable.doAs są włączone, zapytania "
-"będą uruchamiane jako konto serwisowe, ale z podszywaniem się pod "
-"aktualnie zalogowanego użytkownika za pomocą właściwości "
-"hive.server2.proxy.user."
-
-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.<br/>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 ""
-"Jeśli Presto, wszystkie zapytania w SQL Lab będą wykonywane jako "
-"aktualnie zalogowany użytkownik, który musi mieć uprawnienia do ich "
-"uruchomienia.<br/>Jeśli Hive i hive.server2.enable.doAs są włączone, "
+"uruchomienia. Jeśli Hive i hive.server2.enable.doAs są włączone, "
 "zapytania będą uruchamiane jako konto serwisowe, ale z podszywaniem się "
 "pod aktualnie zalogowanego użytkownika za pomocą właściwości "
 "hive.server2.proxy.user."
 
-#, fuzzy
-msgid "If Table Already Exists"
-msgstr "Jeśli tabela już istnieje"
-
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr "Jeśli określono metrykę, sortowanie będzie oparte na jej wartości."
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
-msgstr "Jeśli włączone, sterowanie sortuje wyniki/wartości malejąco, w przeciwnym razie rosnąco."
+msgstr ""
+"Jeśli włączone, sterowanie sortuje wyniki/wartości malejąco, w przeciwnym"
+" razie rosnąco."
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr "Jeśli zaznaczone, ustaw schematy dozwolone do przesyłania plików CSV w sekcji Dodatkowe."
+#, fuzzy
+msgid "If table already exists"
+msgstr "Etykieta już istnieje"
 
 #, fuzzy
 msgid "Ignore cache when generating report"
@@ -5894,10 +6238,9 @@ msgid "Image download failed, please refresh and try again."
 msgstr "Pobieranie obrazu nie powiodło się, odśwież i spróbuj ponownie."
 
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
-msgstr "Podszywanie się pod zalogowanego użytkownika (Presto, Trino, Drill, Hive, i GSheets)"
-
-msgid "Impersonate the logged on user"
-msgstr "Podszyj się pod zalogowanego użytkownika"
+msgstr ""
+"Podszywanie się pod zalogowanego użytkownika (Presto, Trino, Drill, Hive,"
+" i GSheets)"
 
 msgid "Import"
 msgstr "Importuj"
@@ -5909,9 +6252,6 @@ msgstr "Importuj %s"
 msgid "Import Dashboard(s)"
 msgstr "Importuj dashboard(y)"
 
-msgid "Import a table definition"
-msgstr "Importuj definicję tabeli"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "Import wykresu nie powiódł się z nieznanego powodu."
 
@@ -5943,17 +6283,15 @@ msgstr "Importuj zapytania"
 msgid "Import saved query failed for an unknown reason."
 msgstr "Import zapisanego zapytania nie powiódł się z nieznanego powodu."
 
-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 ""
-"Ważne! Wybierz tę opcję, jeśli tabela nie jest jeszcze posortowana według identyfikatora jednostki. "
-"W przeciwnym razie nie ma gwarancji, że wszystkie zdarzenia dla każdej jednostki zostaną zwrócone."
-
 #, fuzzy
 msgid "In"
 msgstr "W"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "Uwzględnij serię"
 
@@ -5979,17 +6317,18 @@ msgstr "Zwiększ"
 msgid "Index"
 msgstr "Indeks"
 
-msgid "Index Column"
-msgstr "Kolumna indeksu"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "Etykieta indeksu"
+msgid "Index column"
+msgstr "Kolumna linii"
 
 #, fuzzy
 msgid "Index label"
 msgstr "Etykieta indeksu"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Pokaż klucze i indeksy (%s)"
+
 msgid "Info"
 msgstr "Informacje"
 
@@ -6008,6 +6347,13 @@ msgstr "Wprowadź niestandardową szerokość w pikselach"
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr "Pole wejściowe obsługuje niestandardowy obrót, np. 30 dla 30°"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "Ukryj warstwę"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "Intensywność"
 
@@ -6038,30 +6384,44 @@ msgstr "Kolumna początku interwału"
 msgid "Intervals"
 msgstr "Interwały"
 
-msgid "Intesity"
-msgstr "Intensywność"
-
-msgid "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'."
-msgstr "Nieprawidłowy ciąg połączenia: Oczekiwany ciąg w formacie 'ocient://user:pass@host:port/database'."
+msgid ""
+"Invalid Connection String: Expecting String of the form "
+"'ocient://user:pass@host:port/database'."
+msgstr ""
+"Nieprawidłowy ciąg połączenia: Oczekiwany ciąg w formacie "
+"'ocient://user:pass@host:port/database'."
 
 msgid "Invalid JSON"
 msgstr "Nieprawidłowy JSON"
 
+#, python-format
 msgid "Invalid advanced data type: %(advanced_data_type)s"
 msgstr "Nieprawidłowy zaawansowany typ danych: %(advanced_data_type)s"
 
 msgid "Invalid certificate"
 msgstr "Nieprawidłowy certyfikat"
 
-msgid "Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name"
-msgstr "Nieprawidłowy ciąg połączenia. Prawidłowy ciąg zwykle ma format: backend+driver://user:password@database-host/database-name"
+msgid ""
+"Invalid connection string, a valid string usually follows: "
+"backend+driver://user:password@database-host/database-name"
+msgstr ""
+"Nieprawidłowy ciąg połączenia. Prawidłowy ciąg zwykle ma format: "
+"backend+driver://user:password@database-host/database-name"
 
-msgid "Invalid connection string, a valid string usually follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'<p>Example:'postgresql://user:password@your-postgres-db/database'</p>"
-msgstr "Nieprawidłowy ciąg połączenia. Prawidłowy ciąg zwykle ma format: 'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'<p>Przykład: 'postgresql://user:password@your-postgres-db/database'</p>"
+msgid ""
+"Invalid connection string, a valid string usually "
+"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-"
+"NAME'<p>Example:'postgresql://user:password@your-postgres-"
+"db/database'</p>"
+msgstr ""
+"Nieprawidłowy ciąg połączenia. Prawidłowy ciąg zwykle ma format: "
+"'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'<p>Przykład: "
+"'postgresql://user:password@your-postgres-db/database'</p>"
 
 msgid "Invalid cron expression"
 msgstr "Nieprawidłowe wyrażenie CRON"
 
+#, python-format
 msgid "Invalid cumulative operator: %(operator)s"
 msgstr "Nieprawidłowy operator kumulacyjny: %(operator)s"
 
@@ -6071,6 +6431,10 @@ msgstr "Nieprawidłowy kod waluty w zapisanych metrykach"
 msgid "Invalid date/timestamp format"
 msgstr "Nieprawidłowy format daty/znacznika czasu"
 
+msgid "Invalid executor type"
+msgstr ""
+
+#, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "Nieprawidłowy typ operacji filtra: %(op)s"
 
@@ -6089,33 +6453,41 @@ msgstr "Nieprawidłowa konfiguracja szerokości/długości geograficznej."
 msgid "Invalid longitude/latitude"
 msgstr "Nieprawidłowa długość/szerokość geograficzna"
 
+#, python-format
 msgid "Invalid metric object: %(metric)s"
 msgstr "Nieprawidłowy obiekt miary: %(metric)s"
 
+#, python-format
 msgid "Invalid numpy function: %(operator)s"
 msgstr "Nieprawidłowa funkcja numpy: %(operator)s"
 
+#, python-format
 msgid "Invalid options for %(rolling_type)s: %(options)s"
 msgstr "Nieprawidłowe opcje dla %(rolling_type)s: %(options)s"
 
 msgid "Invalid permalink key"
 msgstr "Nieprawidłowy klucz trwałego łącza"
 
+#, python-format
 msgid "Invalid reference to column: \"%(column)s\""
 msgstr "Nieprawidłowe odwołanie do kolumny: \"%(column)s\""
 
+#, python-format
 msgid "Invalid result type: %(result_type)s"
 msgstr "Nieprawidłowy typ wyniku: %(result_type)s"
 
+#, python-format
 msgid "Invalid rolling_type: %(type)s"
 msgstr "Nieprawidłowy rolling_type: %(type)s"
 
+#, python-format
 msgid "Invalid spatial point encountered: %(latlong)s"
 msgstr "Napotkano nieprawidłowy punkt przestrzenny: %(latlong)s"
 
 msgid "Invalid state."
 msgstr "Nieprawidłowy stan."
 
+#, python-format
 msgid "Invalid tab ids: %s(tab_ids)"
 msgstr "Nieprawidłowe identyfikatory kart: %s(tab_ids)"
 
@@ -6125,6 +6497,10 @@ msgstr "Odwrócony wybór"
 msgid "Invert current page"
 msgstr "Odwróć bieżącą stronę"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Alarm jest aktywny"
+
 msgid "Is certified"
 msgstr "Jest certyfikowany"
 
@@ -6188,8 +6564,16 @@ msgstr "Metadane JSON"
 msgid "JSON metadata is invalid!"
 msgstr "Metadane JSON są nieprawidłowe!"
 
-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 "Ciąg JSON zawierający dodatkową konfigurację połączenia. Służy do dostarczania informacji o połączeniu dla systemów takich jak Hive, Presto i BigQuery, które nie przestrzegają składni użytkownik:hasło używanej zwykle przez SQLAlchemy."
+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 ""
+"Ciąg JSON zawierający dodatkową konfigurację połączenia. Służy do "
+"dostarczania informacji o połączeniu dla systemów takich jak Hive, Presto"
+" i BigQuery, które nie przestrzegają składni użytkownik:hasło używanej "
+"zwykle przez SQLAlchemy."
 
 msgid "JUL"
 msgstr "LIP"
@@ -6293,30 +6677,43 @@ msgstr "Duży"
 msgid "Last"
 msgstr "Ostatni"
 
-msgid "Last Changed"
-msgstr "Ostatnia zmiana"
-
-msgid "Last Modified"
-msgstr "Ostatnia modyfikacja"
-
+#, python-format
 msgid "Last Updated %s"
 msgstr "Ostatnia aktualizacja %s"
 
+#, python-format
 msgid "Last Updated %s by %s"
 msgstr "Ostatnia aktualizacja %s przez %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Wartość docelowa"
+
+#, python-format
 msgid "Last available value seen on %s"
 msgstr "Ostatnia dostępna wartość widziana na %s"
 
 msgid "Last day"
 msgstr "Ostatni dzień"
 
+#, fuzzy
+msgid "Last login"
+msgstr "Ostatni miesiąc"
+
 msgid "Last modified"
 msgstr "Ostatnia modyfikacja"
 
 msgid "Last month"
 msgstr "Ostatni miesiąc"
 
+#, fuzzy
+msgid "Last name"
+msgstr "nazwa zestawu danych"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Nazwa jest wymagana"
+
 msgid "Last quarter"
 msgstr "Ostatni kwartał"
 
@@ -6329,15 +6726,42 @@ msgstr "Ostatni tydzień"
 msgid "Last year"
 msgstr "Ostatni rok"
 
+#, fuzzy
+msgid "Lat"
+msgstr "płaski"
+
 msgid "Latitude"
 msgstr "Szerokość geograficzna"
 
 msgid "Latitude of default viewport"
 msgstr "Szerokość geograficzna domyślnego widoku"
 
+#, fuzzy
+msgid "Layer"
+msgstr "rok"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Nazwa alarmu"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "Konfiguracja warstwy"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Tytuł wykresu"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Typ filtra"
+
+#, fuzzy
+msgid "Layers"
+msgstr "alerty"
+
 msgid "Layout"
 msgstr "Układ"
 
@@ -6350,9 +6774,6 @@ msgstr "Typ układu wykresu"
 msgid "Layout type of tree"
 msgstr "Typ układu drzewa"
 
-msgid "Leaf nodes that represent fewer than this number of events will be initially hidden in the visualization"
-msgstr "Węzły liściowe reprezentujące mniej niż tę liczbę zdarzeń będą początkowo ukryte w wizualizacji."
-
 msgid "Least recently modified"
 msgstr "Najmniej ostatnio zmodyfikowany"
 
@@ -6416,20 +6837,31 @@ msgstr "Podobnie (bez rozróżnienia wielkości liter)"
 msgid "Limit type"
 msgstr "Typ limitu"
 
-msgid "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead."
-msgstr "Ograniczenie wierszy może skutkować niekompletnymi danymi i wprowadzającymi w błąd wykresami. Rozważ filtrowanie lub grupowanie nazw źródeł/celów."
-
 msgid "Limits the number of cells that get retrieved."
 msgstr "Ogranicza liczbę pobranych komórek."
 
 msgid "Limits the number of rows that get displayed."
 msgstr "Ogranicza liczbę wyświetlanych wierszy."
 
-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 "Ogranicza liczbę wyświetlanych serii. Stosuje się połączone podzapytanie (lub dodatkową fazę, gdy podzapytania nie są obsługiwane), aby ograniczyć liczbę pobieranych i renderowanych serii. Ta funkcja jest przydatna podczas grupowania według kolumn o wysokiej kardynalności, ale zwiększa złożoność i koszt zapytania."
+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 ""
+"Ogranicza liczbę wyświetlanych serii. Stosuje się połączone podzapytanie "
+"(lub dodatkową fazę, gdy podzapytania nie są obsługiwane), aby ograniczyć"
+" liczbę pobieranych i renderowanych serii. Ta funkcja jest przydatna "
+"podczas grupowania według kolumn o wysokiej kardynalności, ale zwiększa "
+"złożoność i koszt zapytania."
 
-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 "Ogranicza liczbę wierszy obliczanych w zapytaniu będącym źródłem danych używanych w tym wykresie."
+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 ""
+"Ogranicza liczbę wierszy obliczanych w zapytaniu będącym źródłem danych "
+"używanych w tym wykresie."
 
 msgid "Line"
 msgstr "Linia"
@@ -6451,6 +6883,9 @@ msgstr ""
 "punktów danych połączonych prostymi odcinkami. Jest to podstawowy typ "
 "wykresu powszechnie stosowany w wielu dziedzinach."
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "Interpolacja linii zdefiniowana przez d3.js"
 
@@ -6478,9 +6913,16 @@ msgstr "Kodowanie linii"
 msgid "Link Copied!"
 msgstr "Link skopiowany!"
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr "Lista unikalnych wartości"
 
+#, fuzzy
+msgid "List Users"
+msgstr "Numer podziału"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr "Lista dodatkowych kolumn dostępnych w funkcjach JavaScript"
 
@@ -6547,6 +6989,10 @@ msgstr "Logarytmiczna oś Y"
 msgid "Login"
 msgstr "Zaloguj się"
 
+#, fuzzy
+msgid "Login count"
+msgstr "liczba"
+
 msgid "Login with"
 msgstr "Zaloguj się za pomocą"
 
@@ -6556,6 +7002,10 @@ msgstr "Wyloguj się"
 msgid "Logs"
 msgstr "Dzienniki"
 
+#, fuzzy
+msgid "Lon"
+msgstr "na"
+
 msgid "Long dashed"
 msgstr "Długie kreski"
 
@@ -6595,9 +7045,6 @@ msgstr "PON"
 msgid "Main"
 msgstr "Główne"
 
-msgid "Main Datetime Column"
-msgstr "Główna kolumna daty i czasu"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6633,6 +7080,10 @@ msgstr "Ręcznie ustaw wartości minimalne/maksymalne dla osi Y."
 msgid "Map"
 msgstr "Mapa"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Opcje mapy cieplnej"
+
 msgid "Map Style"
 msgstr "Styl mapy"
 
@@ -6675,14 +7126,17 @@ msgstr "Znaczniki"
 msgid "Markup type"
 msgstr "Typ znacznika"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "Maks"
 
 msgid "Max Bubble Size"
 msgstr "Maksymalny rozmiar bańki"
 
-msgid "Max Events"
-msgstr "Maksymalna liczba zdarzeń"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "Maksimum"
@@ -6693,6 +7147,9 @@ msgstr "Maksymalny rozmiar czcionki"
 msgid "Maximum Radius"
 msgstr "Maksymalny promień"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6738,6 +7195,18 @@ msgstr "Wartości mediany"
 msgid "Medium"
 msgstr "Średni"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr "Wyzwalacz działań w menu"
 
@@ -6759,12 +7228,14 @@ msgstr "Metoda"
 msgid "Metric"
 msgstr "Metryka"
 
+#, python-format
 msgid "Metric '%(metric)s' does not exist"
 msgstr "Metryka „%(metric)s” nie istnieje"
 
 msgid "Metric Key"
 msgstr "Klucz metryki"
 
+#, python-format
 msgid "Metric ``%(metric_name)s`` not found in %(dataset_name)s."
 msgstr "Metryka „%(metric_name)s” nie została znaleziona w %(dataset_name)s."
 
@@ -6795,6 +7266,7 @@ msgstr "Metryka dla wartości węzłów"
 msgid "Metric name"
 msgstr "Nazwa metryki"
 
+#, python-format
 msgid "Metric name [%s] is duplicated"
 msgstr "Nazwa metryki [%s] jest zduplikowana"
 
@@ -6821,8 +7293,8 @@ msgid ""
 "limit is present. If undefined reverts to the first metric (where "
 "appropriate)."
 msgstr ""
-"Metryka używana do określenia sposobu sortowania najlepszych serii, jeśli "
-"jest obecny limit serii lub komórek. Jeśli nieokreślona, używana jest "
+"Metryka używana do określenia sposobu sortowania najlepszych serii, jeśli"
+" jest obecny limit serii lub komórek. Jeśli nieokreślona, używana jest "
 "pierwsza metryka (jeśli to możliwe)."
 
 msgid ""
@@ -6830,17 +7302,10 @@ msgid ""
 "limit is present. If undefined reverts to the first metric (where "
 "appropriate)."
 msgstr ""
-"Metryka używana do określenia sposobu sortowania najlepszych serii, jeśli "
-"jest obecny limit serii lub wierszy. Jeśli nieokreślona, używana jest "
+"Metryka używana do określenia sposobu sortowania najlepszych serii, jeśli"
+" jest obecny limit serii lub wierszy. Jeśli nieokreślona, używana jest "
 "pierwsza metryka (jeśli to możliwe)."
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-"Metryka używana do porządkowania limitu, jeśli jest obecny limit serii. "
-"Jeśli nieokreślona, używana jest pierwsza metryka (jeśli to możliwe)."
-
 msgid "Metrics"
 msgstr "Metryki"
 
@@ -6880,8 +7345,8 @@ msgstr "Minimalny rozmiar czcionki"
 msgid "Minimum Radius"
 msgstr "Minimalny promień"
 
-msgid "Minimum leaf node event count"
-msgstr "Minimalna liczba zdarzeń w węzłach liści"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
 "Minimum radius size of the circle, in pixels. As the zoom level changes, "
@@ -6896,6 +7361,10 @@ msgstr "Minimalny próg w punktach procentowych do wyświetlania etykiet."
 msgid "Minimum value"
 msgstr "Minimalna wartość"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "Data początkowa nie może być późniejsza niż data końcowa"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "Minimalna wartość dla etykiety, aby była wyświetlana na wykresie."
 
@@ -6911,12 +7380,16 @@ msgstr "Podziałki podrzędne"
 msgid "Minute"
 msgstr "Minuta"
 
+#, python-format
 msgid "Minutes %s"
 msgstr "Minuty %s"
 
 msgid "Minutes value"
 msgstr "Wartość minutowa"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr "Brakujące parametry URL"
 
@@ -6933,6 +7406,12 @@ msgstr "Zmodyfikowany"
 msgid "Modified %s"
 msgstr "Zmodyfikowano %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 msgid "Modified by"
 msgstr "Zmodyfikowane przez"
 
@@ -6940,10 +7419,6 @@ msgstr "Zmodyfikowane przez"
 msgid "Modified by: %s"
 msgstr "Ostatnia modyfikacja przez %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "Zmodyfikowane kolumny: %s"
-
 msgid "Monday"
 msgstr "Poniedziałek"
 
@@ -7012,9 +7487,6 @@ msgstr "Musisz wybrać wykres lub pulpit nawigacyjny."
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr "Musi istnieć kolumna [Group By], aby mieć „count” jako [Etykieta]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "Musi być określona co najmniej jedna kolumna numeryczna"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr "Należy podać dane uwierzytelniające dla tunelu SSH"
 
@@ -7040,9 +7512,6 @@ msgstr "NIE GRUPOWANO PRZEZ"
 msgid "NOV"
 msgstr "Lis."
 
-msgid "NOW"
-msgstr "TERAZ"
-
 #, fuzzy
 msgid "NUMERIC"
 msgstr "NUMERYCZNY"
@@ -7070,9 +7539,6 @@ msgstr "Nazwa kolumny identyfikacyjnej"
 msgid "Name of the source nodes"
 msgstr "Nazwa węzłów źródłowych"
 
-msgid "Name of the table that exists in the source database"
-msgstr "Nazwa tabeli istniejącej w źródłowej bazie danych"
-
 msgid "Name of the target nodes"
 msgstr "Nazwa węzłów docelowych"
 
@@ -7089,10 +7555,18 @@ msgstr "Potrzebujesz pomocy? Dowiedz się, jak połączyć swoją bazę danych"
 msgid "Need help? Learn more about"
 msgstr "Potrzebujesz pomocy? Dowiedz się więcej o"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Błąd sieci"
+
 #, fuzzy
 msgid "Network error"
 msgstr "Błąd sieci"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Wystąpił błąd podczas tworzenia źródła danych."
+
 #, fuzzy
 msgid "Network error."
 msgstr "Błąd sieci."
@@ -7100,10 +7574,6 @@ msgstr "Błąd sieci."
 msgid "New chart"
 msgstr "Nowy wykres"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "Dodano nowe kolumny: %s"
-
 #, fuzzy
 msgid "New dataset"
 msgstr "Nowy zbiór danych"
@@ -7158,6 +7628,10 @@ msgstr "Brak reguł"
 msgid "No Tags created"
 msgstr "Nie utworzono jeszcze tagów"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Cofnij akcję"
+
 #, fuzzy
 msgid "No annotation layers"
 msgstr "Brak warstw adnotacji"
@@ -7179,10 +7653,6 @@ msgstr "Brak dostępnych filtrów."
 msgid "No charts"
 msgstr "Brak wykresów"
 
-#, fuzzy
-msgid "No charts yet"
-msgstr "Jeszcze brak wykresów"
-
 #, fuzzy
 msgid "No columns found"
 msgstr "Nie znaleziono kolumn"
@@ -7202,20 +7672,19 @@ msgstr "Nie znaleziono zgodnych zbiorów danych"
 msgid "No compatible schema found"
 msgstr "Nie znaleziono zgodnego schematu"
 
-#, fuzzy
-msgid "No dashboards yet"
-msgstr "Jeszcze brak pulpitów nawigacyjnych"
-
 msgid "No data"
 msgstr "Brak danych"
 
 msgid "No data after filtering or data is NULL for the latest time record"
-msgstr ""
-"Brak danych po filtrowaniu lub dane są puste"
+msgstr "Brak danych po filtrowaniu lub dane są puste"
 
 msgid "No data in file"
 msgstr "Brak danych w pliku"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "Brak dostępnych baz danych."
+
 msgid "No databases match your search"
 msgstr "Brak pasujących baz danych do Twojego wyszukiwania"
 
@@ -7246,12 +7715,6 @@ msgstr "Nie dodano żadnych globalnych filtrów"
 msgid "No matching records found"
 msgstr "Nie znaleziono pasujących rekordów"
 
-msgid "No of Bins"
-msgstr "Liczba przedziałów"
-
-msgid "No recents yet"
-msgstr "Brak ostatnich elementów"
-
 msgid "No records found"
 msgstr "Nie znaleziono rekordów"
 
@@ -7272,7 +7735,13 @@ msgid ""
 "returned, ensure any filters are configured properly and the datasource "
 "contains data for the selected time range."
 msgstr ""
-"Brak wyników dla tego zapytania. Jeśli spodziewałeś się wyników, upewnij się, że filtry są poprawnie skonfigurowane, a źródło danych zawiera dane dla wybranego zakresu czasu."
+"Brak wyników dla tego zapytania. Jeśli spodziewałeś się wyników, upewnij "
+"się, że filtry są poprawnie skonfigurowane, a źródło danych zawiera dane "
+"dla wybranego zakresu czasu."
+
+#, fuzzy
+msgid "No roles yet"
+msgstr "Brak reguł"
 
 msgid "No rows were returned for this dataset"
 msgstr "Zestaw danych nie zwrócił żadnych wierszy"
@@ -7286,15 +7755,13 @@ msgstr "Nie znaleziono zapisanych wyrażeń"
 msgid "No saved metrics found"
 msgstr "Nie znaleziono zapisanych metryk"
 
-msgid "No saved queries yet"
-msgstr "Nie zapisano jeszcze żadnych zapytań"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr "Nie znaleziono zapisanych wyników, musisz ponownie uruchomić zapytanie"
 
 msgid "No such column found. To filter on a metric, try the Custom SQL tab."
 msgstr ""
-"Nie znaleziono takiej kolumny. Aby filtrować według miary, spróbuj użyć zakładki Custom SQL."
+"Nie znaleziono takiej kolumny. Aby filtrować według miary, spróbuj użyć "
+"zakładki Custom SQL."
 
 msgid "No table columns"
 msgstr "Brak kolumn tabeli"
@@ -7305,13 +7772,20 @@ msgstr "Nie znaleziono kolumn czasowych"
 msgid "No time columns"
 msgstr "Brak kolumn czasowych"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Brak reguł"
+
 msgid "No validator found (configured for the engine)"
 msgstr "Nie znaleziono walidatora (skonfigurowanego dla silnika)"
 
+#, python-format
 msgid ""
 "No validator named %(validator_name)s found (configured for the "
 "%(engine_spec)s engine)"
-msgstr "Nie znaleziono walidatora o nazwie %(validator_name)s (skonfigurowanego dla silnika %(engine_spec)s)"
+msgstr ""
+"Nie znaleziono walidatora o nazwie %(validator_name)s (skonfigurowanego "
+"dla silnika %(engine_spec)s)"
 
 msgid "Node label position"
 msgstr "Pozycja etykiety węzła"
@@ -7356,7 +7830,9 @@ msgid "Not added to any dashboard"
 msgstr "Nie dodano do żadnego dashboardu"
 
 msgid "Not all required fields are complete. Please provide the following:"
-msgstr "Nie wszystkie wymagane pola zostały wypełnione. Proszę podać następujące dane:"
+msgstr ""
+"Nie wszystkie wymagane pola zostały wypełnione. Proszę podać następujące "
+"dane:"
 
 msgid "Not available"
 msgstr "Niedostępne"
@@ -7379,6 +7855,10 @@ msgstr "Nie wywołano"
 msgid "Not up to date"
 msgstr "Nieaktualne"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "Nic nie wywołano"
+
 msgid "Nothing triggered"
 msgstr "Nic nie wywołano"
 
@@ -7412,8 +7892,10 @@ msgid ""
 "blue,\n"
 "               you can enter either only min or max."
 msgstr ""
-"Zakresy liczbowe używane do kodowania kolorów od czerwonego do niebieskiego.\n"
-"               Odwróć liczby, aby uzyskać od niebieskiego do czerwonego. Aby uzyskać czysty czerwony lub niebieski,\n"
+"Zakresy liczbowe używane do kodowania kolorów od czerwonego do "
+"niebieskiego.\n"
+"               Odwróć liczby, aby uzyskać od niebieskiego do czerwonego. "
+"Aby uzyskać czysty czerwony lub niebieski,\n"
 "               możesz wpisać tylko min lub max."
 
 msgid "Number format"
@@ -7441,13 +7923,16 @@ msgid ""
 "Number of periods to compare against. You can use negative numbers to "
 "compare from the beginning of the time range."
 msgstr ""
-"Liczba okresów do porównania. Możesz użyć liczb ujemnych, aby porównać od początku zakresu czasu."
+"Liczba okresów do porównania. Możesz użyć liczb ujemnych, aby porównać od"
+" początku zakresu czasu."
 
 msgid "Number of periods to ratio against"
 msgstr "Liczba okresów do porównania"
 
 msgid "Number of rows of file to read. Leave empty (default) to read all rows"
-msgstr "Liczba wierszy do odczytu z pliku. Pozostaw puste (domyślnie), aby odczytać wszystkie wiersze"
+msgstr ""
+"Liczba wierszy do odczytu z pliku. Pozostaw puste (domyślnie), aby "
+"odczytać wszystkie wiersze"
 
 msgid "Number of rows to skip at start of file."
 msgstr "Liczba wierszy do pominięcia na początku pliku."
@@ -7482,20 +7967,27 @@ msgstr "Październik"
 msgid "Offline"
 msgstr "Offline"
 
-msgid "Offset"
-msgstr "Przesunięcie"
-
 msgid "On Grace"
 msgstr "Na łasce"
 
 msgid "On dashboards"
 msgstr "Na pulpitach nawigacyjnych"
 
-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 "Jedna lub wiele kolumn do grupowania. Grupowania o wysokiej kardynalności powinny zawierać limit serii, aby ograniczyć liczbę pobranych i renderowanych serii."
+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 ""
+"Jedna lub wiele kolumn do grupowania. Grupowania o wysokiej kardynalności"
+" powinny zawierać limit serii, aby ograniczyć liczbę pobranych i "
+"renderowanych serii."
 
-msgid "One or many controls to group by. If grouping, latitude and longitude columns must be present."
-msgstr "Jedna lub wiele opcji grupowania. W przypadku grupowania muszą być obecne kolumny szerokości i długości geograficznej."
+msgid ""
+"One or many controls to group by. If grouping, latitude and longitude "
+"columns must be present."
+msgstr ""
+"Jedna lub wiele opcji grupowania. W przypadku grupowania muszą być obecne"
+" kolumny szerokości i długości geograficznej."
 
 msgid "One or many controls to pivot as columns"
 msgstr "Jedna lub wiele opcji do przekształcenia w kolumny"
@@ -7503,6 +7995,10 @@ msgstr "Jedna lub wiele opcji do przekształcenia w kolumny"
 msgid "One or many metrics to display"
 msgstr "Jedna lub wiele miar do wyświetlenia"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "Nie udało się załadować jednej lub więcej warstw adnotacji."
+
 msgid "One or more columns already exist"
 msgstr "Jedna lub więcej kolumn już istnieje"
 
@@ -7522,7 +8018,9 @@ msgid "One or more metrics do not exist"
 msgstr "Jedna lub więcej miar nie istnieje"
 
 msgid "One or more parameters needed to configure a database are missing."
-msgstr "Brakuje jednego lub więcej parametrów potrzebnych do konfiguracji bazy danych."
+msgstr ""
+"Brakuje jednego lub więcej parametrów potrzebnych do konfiguracji bazy "
+"danych."
 
 msgid "One or more parameters specified in the query are malformed."
 msgstr "Jeden lub więcej parametrów określonych w zapytaniu jest niepoprawnych."
@@ -7530,12 +8028,6 @@ msgstr "Jeden lub więcej parametrów określonych w zapytaniu jest niepoprawnyc
 msgid "One or more parameters specified in the query are missing."
 msgstr "Jeden lub więcej parametrów określonych w zapytaniu jest brakujących."
 
-msgid "One ore more annotation layers failed loading."
-msgstr "Nie udało się załadować jednej lub więcej warstw adnotacji."
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "Tylko instrukcje SELECT są dozwolone dla tej bazy danych."
-
 msgid "Only Total"
 msgstr "Tylko suma"
 
@@ -7548,11 +8040,12 @@ msgstr "Dotyczy tylko, gdy „Typ etykiety” nie jest ustawiony na procenty."
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr "Dotyczy tylko, gdy „Typ etykiety” jest ustawiony na wyświetlanie wartości."
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "Tylko wybrane panele będą dotknięte tym filtrem"
-
-msgid "Only show the total value on the stacked chart, and not show on the selected category"
-msgstr "Wyświetlaj tylko wartość całkowitą na wykresie warstwowym, a nie na wybranej kategorii."
+msgid ""
+"Only show the total value on the stacked chart, and not show on the "
+"selected category"
+msgstr ""
+"Wyświetlaj tylko wartość całkowitą na wykresie warstwowym, a nie na "
+"wybranej kategorii."
 
 msgid "Only single queries supported"
 msgstr "Obsługiwane są tylko pojedyncze zapytania"
@@ -7573,7 +8066,9 @@ msgid "Opacity of area chart."
 msgstr "Przezroczystość wykresu obszarowego."
 
 msgid "Opacity of bubbles, 0 means completely transparent, 1 means opaque"
-msgstr "Przezroczystość bąbelków, 0 oznacza całkowicie przezroczyste, 1 oznacza nieprzezroczyste"
+msgstr ""
+"Przezroczystość bąbelków, 0 oznacza całkowicie przezroczyste, 1 oznacza "
+"nieprzezroczyste"
 
 msgid "Opacity, expects values between 0 and 100"
 msgstr "Przezroczystość, oczekiwane wartości od 0 do 100"
@@ -7587,17 +8082,30 @@ msgstr "Otwórz w SQL Lab"
 msgid "Open query in SQL Lab"
 msgstr "Otwórz zapytanie w SQL Lab"
 
-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 "Operuj bazą danych w trybie asynchronicznym, co oznacza, że zapytania są wykonywane na zdalnych pracownikach zamiast na samym serwerze WWW. Zakłada to posiadanie skonfigurowanego Celery worker oraz backendu wyników. Więcej informacji znajdziesz w dokumentacji instalacyjnej."
+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 ""
+"Operuj bazą danych w trybie asynchronicznym, co oznacza, że zapytania są "
+"wykonywane na zdalnych pracownikach zamiast na samym serwerze WWW. "
+"Zakłada to posiadanie skonfigurowanego Celery worker oraz backendu "
+"wyników. Więcej informacji znajdziesz w dokumentacji instalacyjnej."
 
 msgid "Operator"
 msgstr "Operator"
 
+#, python-format
 msgid "Operator undefined for aggregator: %(name)s"
 msgstr "Operator niezdefiniowany dla agregatora: %(name)s"
 
-msgid "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on certain database engines."
-msgstr "Opcjonalna zawartość CA_BUNDLE do weryfikacji żądań HTTPS. Dostępne tylko na niektórych silnikach baz danych."
+msgid ""
+"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on"
+" certain database engines."
+msgstr ""
+"Opcjonalna zawartość CA_BUNDLE do weryfikacji żądań HTTPS. Dostępne tylko"
+" na niektórych silnikach baz danych."
 
 msgid "Optional d3 date format string"
 msgstr "Opcjonalny format daty d3"
@@ -7617,15 +8125,19 @@ msgstr "Opcje"
 msgid "Or choose from a list of other databases we support:"
 msgstr "Lub wybierz z listy innych baz danych, które obsługujemy:"
 
-msgid "Order by entity id"
-msgstr "Sortuj według identyfikatora encji"
-
 msgid "Order results by selected columns"
 msgstr "Sortuj wyniki według wybranych kolumn"
 
 msgid "Ordering"
 msgstr "Sortowanie"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr "Orientacja"
 
@@ -7674,8 +8186,8 @@ msgid ""
 "relative time deltas in natural language (example:  24 hours, 7 days, 52 "
 "weeks, 365 days). Free text is supported."
 msgstr ""
-"Nałóż jedną lub więcej szeregów czasowych z okresu względnego. Oczekiwane "
-"są względne różnice czasu w języku naturalnym (przykład: 24 godziny, 7 "
+"Nałóż jedną lub więcej szeregów czasowych z okresu względnego. Oczekiwane"
+" są względne różnice czasu w języku naturalnym (przykład: 24 godziny, 7 "
 "dni, 52 tygodnie, 365 dni). Obsługiwany jest tekst dowolny."
 
 #, fuzzy
@@ -7684,8 +8196,8 @@ msgid ""
 "relative time deltas in natural language (example: 24 hours, 7 days, 52 "
 "weeks, 365 days). Free text is supported."
 msgstr ""
-"Nałóż jedną lub więcej szeregów czasowych z okresu względnego. Oczekiwane "
-"są względne różnice czasu w języku naturalnym (przykład: 24 godziny, 7 "
+"Nałóż jedną lub więcej szeregów czasowych z okresu względnego. Oczekiwane"
+" są względne różnice czasu w języku naturalnym (przykład: 24 godziny, 7 "
 "dni, 52 tygodnie, 365 dni). Obsługiwany jest tekst dowolny."
 
 #, fuzzy
@@ -7698,7 +8210,10 @@ msgid ""
 msgstr ""
 "Nałóż wyniki z okresu względnego. Oczekiwane są względne różnice czasu w "
 "języku naturalnym (przykład: 24 godziny, 7 dni, 52 tygodnie, 365 dni). "
-"Obsługiwany jest tekst dowolny. Użyj „Dziedziczyć zakres z filtrów czasu”, aby przesunąć zakres porównania o tę samą długość, co zakres czasu, lub użyj „Niestandardowy”, aby ustawić niestandardowy zakres porównania."
+"Obsługiwany jest tekst dowolny. Użyj „Dziedziczyć zakres z filtrów "
+"czasu”, aby przesunąć zakres porównania o tę samą długość, co zakres "
+"czasu, lub użyj „Niestandardowy”, aby ustawić niestandardowy zakres "
+"porównania."
 
 msgid ""
 "Overlays a hexagonal grid on a map, and aggregates data within the "
@@ -7756,6 +8271,10 @@ msgstr ""
 "Właściciele to lista użytkowników, którzy mogą modyfikować pulpit "
 "nawigacyjny. Można ich wyszukać po nazwie lub nazwie użytkownika."
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "Pobieranie obrazu nie powiodło się, odśwież i spróbuj ponownie."
+
 msgid "Page length"
 msgstr "Długość strony"
 
@@ -7812,19 +8331,26 @@ msgid ""
 "Partitions whose height to parent height proportions are below this value"
 " are pruned"
 msgstr ""
-"Partycje, których proporcje wysokości do wysokości nadrzędnej są "
-"mniejsze niż ta wartość, są przycinane."
+"Partycje, których proporcje wysokości do wysokości nadrzędnej są mniejsze"
+" niż ta wartość, są przycinane."
 
 msgid "Password"
 msgstr "Hasło"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "Typ jest wymagany"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Pulpity nawigacyjne nie istnieją"
+
 msgid "Paste Private Key here"
 msgstr "Wklej klucz prywatny tutaj"
 
 #, fuzzy
 msgid "Paste content of service credentials JSON file here"
-msgstr ""
-"Wklej tutaj zawartość pliku JSON z poświadczeniami usługi"
+msgstr "Wklej tutaj zawartość pliku JSON z poświadczeniami usługi"
 
 msgid "Paste the shareable Google Sheet URL here"
 msgstr "Wklej tutaj udostępniany adres URL Arkusza Google"
@@ -7883,6 +8409,14 @@ msgstr "Okresy"
 msgid "Periods must be a whole number"
 msgstr "Okresy muszą być liczbą całkowitą"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Wersja"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 #, fuzzy
 msgid "Person or group that has certified this chart."
 msgstr "Osoba lub grupa, która zatwierdziła ten wykres."
@@ -7900,12 +8434,8 @@ msgstr "Fizyczny"
 msgid "Physical (table or view)"
 msgstr "Fizyczny (tabela lub widok)"
 
-msgid "Physical dataset"
-msgstr "Zbiór danych fizycznych"
-
 msgid "Pick a dimension from which categorical colors are defined"
-msgstr ""
-"Wybierz wymiar, z którego zdefiniowane są kolory kategoryczne."
+msgstr "Wybierz wymiar, z którego zdefiniowane są kolory kategoryczne."
 
 msgid "Pick a metric for x, y and size"
 msgstr "Wybierz miarę dla x, y i rozmiaru"
@@ -7925,20 +8455,15 @@ msgstr "Wybierz zestaw wykresów deck.gl do nakładania na siebie."
 msgid "Pick a title for you annotation."
 msgstr "Wybierz tytuł dla swojej adnotacji."
 
-msgid "Pick at least one field for [Series]"
-msgstr "Wybierz co najmniej jedno pole dla [Serii]"
-
 msgid "Pick at least one metric"
 msgstr "Wybierz co najmniej jedną metrykę"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "Wybierz dokładnie 2 kolumny jako [Źródło / Cel]"
-
 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 ""
-"Wybierz jedną lub więcej kolumn, które mają być wyświetlone w adnotacji. Jeśli nie wybierzesz żadnej kolumny, zostaną wyświetlone wszystkie."
+"Wybierz jedną lub więcej kolumn, które mają być wyświetlone w adnotacji. "
+"Jeśli nie wybierzesz żadnej kolumny, zostaną wyświetlone wszystkie."
 
 msgid "Pick your favorite markup language"
 msgstr "Wybierz swój ulubiony język znaczników"
@@ -7946,8 +8471,8 @@ msgstr "Wybierz swój ulubiony język znaczników"
 msgid "Pie Chart"
 msgstr "Wykres kołowy"
 
-msgid "Pie Chart (legacy)"
-msgstr "Wykres kołowy (starszy)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "Kształt kołowy"
@@ -7958,6 +8483,14 @@ msgstr "Częściowy"
 msgid "Pin"
 msgstr "PIN"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "Lewy górny róg"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Prawy górny róg"
+
 msgid "Pivot Table"
 msgstr "Tabela przestawna"
 
@@ -7987,26 +8520,37 @@ msgid ""
 "surround by double braces, for example, \"{{ ds }}\". Then, try running "
 "your query again."
 msgstr ""
-"Proszę sprawdzić zapytanie i upewnić się, że wszystkie parametry szablonu są ujęte w podwójne nawiasy klamrowe, na przykład „{{ ds }}”. Następnie spróbuj ponownie uruchomić zapytanie."
+"Proszę sprawdzić zapytanie i upewnić się, że wszystkie parametry szablonu"
+" są ujęte w podwójne nawiasy klamrowe, na przykład „{{ ds }}”. Następnie "
+"spróbuj ponownie uruchomić zapytanie."
 
+#, python-format
 msgid ""
 "Please check your query for syntax errors at or near "
 "\"%(syntax_error)s\". Then, try running your query again."
 msgstr ""
-"Proszę sprawdzić zapytanie pod kątem błędów składni w lub w pobliżu „%(syntax_error)s”. Następnie spróbuj ponownie uruchomić zapytanie."
+"Proszę sprawdzić zapytanie pod kątem błędów składni w lub w pobliżu "
+"„%(syntax_error)s”. Następnie spróbuj ponownie uruchomić zapytanie."
 
+#, python-format
 msgid ""
 "Please check your query for syntax errors near \"%(server_error)s\". "
 "Then, try running your query again."
 msgstr ""
-"Proszę sprawdzić zapytanie pod kątem błędów składni w pobliżu „%(server_error)s”. Następnie spróbuj ponownie uruchomić zapytanie."
+"Proszę sprawdzić zapytanie pod kątem błędów składni w pobliżu "
+"„%(server_error)s”. Następnie spróbuj ponownie uruchomić zapytanie."
 
 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 ""
-"Proszę sprawdzić parametry szablonu pod kątem błędów składni i upewnić się, że pasują one do zapytania SQL i ustawionych parametrów. Następnie spróbuj ponownie uruchomić zapytanie."
+"Proszę sprawdzić parametry szablonu pod kątem błędów składni i upewnić "
+"się, że pasują one do zapytania SQL i ustawionych parametrów. Następnie "
+"spróbuj ponownie uruchomić zapytanie."
+
+msgid "Please choose a valid value"
+msgstr ""
 
 msgid "Please choose at least one groupby"
 msgstr "Proszę wybrać co najmniej jedną grupę według"
@@ -8017,54 +8561,73 @@ msgstr "Proszę potwierdzić"
 msgid "Please confirm the overwrite values."
 msgstr "Proszę potwierdzić wartości zastępowane."
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "Proszę potwierdzić"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Proszę wprowadzić URI SQLAlchemy do przetestowania"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr "Proszę wprowadzić poprawny tekst. Same spacje są niedozwolone."
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "Proszę ponownie wprowadzić hasło."
 
 msgid "Please re-export your file and try importing again"
 msgstr "Proszę ponownie wyeksportować plik i spróbować ponownie zaimportować"
 
-msgid ""
-"Please reach out to the Chart Owner for assistance."
+msgid "Please reach out to the Chart Owner for assistance."
 msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] "Proszę skontaktować się z właścicielem wykresu w celu uzyskania pomocy."
 msgstr[1] "Proszę skontaktować się z właścicielami wykresu w celu uzyskania pomocy."
 
-msgid "Please save the query to enable sharing"
-msgstr "Proszę zapisać zapytanie, aby umożliwić udostępnianie"
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
-"Proszę najpierw zapisać wykres, a następnie spróbować utworzyć nowy raport e-mail."
+"Proszę najpierw zapisać wykres, a następnie spróbować utworzyć nowy "
+"raport e-mail."
 
 msgid "Please save your dashboard first, then try creating a new email report."
 msgstr ""
-"Proszę najpierw zapisać pulpit nawigacyjny, a następnie spróbować utworzyć nowy raport e-mail."
+"Proszę najpierw zapisać pulpit nawigacyjny, a następnie spróbować "
+"utworzyć nowy raport e-mail."
 
 msgid "Please select both a Dataset and a Chart type to proceed"
-msgstr ""
-"Proszę wybrać zarówno zestaw danych, jak i typ wykresu, aby kontynuować."
+msgstr "Proszę wybrać zarówno zestaw danych, jak i typ wykresu, aby kontynuować."
 
-msgid "Please specify the Dataset ID for the ``%(name)s`` metric in the Jinja macro."
-msgstr "Proszę określić identyfikator zestawu danych dla metryki ``%(name)s`` w makrze Jinja."
+#, python-format
+msgid ""
+"Please specify the Dataset ID for the ``%(name)s`` metric in the Jinja "
+"macro."
+msgstr ""
+"Proszę określić identyfikator zestawu danych dla metryki ``%(name)s`` w "
+"makrze Jinja."
 
 msgid "Please use 3 different metric labels"
 msgstr "Proszę użyć 3 różnych etykiet metryk"
 
 msgid "Plot the distance (like flight paths) between origin and destination."
-msgstr "Zaplanuj odległość (np. trasy lotów) między punktem początkowym a docelowym."
+msgstr ""
+"Zaplanuj odległość (np. trasy lotów) między punktem początkowym a "
+"docelowym."
 
 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 ""
-"Rysuje poszczególne metryki dla każdego wiersza danych pionowo i łączy je linią. Ten wykres jest przydatny do porównywania wielu metryk w całej próbce lub wierszach danych."
+"Rysuje poszczególne metryki dla każdego wiersza danych pionowo i łączy je"
+" linią. Ten wykres jest przydatny do porównywania wielu metryk w całej "
+"próbce lub wierszach danych."
 
 msgid "Plugins"
 msgstr "Wtyczki"
@@ -8096,8 +8659,7 @@ msgid "Points"
 msgstr "Punkty"
 
 msgid "Points and clusters will update as the viewport is being changed"
-msgstr ""
-"Punkty i klastry będą aktualizowane podczas zmiany widoku."
+msgstr "Punkty i klastry będą aktualizowane podczas zmiany widoku."
 
 #, fuzzy
 msgid "Polygon Column"
@@ -8117,9 +8679,6 @@ msgstr "Polilinia"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "Wypełnij „Domyślną wartość”, aby włączyć tę kontrolkę"
 
-msgid "Population age data"
-msgstr "Dane dotyczące wieku populacji"
-
 #, fuzzy
 msgid "Port"
 msgstr "Port"
@@ -8158,15 +8717,6 @@ msgstr "Dostępne wartości filtra wstępnego"
 msgid "Pre-filter is required"
 msgstr "Wymagany jest filtr wstępny"
 
-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 ""
-"Predykat stosowany przy pobieraniu unikalnych wartości do wypełnienia "
-"komponentu kontrolki filtra. Obsługuje składnię szablonów Jinja. "
-"Dotyczy tylko, gdy włączona jest opcja „Włącz wybór filtra”."
-
 #, fuzzy
 msgid "Predictive"
 msgstr "Predykcyjny"
@@ -8188,10 +8738,6 @@ msgstr "Podgląd"
 msgid "Preview uploaded file"
 msgstr "Podgląd przesłanego pliku"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "Podgląd: „%s”"
-
 msgid "Previous"
 msgstr "Poprzedni"
 
@@ -8244,18 +8790,13 @@ msgstr "Postęp"
 msgid "Progressive"
 msgstr "Progresywny"
 
-msgid "Propagate"
-msgstr "Propaguj"
+#, fuzzy
+msgid "Project Id"
+msgstr "Przestarzałe"
 
 msgid "Proportional"
 msgstr "Proporcjonalny"
 
-msgid "Public and privately shared sheets"
-msgstr "Publiczne i prywatnie udostępnione arkusze"
-
-msgid "Publicly shared sheets only"
-msgstr "Tylko publicznie udostępnione arkusze"
-
 msgid "Published"
 msgstr "Opublikowany"
 
@@ -8267,7 +8808,9 @@ msgid "Put labels outside"
 msgstr "Umieść etykiety na zewnątrz"
 
 msgid "Put positive values and valid minute and second value less than 60"
-msgstr "Podaj wartości dodatnie i prawidłowe wartości minut i sekund mniejsze niż 60"
+msgstr ""
+"Podaj wartości dodatnie i prawidłowe wartości minut i sekund mniejsze niż"
+" 60"
 
 #, fuzzy
 msgid "Put some positive value greater than 0"
@@ -8276,9 +8819,6 @@ msgstr "Podaj wartość większą niż 0"
 msgid "Put the labels outside of the pie?"
 msgstr "Umieścić etykiety na zewnątrz wykresu kołowego?"
 
-msgid "Put the labels outside the pie?"
-msgstr "Umieścić etykiety na zewnątrz wykresu kołowego?"
-
 msgid "Put your code here"
 msgstr "Umieść tutaj swój kod"
 
@@ -8393,10 +8933,6 @@ msgstr "Promień w metrach"
 msgid "Radius in miles"
 msgstr "Promień w milach"
 
-#, python-format
-msgid "Ran %s"
-msgstr "Wykonano %s"
-
 #, fuzzy
 msgid "Range"
 msgstr "Zakres"
@@ -8428,24 +8964,9 @@ msgstr "Stosunek"
 msgid "Raw records"
 msgstr "Surowe dane"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Grafiki, pulpitry i zapisane zapytania utworzone niedawno pojawią się "
-"tutaj."
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Grafiki, pulpitry i zapisane zapytania ostatnio edytowane pojawią się "
-"tutaj."
-
 msgid "Recently modified"
 msgstr "Ostatnio zmienione"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Grafiki, pulpitry i zapisane zapytania ostatnio przeglądane pojawią się "
-"tutaj."
-
 msgid "Recents"
 msgstr "Ostatnie"
 
@@ -8465,10 +8986,6 @@ msgstr "Powtarzalny (co)"
 msgid "Red for increase, green for decrease"
 msgstr "Czerwony dla wzrostu, zielony dla spadku"
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr ""
-"Przekierowuje na ten punkt końcowy po kliknięciu tabeli na liście tabel."
-
 msgid "Redo the action"
 msgstr "Powtórz akcję"
 
@@ -8482,9 +8999,9 @@ msgid ""
 "scroll."
 msgstr ""
 "Zmniejsza liczbę punktów na osi X do wyświetlenia. Jeśli ustawione na "
-"Prawda, oś X nie przekroczy krawędzi, a etykiety mogą być pominięte. Jeśli "
-"fałsz, minimalna szerokość zostanie zastosowana do kolumn, a szerokość "
-"może przekroczyć do poziomego przewijania."
+"Prawda, oś X nie przekroczy krawędzi, a etykiety mogą być pominięte. "
+"Jeśli fałsz, minimalna szerokość zostanie zastosowana do kolumn, a "
+"szerokość może przekroczyć do poziomego przewijania."
 
 msgid "Refer to the"
 msgstr "Odnosi się do"
@@ -8511,6 +9028,10 @@ msgstr "Interwał odświeżania"
 msgid "Refresh interval saved"
 msgstr "Interwał odświeżania zapisany"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "Zobacz schemat tabeli"
+
 msgid "Refresh the default values"
 msgstr "Odśwież domyślne wartości"
 
@@ -8531,11 +9052,11 @@ msgid ""
 "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 ""
-"Regularne filtry dodają klauzule WHERE do zapytań, jeśli użytkownik należy "
-"do roli określonej w filtrze. Filtry bazowe stosują filtry do wszystkich "
-"zapytań z wyjątkiem ról zdefiniowanych w filtrze i mogą być używane do "
-"określenia, co użytkownicy mogą zobaczyć, jeśli żadne filtry RLS w grupie "
-"filtrów ich nie dotyczą."
+"Regularne filtry dodają klauzule WHERE do zapytań, jeśli użytkownik "
+"należy do roli określonej w filtrze. Filtry bazowe stosują filtry do "
+"wszystkich zapytań z wyjątkiem ról zdefiniowanych w filtrze i mogą być "
+"używane do określenia, co użytkownicy mogą zobaczyć, jeśli żadne filtry "
+"RLS w grupie filtrów ich nie dotyczą."
 
 #, fuzzy
 msgid "Relational"
@@ -8574,8 +9095,10 @@ msgid "Remove table preview"
 msgstr "Usuń podgląd tabeli"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "Usunięte kolumny: %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
 
 msgid "Rename tab"
 msgstr "Zmień nazwę karty"
@@ -8586,12 +9109,10 @@ msgstr "Renderuj HTML"
 msgid "Render columns in HTML format"
 msgstr "Renderuj kolumny w formacie HTML"
 
-msgid "Render data in HTML format if applicable."
-msgstr "Renderuj dane w formacie HTML, jeśli to możliwe."
-
-#, fuzzy
-msgid "Rendering"
-msgstr "Renderowanie"
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
+msgstr ""
 
 msgid "Replace"
 msgstr "Zastąp"
@@ -8614,17 +9135,25 @@ msgid "Report Schedule delete failed."
 msgstr "Nie udało się usunąć harmonogramu raportu."
 
 msgid "Report Schedule execution failed when generating a csv."
-msgstr "Wykonanie harmonogramu raportu nie powiodło się podczas generowania pliku CSV."
+msgstr ""
+"Wykonanie harmonogramu raportu nie powiodło się podczas generowania pliku"
+" CSV."
 
 msgid "Report Schedule execution failed when generating a dataframe."
-msgstr "Wykonanie harmonogramu raportu nie powiodło się podczas generowania DataFrame."
+msgstr ""
+"Wykonanie harmonogramu raportu nie powiodło się podczas generowania "
+"DataFrame."
 
 #, fuzzy
 msgid "Report Schedule execution failed when generating a pdf."
-msgstr "Wykonanie harmonogramu raportu nie powiodło się podczas generowania pliku PDF."
+msgstr ""
+"Wykonanie harmonogramu raportu nie powiodło się podczas generowania pliku"
+" PDF."
 
 msgid "Report Schedule execution failed when generating a screenshot."
-msgstr "Wykonanie harmonogramu raportu nie powiodło się podczas generowania zrzutu ekranu."
+msgstr ""
+"Wykonanie harmonogramu raportu nie powiodło się podczas generowania "
+"zrzutu ekranu."
 
 msgid "Report Schedule execution got an unexpected error."
 msgstr "Wykonanie harmonogramu raportu napotkało nieoczekiwany błąd."
@@ -8695,6 +9224,9 @@ msgstr "Odrzucanie"
 msgid "Repulsion strength between nodes"
 msgstr "Siła odrzucania między węzłami"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "Żądanie jest nieprawidłowe: %(error)s"
@@ -8731,6 +9263,10 @@ msgstr "Operacja próbkowania na nowo wymaga DatetimeIndex"
 msgid "Reset"
 msgstr "Resetuj"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Wybierz kolumnę"
+
 msgid "Reset state"
 msgstr "Resetuj stan"
 
@@ -8755,7 +9291,13 @@ msgid "Results backend is not configured."
 msgstr "Backend wyników nie jest skonfigurowany."
 
 msgid "Results backend needed for asynchronous queries is not configured."
-msgstr "Backend wyników potrzebny do zapytań asynchronicznych nie jest skonfigurowany."
+msgstr ""
+"Backend wyników potrzebny do zapytań asynchronicznych nie jest "
+"skonfigurowany."
+
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "Pobierz ponownie wyniki"
 
 msgid "Return to specific datetime."
 msgstr "Powrót do określonego znacznika czasu."
@@ -8795,11 +9337,35 @@ msgid "Right value"
 msgstr "Wartość prawa"
 
 msgid "Right-click on a dimension value to drill to detail by that value."
-msgstr "Kliknij prawym przyciskiem myszy na wartość wymiaru, aby uzyskać szczegółowe informacje na jej temat."
+msgstr ""
+"Kliknij prawym przyciskiem myszy na wartość wymiaru, aby uzyskać "
+"szczegółowe informacje na jej temat."
 
 msgid "Role"
 msgstr "Rola"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Nazwa alarmu"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "Wartość jest wymagana"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Nazwa jest wymagana"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "Pomyślnie zmieniono zestaw danych!"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Role"
 
@@ -8809,9 +9375,9 @@ msgid ""
 "access to a dashboard will bypass dataset level checks. If no roles are "
 "defined, regular access permissions apply."
 msgstr ""
-"Role to lista definiująca dostęp do pulpitu nawigacyjnego. Przyznanie roli "
-"dostępu do pulpitu omija kontrole na poziomie zestawu danych. Jeśli nie zdefiniowano ról, "
-"obowiązują zwykłe uprawnienia dostępu."
+"Role to lista definiująca dostęp do pulpitu nawigacyjnego. Przyznanie "
+"roli dostępu do pulpitu omija kontrole na poziomie zestawu danych. Jeśli "
+"nie zdefiniowano ról, obowiązują zwykłe uprawnienia dostępu."
 
 #, fuzzy
 msgid ""
@@ -8819,9 +9385,9 @@ msgid ""
 "access to a dashboard will bypass dataset level checks.If no roles are "
 "defined, regular access permissions apply."
 msgstr ""
-"Role to lista definiująca dostęp do pulpitu nawigacyjnego. Przyznanie roli "
-"dostępu do pulpitu omija kontrole na poziomie zestawu danych. Jeśli nie zdefiniowano ról, "
-"obowiązują zwykłe uprawnienia dostępu."
+"Role to lista definiująca dostęp do pulpitu nawigacyjnego. Przyznanie "
+"roli dostępu do pulpitu omija kontrole na poziomie zestawu danych. Jeśli "
+"nie zdefiniowano ról, obowiązują zwykłe uprawnienia dostępu."
 
 #, fuzzy
 msgid "Rolling Function"
@@ -8871,7 +9437,8 @@ msgid ""
 "Row containing the headers to use as column names (0 is first line of "
 "data)."
 msgstr ""
-"Wiersz zawierający nagłówki do użycia jako nazwy kolumn (0 to pierwsza linia danych)."
+"Wiersz zawierający nagłówki do użycia jako nazwy kolumn (0 to pierwsza "
+"linia danych)."
 
 msgid "Row limit"
 msgstr "Limit wierszy"
@@ -8885,9 +9452,6 @@ msgstr "Wierszy na stronę, 0 oznacza brak stronicowania"
 msgid "Rows subtotal position"
 msgstr "Pozycja sumy częściowej wierszy"
 
-msgid "Rows to Read"
-msgstr "Wiersze do odczytu"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "Wiersze do odczytu"
@@ -8957,14 +9521,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL skopiowano!"
 
-msgid "SQL Expression"
-msgstr "Wyrażenie SQL"
-
 msgid "SQL Lab"
 msgstr "SQL Lab"
 
-msgid "SQL Lab View"
-msgstr "Widok SQL Lab"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "zapisane zapytania"
 
 #, python-format
 msgid ""
@@ -8976,11 +9538,15 @@ msgid ""
 "delete the tab.\n"
 "Note that you will need to close other SQL Lab windows before you do this."
 msgstr ""
-"SQL Lab korzysta z lokalnej pamięci przeglądarki do przechowywania zapytań i wyników.\n"
-"Obecnie używasz %(currentUsage)s KB z %(maxStorage)d KB dostępnego miejsca.\n"
+"SQL Lab korzysta z lokalnej pamięci przeglądarki do przechowywania "
+"zapytań i wyników.\n"
+"Obecnie używasz %(currentUsage)s KB z %(maxStorage)d KB dostępnego "
+"miejsca.\n"
 "Aby zapobiec awarii SQL Lab, usuń niektóre zakładki zapytań.\n"
-"Możesz ponownie uzyskać dostęp do tych zapytań, używając funkcji Zapisz przed usunięciem zakładki.\n"
-"Pamiętaj, że musisz zamknąć inne okna SQL Lab przed wykonaniem tej operacji."
+"Możesz ponownie uzyskać dostęp do tych zapytań, używając funkcji Zapisz "
+"przed usunięciem zakładki.\n"
+"Pamiętaj, że musisz zamknąć inne okna SQL Lab przed wykonaniem tej "
+"operacji."
 
 msgid "SQL Query"
 msgstr "Zapytanie SQL"
@@ -9063,20 +9629,10 @@ msgstr "Przykłady dla zestawu danych nie mogły zostać pobrane."
 msgid "Samples for datasource could not be retrieved."
 msgstr "Przykłady dla źródła danych nie mogły zostać pobrane."
 
-msgid "Sankey"
-msgstr "Sankey"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Wykres Sankey"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "Diagram Sankey (starsza wersja)"
-
-msgid "Sankey Diagram with Loops"
-msgstr "Diagram Sankey z pętlami"
-
 #, fuzzy
 msgid "Satellite"
 msgstr "Satelita"
@@ -9143,11 +9699,10 @@ msgstr "Zapisz lub nadpisz zestaw danych"
 msgid "Save query"
 msgstr "Zapisz zapytanie"
 
-msgid "Save the query to enable this feature"
-msgstr "Zapisz zapytanie, aby włączyć tę funkcję"
-
 msgid "Save this query as a virtual dataset to continue exploring"
-msgstr "Zapisz to zapytanie jako wirtualny zestaw danych, aby kontynuować eksplorację"
+msgstr ""
+"Zapisz to zapytanie jako wirtualny zestaw danych, aby kontynuować "
+"eksplorację"
 
 msgid "Saved"
 msgstr "Zapisano"
@@ -9173,6 +9728,10 @@ msgstr "Nie znaleziono zapisanego zapytania."
 msgid "Saved query parameters are invalid."
 msgstr "Parametry zapisanego zapytania są nieprawidłowe."
 
+#, fuzzy
+msgid "Saving..."
+msgstr "Ładowanie..."
+
 msgid "Scale and Move"
 msgstr "Skaluj i przenieś"
 
@@ -9192,7 +9751,8 @@ msgid ""
 "variables."
 msgstr ""
 "Wykres rozrzutu ma oś poziomą w jednostkach liniowych, a punkty są "
-"połączone w kolejności. Pokazuje związek statystyczny między dwiema zmiennymi."
+"połączone w kolejności. Pokazuje związek statystyczny między dwiema "
+"zmiennymi."
 
 msgid "Schedule"
 msgstr "Harmonogram"
@@ -9230,9 +9790,6 @@ msgstr "Schemat"
 msgid "Schema cache timeout"
 msgstr "Przekroczono czas pamięci podręcznej schematu"
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr "Schemat używany wyłącznie w niektórych bazach danych, takich jak Postgres, Redshift i DB2"
-
 #, fuzzy
 msgid "Schemas allowed for File upload"
 msgstr "Schematy dozwolone dla przesyłania plików"
@@ -9302,8 +9859,7 @@ msgid "Secondary Metric"
 msgstr "Metryka wtórna"
 
 msgid "Secondary currency format"
-msgstr ""
-"Format waluty pomocniczej"
+msgstr "Format waluty pomocniczej"
 
 msgid "Secondary y-axis Bounds"
 msgstr "Granice osi Y pomocniczej"
@@ -9322,9 +9878,6 @@ msgstr "%s sekund"
 msgid "Seconds value"
 msgstr "Wartość w sekundach"
 
-msgid "Secure Extra"
-msgstr "Dodatkowe zabezpieczenia"
-
 msgid "Secure extra"
 msgstr "Dodatkowe zabezpieczenie"
 
@@ -9412,7 +9965,9 @@ msgstr "Wybierz metrykę do wyświetlenia na prawej osi"
 msgid ""
 "Select a metric to display. You can use an aggregation function on a "
 "column or write custom SQL to create a metric."
-msgstr "Wybierz metrykę do wyświetlenia. Możesz użyć funkcji agregującej w kolumnie lub napisać własny SQL do utworzenia metryki."
+msgstr ""
+"Wybierz metrykę do wyświetlenia. Możesz użyć funkcji agregującej w "
+"kolumnie lub napisać własny SQL do utworzenia metryki."
 
 #, fuzzy
 msgid "Select a schema"
@@ -9426,10 +9981,16 @@ msgstr "Wybierz schemat, jeśli baza danych to obsługuje"
 msgid "Select a sheet name from the uploaded file"
 msgstr "Wybierz nazwę arkusza z przesłanego pliku"
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Wybierz bazę danych"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
-msgstr "Wybierz ziarnistość czasu dla wizualizacji. Ziarnistość określa interwał czasowy reprezentowany przez jeden punkt na wykresie."
+msgstr ""
+"Wybierz ziarnistość czasu dla wizualizacji. Ziarnistość określa interwał "
+"czasowy reprezentowany przez jeden punkt na wykresie."
 
 msgid "Select a visualization type"
 msgstr "Wybierz typ wizualizacji"
@@ -9445,8 +10006,8 @@ msgstr "Wybierz wszystkie dane"
 msgid "Select all items"
 msgstr "Wybierz wszystkie elementy"
 
-msgid "Select any columns for metadata inspection"
-msgstr "Wybierz dowolne kolumny do inspekcji metadanych"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 #, fuzzy
 msgid "Select catalog or type to search catalogs"
@@ -9474,10 +10035,18 @@ msgstr "Wybierz schemat kolorów"
 msgid "Select column"
 msgstr "Wybierz kolumnę"
 
+#, fuzzy
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+"Z listy rozwijanej wybierz nazwy kolumn, które mają być traktowane jako "
+"daty."
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
-msgstr "Wybierz kolumny, które będą wyświetlane w tabeli. Możesz wybrać wiele kolumn."
+msgstr ""
+"Wybierz kolumny, które będą wyświetlane w tabeli. Możesz wybrać wiele "
+"kolumn."
 
 #, fuzzy
 msgid "Select content type"
@@ -9576,6 +10145,14 @@ msgstr "Wybierz lub wprowadź nazwę zestawu danych"
 msgid "Select owners"
 msgstr "Wybierz właścicieli"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Wybierz tagi"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Wybierz właścicieli"
+
 msgid "Select saved metrics"
 msgstr "Wybierz zapisane metryki"
 
@@ -9591,9 +10168,19 @@ msgstr "Wybierz schemat lub wpisz, aby przeszukać schematy"
 msgid "Select scheme"
 msgstr "Wybierz schemat"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "Wybierz temat"
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Odznacz wszystko"
+
 #, fuzzy
 msgid "Select table or type to search tables"
 msgstr "Wybierz tabelę lub wpisz, aby przeszukać tabele"
@@ -9631,12 +10218,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr "Wybierz kolumnę geojson"
 
-msgid "Select the number of bins for the histogram"
-msgstr "Wybierz liczbę prostokątów dla histogramu"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "Wybierz kolumny numeryczne do narysowania histogramu"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9662,9 +10243,6 @@ msgstr "Wyślij jako PNG"
 msgid "Send as text"
 msgstr "Wyślij jako tekst"
 
-msgid "Send range filter events to other charts"
-msgstr "Wyślij zdarzenia filtrowania zakresu do innych wykresów"
-
 msgid "September"
 msgstr "Wrzesień"
 
@@ -9678,14 +10256,6 @@ msgstr "Seria"
 msgid "Series Height"
 msgstr "Wysokość serii"
 
-#, fuzzy
-msgid "Series Limit Sort By"
-msgstr "Ograniczenie serii - sortowanie według"
-
-#, fuzzy
-msgid "Series Limit Sort Descending"
-msgstr "Ograniczenie serii - sortowanie malejąco"
-
 #, fuzzy
 msgid "Series Order"
 msgstr "Kolejność serii"
@@ -9717,6 +10287,10 @@ msgstr "Paginacja serwera"
 msgid "Service Account"
 msgstr "Konto usługi"
 
+#, fuzzy
+msgid "Service version"
+msgstr "Konto usługi"
+
 msgid "Set auto-refresh interval"
 msgstr "Ustaw interwał automatycznego odświeżania"
 
@@ -9748,6 +10322,10 @@ msgstr "Ustawienia"
 msgid "Settings for time series"
 msgstr "Ustawienia dla serii czasowych"
 
+#, fuzzy
+msgid "Shape"
+msgstr "Kształt kołowy"
+
 msgid "Share"
 msgstr "Udostępnij"
 
@@ -9782,8 +10360,8 @@ msgid ""
 "Should daily seasonality be applied. An integer value will specify "
 "Fourier order of seasonality."
 msgstr ""
-"Czy powinna być zastosowana sezonowość dzienna? Wartość całkowita "
-"określi rząd Fouriera dla sezonowości."
+"Czy powinna być zastosowana sezonowość dzienna? Wartość całkowita określi"
+" rząd Fouriera dla sezonowości."
 
 msgid ""
 "Should weekly seasonality be applied. An integer value will specify "
@@ -9796,8 +10374,8 @@ msgid ""
 "Should yearly seasonality be applied. An integer value will specify "
 "Fourier order of seasonality."
 msgstr ""
-"Czy powinna być zastosowana sezonowość roczna? Wartość całkowita "
-"określi rząd Fouriera dla sezonowości."
+"Czy powinna być zastosowana sezonowość roczna? Wartość całkowita określi "
+"rząd Fouriera dla sezonowości."
 
 msgid "Show"
 msgstr "Pokaż"
@@ -9817,18 +10395,9 @@ msgstr "Pokaż instrukcję CREATE VIEW"
 msgid "Show Cell bars"
 msgstr "Pokaż paski komórek"
 
-msgid "Show Chart"
-msgstr "Pokaż wykres"
-
-msgid "Show Column"
-msgstr "Pokaż kolumnę"
-
 msgid "Show Dashboard"
 msgstr "Pokaż pulpit"
 
-msgid "Show Database"
-msgstr "Pokaż bazę danych"
-
 #, fuzzy
 msgid "Show Labels"
 msgstr "Pokaż etykiety"
@@ -9839,9 +10408,6 @@ msgstr "Pokaż logi"
 msgid "Show Markers"
 msgstr "Pokaż znaczniki"
 
-msgid "Show Metric"
-msgstr "Pokaż metrykę"
-
 #, fuzzy
 msgid "Show Metric Names"
 msgstr "Pokaż nazwy metryk"
@@ -9850,9 +10416,6 @@ msgstr "Pokaż nazwy metryk"
 msgid "Show Range Filter"
 msgstr "Pokaż filtr zakresu"
 
-msgid "Show Table"
-msgstr "Pokaż tabelę"
-
 #, fuzzy
 msgid "Show Timestamp"
 msgstr "Pokaż znacznik czasu"
@@ -9893,9 +10456,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "Pokaż wszystkie kolumny"
 
-msgid "Show all..."
-msgstr "Pokaż wszystko..."
-
 msgid "Show axis line ticks"
 msgstr "Pokaż znaczniki linii osi"
 
@@ -9921,6 +10481,10 @@ msgstr "Pokaż punkty danych jako okrągłe znaczniki na liniach"
 msgid "Show empty columns"
 msgstr "Pokaż puste kolumny"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "Pokaż wpisy %s"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9945,9 +10509,6 @@ msgstr "Pokaż legendę"
 msgid "Show less columns"
 msgstr "Pokaż mniej kolumn"
 
-msgid "Show less..."
-msgstr "Pokaż mniej..."
-
 msgid "Show minor ticks on axes."
 msgstr "Pokaż mniejsze znaczniki na osiach."
 
@@ -9989,6 +10550,10 @@ msgstr "Pokaż podsumowanie"
 msgid "Show the value on top of the bar"
 msgstr "Pokaż wartość na górze słupka"
 
+#, fuzzy
+msgid "Show total"
+msgstr "Pokaż sumę całkowitą"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -10001,32 +10566,34 @@ msgid ""
 "call attention to a KPI or the one thing you want your audience to focus "
 "on."
 msgstr ""
-"Prezentuje jedną metrykę w centralnym punkcie. Duża liczba najlepiej nadaje "
-"się do przyciągnięcia uwagi na KPI lub najważniejszy element dla odbiorców."
+"Prezentuje jedną metrykę w centralnym punkcie. Duża liczba najlepiej "
+"nadaje się do przyciągnięcia uwagi na KPI lub najważniejszy element dla "
+"odbiorców."
 
 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 ""
-"Prezentuje pojedynczą liczbę z prostym wykresem liniowym, aby zwrócić uwagę "
-"na istotną metrykę wraz ze zmianą w czasie lub innymi wymiarami."
+"Prezentuje pojedynczą liczbę z prostym wykresem liniowym, aby zwrócić "
+"uwagę na istotną metrykę wraz ze zmianą w czasie lub innymi wymiarami."
 
 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 ""
-"Pokazuje, jak zmienia się metryka w miarę postępu lejka. Ten klasyczny wykres "
-"jest przydatny do wizualizacji spadków między etapami w procesie lub cyklu życia."
+"Pokazuje, jak zmienia się metryka w miarę postępu lejka. Ten klasyczny "
+"wykres jest przydatny do wizualizacji spadków między etapami w procesie "
+"lub cyklu życia."
 
 msgid ""
 "Showcases the flow or link between categories using thickness of chords. "
 "The value and corresponding thickness can be different for each side."
 msgstr ""
 "Przedstawia przepływ lub powiązania między kategoriami, wykorzystując "
-"grubość wiązań. Wartość i odpowiadająca jej grubość mogą różnić się "
-"po obu stronach."
+"grubość wiązań. Wartość i odpowiadająca jej grubość mogą różnić się po "
+"obu stronach."
 
 msgid ""
 "Showcases the progress of a single metric against a given target. The "
@@ -10035,8 +10602,8 @@ msgstr ""
 "Przedstawia postęp jednej miary względem określonego celu. Im większe "
 "wypełnienie, tym bliżej miara jest do osiągnięcia celu."
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "Wyświetlanie %s z %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -10052,8 +10619,7 @@ msgid "Simple"
 msgstr "Prosty"
 
 msgid "Simple ad-hoc metrics are not enabled for this dataset"
-msgstr ""
-"Proste metryki ad hoc nie są włączone dla tego zestawu danych"
+msgstr "Proste metryki ad hoc nie są włączone dla tego zestawu danych"
 
 #, fuzzy
 msgid "Single"
@@ -10074,22 +10640,19 @@ msgstr "Pojedyncza wartość"
 msgid "Single value type"
 msgstr "Typ pojedynczej wartości"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "Określa rozmiar siatki w pikselach"
+
 msgid "Size of edge symbols"
 msgstr "Rozmiar symboli krawędzi"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "Rozmiar znacznika. Dotyczy również prognozowanych obserwacji."
 
-msgid "Sizes of vehicles"
-msgstr "Rozmiary pojazdów"
-
-msgid "Skip Rows"
-msgstr "Pomiń wiersze"
-
 #, fuzzy
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
-msgstr ""
-"Pomiń puste wiersze zamiast interpretować je jako wartości 'Nie Liczba'."
+msgstr "Pomiń puste wiersze zamiast interpretować je jako wartości 'Nie Liczba'."
 
 #, fuzzy
 msgid "Skip rows"
@@ -10115,8 +10678,8 @@ msgid ""
 "Smooth-line is a variation of the line chart. Without angles and hard "
 "edges, Smooth-line sometimes looks smarter and more professional."
 msgstr ""
-"Gładka linia to wariacja wykresu liniowego. Bez kątów i ostrych krawędzi, "
-"gładka linia czasami wygląda bardziej elegancko i profesjonalnie."
+"Gładka linia to wariacja wykresu liniowego. Bez kątów i ostrych krawędzi,"
+" gładka linia czasami wygląda bardziej elegancko i profesjonalnie."
 
 msgid "Solid"
 msgstr "Pełny"
@@ -10128,8 +10691,8 @@ msgid ""
 "Something went wrong with embedded authentication. Check the dev console "
 "for details."
 msgstr ""
-"Coś poszło nie tak z wbudowaną autoryzacją. Sprawdź konsolę programisty "
-"w celu uzyskania szczegółów."
+"Coś poszło nie tak z wbudowaną autoryzacją. Sprawdź konsolę programisty w"
+" celu uzyskania szczegółów."
 
 #, fuzzy
 msgid "Something went wrong."
@@ -10138,11 +10701,11 @@ msgstr "Coś poszło nie tak."
 #, python-format
 msgid "Sorry there was an error fetching database information: %s"
 msgstr ""
-"Przepraszamy, wystąpił błąd podczas pobierania informacji o bazie danych: %s"
+"Przepraszamy, wystąpił błąd podczas pobierania informacji o bazie danych:"
+" %s"
 
 msgid "Sorry there was an error fetching saved charts: "
-msgstr ""
-"Przepraszamy, wystąpił błąd podczas pobierania zapisanych wykresów:"
+msgstr "Przepraszamy, wystąpił błąd podczas pobierania zapisanych wykresów:"
 
 msgid "Sorry, An error occurred"
 msgstr "Przepraszamy, wystąpił błąd"
@@ -10161,8 +10724,7 @@ msgstr "Przepraszamy, wystąpił nieznany błąd."
 
 #, fuzzy
 msgid "Sorry, something went wrong. Embedding could not be deactivated."
-msgstr ""
-"Przepraszamy, wystąpił problem. Osadzenie nie mogło zostać dezaktywowane."
+msgstr "Przepraszamy, wystąpił problem. Osadzenie nie mogło zostać dezaktywowane."
 
 #, fuzzy
 msgid "Sorry, something went wrong. Please try again."
@@ -10171,32 +10733,25 @@ msgstr "Coś poszło nie tak. Spróbuj ponownie."
 msgid "Sorry, something went wrong. Try again later."
 msgstr "Coś poszło nie tak. Spróbuj ponownie później."
 
-msgid "Sorry, there appears to be no data"
-msgstr "Przepraszamy, wydaje się, że nie ma danych"
-
 #, fuzzy, python-format
 msgid "Sorry, there was an error saving this %s: %s"
-msgstr ""
-"Przepraszamy, wystąpił błąd podczas zapisywania tego %s: %s"
+msgstr "Przepraszamy, wystąpił błąd podczas zapisywania tego %s: %s"
 
 #, fuzzy, python-format
 msgid "Sorry, there was an error saving this dashboard: %s"
-msgstr ""
-"Przepraszamy, wystąpił błąd podczas zapisywania tego dashboardu: %s"
+msgstr "Przepraszamy, wystąpił błąd podczas zapisywania tego dashboardu: %s"
 
 msgid "Sorry, your browser does not support copying."
 msgstr "Przepraszamy, Twoja przeglądarka nie obsługuje kopiowania."
 
 msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!"
-msgstr "Przepraszamy, Twoja przeglądarka nie obsługuje kopiowania. Użyj Ctrl / Cmd + C!"
+msgstr ""
+"Przepraszamy, Twoja przeglądarka nie obsługuje kopiowania. Użyj Ctrl / "
+"Cmd + C!"
 
 msgid "Sort"
 msgstr "Sortuj"
 
-#, fuzzy
-msgid "Sort Bars"
-msgstr "Sortuj paski"
-
 #, fuzzy
 msgid "Sort Descending"
 msgstr "Sortuj malejąco"
@@ -10221,9 +10776,6 @@ msgstr "Sortuj oś Y"
 msgid "Sort ascending"
 msgstr "Sortuj rosnąco"
 
-msgid "Sort bars by x labels."
-msgstr "Sortuj paski według etykiet x."
-
 msgid "Sort by"
 msgstr "Sortuj według"
 
@@ -10251,6 +10803,10 @@ msgstr "Sortuj wartości filtra"
 msgid "Sort metric"
 msgstr "Sortuj metryki"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "Eksportuj zapytanie"
+
 #, fuzzy
 msgid "Sort rows by"
 msgstr "Sortuj wiersze według"
@@ -10264,10 +10820,6 @@ msgstr "Sortuj według typu"
 msgid "Source"
 msgstr "Źródło:"
 
-#, fuzzy
-msgid "Source / Target"
-msgstr "Źródło / Cel"
-
 msgid "Source SQL"
 msgstr "Źródłowy SQL"
 
@@ -10295,8 +10847,8 @@ msgid ""
 "Specify the database version. This is used with Presto for query cost "
 "estimation, and Dremio for syntax changes, among others."
 msgstr ""
-"Określ wersję bazy danych. Jest to używane z Presto do szacowania kosztów "
-"zapytań oraz z Dremio do zmian składni, między innymi."
+"Określ wersję bazy danych. Jest to używane z Presto do szacowania kosztów"
+" zapytań oraz z Dremio do zmian składni, między innymi."
 
 #, fuzzy
 msgid "Split number"
@@ -10318,9 +10870,6 @@ msgstr "Mile kwadratowe"
 msgid "Stack"
 msgstr "Stos"
 
-msgid "Stack Trace:"
-msgstr "Ślad stosu:"
-
 msgid "Stack series"
 msgstr "Seria stosów"
 
@@ -10337,9 +10886,6 @@ msgstr "Zestawione paski"
 msgid "Stacked Style"
 msgstr "Styl zestawiony"
 
-msgid "Stacked style"
-msgstr "Styl zestawiony"
-
 msgid "Standard time series"
 msgstr "Standardowa seria czasowa"
 
@@ -10418,10 +10964,10 @@ msgid ""
 "chart can be useful when you want to show the changes that occur at "
 "irregular intervals."
 msgstr ""
-"Wykres liniowy schodkowy (nazywany również wykresem krokowym) to wariacja "
-"wykresu liniowego, gdzie linia tworzy serię schodków między punktami danych. "
-"Taki wykres może być przydatny do przedstawiania zmian zachodzących w nieregularnych "
-"odstępach czasu."
+"Wykres liniowy schodkowy (nazywany również wykresem krokowym) to wariacja"
+" wykresu liniowego, gdzie linia tworzy serię schodków między punktami "
+"danych. Taki wykres może być przydatny do przedstawiania zmian "
+"zachodzących w nieregularnych odstępach czasu."
 
 msgid "Stop"
 msgstr "Zatrzymaj"
@@ -10450,10 +10996,6 @@ msgstr "Ulice"
 msgid "Strength to pull the graph toward center"
 msgstr "Siła przyciągania wykresu do środka"
 
-#, fuzzy
-msgid "Stretched style"
-msgstr "Styl rozciągnięty"
-
 #, fuzzy
 msgid "Stroke Color"
 msgstr "Kolor obrysu"
@@ -10478,16 +11020,20 @@ msgstr "Dostosuj końce paska postępu za pomocą zaokrąglonego zakończenia"
 msgid "Subdomain"
 msgstr "Subdomena"
 
-#, fuzzy
-msgid "Subheader"
-msgstr "Podtytuł"
-
 msgid "Subheader Font Size"
 msgstr "Rozmiar czcionki podtytułu"
 
 msgid "Submit"
 msgstr "Zatwierdź"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "Tytuł zakładki"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Rozmiar bąbelków"
+
 msgid "Subtotal"
 msgstr "Suma częściowa"
 
@@ -10543,9 +11089,6 @@ msgstr "Dokumentacja wbudowanego SDK Superset."
 msgid "Superset chart"
 msgstr "Wykres Superset"
 
-msgid "Superset dashboard"
-msgstr "Pulpit nawigacyjny Superset"
-
 msgid "Superset encountered an error while running a command."
 msgstr "Superset napotkał błąd podczas wykonywania polecenia."
 
@@ -10556,9 +11099,6 @@ msgstr "Superset napotkał nieoczekiwany błąd."
 msgid "Supported databases"
 msgstr "Obsługiwane bazy danych"
 
-msgid "Survey Responses"
-msgstr "Odpowiedzi w ankiecie"
-
 #, fuzzy
 msgid "Swap dataset"
 msgstr "Zamień zestaw danych"
@@ -10571,8 +11111,15 @@ msgid ""
 "scatter, and bar charts. This viz type has many customization options as "
 "well."
 msgstr ""
-"Szwajcarski scyzoryk do wizualizacji danych. Wybierz spośród wykresów schodkowych, "
-"liniowych, punktowych i słupkowych. Ten typ wizualizacji oferuje również wiele opcji personalizacji."
+"Szwajcarski scyzoryk do wizualizacji danych. Wybierz spośród wykresów "
+"schodkowych, liniowych, punktowych i słupkowych. Ten typ wizualizacji "
+"oferuje również wiele opcji personalizacji."
+
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
 
 #, fuzzy
 msgid "Symbol"
@@ -10585,24 +11132,30 @@ msgstr "Symbol obu końców linii krawędzi"
 msgid "Symbol size"
 msgstr "Rozmiar symbolu"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "Synchronizuj kolumny ze źródła"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "Składnia"
 
 #, python-format
 msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s"
-msgstr ""
-"Błąd składni: %(qualifier)s wejście „%(input)s” oczekiwano „%(expected)s"
+msgstr "Błąd składni: %(qualifier)s wejście „%(input)s” oczekiwano „%(expected)s"
 
 msgid "TABLES"
 msgstr "TABEL"
 
-#, fuzzy
-msgid "TEMPORAL X-AXIS"
-msgstr "OŚ X CZASOWA"
-
 #, fuzzy
 msgid "TEMPORAL_RANGE"
 msgstr "ZAKRES_CZASOWY"
@@ -10638,15 +11191,19 @@ msgid ""
 "Table [%(table)s] could not be found, please double check your database "
 "connection, schema, and table name"
 msgstr ""
-"Tabela [%(table)s] nie została znaleziona, sprawdź połączenie z bazą danych, "
-"schemat oraz nazwę tabeli."
+"Tabela [%(table)s] nie została znaleziona, sprawdź połączenie z bazą "
+"danych, schemat oraz nazwę tabeli."
+
+#, fuzzy
+msgid "Table actions"
+msgstr "Kolumny tabeli"
 
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
 msgstr ""
-"Tabela już istnieje. Możesz zmienić strategię 'jeśli tabela już istnieje' "
-"na dołączenie lub zastąpienie, lub podać inną nazwę tabeli."
+"Tabela już istnieje. Możesz zmienić strategię 'jeśli tabela już istnieje'"
+" na dołączenie lub zastąpienie, lub podać inną nazwę tabeli."
 
 msgid "Table cache timeout"
 msgstr "Limit czasu pamięci podręcznej tabeli"
@@ -10655,6 +11212,10 @@ msgstr "Limit czasu pamięci podręcznej tabeli"
 msgid "Table columns"
 msgstr "Kolumny tabeli"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Nazwa tabeli"
+
 msgid "Table name undefined"
 msgstr "Nieokreślona nazwa tabeli"
 
@@ -10666,7 +11227,8 @@ msgid ""
 "Table that visualizes paired t-tests, which are used to understand "
 "statistical differences between groups."
 msgstr ""
-"Tabela wizualizująca testy t dla par, które są używane do analizy różnic statystycznych między grupami."
+"Tabela wizualizująca testy t dla par, które są używane do analizy różnic "
+"statystycznych między grupami."
 
 msgid "Tables"
 msgstr "Tabele"
@@ -10726,12 +11288,6 @@ msgstr "Nie udało się usunąć oznaczonego obiektu."
 msgid "Tags"
 msgstr "Etykiety"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-"Skup swoje punkty danych w „koszykach”, aby zobaczyć, gdzie znajdują się najbardziej zagęszczone obszary informacji."
-
 #, fuzzy
 msgid "Target"
 msgstr "Cel"
@@ -10758,15 +11314,21 @@ msgid ""
 "Templated link, it's possible to include {{ metric }} or other values "
 "coming from the controls."
 msgstr ""
-"Link szablonowy, możliwe jest uwzględnienie {{ metric }} lub innych wartości pochodzących z elementów sterujących."
+"Link szablonowy, możliwe jest uwzględnienie {{ metric }} lub innych "
+"wartości pochodzących z elementów sterujących."
+
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "Jest czasowy"
 
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
 "databases."
 msgstr ""
-"Zatrzymaj zapytania w toku po zamknięciu okna przeglądarki lub przejściu na inną stronę. "
-"Dostępne dla baz danych Presto, Hive, MySQL, Postgres i Snowflake."
+"Zatrzymaj zapytania w toku po zamknięciu okna przeglądarki lub przejściu "
+"na inną stronę. Dostępne dla baz danych Presto, Hive, MySQL, Postgres i "
+"Snowflake."
 
 msgid "Test Connection"
 msgstr "Testuj połączenie"
@@ -10810,11 +11372,8 @@ msgid ""
 "The GeoJsonLayer takes in GeoJSON formatted data and renders it as "
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
-"Warstwa GeoJsonLayer przyjmuje dane w formacie GeoJSON i renderuje je jako "
-"interaktywne wielokąty, linie i punkty (koła, ikony i/lub teksty)."
-
-msgid "The SQL is invalid and cannot be parsed."
-msgstr "SQL jest nieprawidłowy i nie można go przetworzyć."
+"Warstwa GeoJsonLayer przyjmuje dane w formacie GeoJSON i renderuje je "
+"jako interaktywne wielokąty, linie i punkty (koła, ikony i/lub teksty)."
 
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
@@ -10843,8 +11402,8 @@ msgid ""
 " the filters list?"
 msgstr ""
 "Oś X nie znajduje się na liście filtrów, co uniemożliwi jej użycie w "
-"filtrach zakresu czasu na pulpitach nawigacyjnych. Czy chcesz dodać ją do "
-"listy filtrów?"
+"filtrach zakresu czasu na pulpitach nawigacyjnych. Czy chcesz dodać ją do"
+" listy filtrów?"
 
 msgid "The annotation has been saved"
 msgstr "Adnotacja została zapisana."
@@ -10852,12 +11411,17 @@ msgstr "Adnotacja została zapisana."
 msgid "The annotation has been updated"
 msgstr "Adnotacja została zaktualizowana."
 
+#, fuzzy
+msgid "The background color of the charts."
+msgstr "Dodaj nazwę wykresu"
+
 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 ""
 "Kategoria węzłów źródłowych używana do przypisania kolorów. Jeśli węzeł "
-"jest związany z więcej niż jedną kategorią, używana będzie tylko pierwsza."
+"jest związany z więcej niż jedną kategorią, używana będzie tylko "
+"pierwsza."
 
 msgid "The chart datasource does not exist"
 msgstr "Źródło danych wykresu nie istnieje."
@@ -10879,7 +11443,8 @@ msgid ""
 msgstr ""
 "Klasyk. Świetny do pokazania, jaką część firmy otrzymuje każdy inwestor, "
 "jakie grupy demograficzne śledzą Twój blog lub jaka część budżetu trafia "
-"do kompleksu wojskowo-przemysłowego.\n\n"
+"do kompleksu wojskowo-przemysłowego.\n"
+"\n"
 "        Diagramy kołowe mogą być trudne do precyzyjnej interpretacji. "
 "Jeśli ważna jest czytelność proporcji względnych, rozważ użycie diagramu "
 "słupkowego lub innego typu wykresu."
@@ -10887,6 +11452,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr "Kolor punktów i klastrów w RGB."
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "Kolor izolini."
+
 msgid "The color of the isoband"
 msgstr "Kolor izobandy."
 
@@ -10903,6 +11472,15 @@ msgstr ""
 "Schemat kolorów jest określony przez powiązany pulpit nawigacyjny.\n"
 "        Edytuj schemat kolorów w właściwościach pulpitu nawigacyjnego."
 
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+"Ten schemat kolorów został zastąpiony przez niestandardowe kolory "
+"etykiet. Sprawdź metadane JSON w ustawieniach zaawansowanych."
+
 msgid "The column header label"
 msgstr "Etykieta nagłówka kolumny."
 
@@ -10915,6 +11493,12 @@ msgstr "Kolumna używana jako cel krawędzi."
 msgid "The column was deleted or renamed in the database."
 msgstr "Kolumna została usunięta lub przemianowana w bazie danych."
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10928,30 +11512,13 @@ msgstr "Pulpit nawigacyjny został zapisany."
 msgid "The data source seems to have been deleted"
 msgstr "Źródło danych wydaje się zostało usunięte."
 
-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 ""
-"Typ danych ustalony przez bazę danych. W niektórych przypadkach może być "
-"konieczne ręczne wprowadzenie typu dla kolumn zdefiniowanych przez "
-"wyrażenia. W większości przypadków użytkownicy nie powinni tego zmieniać."
-
-#, 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 ""
-"Baza danych %s jest powiązana z %s wykresami, które pojawiają się na %s "
-"tablicach rozdzielczych, a użytkownicy mają otwarte %s zakładki SQL Lab "
-"korzystające z tej bazy danych. Czy na pewno chcesz kontynuować? Usunięcie "
-"bazy danych spowoduje przerwanie działania tych obiektów."
+#, fuzzy
+msgid "The database"
+msgstr "Usuń bazę danych"
 
 #, fuzzy
 msgid "The database columns that contains lines information"
-msgstr ""
-"Kolumny bazy danych zawierające informacje o liniach"
+msgstr "Kolumny bazy danych zawierające informacje o liniach"
 
 #, fuzzy
 msgid "The database could not be found"
@@ -10967,8 +11534,8 @@ msgid ""
 "The database referenced in this query was not found. Please contact an "
 "administrator for further assistance or try again."
 msgstr ""
-"Baza danych, do której odwołuje się to zapytanie, nie została znaleziona. "
-"Skontaktuj się z administratorem lub spróbuj ponownie."
+"Baza danych, do której odwołuje się to zapytanie, nie została znaleziona."
+" Skontaktuj się z administratorem lub spróbuj ponownie."
 
 msgid "The database returned an unexpected error."
 msgstr "Baza danych zwróciła nieoczekiwany błąd."
@@ -10983,26 +11550,22 @@ msgstr "Baza danych została usunięta."
 msgid "The database was not found."
 msgstr "Nie znaleziono bazy danych."
 
-#, 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 ""
-"Zestaw danych %s jest powiązany z %s wykresami, które pojawiają się na %s "
-"tablicach rozdzielczych. Czy na pewno chcesz kontynuować? Usunięcie zestawu "
-"danych spowoduje przerwanie działania tych obiektów."
+#, fuzzy
+msgid "The dataset"
+msgstr "Nowy zbiór danych"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "Zestaw danych powiązany z tym wykresem już nie istnieje."
 
 msgid "The dataset column/metric that returns the values on your chart's x-axis."
 msgstr ""
-"Kolumna/miara zestawu danych, która zwraca wartości na osi X twojego wykresu."
+"Kolumna/miara zestawu danych, która zwraca wartości na osi X twojego "
+"wykresu."
 
 msgid "The dataset column/metric that returns the values on your chart's y-axis."
 msgstr ""
-"Kolumna/miara zestawu danych, która zwraca wartości na osi Y twojego wykresu."
+"Kolumna/miara zestawu danych, która zwraca wartości na osi Y twojego "
+"wykresu."
 
 msgid ""
 "The dataset configuration exposed here\n"
@@ -11012,7 +11575,8 @@ msgid ""
 "                in undesirable ways."
 msgstr ""
 "Konfiguracja zestawu danych pokazana tutaj\n"
-"                wpływa na wszystkie wykresy używające tego zestawu danych.\n"
+"                wpływa na wszystkie wykresy używające tego zestawu "
+"danych.\n"
 "                Zmiana ustawień tutaj\n"
 "                może niekorzystnie wpłynąć na inne wykresy."
 
@@ -11048,7 +11612,8 @@ msgid ""
 "The duration of time in seconds before the cache is invalidated. Set to "
 "-1 to bypass the cache."
 msgstr ""
-"Czas w sekundach przed unieważnieniem pamięci podręcznej. Ustaw -1, aby pominąć pamięć podręczną."
+"Czas w sekundach przed unieważnieniem pamięci podręcznej. Ustaw -1, aby "
+"pominąć pamięć podręczną."
 
 msgid "The encoding format of the lines"
 msgstr "Format kodowania linii"
@@ -11057,14 +11622,25 @@ msgid ""
 "The engine_params object gets unpacked into the sqlalchemy.create_engine "
 "call."
 msgstr ""
-"Obiekt engine_params jest rozpakowywany podczas wywoływania sqlalchemy.create_engine."
+"Obiekt engine_params jest rozpakowywany podczas wywoływania "
+"sqlalchemy.create_engine."
+
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
 
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
 "%(columns)s. "
 msgstr ""
-"Następujące wpisy w `series_columns` są brakujące w `columns`: %(columns)s."
+"Następujące wpisy w `series_columns` są brakujące w `columns`: "
+"%(columns)s."
 
 #, python-format
 msgid ""
@@ -11073,13 +11649,18 @@ msgid ""
 "preventing the dashboard\n"
 "                    from rendering: %s"
 msgstr ""
-"Następujące filtry mają zaznaczoną opcję 'Wybierz pierwszą wartość filtra domyślnie'\n"
-"                    i nie można ich załadować, co uniemożliwia wyświetlenie panelu:\n"
+"Następujące filtry mają zaznaczoną opcję 'Wybierz pierwszą wartość filtra"
+" domyślnie'\n"
+"                    i nie można ich załadować, co uniemożliwia "
+"wyświetlenie panelu:\n"
 "                    %s"
 
 msgid "The function to use when aggregating points into groups"
 msgstr "Funkcja do użycia przy grupowaniu punktów"
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -11089,25 +11670,27 @@ msgid ""
 "          insights into its shape, central tendency, and spread."
 msgstr ""
 "Histogram przedstawia rozkład danych poprzez\n"
-"          prezentację częstotliwości lub liczby wartości w różnych przedziałach.\n"
+"          prezentację częstotliwości lub liczby wartości w różnych "
+"przedziałach.\n"
 "          Pomaga wizualizować wzorce, skupiska i odstające dane,\n"
 "          dostarczając wgląd w ich kształt, tendencję centralną i rozkład."
 
 #, python-format
 msgid "The host \"%(hostname)s\" might be down and can't be reached."
-msgstr ""
-"Host „%(hostname)s” może być niedostępny i nie można się z nim połączyć."
+msgstr "Host „%(hostname)s” może być niedostępny i nie można się z nim połączyć."
 
 #, python-format
 msgid ""
 "The host \"%(hostname)s\" might be down, and can't be reached on port "
 "%(port)s."
 msgstr ""
-"Host „%(hostname)s” może być niedostępny i nie można się z nim połączyć na porcie %(port)s."
+"Host „%(hostname)s” może być niedostępny i nie można się z nim połączyć "
+"na porcie %(port)s."
 
 msgid "The host might be down, and can't be reached on the provided port."
 msgstr ""
-"Host może być niedostępny i nie można się z nim połączyć na podanym porcie."
+"Host może być niedostępny i nie można się z nim połączyć na podanym "
+"porcie."
 
 #, python-format
 msgid "The hostname \"%(hostname)s\" cannot be resolved."
@@ -11119,29 +11702,19 @@ msgstr "Podana nazwa hosta nie może zostać rozpoznana."
 msgid "The id of the active chart"
 msgstr "Identyfikator aktywnego wykresu"
 
-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 ""
-"Lista wykresów powiązanych z tą tabelą. Zmiana tego źródła danych może wpłynąć\n"
-"na zachowanie tych wykresów. Należy pamiętać, że wykresy muszą wskazywać na źródło danych,\n"
-"więc formularz nie zostanie zapisany, jeśli usuniesz wykresy ze źródła danych.\n"
-"Aby zmienić źródło danych dla wykresu, zastąp go w 'widoku eksploracji'."
+#, fuzzy
+msgid "The layer attribution"
+msgstr "Atrybuty formularza związane z czasem"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr "Dolna granica zakresu progowego Isoband"
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr "Maksymalna liczba zdarzeń do zwrócenia, odpowiadająca liczbie wierszy"
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
 msgstr ""
-"Maksymalna liczba podziałów dla każdej grupy; niższe wartości są usuwane w pierwszej kolejności"
+"Maksymalna liczba podziałów dla każdej grupy; niższe wartości są usuwane "
+"w pierwszej kolejności"
 
 msgid "The maximum value of metrics. It is an optional configuration"
 msgstr "Maksymalna wartość metryk. Jest to opcjonalna konfiguracja."
@@ -11151,19 +11724,20 @@ msgid ""
 "The metadata_params in Extra field is not configured correctly. The key "
 "%(key)s is invalid."
 msgstr ""
-"Parametr metadata_params w polu dodatkowym jest niepoprawnie skonfigurowany. Klucz %(key)s jest nieprawidłowy."
+"Parametr metadata_params w polu dodatkowym jest niepoprawnie "
+"skonfigurowany. Klucz %(key)s jest nieprawidłowy."
 
 msgid ""
 "The metadata_params in Extra field is not configured correctly. The key "
 "%{key}s is invalid."
 msgstr ""
-"Parametr metadata_params w polu dodatkowym jest niepoprawnie skonfigurowany. Klucz %{key}s jest nieprawidłowy."
+"Parametr metadata_params w polu dodatkowym jest niepoprawnie "
+"skonfigurowany. Klucz %{key}s jest nieprawidłowy."
 
 msgid ""
 "The metadata_params object gets unpacked into the sqlalchemy.MetaData "
 "call."
-msgstr ""
-"Obiekt metadata_params jest rozwijany do wywołania sqlalchemy.MetaData."
+msgstr "Obiekt metadata_params jest rozwijany do wywołania sqlalchemy.MetaData."
 
 msgid ""
 "The minimum number of rolling periods required to show a value. For "
@@ -11172,11 +11746,27 @@ msgid ""
 "periods. This will hide the \"ramp up\" taking place over the first 7 "
 "periods"
 msgstr ""
-"Minimalna liczba okresów przetaczania wymagana do wyświetlenia wartości. Na przykład,\n"
-"jeśli wykonujesz sumę skumulowaną dla 7 dni, możesz ustawić 'Minimalny Okres' na 7,\n"
-"aby wszystkie wyświetlane punkty danych były sumą 7 okresów. To ukryje 'narastanie',\n"
+"Minimalna liczba okresów przetaczania wymagana do wyświetlenia wartości. "
+"Na przykład,\n"
+"jeśli wykonujesz sumę skumulowaną dla 7 dni, możesz ustawić 'Minimalny "
+"Okres' na 7,\n"
+"aby wszystkie wyświetlane punkty danych były sumą 7 okresów. To ukryje "
+"'narastanie',\n"
 "które ma miejsce w pierwszych 7 okresach."
 
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "Maksymalna wartość metryk. Jest to opcjonalna konfiguracja."
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Nazwa kolumny identyfikacyjnej"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 #, fuzzy
 msgid "The name of the rule must be unique"
 msgstr "Nazwa reguły musi być unikalna."
@@ -11192,7 +11782,8 @@ 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 ""
-"Liczba godzin, dodatnia lub ujemna, do przesunięcia kolumny czasu. Może być użyta do zmiany czasu UTC na czas lokalny."
+"Liczba godzin, dodatnia lub ujemna, do przesunięcia kolumny czasu. Może "
+"być użyta do zmiany czasu UTC na czas lokalny."
 
 #, python-format
 msgid ""
@@ -11200,8 +11791,10 @@ msgid ""
 "configuration DISPLAY_MAX_ROW. Please add additional limits/filters or "
 "download to csv to see more rows up to the %(limit)d limit."
 msgstr ""
-"Liczba wyświetlanych wyników jest ograniczona do %(rows)d przez konfigurację DISPLAY_MAX_ROW.\n"
-"Dodaj dodatkowe limity/filtry lub pobierz dane w formacie CSV, aby zobaczyć więcej wierszy do limitu %(limit)d."
+"Liczba wyświetlanych wyników jest ograniczona do %(rows)d przez "
+"konfigurację DISPLAY_MAX_ROW.\n"
+"Dodaj dodatkowe limity/filtry lub pobierz dane w formacie CSV, aby "
+"zobaczyć więcej wierszy do limitu %(limit)d."
 
 #, python-format
 msgid ""
@@ -11209,18 +11802,22 @@ msgid ""
 "additional limits/filters, download to csv, or contact an admin to see "
 "more rows up to the %(limit)d limit."
 msgstr ""
-"Liczba wyświetlanych wyników jest ograniczona do %(rows)d. Dodaj dodatkowe limity/filtry,\n"
-"pobierz dane w formacie CSV lub skontaktuj się z administratorem, aby zobaczyć więcej wierszy do limitu %(limit)d."
+"Liczba wyświetlanych wyników jest ograniczona do %(rows)d. Dodaj "
+"dodatkowe limity/filtry,\n"
+"pobierz dane w formacie CSV lub skontaktuj się z administratorem, aby "
+"zobaczyć więcej wierszy do limitu %(limit)d."
 
 #, fuzzy, python-format
 msgid "The number of rows displayed is limited to %(rows)d by the dropdown."
 msgstr ""
-"Liczba wyświetlanych wierszy jest ograniczona do %(rows)d przez listę rozwijaną."
+"Liczba wyświetlanych wierszy jest ograniczona do %(rows)d przez listę "
+"rozwijaną."
 
 #, python-format
 msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown."
 msgstr ""
-"Liczba wyświetlanych wierszy jest ograniczona do %(rows)d przez limit w rozwijanym menu."
+"Liczba wyświetlanych wierszy jest ograniczona do %(rows)d przez limit w "
+"rozwijanym menu."
 
 #, python-format
 msgid "The number of rows displayed is limited to %(rows)d by the query"
@@ -11231,7 +11828,8 @@ msgid ""
 "The number of rows displayed is limited to %(rows)d by the query and "
 "limit dropdown."
 msgstr ""
-"Liczba wyświetlanych wierszy jest ograniczona do %(rows)d przez zapytanie i limit w rozwijanym menu."
+"Liczba wyświetlanych wierszy jest ograniczona do %(rows)d przez zapytanie"
+" i limit w rozwijanym menu."
 
 msgid "The number of seconds before expiring the cache"
 msgstr "Liczba sekund przed wygaśnięciem pamięci podręcznej"
@@ -11243,7 +11841,9 @@ msgstr "Obiekt nie istnieje w podanej bazie danych."
 msgid "The parameter %(parameters)s in your query is undefined."
 msgid_plural "The following parameters in your query are undefined: %(parameters)s."
 msgstr[0] "Parametr %(parameters)s w twoim zapytaniu jest niezdefiniowany."
-msgstr[1] "Następujące parametry w twoim zapytaniu są niezdefiniowane: %(parameters)s."
+msgstr[1] ""
+"Następujące parametry w twoim zapytaniu są niezdefiniowane: "
+"%(parameters)s."
 
 #, python-format
 msgid "The password provided for username \"%(username)s\" is incorrect."
@@ -11259,9 +11859,10 @@ msgid ""
 " export files, and should be added manually after the import if they are "
 "needed."
 msgstr ""
-"Hasła do poniższych baz danych są wymagane, aby je zaimportować razem z wykresami. "
-"Należy pamiętać, że sekcje „Dodatkowe zabezpieczenia” i „Certyfikat” konfiguracji bazy "
-"danych nie są uwzględnione w plikach eksportu i powinny zostać dodane ręcznie po imporcie, jeśli są potrzebne."
+"Hasła do poniższych baz danych są wymagane, aby je zaimportować razem z "
+"wykresami. Należy pamiętać, że sekcje „Dodatkowe zabezpieczenia” i "
+"„Certyfikat” konfiguracji bazy danych nie są uwzględnione w plikach "
+"eksportu i powinny zostać dodane ręcznie po imporcie, jeśli są potrzebne."
 
 msgid ""
 "The passwords for the databases below are needed in order to import them "
@@ -11270,9 +11871,11 @@ msgid ""
 " export files, and should be added manually after the import if they are "
 "needed."
 msgstr ""
-"Hasła do poniższych baz danych są wymagane, aby je zaimportować razem z pulpitami nawigacyjnymi. "
-"Należy pamiętać, że sekcje „Dodatkowe zabezpieczenia” i „Certyfikat” konfiguracji bazy "
-"danych nie są uwzględnione w plikach eksportu i powinny zostać dodane ręcznie po imporcie, jeśli są potrzebne."
+"Hasła do poniższych baz danych są wymagane, aby je zaimportować razem z "
+"pulpitami nawigacyjnymi. Należy pamiętać, że sekcje „Dodatkowe "
+"zabezpieczenia” i „Certyfikat” konfiguracji bazy danych nie są "
+"uwzględnione w plikach eksportu i powinny zostać dodane ręcznie po "
+"imporcie, jeśli są potrzebne."
 
 msgid ""
 "The passwords for the databases below are needed in order to import them "
@@ -11281,9 +11884,10 @@ msgid ""
 " export files, and should be added manually after the import if they are "
 "needed."
 msgstr ""
-"Hasła do poniższych baz danych są wymagane, aby je zaimportować razem z zestawami danych. "
-"Należy pamiętać, że sekcje „Dodatkowe zabezpieczenia” i „Certyfikat” konfiguracji bazy "
-"danych nie są uwzględnione w plikach eksportu i powinny zostać dodane ręcznie po imporcie, jeśli są potrzebne."
+"Hasła do poniższych baz danych są wymagane, aby je zaimportować razem z "
+"zestawami danych. Należy pamiętać, że sekcje „Dodatkowe zabezpieczenia” i"
+" „Certyfikat” konfiguracji bazy danych nie są uwzględnione w plikach "
+"eksportu i powinny zostać dodane ręcznie po imporcie, jeśli są potrzebne."
 
 msgid ""
 "The passwords for the databases below are needed in order to import them "
@@ -11292,9 +11896,11 @@ msgid ""
 "present in export files, and should be added manually after the import if"
 " they are needed."
 msgstr ""
-"Hasła do poniższych baz danych są wymagane, aby je zaimportować razem z zapisanymi zapytaniami. "
-"Należy pamiętać, że sekcje „Dodatkowe zabezpieczenia” i „Certyfikat” konfiguracji bazy "
-"danych nie są uwzględnione w plikach eksportu i powinny zostać dodane ręcznie po imporcie, jeśli są potrzebne."
+"Hasła do poniższych baz danych są wymagane, aby je zaimportować razem z "
+"zapisanymi zapytaniami. Należy pamiętać, że sekcje „Dodatkowe "
+"zabezpieczenia” i „Certyfikat” konfiguracji bazy danych nie są "
+"uwzględnione w plikach eksportu i powinny zostać dodane ręcznie po "
+"imporcie, jeśli są potrzebne."
 
 msgid ""
 "The passwords for the databases below are needed in order to import them."
@@ -11302,9 +11908,10 @@ msgid ""
 "the database configuration are not present in explore files and should be"
 " added manually after the import if they are needed."
 msgstr ""
-"Hasła do poniższych baz danych są wymagane, aby je zaimportować. Należy pamiętać, że sekcje "
-"„Dodatkowe zabezpieczenia” i „Certyfikat” konfiguracji bazy danych nie są uwzględnione w plikach eksploracyjnych "
-"i powinny zostać dodane ręcznie po imporcie, jeśli są potrzebne."
+"Hasła do poniższych baz danych są wymagane, aby je zaimportować. Należy "
+"pamiętać, że sekcje „Dodatkowe zabezpieczenia” i „Certyfikat” "
+"konfiguracji bazy danych nie są uwzględnione w plikach eksploracyjnych i "
+"powinny zostać dodane ręcznie po imporcie, jeśli są potrzebne."
 
 msgid "The pattern of timestamp format. For strings use "
 msgstr "Wzorzec formatu znacznika czasu. W przypadku ciągów użyj "
@@ -11315,8 +11922,9 @@ msgid ""
 "            Click on the info bubble for more details on accepted "
 "\"freq\" expressions."
 msgstr ""
-"Okresowość, według której należy obracać czas. Użytkownicy mogą podać alias przesunięcia „Pandas”. "
-"Kliknij ikonę informacji, aby uzyskać więcej szczegółów na temat akceptowanych wyrażeń „freq”."
+"Okresowość, według której należy obracać czas. Użytkownicy mogą podać "
+"alias przesunięcia „Pandas”. Kliknij ikonę informacji, aby uzyskać więcej"
+" szczegółów na temat akceptowanych wyrażeń „freq”."
 
 msgid "The pixel radius"
 msgstr "Promień w pikselach"
@@ -11326,8 +11934,9 @@ msgid ""
 " associated to this Superset logical table, and this logical table points"
 " the physical table referenced here."
 msgstr ""
-"Wskaźnik do tabeli fizycznej (lub widoku). Pamiętaj, że wykres jest powiązany z tą logiczną tabelą "
-"Superset, a ta logiczna tabela wskazuje na tabelę fizyczną opisaną tutaj."
+"Wskaźnik do tabeli fizycznej (lub widoku). Pamiętaj, że wykres jest "
+"powiązany z tą logiczną tabelą Superset, a ta logiczna tabela wskazuje na"
+" tabelę fizyczną opisaną tutaj."
 
 msgid "The port is closed."
 msgstr "Port jest zamknięty."
@@ -11377,17 +11986,17 @@ msgid ""
 "The query was killed after %(sqllab_timeout)s seconds. It might be too "
 "complex, or the database might be under heavy load."
 msgstr ""
-"Zapytanie zostało przerwane po %(sqllab_timeout)s sekundach. Może być zbyt "
-"skomplikowane lub baza danych jest przeciążona."
+"Zapytanie zostało przerwane po %(sqllab_timeout)s sekundach. Może być "
+"zbyt skomplikowane lub baza danych jest przeciążona."
 
 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 ""
-"Promień (w pikselach), który algorytm wykorzystuje do definiowania grupy. "
-"Wybierz 0, aby wyłączyć grupowanie, ale pamiętaj, że duża liczba punktów "
-">(1000) spowoduje opóźnienia."
+"Promień (w pikselach), który algorytm wykorzystuje do definiowania grupy."
+" Wybierz 0, aby wyłączyć grupowanie, ale pamiętaj, że duża liczba punktów"
+" >(1000) spowoduje opóźnienia."
 
 msgid ""
 "The radius of individual points (ones that are not in a cluster). Either "
@@ -11410,8 +12019,12 @@ msgid ""
 "interpretation e.g. 1, 1.0, or \"1\" (compatible with Python's float() "
 "function)."
 msgstr ""
-"Wynik tego zapytania musi być wartością zdolną do interpretacji liczbowej, "
-"np. 1, 1.0 lub \"1\" (zgodną z funkcją float() w Pythonie)."
+"Wynik tego zapytania musi być wartością zdolną do interpretacji "
+"liczbowej, np. 1, 1.0 lub \"1\" (zgodną z funkcją float() w Pythonie)."
+
+#, fuzzy
+msgid "The result size exceeds the allowed limit."
+msgstr "Rozmiar pliku przekracza maksymalny dozwolony rozmiar."
 
 msgid "The results backend no longer has the data from the query."
 msgstr "Backend wyników nie ma już danych z tego zapytania."
@@ -11420,12 +12033,13 @@ msgid ""
 "The results stored in the backend were stored in a different format, and "
 "no longer can be deserialized."
 msgstr ""
-"Wyniki przechowywane w backendzie zostały zapisane w innym formacie i nie "
-"mogą już być deserializowane."
+"Wyniki przechowywane w backendzie zostały zapisane w innym formacie i nie"
+" mogą już być deserializowane."
 
 msgid "The rich tooltip shows a list of all series for that point in time"
 msgstr ""
-"Rozszerzona podpowiedź pokazuje listę wszystkich serii dla tego punktu w czasie."
+"Rozszerzona podpowiedź pokazuje listę wszystkich serii dla tego punktu w "
+"czasie."
 
 msgid ""
 "The row limit set for the chart was reached. The chart may show partial "
@@ -11439,8 +12053,8 @@ msgid ""
 "The schema \"%(schema)s\" does not exist. A valid schema must be used to "
 "run this query."
 msgstr ""
-"Schemat „%(schema)s” nie istnieje. Aby uruchomić to zapytanie, musi zostać "
-"użyty prawidłowy schemat."
+"Schemat „%(schema)s” nie istnieje. Aby uruchomić to zapytanie, musi "
+"zostać użyty prawidłowy schemat."
 
 #, python-format
 msgid ""
@@ -11459,11 +12073,16 @@ msgstr "Schemat został usunięty lub zmieniono jego nazwę w bazie danych."
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr "Nie udało się pobrać zrzutu ekranu. Spróbuj ponownie później."
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "Zrzut ekranu jest teraz pobierany."
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr "Zrzut ekranu jest generowany. Proszę nie opuszczać strony."
 
-msgid "The screenshot is now being downloaded."
-msgstr "Zrzut ekranu jest teraz pobierany."
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "Pokaż wartości serii na wykresie"
 
 msgid "The size of each cell in meters"
 msgstr "Wielkość każdej komórki w metrach."
@@ -11471,6 +12090,9 @@ msgstr "Wielkość każdej komórki w metrach."
 msgid "The size of the square cell, in pixels"
 msgstr "Wielkość kwadratowej komórki, w pikselach."
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 #, fuzzy
 msgid "The submitted payload failed validation."
 msgstr "Przesłane dane nie przeszły walidacji."
@@ -11497,13 +12119,6 @@ msgstr ""
 "Tabela „%(table_name)s” nie istnieje. Aby uruchomić to zapytanie, musi "
 "zostać użyta prawidłowa tabela."
 
-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 została utworzona. W ramach tego dwufazowego procesu konfiguracji "
-"należy teraz kliknąć przycisk edycji przy nowej tabeli, aby ją skonfigurować."
-
 msgid "The table was deleted or renamed in the database."
 msgstr "Tabela została usunięta lub zmieniono jej nazwę w bazie danych."
 
@@ -11520,15 +12135,15 @@ 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 ""
-"Granularność czasowa dla wizualizacji. Możesz wprowadzać proste wyrażenia "
-"w języku naturalnym, takie jak „10 sekund”, „1 dzień” lub „56 tygodni”."
+"Granularność czasowa dla wizualizacji. Możesz wprowadzać proste wyrażenia"
+" w języku naturalnym, takie jak „10 sekund”, „1 dzień” lub „56 tygodni”."
 
 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 ""
-"Granularność czasowa dla wizualizacji. Możesz wprowadzać proste wyrażenia "
-"w języku naturalnym, takie jak „10 sekund”, „1 dzień” lub „56 tygodni”."
+"Granularność czasowa dla wizualizacji. Możesz wprowadzać proste wyrażenia"
+" w języku naturalnym, takie jak „10 sekund”, „1 dzień” lub „56 tygodni”."
 
 msgid ""
 "The time granularity for the visualization. This applies a date "
@@ -11538,7 +12153,8 @@ msgid ""
 msgstr ""
 "Granularność czasowa dla wizualizacji. Zastosowanie transformacji daty, "
 "aby zmienić kolumnę czasu i określić nową granularność czasową. Opcje te "
-"są definiowane dla każdego silnika bazy danych w kodzie źródłowym Superset."
+"są definiowane dla każdego silnika bazy danych w kodzie źródłowym "
+"Superset."
 
 msgid ""
 "The time range for the visualization. All relative times, e.g. \"Last "
@@ -11553,9 +12169,9 @@ msgstr ""
 "miesiąc”, „Ostatnie 7 dni”, „teraz” itp., są oceniane na serwerze przy "
 "użyciu jego lokalnego czasu (bez strefy czasowej). Wszystkie podpowiedzi "
 "i czasy zastępcze są wyrażone w UTC (bez strefy czasowej). Znaczniki "
-"czasowe są następnie oceniane przez bazę danych z użyciem lokalnej strefy "
-"czasowej silnika. Można również jawnie określić strefę czasową zgodnie z "
-"formatem ISO 8601, jeśli podano czas początkowy i/lub końcowy."
+"czasowe są następnie oceniane przez bazę danych z użyciem lokalnej strefy"
+" czasowej silnika. Można również jawnie określić strefę czasową zgodnie z"
+" formatem ISO 8601, jeśli podano czas początkowy i/lub końcowy."
 
 msgid ""
 "The time unit for each block. Should be a smaller unit than "
@@ -11567,6 +12183,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr "Jednostka czasu używana do grupowania bloków."
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "Dodaj nazwę wykresu"
+
 msgid "The type of visualization to display"
 msgstr "Typ wizualizacji do wyświetlenia."
 
@@ -11581,14 +12201,25 @@ msgstr "Użytkownik wydaje się być usunięty."
 
 msgid "The user/password combination is not valid (Incorrect password for user)."
 msgstr ""
-"Kombinacja użytkownik/hasło jest nieprawidłowa (niepoprawne hasło dla użytkownika)."
+"Kombinacja użytkownik/hasło jest nieprawidłowa (niepoprawne hasło dla "
+"użytkownika)."
 
 #, python-format
 msgid "The username \"%(username)s\" does not exist."
 msgstr "Nazwa użytkownika „%(username)s” nie istnieje."
 
 msgid "The username provided when connecting to a database is not valid."
-msgstr "Podana nazwa użytkownika podczas łączenia z bazą danych jest nieprawidłowa."
+msgstr ""
+"Podana nazwa użytkownika podczas łączenia z bazą danych jest "
+"nieprawidłowa."
+
+#, fuzzy
+msgid "The version of the service"
+msgstr "Wybierz udział w sumie"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "Pokaż wartość na górze słupka"
 
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "Sposób rozmieszczenia podziałek na osi X."
@@ -11597,6 +12228,13 @@ msgstr "Sposób rozmieszczenia podziałek na osi X."
 msgid "The width of the Isoline in pixels"
 msgstr "Szerokość izolini w pikselach."
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "Szerokość linii."
+
 #, fuzzy
 msgid "The width of the lines"
 msgstr "Szerokość linii."
@@ -11614,9 +12252,6 @@ msgstr "Nie dodano wykresów do tego panelu."
 msgid "There are no components added to this tab"
 msgstr "Nie dodano komponentów do tej karty."
 
-msgid "There are no databases available"
-msgstr "Brak dostępnych baz danych."
-
 msgid "There are no filters in this dashboard."
 msgstr "Nie ma filtrów w tym panelu."
 
@@ -11627,13 +12262,19 @@ msgid ""
 "There is a syntax error in the SQL query. Perhaps there was a misspelling"
 " or a typo."
 msgstr ""
-"Zapytanie SQL zawiera błąd składniowy. Może to być literówka lub błąd w pisowni."
+"Zapytanie SQL zawiera błąd składniowy. Może to być literówka lub błąd w "
+"pisowni."
+
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "Typ wizualizacji do wyświetlenia."
 
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
 msgstr ""
-"Nie ma definicji wykresu powiązanej z tym komponentem. Czy mogła zostać usunięta?"
+"Nie ma definicji wykresu powiązanej z tym komponentem. Czy mogła zostać "
+"usunięta?"
 
 msgid ""
 "There is not enough space for this component. Try decreasing its width, "
@@ -11645,7 +12286,8 @@ msgstr ""
 #, fuzzy
 msgid "There was an error fetching dataset"
 msgstr ""
-"Przepraszamy, wystąpił błąd podczas pobierania informacji o tym zbiorze danych."
+"Przepraszamy, wystąpił błąd podczas pobierania informacji o tym zbiorze "
+"danych."
 
 #, fuzzy
 msgid "There was an error fetching dataset's related objects"
@@ -11661,6 +12303,10 @@ msgstr "Wystąpił błąd podczas pobierania statusu ulubionych: %s"
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Wystąpił błąd podczas pobierania filtrowanych wykresów i paneli:"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Wystąpił błąd podczas ładowania schematów."
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "Wystąpił błąd podczas ładowania katalogów."
@@ -11671,8 +12317,7 @@ msgstr "Wystąpił błąd podczas ładowania danych wykresu."
 
 #, fuzzy
 msgid "There was an error loading the dataset metadata"
-msgstr ""
-"Wystąpił błąd podczas ładowania metadanych zbioru danych."
+msgstr "Wystąpił błąd podczas ładowania metadanych zbioru danych."
 
 msgid "There was an error loading the schemas"
 msgstr "Wystąpił błąd podczas ładowania schematów."
@@ -11680,14 +12325,21 @@ msgstr "Wystąpił błąd podczas ładowania schematów."
 msgid "There was an error loading the tables"
 msgstr "Wystąpił błąd podczas ładowania tabel."
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr "Przepraszamy, wystąpił błąd podczas zapisywania tego dashboardu: %s"
+
 #, fuzzy, python-format
 msgid "There was an error saving the favorite status: %s"
-msgstr ""
-"Wystąpił błąd podczas zapisywania statusu ulubionych: %s"
+msgstr "Wystąpił błąd podczas zapisywania statusu ulubionych: %s"
 
 msgid "There was an error with your request"
 msgstr "Wystąpił błąd w Twoim żądaniu."
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Wystąpił problem podczas usuwania: %s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "Wystąpił problem podczas usuwania %s: %s"
@@ -11744,7 +12396,8 @@ msgstr "Wystąpił problem podczas dodawania tego panelu do ulubionych."
 
 msgid "There was an issue fetching reports attached to this dashboard."
 msgstr ""
-"Przepraszamy, wystąpił błąd podczas pobierania raportów powiązanych z tym panelem."
+"Przepraszamy, wystąpił błąd podczas pobierania raportów powiązanych z tym"
+" panelem."
 
 msgid "There was an issue fetching the favorite status of this dashboard."
 msgstr "Wystąpił problem podczas pobierania statusu ulubionych tego panelu."
@@ -11773,27 +12426,10 @@ msgstr "Wystąpił problem podczas podglądu wybranego zapytania %s"
 msgid "There was an issue previewing the selected query. %s"
 msgstr "Wystąpił problem podczas podglądu wybranego zapytania. %s"
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr ""
-"Twoje Sankey zawiera pętlę, proszę dostarczyć drzewo. Oto błędny link: {}"
-
 #, fuzzy
 msgid "These are the datasets this filter will be applied to."
 msgstr "Oto zbiory danych, do których zostanie zastosowany ten filtr."
 
-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 ""
-"Te parametry są generowane dynamicznie podczas kliknięcia przycisku zapisu "
-"lub nadpisania w widoku eksploracji. Obiekt JSON jest tutaj udostępniany "
-"w celach referencyjnych oraz dla zaawansowanych użytkowników, którzy mogą "
-"chcieć zmodyfikować określone parametry."
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11811,17 +12447,26 @@ msgstr "Ta akcja na stałe usunie %s."
 msgid "This action will permanently delete the layer."
 msgstr "Ta akcja na stałe usunie warstwę."
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "Ta akcja na stałe usunie warstwę."
+
 msgid "This action will permanently delete the saved query."
 msgstr "Ta akcja na stałe usunie zapisaną kwerendę."
 
 msgid "This action will permanently delete the template."
 msgstr "Ta akcja na stałe usunie szablon."
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "Ta akcja na stałe usunie warstwę."
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
 msgstr ""
-"Może to być adres IP (np. 127.0.0.1) lub nazwa domeny (np. mydatabase.com)."
+"Może to być adres IP (np. 127.0.0.1) lub nazwa domeny (np. "
+"mydatabase.com)."
 
 msgid ""
 "This chart applies cross-filters to charts whose datasets contain columns"
@@ -11839,8 +12484,7 @@ msgstr ""
 "Superset."
 
 msgid "This chart might be incompatible with the filter (datasets don't match)"
-msgstr ""
-"Ten wykres może być niezgodny z filtrem (zbiory danych nie pasują)."
+msgstr "Ten wykres może być niezgodny z filtrem (zbiory danych nie pasują)."
 
 msgid ""
 "This chart type is not supported when using an unsaved query as a chart "
@@ -11849,13 +12493,6 @@ msgstr ""
 "Ten typ wykresu nie jest obsługiwany przy użyciu niezapisanej kwerendy "
 "jako źródła wykresu."
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-"Ten schemat kolorów został zastąpiony przez niestandardowe kolory etykiet. "
-"Sprawdź metadane JSON w ustawieniach zaawansowanych."
-
 msgid "This column might be incompatible with current dataset"
 msgstr "Ta kolumna może być niezgodna z aktualnym zbiorem danych."
 
@@ -11872,12 +12509,13 @@ msgid ""
 " ISO 8601 format if specifying either the start and/or end time."
 msgstr ""
 "To ustawienie filtruje cały wykres na podstawie wybranego zakresu czasu. "
-"Wszystkie czasy względne, np. \"Ostatni miesiąc\", \"Ostatnie 7 dni\", \"teraz\", "
-"są obliczane na serwerze z użyciem lokalnego czasu serwera (bez strefy czasowej). "
-"Wszystkie podpowiedzi i czasy zastępcze są wyrażone w UTC (bez strefy czasowej). "
-"Znaczniki czasu są następnie obliczane przez bazę danych przy użyciu lokalnej "
-"strefy czasowej silnika. Można również jawnie ustawić strefę czasową zgodnie z "
-"formatem ISO 8601, określając czas rozpoczęcia i/lub zakończenia."
+"Wszystkie czasy względne, np. \"Ostatni miesiąc\", \"Ostatnie 7 dni\", "
+"\"teraz\", są obliczane na serwerze z użyciem lokalnego czasu serwera "
+"(bez strefy czasowej). Wszystkie podpowiedzi i czasy zastępcze są "
+"wyrażone w UTC (bez strefy czasowej). Znaczniki czasu są następnie "
+"obliczane przez bazę danych przy użyciu lokalnej strefy czasowej silnika."
+" Można również jawnie ustawić strefę czasową zgodnie z formatem ISO 8601,"
+" określając czas rozpoczęcia i/lub zakończenia."
 
 msgid ""
 "This controls whether the \"time_range\" field from the current\n"
@@ -11905,16 +12543,17 @@ msgstr ""
 
 msgid "This dashboard is managed externally, and can't be edited in Superset"
 msgstr ""
-"Ten pulpit jest zarządzany zewnętrznie i nie może być edytowany w Superset."
+"Ten pulpit jest zarządzany zewnętrznie i nie może być edytowany w "
+"Superset."
 
 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 ""
-"Ten pulpit nie jest opublikowany, co oznacza, że nie pojawi się na liście "
-"pulpitów. Dodaj go do ulubionych, aby go tam zobaczyć, lub uzyskaj dostęp, "
-"używając bezpośredniego adresu URL."
+"Ten pulpit nie jest opublikowany, co oznacza, że nie pojawi się na liście"
+" pulpitów. Dodaj go do ulubionych, aby go tam zobaczyć, lub uzyskaj "
+"dostęp, używając bezpośredniego adresu URL."
 
 msgid ""
 "This dashboard is not published, it will not show up in the list of "
@@ -11938,25 +12577,32 @@ msgid ""
 "This dashboard is ready to embed. In your application, pass the following"
 " id to the SDK:"
 msgstr ""
-"Ten pulpit jest gotowy do osadzenia. W swojej aplikacji przekaż następujący "
-"identyfikator do SDK:"
+"Ten pulpit jest gotowy do osadzenia. W swojej aplikacji przekaż "
+"następujący identyfikator do SDK:"
 
 msgid "This dashboard was saved successfully."
 msgstr "Ten pulpit został pomyślnie zapisany."
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
-"Ta baza danych jest zarządzana zewnętrznie i nie może być edytowana w Superset."
+"Ta baza danych jest zarządzana zewnętrznie i nie może być edytowana w "
+"Superset."
 
 msgid ""
 "This database table does not contain any data. Please select a different "
 "table."
-msgstr ""
-"Ta tabela bazy danych nie zawiera żadnych danych. Wybierz inną tabelę."
+msgstr "Ta tabela bazy danych nie zawiera żadnych danych. Wybierz inną tabelę."
 
 msgid "This dataset is managed externally, and can't be edited in Superset"
 msgstr ""
-"Ten zbiór danych jest zarządzany zewnętrznie i nie może być edytowany w Superset."
+"Ten zbiór danych jest zarządzany zewnętrznie i nie może być edytowany w "
+"Superset."
 
 msgid "This dataset is not used to power any charts."
 msgstr "Ten zbiór danych nie jest używany do zasilania wykresów."
@@ -11964,6 +12610,9 @@ msgstr "Ten zbiór danych nie jest używany do zasilania wykresów."
 msgid "This defines the element to be plotted on the chart"
 msgstr "To definiuje element, który zostanie przedstawiony na wykresie."
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11978,19 +12627,13 @@ msgstr ""
 "To pole służy jako unikalny identyfikator do przypisania metryki do "
 "wykresów. Jest również używane jako alias w zapytaniu SQL."
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr ""
-"To pole działa jako widok Superset, co oznacza, że Superset wykona zapytanie "
-"na podstawie tego ciągu jako podzapytanie."
-
 msgid "This filter might be incompatible with current dataset"
 msgstr "Ten filtr może być niezgodny z bieżącym zbiorem danych."
 
 msgid "This functionality is disabled in your environment for security reasons."
 msgstr ""
-"Ta funkcjonalność jest wyłączona w twoim środowisku ze względów bezpieczeństwa."
+"Ta funkcjonalność jest wyłączona w twoim środowisku ze względów "
+"bezpieczeństwa."
 
 msgid ""
 "This is the condition that will be added to the WHERE clause. For "
@@ -11999,41 +12642,30 @@ msgid ""
 " a user belongs to a RLS filter role, a base filter can be created with "
 "the clause `1 = 0` (always false)."
 msgstr ""
-"To jest warunek, który zostanie dodany do klauzuli WHERE. Na przykład, aby "
-"zwracać tylko wiersze dla określonego klienta, można zdefiniować zwykły filtr "
-"z klauzulą `client_id = 9`. Aby nie wyświetlać żadnych wierszy, chyba że "
-"użytkownik należy do roli filtra RLS, można utworzyć filtr bazowy z klauzulą "
-"`1 = 0` (zawsze fałsz)."
+"To jest warunek, który zostanie dodany do klauzuli WHERE. Na przykład, "
+"aby zwracać tylko wiersze dla określonego klienta, można zdefiniować "
+"zwykły filtr z klauzulą `client_id = 9`. Aby nie wyświetlać żadnych "
+"wierszy, chyba że użytkownik należy do roli filtra RLS, można utworzyć "
+"filtr bazowy z klauzulą `1 = 0` (zawsze fałsz)."
 
 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 ""
-"Ten obiekt JSON opisuje rozmieszczenie widżetów w pulpicie. Jest generowany "
-"dynamicznie podczas zmiany rozmiaru i pozycji widżetów za pomocą metody "
-"przeciągnij i upuść w widoku pulpitu."
+"Ten obiekt JSON opisuje rozmieszczenie widżetów w pulpicie. Jest "
+"generowany dynamicznie podczas zmiany rozmiaru i pozycji widżetów za "
+"pomocą metody przeciągnij i upuść w widoku pulpitu."
 
 msgid "This markdown component has an error."
 msgstr "Ten komponent Markdown zawiera błąd."
 
 msgid "This markdown component has an error. Please revert your recent changes."
-msgstr ""
-"Ten komponent Markdown zawiera błąd. Cofnij ostatnie zmiany."
+msgstr "Ten komponent Markdown zawiera błąd. Cofnij ostatnie zmiany."
 
 msgid "This may be triggered by:"
 msgstr "To może być spowodowane przez:"
 
-#, 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 ""
-"Ta metryka jest używana do określenia kryteriów wyboru wierszy (jak są one "
-"sortowane), jeśli istnieje limit serii lub wierszy. Jeśli nie zdefiniowano, "
-"domyślnie używana jest pierwsza metryka (jeśli to odpowiednie)."
-
 msgid "This metric might be incompatible with current dataset"
 msgstr "Ta metryka może być niezgodna z bieżącym zbiorem danych."
 
@@ -12052,8 +12684,8 @@ msgid ""
 "This section allows you to configure how to use the slice\n"
 "              to generate annotations."
 msgstr ""
-"Ta sekcja pozwala skonfigurować sposób wykorzystania fragmentu do generowania "
-"adnotacji."
+"Ta sekcja pozwala skonfigurować sposób wykorzystania fragmentu do "
+"generowania adnotacji."
 
 msgid ""
 "This section contains options that allow for advanced analytical post "
@@ -12071,8 +12703,8 @@ msgid ""
 " the guest token is being generated correctly."
 msgstr ""
 "Ta sesja napotkała przerwę i niektóre funkcje mogą nie działać zgodnie z "
-"oczekiwaniami. Jeśli jesteś twórcą tej aplikacji, sprawdź, czy token gościa "
-"jest generowany poprawnie."
+"oczekiwaniami. Jeśli jesteś twórcą tej aplikacji, sprawdź, czy token "
+"gościa jest generowany poprawnie."
 
 msgid "This table already has a dataset"
 msgstr "Ta tabela już posiada przypisany zbiór danych."
@@ -12081,8 +12713,11 @@ msgid ""
 "This table already has a dataset associated with it. You can only "
 "associate one dataset with a table.\n"
 msgstr ""
-"Ta tabela już ma przypisany zbiór danych. Możesz przypisać tylko jeden zbiór "
-"danych do tabeli."
+"Ta tabela już ma przypisany zbiór danych. Możesz przypisać tylko jeden "
+"zbiór danych do tabeli."
+
+msgid "This username is already taken. Please choose another one."
+msgstr ""
 
 msgid "This value should be greater than the left target value"
 msgstr "Ta wartość powinna być większa od lewej wartości docelowej."
@@ -12153,8 +12788,8 @@ msgstr "Szczegółowość czasu"
 #, fuzzy
 msgid "Time Grain must be specified when using Time Shift."
 msgstr ""
-"Szczegółowość czasu musi być określona podczas korzystania z przesunięcia "
-"czasowego."
+"Szczegółowość czasu musi być określona podczas korzystania z przesunięcia"
+" czasowego."
 
 #, fuzzy
 msgid "Time Granularity"
@@ -12176,9 +12811,6 @@ msgstr "Wskaźnik czasowy"
 msgid "Time Series"
 msgstr "Szeregi czasowe"
 
-msgid "Time Series - Bar Chart"
-msgstr "Szeregi czasowe – Wykres słupkowy"
-
 msgid "Time Series - Line Chart"
 msgstr "Szeregi czasowe – Wykres liniowy"
 
@@ -12194,9 +12826,6 @@ msgstr "Szeregi czasowe – Procentowa zmiana"
 msgid "Time Series - Period Pivot"
 msgstr "Szeregi czasowe – Pivot okresowy"
 
-msgid "Time Series - Stacked"
-msgstr "Szeregi czasowe – Warstwowe"
-
 #, fuzzy
 msgid "Time Series Options"
 msgstr "Opcje szeregów czasowych"
@@ -12231,15 +12860,16 @@ msgid ""
 "Time delta in natural language\n"
 "                  (example:  24 hours, 7 days, 56 weeks, 365 days)"
 msgstr ""
-"Różnica czasu w języku naturalnym (np. 24 godziny, 7 dni, 56 tygodni, 365 dni)"
+"Różnica czasu w języku naturalnym (np. 24 godziny, 7 dni, 56 tygodni, 365"
+" dni)"
 
 #, python-format
 msgid ""
 "Time delta is ambiguous. Please specify [%(human_readable)s ago] or "
 "[%(human_readable)s later]."
 msgstr ""
-"Różnica czasu jest niejednoznaczna. Proszę określić [%(human_readable)s temu] "
-"lub [%(human_readable)s później]."
+"Różnica czasu jest niejednoznaczna. Proszę określić [%(human_readable)s "
+"temu] lub [%(human_readable)s później]."
 
 msgid "Time filter"
 msgstr "Filtr czasu"
@@ -12294,19 +12924,8 @@ msgid ""
 "Time string is ambiguous. Please specify [%(human_readable)s ago] or "
 "[%(human_readable)s later]."
 msgstr ""
-"Łańcuch czasu jest niejednoznaczny. Proszę określić [%(human_readable)s temu] "
-"lub [%(human_readable)s później]."
-
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "Wykres obszarowy (dziedzictwo)"
-
-#, fuzzy
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Szeregi czasowe – Wykres słupkowy (dziedzictwo)"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr "Wykres liniowy (dziedzictwo)"
+"Łańcuch czasu jest niejednoznaczny. Proszę określić [%(human_readable)s "
+"temu] lub [%(human_readable)s później]."
 
 #, fuzzy
 msgid "Time-series Percent Change"
@@ -12329,9 +12948,6 @@ msgstr "Format znacznika czasu"
 msgid "Timezone"
 msgstr "Strefa czasowa"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Przesunięcie strefy czasowej (w godzinach) dla tego źródła danych"
-
 msgid "Timezone selector"
 msgstr "Selektor strefy czasowej"
 
@@ -12352,6 +12968,11 @@ msgstr "Tytuł jest wymagany"
 msgid "Title or Slug"
 msgstr "Tytuł lub skrót"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "Aby filtrować według miary, użyj zakładki Custom SQL."
 
@@ -12400,6 +13021,10 @@ msgstr "Razem (%(aggfunc)s)"
 msgid "Total (%(aggregatorName)s)"
 msgstr "Razem (%(aggregatorName)s)"
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "Razem: %s"
+
 #, fuzzy
 msgid "Total value"
 msgstr "Wartość całkowita"
@@ -12460,19 +13085,19 @@ msgstr "Obetnij miarę"
 msgid "Truncate X Axis"
 msgstr "Obetnij oś X"
 
+#, fuzzy
 msgid ""
 "Truncate X Axis. Can be overridden by specifying a min or max bound. Only"
-" applicable for numercal X axis."
+" applicable for numerical X axis."
 msgstr ""
-"Obetnij oś X. Można zastąpić, określając minimalną lub maksymalną granicę. "
-"Dotyczy tylko numerycznej osi X."
+"Obetnij oś X. Można zastąpić, określając minimalną lub maksymalną "
+"granicę. Dotyczy tylko numerycznej osi X."
 
 msgid "Truncate Y Axis"
 msgstr "Obetnij oś Y"
 
 msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound."
-msgstr ""
-"Obetnij oś Y. Można zastąpić, określając minimalną lub maksymalną granicę."
+msgstr "Obetnij oś Y. Można zastąpić, określając minimalną lub maksymalną granicę."
 
 msgid "Truncate long cells to the \"min width\" set above"
 msgstr "Obetnij długie komórki do \"minimalnej szerokości\" ustawionej powyżej"
@@ -12482,7 +13107,8 @@ msgstr "Obetnij określoną datę do precyzji określonej przez jednostkę daty.
 
 msgid "Try applying different filters or ensuring your datasource has data"
 msgstr ""
-"Spróbuj zastosować różne filtry lub upewnij się, że źródło danych zawiera dane."
+"Spróbuj zastosować różne filtry lub upewnij się, że źródło danych zawiera"
+" dane."
 
 #, fuzzy
 msgid "Try different criteria to display results."
@@ -12515,9 +13141,6 @@ msgstr "Wpisz wartość tutaj"
 msgid "Type is required"
 msgstr "Typ jest wymagany"
 
-msgid "Type of Google Sheets allowed"
-msgstr "Dozwolony typ arkuszy Google"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "Typ porównania: różnica wartości lub procent"
 
@@ -12556,8 +13179,8 @@ msgid ""
 "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\""
 msgstr ""
 "Nie można połączyć się. Upewnij się, że na koncie usługowym ustawiono "
-"następujące role: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", "
-"\"BigQuery Job User\" oraz że ustawiono następujące uprawnienia: "
+"następujące role: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\","
+" \"BigQuery Job User\" oraz że ustawiono następujące uprawnienia: "
 "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"."
 
 msgid "Unable to create chart without a query id."
@@ -12576,8 +13199,7 @@ msgstr "Nie można znaleźć takiego święta: [%(holiday)s]"
 msgid ""
 "Unable to load columns for the selected table. Please select a different "
 "table."
-msgstr ""
-"Nie można załadować kolumn dla wybranej tabeli. Proszę wybrać inną tabelę."
+msgstr "Nie można załadować kolumn dla wybranej tabeli. Proszę wybrać inną tabelę."
 
 #, fuzzy
 msgid "Unable to load dashboard"
@@ -12607,9 +13229,15 @@ msgstr ""
 "ponownie później. Skontaktuj się z administratorem, jeśli problem będzie "
 "się powtarzał."
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr "Nie można pobrać kolorów pulpitu nawigacyjnego"
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "Niezdefiniowane"
 
@@ -12627,8 +13255,7 @@ msgid "Unexpected error"
 msgstr "Nieoczekiwany błąd"
 
 msgid "Unexpected error occurred, please check your logs for details"
-msgstr ""
-"Wystąpił nieoczekiwany błąd. Sprawdź dzienniki, aby uzyskać szczegóły."
+msgstr "Wystąpił nieoczekiwany błąd. Sprawdź dzienniki, aby uzyskać szczegóły."
 
 #, fuzzy
 msgid "Unexpected error: "
@@ -12642,6 +13269,10 @@ msgstr "Nie znaleziono rozszerzenia pliku"
 msgid "Unexpected time range: %(error)s"
 msgstr "Nieoczekiwany zakres czasu: %(error)s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "cofnij"
+
 msgid "Unknown"
 msgstr "Nieznany"
 
@@ -12681,6 +13312,10 @@ msgstr "Nieznany typ"
 msgid "Unknown value"
 msgstr "Nieznana wartość"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "uruchomiony"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr "Niebezpieczny typ zwrotu dla funkcji %(func)s: %(value_type)s"
@@ -12749,9 +13384,6 @@ msgstr "Prześlij plik kolumnowy"
 msgid "Upload Columnar file to database"
 msgstr "Prześlij plik kolumnowy do bazy danych"
 
-msgid "Upload Credentials"
-msgstr "Prześlij poświadczenia"
-
 #, fuzzy
 msgid "Upload Enabled"
 msgstr "Przesyłanie włączone"
@@ -12775,6 +13407,10 @@ msgstr "Prześlij plik do bazy danych"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr "Prześlij plik z poprawnym rozszerzeniem. Dozwolone: [%s]"
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Prześlij poświadczenia"
+
 #, fuzzy
 msgid "Upload file to database"
 msgstr "Prześlij plik do bazy danych"
@@ -12835,11 +13471,14 @@ msgstr ""
 "Użyj innego istniejącego wykresu jako źródła adnotacji i nakładek.\n"
 "          Twój wykres musi być jednym z tych typów wizualizacji: [%s]"
 
-msgid "Use date formatting even when metric value is not a timestamp"
-msgstr "Użyj formatowania daty, nawet jeśli wartość miary nie jest znacznikiem czasu"
+#, fuzzy
+msgid "Use current extent"
+msgstr "Uruchom bieżące zapytanie"
 
-msgid "Use legacy datasource editor"
-msgstr "Użyj klasycznego edytora źródła danych"
+msgid "Use date formatting even when metric value is not a timestamp"
+msgstr ""
+"Użyj formatowania daty, nawet jeśli wartość miary nie jest znacznikiem "
+"czasu"
 
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr "Użyj miar jako grupy najwyższego poziomu dla kolumn lub wierszy"
@@ -12850,13 +13489,6 @@ msgstr "Użyj tylko jednej wartości."
 msgid "Use the Advanced Analytics options below"
 msgstr "Skorzystaj z opcji zaawansowanej analityki poniżej"
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-"Użyj pliku JSON, który został automatycznie pobrany podczas tworzenia "
-"twojego konta usługi."
-
 #, fuzzy
 msgid "Use the edit button to change this field"
 msgstr "Użyj przycisku edytuj, aby zmienić to pole"
@@ -12883,9 +13515,11 @@ msgid ""
 "status and assignee, active users by age and location. Not the most "
 "visually stunning visualization, but highly informative and versatile."
 msgstr ""
-"Służy do podsumowania zbioru danych poprzez grupowanie wielu statystyk wzdłuż dwóch osi. "
-"Przykłady: liczby sprzedaży według regionu i miesiąca, zadania według statusu i osoby przydzielonej, aktywni użytkownicy według wieku i lokalizacji. "
-"Nie jest to najbardziej efektowna wizualizacja, ale bardzo informacyjna i wszechstronna."
+"Służy do podsumowania zbioru danych poprzez grupowanie wielu statystyk "
+"wzdłuż dwóch osi. Przykłady: liczby sprzedaży według regionu i miesiąca, "
+"zadania według statusu i osoby przydzielonej, aktywni użytkownicy według "
+"wieku i lokalizacji. Nie jest to najbardziej efektowna wizualizacja, ale "
+"bardzo informacyjna i wszechstronna."
 
 msgid "User"
 msgstr "Użytkownik"
@@ -12900,27 +13534,44 @@ msgstr "Użytkownik musi wybrać wartość przed zastosowaniem filtra"
 msgid "User query"
 msgstr "Zapytanie użytkownika"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "Nazwa użytkownika"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Nazwa jest wymagana"
+
+#, fuzzy
+msgid "Users"
+msgstr "serie"
+
 #, fuzzy
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
-"Użytkownicy nie mogą ustawić ścieżki wyszukiwania ze względów bezpieczeństwa."
+"Użytkownicy nie mogą ustawić ścieżki wyszukiwania ze względów "
+"bezpieczeństwa."
 
 msgid ""
 "Uses Gaussian Kernel Density Estimation to visualize spatial distribution"
 " of data"
 msgstr ""
-"Używa estymacji gęstości jądra Gaussa do wizualizacji przestrzennej dystrybucji danych."
+"Używa estymacji gęstości jądra Gaussa do wizualizacji przestrzennej "
+"dystrybucji danych."
 
 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 ""
-"Używa wskaźnika do pokazania postępu metryki w kierunku celu. Pozycja wskaźnika "
-"reprezentuje postęp, a końcowa wartość na wskaźniku reprezentuje wartość docelową."
+"Używa wskaźnika do pokazania postępu metryki w kierunku celu. Pozycja "
+"wskaźnika reprezentuje postęp, a końcowa wartość na wskaźniku "
+"reprezentuje wartość docelową."
 
 msgid ""
 "Uses circles to visualize the flow of data through different stages of a "
@@ -12928,9 +13579,14 @@ msgid ""
 "the stages a value took. Useful for multi-stage, multi-group visualizing "
 "funnels and pipelines."
 msgstr ""
-"Używa okręgów do wizualizacji przepływu danych przez różne etapy systemu. "
-"Najedź kursorem na poszczególne ścieżki wizualizacji, aby zrozumieć etapy, jakie przeszła wartość. "
-"Przydatne do wizualizacji lejków i pipeline’ów wieloetapowych i wielogrupowych."
+"Używa okręgów do wizualizacji przepływu danych przez różne etapy systemu."
+" Najedź kursorem na poszczególne ścieżki wizualizacji, aby zrozumieć "
+"etapy, jakie przeszła wartość. Przydatne do wizualizacji lejków i "
+"pipeline’ów wieloetapowych i wielogrupowych."
+
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
 
 msgid "Value"
 msgstr "Wartość"
@@ -12960,9 +13616,16 @@ msgstr "Różnica wartości między okresami czasu"
 msgid "Value format"
 msgstr "Format wartości"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "Wartość musi być większa niż 0"
+
 msgid "Value is required"
 msgstr "Wartość jest wymagana"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "Wartość musi wynosić 0 lub więcej"
@@ -12980,14 +13643,8 @@ msgid ""
 "Values selected in other filters will affect the filter options to only "
 "show relevant values"
 msgstr ""
-"Wartości wybrane w innych filtrach wpłyną na opcje filtra, aby pokazać tylko odpowiednie wartości."
-
-#, fuzzy
-msgid "Vehicle Types"
-msgstr "Typy pojazdów"
-
-msgid "Verbose Name"
-msgstr "Opisowa nazwa"
+"Wartości wybrane w innych filtrach wpłyną na opcje filtra, aby pokazać "
+"tylko odpowiednie wartości."
 
 msgid "Version"
 msgstr "Wersja"
@@ -13003,9 +13660,6 @@ msgstr "Pionowy"
 msgid "Vertical (Left)"
 msgstr "Pionowy (lewy)"
 
-msgid "Video game consoles"
-msgstr "Konsolki do gier wideo"
-
 #, fuzzy
 msgid "View"
 msgstr "Widok"
@@ -13053,14 +13707,13 @@ msgstr "Wirtualny"
 msgid "Virtual (SQL)"
 msgstr "Wirtualny (SQL)"
 
-msgid "Virtual dataset"
-msgstr "Wirtualny zbiór danych"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "Zapytanie wirtualnego zbioru danych nie może być puste"
 
 msgid "Virtual dataset query cannot consist of multiple statements"
-msgstr "Zapytanie wirtualnego zbioru danych nie może składać się z wielu instrukcji."
+msgstr ""
+"Zapytanie wirtualnego zbioru danych nie może składać się z wielu "
+"instrukcji."
 
 msgid "Virtual dataset query must be read-only"
 msgstr "Zapytanie wirtualnego zbioru danych musi być tylko do odczytu."
@@ -13080,8 +13733,8 @@ msgid ""
 " visualized using its own line of points and each metric is represented "
 "as an edge in the chart."
 msgstr ""
-"Wizualizuj zestaw równoległych metryk w różnych grupach. Każda grupa jest "
-"wizualizowana za pomocą własnej linii punktów, a każda metryka jest "
+"Wizualizuj zestaw równoległych metryk w różnych grupach. Każda grupa jest"
+" wizualizowana za pomocą własnej linii punktów, a każda metryka jest "
 "przedstawiana jako krawędź na wykresie."
 
 msgid ""
@@ -13100,18 +13753,12 @@ msgstr ""
 "Wizualizuj dane geoprzestrzenne, takie jak budynki 3D, krajobrazy lub "
 "obiekty, w widoku siatki."
 
-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 ""
-"Wizualizuj, jak metryka zmienia się w czasie za pomocą pasków. Dodaj grupę według "
-"kolumny, aby wizualizować metryki na poziomie grupy i ich zmiany w czasie."
-
 msgid ""
 "Visualize multiple levels of hierarchy using a familiar tree-like "
 "structure."
 msgstr ""
-"Wizualizuj wiele poziomów hierarchii, korzystając z dobrze znanej struktury drzewa."
+"Wizualizuj wiele poziomów hierarchii, korzystając z dobrze znanej "
+"struktury drzewa."
 
 msgid ""
 "Visualize two different series using the same x-axis. Note that both "
@@ -13119,14 +13766,17 @@ msgid ""
 "and 1 using a line)."
 msgstr ""
 "Wizualizuj dwie różne serie, używając tej samej osi x. Zwróć uwagę, że "
-"obie serie mogą być wizualizowane z różnymi typami wykresów (np. jedna za pomocą pasków, a druga za pomocą linii)."
+"obie serie mogą być wizualizowane z różnymi typami wykresów (np. jedna za"
+" pomocą pasków, a druga za pomocą linii)."
 
 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 ""
-"Wizualizuje metrykę w trzech wymiarach danych na jednym wykresie (oś X, oś Y i rozmiar bańki). Bańki z tej samej grupy mogą być przedstawione za pomocą ich koloru."
+"Wizualizuje metrykę w trzech wymiarach danych na jednym wykresie (oś X, "
+"oś Y i rozmiar bańki). Bańki z tej samej grupy mogą być przedstawione za "
+"pomocą ich koloru."
 
 msgid "Visualizes connected points, which form a path, on a map."
 msgstr "Wizualizuje połączone punkty, które tworzą ścieżkę na mapie."
@@ -13135,15 +13785,17 @@ msgid ""
 "Visualizes geographic areas from your data as polygons on a Mapbox "
 "rendered map. Polygons can be colored using a metric."
 msgstr ""
-"Wizualizuje obszary geograficzne z twoich danych jako wielokąty na mapie Mapbox. "
-"Wielokąty mogą być kolorowane za pomocą metryki."
+"Wizualizuje obszary geograficzne z twoich danych jako wielokąty na mapie "
+"Mapbox. Wielokąty mogą być kolorowane za pomocą metryki."
 
 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 ""
-"Wizualizuje zmiany metryki w czasie za pomocą skali kolorów i widoku kalendarza. Szare wartości wskazują brakujące dane, a liniowy schemat kolorów koduje wielkość wartości każdego dnia."
+"Wizualizuje zmiany metryki w czasie za pomocą skali kolorów i widoku "
+"kalendarza. Szare wartości wskazują brakujące dane, a liniowy schemat "
+"kolorów koduje wielkość wartości każdego dnia."
 
 msgid ""
 "Visualizes how a single metric varies across a country's principal "
@@ -13151,30 +13803,25 @@ msgid ""
 "subdivision's value is elevated when you hover over the corresponding "
 "geographic boundary."
 msgstr ""
-"Wizualizuje, jak jedna metryka zmienia się między głównymi podziałami kraju (stany, prowincje itp.) na mapie choropletycznej. Wartość każdej jednostki zwiększa się po najechaniu na jej granicę."
+"Wizualizuje, jak jedna metryka zmienia się między głównymi podziałami "
+"kraju (stany, prowincje itp.) na mapie choropletycznej. Wartość każdej "
+"jednostki zwiększa się po najechaniu na jej granicę."
 
 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 ""
-"Wizualizuje wiele różnych obiektów szeregów czasowych na jednym wykresie. "
-"Ten wykres jest przestarzały, zalecamy korzystanie z wykresu szeregów czasowych."
-
-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 ""
-"Wizualizuje przepływ wartości różnych grup przez różne etapy systemu. "
-"Nowe etapy w przepływie są wizualizowane jako węzły lub warstwy. Grubość pasków lub krawędzi reprezentuje wizualizowaną metrykę."
+"Wizualizuje wiele różnych obiektów szeregów czasowych na jednym wykresie."
+" Ten wykres jest przestarzały, zalecamy korzystanie z wykresu szeregów "
+"czasowych."
 
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
 msgstr ""
-"Wizualizuje słowa w kolumnie, które pojawiają się najczęściej. Większa czcionka odpowiada wyższej częstotliwości."
+"Wizualizuje słowa w kolumnie, które pojawiają się najczęściej. Większa "
+"czcionka odpowiada wyższej częstotliwości."
 
 msgid "Viz is missing a datasource"
 msgstr "Brakuje źródła danych dla wizualizacji"
@@ -13185,6 +13832,12 @@ msgstr "Typ wizualizacji"
 msgid "WED"
 msgstr "ŚRO"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, fuzzy, python-format
 msgid "Waiting on %s"
 msgstr "Oczekiwanie na %s"
@@ -13199,9 +13852,6 @@ msgstr "Czy chcesz dodać nową bazę danych?"
 msgid "Warning"
 msgstr "Ostrzeżenie"
 
-msgid "Warning Message"
-msgstr "Komunikat ostrzegawczy"
-
 msgid "Warning!"
 msgstr "Ostrzeżenie!"
 
@@ -13209,7 +13859,8 @@ msgid ""
 "Warning! Changing the dataset may break the chart if the metadata does "
 "not exist."
 msgstr ""
-"Ostrzeżenie! Zmiana zbioru danych może spowodować błędy na wykresie, jeśli metadane nie istnieją."
+"Ostrzeżenie! Zmiana zbioru danych może spowodować błędy na wykresie, "
+"jeśli metadane nie istnieją."
 
 #, fuzzy
 msgid "Was unable to check your query"
@@ -13223,12 +13874,13 @@ msgid ""
 "We are unable to connect to your database. Click \"See more\" for "
 "database-provided information that may help troubleshoot the issue."
 msgstr ""
-"Nie możemy połączyć się z twoją bazą danych. Kliknij „Zobacz więcej”, aby uzyskać informacje dostarczone przez bazę danych, które mogą pomóc w rozwiązaniu problemu."
+"Nie możemy połączyć się z twoją bazą danych. Kliknij „Zobacz więcej”, aby"
+" uzyskać informacje dostarczone przez bazę danych, które mogą pomóc w "
+"rozwiązaniu problemu."
 
 #, python-format
 msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s."
-msgstr ""
-"Nie udało się rozwiązać kolumny „%(column)s” w linii %(location)s."
+msgstr "Nie udało się rozwiązać kolumny „%(column)s” w linii %(location)s."
 
 #, python-format
 msgid "We can't seem to resolve the column \"%(column_name)s\""
@@ -13238,8 +13890,7 @@ msgstr "Nie udało się rozwiązać kolumny „%(column_name)s”"
 msgid ""
 "We can't seem to resolve the column \"%(column_name)s\" at line "
 "%(location)s."
-msgstr ""
-"Nie udało się rozwiązać kolumny „%(column_name)s” w linii %(location)s."
+msgstr "Nie udało się rozwiązać kolumny „%(column_name)s” w linii %(location)s."
 
 #, python-format
 msgid "We have the following keys: %s"
@@ -13252,8 +13903,8 @@ msgid ""
 "We were unable to carry over any controls when switching to this new "
 "dataset."
 msgstr ""
-"Nie udało się przenieść żadnych kontroli podczas przełączania na ten nowy "
-"zbiór danych."
+"Nie udało się przenieść żadnych kontroli podczas przełączania na ten nowy"
+" zbiór danych."
 
 #, python-format
 msgid ""
@@ -13324,8 +13975,8 @@ msgid_plural ""
 "We’re having trouble loading this visualization. Queries are set to "
 "timeout after %s seconds."
 msgstr[0] ""
-"Mamy problem z załadowaniem tej wizualizacji. Zapytania przerywają się po "
-"%s sekundzie."
+"Mamy problem z załadowaniem tej wizualizacji. Zapytania przerywają się po"
+" %s sekundzie."
 msgstr[1] ""
 
 msgid "What should be shown as the label"
@@ -13350,26 +14001,21 @@ msgstr ""
 
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr ""
-"Kiedy dostarczona jest miara pomocnicza, używana jest liniowa skala kolorów."
-
-msgid ""
-"When allowing CREATE TABLE AS option in SQL Lab, this option forces the "
-"table to be created in this schema"
-msgstr ""
-"Kiedy opcja CREATE TABLE AS jest włączona w SQL Lab, ta opcja wymusza "
-"utworzenie tabeli w tym schemacie."
+"Kiedy dostarczona jest miara pomocnicza, używana jest liniowa skala "
+"kolorów."
 
 msgid "When checked, the map will zoom to your data after each query"
-msgstr ""
-"Po zaznaczeniu mapa będzie przybliżać do danych po każdym zapytaniu."
+msgstr "Po zaznaczeniu mapa będzie przybliżać do danych po każdym zapytaniu."
 
 msgid "When enabled, users are able to visualize SQL Lab results in Explore."
 msgstr ""
-"Po włączeniu użytkownicy mogą wizualizować wyniki SQL Lab w sekcji Explore."
+"Po włączeniu użytkownicy mogą wizualizować wyniki SQL Lab w sekcji "
+"Explore."
 
 msgid "When only a primary metric is provided, a categorical color scale is used."
 msgstr ""
-"Kiedy dostarczona jest tylko główna miara, używana jest kategoryczna skala kolorów."
+"Kiedy dostarczona jest tylko główna miara, używana jest kategoryczna "
+"skala kolorów."
 
 msgid ""
 "When specifying SQL, the datasource acts as a view. Superset will use "
@@ -13387,6 +14033,11 @@ msgstr ""
 "Kiedy kolumny czasowe są filtrowane, ten sam filtr jest stosowany do "
 "głównej kolumny daty i czasu."
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -13394,47 +14045,36 @@ msgid ""
 "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 ""
-"Podczas korzystania z „Automatycznych filtrów” opcja ta może być użyta do "
-"poprawy wydajności zapytania pobierającego wartości. Użyj tej opcji, aby "
-"zastosować predykat (klauzulę WHERE) do zapytania wybierającego unikalne "
-"wartości z tabeli. Celem może być ograniczenie skanowania poprzez "
-"zastosowanie względnego filtru czasowego na polu związanym z czasem, które "
-"jest partycjonowane lub indeksowane."
+"Podczas korzystania z „Automatycznych filtrów” opcja ta może być użyta do"
+" poprawy wydajności zapytania pobierającego wartości. Użyj tej opcji, aby"
+" zastosować predykat (klauzulę WHERE) do zapytania wybierającego unikalne"
+" wartości z tabeli. Celem może być ograniczenie skanowania poprzez "
+"zastosowanie względnego filtru czasowego na polu związanym z czasem, "
+"które jest partycjonowane lub indeksowane."
 
 msgid "When using 'Group By' you are limited to use a single metric"
 msgstr "Kiedy korzystasz z „Group By”, możesz używać tylko jednej miary."
 
 msgid "When using other than adaptive formatting, labels may overlap"
-msgstr ""
-"Przy użyciu innego formatu niż adaptacyjny etykiety mogą się nakładać."
+msgstr "Przy użyciu innego formatu niż adaptacyjny etykiety mogą się nakładać."
 
-msgid "When using this option, default value can’t be set"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
 msgstr ""
-"Kiedy używasz tej opcji, wartość domyślna nie może zostać ustawiona."
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
-msgstr ""
-"Czy pasek postępu nakłada się, gdy występuje wiele grup danych."
-
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr ""
-"Czy tabela została wygenerowana przez przepływ 'Wizualizuj' w SQL Lab."
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-"Czy ta kolumna jest widoczna w sekcji `Filtry` w widoku eksploracji."
+msgstr "Czy pasek postępu nakłada się, gdy występuje wiele grup danych."
 
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
-msgstr ""
-"Czy wyrównać wykresy tła z wartościami dodatnimi i ujemnymi do zera."
+msgstr "Czy wyrównać wykresy tła z wartościami dodatnimi i ujemnymi do zera."
 
 msgid "Whether to align positive and negative values in cell bar chart at 0"
 msgstr ""
-"Czy wyrównać wartości dodatnie i ujemne w wykresie słupkowym komórki do zera."
+"Czy wyrównać wartości dodatnie i ujemne w wykresie słupkowym komórki do "
+"zera."
 
 msgid "Whether to always show the annotation label"
 msgstr "Czy zawsze wyświetlać etykietę adnotacji."
@@ -13443,25 +14083,25 @@ msgid "Whether to animate the progress and the value or just display them"
 msgstr "Czy animować postęp i wartość, czy tylko je wyświetlać."
 
 msgid "Whether to apply a normal distribution based on rank on the color scale"
-msgstr ""
-"Czy zastosować normalny rozkład oparty na rankingu na skali kolorów."
+msgstr "Czy zastosować normalny rozkład oparty na rankingu na skali kolorów."
 
 msgid "Whether to apply filter when items are clicked"
 msgstr "Czy stosować filtr po kliknięciu elementów."
 
 msgid "Whether to colorize numeric values by if they are positive or negative"
 msgstr ""
-"Czy kolorować wartości liczbowe w zależności od tego, czy są dodatnie czy ujemne."
+"Czy kolorować wartości liczbowe w zależności od tego, czy są dodatnie czy"
+" ujemne."
 
 msgid ""
 "Whether to colorize numeric values by whether they are positive or "
 "negative"
 msgstr ""
-"Czy kolorować wartości liczbowe na podstawie tego, czy są dodatnie, czy ujemne."
+"Czy kolorować wartości liczbowe na podstawie tego, czy są dodatnie, czy "
+"ujemne."
 
 msgid "Whether to display a bar chart background in table columns"
-msgstr ""
-"Czy wyświetlać tło wykresu słupkowego w kolumnach tabeli."
+msgstr "Czy wyświetlać tło wykresu słupkowego w kolumnach tabeli."
 
 msgid "Whether to display a legend for the chart"
 msgstr "Czy wyświetlać legendę dla wykresu."
@@ -13469,6 +14109,10 @@ msgstr "Czy wyświetlać legendę dla wykresu."
 msgid "Whether to display bubbles on top of countries"
 msgstr "Czy wyświetlać bańki nad krajami."
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Czy wyświetlać legendę dla wykresu."
+
 msgid "Whether to display the aggregate count"
 msgstr "Czy wyświetlać liczbę sumaryczną."
 
@@ -13478,13 +14122,6 @@ msgstr "Czy wyświetlać interaktywną tabelę danych."
 msgid "Whether to display the labels."
 msgstr "Czy wyświetlać etykiety."
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-"Czy wyświetlać etykiety. Uwaga: etykieta wyświetla się tylko przy "
-"progu 5%."
-
 msgid "Whether to display the legend (toggles)"
 msgstr "Czy wyświetlać legendę (przełączniki)."
 
@@ -13500,6 +14137,10 @@ msgstr "Czy wyświetlać minimalne i maksymalne wartości osi Y"
 msgid "Whether to display the numerical values within the cells"
 msgstr "Czy wyświetlać wartości liczbowe w komórkach"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Czy uwzględniać procent w podpowiedzi"
+
 msgid "Whether to display the stroke"
 msgstr "Czy wyświetlać obrys"
 
@@ -13512,9 +14153,17 @@ msgstr "Czy wyświetlać znacznik czasu"
 msgid "Whether to display the tooltip labels."
 msgstr "Czy wyświetlać etykiety podpowiedzi"
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Czy wyświetlać wartości liczbowe w komórkach"
+
 msgid "Whether to display the trend line"
 msgstr "Czy wyświetlać linię trendu"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Czy wyświetlać liczbę sumaryczną."
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr "Czy włączyć zmianę pozycji i skalowania wykresu"
 
@@ -13539,26 +14188,19 @@ msgstr "Czy uwzględniać szczegółowość czasową określoną w sekcji czasow
 msgid "Whether to make the grid 3D"
 msgstr "Czy siatka ma być trójwymiarowa"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "Czy histogram ma być skumulowany"
-
-msgid "Whether to make this column available as a [Time Granularity] option, column has to be DATETIME or DATETIME-like"
-msgstr "Czy ta kolumna ma być dostępna jako opcja [Szczegółowość czasowa], kolumna musi być typu DATETIME lub podobna do DATETIME"
-
-msgid "Whether to normalize the histogram"
-msgstr "Czy normalizować histogram"
-
 msgid "Whether to populate autocomplete filters options"
 msgstr "Czy wypełniać opcje filtrów autouzupełniania"
 
-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 "Czy wypełniać listę rozwijaną filtrów w sekcji filtrów widoku eksploracji listą unikalnych wartości pobranych dynamicznie z backendu"
-
 msgid "Whether to show as Nightingale chart."
 msgstr "Czy wyświetlać jako wykres Nightingale"
 
-msgid "Whether to show extra controls or not. Extra controls include things like making mulitBar charts stacked or side by side."
-msgstr "Czy wyświetlać dodatkowe opcje sterowania, takie jak ustawianie wykresów wielosłupkowych jako ułożone lub obok siebie"
+#, fuzzy
+msgid ""
+"Whether to show extra controls or not. Extra controls include things like"
+" making multiBar charts stacked or side by side."
+msgstr ""
+"Czy wyświetlać dodatkowe opcje sterowania, takie jak ustawianie wykresów "
+"wielosłupkowych jako ułożone lub obok siebie"
 
 msgid "Whether to show minor ticks on the axis"
 msgstr "Czy wyświetlać drobne oznaczenia na osi"
@@ -13578,9 +14220,6 @@ msgstr "Czy sortować rosnąco lub malejąco na podstawowej osi"
 msgid "Whether to sort descending or ascending"
 msgstr "Czy sortować malejąco lub rosnąco"
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr "Czy sortować malejąco lub rosnąco, jeśli występuje ograniczenie serii"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr "Czy sortować wyniki według wybranej metryki w kolejności malejącej"
 
@@ -13641,9 +14280,6 @@ msgstr "Napisz opis swojego zapytania"
 msgid "Write a handlebars template to render the data"
 msgstr "Napisz szablon handlebars do renderowania danych"
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "DOLNY MARGINES TYTUŁU OSI X"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "MARGINES TYTUŁU OSI X"
 
@@ -13665,6 +14301,10 @@ msgstr "Etykieta osi X"
 msgid "X Axis Title"
 msgstr "Tytuł osi X"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Margines tytułu osi Y"
+
 msgid "X Log Scale"
 msgstr "Skala logarytmiczna X"
 
@@ -13689,6 +14329,9 @@ msgstr "Oś X"
 msgid "XScale Interval"
 msgstr "Przedział XScale"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Granice osi Y 2"
 
@@ -13780,8 +14423,8 @@ msgid ""
 "might cause you to lose some of your work. Are you sure you want to "
 "overwrite?"
 msgstr ""
-"Importujesz jeden lub więcej wykresów, które już istnieją. Nadpisanie może "
-"spowodować utratę części Twojej pracy. Czy na pewno chcesz nadpisać?"
+"Importujesz jeden lub więcej wykresów, które już istnieją. Nadpisanie "
+"może spowodować utratę części Twojej pracy. Czy na pewno chcesz nadpisać?"
 
 msgid ""
 "You are importing one or more dashboards that already exist. Overwriting "
@@ -13789,8 +14432,8 @@ msgid ""
 "overwrite?"
 msgstr ""
 "Importujesz jeden lub więcej pulpitów nawigacyjnych, które już istnieją. "
-"Nadpisanie może spowodować utratę części Twojej pracy. Czy na pewno chcesz "
-"nadpisać?"
+"Nadpisanie może spowodować utratę części Twojej pracy. Czy na pewno "
+"chcesz nadpisać?"
 
 msgid ""
 "You are importing one or more databases that already exist. Overwriting "
@@ -13806,8 +14449,8 @@ msgid ""
 "overwrite?"
 msgstr ""
 "Importujesz jeden lub więcej zbiorów danych, które już istnieją. "
-"Nadpisanie może spowodować utratę części Twojej pracy. Czy na pewno chcesz "
-"nadpisać?"
+"Nadpisanie może spowodować utratę części Twojej pracy. Czy na pewno "
+"chcesz nadpisać?"
 
 msgid ""
 "You are importing one or more saved queries that already exist. "
@@ -13815,8 +14458,21 @@ msgid ""
 "want to overwrite?"
 msgstr ""
 "Importujesz jedno lub więcej zapisanych zapytań, które już istnieją. "
-"Nadpisanie może spowodować utratę części Twojej pracy. Czy na pewno chcesz "
-"nadpisać?"
+"Nadpisanie może spowodować utratę części Twojej pracy. Czy na pewno "
+"chcesz nadpisać?"
+
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
 
 #, fuzzy
 msgid "You can"
@@ -13850,7 +14506,9 @@ msgstr ""
 "prawej stronie."
 
 msgid "You can preview the list of dashboards in the chart settings dropdown."
-msgstr "Możesz podejrzeć listę pulpitów nawigacyjnych w rozwijanym menu ustawień wykresu."
+msgstr ""
+"Możesz podejrzeć listę pulpitów nawigacyjnych w rozwijanym menu ustawień "
+"wykresu."
 
 msgid "You can't apply cross-filter on this data point."
 msgstr "Nie możesz zastosować filtra krzyżowego do tego punktu danych."
@@ -13859,8 +14517,8 @@ msgid ""
 "You cannot delete the last temporal filter as it's used for time range "
 "filters in dashboards."
 msgstr ""
-"Nie możesz usunąć ostatniego filtra czasowego, ponieważ jest on używany do "
-"filtrowania zakresów czasowych w pulpitach nawigacyjnych."
+"Nie możesz usunąć ostatniego filtra czasowego, ponieważ jest on używany "
+"do filtrowania zakresów czasowych w pulpitach nawigacyjnych."
 
 msgid "You cannot use 45° tick layout along with the time range filter"
 msgstr "Nie możesz używać układu znaczników 45° razem z filtrem zakresu czasu"
@@ -13901,9 +14559,6 @@ msgstr "Nie masz dostępu do tego zbioru danych."
 msgid "You don't have access to this embedded dashboard config."
 msgstr "Nie masz dostępu do konfiguracji tego osadzonego pulpitu nawigacyjnego."
 
-msgid "You don't have any favorites yet!"
-msgstr "Nie masz jeszcze żadnych ulubionych!"
-
 #, fuzzy
 msgid "You don't have permission to modify the value."
 msgstr "Nie masz uprawnień do zmiany wartości."
@@ -13947,9 +14602,9 @@ msgid ""
 "fully undo subsequent actions. You may save your current state to reset "
 "the history."
 msgstr ""
-"Wykorzystałeś wszystkie %(historyLength)s miejsca na cofnięcie i nie będziesz "
-"mógł cofnąć kolejnych działań. Możesz zapisać swój obecny stan, aby "
-"zresetować historię."
+"Wykorzystałeś wszystkie %(historyLength)s miejsca na cofnięcie i nie "
+"będziesz mógł cofnąć kolejnych działań. Możesz zapisać swój obecny stan, "
+"aby zresetować historię."
 
 msgid "You may have an error in your SQL statement. {message}"
 msgstr "Możliwe, że masz błąd w zapytaniu SQL. {message}"
@@ -13959,7 +14614,8 @@ msgid ""
 "dataset owner to request modifications or edit access."
 msgstr ""
 "Musisz być właścicielem zbioru danych, aby go edytować. Skontaktuj się z "
-"właścicielem zbioru danych, aby poprosić o modyfikacje lub dostęp do edycji."
+"właścicielem zbioru danych, aby poprosić o modyfikacje lub dostęp do "
+"edycji."
 
 msgid "You must pick a name for the new dashboard"
 msgstr "Musisz wybrać nazwę dla nowego pulpitu nawigacyjnego"
@@ -13983,8 +14639,8 @@ msgid ""
 "You've changed datasets. Any controls with data (columns, metrics) that "
 "match this new dataset have been retained."
 msgstr ""
-"Zmieniłeś zbiory danych. Wszystkie kontrolki z danymi (kolumny, metryki), "
-"które pasują do tego nowego zbioru danych, zostały zachowane."
+"Zmieniłeś zbiory danych. Wszystkie kontrolki z danymi (kolumny, metryki),"
+" które pasują do tego nowego zbioru danych, zostały zachowane."
 
 msgid "Your chart is not up to date"
 msgstr "Twój wykres nie jest aktualny"
@@ -13992,8 +14648,13 @@ msgstr "Twój wykres nie jest aktualny"
 msgid "Your chart is ready to go!"
 msgstr "Twój wykres jest gotowy do użycia!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
-msgstr "Twój pulpit nawigacyjny jest za duży. Proszę zmniejszyć jego rozmiar przed zapisaniem."
+msgstr ""
+"Twój pulpit nawigacyjny jest za duży. Proszę zmniejszyć jego rozmiar "
+"przed zapisaniem."
 
 msgid "Your query could not be saved"
 msgstr "Twoje zapytanie nie mogło zostać zapisane"
@@ -14008,8 +14669,8 @@ msgid ""
 "Your query has been scheduled. To see details of your query, navigate to "
 "Saved queries"
 msgstr ""
-"Twoje zapytanie zostało zaplanowane. Aby zobaczyć szczegóły swojego zapytania, "
-"przejdź do zapisanych zapytań"
+"Twoje zapytanie zostało zaplanowane. Aby zobaczyć szczegóły swojego "
+"zapytania, przejdź do zapisanych zapytań"
 
 #, fuzzy
 msgid "Your query was not properly saved"
@@ -14021,6 +14682,9 @@ msgstr "Twoje zapytanie zostało zapisane"
 msgid "Your query was updated"
 msgstr "Twoje zapytanie zostało zaktualizowane"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "Twój raport nie mógł zostać usunięty"
 
@@ -14034,6 +14698,10 @@ msgstr "Imputacja zerowa"
 msgid "Zoom"
 msgstr "Powiększenie"
 
+#, fuzzy
+msgid "Zoom level"
+msgstr "obszar powiększenia"
+
 msgid "Zoom level of the map"
 msgstr "Poziom powiększenia mapy"
 
@@ -14042,8 +14710,7 @@ msgid "[ untitled dashboard ]"
 msgstr "[pulpit bez tytułu]"
 
 msgid "[Longitude] and [Latitude] columns must be present in [Group By]"
-msgstr ""
-"Kolumny [Longitude] i [Latitude] muszą być obecne w [Grupuj według]"
+msgstr "Kolumny [Longitude] i [Latitude] muszą być obecne w [Grupuj według]"
 
 msgid "[Longitude] and [Latitude] must be set"
 msgstr "Kolumny [Longitude] i [Latitude] muszą być ustawione"
@@ -14069,9 +14736,9 @@ msgid ""
 "against the primary metric. When omitted, the color is categorical and "
 "based on labels"
 msgstr ""
-"[Opcjonalnie] ta miara pomocnicza jest używana do definiowania koloru jako "
-"współczynnika w stosunku do głównej miary. Jeśli jest pominięta, kolor jest "
-"kategorialny i oparty na etykietach."
+"[Opcjonalnie] ta miara pomocnicza jest używana do definiowania koloru "
+"jako współczynnika w stosunku do głównej miary. Jeśli jest pominięta, "
+"kolor jest kategorialny i oparty na etykietach."
 
 #, fuzzy
 msgid "[untitled]"
@@ -14093,8 +14760,8 @@ msgid ""
 msgstr ""
 "`count` to COUNT(*), jeśli użyto grupowania. Kolumny numeryczne będą "
 "agregowane za pomocą agregatora. Kolumny nienumeryczne będą używane do "
-"etykietowania punktów. Pozostaw puste, aby uzyskać liczbę punktów w każdym "
-"klastrze."
+"etykietowania punktów. Pozostaw puste, aby uzyskać liczbę punktów w "
+"każdym klastrze."
 
 msgid "`operation` property of post processing object undefined"
 msgstr "Właściwość `operation` obiektu przetwarzania po jest niezdefiniowana"
@@ -14106,7 +14773,8 @@ msgstr "Pakiet `prophet` nie jest zainstalowany"
 msgid ""
 "`rename_columns` must have the same length as `columns` + "
 "`time_shift_columns`."
-msgstr "`rename_columns` musi mieć taką samą długość jak `columns` + "
+msgstr ""
+"`rename_columns` musi mieć taką samą długość jak `columns` + "
 "`time_shift_columns`."
 
 msgid "`row_limit` must be greater than or equal to 0"
@@ -14163,9 +14831,6 @@ msgstr "w"
 msgid "auto"
 msgstr "auto"
 
-msgid "auto (Smooth)"
-msgstr "auto (wygładź)"
-
 msgid "background"
 msgstr "tło"
 
@@ -14217,10 +14882,6 @@ msgstr "zmiana"
 msgid "chart"
 msgstr "wykres"
 
-#, fuzzy
-msgid "charts"
-msgstr "wykresy"
-
 msgid "choose WHERE or HAVING..."
 msgstr "wybierz WHERE lub HAVING..."
 
@@ -14231,6 +14892,10 @@ msgstr "wyczyść wszystkie filtry"
 msgid "click here"
 msgstr "kliknij tutaj"
 
+#, fuzzy
+msgid "close"
+msgstr "Zamknij"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr "kod ISO 3166-1 alfa-2 (cca2)"
 
@@ -14287,17 +14952,9 @@ msgstr "szablon_css"
 msgid "cumsum"
 msgstr "cumsum"
 
-#, fuzzy
-msgid "cumulative"
-msgstr "skumulowany"
-
 msgid "dashboard"
 msgstr "pulpit nawigacyjny"
 
-#, fuzzy
-msgid "dashboards"
-msgstr "pulpity nawigacyjne"
-
 msgid "database"
 msgstr "baza danych"
 
@@ -14375,9 +15032,6 @@ msgstr "deckGL"
 msgid "default"
 msgstr "domyślny"
 
-msgid "delete"
-msgstr "usuń"
-
 #, fuzzy
 msgid "descendant"
 msgstr "potomek"
@@ -14392,9 +15046,6 @@ msgstr "odchylenie"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr "dialekt+sterownik://nazwa_użytkownika:hasło@host:port/baza_danych"
 
-msgid "draft"
-msgstr "szkic"
-
 msgid "dttm"
 msgstr "dttm"
 
@@ -14436,10 +15087,6 @@ msgstr "np. world_population"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "np. xy12345.us-east-2.aws"
 
-#, fuzzy
-msgid "e.g., a \"user id\" column"
-msgstr "np. kolumna \"id użytkownika\""
-
 msgid "edit mode"
 msgstr "tryb edycji"
 
@@ -14451,6 +15098,10 @@ msgstr "temat e-maila"
 msgid "entries"
 msgstr "wpisy"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "wpisy"
+
 #, fuzzy
 msgid "error"
 msgstr "błąd"
@@ -14525,13 +15176,6 @@ msgstr "tutaj"
 msgid "hour"
 msgstr "godzina"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-"atrybut CSS renderowania obrazu dla obiektu canvas, który definiuje, jak "
-"przeglądarka skaluje obraz"
-
 msgid "in"
 msgstr "w"
 
@@ -14542,6 +15186,10 @@ msgstr "w modalnym"
 msgid "invalid email"
 msgstr "nieprawidłowy e-mail"
 
+#, fuzzy
+msgid "is"
+msgstr "Kosze"
+
 msgid "is expected to be a Mapbox URL"
 msgstr "powinien być adresem URL Mapbox"
 
@@ -14551,6 +15199,29 @@ msgstr "powinien być liczbą"
 msgid "is expected to be an integer"
 msgstr "powinien być liczbą całkowitą"
 
+#, fuzzy, python-format
+msgid ""
+"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 ""
+"Baza danych %s jest powiązana z %s wykresami, które pojawiają się na %s "
+"tablicach rozdzielczych, a użytkownicy mają otwarte %s zakładki SQL Lab "
+"korzystające z tej bazy danych. Czy na pewno chcesz kontynuować? "
+"Usunięcie bazy danych spowoduje przerwanie działania tych obiektów."
+
+#, fuzzy, python-format
+msgid ""
+"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 ""
+"Zestaw danych %s jest powiązany z %s wykresami, które pojawiają się na %s"
+" tablicach rozdzielczych. Czy na pewno chcesz kontynuować? Usunięcie "
+"zestawu danych spowoduje przerwanie działania tych obiektów."
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "klucz a-z"
 
@@ -14690,48 +15361,37 @@ msgstr "p99"
 msgid "page_size.all"
 msgstr "page_size.all"
 
-msgid "page_size.entries"
-msgstr "page_size.entries"
-
-msgid "page_size.show"
-msgstr "page_size.show"
-
 #, fuzzy
 msgid "pending"
 msgstr "oczekujący"
 
-msgid "percentile (exclusive)"
-msgstr "percentyl (wyłączny)"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
 msgstr ""
-"percentyle muszą być listą lub krotką z dwoma wartościami numerycznymi, z "
-"których pierwsza jest mniejsza od drugiej"
+"percentyle muszą być listą lub krotką z dwoma wartościami numerycznymi, z"
+" których pierwsza jest mniejsza od drugiej"
 
 #, fuzzy
 msgid "permalink state not found"
 msgstr "stan bezpośredniego łącza nie znaleziony"
 
-msgid "pixelated (Sharp)"
-msgstr "pikselowany (wyraźny)"
-
 msgid "pixels"
 msgstr "piksele"
 
 msgid "previous calendar month"
 msgstr "poprzedni miesiąc kalendarzowy"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "poprzedni rok kalendarzowy"
+
 msgid "previous calendar week"
 msgstr "poprzedni tydzień kalendarzowy"
 
 msgid "previous calendar year"
 msgstr "poprzedni rok kalendarzowy"
 
-msgid "published"
-msgstr "opublikowany"
-
 #, fuzzy
 msgid "quarter"
 msgstr "kwartał"
@@ -14753,10 +15413,6 @@ msgstr "restart"
 msgid "recent"
 msgstr "niedawny"
 
-#, fuzzy
-msgid "recents"
-msgstr "niedawne"
-
 #, fuzzy
 msgid "recipients"
 msgstr "odbiorcy"
@@ -14783,8 +15439,8 @@ msgid "running"
 msgstr "uruchomiony"
 
 #, fuzzy
-msgid "saved queries"
-msgstr "zapisane zapytania"
+msgid "save"
+msgstr "Zapisz"
 
 #, fuzzy
 msgid "seconds"
@@ -14803,10 +15459,6 @@ msgstr ""
 "tej samej skali; zmiana: pokaż zmiany w porównaniu do pierwszego punktu "
 "danych w każdej serii"
 
-#, fuzzy
-msgid "shift start date"
-msgstr "Data rozpoczęcia zmiany"
-
 msgid "sql"
 msgstr "sql"
 
@@ -14871,10 +15523,6 @@ msgstr "ikona typu czasowego"
 msgid "textarea"
 msgstr "obszar tekstowy"
 
-#, fuzzy
-msgid "to"
-msgstr "do"
-
 #, fuzzy
 msgid "top"
 msgstr "góra"
@@ -14887,6 +15535,14 @@ msgstr "cofnij"
 msgid "unknown type icon"
 msgstr "ikona nieznanego typu"
 
+#, fuzzy
+msgid "unset"
+msgstr "Czerwiec"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "Ostatnia aktualizacja %s"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14918,9 +15574,6 @@ msgstr "wariancja"
 msgid "view instructions"
 msgstr "wyświetl instrukcje"
 
-msgid "virtual"
-msgstr "wirtualny"
-
 #, fuzzy
 msgid "viz type"
 msgstr "typ wizualizacji"
@@ -14960,3 +15613,6 @@ msgstr "rok"
 
 msgid "zoom area"
 msgstr "obszar powiększenia"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/pt/LC_MESSAGES/messages.po b/superset/translations/pt/LC_MESSAGES/messages.po
index 32e5bc7a54aacc8415012dc80167d5995729e78b..fb810b6e125797471ce172a7b734457e06d7cd02 100644
--- a/superset/translations/pt/LC_MESSAGES/messages.po
+++ b/superset/translations/pt/LC_MESSAGES/messages.po
@@ -17,16 +17,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2018-03-12 16:24+0000\n"
 "Last-Translator: Nuno Heli Beires <nuno.beires@douroeci.com>\n"
 "Language: pt\n"
 "Language-Team: \n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -66,7 +66,10 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
 
@@ -86,9 +89,17 @@ msgstr "Dashboard"
 msgid " a new one"
 msgstr "Alterado em"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr ""
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr ""
 
@@ -149,10 +160,7 @@ msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr ""
 
 #, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
+msgid "%(label)s file"
 msgstr ""
 
 #, python-format
@@ -167,22 +175,6 @@ msgstr ""
 msgid "%(object)s does not exist in this database."
 msgstr ""
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr ""
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr ""
@@ -198,13 +190,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr ""
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -213,10 +198,6 @@ msgid_plural ""
 msgstr[0] ""
 msgstr[1] ""
 
-#, python-format
-msgid "%(type)s File"
-msgstr ""
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -268,10 +249,6 @@ msgstr ""
 msgid "%s column(s)"
 msgstr "Lista de Colunas"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -361,6 +338,10 @@ msgid ""
 "\n"
 msgstr ""
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "Executar a query selecionada"
 
@@ -426,6 +407,12 @@ msgstr ""
 msgid "10 minute"
 msgstr "1 minuto"
 
+msgid "10/90 percentiles"
+msgstr ""
+
+msgid "10000"
+msgstr ""
+
 #, fuzzy
 msgid "104 weeks"
 msgstr "semana"
@@ -534,6 +521,9 @@ msgstr "30 segundos"
 msgid "5 seconds"
 msgstr "30 segundos"
 
+msgid "5/95 percentiles"
+msgstr ""
+
 #, fuzzy
 msgid "52 weeks"
 msgstr "semana"
@@ -606,9 +596,6 @@ msgstr ""
 msgid "A Big Number"
 msgstr "Número grande"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "Selecione os nomes das colunas a serem tratadas como datas na lista pendente."
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr ""
 
@@ -619,6 +606,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr "Origem de dados %(name)s já existe"
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -696,11 +686,6 @@ msgid ""
 "templating syntax"
 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 ""
-
 #, fuzzy
 msgid "A timeout occurred while executing the query."
 msgstr "Ocorreu um erro ao criar a origem dos dados"
@@ -807,34 +792,40 @@ msgstr ""
 msgid "Add CSS template"
 msgstr "Modelos CSS"
 
-msgid "Add Chart"
-msgstr "Gráfico de Queijo"
-
-msgid "Add Column"
-msgstr "Adicionar Coluna"
-
 msgid "Add Dashboard"
 msgstr "Adicionar Dashboard"
 
-msgid "Add Database"
-msgstr "Adicionar Base de Dados"
+msgid "Add Divider"
+msgstr ""
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Adicionar filtro"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "ocultar barra de ferramentas"
 
 msgid "Add Log"
 msgstr ""
 
-msgid "Add Metric"
-msgstr "Adicionar Métrica"
-
 #, fuzzy
 msgid "Add Report"
 msgstr "Janela de exibição"
 
+msgid "Add Role"
+msgstr ""
+
 msgid "Add Rule"
 msgstr ""
 
 msgid "Add Tag"
 msgstr ""
 
+#, fuzzy
+msgid "Add User"
+msgstr "query partilhada"
+
 msgid "Add a Plugin"
 msgstr "Adicionar Coluna"
 
@@ -922,9 +913,6 @@ msgid ""
 "displayed in the filter."
 msgstr ""
 
-msgid "Add filters and dividers"
-msgstr ""
-
 #, fuzzy
 msgid "Add item"
 msgstr "Adicionar filtro"
@@ -941,6 +929,10 @@ msgstr ""
 msgid "Add new formatter"
 msgstr ""
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Adicionar filtro"
+
 msgid "Add required control values to preview chart"
 msgstr ""
 
@@ -965,13 +957,15 @@ msgstr "Gravar e ir para o dashboard"
 msgid "Add to dashboard"
 msgstr "Adicionar ao novo dashboard"
 
-#, fuzzy
-msgid "Add/Edit Filters"
-msgstr "Adicionar filtro"
-
 msgid "Added"
 msgstr ""
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -989,10 +983,6 @@ msgstr ""
 msgid "Additional information"
 msgstr "Metadados adicionais"
 
-#, fuzzy
-msgid "Additional metadata"
-msgstr "Atualizar coluna de metadados"
-
 msgid "Additional padding for legend."
 msgstr ""
 
@@ -1065,6 +1055,14 @@ msgstr "Dados carregados em cache"
 msgid "Advanced-Analytics"
 msgstr "Análise Avançada"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Gráfico de bala"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Por favor insira um nome para o dashboard"
+
 #, fuzzy
 msgid "After"
 msgstr "Estado"
@@ -1100,6 +1098,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "Soma Agregada"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "Soma Agregada"
+
 #, fuzzy
 msgid "Aggregation function"
 msgstr "Função de agregação"
@@ -1184,6 +1186,10 @@ msgstr ""
 msgid "All"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Coluna de tempo"
+
 msgid "All Text"
 msgstr ""
 
@@ -1199,27 +1205,15 @@ msgstr "Filtros"
 msgid "All panels"
 msgstr ""
 
-msgid "All panels with this column will be affected by this filter"
-msgstr ""
-
 msgid "Allow CREATE TABLE AS"
 msgstr "Permitir CREATE TABLE AS"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Permitir a opção CREATE TABLE AS no SQL Lab"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "Permitir CREATE TABLE AS"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Permitir a opção CREATE TABLE AS no SQL Lab"
-
-msgid "Allow Csv Upload"
+msgid "Allow DDL and DML"
 msgstr ""
 
-msgid "Allow DML"
-msgstr "Permitir DML"
-
 msgid "Allow changing catalogs"
 msgstr ""
 
@@ -1234,6 +1228,9 @@ msgstr ""
 msgid "Allow creation of new tables based on queries"
 msgstr ""
 
+msgid "Allow creation of new values"
+msgstr ""
+
 msgid "Allow creation of new views based on queries"
 msgstr ""
 
@@ -1248,29 +1245,23 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr ""
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-
 msgid "Allow node selections"
 msgstr ""
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr ""
 
-msgid "Allow this database to be explored"
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
 msgstr ""
 
-msgid "Allow this database to be queried in SQL Lab"
+msgid "Allow this database to be explored"
 msgstr ""
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
+msgid "Allow this database to be queried in SQL Lab"
 msgstr ""
-"Permitir que os usuários executem instruções non-SELECT (UPDATE, DELETE, "
-"CREATE, ...) no SQL Lab"
 
 msgid "Allowed Domains (comma separated)"
 msgstr ""
@@ -1314,6 +1305,10 @@ msgstr ""
 msgid "An error has occurred"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Ocorreu um erro ao criar a origem dos dados"
+
 msgid "An error occurred"
 msgstr ""
 
@@ -1324,6 +1319,10 @@ msgstr "Ocorreu um erro ao criar a origem dos dados"
 msgid "An error occurred when running alert query"
 msgstr "Ocorreu um erro ao renderizar a visualização: %s"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Ocorreu um erro ao criar a origem dos dados"
+
 #, fuzzy
 msgid "An error occurred while accessing the value."
 msgstr "Ocorreu um erro ao criar a origem dos dados"
@@ -1337,6 +1336,10 @@ msgstr "Ocorreu um erro ao criar a origem dos dados"
 msgid "An error occurred while creating %ss: %s"
 msgstr "Ocorreu um erro ao criar a origem dos dados"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Ocorreu um erro ao criar a origem dos dados"
+
 msgid "An error occurred while creating the data source"
 msgstr "Ocorreu um erro ao criar a origem dos dados"
 
@@ -1477,6 +1480,10 @@ msgid ""
 "button."
 msgstr ""
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Ocorreu um erro ao criar a origem dos dados"
+
 #, fuzzy
 msgid "An error occurred while updating the value."
 msgstr "Ocorreu um erro ao criar a origem dos dados"
@@ -1680,12 +1687,6 @@ msgstr "Filtros"
 msgid "Apply metrics on"
 msgstr ""
 
-msgid "Apply to all panels"
-msgstr ""
-
-msgid "Apply to specific panels"
-msgstr ""
-
 msgid "April"
 msgstr ""
 
@@ -1728,6 +1729,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected queries?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected roles?"
+msgstr ""
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr ""
 
@@ -1737,6 +1741,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected templates?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected users?"
+msgstr ""
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr ""
 
@@ -1777,15 +1784,13 @@ msgstr ""
 msgid "Assist"
 msgstr ""
 
-msgid "Associated Charts"
-msgstr "Visualizações Associadas"
-
-msgid "Async Execution"
-msgstr ""
-
 msgid "Asynchronous query execution"
 msgstr ""
 
+#, fuzzy
+msgid "Attribution"
+msgstr "Contribuição"
+
 msgid "August"
 msgstr ""
 
@@ -1811,6 +1816,17 @@ msgstr "Carregar Valores de Predicado"
 msgid "Automatic Color"
 msgstr ""
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Cláusula WHERE personalizada"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Cláusula WHERE personalizada"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr ""
 
@@ -1818,6 +1834,9 @@ msgstr ""
 msgid "Average"
 msgstr "Gerir"
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr ""
 
@@ -1859,6 +1878,9 @@ msgstr ""
 msgid "Backend"
 msgstr ""
 
+msgid "Background Color"
+msgstr ""
+
 msgid "Backward values"
 msgstr ""
 
@@ -1875,9 +1897,6 @@ msgstr ""
 msgid "Bar Chart"
 msgstr "Explorar gráfico"
 
-msgid "Bar Chart (legacy)"
-msgstr ""
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
 
@@ -1893,10 +1912,24 @@ msgstr "Anotações"
 msgid "Base"
 msgstr "Base de dados"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Base de dados"
+
+msgid "Base height"
+msgstr ""
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Largura"
+
 #, fuzzy
 msgid "Based on a metric"
 msgstr "Selecione métrica"
@@ -1918,9 +1951,6 @@ msgstr "Metadados adicionais"
 msgid "Batch editing %d filters:"
 msgstr ""
 
-msgid "Battery level over time"
-msgstr ""
-
 msgid "Be careful."
 msgstr ""
 
@@ -1944,6 +1974,14 @@ msgstr "Número grande com linha de tendência"
 msgid "Bins"
 msgstr "Mín"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Colunas das séries temporais"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Largura"
+
 #, fuzzy
 msgid "Bottom"
 msgstr "dttm"
@@ -2055,9 +2093,6 @@ msgstr "Gráfico de bala"
 msgid "Business"
 msgstr ""
 
-msgid "Business Data Type"
-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"
@@ -2128,7 +2163,7 @@ msgstr "Modelos CSS"
 msgid "CSS templates could not be deleted."
 msgstr "Não foi possível carregar a query"
 
-msgid "CSV Upload"
+msgid "CSV upload"
 msgstr ""
 
 msgid "CTAS & CVAS SCHEMA"
@@ -2140,8 +2175,8 @@ msgid ""
 "last statement. Then, try running your query again."
 msgstr ""
 
-msgid "CTAS Schema"
-msgstr "Esquema CTAS"
+msgid "CUSTOM"
+msgstr ""
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2155,9 +2190,6 @@ msgstr ""
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr ""
 
-msgid "Cache Timeout"
-msgstr "Tempo limite para cache"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Cache atingiu tempo limite (segundos)"
 
@@ -2204,9 +2236,6 @@ msgstr ""
 msgid "Can select multiple values"
 msgstr ""
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "Não pode haver sobreposição entre Séries e Desagregação"
-
 msgid "Cancel"
 msgstr "Cancelar"
 
@@ -2219,6 +2248,10 @@ msgstr ""
 msgid "Cannot delete a database that has datasets attached"
 msgstr ""
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr ""
 
@@ -2229,6 +2262,10 @@ msgstr ""
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr ""
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Diagrama de Partição"
+
 msgid "Catalog"
 msgstr ""
 
@@ -2311,13 +2348,14 @@ msgstr ""
 msgid "Change order of rows."
 msgstr ""
 
-msgid "Changed By"
-msgstr "Alterado por"
-
 #, fuzzy
 msgid "Changed by"
 msgstr "Alterado por"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "Gerir"
+
 msgid "Changes saved."
 msgstr ""
 
@@ -2368,9 +2406,6 @@ msgstr "Carregar"
 msgid "Chart %(id)s not found"
 msgstr "Visualização %(id)s não encontrada"
 
-msgid "Chart Cache Timeout"
-msgstr "Tempo limite para cache"
-
 #, fuzzy, python-format
 msgid "Chart Data: %s"
 msgstr "Opções do gráfico"
@@ -2476,6 +2511,10 @@ msgstr ""
 msgid "Chart properties updated"
 msgstr "Editar propriedades da visualização"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "Mover gráfico"
+
 #, fuzzy
 msgid "Chart title"
 msgstr "Mover gráfico"
@@ -2526,6 +2565,10 @@ msgstr "A escolha de [Ponto de Raio] deve estar presente em [Agrupar por]"
 msgid "Choose File"
 msgstr "Escolha uma fonte"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Remover gráfico do dashboard"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Remover gráfico do dashboard"
 
@@ -2551,10 +2594,6 @@ msgstr "Escolha uma métrica para o eixo direito"
 msgid "Choose a source"
 msgstr "Escolha uma origem de dados"
 
-#, fuzzy
-msgid "Choose a source and a target"
-msgstr "Escolha uma origem de dados"
-
 #, fuzzy
 msgid "Choose a target"
 msgstr "Escolha uma origem de dados"
@@ -2637,9 +2676,6 @@ msgstr ""
 msgid "Circular"
 msgstr ""
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2660,7 +2696,9 @@ msgstr ""
 msgid "Clear form"
 msgstr ""
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 
 msgid ""
@@ -2687,6 +2725,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr ""
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "clique para editar o título"
+
 msgid "Click to cancel sorting"
 msgstr ""
 
@@ -2814,13 +2856,13 @@ msgstr ""
 msgid "Column Configuration"
 msgstr "Contribuição"
 
-#, fuzzy
-msgid "Column Data Types"
-msgstr "Dados carregados em cache"
-
 msgid "Column Formatting"
 msgstr ""
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Lista de Métricas"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2836,10 +2878,6 @@ msgstr ""
 msgid "Column data types"
 msgstr "Dados carregados em cache"
 
-#, fuzzy
-msgid "Column datatype"
-msgstr "Colunas"
-
 msgid "Column header tooltip"
 msgstr ""
 
@@ -2869,18 +2907,19 @@ msgid ""
 msgstr ""
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
+msgstr "Colunas"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "Coluna"
 
 msgid "Columns"
 msgstr "Colunas"
 
-msgid "Columns To Be Parsed as Dates"
-msgstr ""
-
-#, fuzzy
-msgid "Columns To Read"
-msgstr "Cargos a permitir ao utilizador"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "Lista de Colunas"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2893,6 +2932,9 @@ msgstr ""
 msgid "Columns subtotal position"
 msgstr ""
 
+msgid "Columns to be parsed as dates"
+msgstr ""
+
 msgid "Columns to calculate distribution across."
 msgstr ""
 
@@ -2910,6 +2952,10 @@ msgstr ""
 msgid "Columns to group by on the rows"
 msgstr ""
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Cargos a permitir ao utilizador"
+
 #, fuzzy
 msgid "Combine metrics"
 msgstr "Lista de Métricas"
@@ -2945,17 +2991,6 @@ msgid ""
 "and color."
 msgstr ""
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-
 #, fuzzy
 msgid "Comparison"
 msgstr "Coluna de tempo"
@@ -3018,12 +3053,19 @@ msgstr ""
 msgid "Configure the basics of your Annotation Layer."
 msgstr ""
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 
 msgid "Configure your how you overlay is displayed here."
 msgstr ""
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Mostrar Dashboard"
+
 #, fuzzy
 msgid "Confirm overwrite"
 msgstr "Substitua a visualização %s"
@@ -3031,6 +3073,9 @@ msgstr "Substitua a visualização %s"
 msgid "Confirm save"
 msgstr ""
 
+msgid "Confirm the user's password"
+msgstr ""
+
 #, fuzzy
 msgid "Connect"
 msgstr "Conexão de teste"
@@ -3064,9 +3109,6 @@ msgstr ""
 msgid "Connection failed, please check your connection settings."
 msgstr ""
 
-msgid "Connection looks good!"
-msgstr ""
-
 #, fuzzy
 msgid "Content format"
 msgstr "Formato de data e hora"
@@ -3108,22 +3150,21 @@ msgstr "Copiar para área de transferência"
 msgid "Copy"
 msgstr ""
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "Copiar a instrução SELECT para a área de transferência"
 
-msgid "Copy and Paste JSON credentials"
+msgid "Copy URL"
 msgstr ""
 
-msgid "Copy and paste the entire service account .json file here"
+msgid "Copy and Paste JSON credentials"
 msgstr ""
 
 msgid "Copy link"
 msgstr ""
 
-#, fuzzy
-msgid "Copy message"
-msgstr "Mensagem de Aviso"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Cópia de %s"
@@ -3141,6 +3182,9 @@ msgstr "Query vazia?"
 msgid "Copy query link to your clipboard"
 msgstr "Copiar query de partição para a área de transferência"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr ""
 
@@ -3157,6 +3201,9 @@ msgstr "Copiar para área de transferência"
 msgid "Copy to clipboard"
 msgstr "Copiar para área de transferência"
 
+msgid "Corner Radius"
+msgstr ""
+
 #, fuzzy
 msgid "Correlation"
 msgstr "Descrição"
@@ -3188,6 +3235,9 @@ msgstr "Não foi possível ligar ao servidor"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 #, fuzzy
 msgid "Count"
 msgstr "Coluna"
@@ -3291,6 +3341,9 @@ msgstr "A criar uma nova origem de dados, a exibir numa nova aba"
 msgid "Creator"
 msgstr "Criador"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 #, fuzzy
 msgid "Crimson"
 msgstr "Acção"
@@ -3384,6 +3437,9 @@ msgstr ""
 msgid "Custom color palettes"
 msgstr ""
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "Início"
@@ -3419,9 +3475,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr ""
 
-msgid "D3 Format"
-msgstr "Formato D3"
-
 #, fuzzy
 msgid "D3 format"
 msgstr "Formato D3"
@@ -3482,6 +3535,21 @@ msgstr ""
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr ""
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "Não foi possível gravar a sua query"
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "Não foi possível gravar a sua query"
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "Não foi possível gravar a sua query"
+
 msgid "Dashboard could not be deleted."
 msgstr "Não foi possível gravar a sua query"
 
@@ -3495,6 +3563,10 @@ msgstr ""
 msgid "Dashboard imported"
 msgstr "[Nome do dashboard]"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "Não foi possível gravar a sua query"
+
 msgid "Dashboard parameters are invalid."
 msgstr ""
 
@@ -3542,10 +3614,6 @@ msgstr "Dashboard"
 msgid "Data"
 msgstr "Base de dados"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "nome da origem de dados"
-
 #, fuzzy
 msgid "Data Table"
 msgstr "Editar Tabela"
@@ -3571,6 +3639,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr ""
 
+#, fuzzy
+msgid "Data imported"
+msgstr "nome da origem de dados"
+
 msgid "Data preview"
 msgstr "Pré-visualização de dados"
 
@@ -3746,13 +3818,6 @@ msgid ""
 "database table to the left or "
 msgstr ""
 
-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 ""
-
 #, fuzzy
 msgid "Datasets could not be deleted."
 msgstr "Não foi possível carregar a query"
@@ -3792,9 +3857,6 @@ msgstr ""
 msgid "Date/Time"
 msgstr "Formato da datahora"
 
-msgid "Datetime Format"
-msgstr "Formato de data e hora"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3827,14 +3889,12 @@ msgstr "Acção"
 msgid "December"
 msgstr ""
 
-msgid "Decides which column to sort the base axis by."
-msgstr ""
-
-msgid "Decides which measure to sort the base axis by."
+msgid "Decides which column or measure to sort the base axis by."
 msgstr ""
 
-msgid "Decimal Character"
-msgstr ""
+#, fuzzy
+msgid "Decimal character"
+msgstr "Gráfico de bala"
 
 msgid "Deck.gl - 3D Grid"
 msgstr ""
@@ -3879,9 +3939,6 @@ msgstr "Criado em"
 msgid "Default Catalog"
 msgstr "Latitude padrão"
 
-msgid "Default Endpoint"
-msgstr "Endpoint Padrão"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "Selecione um esquema (%s)"
@@ -3889,7 +3946,10 @@ msgstr "Selecione um esquema (%s)"
 msgid "Default URL"
 msgstr "URL da Base de Dados"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
 
 msgid "Default Value"
@@ -3912,10 +3972,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr ""
 
-#, fuzzy
-msgid "Default value is required"
-msgstr "Origem de dados"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 
@@ -3960,9 +4016,6 @@ msgid ""
 "[Periods] text box"
 msgstr ""
 
-msgid "Defines how each series is broken down"
-msgstr ""
-
 msgid "Defines the grid size in pixels"
 msgstr ""
 
@@ -4022,9 +4075,17 @@ msgstr "Executar a query selecionada"
 msgid "Delete Report?"
 msgstr "Modelos CSS"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "Eliminar"
+
 msgid "Delete Template?"
 msgstr "Modelos CSS"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Executar a query selecionada"
+
 msgid "Delete all Really?"
 msgstr "Tem a certeza que pretende eliminar tudo?"
 
@@ -4044,12 +4105,20 @@ msgstr ""
 msgid "Delete query"
 msgstr "Eliminar"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "Eliminar"
+
 msgid "Delete template"
 msgstr "Carregue um modelo"
 
 msgid "Delete this container and save to remove this message."
 msgstr ""
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Eliminar"
+
 #, fuzzy
 msgid "Deleted"
 msgstr "Eliminar"
@@ -4112,13 +4181,29 @@ msgstr[1] ""
 msgid "Deleted %s"
 msgstr "Eliminar"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Eliminar"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Eliminar"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Eliminar"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Eliminar"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Eliminar"
 
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 
 msgid "Delimited long & lat single column"
@@ -4131,9 +4216,6 @@ msgstr ""
 msgid "Delivery method"
 msgstr "mês"
 
-msgid "Demographics"
-msgstr ""
-
 #, fuzzy
 msgid "Density"
 msgstr "Entidade"
@@ -4141,10 +4223,6 @@ msgstr "Entidade"
 msgid "Dependent on"
 msgstr ""
 
-#, fuzzy
-msgid "Deprecated"
-msgstr "Criado em"
-
 msgid "Description"
 msgstr "Descrição"
 
@@ -4242,10 +4320,6 @@ msgstr ""
 msgid "Discard"
 msgstr "Dashboard"
 
-#, fuzzy
-msgid "Display"
-msgstr "Nome do modelo"
-
 #, fuzzy
 msgid "Display Name"
 msgstr "Nome do modelo"
@@ -4254,12 +4328,19 @@ msgstr "Nome do modelo"
 msgid "Display all"
 msgstr "Nome do modelo"
 
+msgid "Display column in the chart"
+msgstr ""
+
 msgid "Display column level subtotal"
 msgstr ""
 
 msgid "Display column level total"
 msgstr ""
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Colunas"
+
 msgid "Display configuration"
 msgstr ""
 
@@ -4280,7 +4361,7 @@ msgstr ""
 msgid "Display row level total"
 msgstr ""
 
-msgid "Display settings"
+msgid "Display type icon"
 msgstr ""
 
 msgid ""
@@ -4297,9 +4378,6 @@ msgstr ""
 msgid "Distribution"
 msgstr "Contribuição"
 
-msgid "Distribution - Bar Chart"
-msgstr "Gráfico de barras"
-
 msgid "Divider"
 msgstr ""
 
@@ -4330,9 +4408,18 @@ msgstr ""
 msgid "Download as image"
 msgstr ""
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr ""
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr ""
 
@@ -4428,6 +4515,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "Editar Base de Dados"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Editar Base de Dados"
+
+#, python-format
+msgid "Duplicate role %(name)s"
+msgstr ""
+
 msgid "Duplicate tab"
 msgstr ""
 
@@ -4440,17 +4535,6 @@ msgid ""
 "the cache. Note this defaults to the global timeout if undefined."
 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 ""
-
-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."
-
 #, fuzzy
 msgid ""
 "Duration (in seconds) of the caching timeout for this chart. Set to -1 to"
@@ -4458,12 +4542,6 @@ msgid ""
 "undefined."
 msgstr "Duração (em segundos) do tempo limite da cache para esta visualização."
 
-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 ""
-
 #, fuzzy
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
@@ -4482,6 +4560,9 @@ msgstr ""
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr ""
 
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr ""
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr ""
 
@@ -4505,10 +4586,6 @@ msgstr ""
 msgid "ERROR"
 msgstr "Erro"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr ""
-
 msgid "Edge length"
 msgstr ""
 
@@ -4536,31 +4613,19 @@ msgstr "Editar Visualização"
 msgid "Edit CSS template properties"
 msgstr "Editar propriedades da visualização"
 
-msgid "Edit Chart"
-msgstr "Editar gráfico"
-
 #, fuzzy
 msgid "Edit Chart Properties"
 msgstr "Editar propriedades da visualização"
 
-msgid "Edit Column"
-msgstr "Editar Coluna"
-
 msgid "Edit Dashboard"
 msgstr "Editar Dashboard"
 
-msgid "Edit Database"
-msgstr "Editar Base de Dados"
-
 msgid "Edit Dataset "
 msgstr "Editar Base de Dados"
 
 msgid "Edit Log"
 msgstr "Editar"
 
-msgid "Edit Metric"
-msgstr "Editar Métrica"
-
 msgid "Edit Plugin"
 msgstr "Editar Coluna"
 
@@ -4569,16 +4634,21 @@ msgid "Edit Report"
 msgstr "Janela de exibição"
 
 #, fuzzy
-msgid "Edit Rule"
+msgid "Edit Role"
 msgstr "Query vazia?"
 
-msgid "Edit Table"
-msgstr "Editar Tabela"
+#, fuzzy
+msgid "Edit Rule"
+msgstr "Query vazia?"
 
 #, fuzzy
 msgid "Edit Tag"
 msgstr "Editar"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Query vazia?"
+
 #, fuzzy
 msgid "Edit annotation"
 msgstr "Anotações"
@@ -4622,6 +4692,10 @@ msgstr "Editar propriedades da visualização"
 msgid "Edit query"
 msgstr "Query vazia?"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "Query vazia?"
+
 msgid "Edit template"
 msgstr "Carregue um modelo"
 
@@ -4635,6 +4709,10 @@ msgstr "Adicionar ao novo dashboard"
 msgid "Edit time range"
 msgstr ""
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Query vazia?"
+
 msgid "Edited"
 msgstr "Editar"
 
@@ -4661,6 +4739,13 @@ msgstr ""
 msgid "Elevation"
 msgstr "Executar a query selecionada"
 
+msgid "Email"
+msgstr ""
+
+#, fuzzy
+msgid "Email is required"
+msgstr "Origem de dados"
+
 msgid "Email reports active"
 msgstr ""
 
@@ -4677,6 +4762,10 @@ msgstr ""
 msgid "Embed dashboard"
 msgstr "Dashboard"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "Não foi possível gravar a sua query"
+
 msgid "Embedding deactivated."
 msgstr ""
 
@@ -4686,9 +4775,6 @@ msgstr ""
 msgid "Emphasis"
 msgstr ""
 
-msgid "Employment and education"
-msgstr ""
-
 msgid "Empty circle"
 msgstr ""
 
@@ -4713,9 +4799,6 @@ msgstr ""
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr ""
 
-msgid "Enable Filter Select"
-msgstr "Ativar Filtro de Seleção"
-
 msgid "Enable cross-filtering"
 msgstr ""
 
@@ -4819,11 +4902,24 @@ msgstr "Nome do modelo"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr ""
 
-msgid "Entity"
-msgstr "Entidade"
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Tipo de gráfico"
 
 #, fuzzy
-msgid "Entity ID"
+msgid "Enter the user's last name"
+msgstr "Tipo de gráfico"
+
+msgid "Enter the user's username"
+msgstr ""
+
+msgid "Entity"
 msgstr "Entidade"
 
 msgid "Equal Date Sizes"
@@ -4840,6 +4936,14 @@ msgstr "Erro"
 msgid "Error Fetching Tagged Objects"
 msgstr "Desculpe, houve um erro ao gravar este dashbard: "
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "O carregamento de dados falhou"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Ocorreu um erro ao criar a origem dos dados"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr ""
@@ -4863,6 +4967,9 @@ msgstr ""
 msgid "Error message"
 msgstr "Mensagem de Aviso"
 
+msgid "Error parsing"
+msgstr ""
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "Ocorreu um erro ao criar a origem dos dados"
@@ -4878,6 +4985,22 @@ msgstr ""
 msgid "Error saving dataset"
 msgstr "Ocorreu um erro ao criar a origem dos dados"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Ocorreu um erro ao criar a origem dos dados"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "O carregamento de dados falhou"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "O carregamento de dados falhou"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "O carregamento de dados falhou"
+
 #, fuzzy
 msgid "Error while fetching charts"
 msgstr "O carregamento de dados falhou"
@@ -4886,10 +5009,30 @@ msgstr "O carregamento de dados falhou"
 msgid "Error while fetching data: %s"
 msgstr "O carregamento de dados falhou"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "O carregamento de dados falhou"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "O carregamento de dados falhou"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "O carregamento de dados falhou"
+
 #, fuzzy, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "Erro ao carregar a lista de base de dados"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "O carregamento de dados falhou"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "O carregamento de dados falhou"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr ""
@@ -4915,17 +5058,6 @@ msgstr ""
 msgid "Event"
 msgstr "mês"
 
-#, fuzzy
-msgid "Event Flow"
-msgstr "Fluxo de eventos"
-
-#, fuzzy
-msgid "Event Names"
-msgstr "Nome Detalhado"
-
-msgid "Event definition"
-msgstr ""
-
 msgid "Event flow"
 msgstr "Fluxo de eventos"
 
@@ -4948,10 +5080,10 @@ msgstr ""
 msgid "Examples"
 msgstr ""
 
-msgid "Excel Upload"
+msgid "Excel file format cannot be determined"
 msgstr ""
 
-msgid "Excel file format cannot be determined"
+msgid "Excel upload"
 msgstr ""
 
 msgid "Exclude selected values"
@@ -5050,12 +5182,6 @@ msgstr "Exportar para .json"
 msgid "Export to Pivoted .CSV"
 msgstr "Exportar para o formato .csv"
 
-msgid "Export to YAML"
-msgstr "Exportar para .json"
-
-msgid "Export to YAML?"
-msgstr "Exportar para .json"
-
 #, fuzzy
 msgid "Export to full .CSV"
 msgstr "Exportar para o formato .csv"
@@ -5077,11 +5203,9 @@ msgstr ""
 msgid "Expose in SQL Lab"
 msgstr "Expor no SQL Lab"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Expor esta BD no SQL Lab"
-
-msgid "Expression"
-msgstr "Expressão"
+#, fuzzy
+msgid "Extent"
+msgstr "textarea"
 
 msgid "Extra"
 msgstr "Extra"
@@ -5103,10 +5227,6 @@ msgid ""
 "\"warning_markdown\": \"This is a warning.\" }`."
 msgstr ""
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr ""
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr ""
 
@@ -5125,6 +5245,10 @@ msgstr "textarea"
 msgid "FEB"
 msgstr ""
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Editar Base de Dados"
+
 msgid "FRI"
 msgstr ""
 
@@ -5135,16 +5259,15 @@ msgstr "Criador"
 msgid "Factor to multiply the metric by"
 msgstr ""
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr ""
 
 msgid "Failed at retrieving results"
 msgstr "O carregamento dos resultados a partir do backend falhou"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr ""
-
 msgid "Failed to create report"
 msgstr ""
 
@@ -5174,6 +5297,10 @@ msgstr ""
 msgid "Failed to start remote query on a worker."
 msgstr ""
 
+#, fuzzy
+msgid "Failed to stop query."
+msgstr "Filtros de resultados"
+
 #, fuzzy
 msgid "Failed to tag items"
 msgstr "Filtros de resultados"
@@ -5198,9 +5325,6 @@ msgstr ""
 msgid "February"
 msgstr ""
 
-msgid "Fetch Values Predicate"
-msgstr "Carregar Valores de Predicado"
-
 msgid "Fetch data preview"
 msgstr "Obter pré-visualização de dados"
 
@@ -5225,15 +5349,12 @@ msgstr ""
 msgid "File"
 msgstr ""
 
-#, fuzzy
-msgid "File Settings"
-msgstr "Lista de Métricas"
-
 msgid "File extension is not allowed."
 msgstr ""
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "Lista de Métricas"
 
 msgid "File upload"
 msgstr ""
@@ -5309,9 +5430,6 @@ msgstr ""
 msgid "Filter your charts"
 msgstr "Controlo de filtro"
 
-msgid "Filterable"
-msgstr "Filtrável"
-
 msgid "Filters"
 msgstr "Filtros"
 
@@ -5326,6 +5444,15 @@ msgstr "Lista de Métricas"
 msgid "Filters for comparison must have a value"
 msgstr ""
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+msgid "Filters for values greater than or equal."
+msgstr ""
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr ""
@@ -5351,6 +5478,14 @@ msgstr ""
 msgid "First"
 msgstr ""
 
+#, fuzzy
+msgid "First name"
+msgstr "Tipo de gráfico"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "Origem de dados"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5432,6 +5567,10 @@ msgstr "Formato de data e hora"
 msgid "Force refresh"
 msgstr "Forçar atualização de dados"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Forçar atualização de dados"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "Forçar atualização de dados"
@@ -5557,6 +5696,10 @@ msgstr ""
 msgid "Geohash"
 msgstr ""
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Coluna de tempo"
+
 msgid "Get the last date by the date unit."
 msgstr ""
 
@@ -5619,9 +5762,6 @@ msgstr "Agrupar por"
 msgid "Group by"
 msgstr "Agrupar por"
 
-msgid "Groupable"
-msgstr "Agrupável"
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5639,11 +5779,6 @@ msgstr "Carregue um modelo"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-
 #, fuzzy
 msgid "Has created by"
 msgstr "foi criado"
@@ -5651,9 +5786,6 @@ msgstr "foi criado"
 msgid "Header"
 msgstr "Subtítulo"
 
-msgid "Header Row"
-msgstr ""
-
 #, fuzzy
 msgid "Header row"
 msgstr "Subtítulo"
@@ -5661,19 +5793,16 @@ msgstr "Subtítulo"
 msgid "Heatmap"
 msgstr "Mapa de Calor"
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "Explorar gráfico"
-
-msgid "Heatmap Options"
-msgstr ""
-
 msgid "Height"
 msgstr "Altura"
 
 msgid "Height of the sparkline"
 msgstr ""
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Coluna de tempo"
+
 msgid "Hide Line"
 msgstr ""
 
@@ -5703,10 +5832,6 @@ msgstr "Pesquisa"
 msgid "Histogram"
 msgstr "Histograma"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "Explorar gráfico"
-
 msgid "Home"
 msgstr ""
 
@@ -5789,25 +5914,12 @@ msgstr ""
 "utilizador atualmente conectado recorrendo à propriedade "
 "hive.server2.proxy.user."
 
-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.<br/>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."
+msgid "If a metric is specified, sorting will be done based on the metric value"
 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. "
-"<br/> 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."
-
-#, fuzzy
-msgid "If Table Already Exists"
-msgstr "Origem de dados %(name)s já existe"
 
-msgid "If a metric is specified, sorting will be done based on the metric value"
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
 msgstr ""
 
 msgid ""
@@ -5815,8 +5927,9 @@ msgid ""
 "it sorts the results ascending."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr ""
+#, fuzzy
+msgid "If table already exists"
+msgstr "Origem de dados %(name)s já existe"
 
 msgid "Ignore cache when generating report"
 msgstr ""
@@ -5837,9 +5950,6 @@ msgstr ""
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr "Personificar o utilizador conectado"
 
-msgid "Impersonate the logged on user"
-msgstr "Personificar o utilizador conectado"
-
 msgid "Import"
 msgstr "Importar"
 
@@ -5850,9 +5960,6 @@ msgstr "Importar"
 msgid "Import Dashboard(s)"
 msgstr "Importar Dashboards"
 
-msgid "Import a table definition"
-msgstr ""
-
 msgid "Import chart failed for an unknown reason"
 msgstr ""
 
@@ -5886,15 +5993,15 @@ msgstr "Query vazia?"
 msgid "Import saved query failed for an unknown reason."
 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 ""
-
 #, fuzzy
 msgid "In"
 msgstr "Mín"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr ""
 
@@ -5919,17 +6026,18 @@ msgstr "Criado em"
 msgid "Index"
 msgstr ""
 
-msgid "Index Column"
-msgstr "Adicionar Coluna"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "ocultar barra de ferramentas"
+msgid "Index column"
+msgstr "Coluna de tempo"
 
 #, fuzzy
 msgid "Index label"
 msgstr "ocultar barra de ferramentas"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Ver chaves e índices (%s)"
+
 msgid "Info"
 msgstr ""
 
@@ -5948,6 +6056,13 @@ msgstr ""
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr ""
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "ocultar barra de ferramentas"
+
+msgid "Insert Layer title"
+msgstr ""
+
 #, fuzzy
 msgid "Intensity"
 msgstr "Entidade"
@@ -5986,10 +6101,6 @@ msgstr "Controlo de filtro"
 msgid "Intervals"
 msgstr "Filtrável"
 
-#, fuzzy
-msgid "Intesity"
-msgstr "Entidade"
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -6030,6 +6141,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr "Formato da Tabela Datahora"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr ""
@@ -6093,6 +6207,10 @@ msgstr ""
 msgid "Invert current page"
 msgstr ""
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Nome do modelo"
+
 #, fuzzy
 msgid "Is certified"
 msgstr "foi criado"
@@ -6279,12 +6397,6 @@ msgstr ""
 msgid "Last"
 msgstr ""
 
-msgid "Last Changed"
-msgstr "Modificado pela última vez"
-
-msgid "Last Modified"
-msgstr "Última Alteração"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr ""
@@ -6293,6 +6405,10 @@ msgstr ""
 msgid "Last Updated %s by %s"
 msgstr "Última Alteração"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Latitude padrão"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr ""
@@ -6301,6 +6417,10 @@ msgstr ""
 msgid "Last day"
 msgstr "Cluster"
 
+#, fuzzy
+msgid "Last login"
+msgstr "mês"
+
 #, fuzzy
 msgid "Last modified"
 msgstr "Última Alteração"
@@ -6309,6 +6429,14 @@ msgstr "Última Alteração"
 msgid "Last month"
 msgstr "mês"
 
+#, fuzzy
+msgid "Last name"
+msgstr "nome da origem de dados"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Origem de dados"
+
 #, fuzzy
 msgid "Last quarter"
 msgstr "Query"
@@ -6325,16 +6453,42 @@ msgstr "semana"
 msgid "Last year"
 msgstr "Cluster"
 
+msgid "Lat"
+msgstr ""
+
 msgid "Latitude"
 msgstr ""
 
 msgid "Latitude of default viewport"
 msgstr ""
 
+#, fuzzy
+msgid "Layer"
+msgstr "ano"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Tipo de gráfico"
+
+msgid "Layer URL"
+msgstr ""
+
 #, fuzzy
 msgid "Layer configuration"
 msgstr "Controlo de filtro"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Mover gráfico"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Valor de filtro"
+
+#, fuzzy
+msgid "Layers"
+msgstr "ocultar barra de ferramentas"
+
 msgid "Layout"
 msgstr ""
 
@@ -6347,11 +6501,6 @@ msgstr ""
 msgid "Layout type of tree"
 msgstr ""
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-
 #, fuzzy
 msgid "Least recently modified"
 msgstr "Última Alteração"
@@ -6422,11 +6571,6 @@ msgstr ""
 msgid "Limit type"
 msgstr ""
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-
 msgid "Limits the number of cells that get retrieved."
 msgstr ""
 
@@ -6464,6 +6608,9 @@ msgid ""
 "chart common in many fields."
 msgstr ""
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr ""
 
@@ -6495,9 +6642,16 @@ msgstr ""
 msgid "Link Copied!"
 msgstr "Copiado!"
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr ""
 
+#, fuzzy
+msgid "List Users"
+msgstr "Número grande"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr ""
 
@@ -6567,6 +6721,10 @@ msgstr ""
 msgid "Login"
 msgstr "Login"
 
+#, fuzzy
+msgid "Login count"
+msgstr "Coluna"
+
 #, fuzzy
 msgid "Login with"
 msgstr "Largura"
@@ -6577,6 +6735,9 @@ msgstr "Sair"
 msgid "Logs"
 msgstr ""
 
+msgid "Lon"
+msgstr ""
+
 msgid "Long dashed"
 msgstr ""
 
@@ -6619,9 +6780,6 @@ msgstr ""
 msgid "Main"
 msgstr "Mín"
 
-msgid "Main Datetime Column"
-msgstr "Coluna Datahora principal"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6656,6 +6814,10 @@ msgstr ""
 msgid "Map"
 msgstr "Treemap"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Editar propriedades da visualização"
+
 msgid "Map Style"
 msgstr ""
 
@@ -6702,6 +6864,9 @@ msgstr ""
 msgid "Markup type"
 msgstr "Tipo de marcação"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "Máx"
 
@@ -6709,7 +6874,7 @@ msgstr "Máx"
 msgid "Max Bubble Size"
 msgstr "Tamanho da bolha"
 
-msgid "Max Events"
+msgid "Max. features"
 msgstr ""
 
 msgid "Maximum"
@@ -6721,6 +6886,9 @@ msgstr ""
 msgid "Maximum Radius"
 msgstr ""
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6761,6 +6929,18 @@ msgstr ""
 msgid "Medium"
 msgstr ""
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -6862,11 +7042,6 @@ msgid ""
 "appropriate)."
 msgstr ""
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-
 msgid "Metrics"
 msgstr "Métricas"
 
@@ -6910,7 +7085,7 @@ msgstr ""
 msgid "Minimum Radius"
 msgstr ""
 
-msgid "Minimum leaf node event count"
+msgid "Minimum must be strictly less than maximum"
 msgstr ""
 
 msgid ""
@@ -6924,6 +7099,10 @@ msgstr ""
 msgid "Minimum value"
 msgstr ""
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "Data de inicio não pode ser posterior à data de fim"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr ""
 
@@ -6949,6 +7128,9 @@ msgstr "minuto"
 msgid "Minutes value"
 msgstr "Valor de filtro"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 #, fuzzy
 msgid "Missing URL parameters"
 msgstr "Nome do modelo"
@@ -6968,6 +7150,12 @@ msgstr "Modificado"
 msgid "Modified %s"
 msgstr "Última Alteração"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 #, fuzzy
 msgid "Modified by"
 msgstr "Modificado"
@@ -6976,10 +7164,6 @@ msgstr "Modificado"
 msgid "Modified by: %s"
 msgstr "Última Alteração"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr ""
-
 msgid "Monday"
 msgstr ""
 
@@ -7045,9 +7229,6 @@ msgstr "Remover gráfico do dashboard"
 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]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "Deve ser especificada uma coluna númerica"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr ""
 
@@ -7075,9 +7256,6 @@ msgstr "Agrupar por"
 msgid "NOV"
 msgstr ""
 
-msgid "NOW"
-msgstr ""
-
 #, fuzzy
 msgid "NUMERIC"
 msgstr "Métrica"
@@ -7104,9 +7282,6 @@ msgstr ""
 msgid "Name of the source nodes"
 msgstr ""
 
-msgid "Name of the table that exists in the source database"
-msgstr "Nome da tabela que existe na base de dados de origem"
-
 msgid "Name of the target nodes"
 msgstr ""
 
@@ -7124,20 +7299,24 @@ msgstr ""
 msgid "Need help? Learn more about"
 msgstr ""
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Erro de rede."
+
 #, fuzzy
 msgid "Network error"
 msgstr "Erro de rede."
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Ocorreu um erro ao criar a origem dos dados"
+
 msgid "Network error."
 msgstr "Erro de rede."
 
 msgid "New chart"
 msgstr "Mover gráfico"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr ""
-
 #, fuzzy
 msgid "New dataset"
 msgstr "Base de dados"
@@ -7193,6 +7372,10 @@ msgstr "Mover gráfico"
 msgid "No Tags created"
 msgstr "foi criado"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Executar a query selecionada"
+
 #, fuzzy
 msgid "No annotation layers"
 msgstr "Camadas de anotação"
@@ -7214,10 +7397,6 @@ msgstr "Filtros"
 msgid "No charts"
 msgstr "Mover gráfico"
 
-#, fuzzy
-msgid "No charts yet"
-msgstr "Mover gráfico"
-
 #, fuzzy
 msgid "No columns found"
 msgstr "Coluna"
@@ -7234,10 +7413,6 @@ msgstr ""
 msgid "No compatible schema found"
 msgstr ""
 
-#, fuzzy
-msgid "No dashboards yet"
-msgstr "Sem dashboards"
-
 msgid "No data"
 msgstr "Metadados"
 
@@ -7247,6 +7422,10 @@ msgstr ""
 msgid "No data in file"
 msgstr ""
 
+#, fuzzy
+msgid "No databases available"
+msgstr "descrição"
+
 msgid "No databases match your search"
 msgstr ""
 
@@ -7282,13 +7461,6 @@ msgstr ""
 msgid "No matching records found"
 msgstr "Nenhum registo encontrado"
 
-#, fuzzy
-msgid "No of Bins"
-msgstr "Cópia de %s"
-
-msgid "No recents yet"
-msgstr ""
-
 msgid "No records found"
 msgstr "Nenhum registo encontrado"
 
@@ -7311,6 +7483,10 @@ msgid ""
 "contains data for the selected time range."
 msgstr ""
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Mover gráfico"
+
 msgid "No rows were returned for this dataset"
 msgstr ""
 
@@ -7324,10 +7500,6 @@ msgstr ""
 msgid "No saved metrics found"
 msgstr "Selecione métrica"
 
-#, fuzzy
-msgid "No saved queries yet"
-msgstr "Queries Gravadas"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 
@@ -7345,6 +7517,10 @@ msgstr ""
 msgid "No time columns"
 msgstr "Coluna de tempo"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Mover gráfico"
+
 msgid "No validator found (configured for the engine)"
 msgstr ""
 
@@ -7426,6 +7602,10 @@ msgstr ""
 msgid "Not up to date"
 msgstr ""
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "Camadas de anotação"
+
 msgid "Nothing triggered"
 msgstr ""
 
@@ -7530,9 +7710,6 @@ msgstr ""
 msgid "Offline"
 msgstr ""
 
-msgid "Offset"
-msgstr "Offset"
-
 msgid "On Grace"
 msgstr ""
 
@@ -7557,6 +7734,10 @@ msgstr "Um ou vários controles para pivotar como colunas"
 msgid "One or many metrics to display"
 msgstr "Uma ou várias métricas para exibir"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "Camadas de anotação para sobreposição na visualização"
+
 msgid "One or more columns already exist"
 msgstr ""
 
@@ -7584,12 +7765,6 @@ msgstr ""
 msgid "One or more parameters specified in the query are missing."
 msgstr ""
 
-msgid "One ore more annotation layers failed loading."
-msgstr ""
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr ""
-
 msgid "Only Total"
 msgstr ""
 
@@ -7602,9 +7777,6 @@ msgstr ""
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
 
-msgid "Only selected panels will be affected by this filter"
-msgstr ""
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7683,15 +7855,19 @@ msgstr "Opções"
 msgid "Or choose from a list of other databases we support:"
 msgstr ""
 
-msgid "Order by entity id"
-msgstr ""
-
 msgid "Order results by selected columns"
 msgstr ""
 
 msgid "Ordering"
 msgstr ""
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 #, fuzzy
 msgid "Orientation"
 msgstr "Anotações"
@@ -7820,6 +7996,9 @@ msgid ""
 " or username."
 msgstr "Proprietários é uma lista de utilizadores que podem alterar o dashboard."
 
+msgid "PDF download failed, please refresh and try again."
+msgstr ""
+
 msgid "Page length"
 msgstr ""
 
@@ -7882,6 +8061,14 @@ msgstr ""
 msgid "Password"
 msgstr "Broker Port"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "Origem de dados"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Dashboards"
+
 msgid "Paste Private Key here"
 msgstr ""
 
@@ -7940,6 +8127,14 @@ msgstr "Períodos"
 msgid "Periods must be a whole number"
 msgstr ""
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Expressão"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr ""
 
@@ -7955,10 +8150,6 @@ msgstr ""
 msgid "Physical (table or view)"
 msgstr ""
 
-#, fuzzy
-msgid "Physical dataset"
-msgstr "Escolha uma origem de dados"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
 
@@ -7980,15 +8171,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr ""
 
-msgid "Pick at least one field for [Series]"
-msgstr "Escolha pelo menos um campo para [Séries]"
-
 msgid "Pick at least one metric"
 msgstr "Selecione pelo menos uma métrica"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "Selecione exatamente 2 colunas [Origem e Alvo]"
-
 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."
@@ -8001,9 +8186,8 @@ msgstr "Escolha a sua linguagem de marcação favorita"
 msgid "Pie Chart"
 msgstr "Mover gráfico"
 
-#, fuzzy
-msgid "Pie Chart (legacy)"
-msgstr "Explorar gráfico"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr ""
@@ -8015,6 +8199,14 @@ msgstr ""
 msgid "Pin"
 msgstr "Mín"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "Eliminar"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Altura"
+
 msgid "Pivot Table"
 msgstr "Tabela Pivot"
 
@@ -8064,6 +8256,9 @@ msgid ""
 "your query again."
 msgstr ""
 
+msgid "Please choose a valid value"
+msgstr ""
+
 #, fuzzy
 msgid "Please choose at least one groupby"
 msgstr "Selecione pelo menos um campo \"Agrupar por\" "
@@ -8074,12 +8269,24 @@ msgstr ""
 msgid "Please confirm the overwrite values."
 msgstr ""
 
+msgid "Please confirm your password"
+msgstr ""
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Por favor insira um nome para a visualização"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr ""
 
@@ -8092,9 +8299,6 @@ msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] ""
 msgstr[1] ""
 
-msgid "Please save the query to enable sharing"
-msgstr ""
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
 
@@ -8171,9 +8375,6 @@ msgstr ""
 msgid "Populate \"Default value\" to enable this control"
 msgstr ""
 
-msgid "Population age data"
-msgstr ""
-
 #, fuzzy
 msgid "Port"
 msgstr "Janela de exibição"
@@ -8214,15 +8415,6 @@ msgstr ""
 msgid "Pre-filter is required"
 msgstr "Origem de dados"
 
-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."
-
 #, fuzzy
 msgid "Predictive"
 msgstr "Acção"
@@ -8242,10 +8434,6 @@ msgstr "Pré-visualização para %s"
 msgid "Preview uploaded file"
 msgstr ""
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "Pré-visualização para %s"
-
 msgid "Previous"
 msgstr "Pré-visualização para %s"
 
@@ -8294,16 +8482,11 @@ msgstr ""
 msgid "Progressive"
 msgstr ""
 
-msgid "Propagate"
-msgstr ""
-
-msgid "Proportional"
-msgstr ""
-
-msgid "Public and privately shared sheets"
-msgstr ""
+#, fuzzy
+msgid "Project Id"
+msgstr "Criado em"
 
-msgid "Publicly shared sheets only"
+msgid "Proportional"
 msgstr ""
 
 msgid "Published"
@@ -8325,9 +8508,6 @@ msgstr "Data de inicio não pode ser posterior à data de fim"
 msgid "Put the labels outside of the pie?"
 msgstr ""
 
-msgid "Put the labels outside the pie?"
-msgstr ""
-
 msgid "Put your code here"
 msgstr "Insira o seu código aqui"
 
@@ -8444,10 +8624,6 @@ msgstr "Parâmetros"
 msgid "Radius in miles"
 msgstr ""
 
-#, python-format
-msgid "Ran %s"
-msgstr ""
-
 #, fuzzy
 msgid "Range"
 msgstr "Gerir"
@@ -8480,19 +8656,10 @@ msgstr "Descrição"
 msgid "Raw records"
 msgstr ""
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 #, fuzzy
 msgid "Recently modified"
 msgstr "Última Alteração"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 msgid "Recents"
 msgstr ""
 
@@ -8511,9 +8678,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-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"
-
 msgid "Redo the action"
 msgstr ""
 
@@ -8555,6 +8719,10 @@ msgstr "Intervalo de atualização"
 msgid "Refresh interval saved"
 msgstr "Intervalo de atualização"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "Selecione um esquema (%s)"
+
 msgid "Refresh the default values"
 msgstr ""
 
@@ -8613,8 +8781,10 @@ msgid "Remove table preview"
 msgstr "Remover pré-visualização de tabela"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr ""
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
 
 msgid "Rename tab"
 msgstr "renomear aba"
@@ -8625,13 +8795,11 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
-#, fuzzy
-msgid "Rendering"
-msgstr "Ordenar decrescente"
-
 msgid "Replace"
 msgstr ""
 
@@ -8736,6 +8904,9 @@ msgstr "Expressão"
 msgid "Repulsion strength between nodes"
 msgstr ""
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr ""
@@ -8769,6 +8940,10 @@ msgstr ""
 msgid "Reset"
 msgstr ""
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Coluna de tempo"
+
 #, fuzzy
 msgid "Reset state"
 msgstr "Repor Estado"
@@ -8796,6 +8971,10 @@ msgstr ""
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr ""
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "Procurar Resultados"
+
 msgid "Return to specific datetime."
 msgstr ""
 
@@ -8839,6 +9018,27 @@ msgstr ""
 msgid "Role"
 msgstr "Perfil"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Tipo de gráfico"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "Origem de dados"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Origem de dados"
+
+msgid "Role successfully updated!"
+msgstr ""
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Cargo"
 
@@ -8914,9 +9114,6 @@ msgstr ""
 msgid "Rows subtotal position"
 msgstr ""
 
-msgid "Rows to Read"
-msgstr "Cargos a permitir ao utilizador"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "Cargos a permitir ao utilizador"
@@ -8989,14 +9186,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "Copiado!"
 
-msgid "SQL Expression"
-msgstr "Expressão SQL"
-
 msgid "SQL Lab"
 msgstr "SQL Lab"
 
-msgid "SQL Lab View"
-msgstr "SQL Lab"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "Queries Gravadas"
 
 #, python-format
 msgid ""
@@ -9091,20 +9286,10 @@ msgstr "Não foi possível gravar a sua query"
 msgid "Samples for datasource could not be retrieved."
 msgstr "Não foi possível gravar a sua query"
 
-msgid "Sankey"
-msgstr "Sankey"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Gráfico de Queijo"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "Explorar gráfico"
-
-msgid "Sankey Diagram with Loops"
-msgstr ""
-
 #, fuzzy
 msgid "Satellite"
 msgstr "Filtro de data"
@@ -9175,9 +9360,6 @@ msgstr ""
 msgid "Save query"
 msgstr "partilhar query"
 
-msgid "Save the query to enable this feature"
-msgstr ""
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
 
@@ -9208,6 +9390,9 @@ msgstr ""
 msgid "Saved query parameters are invalid."
 msgstr "Camadas de anotação para sobreposição na visualização"
 
+msgid "Saving..."
+msgstr ""
+
 msgid "Scale and Move"
 msgstr ""
 
@@ -9262,11 +9447,6 @@ msgstr "Esquema"
 msgid "Schema cache timeout"
 msgstr "Tempo limite para cache"
 
-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"
-
 msgid "Schemas allowed for File upload"
 msgstr ""
 
@@ -9356,9 +9536,6 @@ msgstr "30 segundos"
 msgid "Seconds value"
 msgstr "30 segundos"
 
-msgid "Secure Extra"
-msgstr "Segurança"
-
 #, fuzzy
 msgid "Secure extra"
 msgstr "Segurança"
@@ -9461,6 +9638,10 @@ msgstr ""
 msgid "Select a sheet name from the uploaded file"
 msgstr ""
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Selecione uma base de dados"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -9480,7 +9661,7 @@ msgstr "Selecione uma base de dados"
 msgid "Select all items"
 msgstr "Filtros de resultados"
 
-msgid "Select any columns for metadata inspection"
+msgid "Select an aggregation method to apply to the metric."
 msgstr ""
 
 msgid "Select catalog or type to search catalogs"
@@ -9510,6 +9691,11 @@ msgstr "Esquema de cores lineares"
 msgid "Select column"
 msgstr "Coluna de tempo"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+"Selecione os nomes das colunas a serem tratadas como datas na lista "
+"pendente."
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9603,6 +9789,14 @@ msgstr "nome da origem de dados"
 msgid "Select owners"
 msgstr ""
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Repor Estado"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Selecione uma base de dados"
+
 #, fuzzy
 msgid "Select saved metrics"
 msgstr "Selecione métrica"
@@ -9618,9 +9812,19 @@ msgstr ""
 msgid "Select scheme"
 msgstr "Selecione um esquema (%s)"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr ""
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Repor Estado"
+
 msgid "Select table or type to search tables"
 msgstr ""
 
@@ -9645,12 +9849,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr ""
 
-msgid "Select the number of bins for the histogram"
-msgstr ""
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr ""
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9673,9 +9871,6 @@ msgstr ""
 msgid "Send as text"
 msgstr ""
 
-msgid "Send range filter events to other charts"
-msgstr ""
-
 msgid "September"
 msgstr ""
 
@@ -9689,14 +9884,6 @@ msgstr "Séries"
 msgid "Series Height"
 msgstr "Limite de série"
 
-#, fuzzy
-msgid "Series Limit Sort By"
-msgstr "Limite de série"
-
-#, fuzzy
-msgid "Series Limit Sort Descending"
-msgstr "Ordenar decrescente"
-
 msgid "Series Order"
 msgstr ""
 
@@ -9727,6 +9914,9 @@ msgstr ""
 msgid "Service Account"
 msgstr ""
 
+msgid "Service version"
+msgstr ""
+
 msgid "Set auto-refresh interval"
 msgstr "Intervalo de atualização"
 
@@ -9754,6 +9944,9 @@ msgstr ""
 msgid "Settings for time series"
 msgstr ""
 
+msgid "Shape"
+msgstr ""
+
 msgid "Share"
 msgstr ""
 
@@ -9819,18 +10012,9 @@ msgstr ""
 msgid "Show Cell bars"
 msgstr "Gráfico de bala"
 
-msgid "Show Chart"
-msgstr "Mostrar Dashboard"
-
-msgid "Show Column"
-msgstr "Mostrar Coluna"
-
 msgid "Show Dashboard"
 msgstr "Mostrar Dashboard"
 
-msgid "Show Database"
-msgstr "Mostrar Base de Dados"
-
 #, fuzzy
 msgid "Show Labels"
 msgstr "Mostrar Tabela"
@@ -9841,9 +10025,6 @@ msgstr "Mostrar totais"
 msgid "Show Markers"
 msgstr ""
 
-msgid "Show Metric"
-msgstr "Mostrar Métrica"
-
 #, fuzzy
 msgid "Show Metric Names"
 msgstr "Mostrar Métrica"
@@ -9852,9 +10033,6 @@ msgstr "Mostrar Métrica"
 msgid "Show Range Filter"
 msgstr "Filtros de resultados"
 
-msgid "Show Table"
-msgstr "Mostrar Tabela"
-
 msgid "Show Timestamp"
 msgstr ""
 
@@ -9892,9 +10070,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "Mostrar Coluna"
 
-msgid "Show all..."
-msgstr ""
-
 msgid "Show axis line ticks"
 msgstr ""
 
@@ -9920,6 +10095,10 @@ msgstr ""
 msgid "Show empty columns"
 msgstr "Mostrar Coluna"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "Mostrar Métrica"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9942,9 +10121,6 @@ msgstr ""
 msgid "Show less columns"
 msgstr "Mostrar Coluna"
 
-msgid "Show less..."
-msgstr ""
-
 msgid "Show minor ticks on axes."
 msgstr ""
 
@@ -9984,6 +10160,10 @@ msgstr "Mostrar Dashboard"
 msgid "Show the value on top of the bar"
 msgstr ""
 
+#, fuzzy
+msgid "Show total"
+msgstr "Mostrar Tabela"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -10018,7 +10198,7 @@ msgid ""
 msgstr ""
 
 #, python-format
-msgid "Showing %s of %s"
+msgid "Showing %s of %s items"
 msgstr ""
 
 msgid "Shows a list of all series available at that point in time"
@@ -10054,16 +10234,13 @@ msgstr "Valor de filtro"
 msgid "Single value type"
 msgstr ""
 
-msgid "Size of edge symbols"
-msgstr ""
-
-msgid "Size of marker. Also applies to forecast observations."
+msgid "Size in pixels"
 msgstr ""
 
-msgid "Sizes of vehicles"
+msgid "Size of edge symbols"
 msgstr ""
 
-msgid "Skip Rows"
+msgid "Size of marker. Also applies to forecast observations."
 msgstr ""
 
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
@@ -10136,9 +10313,6 @@ msgstr ""
 msgid "Sorry, something went wrong. Try again later."
 msgstr ""
 
-msgid "Sorry, there appears to be no data"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr "Desculpe, houve um erro ao gravar este dashbard: "
@@ -10157,10 +10331,6 @@ msgstr "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!"
 msgid "Sort"
 msgstr "Janela de exibição"
 
-#, fuzzy
-msgid "Sort Bars"
-msgstr "Ordenar por"
-
 msgid "Sort Descending"
 msgstr "Ordenar decrescente"
 
@@ -10184,9 +10354,6 @@ msgstr ""
 msgid "Sort ascending"
 msgstr "Ordenar decrescente"
 
-msgid "Sort bars by x labels."
-msgstr ""
-
 msgid "Sort by"
 msgstr "Ordenar por"
 
@@ -10217,6 +10384,10 @@ msgstr "Filtrável"
 msgid "Sort metric"
 msgstr "Mostrar Métrica"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "partilhar query"
+
 #, fuzzy
 msgid "Sort rows by"
 msgstr "Ordenar por"
@@ -10231,10 +10402,6 @@ msgstr "Tipo de gráfico"
 msgid "Source"
 msgstr "Fonte"
 
-#, fuzzy
-msgid "Source / Target"
-msgstr "Nome da origem de dados"
-
 msgid "Source SQL"
 msgstr "Fonte SQL"
 
@@ -10280,9 +10447,6 @@ msgstr ""
 msgid "Stack"
 msgstr ""
 
-msgid "Stack Trace:"
-msgstr ""
-
 msgid "Stack series"
 msgstr ""
 
@@ -10298,9 +10462,6 @@ msgstr ""
 msgid "Stacked Style"
 msgstr ""
 
-msgid "Stacked style"
-msgstr ""
-
 msgid "Standard time series"
 msgstr ""
 
@@ -10399,9 +10560,6 @@ msgstr ""
 msgid "Strength to pull the graph toward center"
 msgstr ""
 
-msgid "Stretched style"
-msgstr ""
-
 #, fuzzy
 msgid "Stroke Color"
 msgstr "Selecione uma cor"
@@ -10424,16 +10582,20 @@ msgstr ""
 msgid "Subdomain"
 msgstr ""
 
-#, fuzzy
-msgid "Subheader"
-msgstr "Subtítulo"
-
 msgid "Subheader Font Size"
 msgstr ""
 
 msgid "Submit"
 msgstr ""
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "%s - sem título"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Tamanho da bolha"
+
 msgid "Subtotal"
 msgstr ""
 
@@ -10489,10 +10651,6 @@ msgstr ""
 msgid "Superset chart"
 msgstr "Explorar gráfico"
 
-#, fuzzy
-msgid "Superset dashboard"
-msgstr "Gravar Dashboard"
-
 msgid "Superset encountered an error while running a command."
 msgstr ""
 
@@ -10503,9 +10661,6 @@ msgstr ""
 msgid "Supported databases"
 msgstr "Selecione uma base de dados"
 
-msgid "Survey Responses"
-msgstr ""
-
 #, fuzzy
 msgid "Swap dataset"
 msgstr "Escolha uma origem de dados"
@@ -10519,6 +10674,12 @@ msgid ""
 "well."
 msgstr ""
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 #, fuzzy
 msgid "Symbol"
 msgstr "parafuso"
@@ -10530,9 +10691,20 @@ msgstr ""
 msgid "Symbol size"
 msgstr "Tamanho da bolha"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr ""
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr ""
 
@@ -10543,10 +10715,6 @@ msgstr ""
 msgid "TABLES"
 msgstr ""
 
-#, fuzzy
-msgid "TEMPORAL X-AXIS"
-msgstr "É temporal"
-
 #, fuzzy
 msgid "TEMPORAL_RANGE"
 msgstr "É temporal"
@@ -10586,6 +10754,10 @@ msgstr ""
 "Tabela [{}] não encontrada, por favor verifique conexão à base de dados, "
 "esquema e nome da tabela"
 
+#, fuzzy
+msgid "Table actions"
+msgstr "Coluna de tempo"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10599,6 +10771,10 @@ msgstr "Tempo limite para cache"
 msgid "Table columns"
 msgstr "Coluna de tempo"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Nome da Tabela"
+
 msgid "Table name undefined"
 msgstr "Nome da Tabela"
 
@@ -10670,11 +10846,6 @@ msgstr "Não foi possível carregar a query"
 msgid "Tags"
 msgstr "Estado"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-
 #, fuzzy
 msgid "Target"
 msgstr "Início"
@@ -10703,6 +10874,10 @@ msgstr ""
 "Ligação predefinida, é possível incluir {{ metric }} ou outros valores "
 "provenientes dos controlos."
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "É temporal"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10751,9 +10926,6 @@ msgid ""
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10785,6 +10957,10 @@ msgstr "Dashboard gravado com sucesso."
 msgid "The annotation has been updated"
 msgstr "Dashboard gravado com sucesso."
 
+#, fuzzy
+msgid "The background color of the charts."
+msgstr "O id da visualização ativa"
+
 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."
@@ -10815,6 +10991,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr ""
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "O id da visualização ativa"
+
 msgid "The color of the isoband"
 msgstr ""
 
@@ -10830,6 +11010,12 @@ msgid ""
 "        Edit the color scheme in the dashboard properties."
 msgstr ""
 
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+
 #, fuzzy
 msgid "The column header label"
 msgstr "Ordenar colunas por ordem alfabética"
@@ -10843,6 +11029,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr ""
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10854,22 +11046,9 @@ msgstr "Dashboard gravado com sucesso."
 msgid "The data source seems to have been deleted"
 msgstr "Esta origem de dados parece ter sido excluída"
 
-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."
-
-#, 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 ""
+#, fuzzy
+msgid "The database"
+msgstr "Selecione uma base de dados"
 
 msgid "The database columns that contains lines information"
 msgstr ""
@@ -10904,12 +11083,9 @@ msgstr "Esta origem de dados parece ter sido excluída"
 msgid "The database was not found."
 msgstr "Visualização %(id)s não encontrada"
 
-#, 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 ""
+#, fuzzy
+msgid "The dataset"
+msgstr "Base de dados"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr ""
@@ -10970,6 +11146,15 @@ msgid ""
 "call."
 msgstr ""
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10987,6 +11172,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr ""
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -11019,26 +11207,13 @@ msgstr ""
 msgid "The id of the active chart"
 msgstr "O id da visualização ativa"
 
-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 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\""
+#, fuzzy
+msgid "The layer attribution"
+msgstr "Atributos de formulário relacionados ao tempo"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -11076,6 +11251,18 @@ msgstr ""
 "mostrados sejam o total de 7 períodos. Esta opção esconde a "
 "\"aceleração\" que ocorre nos primeiros 7 períodos"
 
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr ""
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "O id da visualização ativa"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 #, fuzzy
 msgid "The name of the rule must be unique"
 msgstr "O id da visualização ativa"
@@ -11273,6 +11460,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr ""
 
@@ -11310,10 +11500,14 @@ msgstr ""
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "Esta origem de dados parece ter sido excluída"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
+msgid "The service url of the layer"
 msgstr ""
 
 msgid "The size of each cell in meters"
@@ -11322,6 +11516,9 @@ msgstr ""
 msgid "The size of the square cell, in pixels"
 msgstr ""
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr ""
 
@@ -11343,14 +11540,6 @@ msgid ""
 "to run this query."
 msgstr ""
 
-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."
-
 msgid "The table was deleted or renamed in the database."
 msgstr ""
 
@@ -11410,6 +11599,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr ""
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "O id da visualização ativa"
+
 msgid "The type of visualization to display"
 msgstr "O tipo de visualização a ser exibida"
 
@@ -11429,8 +11622,16 @@ msgstr ""
 msgid "The username \"%(username)s\" does not exist."
 msgstr ""
 
-msgid "The username provided when connecting to a database is not valid."
-msgstr ""
+msgid "The username provided when connecting to a database is not valid."
+msgstr ""
+
+#, fuzzy
+msgid "The version of the service"
+msgstr "Calcular contribuição para o total"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "Insira um novo título para a aba"
 
 msgid "The way the ticks are laid out on the X-axis"
 msgstr ""
@@ -11439,6 +11640,13 @@ msgstr ""
 msgid "The width of the Isoline in pixels"
 msgstr "O id da visualização ativa"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "O id da visualização ativa"
+
 #, fuzzy
 msgid "The width of the lines"
 msgstr "O id da visualização ativa"
@@ -11457,9 +11665,6 @@ msgstr "Desculpe, houve um erro ao gravar este dashbard: "
 msgid "There are no components added to this tab"
 msgstr ""
 
-msgid "There are no databases available"
-msgstr ""
-
 msgid "There are no filters in this dashboard."
 msgstr "Desculpe, houve um erro ao gravar este dashbard: "
 
@@ -11472,6 +11677,10 @@ msgid ""
 " or a typo."
 msgstr ""
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "O tipo de visualização a ser exibida"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11498,6 +11707,10 @@ msgstr "Desculpe, houve um erro ao gravar este dashbard: "
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Desculpe, houve um erro ao gravar este dashbard: "
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Desculpe, houve um erro ao gravar este dashbard: "
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "Desculpe, houve um erro ao gravar este dashbard: "
@@ -11517,6 +11730,10 @@ msgstr "Desculpe, houve um erro ao gravar este dashbard: "
 msgid "There was an error loading the tables"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr "Desculpe, houve um erro ao gravar este dashbard: "
+
 #, fuzzy, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr "Desculpe, houve um erro ao gravar este dashbard: "
@@ -11524,6 +11741,10 @@ msgstr "Desculpe, houve um erro ao gravar este dashbard: "
 msgid "There was an error with your request"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Desculpe, houve um erro ao gravar este dashbard: "
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr ""
@@ -11609,27 +11830,9 @@ msgstr ""
 msgid "There was an issue previewing the selected query. %s"
 msgstr ""
 
-msgid ""
-"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: {}"
-
 msgid "These are the datasets this filter will be applied to."
 msgstr ""
 
-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."
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11646,12 +11849,18 @@ msgstr ""
 msgid "This action will permanently delete the layer."
 msgstr ""
 
+msgid "This action will permanently delete the role."
+msgstr ""
+
 msgid "This action will permanently delete the saved query."
 msgstr ""
 
 msgid "This action will permanently delete the template."
 msgstr ""
 
+msgid "This action will permanently delete the user."
+msgstr ""
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11676,11 +11885,6 @@ msgid ""
 "source. "
 msgstr ""
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-
 msgid "This column might be incompatible with current dataset"
 msgstr ""
 
@@ -11748,6 +11952,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr "Dashboard gravado com sucesso."
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 
@@ -11765,6 +11975,9 @@ msgstr ""
 msgid "This defines the element to be plotted on the chart"
 msgstr "Esta opção define o elemento a ser desenhado no gráfico"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11775,13 +11988,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-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."
-
 msgid "This filter might be incompatible with current dataset"
 msgstr ""
 
@@ -11815,12 +12021,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr ""
 
-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 ""
-
 msgid "This metric might be incompatible with current dataset"
 msgstr ""
 
@@ -11861,6 +12061,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr ""
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr ""
 
@@ -11944,9 +12147,6 @@ msgstr "Granularidade Temporal"
 msgid "Time Series"
 msgstr "Tabela de séries temporais"
 
-msgid "Time Series - Bar Chart"
-msgstr "Série Temporal - Gráfico de barras"
-
 msgid "Time Series - Line Chart"
 msgstr "Série Temporal - Gráfico de linhas"
 
@@ -11962,9 +12162,6 @@ msgstr "Série Temporal - Variação Percentual"
 msgid "Time Series - Period Pivot"
 msgstr "Série temporal - teste emparelhado T"
 
-msgid "Time Series - Stacked"
-msgstr "Série Temporal - Barras Sobrepostas"
-
 #, fuzzy
 msgid "Time Series Options"
 msgstr "Colunas das séries temporais"
@@ -12062,17 +12259,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr ""
 
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "Explorar gráfico"
-
-#, fuzzy
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Série Temporal - Gráfico de barras"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr ""
-
 #, fuzzy
 msgid "Time-series Percent Change"
 msgstr "Série Temporal - Variação Percentual"
@@ -12094,9 +12280,6 @@ msgstr "Formato da Tabela Datahora"
 msgid "Timezone"
 msgstr ""
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Diferença do fuso horário (em horas) para esta fonte de dados"
-
 msgid "Timezone selector"
 msgstr ""
 
@@ -12118,6 +12301,11 @@ msgstr "Origem de dados"
 msgid "Title or Slug"
 msgstr ""
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr ""
 
@@ -12163,6 +12351,9 @@ msgstr ""
 msgid "Total (%(aggregatorName)s)"
 msgstr ""
 
+msgid "Total (Sum)"
+msgstr ""
+
 #, fuzzy
 msgid "Total value"
 msgstr "Valor de filtro"
@@ -12274,9 +12465,6 @@ msgstr ""
 msgid "Type is required"
 msgstr ""
 
-msgid "Type of Google Sheets allowed"
-msgstr ""
-
 msgid "Type of comparison, value difference or percentage"
 msgstr ""
 
@@ -12352,9 +12540,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr ""
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr ""
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "Indefinido"
 
@@ -12384,6 +12578,9 @@ msgstr ""
 msgid "Unexpected time range: %(error)s"
 msgstr ""
 
+msgid "Unhide"
+msgstr ""
+
 msgid "Unknown"
 msgstr ""
 
@@ -12421,6 +12618,10 @@ msgstr ""
 msgid "Unknown value"
 msgstr ""
 
+#, fuzzy
+msgid "Unpin"
+msgstr "Mensagem de Aviso"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr ""
@@ -12488,9 +12689,6 @@ msgstr "Adicionar Coluna"
 msgid "Upload Columnar file to database"
 msgstr "Selecione uma base de dados"
 
-msgid "Upload Credentials"
-msgstr ""
-
 msgid "Upload Enabled"
 msgstr ""
 
@@ -12512,6 +12710,9 @@ msgstr "Selecione uma base de dados"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+msgid "Upload credentials"
+msgstr ""
+
 #, fuzzy
 msgid "Upload file to database"
 msgstr "Selecione uma base de dados"
@@ -12565,10 +12766,11 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr ""
 
-msgid "Use date formatting even when metric value is not a timestamp"
-msgstr ""
+#, fuzzy
+msgid "Use current extent"
+msgstr "Executar query"
 
-msgid "Use legacy datasource editor"
+msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 
 msgid "Use metrics as a top level group for columns or for rows"
@@ -12580,11 +12782,6 @@ msgstr ""
 msgid "Use the Advanced Analytics options below"
 msgstr ""
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-
 msgid "Use the edit button to change this field"
 msgstr ""
 
@@ -12622,10 +12819,24 @@ msgstr ""
 msgid "User query"
 msgstr "partilhar query"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 #, fuzzy
 msgid "Username"
 msgstr "Nome do país"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Origem de dados"
+
+#, fuzzy
+msgid "Users"
+msgstr "Séries"
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
 
@@ -12647,6 +12858,10 @@ msgid ""
 "funnels and pipelines."
 msgstr ""
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "Mostrar valores das barras"
 
@@ -12675,10 +12890,17 @@ msgstr ""
 msgid "Value format"
 msgstr "Formato de valor"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "Data de inicio não pode ser posterior à data de fim"
+
 #, fuzzy
 msgid "Value is required"
 msgstr "Origem de dados"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "Data de inicio não pode ser posterior à data de fim"
@@ -12698,12 +12920,6 @@ msgid ""
 "show relevant values"
 msgstr ""
 
-msgid "Vehicle Types"
-msgstr ""
-
-msgid "Verbose Name"
-msgstr "Nome Detalhado"
-
 msgid "Version"
 msgstr ""
 
@@ -12716,9 +12932,6 @@ msgstr ""
 msgid "Vertical (Left)"
 msgstr ""
 
-msgid "Video game consoles"
-msgstr ""
-
 #, fuzzy
 msgid "View"
 msgstr "Pré-visualização para %s"
@@ -12765,10 +12978,6 @@ msgstr ""
 msgid "Virtual (SQL)"
 msgstr ""
 
-#, fuzzy
-msgid "Virtual dataset"
-msgstr "Editar Base de Dados"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr ""
 
@@ -12805,11 +13014,6 @@ msgid ""
 "grid view."
 msgstr ""
 
-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."
@@ -12854,13 +13058,6 @@ msgid ""
 "instead."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -12876,6 +13073,12 @@ msgstr "Tipo"
 msgid "WED"
 msgstr ""
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr ""
@@ -12891,9 +13094,6 @@ msgstr ""
 msgid "Warning"
 msgstr "Mensagem de Aviso"
 
-msgid "Warning Message"
-msgstr "Mensagem de Aviso"
-
 msgid "Warning!"
 msgstr "Mensagem de Aviso"
 
@@ -13029,13 +13229,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr ""
 
-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"
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr ""
 
@@ -13056,6 +13249,11 @@ msgid ""
 "to the main datetime column."
 msgstr ""
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -13070,20 +13268,14 @@ msgstr "Utilizando 'Agrupar por' só é possível utilizar uma única métrica"
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
 
-msgid "When using this option, default value can’t be set"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
 msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr ""
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr ""
-
-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."
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -13121,6 +13313,10 @@ msgstr ""
 msgid "Whether to display bubbles on top of countries"
 msgstr ""
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Selecione uma métrica para visualizar"
+
 msgid "Whether to display the aggregate count"
 msgstr ""
 
@@ -13130,11 +13326,6 @@ msgstr ""
 msgid "Whether to display the labels."
 msgstr ""
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-
 msgid "Whether to display the legend (toggles)"
 msgstr ""
 
@@ -13150,6 +13341,10 @@ msgstr ""
 msgid "Whether to display the numerical values within the cells"
 msgstr ""
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Incluir um filtro temporal"
+
 msgid "Whether to display the stroke"
 msgstr ""
 
@@ -13164,9 +13359,17 @@ msgstr ""
 msgid "Whether to display the tooltip labels."
 msgstr "Selecione uma métrica para visualizar"
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Incluir um filtro temporal"
+
 msgid "Whether to display the trend line"
 msgstr ""
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Selecione uma métrica para visualizar"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr ""
 
@@ -13193,37 +13396,16 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr ""
 
-msgid "Whether to make the histogram cumulative"
-msgstr ""
-
-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"
-
-msgid "Whether to normalize the histogram"
-msgstr ""
-
 msgid "Whether to populate autocomplete filters options"
 msgstr "Incluir um filtro temporal"
 
-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"
-
 #, fuzzy
 msgid "Whether to show as Nightingale chart."
 msgstr "Série Temporal - Gráfico de linhas"
 
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr ""
 
 msgid "Whether to show minor ticks on the axis"
@@ -13245,10 +13427,6 @@ msgstr "Ordenar de forma descendente ou ascendente"
 msgid "Whether to sort descending or ascending"
 msgstr "Ordenar de forma descendente ou ascendente"
 
-#, fuzzy
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr "Ordenar de forma descendente ou ascendente"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 
@@ -13308,9 +13486,6 @@ msgstr "Escreva uma descrição para sua consulta"
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr ""
-
 msgid "X AXIS TITLE MARGIN"
 msgstr ""
 
@@ -13330,6 +13505,10 @@ msgstr ""
 msgid "X Axis Title"
 msgstr ""
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "última partição:"
+
 msgid "X Log Scale"
 msgstr ""
 
@@ -13352,6 +13531,9 @@ msgstr ""
 msgid "XScale Interval"
 msgstr ""
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr ""
 
@@ -13466,6 +13648,19 @@ msgid ""
 "want to overwrite?"
 msgstr ""
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr ""
 
@@ -13541,9 +13736,6 @@ msgstr "Parece que não tem acesso a nenhuma base de dados"
 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 "You don't have any favorites yet!"
-msgstr "Não tem acesso a esta origem de dados"
-
 #, fuzzy
 msgid "You don't have permission to modify the value."
 msgstr "Não tem permissão para aprovar este pedido"
@@ -13622,6 +13814,9 @@ msgstr ""
 msgid "Your chart is ready to go!"
 msgstr ""
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr ""
 
@@ -13649,6 +13844,9 @@ msgstr "A sua query foi gravada"
 msgid "Your query was updated"
 msgstr "A sua query foi gravada"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 #, fuzzy
 msgid "Your report could not be deleted"
 msgstr "Não foi possível carregar a query"
@@ -13663,6 +13861,9 @@ msgstr "descrição"
 msgid "Zoom"
 msgstr ""
 
+msgid "Zoom level"
+msgstr ""
+
 msgid "Zoom level of the map"
 msgstr ""
 
@@ -13782,9 +13983,6 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
-msgid "auto (Smooth)"
-msgstr ""
-
 msgid "background"
 msgstr ""
 
@@ -13833,10 +14031,6 @@ msgstr "Gerir"
 msgid "chart"
 msgstr "Mover gráfico"
 
-#, fuzzy
-msgid "charts"
-msgstr "Mover gráfico"
-
 msgid "choose WHERE or HAVING..."
 msgstr ""
 
@@ -13847,6 +14041,9 @@ msgstr "Filtros"
 msgid "click here"
 msgstr ""
 
+msgid "close"
+msgstr ""
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr ""
 
@@ -13903,17 +14100,9 @@ msgstr ""
 msgid "cumsum"
 msgstr ""
 
-#, fuzzy
-msgid "cumulative"
-msgstr "Acção"
-
 msgid "dashboard"
 msgstr "Dashboard"
 
-#, fuzzy
-msgid "dashboards"
-msgstr "Dashboard"
-
 msgid "database"
 msgstr "Base de dados"
 
@@ -13981,9 +14170,6 @@ msgstr ""
 msgid "default"
 msgstr "Latitude padrão"
 
-msgid "delete"
-msgstr "Eliminar"
-
 msgid "descendant"
 msgstr ""
 
@@ -13997,9 +14183,6 @@ msgstr "descrição"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr ""
 
-msgid "draft"
-msgstr ""
-
 msgid "dttm"
 msgstr "dttm"
 
@@ -14040,9 +14223,6 @@ msgstr ""
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr ""
 
-msgid "e.g., a \"user id\" column"
-msgstr ""
-
 msgid "edit mode"
 msgstr ""
 
@@ -14053,6 +14233,10 @@ msgstr ""
 msgid "entries"
 msgstr "Séries"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "Séries"
+
 #, fuzzy
 msgid "error"
 msgstr "Erro"
@@ -14126,11 +14310,6 @@ msgstr "Séries"
 msgid "hour"
 msgstr "hora"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-
 msgid "in"
 msgstr "Mín"
 
@@ -14140,6 +14319,10 @@ msgstr "em modal"
 msgid "invalid email"
 msgstr ""
 
+#, fuzzy
+msgid "is"
+msgstr "Mín"
+
 msgid "is expected to be a Mapbox URL"
 msgstr ""
 
@@ -14149,6 +14332,22 @@ msgstr ""
 msgid "is expected to be an integer"
 msgstr ""
 
+#, python-format
+msgid ""
+"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 ""
+
+#, python-format
+msgid ""
+"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 ""
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr ""
 
@@ -14283,19 +14482,10 @@ msgstr ""
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr ""
-
-msgid "page_size.show"
-msgstr ""
-
 #, fuzzy
 msgid "pending"
 msgstr "Ordenar decrescente"
 
-msgid "percentile (exclusive)"
-msgstr ""
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14305,22 +14495,19 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "Modelos CSS"
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 msgid "pixels"
 msgstr ""
 
 msgid "previous calendar month"
 msgstr ""
 
-msgid "previous calendar week"
+msgid "previous calendar quarter"
 msgstr ""
 
-msgid "previous calendar year"
+msgid "previous calendar week"
 msgstr ""
 
-msgid "published"
+msgid "previous calendar year"
 msgstr ""
 
 #, fuzzy
@@ -14343,9 +14530,6 @@ msgstr ""
 msgid "recent"
 msgstr ""
 
-msgid "recents"
-msgstr ""
-
 msgid "recipients"
 msgstr ""
 
@@ -14370,8 +14554,8 @@ msgid "running"
 msgstr "Mensagem de Aviso"
 
 #, fuzzy
-msgid "saved queries"
-msgstr "Queries Gravadas"
+msgid "save"
+msgstr "Salvar"
 
 #, fuzzy
 msgid "seconds"
@@ -14387,10 +14571,6 @@ msgid ""
 "series"
 msgstr ""
 
-#, fuzzy
-msgid "shift start date"
-msgstr "Início"
-
 msgid "sql"
 msgstr ""
 
@@ -14450,10 +14630,6 @@ msgstr ""
 msgid "textarea"
 msgstr "textarea"
 
-#, fuzzy
-msgid "to"
-msgstr "Parar"
-
 #, fuzzy
 msgid "top"
 msgstr "Parar"
@@ -14464,6 +14640,14 @@ msgstr ""
 msgid "unknown type icon"
 msgstr ""
 
+#, fuzzy
+msgid "unset"
+msgstr "Coluna"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "%s - sem título"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14492,9 +14676,6 @@ msgstr "Análise Avançada"
 msgid "view instructions"
 msgstr "10 segundos"
 
-msgid "virtual"
-msgstr ""
-
 #, fuzzy
 msgid "viz type"
 msgstr "Tipo"
@@ -14531,3 +14712,6 @@ msgstr "ano"
 
 msgid "zoom area"
 msgstr ""
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/pt_BR/LC_MESSAGES/messages.po b/superset/translations/pt_BR/LC_MESSAGES/messages.po
index aa93672b7a40ba1f49cf8b638d34cb081974f86d..91e105e406b3055957f2cebbcb88f2cba26ac762 100644
--- a/superset/translations/pt_BR/LC_MESSAGES/messages.po
+++ b/superset/translations/pt_BR/LC_MESSAGES/messages.po
@@ -17,16 +17,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2023-05-22 08:04-0400\n"
 "Last-Translator: \n"
 "Language: pt_BR\n"
 "Language-Team: \n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=2; plural=(n > 1)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -66,12 +66,15 @@ msgstr ""
 "Este filtro foi herdado do contexto do painel.\n"
 " Não será salvo ao salvar o gráfico."
 
-#, fuzzy, python-format
+#, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
-msgstr "Erro: %(text)s"
+msgstr ""
 
 #, fuzzy
 msgid " (excluded)"
@@ -82,8 +85,8 @@ msgid ""
 " Set the opacity to 0 if you do not want to override the color specified "
 "in the GeoJSON"
 msgstr ""
-" Defina opacidade para 0 se você não quer sobrepor a cor especificada "
-"no GeoJSON"
+" Defina opacidade para 0 se você não quer sobrepor a cor especificada no "
+"GeoJSON"
 
 #, fuzzy
 msgid " a dashboard OR "
@@ -93,10 +96,18 @@ msgstr " um painel OU "
 msgid " a new one"
 msgstr " um novo"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 #, fuzzy
 msgid " expression which needs to adhere to the "
 msgstr " expressão necessária para aderir ao "
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 #, fuzzy
 msgid " source code of Superset's sandboxed parser"
 msgstr " código-fonte do analisador em área restrita do Superset"
@@ -147,7 +158,9 @@ msgstr " para marcar uma coluna como uma coluna de tempo"
 
 #, 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."
+msgstr ""
+" para abrir o SQL Lab. De lá você pode salvar a consulta como um conjunto"
+" de dados."
 
 #, fuzzy
 msgid " to visualize your data."
@@ -174,15 +187,9 @@ msgstr ""
 "%(dialect)s não pode ser usado como uma fonte de dados por motivos de "
 "segurança."
 
-#, 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"
+#, fuzzy, python-format
+msgid "%(label)s file"
+msgstr "%(type)s do Arquivo"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -196,22 +203,6 @@ msgstr "%(name)s.csv"
 msgid "%(object)s does not exist in this database."
 msgstr "%(object)s não existe neste banco de dados."
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr "%(other)s gráficos aparecerão aqui"
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr "%(other)s painéis aparecerão aqui"
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr "%(other)s recentes aparecerão aqui"
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s As consultas salvas aparecerão aqui"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr "%(prefix)s %(title)s"
@@ -227,16 +218,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr "%(rows)d linhas retornadas"
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-"%(subtitle)s\n"
-"Isso pode ser acionado por:\n"
-" %(issue)s"
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -245,10 +226,6 @@ msgid_plural ""
 msgstr[0] "%(suggestion)s em vez de \"%(undefinedParameter)s?\""
 msgstr[1] ""
 
-#, fuzzy, python-format
-msgid "%(type)s File"
-msgstr "%(type)s do Arquivo"
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -303,16 +280,13 @@ msgstr "%s agregado(s)"
 msgid "%s column(s)"
 msgstr "%s coluna(s)"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr "%s ítens inelegíveis estão ocultos"
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
 "all selected objects."
-msgstr "%s itens não podem ser marcados porque você não tem permissão de edição para "
-"todos os objetos selecionados."
+msgstr ""
+"%s itens não podem ser marcados porque você não tem permissão de edição "
+"para todos os objetos selecionados."
 
 #, python-format
 msgid "%s operator(s)"
@@ -412,6 +386,10 @@ 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."
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0 selecionado"
 
@@ -473,6 +451,13 @@ msgstr "Frequência de início de 1 ano"
 msgid "10 minute"
 msgstr "10 minutos"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 percentis"
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr "104 semanas"
 
@@ -575,6 +560,10 @@ msgstr "5 segundos"
 msgid "5 seconds"
 msgstr "5 segundos"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 percentis"
+
 msgid "52 weeks"
 msgstr "52 semanas"
 
@@ -641,14 +630,6 @@ msgstr ">= (Maior ou igual)"
 msgid "A Big Number"
 msgstr "Um grande número"
 
-msgid "A comma separated list of columns that should be parsed as dates"
-msgstr "Uma lista separada por vírgulas de colunas que devem ser analisadas como datas"
-
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr ""
-"Selecione os nomes das colunas a serem analisadas como datas na lista "
-"pendente"
-
 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"
@@ -660,6 +641,9 @@ msgstr "Uma porta de banco de dados é necessária ao conectar via túnel SSH."
 msgid "A database with the same name already exists."
 msgstr "Já existe um banco de dados com o mesmo nome."
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -691,7 +675,8 @@ msgid "A list of tags that have been applied to this chart."
 msgstr "Uma lista de tags que foram aplicadas a esse gráfico."
 
 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 "
+msgstr ""
+"Uma lista de usuários que podem alterar o gráfico. Pesquisável por nome "
 "ou nome de usuário."
 
 msgid "A map of the world, that can indicate values in different countries."
@@ -748,14 +733,6 @@ msgstr ""
 "Um conjunto de parâmetros que tornar-se disponível na consulta usando a "
 "sintaxe de modelagem Jinja"
 
-msgid ""
-"A time series chart that visualizes how a related metric from multiple "
-"groups vary over time. Each group is visualized using a different color."
-msgstr ""
-"Um gráfico de séries temporais que visualiza como uma métrica relacionada"
-" de vários grupos varia ao longo do tempo. Cada grupo é visualizado "
-"usando uma cor diferente."
-
 msgid "A timeout occurred while executing the query."
 msgstr "Ocorreu um tempo limite durante a execução da consulta."
 
@@ -855,27 +832,31 @@ msgstr "recentes"
 msgid "Add CSS template"
 msgstr "Adicionar modelo CSS"
 
-msgid "Add Chart"
-msgstr "Adicionar Gráfico"
-
-msgid "Add Column"
-msgstr "Adicionar Coluna"
-
 msgid "Add Dashboard"
 msgstr "Adicionar Painel"
 
-msgid "Add Database"
-msgstr "Adicionar Banco de Dados"
+#, fuzzy
+msgid "Add Divider"
+msgstr "Divisor"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Adicionar filtro"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Esconder camada"
 
 msgid "Add Log"
 msgstr "Adicionar Log"
 
-msgid "Add Metric"
-msgstr "Adicionar Métrica"
-
 msgid "Add Report"
 msgstr "Adicionar Relatório"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "(excluído)"
+
 #, fuzzy
 msgid "Add Rule"
 msgstr "Adicionar Regra"
@@ -884,6 +865,10 @@ msgstr "Adicionar Regra"
 msgid "Add Tag"
 msgstr "Adicionar Marca"
 
+#, fuzzy
+msgid "Add User"
+msgstr "Adicionar Regra"
+
 msgid "Add a Plugin"
 msgstr "Adicionar um Plugin"
 
@@ -977,9 +962,6 @@ msgstr ""
 " de dados subjacentes ou limitar os valores disponíveis apresentados no "
 "filtro."
 
-msgid "Add filters and dividers"
-msgstr "Adicionar filtros e divisores"
-
 msgid "Add item"
 msgstr "Adicionar item"
 
@@ -996,6 +978,10 @@ msgstr "Adicionar novo formatador de cores"
 msgid "Add new formatter"
 msgstr "Adicionar novo formatador"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Adicionar e editar filtros"
+
 msgid "Add required control values to preview chart"
 msgstr "Adicionar controle de valores obrigatórios para visualizar o gráfico"
 
@@ -1017,12 +1003,15 @@ msgstr "Adicione o nome do painel"
 msgid "Add to dashboard"
 msgstr "Adicionar ao painel"
 
-msgid "Add/Edit Filters"
-msgstr "Adicionar/Editar Filtros"
-
 msgid "Added"
 msgstr "Adicionado"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -1038,9 +1027,6 @@ msgstr "Campos adicionais podem ser necessários"
 msgid "Additional information"
 msgstr "Informação adicional"
 
-msgid "Additional metadata"
-msgstr "Metadados Adicionais"
-
 msgid "Additional padding for legend."
 msgstr "Preenchimento adicional da legenda."
 
@@ -1062,22 +1048,23 @@ msgid ""
 "Adds color to the chart symbols based on the positive or negative change "
 "from the comparison value."
 msgstr ""
-"Adiciona cor aos símbolos do gráfico com base na mudança positiva ou negativa "
-"do valor de comparação."
+"Adiciona cor aos símbolos do gráfico com base na mudança positiva ou "
+"negativa do valor de comparação."
 
 msgid ""
 "Adjust column settings such as specifying the columns to read, how "
 "duplicates are handled, column data types, and more."
 msgstr ""
-"Ajuste as configurações das colunas, como especificar as colunas a serem lidas, como "
-"duplicatas são tratadas, tipos de dados de coluna e muito mais."
+"Ajuste as configurações das colunas, como especificar as colunas a serem "
+"lidas, como duplicatas são tratadas, tipos de dados de coluna e muito "
+"mais."
 
 msgid ""
 "Adjust how spaces, blank lines, null values are handled and other file "
 "wide settings."
 msgstr ""
-"Ajuste como espaços, linhas em branco, valores nulos e outros arquivos são tratados "
-"configurações amplas."
+"Ajuste como espaços, linhas em branco, valores nulos e outros arquivos "
+"são tratados configurações amplas."
 
 msgid "Adjust how this database will interact with SQL Lab."
 msgstr "Ajustar como esse banco de dados vai interagir com SQL Lab."
@@ -1113,6 +1100,14 @@ msgstr "Tipo de dados avançado"
 msgid "Advanced-Analytics"
 msgstr "Análise Avançada"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Selecionar gráficos"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Selecione um painel"
+
 msgid "After"
 msgstr "Depois de"
 
@@ -1129,8 +1124,8 @@ 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."
+"Função agregada aplicada à lista de pontos em cada cluster para produzir "
+"o rótulo do cluster."
 
 msgid ""
 "Aggregate function to apply when pivoting and computing the total rows "
@@ -1150,6 +1145,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "Agregar"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "Agregar"
+
 msgid "Aggregation function"
 msgstr "Função de agregação"
 
@@ -1196,14 +1195,18 @@ msgstr "A consulta do alerta retornou mais de uma coluna."
 
 #, fuzzy, python-format
 msgid "Alert query returned more than one column. %(num_cols)s columns returned"
-msgstr "A consulta do alerta retornou mais de uma coluna. %(num_cols)s colunas retornadas"
+msgstr ""
+"A consulta do alerta retornou mais de uma coluna. %(num_cols)s colunas "
+"retornadas"
 
 msgid "Alert query returned more than one row."
 msgstr "A consulta do alerta retornou mais do que uma linha."
 
 #, fuzzy, python-format
 msgid "Alert query returned more than one row. %(num_rows)s rows returned"
-msgstr "A consulta do alerta retornou mais de uma linha. %(num_rows)s linhas retornadas"
+msgstr ""
+"A consulta do alerta retornou mais de uma linha. %(num_rows)s linhas "
+"retornadas"
 
 msgid "Alert running"
 msgstr "Alerta em execução"
@@ -1229,6 +1232,10 @@ msgstr "Alinhar +/-"
 msgid "All"
 msgstr "Todos"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Colunas da tabela"
+
 msgid "All Text"
 msgstr "Todos o Texto"
 
@@ -1244,26 +1251,14 @@ msgstr "Todos os filtros"
 msgid "All panels"
 msgstr "Todos os painéis"
 
-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"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "Permitir CREATE TABLE AS"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Permitir a opção CREATE TABLE AS no SQL Lab"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "Permitir CREATE VIEW AS"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Permitir a opção CREATE VIEW AS no SQL Lab"
-
-msgid "Allow Csv Upload"
-msgstr "Permitir Csv Upload"
-
-msgid "Allow DML"
-msgstr "Permitir DML"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr "Permitir alteração de catálogos"
@@ -1272,8 +1267,9 @@ msgid ""
 "Allow column names to be changed to case insensitive format, if supported"
 " (e.g. Oracle, Snowflake)."
 msgstr ""
-"Permitir que os nomes das colunas sejam alterados para um formato que não diferencia maiúsculas de minúsculas, se houver suporte"
-"(ex.: Oracle, Snowflake)."
+"Permitir que os nomes das colunas sejam alterados para um formato que não"
+" diferencia maiúsculas de minúsculas, se houver suporte(ex.: Oracle, "
+"Snowflake)."
 
 msgid "Allow columns to be rearranged"
 msgstr "Permitir que as colunas sejam reorganizadas"
@@ -1281,6 +1277,10 @@ msgstr "Permitir que as colunas sejam reorganizadas"
 msgid "Allow creation of new tables based on queries"
 msgstr "Permitir criação de novas tabelas baseadas em consultas"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "Permitir criação de novas visualizações baseadas em consultas"
+
 msgid "Allow creation of new views based on queries"
 msgstr "Permitir criação de novas visualizações baseadas em consultas"
 
@@ -1298,33 +1298,24 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr "Permitir uploads de arquivos para o banco de dados"
 
-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."
-
 msgid "Allow node selections"
 msgstr "Permitir seleções de nós"
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr "Permitir o envio de vários polígonos como um evento de filtro"
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "Permitir que esse banco de dados seja explorado"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "Permitir que o banco de dados seja consultado no SQL Lab"
 
-#, 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"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "Domínios permitidos (separados por vírgula)"
 
@@ -1374,6 +1365,10 @@ msgstr ""
 msgid "An error has occurred"
 msgstr "Ocorreu um erro"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Ocorreu um erro durante a pesquisa de conjuntos de dados: %s"
+
 msgid "An error occurred"
 msgstr "Um erro ocorreu"
 
@@ -1384,6 +1379,10 @@ msgstr "Ocorreu um erro ao salvar conjunto de dados"
 msgid "An error occurred when running alert query"
 msgstr "Ocorreu um erro ao podar os registos"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Ocorreu um erro ao acessar o valor."
+
 msgid "An error occurred while accessing the value."
 msgstr "Ocorreu um erro ao acessar o valor."
 
@@ -1398,6 +1397,10 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr "Ocorreu um erro ao criar %ss: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Ocorreu um erro ao criar o valor."
+
 msgid "An error occurred while creating the data source"
 msgstr "Ocorreu um erro ao criar a fonte de dados"
 
@@ -1547,6 +1550,10 @@ 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\"."
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Ocorreu um erro durante a busca de %ss: %s"
+
 msgid "An error occurred while updating the value."
 msgstr "Ocorreu um erro ao atualizar o valor."
 
@@ -1744,12 +1751,6 @@ msgstr "Aplicar filtros"
 msgid "Apply metrics on"
 msgstr "Aplicar métrica em"
 
-msgid "Apply to all panels"
-msgstr "Aplicar para todos painéis"
-
-msgid "Apply to specific panels"
-msgstr "Aplicar para painéis específicos"
-
 msgid "April"
 msgstr "Abril"
 
@@ -1791,6 +1792,10 @@ msgstr "Tem certeza que deseja remover as camadas selecionadas?"
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "Tem certeza que deseja remover as consultas selecionadas ?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "Tem certeza que deseja remover as camadas selecionadas?"
+
 #, fuzzy
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "Tem certeza que deseja remover as camadas selecionadas?"
@@ -1801,6 +1806,10 @@ msgstr "Tem certeza de que deseja excluir as tags selecionadas?"
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "Tem certeza que deseja remover os modelos selecionados ?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "Tem certeza que deseja remover as consultas selecionadas ?"
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "Tem certeza de que deseja substituir esse conjunto de dados?"
 
@@ -1842,15 +1851,13 @@ msgstr "Atribuir um conjunto de parâmetros como"
 msgid "Assist"
 msgstr "base"
 
-msgid "Associated Charts"
-msgstr "Gráficos Associados"
-
-msgid "Async Execution"
-msgstr "Execução Assíncrona"
-
 msgid "Asynchronous query execution"
 msgstr "Execução de consulta assíncrona"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "Distribuição"
+
 msgid "August"
 msgstr "Agosto"
 
@@ -1875,12 +1882,26 @@ msgstr "Predicado de consulta de preenchimento automático"
 msgid "Automatic Color"
 msgstr "Cor Automática"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Personalizar colunas"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Personalizar colunas"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "Modos de ordenação disponíveis:"
 
 msgid "Average"
 msgstr "Média"
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr "Valor médio"
 
@@ -1918,6 +1939,10 @@ msgstr "Voltar para todos"
 msgid "Backend"
 msgstr "Backend"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "fundo"
+
 msgid "Backward values"
 msgstr "Valores retroativos"
 
@@ -1933,11 +1958,10 @@ msgstr "Barra"
 msgid "Bar Chart"
 msgstr "Gráfico de Barras"
 
-msgid "Bar Chart (legacy)"
-msgstr "Gráfico de Barras (legado)"
-
 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"
+msgstr ""
+"Os gráficos de barras são usados para mostrar as métricas como uma série "
+"de barras"
 
 msgid "Bar Values"
 msgstr "Valores da Barra"
@@ -1949,10 +1973,25 @@ msgstr "Orientação da barra"
 msgid "Base"
 msgstr "banco de dados"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Porta do banco de dados"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Altura do gráfico"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Largura da linha"
+
 msgid "Based on a metric"
 msgstr "Baseado em uma métrica"
 
@@ -1972,9 +2011,6 @@ msgstr "Informações básicas"
 msgid "Batch editing %d filters:"
 msgstr "Batch editando %d filtros:"
 
-msgid "Battery level over time"
-msgstr "Nível da bateria ao longo do tempo"
-
 msgid "Be careful."
 msgstr "Cuidado."
 
@@ -1997,6 +2033,14 @@ msgstr "Número grande com Trendline"
 msgid "Bins"
 msgstr "em"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Colunas de séries temporais"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Largura da borda"
+
 msgid "Bottom"
 msgstr "Inferior"
 
@@ -2127,9 +2171,6 @@ msgstr "Gráfico de Marcadores"
 msgid "Business"
 msgstr "Negócios"
 
-msgid "Business Data Type"
-msgstr "Tipo de Dados Comerciais"
-
 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"
@@ -2201,8 +2242,9 @@ msgstr "Modelos CSS"
 msgid "CSS templates could not be deleted."
 msgstr "Modelo CSS não pôde ser deletado."
 
-msgid "CSV Upload"
-msgstr "Upload de CSV"
+#, fuzzy
+msgid "CSV upload"
+msgstr "Carregar"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "CTAS & CVAS SCHEMA"
@@ -2217,8 +2259,9 @@ msgstr ""
 "consulta tem um SELECT como última instrução. Depois, tente executar a "
 "consulta novamente."
 
-msgid "CTAS Schema"
-msgstr "Esquema CTAS"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "Personalizado"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2236,9 +2279,6 @@ msgstr "A consulta CVAS (create view as select) tem mais do que uma declaração
 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."
 
-msgid "Cache Timeout"
-msgstr "Tempo limite da cache"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Tempo limite da cache (seconds)"
 
@@ -2283,9 +2323,6 @@ msgstr "Não é possível mover a aba de nível superior para abas aninhadas"
 msgid "Can select multiple values"
 msgstr "Pode selecionar vários valores"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "Não pode haver sobreposição entre séries e avarias"
-
 msgid "Cancel"
 msgstr "Cancelar"
 
@@ -2300,6 +2337,10 @@ msgstr ""
 "Não é possível excluir um banco de dados que tenha conjuntos de dados "
 "anexados"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr "Não é possível ter múltiplas credenciais para o Túnel SSH"
 
@@ -2310,6 +2351,10 @@ msgstr "Não é possível carregar o filtro"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "Não é possível analisar a string de tempo [%(human_readable)s]"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Diagrama de partição"
+
 #, fuzzy
 msgid "Catalog"
 msgstr "Marca"
@@ -2388,13 +2433,14 @@ msgstr "Mudar ordem das colunas."
 msgid "Change order of rows."
 msgstr "Mudar ordem das linhas."
 
-msgid "Changed By"
-msgstr "Alterado Por"
-
 #, fuzzy
 msgid "Changed by"
 msgstr "Alterado por"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "mudança"
+
 msgid "Changes saved."
 msgstr "Alterações salvas."
 
@@ -2449,9 +2495,6 @@ msgstr "Gráfico"
 msgid "Chart %(id)s not found"
 msgstr "Gráfico %(id)s não encontrado"
 
-msgid "Chart Cache Timeout"
-msgstr "Tempo limite da cache do gráfico"
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr "Dados do Gráfico: %s"
@@ -2549,6 +2592,10 @@ msgstr "Os parâmetros do gráfico são inválidos."
 msgid "Chart properties updated"
 msgstr "Propriedades do gráfico atualizadas"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "gráficos"
+
 msgid "Chart title"
 msgstr "Título do gráfico"
 
@@ -2600,6 +2647,10 @@ msgstr "A escolha de [Raio do ponto] deve estar presente em [Agrupar por]"
 msgid "Choose File"
 msgstr "Escolher Arquivo"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Escolha um gráfico ou painel, não ambos"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Escolha um gráfico ou painel, não ambos"
 
@@ -2622,9 +2673,6 @@ msgstr "Escolha um formato de número"
 msgid "Choose a source"
 msgstr "Escolha uma fonte"
 
-msgid "Choose a source and a target"
-msgstr "Escolha uma fonte e um alvo"
-
 msgid "Choose a target"
 msgstr "Escolha um alvo"
 
@@ -2711,9 +2759,6 @@ msgstr "Forma de radar circular"
 msgid "Circular"
 msgstr "Circular"
 
-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."
-
 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."
@@ -2738,7 +2783,9 @@ msgid "Clear form"
 msgstr "Limpar formulário"
 
 #, fuzzy
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr "Clique no botão\"+Add/Edit Filters\"para criar novos filtros de painel"
 
 #, fuzzy
@@ -2773,6 +2820,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr "Clique para adicionar o contorno"
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "Clique para adicionar o contorno"
+
 msgid "Click to cancel sorting"
 msgstr "Clique para cancelar a ordenação"
 
@@ -2897,13 +2948,13 @@ msgstr ""
 msgid "Column Configuration"
 msgstr "Configuração da Coluna"
 
-#, fuzzy
-msgid "Column Data Types"
-msgstr "Tipo de dados Avançado"
-
 msgid "Column Formatting"
 msgstr "Formatação de Colunas"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Configurações de polígono"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2921,10 +2972,6 @@ msgstr "Coluna contendo dados de longitude"
 msgid "Column data types"
 msgstr "Tipo de dados avançado"
 
-#, fuzzy
-msgid "Column datatype"
-msgstr "Nome da coluna"
-
 msgid "Column header tooltip"
 msgstr "Dica de ferramenta para o cabeçalho da coluna"
 
@@ -2954,17 +3001,19 @@ msgstr ""
 " não houver coluna de índice."
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
+msgstr "Nome da coluna"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "Upload Colunar"
 
 msgid "Columns"
 msgstr "Colunas"
 
-msgid "Columns To Be Parsed as Dates"
-msgstr "Colunas a serem analisadas como datas"
-
-msgid "Columns To Read"
-msgstr "Colunas a Serem Lidas"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s coluna(s)"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2977,6 +3026,10 @@ msgstr "Colunas ausente na fonte de dados: %(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr "Posição do subtotal das colunas"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "Colunas a serem analisadas como datas"
+
 msgid "Columns to calculate distribution across."
 msgstr "Colunas para calcular a distribuição entre."
 
@@ -2992,6 +3045,10 @@ msgstr "Colunas para agrupar nas colunas"
 msgid "Columns to group by on the rows"
 msgstr "Colunas para agrupar nas linhas"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Colunas a serem lidas"
+
 msgid "Combine metrics"
 msgstr "Combinar métricas"
 
@@ -3038,22 +3095,6 @@ msgstr ""
 "grupos. Cada grupo é mapeado para uma linha e a alteração ao longo do "
 "tempo é visualizada em comprimentos de barra e cores."
 
-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."
-
-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."
-
 msgid "Comparison"
 msgstr "Comparação"
 
@@ -3115,18 +3156,28 @@ msgstr "Configurar os âmbitos de filtragem"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "Configurar o fundamentos da sua Camada de Anotação."
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr "Configurar este painel para incorporá-lo em um aplicativo web externo."
 
 msgid "Configure your how you overlay is displayed here."
 msgstr "Configure a forma como a sobreposição é apresentada aqui."
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Mostrar senha."
+
 msgid "Confirm overwrite"
 msgstr "Confirmar a substituição"
 
 msgid "Confirm save"
 msgstr "Confirmar salvar"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "Conectar"
 
@@ -3158,9 +3209,6 @@ msgstr "Falha na conexão, por favor verificar suas configurações de conexão"
 msgid "Connection failed, please check your connection settings."
 msgstr "Falha na conexão, por favor verificar suas configurações de conexão"
 
-msgid "Connection looks good!"
-msgstr "A conexão parece boa !"
-
 #, fuzzy
 msgid "Content format"
 msgstr "Formato da data"
@@ -3202,21 +3250,21 @@ msgstr "Copiado para a área de transferência!"
 msgid "Copy"
 msgstr "Copiar"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "Copiar instrução SELECT para a área de transferência"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "Copiar e cole as credenciais JSON"
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "Copie e cole todo o ficheiro service account.json aqui"
-
 msgid "Copy link"
 msgstr "Copiar link"
 
-msgid "Copy message"
-msgstr "Copiar mensagem"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Copiar de %s"
@@ -3233,6 +3281,9 @@ msgstr "Copiar URL da consulta"
 msgid "Copy query link to your clipboard"
 msgstr "Copiar link de consulta para sua área de transferência"
 
+msgid "Copy the current data"
+msgstr ""
+
 #, 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."
@@ -3249,6 +3300,10 @@ msgstr "Copiar para Área de transferência"
 msgid "Copy to clipboard"
 msgstr "Copiar para área de transferência"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "Raio interior"
+
 msgid "Correlation"
 msgstr "Correlação"
 
@@ -3278,6 +3333,9 @@ msgstr "Não foi possível carregar o driver de banco de dados: {}"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr "Contar"
 
@@ -3371,6 +3429,9 @@ msgstr "Criando uma fonte de dados e criando uma nova guia"
 msgid "Creator"
 msgstr "Criador"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr "Carmesim"
 
@@ -3465,7 +3526,10 @@ msgstr "Os campos SQL personalizados não podem conter subconsultas."
 msgid "Custom color palettes"
 msgstr "Autocompletar"
 
-#, fuzzy
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
+#, fuzzy
 msgid "Custom date"
 msgstr "Personalizado"
 
@@ -3499,9 +3563,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr "Detectada dependência cíclica"
 
-msgid "D3 Format"
-msgstr "Formato D3"
-
 msgid "D3 format"
 msgstr "Formato D3"
 
@@ -3528,7 +3589,8 @@ msgstr "DATA"
 #, python-format
 msgid "DB column %(col_name)s has unknown type: %(value_type)s"
 msgstr ""
-"Coluna do banco de dados %(col_name)s tem tipo desconhecido: %(value_type)s"
+"Coluna do banco de dados %(col_name)s tem tipo desconhecido: "
+"%(value_type)s"
 
 msgid "DD/MM format dates, international and European format"
 msgstr ""
@@ -3564,6 +3626,21 @@ msgstr "O painel [%s] acabou de ser criado e o gráfico [%s] foi adicionado a el
 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"
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "Não foi possível atualizar o painel."
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "Não foi possível atualizar o painel."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "Não foi possível atualizar o painel."
+
 msgid "Dashboard could not be deleted."
 msgstr "Não foi possível remover o painel."
 
@@ -3576,6 +3653,10 @@ msgstr "Painel não existe"
 msgid "Dashboard imported"
 msgstr "Painel importado"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "Não foi possível atualizar o painel."
+
 msgid "Dashboard parameters are invalid."
 msgstr "Os parâmetros do painel são inválidos."
 
@@ -3622,10 +3703,6 @@ msgstr "Traço"
 msgid "Data"
 msgstr "Dados"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "Conjunto de dados importado"
-
 msgid "Data Table"
 msgstr "Tabela de dados"
 
@@ -3655,6 +3732,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr "Dados para %s"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Conjunto de dados importado"
+
 msgid "Data preview"
 msgstr "Pré-visualização de dados"
 
@@ -3819,13 +3900,6 @@ msgstr ""
 "dados ou consultas SQL. Selecione uma tabela de banco de dados à esquerda"
 " ou"
 
-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 ""
-
 #, fuzzy
 msgid "Datasets could not be deleted."
 msgstr "Não foi possível remover o conjunto de dados."
@@ -3860,9 +3934,6 @@ msgstr "String de formato de data"
 msgid "Date/Time"
 msgstr "Data/Hora"
 
-msgid "Datetime Format"
-msgstr "Formato de data e hora"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3892,14 +3963,12 @@ msgstr "Desativar"
 msgid "December"
 msgstr "Dezembro"
 
-msgid "Decides which column to sort the base axis by."
-msgstr "Decide por qual coluna ordenar o eixo base."
-
 #, fuzzy
-msgid "Decides which measure to sort the base axis by."
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "Decide por qual coluna ordenar o eixo base."
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "Caractere decimal"
 
 msgid "Deck.gl - 3D Grid"
@@ -3945,9 +4014,6 @@ msgstr "criar"
 msgid "Default Catalog"
 msgstr "Valor padrão"
 
-msgid "Default Endpoint"
-msgstr "Endpoint padrão"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "Selecionar esquema"
@@ -3955,10 +4021,11 @@ msgstr "Selecionar esquema"
 msgid "Default URL"
 msgstr "URL padrão"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
-"URL padrão para o qual redirecionar quando acessar da página da lista de "
-"conjuntos de dados"
 
 msgid "Default Value"
 msgstr "Valor padrão"
@@ -3979,9 +4046,6 @@ 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"
 
-msgid "Default value is required"
-msgstr "O valor padrão é obrigatório"
-
 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 "
@@ -4043,9 +4107,6 @@ msgstr ""
 "Define uma função de janela móvel a aplicar, funciona em conjunto com a "
 "caixa de texto [Períodos]"
 
-msgid "Defines how each series is broken down"
-msgstr "Define como cada série é decomposta"
-
 msgid "Defines the grid size in pixels"
 msgstr "Define o tamanho do grid em pixels"
 
@@ -4108,9 +4169,17 @@ msgstr "Excluir consulta?"
 msgid "Delete Report?"
 msgstr "Excluir relatório?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "excluir"
+
 msgid "Delete Template?"
 msgstr "Excluir modelo?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Excluir consulta?"
+
 msgid "Delete all Really?"
 msgstr "Realmente excluir tudo?"
 
@@ -4129,12 +4198,20 @@ msgstr "Excluir relatório de e-mail"
 msgid "Delete query"
 msgstr "Excluir consulta"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "excluir"
+
 msgid "Delete template"
 msgstr "Excluir modelo"
 
 msgid "Delete this container and save to remove this message."
 msgstr "Excluir este contêiner e salvar para remover essa mensagem."
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Excluir consulta"
+
 #, fuzzy
 msgid "Deleted"
 msgstr "excluir"
@@ -4197,13 +4274,30 @@ msgstr[1] ""
 msgid "Deleted %s"
 msgstr "Excluído: %s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Excluído: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Excluído: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Excluído: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Excluído: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Excluído: %s"
 
+#, fuzzy
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. 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"
@@ -4217,18 +4311,12 @@ msgstr "Delimitador"
 msgid "Delivery method"
 msgstr "Método de entrega"
 
-msgid "Demographics"
-msgstr "Demografia"
-
 msgid "Density"
 msgstr "Densidade"
 
 msgid "Dependent on"
 msgstr "Depende de"
 
-msgid "Deprecated"
-msgstr "Depreciado"
-
 msgid "Description"
 msgstr "Descrição"
 
@@ -4324,10 +4412,6 @@ msgstr "Não foram devolvidas amostras para este conjunto de dados"
 msgid "Discard"
 msgstr "Descartar"
 
-#, fuzzy
-msgid "Display"
-msgstr "Nome de exibição"
-
 msgid "Display Name"
 msgstr "Nome de exibição"
 
@@ -4335,6 +4419,10 @@ msgstr "Nome de exibição"
 msgid "Display all"
 msgstr "Nome de exibição"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "Mostrar total ao nível da coluna"
+
 #, fuzzy
 msgid "Display column level subtotal"
 msgstr "Mostrar total ao nível da coluna"
@@ -4342,6 +4430,10 @@ msgstr "Mostrar total ao nível da coluna"
 msgid "Display column level total"
 msgstr "Mostrar total ao nível da coluna"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Mostrar total ao nível da coluna"
+
 msgid "Display configuration"
 msgstr "Mostrar configuração"
 
@@ -4365,8 +4457,9 @@ msgstr "Exibir total do nível de linha"
 msgid "Display row level total"
 msgstr "Exibir total do nível de linha"
 
-msgid "Display settings"
-msgstr "Configurações de exibição"
+#, fuzzy
+msgid "Display type icon"
+msgstr "ícone do tipo booleano"
 
 msgid ""
 "Displays connections between entities in a graph structure. Useful for "
@@ -4386,9 +4479,6 @@ msgstr "Distribuir em"
 msgid "Distribution"
 msgstr "Distribuição"
 
-msgid "Distribution - Bar Chart"
-msgstr "Distribuição - Gráfico de barras"
-
 msgid "Divider"
 msgstr "Divisor"
 
@@ -4417,9 +4507,18 @@ msgstr "Baixar como imagem"
 msgid "Download as image"
 msgstr "Baixar como imagem"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "Baixar para CSV"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "Rascunho"
 
@@ -4522,6 +4621,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "Conjunto de dados duplicado"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Duplicado"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "Nome(s) de coluna duplicado(s): %(columns)s"
+
 msgid "Duplicate tab"
 msgstr "Duplicar aba"
 
@@ -4538,24 +4645,6 @@ msgstr ""
 "ignora o cache. Observe que o padrão é o tempo limite global se não for "
 "definido."
 
-msgid ""
-"Duration (in seconds) of the caching timeout for charts of this database."
-" A timeout of 0 indicates that the cache never expires. Note this "
-"defaults to the global timeout if undefined."
-msgstr ""
-"Duração (em segundos) do tempo limite de armazenamento em cache para os "
-"gráficos desse banco de dados. Um tempo limite de 0 indica que a cache "
-"nunca expira. Observe que o padrão é o tempo limite global se não for "
-"definido."
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-msgstr ""
-"Duração (em segundos) do tempo limite de armazenamento em cache para este"
-" gráfico. Observe que o padrão é o tempo limite da fonte de dados/tabela "
-"se não for definido."
-
 msgid ""
 "Duration (in seconds) of the caching timeout for this chart. Set to -1 to"
 " bypass the cache. Note this defaults to the dataset's timeout if "
@@ -4565,16 +4654,6 @@ msgstr ""
 "como -1 para ignorar o cache. Observe que o padrão é o tempo limite do "
 "conjunto de dados, se não for definido."
 
-msgid ""
-"Duration (in seconds) of the caching timeout for this table. A timeout of"
-" 0 indicates that the cache never expires. Note this defaults to the "
-"database timeout if undefined."
-msgstr ""
-"Duração (em segundos) do tempo limite de armazenamento em cache para esta"
-" tabela. Um tempo limite de 0 indica que a cache nunca expira. Note que "
-"este tempo limite é predefinido para o tempo limite da base de dados se "
-"não for definido."
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4596,6 +4675,10 @@ msgstr "Duração em ms (1,40008 => 1ms 400µs 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "Duração em ms (100,40008 => 100ms 400µs 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "Duração em ms (66000 => 1m 6s)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "Duração em ms (66000 => 1m 6s)"
 
@@ -4617,10 +4700,6 @@ msgstr "FIM (EXCLUSIVO)"
 msgid "ERROR"
 msgstr "ERRO"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "ERRO: %s"
-
 msgid "Edge length"
 msgstr "Comprimento da borda"
 
@@ -4645,21 +4724,12 @@ msgstr "Editar CSS"
 msgid "Edit CSS template properties"
 msgstr "Editar propriedades do modelo CSS"
 
-msgid "Edit Chart"
-msgstr "Editar gráfico"
-
 msgid "Edit Chart Properties"
 msgstr "Editar propriedades do gráfico"
 
-msgid "Edit Column"
-msgstr "Editar Coluna"
-
 msgid "Edit Dashboard"
 msgstr "Editar Painel"
 
-msgid "Edit Database"
-msgstr "Editar Banco de Dados"
-
 #, fuzzy
 msgid "Edit Dataset "
 msgstr "Editar conjunto de dados"
@@ -4667,9 +4737,6 @@ msgstr "Editar conjunto de dados"
 msgid "Edit Log"
 msgstr "Editar log"
 
-msgid "Edit Metric"
-msgstr "Editar Métrica"
-
 msgid "Edit Plugin"
 msgstr "Editar Plugin"
 
@@ -4677,16 +4744,21 @@ msgid "Edit Report"
 msgstr "Editar relatório"
 
 #, fuzzy
-msgid "Edit Rule"
+msgid "Edit Role"
 msgstr "modo de edição"
 
-msgid "Edit Table"
-msgstr "Editar Tabela"
+#, fuzzy
+msgid "Edit Rule"
+msgstr "modo de edição"
 
 #, fuzzy
 msgid "Edit Tag"
 msgstr "Editar log"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Editar consulta"
+
 msgid "Edit annotation"
 msgstr "Editar anotação"
 
@@ -4723,6 +4795,10 @@ msgstr "Editar propriedades"
 msgid "Edit query"
 msgstr "Editar consulta"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "modo de edição"
+
 msgid "Edit template"
 msgstr "Editar modelo"
 
@@ -4735,6 +4811,10 @@ msgstr "Editar o painel"
 msgid "Edit time range"
 msgstr "Editar intervalo de tempo"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Editar consulta"
+
 msgid "Edited"
 msgstr "Editado"
 
@@ -4762,6 +4842,14 @@ msgstr "Nome de usuário ou a senha está incorreto."
 msgid "Elevation"
 msgstr "Elevação"
 
+#, fuzzy
+msgid "Email"
+msgstr "Totais"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "O valor é necessário"
+
 msgid "Email reports active"
 msgstr "Relatórios por e-mail ativo"
 
@@ -4777,6 +4865,10 @@ msgstr "Incorporar código"
 msgid "Embed dashboard"
 msgstr "Incorporar painel"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "Não foi possível remover o painel."
+
 msgid "Embedding deactivated."
 msgstr "Incorporação desativada."
 
@@ -4786,9 +4878,6 @@ msgstr "Emitir eventos de filtro"
 msgid "Emphasis"
 msgstr "Ênfase"
 
-msgid "Employment and education"
-msgstr "Emprego e educação"
-
 msgid "Empty circle"
 msgstr "Círculo vazio"
 
@@ -4812,9 +4901,6 @@ msgstr ""
 "Ativar 'Permitir uploads de arquivos para banco de dados' em quaisquer "
 "configurações do banco de dados"
 
-msgid "Enable Filter Select"
-msgstr "Ativar seleção de filtro"
-
 msgid "Enable cross-filtering"
 msgstr "Habilitar filtragem cruzada"
 
@@ -4922,12 +5008,26 @@ msgstr "Nome do relatório"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "Digite as credenciais %(dbModelName)s necessárias"
 
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Nome do alerta"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "Nome do alerta"
+
+msgid "Enter the user's username"
+msgstr ""
+
 msgid "Entity"
 msgstr "Entidade"
 
-msgid "Entity ID"
-msgstr "ID da entidade"
-
 msgid "Equal Date Sizes"
 msgstr "Tamanhos de datas iguais"
 
@@ -4941,6 +5041,14 @@ msgstr "Erro"
 msgid "Error Fetching Tagged Objects"
 msgstr "Ocorreu um erro ao buscar os objetos relacionados ao conjunto de dados"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Erro ao buscar dados: %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Ocorreu um erro ao salvar conjunto de dados"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr "Erro na expressão jinja na cláusula HAVING: %(msg)s"
@@ -4965,6 +5073,10 @@ msgstr ""
 msgid "Error message"
 msgstr "Mensagem de erro"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "erro dark"
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "Ocorreu um erro ao salvar conjunto de dados"
@@ -4981,6 +5093,22 @@ msgstr "Carregar arquivo Excel"
 msgid "Error saving dataset"
 msgstr "Ocorreu um erro ao salvar conjunto de dados"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Ocorreu um erro ao salvar conjunto de dados"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Erro ao buscar gráficos"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Erro ao buscar gráficos"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Erro ao buscar gráficos"
+
 msgid "Error while fetching charts"
 msgstr "Erro ao buscar gráficos"
 
@@ -4988,10 +5116,30 @@ msgstr "Erro ao buscar gráficos"
 msgid "Error while fetching data: %s"
 msgstr "Erro ao buscar dados: %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Erro ao buscar gráficos"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Erro ao buscar gráficos"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Erro ao buscar gráficos"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "Erro ao renderizar consulta de conjunto de dados virtual: %(msg)s"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Erro ao buscar gráficos"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Erro ao buscar gráficos"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "Erro: %(error)s"
@@ -5015,15 +5163,6 @@ msgstr "Estimar o custo antes de executar uma consulta"
 msgid "Event"
 msgstr "Evento"
 
-msgid "Event Flow"
-msgstr "Fluxo do Evento"
-
-msgid "Event Names"
-msgstr "Nome do Evento"
-
-msgid "Event definition"
-msgstr "Definição do evento"
-
 msgid "Event flow"
 msgstr "Fluxo de eventos"
 
@@ -5045,13 +5184,13 @@ msgstr "Exemplo"
 msgid "Examples"
 msgstr "Exemplos"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "Carregar CSV"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "Carregar CSV"
+
 msgid "Exclude selected values"
 msgstr "Excluir valores selecionados"
 
@@ -5145,12 +5284,6 @@ msgstr "Exportar para YAML"
 msgid "Export to Pivoted .CSV"
 msgstr "Exportar para .CSV articulado"
 
-msgid "Export to YAML"
-msgstr "Exportar para YAML"
-
-msgid "Export to YAML?"
-msgstr "Exportar para YAML?"
-
 #, fuzzy
 msgid "Export to full .CSV"
 msgstr "Exportar para .CSV completo"
@@ -5173,11 +5306,9 @@ msgstr "Expor banco de dados no SQL Lab"
 msgid "Expose in SQL Lab"
 msgstr "Expor no SQL Lab"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Expor este banco de dados no SQL Lab"
-
-msgid "Expression"
-msgstr "Expressão"
+#, fuzzy
+msgid "Extent"
+msgstr "recente"
 
 msgid "Extra"
 msgstr "Extra"
@@ -5202,10 +5333,6 @@ msgstr ""
 "Platform Team\", \"details\": \"This table is the source of truth.\" }, "
 "\"warning_markdown\": \"This is a warning.\" }`."
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "Campo extra não pode ser decodificado por JSON. %(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "Parâmetros extra para utilização em consultas de modelo jinja"
 
@@ -5225,6 +5352,10 @@ msgstr "Extrudados"
 msgid "FEB"
 msgstr "FEV"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Editar conjunto de dados"
+
 msgid "FRI"
 msgstr "SEX"
 
@@ -5234,16 +5365,15 @@ msgstr "Fator"
 msgid "Factor to multiply the metric by"
 msgstr "Fator para multiplicar a métrica por"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "Falhou"
 
 msgid "Failed at retrieving results"
 msgstr "Falha na obtenção de resultados"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "Falha ao parar a consulta. %s"
-
 msgid "Failed to create report"
 msgstr "Falha ao criar relatório"
 
@@ -5276,6 +5406,10 @@ msgstr "Habilitar filtragem cruzada"
 msgid "Failed to start remote query on a worker."
 msgstr "Falha ao iniciar a consulta remota em um worker."
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "Falha ao parar a consulta. %s"
+
 #, fuzzy
 msgid "Failed to tag items"
 msgstr "Desmarcar tudo"
@@ -5300,9 +5434,6 @@ msgstr ""
 msgid "February"
 msgstr "Fevereiro"
 
-msgid "Fetch Values Predicate"
-msgstr "Predicado de obtenção de valores"
-
 msgid "Fetch data preview"
 msgstr "Obter pré-visualização de dados"
 
@@ -5327,16 +5458,13 @@ msgstr "Campo é obrigatório"
 msgid "File"
 msgstr "Arquivo"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "Configurações de filtro"
-
 #, fuzzy
 msgid "File extension is not allowed."
 msgstr "URI de dados não são permitidos."
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "Configurações de filtro"
 
 #, fuzzy
 msgid "File upload"
@@ -5402,9 +5530,6 @@ msgstr "A lista de valores do filtro não pode estar vazia"
 msgid "Filter your charts"
 msgstr "Filtrar os seus gráficos"
 
-msgid "Filterable"
-msgstr "Filtrável"
-
 msgid "Filters"
 msgstr "Filtros"
 
@@ -5417,6 +5542,16 @@ msgstr "Filtros por métricas"
 msgid "Filters for comparison must have a value"
 msgstr ""
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "O `row_limit` deve ser maior ou igual a 0"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "Filtros fora do escopo (%d)"
@@ -5450,6 +5585,14 @@ msgstr "Finalizar"
 msgid "First"
 msgstr "Primeiro"
 
+#, fuzzy
+msgid "First name"
+msgstr "Nome do gráfico"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "O nome é obrigatório"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5542,6 +5685,10 @@ msgstr "Forçar o formato da data"
 msgid "Force refresh"
 msgstr "Forçar atualização"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Forçar atualização da lista de esquemas"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "Forçar atualização da lista de tabelas"
@@ -5663,6 +5810,10 @@ msgstr "Configurações de GeoJson"
 msgid "Geohash"
 msgstr "Geohash"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Coluna vazia"
+
 msgid "Get the last date by the date unit."
 msgstr "Obter a última data através da unidade de data."
 
@@ -5721,9 +5872,6 @@ msgstr "Agrupar por"
 msgid "Group by"
 msgstr "Agrupar por"
 
-msgid "Groupable"
-msgstr "Agrupável"
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5740,23 +5888,12 @@ msgstr "Modelo de handlebars"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-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."
-
 msgid "Has created by"
 msgstr "Foi criado por"
 
 msgid "Header"
 msgstr "Cabeçalho"
 
-msgid "Header Row"
-msgstr "Linha do Cabeçalho"
-
 #, fuzzy
 msgid "Header row"
 msgstr "Linha do Cabeçalho"
@@ -5764,19 +5901,16 @@ msgstr "Linha do Cabeçalho"
 msgid "Heatmap"
 msgstr "Mapa de calor"
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "Gráfico de linhas (herdado)"
-
-msgid "Heatmap Options"
-msgstr "Opções do mapa de calor"
-
 msgid "Height"
 msgstr "Altura"
 
 msgid "Height of the sparkline"
 msgstr "Altura do minigráfico"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Coluna de tempo"
+
 msgid "Hide Line"
 msgstr "Ocultar linha"
 
@@ -5801,10 +5935,6 @@ msgstr "Hierarquia"
 msgid "Histogram"
 msgstr "Histograma"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "Gráfico de linhas (herdado)"
-
 msgid "Home"
 msgstr "Início"
 
@@ -5883,36 +6013,24 @@ msgstr ""
 "representarão o usuário conectado no momento por meio da propriedade "
 "hive.server2.proxy.user."
 
-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.<br/>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.<br/>Se "
-"Hive e hive.server2.enable.doAs estiverem ativados, as consultas serão "
-"executadas como conta de serviço, mas personificarão o usuário atualmente"
-" conectado por meio da propriedade hive.server2.proxy.user."
-
-msgid "If Table Already Exists"
-msgstr "Se a tabela já existir"
-
 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"
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
 msgstr ""
 
-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."
+#, fuzzy
+msgid "If table already exists"
+msgstr "O rótulo já existe"
 
 #, fuzzy
 msgid "Ignore cache when generating report"
@@ -5935,9 +6053,6 @@ msgstr ""
 "Fazer-se passar por usuário conectado (Presto, Trino, Drill, Hive e "
 "GSheets)"
 
-msgid "Impersonate the logged on user"
-msgstr "Representar o usuário com sessão iniciada"
-
 msgid "Import"
 msgstr "Importar"
 
@@ -5948,9 +6063,6 @@ msgstr "Importar %s"
 msgid "Import Dashboard(s)"
 msgstr "Importar Painel(eis)"
 
-msgid "Import a table definition"
-msgstr "Importar uma definição de tabela"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "A importação do gráfico falhou por um motivo desconhecido"
 
@@ -5981,17 +6093,14 @@ msgstr "Importar consultas"
 msgid "Import saved query failed for an unknown reason."
 msgstr "A consulta salva de importação falhou por um motivo desconhecido."
 
-msgid ""
-"Important! Select this if the table is not already sorted by entity id, "
-"else there is no guarantee that all events for each entity are returned."
-msgstr ""
-"Importante! Seleccione esta opção se a tabela ainda não estiver ordenada "
-"por id de entidade, caso contrário não há garantia de que todos os "
-"eventos de cada entidade sejam retornados."
-
 msgid "In"
 msgstr "Em"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "Incluir Séries"
 
@@ -6015,17 +6124,18 @@ msgstr "criar"
 msgid "Index"
 msgstr "Índice"
 
-msgid "Index Column"
-msgstr "Coluna de índice"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "Rótulos de intervalo"
+msgid "Index column"
+msgstr "Coluna de linhas"
 
 #, fuzzy
 msgid "Index label"
 msgstr "Rótulos de intervalo"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Exibir chaves e índices (%s)"
+
 msgid "Info"
 msgstr "Informações"
 
@@ -6046,6 +6156,13 @@ msgstr ""
 "O campo de entrada suporta uma rotação personalizada, por exemplo, 30 "
 "para 30°"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "Esconder camada"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "Intensidade"
 
@@ -6077,10 +6194,6 @@ msgstr "Coluna de início do intervalo"
 msgid "Intervals"
 msgstr "Intervalos"
 
-#, fuzzy
-msgid "Intesity"
-msgstr "Intensidade"
-
 #, fuzzy
 msgid ""
 "Invalid Connection String: Expecting String of the form "
@@ -6130,6 +6243,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr "Formato de data/carimbo de data/hora inválido"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "Tipo de operação de filtragem inválido: %(op)s"
@@ -6193,6 +6309,10 @@ msgstr "Seleção inversa"
 msgid "Invert current page"
 msgstr "Inverter a página atual"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Alerta está ativo"
+
 msgid "Is certified"
 msgstr "É certificado"
 
@@ -6374,12 +6494,6 @@ msgstr "Grande"
 msgid "Last"
 msgstr "Último"
 
-msgid "Last Changed"
-msgstr "Última alteração"
-
-msgid "Last Modified"
-msgstr "Última modificação"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "Última atualização %s"
@@ -6388,6 +6502,10 @@ msgstr "Última atualização %s"
 msgid "Last Updated %s by %s"
 msgstr "Última atualização %s por %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Valor alvo"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr "Último valor disponível visto em %s"
@@ -6396,6 +6514,10 @@ msgstr "Último valor disponível visto em %s"
 msgid "Last day"
 msgstr "último dia"
 
+#, fuzzy
+msgid "Last login"
+msgstr "mês passado"
+
 msgid "Last modified"
 msgstr "Última modificação"
 
@@ -6403,6 +6525,14 @@ msgstr "Última modificação"
 msgid "Last month"
 msgstr "mês passado"
 
+#, fuzzy
+msgid "Last name"
+msgstr "nome do conjunto de dados"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "O nome é obrigatório"
+
 #, fuzzy
 msgid "Last quarter"
 msgstr "último trimestre"
@@ -6418,15 +6548,42 @@ msgstr "semana passada"
 msgid "Last year"
 msgstr "ano passado"
 
+#, fuzzy
+msgid "Lat"
+msgstr "plano"
+
 msgid "Latitude"
 msgstr "Latitude"
 
 msgid "Latitude of default viewport"
 msgstr "Latitude da janela de visualização padrão"
 
+#, fuzzy
+msgid "Layer"
+msgstr "ano"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Nome do alerta"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "Configuração de camadas"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Título do gráfico"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Tipo do filtro"
+
+#, fuzzy
+msgid "Layers"
+msgstr "alertas"
+
 msgid "Layout"
 msgstr "Layout"
 
@@ -6439,13 +6596,6 @@ msgstr "Tipo de layout de gráfico"
 msgid "Layout type of tree"
 msgstr "Tipo de layout de árvore"
 
-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"
-
 msgid "Least recently modified"
 msgstr "Modificação mais recente"
 
@@ -6512,13 +6662,6 @@ msgstr "Como (não diferencia maiúsculas de minúsculas)"
 msgid "Limit type"
 msgstr "Tipo de limite"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-"Limitar as linhas pode resultar em dados incompletos e gráficos errôneos."
-" Em vez disso, considere filtrar ou agrupar nomes de origem/destino."
-
 msgid "Limits the number of cells that get retrieved."
 msgstr "Limita o número de células recuperadas."
 
@@ -6564,6 +6707,9 @@ msgstr ""
 "segmentos de linha reta. É um tipo básico de gráfico comum em muitos "
 "domínios."
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "Linha interpolação conforme definido por d3.js"
 
@@ -6592,9 +6738,16 @@ msgstr "Codificação de linhas"
 msgid "Link Copied!"
 msgstr "Link copiado!"
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr "Listar valores exclusivos"
 
+#, fuzzy
+msgid "List Users"
+msgstr "Número de divisão"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr "Lista de colunas extra disponibilizadas em funções JavaScript"
 
@@ -6663,6 +6816,10 @@ msgstr "Eixo y logarítmico"
 msgid "Login"
 msgstr "Entrar"
 
+#, fuzzy
+msgid "Login count"
+msgstr "contagem"
+
 msgid "Login with"
 msgstr "Fazer login com"
 
@@ -6672,6 +6829,10 @@ msgstr "Sair"
 msgid "Logs"
 msgstr "Logs"
 
+#, fuzzy
+msgid "Lon"
+msgstr "em"
+
 msgid "Long dashed"
 msgstr "Traço longo"
 
@@ -6714,9 +6875,6 @@ msgstr "SEG"
 msgid "Main"
 msgstr "min"
 
-msgid "Main Datetime Column"
-msgstr "Coluna principal de data e hora"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6752,6 +6910,10 @@ msgstr "Definir manualmente os valores mínimo/máximo para o eixo y."
 msgid "Map"
 msgstr "Mapa"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Opções do mapa de calor"
+
 msgid "Map Style"
 msgstr "Estilo do mapa"
 
@@ -6794,14 +6956,17 @@ msgstr "Marcadores"
 msgid "Markup type"
 msgstr "Tipo de marcação"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "Máx"
 
 msgid "Max Bubble Size"
 msgstr "Tamanho máximo da bolha"
 
-msgid "Max Events"
-msgstr "Max Eventos"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "Máximo"
@@ -6812,6 +6977,9 @@ msgstr "Tamanho Máximo da Fonte"
 msgid "Maximum Radius"
 msgstr "Raio Máximo"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6855,6 +7023,18 @@ msgstr "Valores médios"
 msgid "Medium"
 msgstr "Médio"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr "Acionador de ações do menu"
 
@@ -6955,14 +7135,6 @@ msgstr ""
 "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)."
 
-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)."
-
 msgid "Metrics"
 msgstr "Métricas"
 
@@ -7002,8 +7174,8 @@ msgstr "Tamanho Mínimo da Fonte"
 msgid "Minimum Radius"
 msgstr "Raio Mínimo"
 
-msgid "Minimum leaf node event count"
-msgstr "Contagem mínima de eventos de nó folha"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
 "Minimum radius size of the circle, in pixels. As the zoom level changes, "
@@ -7018,6 +7190,10 @@ msgstr "Limiar mínimo em pontos percentuais para mostrar as etiquetas."
 msgid "Minimum value"
 msgstr "Valor mínimo"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "A data de início não pode ser maior do que a data de fim"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "Valor mínimo para o rótulo a apresentar no gráfico."
 
@@ -7042,6 +7218,9 @@ msgstr "Minutos %s"
 msgid "Minutes value"
 msgstr "Valor mínimo"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr "Parâmetros de URL ausentes"
 
@@ -7058,6 +7237,12 @@ msgstr "Modificado"
 msgid "Modified %s"
 msgstr "Modificado %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+
 msgid "Modified by"
 msgstr "Modificado por"
 
@@ -7065,10 +7250,6 @@ msgstr "Modificado por"
 msgid "Modified by: %s"
 msgstr "Última modificação por %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "Colunas modificadas: %s"
-
 msgid "Monday"
 msgstr "Segunda-feira"
 
@@ -7131,9 +7312,6 @@ msgstr "Deve escolher um gráfico ou um painel"
 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]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "Deve ter pelo menos uma coluna numérica especificada"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr "Forneça credenciais para o Túnel SSH"
 
@@ -7158,9 +7336,6 @@ msgstr "NÃO AGRUPADO POR"
 msgid "NOV"
 msgstr "NOV"
 
-msgid "NOW"
-msgstr "AGORA"
-
 msgid "NUMERIC"
 msgstr "NUMÉRICO"
 
@@ -7186,9 +7361,6 @@ msgstr "Nome da coluna id"
 msgid "Name of the source nodes"
 msgstr "Nome dos nós de origem"
 
-msgid "Name of the table that exists in the source database"
-msgstr "Nome da tabela que existe no banco de dados de origem"
-
 msgid "Name of the target nodes"
 msgstr "Nome dos nós de destino"
 
@@ -7205,19 +7377,23 @@ msgstr "Precisa de ajuda? Aprenda como conectar seu banco de dados"
 msgid "Need help? Learn more about"
 msgstr "Precisa de ajuda? Saiba mais sobre"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Erro de rede"
+
 msgid "Network error"
 msgstr "Erro de rede"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Ocorreu um erro ao criar a fonte de dados"
+
 msgid "Network error."
 msgstr "Erro de rede."
 
 msgid "New chart"
 msgstr "Novo gráfico"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "Novas colunas adicionadas: %s"
-
 msgid "New dataset"
 msgstr "Novo conjunto de dados"
 
@@ -7267,6 +7443,10 @@ msgstr "Ainda não há registros"
 msgid "No Tags created"
 msgstr "foi criado"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Desfazer a ação"
+
 msgid "No annotation layers"
 msgstr "Nenhuma camada de anotação"
 
@@ -7285,9 +7465,6 @@ msgstr "Não há filtros disponíveis."
 msgid "No charts"
 msgstr "Sem gráficos"
 
-msgid "No charts yet"
-msgstr "Ainda não há gráficos"
-
 msgid "No columns found"
 msgstr "Nenhuma coluna encontrada"
 
@@ -7304,9 +7481,6 @@ msgstr "Não foram encontrados conjuntos de dados compatíveis"
 msgid "No compatible schema found"
 msgstr "Nenhum esquema compatível foi encontrado"
 
-msgid "No dashboards yet"
-msgstr "Ainda não há painéis"
-
 msgid "No data"
 msgstr "Sem dados"
 
@@ -7318,6 +7492,10 @@ msgstr ""
 msgid "No data in file"
 msgstr "Não há dados no arquivo"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "Não há bancos de dados disponíveis"
+
 msgid "No databases match your search"
 msgstr "Nenhum banco de dados corresponde a sua pesquisa"
 
@@ -7348,12 +7526,6 @@ msgstr "Nenhum filtro global está atualmente adicionado"
 msgid "No matching records found"
 msgstr "Não foram encontrados registros correspondentes"
 
-msgid "No of Bins"
-msgstr "Número de lixeiras"
-
-msgid "No recents yet"
-msgstr "Ainda não há registros"
-
 msgid "No records found"
 msgstr "Não foram encontrados registos"
 
@@ -7379,6 +7551,10 @@ msgstr ""
 " corretamente configurados e que a fonte de dados contém dados para o "
 "intervalo de tempo selecionado."
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Ainda não há registros"
+
 msgid "No rows were returned for this dataset"
 msgstr "Não foram devolvidas linhas para este conjunto de dados"
 
@@ -7391,9 +7567,6 @@ msgstr "Nenhuma expressão salva foi encontrada"
 msgid "No saved metrics found"
 msgstr "Nenhuma métrica salva foi encontrada"
 
-msgid "No saved queries yet"
-msgstr "Ainda não há consultas salvas"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 "Não foram encontrados resultados armazenados, é necessário executar "
@@ -7413,6 +7586,10 @@ msgstr "Não foram encontradas colunas temporais"
 msgid "No time columns"
 msgstr "Sem colunas de tempo"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Ainda não há registros"
+
 msgid "No validator found (configured for the engine)"
 msgstr "Sem validador encontrado (configurado para o motor)"
 
@@ -7420,7 +7597,9 @@ msgstr "Sem validador encontrado (configurado para o motor)"
 msgid ""
 "No validator named %(validator_name)s found (configured for the "
 "%(engine_spec)s engine)"
-msgstr "Sem validador nomeado %(validator_name)s encontrado (configurado para o motor %(engine_spec)s)"
+msgstr ""
+"Sem validador nomeado %(validator_name)s encontrado (configurado para o "
+"motor %(engine_spec)s)"
 
 msgid "Node label position"
 msgstr "Posição do rótulo do nó"
@@ -7492,6 +7671,10 @@ msgstr "Não acionado"
 msgid "Not up to date"
 msgstr "Não atualizado"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "Nada foi acionado"
+
 msgid "Nothing triggered"
 msgstr "Nada foi acionado"
 
@@ -7600,9 +7783,6 @@ msgstr "Outubro"
 msgid "Offline"
 msgstr "Offline"
 
-msgid "Offset"
-msgstr "Deslocamento"
-
 msgid "On Grace"
 msgstr "Na Graça"
 
@@ -7632,6 +7812,10 @@ msgstr "Um ou mais controles a dinamizar como colunas"
 msgid "One or many metrics to display"
 msgstr "Uma ou muitos métricas para exibir"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "Falha no carregamento de uma ou mais camadas de anotação."
+
 msgid "One or more columns already exist"
 msgstr "Uma ou mais colunas já existem"
 
@@ -7662,12 +7846,6 @@ msgstr "Um ou mais parâmetros especificados na consulta estão malformatados."
 msgid "One or more parameters specified in the query are missing."
 msgstr "Um ou mais parâmetros especificados na consulta estão faltando."
 
-msgid "One ore more annotation layers failed loading."
-msgstr "Falha no carregamento de uma ou mais camadas de anotação."
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "Somente comandos SELECT são permitidos nesse banco de dados."
-
 msgid "Only Total"
 msgstr "Apenas Total"
 
@@ -7686,9 +7864,6 @@ msgstr ""
 "Só se aplica quando \"Label Type\" (Tipo de rótulo) está definido para "
 "mostrar valores."
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "Apenas os painéis selecionados serão afetados por este filtro"
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7773,15 +7948,19 @@ msgstr "Opções"
 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:"
 
-msgid "Order by entity id"
-msgstr "Pedido por id da entidade"
-
 msgid "Order results by selected columns"
 msgstr "Ordenar resultados por colunas selecionadas"
 
 msgid "Ordering"
 msgstr "Pedidos"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr "Orientação"
 
@@ -7907,6 +8086,10 @@ 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."
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "Falha no download da imagem, por favor atualizar e tentar novamente."
+
 msgid "Page length"
 msgstr "Comprimento da página"
 
@@ -7967,6 +8150,14 @@ msgstr ""
 msgid "Password"
 msgstr "Senha"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "O tipo é obrigatório"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Os painéis não existem"
+
 msgid "Paste Private Key here"
 msgstr "Cole a chave privada aqui"
 
@@ -8024,6 +8215,14 @@ msgstr "Períodos"
 msgid "Periods must be a whole number"
 msgstr "Os períodos devem ser um número inteiro"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Versão"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr "Pessoa ou grupo que certificou este gráfico."
 
@@ -8039,9 +8238,6 @@ msgstr "Físico"
 msgid "Physical (table or view)"
 msgstr "Físico (tabela ou view)"
 
-msgid "Physical dataset"
-msgstr "Conjunto de dados físicos"
-
 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"
 
@@ -8067,15 +8263,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr "Escolha um título para a sua anotação."
 
-msgid "Pick at least one field for [Series]"
-msgstr "Escolha no ao menos um campo para [Série]"
-
 msgid "Pick at least one metric"
 msgstr "Escolha ao menos uma métrica"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "Escolha exatamente 2 colunas como [Origem / Destino]"
-
 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."
@@ -8089,9 +8279,8 @@ msgstr "Escolha sua linguagem de marcação favorita"
 msgid "Pie Chart"
 msgstr "Gráfico de pizza"
 
-#, fuzzy
-msgid "Pie Chart (legacy)"
-msgstr "Gráfico de linhas (herdado)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "Formato de torta"
@@ -8102,6 +8291,14 @@ msgstr ""
 msgid "Pin"
 msgstr "Pino"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "Superior esquerdo"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Superior direito"
+
 msgid "Pivot Table"
 msgstr "Tabela Pivô"
 
@@ -8162,6 +8359,9 @@ msgstr ""
 "certifique-se de que correspondem à consulta SQL e aos parâmetros de "
 "definição. Em seguida, tente executar a consulta novamente."
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr "Escolha pelo menos um agrupar por"
 
@@ -8171,12 +8371,25 @@ msgstr "Por favor confirme"
 msgid "Please confirm the overwrite values."
 msgstr "Por favor, confirme os valores de substituição."
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "Por favor confirme"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Por favor insira um URI SQLAlchemy para teste"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "Por favor digite a senha novamente."
 
@@ -8189,9 +8402,6 @@ 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] ""
 
-msgid "Please save the query to enable sharing"
-msgstr "Por favor salvar a consulta para habilitar compartilhamento"
-
 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 "
@@ -8273,9 +8483,6 @@ msgstr "Polilinha"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "Preencha \"Default value\" para ativar esse controle"
 
-msgid "Population age data"
-msgstr "Dados sobre a idade da população"
-
 msgid "Port"
 msgstr "Porta"
 
@@ -8314,15 +8521,6 @@ msgstr "Valores disponíveis para o pré-filtro"
 msgid "Pre-filter is required"
 msgstr "É necessário um pré-filtro"
 
-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 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."
-
 msgid "Predictive"
 msgstr "Preditivo"
 
@@ -8342,10 +8540,6 @@ msgstr "Pré-visualização"
 msgid "Preview uploaded file"
 msgstr "Carregar arquivo Excel"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "Pré-visualização: `%s`"
-
 msgid "Previous"
 msgstr "Anterior"
 
@@ -8394,18 +8588,13 @@ msgstr "Progresso"
 msgid "Progressive"
 msgstr "Progressivo"
 
-msgid "Propagate"
-msgstr "Propagar"
+#, fuzzy
+msgid "Project Id"
+msgstr "Depreciado"
 
 msgid "Proportional"
 msgstr "Proporcional"
 
-msgid "Public and privately shared sheets"
-msgstr "Planilhas compartilhadas públicas e privadas"
-
-msgid "Publicly shared sheets only"
-msgstr "Apenas Planilhas compartilhadas publicamente"
-
 msgid "Published"
 msgstr "Publicado"
 
@@ -8425,9 +8614,6 @@ msgstr "O valor deve ser maior que 0"
 msgid "Put the labels outside of the pie?"
 msgstr "Colocar rótulos no exterior da torta?"
 
-msgid "Put the labels outside the pie?"
-msgstr "Colocar o rótulos fora a torta?"
-
 msgid "Put your code here"
 msgstr "Coloque seu código here"
 
@@ -8534,10 +8720,6 @@ msgstr "Raio em metros"
 msgid "Radius in miles"
 msgstr "Raio em milhas"
 
-#, python-format
-msgid "Ran %s"
-msgstr "Corrida %s"
-
 msgid "Range"
 msgstr "Faixa"
 
@@ -8565,18 +8747,9 @@ msgstr "Proporção"
 msgid "Raw records"
 msgstr "Registros Brutos"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr "Os gráficos, painéis e consultas recentemente criados aparecerão aqui"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr "Os gráficos, painéis e consultas recentemente editados aparecerão aqui"
-
 msgid "Recently modified"
 msgstr "Modificado recentemente"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr "Os gráficos, painéis e consultas recentemente visualizados aparecerão aqui"
-
 msgid "Recents"
 msgstr "Recentes"
 
@@ -8596,11 +8769,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-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"
-
 msgid "Redo the action"
 msgstr "Refazer o ação"
 
@@ -8642,6 +8810,10 @@ msgstr "Atualizar intervalo"
 msgid "Refresh interval saved"
 msgstr "Intervalo de atualização salvo"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "Ver esquema da tabela"
+
 msgid "Refresh the default values"
 msgstr "Atualizar os valores padrão"
 
@@ -8703,8 +8875,10 @@ msgid "Remove table preview"
 msgstr "Remover a pré-visualização da tabela"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "Colunas removidas: %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
 
 msgid "Rename tab"
 msgstr "Renomear Aba"
@@ -8715,12 +8889,11 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
-msgid "Rendering"
-msgstr "Renderização"
-
 msgid "Replace"
 msgstr "Substituir"
 
@@ -8821,6 +8994,9 @@ msgstr "Repulsão"
 msgid "Repulsion strength between nodes"
 msgstr "Força de repulsão entre nós"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "O pedido está incorreto: %(error)s"
@@ -8853,6 +9029,10 @@ msgstr "A operação de reamostragem requer DatetimeIndex"
 msgid "Reset"
 msgstr "Redefinir"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Selecionar coluna"
+
 msgid "Reset state"
 msgstr "Redefinir estado"
 
@@ -8880,6 +9060,10 @@ msgstr ""
 "O backend de resultados necessário para as consultas assíncronas não está"
 " configurado."
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "Recuperar resultados"
+
 msgid "Return to specific datetime."
 msgstr "Retornar para data e hora específica."
 
@@ -8922,6 +9106,28 @@ msgstr ""
 msgid "Role"
 msgstr "Função"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Nome do alerta"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "O valor é necessário"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "O nome é obrigatório"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "Conjunto de dados alterado com sucesso!"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Funções"
 
@@ -9005,9 +9211,6 @@ msgstr "Linhas por página, 0 significa sem paginação"
 msgid "Rows subtotal position"
 msgstr "Posição do subtotal das linhas"
 
-msgid "Rows to Read"
-msgstr "Linhas para Leitura"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "Linhas para Leitura"
@@ -9076,14 +9279,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL copiado !"
 
-msgid "SQL Expression"
-msgstr "Expressão SQL"
-
 msgid "SQL Lab"
 msgstr "SQL Lab"
 
-msgid "SQL Lab View"
-msgstr "Visão do SQL Lab"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "consultas salvas"
 
 #, python-format
 msgid ""
@@ -9177,20 +9378,10 @@ msgstr "Não foi possível recuperar as amostras do conjunto de dados."
 msgid "Samples for datasource could not be retrieved."
 msgstr "Não foi possível recuperar as amostras da fonte de dados."
 
-msgid "Sankey"
-msgstr "Sankey"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Salvar gráfico"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "Diagrama Sankey"
-
-msgid "Sankey Diagram with Loops"
-msgstr "Diagrama Sankey com Loops"
-
 msgid "Satellite"
 msgstr "Satélite"
 
@@ -9251,9 +9442,6 @@ msgstr "Salvar ou Sobrescrever Conjunto de dados"
 msgid "Save query"
 msgstr "Salvar consulta"
 
-msgid "Save the query to enable this feature"
-msgstr "Salve a consulta para ativar esse recurso"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
 "Salvar esta consulta como um conjunto de dados virtual para continuar "
@@ -9283,6 +9471,10 @@ msgstr "Consulta salva não encontrada."
 msgid "Saved query parameters are invalid."
 msgstr "Os parâmetros de consulta salvos são inválidos."
 
+#, fuzzy
+msgid "Saving..."
+msgstr "Carregando..."
+
 msgid "Scale and Move"
 msgstr "Dimensionar e deslocar"
 
@@ -9338,11 +9530,6 @@ msgstr "Esquema"
 msgid "Schema cache timeout"
 msgstr "Tempo limite do cache de esquema"
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr ""
-"Esquema, como usado apenas em alguns bancos de dados como Postgres, "
-"Redshift e DB2"
-
 msgid "Schemas allowed for File upload"
 msgstr "Esquemas permitidos para upload de arquivos"
 
@@ -9430,9 +9617,6 @@ msgstr "Segundos %s"
 msgid "Seconds value"
 msgstr "segundos"
 
-msgid "Secure Extra"
-msgstr "Segurança Extra"
-
 msgid "Secure extra"
 msgstr "Segurança Extra"
 
@@ -9527,6 +9711,10 @@ msgstr "Selecione um esquema se o banco de dados for compatível com isso"
 msgid "Select a sheet name from the uploaded file"
 msgstr "Selecione um banco de dados para enviar o arquivo"
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Excluir banco de dados"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -9547,8 +9735,8 @@ msgstr "Limpar todos os dados"
 msgid "Select all items"
 msgstr "Desmarcar tudo"
 
-msgid "Select any columns for metadata inspection"
-msgstr "Selecionar quaisquer colunas para inspeção de metadados"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 #, fuzzy
 msgid "Select catalog or type to search catalogs"
@@ -9575,6 +9763,11 @@ msgstr "Selecione o esquema de cores"
 msgid "Select column"
 msgstr "Selecionar coluna"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+"Selecione os nomes das colunas a serem analisadas como datas na lista "
+"pendente"
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9642,16 +9835,18 @@ msgid ""
 "column or write custom SQL to create a percentage metric."
 msgstr ""
 "Selecione uma ou mais métricas para exibir, que serão exibidas nas "
-"porcentagens do total. As métricas percentuais serão calculadas apenas a partir de "
-"dados dentro do limite de linhas. Você pode usar uma função de agregação em uma "
-"coluna ou escreva um SQL personalizado para criar uma métrica percentual."
+"porcentagens do total. As métricas percentuais serão calculadas apenas a "
+"partir de dados dentro do limite de linhas. Você pode usar uma função de "
+"agregação em uma coluna ou escreva um SQL personalizado para criar uma "
+"métrica percentual."
 
 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 ""
 "Selecione uma ou mais métricas para exibir. Você pode usar uma função de "
-"agregação em uma coluna ou escreva um SQL personalizado para criar uma métrica."
+"agregação em uma coluna ou escreva um SQL personalizado para criar uma "
+"métrica."
 
 msgid "Select operator"
 msgstr "Selecionar operador"
@@ -9673,6 +9868,14 @@ msgstr "Selecione ou digite o nome do conjunto de dados"
 msgid "Select owners"
 msgstr "Selecionar proprietários"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Desmarcar tudo"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Selecionar proprietários"
+
 msgid "Select saved metrics"
 msgstr "Selecionar métricas salvas"
 
@@ -9686,9 +9889,19 @@ msgstr "Selecione o esquema ou o tipo para pesquisar os esquemas"
 msgid "Select scheme"
 msgstr "Selecionar esquema"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "Selecionar assunto"
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Desmarcar tudo"
+
 msgid "Select table or type to search tables"
 msgstr "Selecione a tabela ou digite para pesquisar tabelas"
 
@@ -9703,10 +9916,11 @@ msgid ""
 "dataset or contain the same column name in the dashboard."
 msgstr ""
 "Selecione os gráficos aos quais deseja aplicar filtros cruzados neste "
-"painel. Desmarcar um gráfico irá excluí-lo de ser filtrado quando "
-"aplicar filtros cruzados de qualquer gráfico no painel. Você pode selecionar "
-"\"Todos os gráficos\" para aplicar filtros cruzados a todos os gráficos que usam o mesmo "
-"conjunto de dados ou que contém o mesmo nome de coluna no painel."
+"painel. Desmarcar um gráfico irá excluí-lo de ser filtrado quando aplicar"
+" filtros cruzados de qualquer gráfico no painel. Você pode selecionar "
+"\"Todos os gráficos\" para aplicar filtros cruzados a todos os gráficos "
+"que usam o mesmo conjunto de dados ou que contém o mesmo nome de coluna "
+"no painel."
 
 msgid ""
 "Select the charts to which you want to apply cross-filters when "
@@ -9715,19 +9929,13 @@ msgid ""
 "column name in the dashboard."
 msgstr ""
 "Selecione os gráficos aos quais deseja aplicar filtros cruzados quando "
-"interagir com este gráfico. Você pode selecionar \"Todos os gráficos\" para aplicar "
-"filtros em todos os gráficos que usam o mesmo conjunto de dados ou contêm o mesmo "
-"nome da coluna no painel."
+"interagir com este gráfico. Você pode selecionar \"Todos os gráficos\" "
+"para aplicar filtros em todos os gráficos que usam o mesmo conjunto de "
+"dados ou contêm o mesmo nome da coluna no painel."
 
 msgid "Select the geojson column"
 msgstr "Selecione a coluna geojson"
 
-msgid "Select the number of bins for the histogram"
-msgstr "Selecionar o número de caixas para o histograma"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "Selecionar as colunas numéricas para desenhar o histograma"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9753,9 +9961,6 @@ msgstr "Enviar como PNG"
 msgid "Send as text"
 msgstr "Enviar como texto"
 
-msgid "Send range filter events to other charts"
-msgstr "Enviar filtro de intervalo eventos para outro gráficos"
-
 msgid "September"
 msgstr "Setembro"
 
@@ -9768,12 +9973,6 @@ msgstr "Série"
 msgid "Series Height"
 msgstr "Altura da série"
 
-msgid "Series Limit Sort By"
-msgstr "Limite da série Ordenar por"
-
-msgid "Series Limit Sort Descending"
-msgstr "Limite da série Ordenação decrescente"
-
 msgid "Series Order"
 msgstr "Ordem da série"
 
@@ -9802,6 +10001,10 @@ msgstr "Paginação do servidor"
 msgid "Service Account"
 msgstr "Conta de serviço"
 
+#, fuzzy
+msgid "Service version"
+msgstr "Conta de serviço"
+
 msgid "Set auto-refresh interval"
 msgstr "Definir intervalo da atualização automática"
 
@@ -9809,7 +10012,9 @@ msgid "Set filter mapping"
 msgstr "Definir o mapeamento de filtros"
 
 msgid "Set header rows and the number of rows to read or skip."
-msgstr "Defina linhas de cabeçalho e o número de linhas a serem lidas ou ignoradas."
+msgstr ""
+"Defina linhas de cabeçalho e o número de linhas a serem lidas ou "
+"ignoradas."
 
 msgid "Set up an email report"
 msgstr "Configurar um relatório de e-mail"
@@ -9832,6 +10037,10 @@ msgstr "Configurações"
 msgid "Settings for time series"
 msgstr "Configurações para séries temporais"
 
+#, fuzzy
+msgid "Shape"
+msgstr "Formato de torta"
+
 msgid "Share"
 msgstr "Compartilhar"
 
@@ -9884,8 +10093,7 @@ msgstr ""
 "ordem de Fourier da sazonalidade."
 
 msgid "Show"
-msgstr ""
-"Mostrar"
+msgstr "Mostrar"
 
 #, fuzzy, python-format
 msgid "Show %s entries"
@@ -9901,18 +10109,9 @@ msgstr "Mostrar instrução CREATE VIEW"
 msgid "Show Cell bars"
 msgstr "Mostrar barras de células"
 
-msgid "Show Chart"
-msgstr "Mostrar Gráfico"
-
-msgid "Show Column"
-msgstr "Mostrar Coluna"
-
 msgid "Show Dashboard"
 msgstr "Mostrar Painel"
 
-msgid "Show Database"
-msgstr "Mostrar Banco de dados"
-
 msgid "Show Labels"
 msgstr "Mostrar rótulos"
 
@@ -9922,18 +10121,12 @@ msgstr "Mostrar log"
 msgid "Show Markers"
 msgstr "Mostrar Marcadores"
 
-msgid "Show Metric"
-msgstr "Mostrar Métricas"
-
 msgid "Show Metric Names"
 msgstr "Mostrar nomes de métricas"
 
 msgid "Show Range Filter"
 msgstr "Mostrar filtro de intervalo"
 
-msgid "Show Table"
-msgstr "Mostrar Tabela"
-
 msgid "Show Timestamp"
 msgstr "Mostrar Carimbo de data/hora"
 
@@ -9970,9 +10163,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "Mostrar todas as colunas"
 
-msgid "Show all..."
-msgstr "Mostrar tudo..."
-
 msgid "Show axis line ticks"
 msgstr "Mostrar os tiques das linhas de eixo"
 
@@ -9995,6 +10185,10 @@ msgstr "Mostrar pontos de dados como marcadores de círculos nas linhas"
 msgid "Show empty columns"
 msgstr "Mostrar colunas vazias"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "Mostrar %s entradas"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -10017,9 +10211,6 @@ msgstr "Mostrar legenda"
 msgid "Show less columns"
 msgstr "Mostrar menos colunas"
 
-msgid "Show less..."
-msgstr "Mostrar menos..."
-
 #, fuzzy
 msgid "Show minor ticks on axes."
 msgstr "Se devem ser mostrados ticks menores no eixo"
@@ -10059,6 +10250,10 @@ msgstr "Mostrar Marcadores"
 msgid "Show the value on top of the bar"
 msgstr "Mostrar o valor na parte superior da barra"
 
+#, fuzzy
+msgid "Show total"
+msgstr "Mostrar total"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -10109,8 +10304,8 @@ msgstr ""
 "objetivo. Quanto mais elevado for o preenchimento, mais próxima está a "
 "métrica do objetivo."
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "Mostrando %s de %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -10143,18 +10338,16 @@ msgstr "Valor único"
 msgid "Single value type"
 msgstr "Tipo de valor único"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "Define o tamanho do grid em pixels"
+
 msgid "Size of edge symbols"
 msgstr "Tamanho dos símbolos de aresta"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "Tamanho do marcador. Também se aplica às observações de previsão."
 
-msgid "Sizes of vehicles"
-msgstr "Tamanhos de veículos"
-
-msgid "Skip Rows"
-msgstr "Pular Linhas"
-
 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 "
@@ -10233,9 +10426,6 @@ msgstr "Desculpe, ocorreu um erro. Tente novamente mais tarde."
 msgid "Sorry, something went wrong. Try again later."
 msgstr "Desculpe, ocorreu um erro. Tente novamente mais tarde."
 
-msgid "Sorry, there appears to be no data"
-msgstr "Desculpe, mas parece que não existem dados"
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr "Desculpe, houve um erro ao salvar este %s: %s"
@@ -10253,9 +10443,6 @@ msgstr "Desculpe, seu navegador não suporta cópias. Use Ctrl / Cmd + C!"
 msgid "Sort"
 msgstr "Ordenar"
 
-msgid "Sort Bars"
-msgstr "Barras de classificação"
-
 msgid "Sort Descending"
 msgstr "Ordenação decrescente"
 
@@ -10277,9 +10464,6 @@ msgstr "Ordenar Eixo Y"
 msgid "Sort ascending"
 msgstr "Ordenação crescente"
 
-msgid "Sort bars by x labels."
-msgstr "Ordenar as barras por rótulos x."
-
 msgid "Sort by"
 msgstr "Ordenar por"
 
@@ -10305,6 +10489,10 @@ msgstr "Ordenar valores do filtro"
 msgid "Sort metric"
 msgstr "Ordenar métrica"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "Exportar consulta"
+
 msgid "Sort rows by"
 msgstr "Ordenar linhas por"
 
@@ -10317,9 +10505,6 @@ msgstr "Tipo de ordenação"
 msgid "Source"
 msgstr "Fonte"
 
-msgid "Source / Target"
-msgstr "Fonte / Alvo"
-
 msgid "Source SQL"
 msgstr "Fonte SQL"
 
@@ -10364,9 +10549,6 @@ msgstr "Milhas quadradas"
 msgid "Stack"
 msgstr "Pilha"
 
-msgid "Stack Trace:"
-msgstr "Rastreamento de Pilha:"
-
 msgid "Stack series"
 msgstr "Empilhar série"
 
@@ -10382,9 +10564,6 @@ msgstr "Barras empilhadas"
 msgid "Stacked Style"
 msgstr "Estilos empilhados"
 
-msgid "Stacked style"
-msgstr "Estilos empilhados"
-
 msgid "Standard time series"
 msgstr "Série temporal padrão"
 
@@ -10487,9 +10666,6 @@ msgstr "Ruas"
 msgid "Strength to pull the graph toward center"
 msgstr "Força para puxar o gráfico para o centro"
 
-msgid "Stretched style"
-msgstr "Estilo alongado"
-
 msgid "Stroke Color"
 msgstr "Cor do traço"
 
@@ -10511,15 +10687,20 @@ msgstr "Estilizar as extremidades da barra de progresso com uma tampa redonda"
 msgid "Subdomain"
 msgstr "Subdomínio"
 
-msgid "Subheader"
-msgstr "Subtítulo"
-
 msgid "Subheader Font Size"
 msgstr "Tamanho da fonte do subtítulo"
 
 msgid "Submit"
 msgstr "Enviar"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "Título da aba"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Tamanho da bolha"
+
 msgid "Subtotal"
 msgstr "Subtotal"
 
@@ -10573,9 +10754,6 @@ msgstr "Documentação do SDK incorporado Superset."
 msgid "Superset chart"
 msgstr "Gráfico do Superset"
 
-msgid "Superset dashboard"
-msgstr "Painel Superset"
-
 msgid "Superset encountered an error while running a command."
 msgstr "O Superset encontrou um erro ao executar um comando."
 
@@ -10585,9 +10763,6 @@ msgstr "O Superset encontrou um erro inesperado."
 msgid "Supported databases"
 msgstr "Bancos de dados compatíveis"
 
-msgid "Survey Responses"
-msgstr "Respostas da pesquisa"
-
 msgid "Swap dataset"
 msgstr "Trocar conjunto de dados"
 
@@ -10603,6 +10778,12 @@ msgstr ""
 "de linhas, de dispersão e de barras. Esse tipo de visualização também tem"
 " muitas opções de personalização."
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 #, fuzzy
 msgid "Symbol"
 msgstr "Símbolos de borda"
@@ -10613,9 +10794,20 @@ msgstr "Símbolo de duas extremidades da linha de borda"
 msgid "Symbol size"
 msgstr "Tamanho do símbolo"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "Sincronizar colunas da fonte"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "Sintaxe"
 
@@ -10626,9 +10818,6 @@ msgstr "Erro de Sintaxe: %(qualifier)s entrada \"%(input)s\" espera \"%(expected
 msgid "TABLES"
 msgstr "TABELAS"
 
-msgid "TEMPORAL X-AXIS"
-msgstr "EIXO X TEMPORAL"
-
 msgid "TEMPORAL_RANGE"
 msgstr "INTERVALO TEMPORAL"
 
@@ -10663,15 +10852,20 @@ msgid ""
 "Table [%(table)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)s], verifique novamente"
-" a conexão ao banco de dados, o esquema e o nome da tabela"
+"Não foi possível encontrar a tabela [%(table)s], verifique novamente a "
+"conexão ao banco de dados, o esquema e o nome da tabela"
+
+#, fuzzy
+msgid "Table actions"
+msgstr "Colunas da tabela"
 
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
 msgstr ""
-"A tabela já existe. Você pode alterar seu 'se a tabela já existir'"
-"estratégia para anexar ou substituir ou fornecer um nome de tabela diferente para usar."
+"A tabela já existe. Você pode alterar seu 'se a tabela já "
+"existir'estratégia para anexar ou substituir ou fornecer um nome de "
+"tabela diferente para usar."
 
 msgid "Table cache timeout"
 msgstr "Tempo limite do cache da tabela"
@@ -10679,6 +10873,10 @@ msgstr "Tempo limite do cache da tabela"
 msgid "Table columns"
 msgstr "Colunas da tabela"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Nome da Tabela"
+
 msgid "Table name undefined"
 msgstr "Não da tabela indefinido"
 
@@ -10748,13 +10946,6 @@ msgstr "O objeto marcado não pôde ser excluído."
 msgid "Tags"
 msgstr "Tags"
 
-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"
-
 msgid "Target"
 msgstr "Alvo"
 
@@ -10781,6 +10972,10 @@ msgstr ""
 "Link do modelo, é possível incluir {{ métrica }}  ou outros valores "
 "provenientes dos controles."
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "É temporal"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10835,9 +11030,6 @@ msgstr ""
 "O GeoJsonLayer recebe dados formatados em GeoJSON e apresenta-os como "
 "polígonos, linhas e pontos interativos (círculos, ícones e/ou textos)."
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10871,6 +11063,10 @@ msgstr "A anotação foi salva"
 msgid "The annotation has been updated"
 msgstr "A anotação foi atualizada"
 
+#, fuzzy
+msgid "The background color of the charts."
+msgstr "Adicione o nome do gráfico"
+
 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."
@@ -10909,6 +11105,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr "A cor dos pontos e clusters em RGB"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "The encoding format of the lines"
+
 #, fuzzy
 msgid "The color of the isoband"
 msgstr "The encoding format of the lines"
@@ -10927,6 +11127,16 @@ msgstr ""
 "O esquema de cores é determinado pelo painel relacionado.\n"
 " Edite o esquema de cores nas propriedades do painel."
 
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\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"
+
 msgid "The column header label"
 msgstr "O rótulo do cabeçalho da coluna"
 
@@ -10939,6 +11149,12 @@ msgstr "A coluna a ser usada como alvo da ponte."
 msgid "The column was deleted or renamed in the database."
 msgstr "A coluna foi excluída ou renomeada no banco de dados."
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10952,27 +11168,9 @@ msgstr "O painel foi salvo"
 msgid "The data source seems to have been deleted"
 msgstr "A Fonte de dados parece ter sido excluída"
 
-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."
-
-#, 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 ""
-
-"A base de dados %s está vinculada a %s gráficos que aparecem em %s painéis, e "
-"os usuários têm %s abas do SQL Lab abertas usando essa base de dados. Você"
-"tem certeza de que quer continuar? Deletar a base de dados quebrará esses"
-"objetos."
+#, fuzzy
+msgid "The database"
+msgstr "Excluir banco de dados"
 
 msgid "The database columns that contains lines information"
 msgstr "As colunas do banco de dados que contêm informações sobre as linhas"
@@ -11006,24 +11204,22 @@ msgstr "O banco de dados foi excluído."
 msgid "The database was not found."
 msgstr "O banco de dados não foi encontrado."
 
-#, 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."
+#, fuzzy
+msgid "The dataset"
+msgstr "Novo conjunto de dados"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "O conjunto de dados associado a este gráfico já não existe"
 
 msgid "The dataset column/metric that returns the values on your chart's x-axis."
-msgstr "A coluna/métrica do conjunto de dados que retorna os valores no eixo x do gráfico."
+msgstr ""
+"A coluna/métrica do conjunto de dados que retorna os valores no eixo x do"
+" gráfico."
 
 msgid "The dataset column/metric that returns the values on your chart's y-axis."
-msgstr "A coluna/métrica do conjunto de dados que retorna os valores no eixo y do gráfico."
+msgstr ""
+"A coluna/métrica do conjunto de dados que retorna os valores no eixo y do"
+" gráfico."
 
 msgid ""
 "The dataset configuration exposed here\n"
@@ -11083,6 +11279,15 @@ msgstr ""
 "O objeto engine_params é descompactado na chamada "
 "sqlalchemy.create_engine."
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, fuzzy, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -11102,6 +11307,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr "A função para usar quando agregar pontos em grupos"
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -11136,26 +11344,13 @@ msgstr "O nome do host oferecido não pode ser resolvido."
 msgid "The id of the active chart"
 msgstr "O id do gráfico ativo"
 
-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'"
+#, fuzzy
+msgid "The layer attribution"
+msgstr "Atributos de formulário relacionados ao tempo"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr "O limite inferior da faixa de limite da Isoband"
 
-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"
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -11199,6 +11394,19 @@ msgstr ""
 "mostrados sejam o total de 7 períodos. Isso ocultará o \"ramp up\" que "
 "ocorre nos primeiros 7 períodos"
 
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "O valor máximo de métricas. Trata-se de uma configuração opcional"
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Nome da coluna id"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 #, fuzzy
 msgid "The name of the rule must be unique"
 msgstr "O nome deve ser único"
@@ -11450,8 +11658,11 @@ msgid ""
 "interpretation e.g. 1, 1.0, or \"1\" (compatible with Python's float() "
 "function)."
 msgstr ""
-"O resultado desta consulta deve ser um valor capaz de ser numérico "
-"ex. 1, 1.0 ou \"1\" (compatível com a função float() do Python)."
+"O resultado desta consulta deve ser um valor capaz de ser numérico ex. 1,"
+" 1.0 ou \"1\" (compatível com a função float() do Python)."
+
+msgid "The result size exceeds the allowed limit."
+msgstr ""
 
 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."
@@ -11472,8 +11683,8 @@ msgid ""
 "The row limit set for the chart was reached. The chart may show partial "
 "data."
 msgstr ""
-"O limite de linhas definido para o gráfico foi atingido. O gráfico pode mostrar dados "
-"parciais."
+"O limite de linhas definido para o gráfico foi atingido. O gráfico pode "
+"mostrar dados parciais."
 
 #, python-format
 msgid ""
@@ -11498,14 +11709,20 @@ msgid "The schema was deleted or renamed in the database."
 msgstr "O esquema foi excluído ou renomeado no banco de dados."
 
 msgid "The screenshot could not be downloaded. Please, try again later."
-msgstr "A captura de tela não pôde ser baixada. Por favor, tente novamente mais tarde."
+msgstr ""
+"A captura de tela não pôde ser baixada. Por favor, tente novamente mais "
+"tarde."
+
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "O relatório foi criado"
 
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr "A captura de tela está sendo gerada. Por favor, não saia da página."
 
-
-msgid "The screenshot is now being downloaded."
-msgstr ""
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "Mostrar valores de série sobre o gráfico"
 
 #, fuzzy
 msgid "The size of each cell in meters"
@@ -11514,6 +11731,9 @@ msgstr "O tamanho da célula quadrada, em pixels"
 msgid "The size of the square cell, in pixels"
 msgstr "O tamanho da célula quadrada, em pixels"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 #, fuzzy
 msgid "The submitted payload failed validation."
 msgstr "O payload enviado tem o esquema incorreto."
@@ -11529,8 +11749,8 @@ msgid ""
 "The table \"%(table)s\" does not exist. A valid table must be used to run"
 " this query."
 msgstr ""
-"A tabela \"%(table)s\" não existe. Uma tabela válida deve ser usada para"
-" executar essa consulta."
+"A tabela \"%(table)s\" não existe. Uma tabela válida deve ser usada para "
+"executar essa consulta."
 
 #, python-format
 msgid ""
@@ -11540,14 +11760,6 @@ msgstr ""
 "A tabela \"%(table_name)s\" não existe. Uma tabela válida deve ser usada "
 "para executar essa consulta."
 
-msgid ""
-"The table was created. As part of this two-phase configuration process, "
-"you should now click the edit button by the new table to configure it."
-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."
-
 msgid "The table was deleted or renamed in the database."
 msgstr "A tabela foi excluída ou renomeada no banco de dados."
 
@@ -11615,6 +11827,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr "A unidade de tempo usada para o agrupamento de blocos"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "Adicione o nome do gráfico"
+
 msgid "The type of visualization to display"
 msgstr "O tipo de visualização para exibir"
 
@@ -11637,6 +11853,14 @@ msgstr "O nome de usuário \"%(username)s\" não existe."
 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."
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "Choose the position of the legend"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "Mostrar o valor na parte superior da barra"
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "O modo como os ticks são dispostos no eixo X"
 
@@ -11644,6 +11868,13 @@ msgstr "O modo como os ticks são dispostos no eixo X"
 msgid "The width of the Isoline in pixels"
 msgstr "A largura das linhas"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "A largura das linhas"
+
 msgid "The width of the lines"
 msgstr "A largura das linhas"
 
@@ -11660,9 +11891,6 @@ msgstr "Não há gráficos adicionados a esse painel"
 msgid "There are no components added to this tab"
 msgstr "Não há componentes adicionados a essa aba"
 
-msgid "There are no databases available"
-msgstr "Não há bancos de dados disponíveis"
-
 msgid "There are no filters in this dashboard."
 msgstr "Não há filtros neste painel."
 
@@ -11676,6 +11904,10 @@ msgstr ""
 "Há um erro de sintaxe na consulta SQL. Talvez tenha havido um erro de "
 "ortografia ou de digitação."
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "O tipo de visualização para exibir"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11704,6 +11936,10 @@ msgstr "Houve um erro ao buscar o status de favorito: %s"
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Houve um erro ao buscar o status de favorito: %s"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Ocorreu um erro ao carregar os esquemas"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "Ocorreu um erro ao carregar as tabelas"
@@ -11721,6 +11957,10 @@ msgstr "Ocorreu um erro ao carregar os esquemas"
 msgid "There was an error loading the tables"
 msgstr "Ocorreu um erro ao carregar as tabelas"
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr "Desculpe, houve um erro ao salvar este painel: %s"
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr "Ocorreu um erro ao salvar o status de favorito: %s"
@@ -11728,6 +11968,10 @@ msgstr "Ocorreu um erro ao salvar o status de favorito: %s"
 msgid "There was an error with your request"
 msgstr "Houve um erro em sua solicitação"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Houve um problema ao excluir: %s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "Houve um problema ao excluir %s: %s"
@@ -11812,28 +12056,10 @@ msgstr "Houve um problema ao visualizar a consulta selecionada %s"
 msgid "There was an issue previewing the selected query. %s"
 msgstr "Houve um problema ao visualizar a consulta selecionada. %s"
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr ""
-"Há um loop em seu Sankey, forneça uma árvore. Aqui está um link "
-"defeituoso: {}"
-
 #, fuzzy
 msgid "These are the datasets this filter will be applied to."
 msgstr "Essas são as tabelas às quais esse filtro será aplicado."
 
-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."
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11851,12 +12077,20 @@ msgstr "Essa ação excluirá permanentemente %s."
 msgid "This action will permanently delete the layer."
 msgstr "Essa ação excluirá permanentemente a camada."
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "Essa ação excluirá permanentemente a camada."
+
 msgid "This action will permanently delete the saved query."
 msgstr "Essa ação excluirá permanentemente a consulta salva."
 
 msgid "This action will permanently delete the template."
 msgstr "Essa ação excluirá permanentemente o modelo."
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "Essa ação excluirá permanentemente a camada."
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11891,14 +12125,6 @@ msgstr ""
 "Não há suporte para esse tipo de gráfico quando se usa uma consulta não "
 "salva como fonte de gráfico."
 
-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"
-
 msgid "This column might be incompatible with current dataset"
 msgstr "Essa coluna pode ser incompatível com o conjunto de dados atual"
 
@@ -11977,6 +12203,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr "Este painel foi salvo com sucesso."
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 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 "
@@ -12000,6 +12232,9 @@ msgstr "Esse conjunto de dados não é usado para alimentar nenhum gráfico."
 msgid "This defines the element to be plotted on the chart"
 msgstr "Isso define o elemento a ser plotado no gráfico"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -12011,16 +12246,8 @@ 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 ""
-"Este campo é usado como um identificador exclusivo para anexar a métrica aos gráficos."
-" Também é usado como alias na consulta SQL."
-
-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."
+"Este campo é usado como um identificador exclusivo para anexar a métrica "
+"aos gráficos. Também é usado como alias na consulta SQL."
 
 msgid "This filter might be incompatible with current dataset"
 msgstr "Esse filtro pode ser incompatível com o conjunto de dados atual"
@@ -12061,16 +12288,6 @@ msgstr "Este componente markdown tem um erro. Reverta suas alterações recentes
 msgid "This may be triggered by:"
 msgstr "Isso pode ser provocado por:"
 
-#, 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)."
-
 msgid "This metric might be incompatible with current dataset"
 msgstr "Essa métrica pode ser incompatível com o conjunto de dados atual"
 
@@ -12081,8 +12298,8 @@ msgid ""
 "This page is intended to be embedded in an iframe, but it looks like that"
 " is not the case."
 msgstr ""
-"Esta página foi projetada para ser incorporada em um iframe, mas é assim"
-" não é o caso."
+"Esta página foi projetada para ser incorporada em um iframe, mas é assim "
+"não é o caso."
 
 msgid ""
 "This section allows you to configure how to use the slice\n"
@@ -12121,6 +12338,9 @@ msgstr ""
 "Essa tabela já tem um conjunto de dados associado a ela. Você só pode "
 "associar um conjunto de dados a uma tabela."
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr "Esse valor deve ser maior do que o valor-alvo esquerdo"
 
@@ -12144,9 +12364,9 @@ msgid ""
 "to main columns for increase and decrease. Basic conditional formatting "
 "can be overwritten by conditional formatting below."
 msgstr ""
-"Isso será aplicado a toda a tabela. Serão adicionadas setas (↑ e ↓) "
-"para colunas principais para aumentar e diminuir. Formatação condicional básica "
-"pode ​​ser substituído pela formatação condicional abaixo."
+"Isso será aplicado a toda a tabela. Serão adicionadas setas (↑ e ↓) para "
+"colunas principais para aumentar e diminuir. Formatação condicional "
+"básica pode ​​ser substituído pela formatação condicional abaixo."
 
 msgid "This will remove your current embed configuration."
 msgstr "Isso removerá sua configuração de incorporação atual."
@@ -12202,9 +12422,6 @@ msgstr "Relação de tempo"
 msgid "Time Series"
 msgstr "Séries temporais"
 
-msgid "Time Series - Bar Chart"
-msgstr "Série temporal - Gráfico de barras"
-
 msgid "Time Series - Line Chart"
 msgstr "Série temporal - Gráfico de linhas"
 
@@ -12220,9 +12437,6 @@ msgstr "Séries temporais - Variação percentual"
 msgid "Time Series - Period Pivot"
 msgstr "Série temporal - Pivô de período"
 
-msgid "Time Series - Stacked"
-msgstr "Séries temporais - empilhadas"
-
 msgid "Time Series Options"
 msgstr "Opções de séries temporais"
 
@@ -12316,15 +12530,6 @@ msgstr ""
 "A cadeia de tempo é ambígua. Especifique [%(human_readable)s antes] ou "
 "[%(human_readable)s depois]."
 
-msgid "Time-series Area Chart (legacy)"
-msgstr "Gráfico de área (legado)"
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Gráfico de barras de séries temporais (legado)"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr "Gráfico de linhas (herdado)"
-
 msgid "Time-series Percent Change"
 msgstr "Variação percentual da série temporal"
 
@@ -12343,9 +12548,6 @@ msgstr "Formato de carimbo de data/hora"
 msgid "Timezone"
 msgstr "Fuso horário"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Deslocamento de fuso horário (em horas) para essa fonte de dados"
-
 msgid "Timezone selector"
 msgstr "Seletor de fuso horário"
 
@@ -12364,6 +12566,11 @@ msgstr "O título é obrigatório"
 msgid "Title or Slug"
 msgstr "Título ou Slug"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "Para filtrar em uma métrica, use a aba SQL personalizado."
 
@@ -12407,6 +12614,10 @@ msgstr "Total (%(aggfunc)s)"
 msgid "Total (%(aggregatorName)s)"
 msgstr "Total (%(aggregatorName)s)"
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "Total: %s"
+
 msgid "Total value"
 msgstr "Valor total"
 
@@ -12521,9 +12732,6 @@ msgstr "Digite um valor aqui"
 msgid "Type is required"
 msgstr "O tipo é obrigatório"
 
-msgid "Type of Google Sheets allowed"
-msgstr "Tipo de Planilhas Google permitido"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "Tipo de comparação, diferença de valor ou porcentagem"
 
@@ -12613,9 +12821,15 @@ msgstr ""
 "Superset tentará novamente mais tarde. Entre em contato com o "
 "administrador se o problema persistir."
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr "Não foi possível recuperar as cores do painel"
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "Indefinido"
 
@@ -12648,6 +12862,10 @@ msgstr "Nenhuma expressão salva foi encontrada"
 msgid "Unexpected time range: %(error)s"
 msgstr "Intervalo de tempo inesperado: %(error)s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "desfazer"
+
 msgid "Unknown"
 msgstr "Desconhecido"
 
@@ -12686,6 +12904,10 @@ msgstr "ícone de tipo desconhecido"
 msgid "Unknown value"
 msgstr "Valor desconhecido"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "em execução"
+
 #, 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"
@@ -12749,9 +12971,6 @@ msgstr "Carregar arquivo colunar"
 msgid "Upload Columnar file to database"
 msgstr "Carregar arquivo colunar no banco de dados"
 
-msgid "Upload Credentials"
-msgstr "Carregar credenciais"
-
 msgid "Upload Enabled"
 msgstr "Upload habilitado"
 
@@ -12774,6 +12993,10 @@ msgstr "Carregar arquivo no banco de dados"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr "Suba um arquivo com extensão válida. Válido: [%s]"
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Carregar credenciais"
+
 msgid "Upload file to database"
 msgstr "Carregar arquivo no banco de dados"
 
@@ -12831,14 +13054,15 @@ 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]"
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "Executar consulta"
+
 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"
 
-msgid "Use legacy datasource editor"
-msgstr "Usar o editor de fonte de dados herdado"
-
 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"
 
@@ -12848,13 +13072,6 @@ msgstr "Use apenas um único valor."
 msgid "Use the Advanced Analytics options below"
 msgstr "Use as opções de análise avançada abaixo"
 
-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."
-
 msgid "Use the edit button to change this field"
 msgstr "Use o botão de edição para alterar esse campo"
 
@@ -12898,9 +13115,23 @@ msgstr "O usuário deve selecionar um valor antes de aplicar o filtro"
 msgid "User query"
 msgstr "Consulta do usuário"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "Nome de usuário"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "O nome é obrigatório"
+
+#, fuzzy
+msgid "Users"
+msgstr "série"
+
 #, fuzzy
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
@@ -12932,6 +13163,10 @@ msgstr ""
 " entender os estágios de um valor. Útil para funis e pipelines de "
 "visualização de vários estágios e vários grupos."
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "Valor"
 
@@ -12958,9 +13193,16 @@ msgstr "Diferença de valor entre os períodos de tempo"
 msgid "Value format"
 msgstr "Formato do valor"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "O valor deve ser maior que 0"
+
 msgid "Value is required"
 msgstr "O valor é necessário"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "O valor deve ser maior que 0"
@@ -12981,12 +13223,6 @@ msgstr ""
 "Os valores selecionados em outros filtros afetarão as opções de filtro "
 "para mostrar apenas os valores relevantes"
 
-msgid "Vehicle Types"
-msgstr "Tipos de veículos"
-
-msgid "Verbose Name"
-msgstr "Nome detalhado"
-
 msgid "Version"
 msgstr "Versão"
 
@@ -12999,9 +13235,6 @@ msgstr "Vertical"
 msgid "Vertical (Left)"
 msgstr "Vertical (esquerda)"
 
-msgid "Video game consoles"
-msgstr "Consoles de videogame"
-
 msgid "View"
 msgstr "Ver"
 
@@ -13043,9 +13276,6 @@ msgstr "Virtual"
 msgid "Virtual (SQL)"
 msgstr "Virtual (SQL)"
 
-msgid "Virtual dataset"
-msgstr "Conjunto de dados virtuais"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "A consulta do conjunto de dados virtual não pode estar vazia"
 
@@ -13092,14 +13322,6 @@ msgstr ""
 "Visualize dados geoespaciais como edifícios, paisagens ou objetos em 3D "
 "na visualização em grade."
 
-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."
-
 msgid ""
 "Visualize multiple levels of hierarchy using a familiar tree-like "
 "structure."
@@ -13166,17 +13388,6 @@ msgstr ""
 "gráfico. Esse gráfico está sendo descontinuado e, em vez dele, "
 "recomendamos o uso do gráfico de série temporal."
 
-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."
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -13193,6 +13404,12 @@ msgstr "Tipo de visualização"
 msgid "WED"
 msgstr "QUA"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, fuzzy, python-format
 msgid "Waiting on %s"
 msgstr "Esperando %s"
@@ -13207,9 +13424,6 @@ msgstr "Deseja adicionar um novo banco de dados?"
 msgid "Warning"
 msgstr "Advertência"
 
-msgid "Warning Message"
-msgstr "Mensagem de aviso"
-
 msgid "Warning!"
 msgstr "Atenção!"
 
@@ -13362,13 +13576,6 @@ msgstr ""
 "Quando uma métrica secundária é fornecida, uma escala de cores linear é "
 "usada."
 
-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"
-
 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"
 
@@ -13394,8 +13601,14 @@ msgstr ""
 msgid ""
 "When the secondary temporal columns are filtered, apply the same filter "
 "to the main datetime column."
-msgstr "Quando as colunas temporais secundárias forem filtradas, aplique o mesmo filtro "
-"para a coluna principal de data e hora."
+msgstr ""
+"Quando as colunas temporais secundárias forem filtradas, aplique o mesmo "
+"filtro para a coluna principal de data e hora."
+
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
 
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
@@ -13419,22 +13632,14 @@ msgstr ""
 "Ao usar uma formatação diferente da adaptativa, os rótulos podem se "
 "sobrepor"
 
-msgid "When using this option, default value can’t be set"
-msgstr "Ao usar essa opção, o valor padrão não pode ser definido"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
 
 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"
 
-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"
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-"Se essa coluna está exposta na seção `Filtros` da visualização de "
-"exploração."
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -13481,6 +13686,10 @@ msgstr "Se deve ser exibida uma legenda para o gráfico"
 msgid "Whether to display bubbles on top of countries"
 msgstr "Se deseja exibir bolhas na parte superior dos países"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Se deve ser exibida uma legenda para o gráfico"
+
 msgid "Whether to display the aggregate count"
 msgstr "Se deve ser exibida a contagem agregada"
 
@@ -13490,13 +13699,6 @@ msgstr "Se deseja exibir a tabela de dados interativa"
 msgid "Whether to display the labels."
 msgstr "Se os rótulos devem ser exibidos."
 
-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%."
-
 msgid "Whether to display the legend (toggles)"
 msgstr "Se a legenda deve ser exibida (alterna)"
 
@@ -13512,6 +13714,10 @@ msgstr "Se devem ser exibidos os valores mínimo e máximo do eixo Y"
 msgid "Whether to display the numerical values within the cells"
 msgstr "Se deseja exibir os valores numéricos dentro das células"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Se a porcentagem deve ser incluída na dica de ferramenta"
+
 msgid "Whether to display the stroke"
 msgstr "Se o traço deve ser exibido"
 
@@ -13525,9 +13731,17 @@ msgstr "Se deve ser exibido o registro de data e hora"
 msgid "Whether to display the tooltip labels."
 msgstr "Se os rótulos devem ser exibidos."
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Se deseja exibir os valores numéricos dentro das células"
+
 msgid "Whether to display the trend line"
 msgstr "Se a linha de tendência deve ser exibida"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Se deve ser exibida a contagem agregada"
+
 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."
 
@@ -13554,38 +13768,17 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr "Se a grade deve ser 3D"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "Se o histograma deve ser cumulativo"
-
-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"
-
-msgid "Whether to normalize the histogram"
-msgstr "Se deve normalizar o histograma"
-
 msgid "Whether to populate autocomplete filters options"
 msgstr "Se as opções de filtros de preenchimento automático devem ser preenchidas"
 
-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"
-
 #, fuzzy
 msgid "Whether to show as Nightingale chart."
 msgstr "Se deve mostrar o progresso do gráfico do medidor"
 
+#, fuzzy
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar 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."
@@ -13608,11 +13801,6 @@ msgstr "Se a classificação deve ser ascendente ou descendente no eixo base."
 msgid "Whether to sort descending or ascending"
 msgstr "Se a classificação deve ser descendente ou ascendente"
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr ""
-"Se a classificação será decrescente ou crescente se houver um limite de "
-"série"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 "Se os resultados devem ser classificados pela métrica selecionada em "
@@ -13674,9 +13862,6 @@ msgstr "Escreva uma descrição para sua consulta"
 msgid "Write a handlebars template to render the data"
 msgstr "Escreva um modelo de guidão para renderizar os dados"
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "MARGEM INFERIOR DO TÍTULO DO EIXO X"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "MARGEM DO TÍTULO DO EIXO X"
 
@@ -13696,6 +13881,10 @@ msgstr "Rótulo do Eixo X"
 msgid "X Axis Title"
 msgstr "Título do Eixo X"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Margem do Título do Eixo Y"
+
 msgid "X Log Scale"
 msgstr "Escala X Log"
 
@@ -13717,6 +13906,9 @@ msgstr "Eixo X"
 msgid "XScale Interval"
 msgstr "Intervalo XScale"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Y 2 limites"
 
@@ -13845,6 +14037,19 @@ msgstr ""
 "pode fazer com que você perca parte do seu trabalho. Tem certeza de que "
 "deseja substituir?"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr "É possível"
 
@@ -13928,9 +14133,6 @@ msgstr "Você não tem acesso a esse conjunto de dados."
 msgid "You don't have access to this embedded dashboard config."
 msgstr "Você não tem acesso a essa configuração de painel incorporado."
 
-msgid "You don't have any favorites yet!"
-msgstr "Você ainda não tem nenhum favorito!"
-
 msgid "You don't have permission to modify the value."
 msgstr "Você não tem permissão para modificar o valor."
 
@@ -14015,6 +14217,9 @@ msgstr "Seu gráfico não está atualizado"
 msgid "Your chart is ready to go!"
 msgstr "Seu gráfico está pronto para ser usado!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 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."
 
@@ -14043,6 +14248,9 @@ msgstr "Sua consulta foi salva"
 msgid "Your query was updated"
 msgstr "Sua consulta foi atualizada"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "Não foi possível excluir seu relatório"
 
@@ -14055,6 +14263,10 @@ msgstr "Imputação zero"
 msgid "Zoom"
 msgstr "Ampliar"
 
+#, fuzzy
+msgid "Zoom level"
+msgstr "área de zoom"
+
 msgid "Zoom level of the map"
 msgstr "Nível de zoom do mapa"
 
@@ -14180,9 +14392,6 @@ msgstr "em"
 msgid "auto"
 msgstr "automático"
 
-msgid "auto (Smooth)"
-msgstr "automático (Suave)"
-
 msgid "background"
 msgstr "fundo"
 
@@ -14229,9 +14438,6 @@ msgstr "mudança"
 msgid "chart"
 msgstr "gráfico"
 
-msgid "charts"
-msgstr "gráficos"
-
 msgid "choose WHERE or HAVING..."
 msgstr "escolha WHERE ou HAVING..."
 
@@ -14241,6 +14447,10 @@ msgstr "limpar todos os filtros"
 msgid "click here"
 msgstr "clique aqui"
 
+#, fuzzy
+msgid "close"
+msgstr "Fechar"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr "código ISO 3166-1 alpha-2 (cca2)"
 
@@ -14294,15 +14504,9 @@ msgstr "css_template"
 msgid "cumsum"
 msgstr "soma acumulada"
 
-msgid "cumulative"
-msgstr "cumulativo"
-
 msgid "dashboard"
 msgstr "painel"
 
-msgid "dashboards"
-msgstr "painéis"
-
 msgid "database"
 msgstr "banco de dados"
 
@@ -14368,12 +14572,9 @@ msgstr "deckGL"
 msgid "default"
 msgstr "padrão"
 
-msgid "delete"
-msgstr "excluir"
-
 #, fuzzy
 msgid "descendant"
-msgstr descendente"
+msgstr "escendente"
 
 msgid "description"
 msgstr "descrição"
@@ -14384,9 +14585,6 @@ msgstr "desvio"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr "dialect+driver://username:password@host:port/database"
 
-msgid "draft"
-msgstr "rascunho"
-
 msgid "dttm"
 msgstr "dttm"
 
@@ -14428,9 +14626,6 @@ msgstr "ex. world_population"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "ex. xy12345.us-east-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "ex., uma coluna \"user id\""
-
 msgid "edit mode"
 msgstr "modo de edição"
 
@@ -14441,6 +14636,10 @@ msgstr "assunto do email"
 msgid "entries"
 msgstr "entradas"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "entradas"
+
 #, fuzzy
 msgid "error"
 msgstr "erro"
@@ -14509,13 +14708,6 @@ msgstr "aqui"
 msgid "hour"
 msgstr "hora"
 
-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"
-
 msgid "in"
 msgstr "em"
 
@@ -14526,6 +14718,10 @@ msgstr "no modal"
 msgid "invalid email"
 msgstr "Chave de permalink inválida"
 
+#, fuzzy
+msgid "is"
+msgstr "em"
+
 #, fuzzy
 msgid "is expected to be a Mapbox URL"
 msgstr "espera-se que seja um número"
@@ -14536,6 +14732,29 @@ msgstr "espera-se que seja um número"
 msgid "is expected to be an integer"
 msgstr "espera-se que seja um inteiro"
 
+#, fuzzy, python-format
+msgid ""
+"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 ""
+"A base de dados %s está vinculada a %s gráficos que aparecem em %s "
+"painéis, e os usuários têm %s abas do SQL Lab abertas usando essa base de"
+" dados. Vocêtem certeza de que quer continuar? Deletar a base de dados "
+"quebrará essesobjetos."
+
+#, fuzzy, python-format
+msgid ""
+"is linked to %s charts that appear on %s dashboards. Are you sure you "
+"want to continue? Deleting the dataset will break those objects."
+msgstr ""
+"O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s "
+"painéis. Tem certeza que você deseja continuar? A eliminação do conjunto "
+"de dados irá quebrar esses objetos."
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "chave a-z"
 
@@ -14662,18 +14881,9 @@ msgstr "p99"
 msgid "page_size.all"
 msgstr "page_size.all"
 
-msgid "page_size.entries"
-msgstr "page_ size.entries"
-
-msgid "page_size.show"
-msgstr "page_ size.show"
-
 msgid "pending"
 msgstr "pendente"
 
-msgid "percentile (exclusive)"
-msgstr "percentil (exclusivo)"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14684,9 +14894,6 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "estado do permalink não encontrado"
 
-msgid "pixelated (Sharp)"
-msgstr "pixelado (Nítido)"
-
 #, fuzzy
 msgid "pixels"
 msgstr "pixels"
@@ -14694,15 +14901,16 @@ msgstr "pixels"
 msgid "previous calendar month"
 msgstr "mês anterior do calendário"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "ano anterior do calendário"
+
 msgid "previous calendar week"
 msgstr "semana anterior do calendário"
 
 msgid "previous calendar year"
 msgstr "ano anterior do calendário"
 
-msgid "published"
-msgstr "publicado"
-
 msgid "quarter"
 msgstr "trimestre"
 
@@ -14721,9 +14929,6 @@ msgstr "reiniciar"
 msgid "recent"
 msgstr "recente"
 
-msgid "recents"
-msgstr "recentes"
-
 #, fuzzy
 msgid "recipients"
 msgstr "recentes"
@@ -14747,8 +14952,9 @@ msgstr "Segurança em nível de linha"
 msgid "running"
 msgstr "em execução"
 
-msgid "saved queries"
-msgstr "consultas salvas"
+#, fuzzy
+msgid "save"
+msgstr "Salvar"
 
 msgid "seconds"
 msgstr "segundos"
@@ -14761,14 +14967,10 @@ msgid ""
 " 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 "
+"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"
 
-#, fuzzy
-msgid "shift start date"
-msgstr "trocar data de início"
-
 msgid "sql"
 msgstr "sql"
 
@@ -14825,9 +15027,6 @@ msgstr "ícone de tipo temporal"
 msgid "textarea"
 msgstr "área de texto"
 
-msgid "to"
-msgstr "para"
-
 msgid "top"
 msgstr "superior"
 
@@ -14837,6 +15036,14 @@ msgstr "desfazer"
 msgid "unknown type icon"
 msgstr "ícone de tipo desconhecido"
 
+#, fuzzy
+msgid "unset"
+msgstr "Junho"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "%s atualizado"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14862,9 +15069,6 @@ msgstr "variação"
 msgid "view instructions"
 msgstr "exibir instruções"
 
-msgid "virtual"
-msgstr "virtual"
-
 msgid "viz type"
 msgstr "tipo de vis"
 
@@ -14901,3 +15105,6 @@ msgstr "ano"
 
 msgid "zoom area"
 msgstr "área de zoom"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/ru/LC_MESSAGES/messages.po b/superset/translations/ru/LC_MESSAGES/messages.po
index a4e5996d0a3c31155d6e648eddd614619a3b9619..b2736fe3c99e3ee2ddb130a711fc28a6bd57412c 100644
--- a/superset/translations/ru/LC_MESSAGES/messages.po
+++ b/superset/translations/ru/LC_MESSAGES/messages.po
@@ -17,17 +17,17 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2024-07-03 22:19+0400\n"
 "Last-Translator: Daniel Checheta\n"
 "Language: ru\n"
 "Language-Team: Russian <>\n"
 "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);\n"
+"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -82,12 +82,12 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
-"\n"
-"            Ошибка: %(text)s\n"
-"            "
 
 msgid " (excluded)"
 msgstr " (исключено)"
@@ -105,9 +105,17 @@ msgstr " дашборд или "
 msgid " a new one"
 msgstr " новый"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr ", который должен придерживаться "
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr " исходный код sandboxed парсера Superset"
 
@@ -177,15 +185,9 @@ msgstr ""
 "%(dialect)s не может использоваться в качестве источника данных по "
 "соображениям безопасности"
 
-#, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
-msgstr ""
-"%(message)s\n"
-"Возможные причины: \n"
-"%(issues)s"
+#, fuzzy, python-format
+msgid "%(label)s file"
+msgstr "Файл %(type)s"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -199,22 +201,6 @@ msgstr "%(name)s.pdf"
 msgid "%(object)s does not exist in this database."
 msgstr "%(object)s не существует в этой базе данных"
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr "%(other)s диаграмм появятся здесь"
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr "%(other)s дашбордов появятся здесь"
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr "%(other)s недавних появятся здесь"
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s сохраненных запросов появятся здесь"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr "%(prefix)s %(title)s"
@@ -230,16 +216,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr "Получено строк: %(rows)d"
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-"%(subtitle)s\n"
-"Возможные причины:\n"
-" %(issue)s"
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -253,10 +229,6 @@ msgstr[2] ""
 "%(firstSuggestions)s или %(lastSuggestion)s вместо "
 "«%(undefinedParameter)s»?"
 
-#, python-format
-msgid "%(type)s File"
-msgstr "Файл %(type)s"
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -311,10 +283,6 @@ msgstr "Агрегатных функций: %s"
 msgid "%s column(s)"
 msgstr "Столбцов: %s"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr "%s неподходящих элементов было скрыто"
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -423,6 +391,10 @@ msgstr ""
 "сохранены, если вы очистите куки или смените браузер.\n"
 "\n"
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0 выбрано"
 
@@ -483,6 +455,13 @@ msgstr "Годовая частота (начало года)"
 msgid "10 minute"
 msgstr "10 минут"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 процентиль"
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr "104 недели"
 
@@ -579,6 +558,10 @@ msgstr "5 секунд"
 msgid "5 seconds"
 msgstr "5 секунд"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 процентиль"
+
 msgid "52 weeks"
 msgstr "52 недели"
 
@@ -645,11 +628,6 @@ msgstr ">= (больше или равно)"
 msgid "A Big Number"
 msgstr "Карточка"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr ""
-"Выберите из выпадающего списка имена столбцов, которые должны быть "
-"обработаны как даты"
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr "Разделенный запятыми список схем, в которые можно загружать файлы."
 
@@ -659,6 +637,9 @@ msgstr "При подключении через туннель SSH нужно 
 msgid "A database with the same name already exists."
 msgstr "База данных с таким же именем уже существует"
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -746,14 +727,6 @@ msgid ""
 "templating syntax"
 msgstr "Набор параметров, доступных в запросе через шаблоны Jinja"
 
-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 "Превышен таймаут исполнения запроса"
 
@@ -855,33 +828,41 @@ msgstr "получатели"
 msgid "Add CSS template"
 msgstr "Добавить шаблоны CSS"
 
-msgid "Add Chart"
-msgstr "Добавить диаграмму"
-
-msgid "Add Column"
-msgstr "Добавить столбец"
-
 msgid "Add Dashboard"
 msgstr "Добавить дашборд"
 
-msgid "Add Database"
-msgstr "Добавить базу данных"
+#, fuzzy
+msgid "Add Divider"
+msgstr "Разделитель"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Добавить фильтр"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Скрыть слой"
 
 msgid "Add Log"
 msgstr "Добавить запись"
 
-msgid "Add Metric"
-msgstr "Добавить меру"
-
 msgid "Add Report"
 msgstr "Добавить отчет"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "Исключенные роли"
+
 msgid "Add Rule"
 msgstr "Добавить правило"
 
 msgid "Add Tag"
 msgstr "Добавить тег"
 
+#, fuzzy
+msgid "Add User"
+msgstr "Добавить правило"
+
 msgid "Add a Plugin"
 msgstr "Добавить плагин"
 
@@ -962,9 +943,6 @@ msgstr ""
 "ограничив его некоторой выборкой из всего набора данных или показывать не"
 " все возможные варианты в фильтре."
 
-msgid "Add filters and dividers"
-msgstr "Добавить фильтры и разделители"
-
 msgid "Add item"
 msgstr "Добавить запись"
 
@@ -980,6 +958,10 @@ msgstr "Окрашивать по условию"
 msgid "Add new formatter"
 msgstr "Новое условие"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Добавить и изменить фильтры"
+
 msgid "Add required control values to preview chart"
 msgstr "Добавьте обязательные значения для предпросмотра диаграммы"
 
@@ -1001,12 +983,16 @@ msgstr "Задайте имя дашборда"
 msgid "Add to dashboard"
 msgstr "Добавить на дашборд"
 
-msgid "Add/Edit Filters"
-msgstr "Редактировать фильтры"
-
 msgid "Added"
 msgstr "Добавлено"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -1023,9 +1009,6 @@ msgstr "Возможно, потребуются дополнительные п
 msgid "Additional information"
 msgstr "Дополнительная информация"
 
-msgid "Additional metadata"
-msgstr "Дополнительные метаданные"
-
 msgid "Additional padding for legend."
 msgstr "Дополнительный отступ для легенды"
 
@@ -1095,6 +1078,14 @@ msgstr "Расширенный тип данных"
 msgid "Advanced-Analytics"
 msgstr "Продвинутая аналитика"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Выберите диаграммы"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Выбрать дашборд"
+
 msgid "After"
 msgstr "После"
 
@@ -1131,6 +1122,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "Агрегация"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "Агрегация"
+
 msgid "Aggregation function"
 msgstr "Функция агрегирования"
 
@@ -1212,6 +1207,10 @@ msgstr "Выровнять +/-"
 msgid "All"
 msgstr "Все"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Столбцы таблицы"
+
 msgid "All Text"
 msgstr "Весь текст"
 
@@ -1227,26 +1226,14 @@ msgstr "Все фильтры"
 msgid "All panels"
 msgstr "Все панели"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr "Фильтр будет применен ко всем панелям с этим столбцом"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "Разрешить CREATE TABLE AS"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Разрешить CREATE TABLE AS в SQL Lab"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "Разрешить CREATE VIEW AS"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Разрешить CREATE VIEW AS в SQL Lab"
-
-msgid "Allow Csv Upload"
-msgstr "Разрешить загрузку CSV"
-
-msgid "Allow DML"
-msgstr "Разрешить DML"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr "Разрешить смену каталогов"
@@ -1265,6 +1252,10 @@ msgstr "Разрешить менять местами столбцы"
 msgid "Allow creation of new tables based on queries"
 msgstr "Разрешить создание новых таблиц на основе запросов"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "Разрешить создание новых представлений на основе запросов"
+
 msgid "Allow creation of new views based on queries"
 msgstr "Разрешить создание новых представлений на основе запросов"
 
@@ -1282,32 +1273,24 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr "Разрешить загрузку файлов в базу данных"
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-"Разрешить управление базой данных, используя запросы UPDATE, DELETE, "
-"CREATE и т.п."
-
 msgid "Allow node selections"
 msgstr "Разрешить выбор вершин"
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr ""
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "Разрешить изучение этой базы данных"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "Разрешить запросы к этой базе данных в SQL Lab"
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
-msgstr ""
-"Разрешить управление базой данных, используя запросы UPDATE, DELETE, "
-"CREATE и т.п. в SQL Lab"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "Разрешенные домены (разделить запятыми)"
 
@@ -1353,6 +1336,10 @@ msgstr "Движок должен быть указан при передаче
 msgid "An error has occurred"
 msgstr "Произошла ошибка"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Произошла ошибка при получении датасетов: %s"
+
 msgid "An error occurred"
 msgstr "Произошла ошибка"
 
@@ -1362,6 +1349,10 @@ msgstr "Произошла ошибка при сохранении датасе
 msgid "An error occurred when running alert query"
 msgstr "Произошла ошибка при запуске запроса, возвращающего оповещение"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Произошла ошибка доступа к значению"
+
 msgid "An error occurred while accessing the value."
 msgstr "Произошла ошибка доступа к значению"
 
@@ -1376,6 +1367,10 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr "Произошла ошибка при создании %sов: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Произошла ошибка при создании значения"
+
 msgid "An error occurred while creating the data source"
 msgstr "Произошла ошибка при создании источника данных"
 
@@ -1520,6 +1515,10 @@ msgstr ""
 "изменения, пожалуйста, сохраните ваш запрос через кнопку \"Сохранить "
 "как\"."
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Произошла ошибка при получении: %s: %s"
+
 msgid "An error occurred while updating the value."
 msgstr "Произошла ошибка при обновлении значения"
 
@@ -1707,12 +1706,6 @@ msgstr "Применить"
 msgid "Apply metrics on"
 msgstr "Применить меры к"
 
-msgid "Apply to all panels"
-msgstr "Применить ко всем панелям"
-
-msgid "Apply to specific panels"
-msgstr "Применить к выбранным панелям"
-
 msgid "April"
 msgstr "Апрель"
 
@@ -1754,6 +1747,10 @@ msgstr "Вы уверены, что хотите удалить выбранны
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "Вы уверены, что хотите удалить выбранные запросы?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "Вы уверены, что хотите удалить выбранные слои?"
+
 #, fuzzy
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "Вы уверены, что хотите удалить выбранные слои?"
@@ -1764,6 +1761,10 @@ msgstr "Вы уверены, что хотите удалить выбранны
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "Вы уверены, что хотите удалить выбранные шаблоны?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "Вы уверены, что хотите удалить выбранные запросы?"
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "Вы уверены, что хотите перезаписать этот датасет?"
 
@@ -1804,15 +1805,13 @@ msgstr "Задайте набор параметров в формате"
 msgid "Assist"
 msgstr "Акцент"
 
-msgid "Associated Charts"
-msgstr "Связанные диаграммы"
-
-msgid "Async Execution"
-msgstr "Асинхронное выполнение"
-
 msgid "Asynchronous query execution"
 msgstr "Асинхронное выполнение запросов"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "Распределение"
+
 msgid "August"
 msgstr "Август"
 
@@ -1837,12 +1836,26 @@ msgstr "Предикат запроса автозаполнения"
 msgid "Automatic Color"
 msgstr "Автоматический цвет"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Настроить столбцы"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Настроить столбцы"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "Доступные режимы сортировки:"
 
 msgid "Average"
 msgstr "Среднее"
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr "Среднее"
 
@@ -1880,6 +1893,9 @@ msgstr "Вернуться ко всем"
 msgid "Backend"
 msgstr "Драйвер"
 
+msgid "Background Color"
+msgstr ""
+
 msgid "Backward values"
 msgstr "Предыдущие значения"
 
@@ -1895,9 +1911,6 @@ msgstr "Гистограмма"
 msgid "Bar Chart"
 msgstr "Столбчатая диаграмма"
 
-msgid "Bar Chart (legacy)"
-msgstr "Столбчатая диаграмма (устарело)"
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
 "Столбчатые диаграммы используются для отображения показателей в виде "
@@ -1912,10 +1925,25 @@ msgstr "Направление столбцов"
 msgid "Base"
 msgstr "Базовый"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Порт базы данных"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Высота диаграммы"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr "Стиль базового слоя карты. Подробнее в документации Mapbox: %s"
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Толщина линии"
+
 msgid "Based on a metric"
 msgstr "На основе меры"
 
@@ -1937,9 +1965,6 @@ msgstr "Основная информация"
 msgid "Batch editing %d filters:"
 msgstr "Множественное редактирование фильтров: %d"
 
-msgid "Battery level over time"
-msgstr "Уровень заряда батареи с течением времени"
-
 msgid "Be careful."
 msgstr "Будьте осторожны."
 
@@ -1961,6 +1986,14 @@ msgstr "Карточка с линией тренда"
 msgid "Bins"
 msgstr "Бины"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Цвета рядов"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Толщина ребра"
+
 msgid "Bottom"
 msgstr "Снизу"
 
@@ -2086,9 +2119,6 @@ msgstr "Диаграмма-шкала"
 msgid "Business"
 msgstr "Бизнес"
 
-msgid "Business Data Type"
-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"
@@ -2159,8 +2189,9 @@ msgstr "CSS-шаблоны"
 msgid "CSS templates could not be deleted."
 msgstr "Не удалось удалить CSS-шаблоны"
 
-msgid "CSV Upload"
-msgstr "Загрузка CSV"
+#, fuzzy
+msgid "CSV upload"
+msgstr "Загрузка из файла"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "СХЕМА CTAS & CVAS"
@@ -2174,8 +2205,9 @@ msgstr ""
 "единственным SELECT. Пожалуйста, убедитесь, что запрос содержит только "
 "один SELECT и выполните его заново."
 
-msgid "CTAS Schema"
-msgstr "Схема CTAS"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "Пользовательский"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2192,9 +2224,6 @@ msgstr "CVAS (CREATE VIEW AS SELECT) содержит больше одного
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "CVAS (CREATE VIEW AS SELECT) не является SELECT-запросом"
 
-msgid "Cache Timeout"
-msgstr "Время жизни кэша"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Время жизни кэша (секунды)"
 
@@ -2239,9 +2268,6 @@ msgstr "Невозможно перенести вкладку верхнего
 msgid "Can select multiple values"
 msgstr "Можно выбрать несколько значений"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr ""
-
 msgid "Cancel"
 msgstr "Отменить"
 
@@ -2254,6 +2280,10 @@ msgstr "Нет доступа к запросу"
 msgid "Cannot delete a database that has datasets attached"
 msgstr "Невозможно удалить базу данных, для которой настроены датасеты"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 #, fuzzy
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr "Для туннеля SSH нельзя указывать несколько пар логин-пароль"
@@ -2265,6 +2295,10 @@ msgstr "Невозможно загрузить фильтр"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "Не удается разобрать временную строку [%(human_readable)s]"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Partition Diagram"
+
 #, fuzzy
 msgid "Catalog"
 msgstr "тег"
@@ -2342,13 +2376,14 @@ msgstr "Изменить порядок столбцов"
 msgid "Change order of rows."
 msgstr "Изменить порядок строк"
 
-msgid "Changed By"
-msgstr "Кем изменено"
-
 #, fuzzy
 msgid "Changed by"
 msgstr "Кем изменено"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "изменение"
+
 msgid "Changes saved."
 msgstr "Изменения сохранены"
 
@@ -2400,9 +2435,6 @@ msgstr "Диаграмма"
 msgid "Chart %(id)s not found"
 msgstr "Диаграмма %(id)s не найдена"
 
-msgid "Chart Cache Timeout"
-msgstr "Время жизни кэша диаграммы"
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr "Данные диаграммы: %s"
@@ -2502,6 +2534,10 @@ msgstr "Параметры диаграммы некорректны"
 msgid "Chart properties updated"
 msgstr "Свойства диаграммы обновлены"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "диаграмм(ы)"
+
 msgid "Chart title"
 msgstr "Заголовок диаграммы"
 
@@ -2551,6 +2587,10 @@ msgstr "[Радиус точки] должен присутствовать в [
 msgid "Choose File"
 msgstr "Выберите файл"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Выберите либо диаграмму, либо дашборд"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Выберите либо диаграмму, либо дашборд"
 
@@ -2572,9 +2612,6 @@ msgstr "Выберите числовой формат"
 msgid "Choose a source"
 msgstr "Выберите источник"
 
-msgid "Choose a source and a target"
-msgstr "Выберите источник и цель"
-
 msgid "Choose a target"
 msgstr "Выберите цель"
 
@@ -2655,9 +2692,6 @@ msgstr "Круглый радар"
 msgid "Circular"
 msgstr "Кольцевой"
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2680,7 +2714,10 @@ msgstr "Очистить все данные"
 msgid "Clear form"
 msgstr "Очистить форму"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 "Нажмите кнопку \"Редактировать фильтры\", чтобы добавить новые фильтры на"
 " дашборд"
@@ -2715,6 +2752,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr ""
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "Нажмите для редактирования метки"
+
 msgid "Click to cancel sorting"
 msgstr "Нажмите для отмены сортировки"
 
@@ -2837,12 +2878,13 @@ msgstr ""
 msgid "Column Configuration"
 msgstr "Свойства столбца"
 
-msgid "Column Data Types"
-msgstr "Типы данных столбцов"
-
 msgid "Column Formatting"
 msgstr "Форматирование столбца(ов)"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Настройки полигона"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2860,9 +2902,6 @@ msgstr "Столбец, содержащий данные о долготе"
 msgid "Column data types"
 msgstr "Тип столбца"
 
-msgid "Column datatype"
-msgstr "Тип столбца"
-
 msgid "Column header tooltip"
 msgstr "Всплывающая подсказка заголовка столбца"
 
@@ -2891,17 +2930,20 @@ msgstr ""
 "Столбец для использования в качестве метки для строки датафрейма. "
 "Оставьте пустым, если индексный столбец отсутствует."
 
-msgid "Columnar Upload"
+#, fuzzy
+msgid "Column type"
+msgstr "Тип столбца"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "Файл столбчатого формата"
 
 msgid "Columns"
 msgstr "Столбцы"
 
-msgid "Columns To Be Parsed as Dates"
-msgstr "Столбцы, которые должны быть интерпретированы как даты"
-
-msgid "Columns To Read"
-msgstr "Столбцы для чтения"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "Столбцов: %s"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2914,6 +2956,10 @@ msgstr "Столбцы отсутствуют в источнике данных
 msgid "Columns subtotal position"
 msgstr "Расположение подытогов для столбцов"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "Столбцы, которые должны быть интерпретированы как даты"
+
 msgid "Columns to calculate distribution across."
 msgstr "Столбцы, по которым нужно посчитать распределение"
 
@@ -2929,6 +2975,10 @@ msgstr "Столбцы для группировки по столбцам"
 msgid "Columns to group by on the rows"
 msgstr "Столбцы для группировки по строкам"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Показать итог по столбцам"
+
 msgid "Combine metrics"
 msgstr "Объединить меры"
 
@@ -2970,17 +3020,6 @@ msgid ""
 "and color."
 msgstr ""
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-
 msgid "Comparison"
 msgstr "Сравнение"
 
@@ -3041,18 +3080,28 @@ msgstr "Настроить область действия фильтра"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "Настройте слой аннотации"
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr "Настройте этот дашборд, чтобы встроить его во внешнее веб-приложение"
 
 msgid "Configure your how you overlay is displayed here."
 msgstr "Настройка отображения слоя аннотации поверх диаграммы"
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Показать пароль."
+
 msgid "Confirm overwrite"
 msgstr "Подтвердить перезапись"
 
 msgid "Confirm save"
 msgstr "Подтвердить сохранение"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "Подключить"
 
@@ -3083,9 +3132,6 @@ msgstr "Сбой подключения. Проверьте его настро
 msgid "Connection failed, please check your connection settings."
 msgstr "Сбой подключения. Проверьте настройки соединения."
 
-msgid "Connection looks good!"
-msgstr "Соединение в порядке!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "Формат контента"
@@ -3124,21 +3170,21 @@ msgstr "Скопировано в буфер обмена"
 msgid "Copy"
 msgstr "Копировать"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "Скопировать выражение SELECT в буфер обмена"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "Скопировать и вставить JSON-данные"
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "Скопировать и вставить файл .json сервисного аккаунта сюда"
-
 msgid "Copy link"
 msgstr "Скопировать ссылку"
 
-msgid "Copy message"
-msgstr "Скопировать сообщение"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Копия %s"
@@ -3155,6 +3201,9 @@ msgstr "Скопировать ссылку на запрос"
 msgid "Copy query link to your clipboard"
 msgstr "Скопировать ссылку на запрос в буфер обмена"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr "Впишите идентификатор аккаунта, с помощью которого нужно подключиться"
 
@@ -3170,6 +3219,10 @@ msgstr "Скопировать в буфер обмена"
 msgid "Copy to clipboard"
 msgstr "Скопировать в буфер обмена"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "Внутренний радиус"
+
 msgid "Correlation"
 msgstr "Корреляция"
 
@@ -3199,6 +3252,9 @@ msgstr "Не удалось загрузить драйвер базы данн
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr "Не удалось обнаружить хост: \"%(host)s\"."
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr "Количество"
 
@@ -3291,6 +3347,9 @@ msgstr "Создание источника данных и добавление
 msgid "Creator"
 msgstr "Автор"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr "Малиновый"
 
@@ -3373,6 +3432,9 @@ msgstr "Пользовательские поля SQL не могут содер
 msgid "Custom color palettes"
 msgstr "Автозаполнение"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 msgid "Custom date"
 msgstr "Пользовательская дата"
 
@@ -3405,9 +3467,6 @@ msgstr "Настройте источник данных, фильтры и ша
 msgid "Cyclic dependency detected"
 msgstr "Обнаружена циклическая зависимость"
 
-msgid "D3 Format"
-msgstr "Формат D3"
-
 msgid "D3 format"
 msgstr "Формат даты/времени"
 
@@ -3469,8 +3528,23 @@ msgstr "Дашборд [%s] был создан и диаграмма [%s] до
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr "Дашборд [{}] был создан и диаграмма [{}] была добавлена на него"
 
-msgid "Dashboard could not be deleted."
-msgstr "Не удалось удалить дашборд"
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "Не удалось обновить дашборд"
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "Не удалось обновить дашборд"
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "Не удалось обновить дашборд"
+
+msgid "Dashboard could not be deleted."
+msgstr "Не удалось удалить дашборд"
 
 msgid "Dashboard could not be updated."
 msgstr "Не удалось обновить дашборд"
@@ -3481,6 +3555,10 @@ msgstr "Дашборд не существует"
 msgid "Dashboard imported"
 msgstr "Дашборд импортирован"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "Не удалось обновить дашборд"
+
 msgid "Dashboard parameters are invalid."
 msgstr "Некорректные параметры дашборда"
 
@@ -3526,9 +3604,6 @@ msgstr "Штрих"
 msgid "Data"
 msgstr "Данные"
 
-msgid "Data Imported"
-msgstr "Данные загружены"
-
 msgid "Data Table"
 msgstr "Таблица"
 
@@ -3556,6 +3631,10 @@ msgstr "Не найдены сохраненные результаты на с
 msgid "Data for %s"
 msgstr "Данные для %s"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Данные загружены"
+
 msgid "Data preview"
 msgstr "Предпросмотр данных"
 
@@ -3715,17 +3794,6 @@ msgstr ""
 "Датасеты могут быть созданы из таблиц базы данных или SQL-запросов. "
 "Выберите таблицу из базы данных слева или "
 
-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 ""
-"У датасетов может быть основной столбец с данными о дате-времени "
-"(main_dttm_col) и дополнительные временные столбцы. Если этот параметр "
-"включен, то при применении фильтра к дополнительным столбцам, он также "
-"будет применяться к основному."
-
 msgid "Datasets could not be deleted."
 msgstr "Не удалось удалить датасет"
 
@@ -3761,9 +3829,6 @@ msgstr "Формат временной строки"
 msgid "Date/Time"
 msgstr "Дата/Время"
 
-msgid "Datetime Format"
-msgstr "Формат даты/времени"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3793,13 +3858,12 @@ msgstr "Выключить"
 msgid "December"
 msgstr "Декабрь"
 
-msgid "Decides which column to sort the base axis by."
-msgstr "Определяет, по какому столбцу отсортировать основную ось"
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "Меры для сортировки основной оси"
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "Десятичный разделитель"
 
 msgid "Deck.gl - 3D Grid"
@@ -3843,9 +3907,6 @@ msgstr "Падение"
 msgid "Default Catalog"
 msgstr "Значение по умолчанию"
 
-msgid "Default Endpoint"
-msgstr "Эндпоинт по умолчанию"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "Выберите схему"
@@ -3853,10 +3914,11 @@ msgstr "Выберите схему"
 msgid "Default URL"
 msgstr "URL по умолчанию"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
-"URL по умолчанию, на который будет выполнен редирект при доступе из "
-"страницы со списком датасетов"
 
 msgid "Default Value"
 msgstr "Значение по умолчанию"
@@ -3878,9 +3940,6 @@ msgstr ""
 "может быть больше, чем указанная, если остальным столбцам не будет "
 "хватать места."
 
-msgid "Default value is required"
-msgstr "Требуется значение по умолчанию"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr "Включив эту настройку, нужно выбрать значение фильтра по умолчанию"
 
@@ -3935,9 +3994,6 @@ msgstr ""
 "Функция, которая применяется к скользящему окну. Работает вместе с "
 "текстовым полем [Периоды]."
 
-msgid "Defines how each series is broken down"
-msgstr "Определяет разложение каждой категории"
-
 msgid "Defines the grid size in pixels"
 msgstr "Определяет размер сетки (в пикселях)"
 
@@ -3999,9 +4055,17 @@ msgstr "Удалить запрос?"
 msgid "Delete Report?"
 msgstr "Удалить отчет?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "удалить"
+
 msgid "Delete Template?"
 msgstr "Удалить шаблон?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Удалить запрос?"
+
 msgid "Delete all Really?"
 msgstr "Действительно удалить все?"
 
@@ -4020,12 +4084,20 @@ msgstr "Удалить рассылку по email"
 msgid "Delete query"
 msgstr "Удалить запрос"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "удалить"
+
 msgid "Delete template"
 msgstr "Удалить шаблон"
 
 msgid "Delete this container and save to remove this message."
 msgstr "Удалите этот контейнер и сохраните изменения, чтобы убрать это сообщение"
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Удалить запрос"
+
 #, fuzzy
 msgid "Deleted"
 msgstr "удалить"
@@ -4097,13 +4169,30 @@ msgstr[2] "Удалено %(num)d сохраненных запросов"
 msgid "Deleted %s"
 msgstr "Удалено: %s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Удалено: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Удалено: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Удалено: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Удалено: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Удалено: %s"
 
+#, fuzzy
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 "Удаление вкладки удалит все ее содержимое. Вы можете отменить это "
 "действие при помощи сочетания клавиш"
@@ -4117,18 +4206,12 @@ msgstr "Разделитель"
 msgid "Delivery method"
 msgstr "Способ отправки"
 
-msgid "Demographics"
-msgstr "Демография"
-
 msgid "Density"
 msgstr "Концентрация"
 
 msgid "Dependent on"
 msgstr "Зависит от"
 
-msgid "Deprecated"
-msgstr "Устарело"
-
 msgid "Description"
 msgstr "Описание"
 
@@ -4225,21 +4308,26 @@ msgstr "Отключает переход к детализации для эт
 msgid "Discard"
 msgstr "Отменить изменения"
 
-msgid "Display"
-msgstr "Отображение"
-
 msgid "Display Name"
 msgstr "Отображаемое имя"
 
 msgid "Display all"
 msgstr "Показать все"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "Отобразить итог по столбцу"
+
 msgid "Display column level subtotal"
 msgstr "Отобразить подитог по столбцу"
 
 msgid "Display column level total"
 msgstr "Отобразить итог по столбцу"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Отобразить итог по столбцу"
+
 msgid "Display configuration"
 msgstr "Настройки отображения"
 
@@ -4264,7 +4352,8 @@ msgstr "Отобразить подытог по строке"
 msgid "Display row level total"
 msgstr "Отобразить общий итог по строке"
 
-msgid "Display settings"
+#, fuzzy
+msgid "Display type icon"
 msgstr "Настройки отображения"
 
 msgid ""
@@ -4284,9 +4373,6 @@ msgstr "Распределить по"
 msgid "Distribution"
 msgstr "Распределение"
 
-msgid "Distribution - Bar Chart"
-msgstr "Распределение - Столбчатая диаграмма"
-
 msgid "Divider"
 msgstr "Разделитель"
 
@@ -4314,9 +4400,18 @@ msgstr "Сохранить как изображение"
 msgid "Download as image"
 msgstr "Сохранить как изображение"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "Сохранить в CSV"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "Черновик"
 
@@ -4417,6 +4512,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "Дублировать датасет"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Дублировать"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "Повторяющееся имя столбца(ов): %(columns)s"
+
 msgid "Duplicate tab"
 msgstr "Дублировать вкладку"
 
@@ -4433,24 +4536,6 @@ 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 означает, что кэш никогда не очистится. "
-"Обратите внимание, что если значение не задано, применяется значение по "
-"умолчанию из основной конфигурации."
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-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 "
@@ -4460,14 +4545,6 @@ msgstr ""
 " внимание, что если значение не задано, применяется значение таймаута "
 "датасета."
 
-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 ""
-"Продолжительность (в секундах) таймаута кэша для этой таблицы. Обратите "
-"внимание, что если значение не задано, применяется значение базы данных."
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4488,6 +4565,10 @@ msgstr "Продолжительность в мс (1.40008 => 1ms 400µs 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "Продолжительность в мс (100.40008 => 100ms 400µs 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "Продолжительность в мс (66000 => 1m 6s)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "Продолжительность в мс (66000 => 1m 6s)"
 
@@ -4510,10 +4591,6 @@ msgstr "КОНЕЦ (НЕ ВКЛЮЧИТЕЛЬНО)"
 msgid "ERROR"
 msgstr "ОШИБКА"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "ОШИБКА: %s"
-
 msgid "Edge length"
 msgstr "Длина ребер"
 
@@ -4538,45 +4615,38 @@ msgstr "Редактировать CSS"
 msgid "Edit CSS template properties"
 msgstr "Редактировать свойства шаблона CSS"
 
-msgid "Edit Chart"
-msgstr "Редактировать диаграмму"
-
 msgid "Edit Chart Properties"
 msgstr "Редактировать свойства диаграммы"
 
-msgid "Edit Column"
-msgstr "Редактировать столбец"
-
 msgid "Edit Dashboard"
 msgstr "Редактировать дашборд"
 
-msgid "Edit Database"
-msgstr "Редактировать Базу Данных"
-
 msgid "Edit Dataset "
 msgstr "Редактировать датасет "
 
 msgid "Edit Log"
 msgstr "Редактировать запись"
 
-msgid "Edit Metric"
-msgstr "Редактировать меру"
-
 msgid "Edit Plugin"
 msgstr "Редактировать плагин"
 
 msgid "Edit Report"
 msgstr "Редактировать отчет"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "режиме редактирования"
+
 msgid "Edit Rule"
 msgstr "Редактировать правило"
 
-msgid "Edit Table"
-msgstr "Редактировать таблицу"
-
 msgid "Edit Tag"
 msgstr "Редактировать тег"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Редактировать запрос"
+
 msgid "Edit annotation"
 msgstr "Редактировать аннотацию"
 
@@ -4614,6 +4684,10 @@ msgstr "Редактировать свойства"
 msgid "Edit query"
 msgstr "Редактировать запрос"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "режиме редактирования"
+
 msgid "Edit template"
 msgstr "Редактировать шаблон"
 
@@ -4626,6 +4700,10 @@ msgstr "Редактировать дашборд"
 msgid "Edit time range"
 msgstr "Изменить временной интервал"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Редактировать запрос"
+
 msgid "Edited"
 msgstr "Отредактировано"
 
@@ -4654,6 +4732,14 @@ msgstr "Неверное имя пользователя или пароль"
 msgid "Elevation"
 msgstr "Продолжительность"
 
+#, fuzzy
+msgid "Email"
+msgstr "Общая сумма"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "Значение обязательно"
+
 msgid "Email reports active"
 msgstr "Включить рассылки"
 
@@ -4669,6 +4755,10 @@ msgstr "Код для встраивания"
 msgid "Embed dashboard"
 msgstr "Встроить дашборд"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "Не удалось удалить дашборд"
+
 msgid "Embedding deactivated."
 msgstr "Встраивание отключено"
 
@@ -4679,9 +4769,6 @@ msgstr "Фильтрующийся"
 msgid "Emphasis"
 msgstr "Акцент"
 
-msgid "Employment and education"
-msgstr "Трудоустройство и образование"
-
 msgid "Empty circle"
 msgstr "Окружность"
 
@@ -4706,10 +4793,6 @@ msgstr ""
 "Включите \"Разрешить загрузку файлов в базу данных\" в настройках любой "
 "базы данных"
 
-#, fuzzy
-msgid "Enable Filter Select"
-msgstr "Настроить области действия фильтра"
-
 msgid "Enable cross-filtering"
 msgstr "Включить кросс-фильтрацию"
 
@@ -4812,12 +4895,26 @@ msgstr "Введите имя отчета"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "Введите обязательные данные для %(dbModelName)s"
 
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Введите имя оповещения"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "Введите имя оповещения"
+
+msgid "Enter the user's username"
+msgstr ""
+
 msgid "Entity"
 msgstr "Элемент"
 
-msgid "Entity ID"
-msgstr "ID элемента"
-
 msgid "Equal Date Sizes"
 msgstr "Одинаковые размеры дат"
 
@@ -4830,6 +4927,14 @@ msgstr "Ошибка"
 msgid "Error Fetching Tagged Objects"
 msgstr "Ошибка получения списка объектов с тегами"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Произошла ошибка при получении данных: %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Произошла ошибка при сохранении датасета"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr "Ошибка в Jinja-выражении в операторе HAVING: %(msg)s"
@@ -4854,6 +4959,10 @@ msgstr ""
 msgid "Error message"
 msgstr "Сообщение об ошибке"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "ошибка (темная)"
+
 msgid "Error reading CSV file"
 msgstr "Произошла ошибка при чтении файла CSV"
 
@@ -4868,6 +4977,22 @@ msgstr "Произошла ошибка при чтении файла Excel"
 msgid "Error saving dataset"
 msgstr "Произошла ошибка при сохранении датасета"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Произошла ошибка при сохранении датасета"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Произошла ошибка при получении диаграмм"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Произошла ошибка при получении диаграмм"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Произошла ошибка при получении диаграмм"
+
 msgid "Error while fetching charts"
 msgstr "Произошла ошибка при получении диаграмм"
 
@@ -4875,10 +5000,30 @@ msgstr "Произошла ошибка при получении диаграм
 msgid "Error while fetching data: %s"
 msgstr "Произошла ошибка при получении данных: %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Произошла ошибка при получении диаграмм"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Произошла ошибка при получении диаграмм"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Произошла ошибка при получении диаграмм"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "Произошла ошибка при выполнении запроса виртуального датасета: %(msg)s"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Произошла ошибка при получении диаграмм"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Произошла ошибка при получении диаграмм"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "Ошибка: %(error)s"
@@ -4902,15 +5047,6 @@ msgstr "Спрогнозировать стоимость до выполнен
 msgid "Event"
 msgstr "Событие"
 
-msgid "Event Flow"
-msgstr "Поток событий"
-
-msgid "Event Names"
-msgstr "Имена событий"
-
-msgid "Event definition"
-msgstr "Определение события"
-
 #, fuzzy
 msgid "Event flow"
 msgstr "Event flow"
@@ -4933,12 +5069,13 @@ msgstr "Пример"
 msgid "Examples"
 msgstr "Примеры"
 
-msgid "Excel Upload"
-msgstr "Загрузка Excel"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "Загрузка Excel"
+
 msgid "Exclude selected values"
 msgstr "Исключить выбранные значения"
 
@@ -5028,12 +5165,6 @@ msgstr "Экспорт в PDF"
 msgid "Export to Pivoted .CSV"
 msgstr "Экспорт сводной таблицы в .CSV"
 
-msgid "Export to YAML"
-msgstr "Экспорт в YAML"
-
-msgid "Export to YAML?"
-msgstr "Экспортировать в YAML?"
-
 msgid "Export to full .CSV"
 msgstr "Экспорт в целый CSV"
 
@@ -5052,11 +5183,9 @@ msgstr "Предоставить доступ к базе в SQL Lab"
 msgid "Expose in SQL Lab"
 msgstr "Показать в SQL Lab"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Предоставить доступ к базе в SQL Lab"
-
-msgid "Expression"
-msgstr "Выражение"
+#, fuzzy
+msgid "Extent"
+msgstr "недавние"
 
 msgid "Extra"
 msgstr "Дополнительно"
@@ -5081,10 +5210,6 @@ msgstr ""
 "\"Руководитель отдела\", \"details\": \"Эта таблица - источник правды.\" "
 "}, \"warning_markdown\": \"Это предупреждение.\" }`."
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "Дополнительное поле не может быть декодировано с помощью JSON. %(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "Дополнительные параметры для запросов, использующих шаблонизацию Jinja"
 
@@ -5104,6 +5229,10 @@ msgstr ""
 msgid "FEB"
 msgstr "ФЕВ"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Редактировать датасет"
+
 msgid "FRI"
 msgstr "ПТ"
 
@@ -5113,16 +5242,15 @@ msgstr ""
 msgid "Factor to multiply the metric by"
 msgstr "Число, на которое умножается мера"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "Ошибка"
 
 msgid "Failed at retrieving results"
 msgstr "Невозможно выполнить запрос"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "Не удалось остановить запрос. %s"
-
 msgid "Failed to create report"
 msgstr "Не удалось создать рассылку"
 
@@ -5152,6 +5280,10 @@ msgstr "Задать область действия кросс-фильтра"
 msgid "Failed to start remote query on a worker."
 msgstr "Не удалось запустить удаленный запрос"
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "Не удалось остановить запрос. %s"
+
 msgid "Failed to tag items"
 msgstr "Не удалось применить теги"
 
@@ -5175,9 +5307,6 @@ msgstr "Встроенные палитры"
 msgid "February"
 msgstr "Февраль"
 
-msgid "Fetch Values Predicate"
-msgstr ""
-
 msgid "Fetch data preview"
 msgstr "Получить данные для просмотра"
 
@@ -5202,15 +5331,13 @@ msgstr "Поле обязательно к заполнению"
 msgid "File"
 msgstr "Файл"
 
-msgid "File Settings"
-msgstr "Свойства файла"
-
 #, fuzzy
 msgid "File extension is not allowed."
 msgstr "Использовать URI для данных запрещено"
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "Свойства файла"
 
 msgid "File upload"
 msgstr "Загрузка из файла"
@@ -5279,9 +5406,6 @@ msgstr "Список для фильтрации не может быть пус
 msgid "Filter your charts"
 msgstr "Поиск"
 
-msgid "Filterable"
-msgstr "Фильтруемый"
-
 msgid "Filters"
 msgstr "Фильтры"
 
@@ -5294,6 +5418,16 @@ msgstr "Фильтры по мерам"
 msgid "Filters for comparison must have a value"
 msgstr "Фильтры для сравнения должны содержать значение"
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "Лимит количества строк должен быть не менее нуля"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "Фильтры вне рамок дашборда (%d)"
@@ -5323,6 +5457,14 @@ msgstr "Завершить"
 msgid "First"
 msgstr "Первый"
 
+#, fuzzy
+msgid "First name"
+msgstr "Имя диаграммы"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "Имя обязательно"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5413,6 +5555,10 @@ msgstr "Привести к дате/времени"
 msgid "Force refresh"
 msgstr "Обновить"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Обновить список схем"
+
 msgid "Force refresh catalog list"
 msgstr "Обновить список каталогов"
 
@@ -5529,6 +5675,10 @@ msgstr "Настройки GeoJson"
 msgid "Geohash"
 msgstr "Geohash"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Показывать пустые столбцы"
+
 msgid "Get the last date by the date unit."
 msgstr ""
 
@@ -5588,9 +5738,6 @@ msgstr "Группа"
 msgid "Group by"
 msgstr "Группировать по"
 
-msgid "Groupable"
-msgstr "Группируемый"
-
 #, fuzzy
 msgid "Guest user cannot modify chart payload"
 msgstr "Гость не может редактировать данные для диаграммы"
@@ -5607,20 +5754,12 @@ msgstr "Шаблон Handlebars"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-
 msgid "Has created by"
 msgstr "Создано"
 
 msgid "Header"
 msgstr "Заголовок"
 
-msgid "Header Row"
-msgstr "Заголовок"
-
 #, fuzzy
 msgid "Header row"
 msgstr "Строка заголовка"
@@ -5628,18 +5767,16 @@ msgstr "Строка заголовка"
 msgid "Heatmap"
 msgstr "Тепловая карта"
 
-msgid "Heatmap (legacy)"
-msgstr "Тепловая карта (устарело)"
-
-msgid "Heatmap Options"
-msgstr "Настройки тепловой карты"
-
 msgid "Height"
 msgstr "Высота"
 
 msgid "Height of the sparkline"
 msgstr "Высота спарклайна"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Столбец даты/времени"
+
 msgid "Hide Line"
 msgstr "Скрыть линию"
 
@@ -5664,10 +5801,6 @@ msgstr "Иерархия"
 msgid "Histogram"
 msgstr "Гистограмма"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "Тепловая карта (устарело)"
-
 msgid "Home"
 msgstr "Главная"
 
@@ -5751,35 +5884,22 @@ msgstr ""
 "учетную запись, но имперсонировать зарегистрированного пользователя можно"
 " через свойство hive.server2.proxy.user."
 
-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.<br/>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 Lab будут выполняться от "
-"авторизованного пользователя, который должен иметь разрешение на их "
-"выполнение. <br/> Если включены Hive и hive.server2.enable.doAs, то "
-"запросы будут выполняться через техническую учетную запись, но "
-"имперсонировать зарегистрированного пользователя можно через свойство "
-"hive.server2.proxy.user."
-
-msgid "If Table Already Exists"
-msgstr "Если таблица уже существует"
-
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr "Если выбрать меру, список значений фильтров будет отсортирован по ней"
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
 msgstr "Если включено, сортирует результаты по убыванию"
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr ""
-"Если установлено, выберите схемы, в которые разрешена загрузка CSV на "
-"вкладке \"Дополнительно\"."
+#, fuzzy
+msgid "If table already exists"
+msgstr "Метка уже существует"
 
 msgid "Ignore cache when generating report"
 msgstr "Игнорировать кэш при создании отчета"
@@ -5803,9 +5923,6 @@ msgstr ""
 "Имперсонировать пользователя (Presto, Trino, Drill, Hive, и Google "
 "Таблицы)"
 
-msgid "Impersonate the logged on user"
-msgstr "Имперсонировать пользователя"
-
 msgid "Import"
 msgstr "Импорт"
 
@@ -5816,9 +5933,6 @@ msgstr "Импортировать %s"
 msgid "Import Dashboard(s)"
 msgstr "Импортировать дашборд(ы)"
 
-msgid "Import a table definition"
-msgstr "Импортировать схему таблицы"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "Не удалось импортировать диаграмму по неизвестной причине"
 
@@ -5849,17 +5963,14 @@ msgstr "Импортировать запросы"
 msgid "Import saved query failed for an unknown reason."
 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 ""
-"Важно! Выберите, если таблица еще не отсортирована по ID. В противном "
-"случае нельзя гарантировать, что все события для каждого объекта будут "
-"отображены."
-
 msgid "In"
 msgstr "In"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "Включать ряды"
 
@@ -5882,17 +5993,18 @@ msgstr "Рост"
 msgid "Index"
 msgstr "Индекс"
 
-msgid "Index Column"
-msgstr "Индесный столбец"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "Метки диапазона"
+msgid "Index column"
+msgstr "Столбец с временем"
 
 #, fuzzy
 msgid "Index label"
 msgstr "Метки диапазона"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Показать ключи и индексы (%s)"
+
 msgid "Info"
 msgstr "Личные данные"
 
@@ -5911,6 +6023,13 @@ msgstr "Введите ширину в пикселях"
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr "Поле для ввода поддерживает пользовательские значения, например 30 для 30°"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "Скрыть слой"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "Насыщенность"
 
@@ -5943,10 +6062,6 @@ msgstr "Столбец с началом интервала"
 msgid "Intervals"
 msgstr "Интервалы"
 
-#, fuzzy
-msgid "Intesity"
-msgstr "Насыщенность"
-
 #, fuzzy
 msgid ""
 "Invalid Connection String: Expecting String of the form "
@@ -5995,6 +6110,9 @@ msgstr "Некорректный код валюты в сохраненных 
 msgid "Invalid date/timestamp format"
 msgstr "Недопустимый формат даты-времени"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "Недопустимый тип фильтрации: %(op)s"
@@ -6058,6 +6176,10 @@ msgstr "Выбрать противоположные значения"
 msgid "Invert current page"
 msgstr ""
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Оповещение включено"
+
 msgid "Is certified"
 msgstr "Одобрено"
 
@@ -6243,12 +6365,6 @@ msgstr "Большой"
 msgid "Last"
 msgstr "Последний"
 
-msgid "Last Changed"
-msgstr "Дата изменения"
-
-msgid "Last Modified"
-msgstr "Дата изменения"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "Дата изменения %s"
@@ -6257,6 +6373,10 @@ msgstr "Дата изменения %s"
 msgid "Last Updated %s by %s"
 msgstr "Изменено %s пользователем %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Целевое значение"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr "Последнее доступное значение: %s"
@@ -6264,12 +6384,24 @@ msgstr "Последнее доступное значение: %s"
 msgid "Last day"
 msgstr "Последний день"
 
+#, fuzzy
+msgid "Last login"
+msgstr "Последний месяц"
+
 msgid "Last modified"
 msgstr "Последнее изменение"
 
 msgid "Last month"
 msgstr "Последний месяц"
 
+#, fuzzy
+msgid "Last name"
+msgstr "имя датасета"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Имя обязательно"
+
 msgid "Last quarter"
 msgstr "Последний квартал"
 
@@ -6282,15 +6414,42 @@ msgstr "Последняя неделя"
 msgid "Last year"
 msgstr "Последний год"
 
+#, fuzzy
+msgid "Lat"
+msgstr "равномерно"
+
 msgid "Latitude"
 msgstr "Широта"
 
 msgid "Latitude of default viewport"
 msgstr "Широта для области просмотра"
 
+#, fuzzy
+msgid "Layer"
+msgstr "год"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Имя оповещения"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "Настройки слоя"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Заголовок диаграммы"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Тип фильтра"
+
+#, fuzzy
+msgid "Layers"
+msgstr "оповещений"
+
 msgid "Layout"
 msgstr "Оформление"
 
@@ -6303,11 +6462,6 @@ msgstr "Способ отрисовки графа"
 msgid "Layout type of tree"
 msgstr "Способ отрисовки дерева"
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-
 msgid "Least recently modified"
 msgstr "Измененные давно"
 
@@ -6371,11 +6525,6 @@ msgstr "Like (без учета регистра)"
 msgid "Limit type"
 msgstr "Тип ограничения"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-
 msgid "Limits the number of cells that get retrieved."
 msgstr "Ограничить количество извлекаемых ячеек"
 
@@ -6419,6 +6568,9 @@ msgstr ""
 "Информация на графике представляется в виде набора точек, соединенных "
 "отрезками. Это простая диаграмма, распространенная во многих областях."
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "Линейная интерполяция, определенная в d3.js"
 
@@ -6449,9 +6601,16 @@ msgstr "Направление сортировки"
 msgid "Link Copied!"
 msgstr "Ссылка скопирована"
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr "Список уникальных значений"
 
+#, fuzzy
+msgid "List Users"
+msgstr "Количество разделителей"
+
 #, fuzzy
 msgid "List of extra columns made available in JavaScript functions"
 msgstr "Список дополнительных столбцов, доступных в функциях Javascript"
@@ -6520,6 +6679,10 @@ msgstr "Логарифмическая ось Y"
 msgid "Login"
 msgstr "Вход в систему"
 
+#, fuzzy
+msgid "Login count"
+msgstr "количество"
+
 msgid "Login with"
 msgstr "Войти при помощи"
 
@@ -6529,6 +6692,10 @@ msgstr "Выход"
 msgid "Logs"
 msgstr "Записи"
 
+#, fuzzy
+msgid "Lon"
+msgstr "по"
+
 msgid "Long dashed"
 msgstr "Длинный штрих"
 
@@ -6573,9 +6740,6 @@ msgstr "ПН"
 msgid "Main"
 msgstr "Значение"
 
-msgid "Main Datetime Column"
-msgstr "Основной столбец с временем"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6612,6 +6776,10 @@ msgstr "Вручную задать мин./макс. значения для о
 msgid "Map"
 msgstr "Карта"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Настройки тепловой карты"
+
 msgid "Map Style"
 msgstr "Стиль карты"
 
@@ -6654,14 +6822,17 @@ msgstr "Маркеры"
 msgid "Markup type"
 msgstr "Тип разметки"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "Максимум"
 
 msgid "Max Bubble Size"
 msgstr "Максимальный размер пузырька"
 
-msgid "Max Events"
-msgstr "Лимит событий"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "Максимум"
@@ -6672,6 +6843,9 @@ msgstr "Максимальный размер шрифта"
 msgid "Maximum Radius"
 msgstr "Максимальный радиус"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 #, fuzzy
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
@@ -6719,6 +6893,18 @@ msgstr "Медианные значения"
 msgid "Medium"
 msgstr "Средний"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -6818,11 +7004,6 @@ msgstr ""
 "категории, если присутствует ограничение по категории или строке. Если не"
 " определено, возвращается к первой мере (где это уместно)."
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-
 msgid "Metrics"
 msgstr "Меры"
 
@@ -6862,7 +7043,7 @@ msgstr "Минимальный размер шрифта"
 msgid "Minimum Radius"
 msgstr "Минимальный радиус"
 
-msgid "Minimum leaf node event count"
+msgid "Minimum must be strictly less than maximum"
 msgstr ""
 
 msgid ""
@@ -6879,6 +7060,10 @@ msgstr "Минимальный порог для отображения мето
 msgid "Minimum value"
 msgstr "Минимум"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "Дата начала не может быть позже даты конца"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "Минимальное значение метки для отображения на диаграмме"
 
@@ -6902,6 +7087,9 @@ msgstr "Минут %s"
 msgid "Minutes value"
 msgstr "Одиночное значение"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr "Пропущенные параметры URL"
 
@@ -6918,6 +7106,13 @@ msgstr "Изменено"
 msgid "Modified %s"
 msgstr "Изменено %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
 msgid "Modified by"
 msgstr "Кем изменено"
 
@@ -6925,10 +7120,6 @@ msgstr "Кем изменено"
 msgid "Modified by: %s"
 msgstr "Автор изменений %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "Измененные столбцы: %s"
-
 msgid "Monday"
 msgstr "Понедельник"
 
@@ -6992,9 +7183,6 @@ msgstr "Выберите диаграмму или дашборд"
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr "Чтобы отобразить количество в [Метке], укажите колонку в [Группировать по]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "Должен быть указан хотя бы один числовой столбец"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr "Для туннеля SSH нужно указать логин и пароль"
 
@@ -7019,9 +7207,6 @@ msgstr ""
 msgid "NOV"
 msgstr "НОЯ"
 
-msgid "NOW"
-msgstr "СЕЙЧАС"
-
 msgid "NUMERIC"
 msgstr "Числовой (NUMERIC/DECIMAL)"
 
@@ -7046,9 +7231,6 @@ msgstr "Столбец с ID элементов"
 msgid "Name of the source nodes"
 msgstr "Имя исходных вершин"
 
-msgid "Name of the table that exists in the source database"
-msgstr "Имя таблицы, которая существует в базе данных"
-
 msgid "Name of the target nodes"
 msgstr "Имя конечных вершин"
 
@@ -7064,19 +7246,23 @@ msgstr "Нужна помощь? Узнайте, как подключаться
 msgid "Need help? Learn more about"
 msgstr "Нужна помощь? Узнайте больше о"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Ошибка сети"
+
 msgid "Network error"
 msgstr "Ошибка сети"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Произошла ошибка при создании источника данных"
+
 msgid "Network error."
 msgstr "Ошибка сети"
 
 msgid "New chart"
 msgstr "Новая диаграмма"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "Добавленные столбцы: %s"
-
 msgid "New dataset"
 msgstr "Новый датасет"
 
@@ -7126,6 +7312,10 @@ msgstr "Нет правил"
 msgid "No Tags created"
 msgstr "Теги не созданы"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Отменить действие"
+
 msgid "No annotation layers"
 msgstr "Нет слоев аннотаций"
 
@@ -7144,10 +7334,6 @@ msgstr "Нет доступных фильтров"
 msgid "No charts"
 msgstr "Нет диаграмм"
 
-#, fuzzy
-msgid "No charts yet"
-msgstr "Нет диаграмм"
-
 msgid "No columns found"
 msgstr "Столбцы не найдены"
 
@@ -7166,10 +7352,6 @@ msgstr "Не найдено подходящих столбцов"
 msgid "No compatible schema found"
 msgstr "Не найдено подходящих столбцов"
 
-#, fuzzy
-msgid "No dashboards yet"
-msgstr "Нет дашбордов"
-
 msgid "No data"
 msgstr "Нет данных"
 
@@ -7181,6 +7363,10 @@ msgstr ""
 msgid "No data in file"
 msgstr "В файле нет данных"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "Нет доступных баз данных"
+
 msgid "No databases match your search"
 msgstr "Нет баз данных, удовлетворяющих вашему поиску"
 
@@ -7212,13 +7398,6 @@ msgstr "Фильтры отсутствуют"
 msgid "No matching records found"
 msgstr "Записи не найдены"
 
-msgid "No of Bins"
-msgstr "Количество бинов"
-
-#, fuzzy
-msgid "No recents yet"
-msgstr "Нет недавних"
-
 msgid "No records found"
 msgstr "Записи не найдены"
 
@@ -7243,6 +7422,10 @@ msgstr ""
 "результаты, убедитесь, что все фильтры настроены правильно и источник "
 "данных содержит записи для заданного временного интервала."
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Нет правил"
+
 msgid "No rows were returned for this dataset"
 msgstr "Не было получено данных для этого датасета"
 
@@ -7255,10 +7438,6 @@ msgstr "Не найдено сохраненных выражений"
 msgid "No saved metrics found"
 msgstr "Не найдено сохраненных мер"
 
-#, fuzzy
-msgid "No saved queries yet"
-msgstr "Нет сохраненных запросов"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr "Не найдены сохраненные результаты, необходимо повторно выполнить запрос"
 
@@ -7277,6 +7456,10 @@ msgstr "Столбцы формата дата/время не найдены"
 msgid "No time columns"
 msgstr "Нет столбцов формата дата/время"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Нет правил"
+
 msgid "No validator found (configured for the engine)"
 msgstr "Не найден валидатор, сконфигурированный для драйвера"
 
@@ -7353,6 +7536,10 @@ msgstr "Условие не выполнялось"
 msgid "Not up to date"
 msgstr "Не актуально"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "Не срабатывало"
+
 msgid "Nothing triggered"
 msgstr "Не срабатывало"
 
@@ -7455,9 +7642,6 @@ msgstr "Октябрь"
 msgid "Offline"
 msgstr "Оффлайн"
 
-msgid "Offset"
-msgstr "Смещение"
-
 msgid "On Grace"
 msgstr "На перерыве"
 
@@ -7490,6 +7674,10 @@ msgstr ""
 msgid "One or many metrics to display"
 msgstr "Выберите одну или несколько мер для отображения"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "Один или несколько слоев аннотации не удалось загрузить"
+
 msgid "One or more columns already exist"
 msgstr "Один или несколько столбцов уже существуют"
 
@@ -7521,12 +7709,6 @@ msgstr ""
 msgid "One or more parameters specified in the query are missing."
 msgstr "Один или несколько параметров, указанных в запросе, отсутствуют"
 
-msgid "One ore more annotation layers failed loading."
-msgstr "Один или несколько слоев аннотации не удалось загрузить"
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "Для этой базы данных доступны только запросы SELECT"
-
 msgid "Only Total"
 msgstr "Только общий итог"
 
@@ -7539,9 +7721,6 @@ msgstr "Применимо только когда \"Тип метки\" пок
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr "Применимо только когда \"Тип метки\" показывает значения"
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "Фильтр будет применен только к выбранным панелям"
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7627,15 +7806,19 @@ msgstr "Опции"
 msgid "Or choose from a list of other databases we support:"
 msgstr "Или выберите из списка других поддерживаемых баз данных:"
 
-msgid "Order by entity id"
-msgstr "Сортировать по ID"
-
 msgid "Order results by selected columns"
 msgstr "Упорядочить результаты по выбранным столбцам"
 
 msgid "Ordering"
 msgstr "Упорядочивание"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr "Ориентация"
 
@@ -7763,6 +7946,12 @@ msgstr ""
 "Владельцы – это пользователи, которые могут изменять дашборд. Можно "
 "искать по имени или никнейму."
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr ""
+"Произошла ошибка скачивания изображения. Обновите страницу и попробуйте "
+"заново."
+
 msgid "Page length"
 msgstr "Размер страницы"
 
@@ -7823,6 +8012,14 @@ msgstr ""
 msgid "Password"
 msgstr "Пароль"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "Поле обязательно к заполнению"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Дашборды не существуют"
+
 msgid "Paste Private Key here"
 msgstr "Вставьте сюда приватный ключ"
 
@@ -7879,6 +8076,14 @@ msgstr "Периоды"
 msgid "Periods must be a whole number"
 msgstr "Периоды должны быть целым числом"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Версия"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr "Лицо или группа, которые утвердили эту диаграмму"
 
@@ -7894,9 +8099,6 @@ msgstr "Физический"
 msgid "Physical (table or view)"
 msgstr "Физический (таблица или представление)"
 
-msgid "Physical dataset"
-msgstr "Физический датасет"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr "Выберите измерение, на основе которого определяются категориальные цвета"
 
@@ -7918,17 +8120,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr "Выберите название для аннотации"
 
-#, fuzzy
-msgid "Pick at least one field for [Series]"
-msgstr "Выберите хотя бы одно поле для рядов"
-
 msgid "Pick at least one metric"
 msgstr "Выберите хотя бы одну меру"
 
-#, fuzzy
-msgid "Pick exactly 2 columns as [Source / Target]"
-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."
@@ -7942,8 +8136,8 @@ msgstr "Выберите свой любимый язык разметки"
 msgid "Pie Chart"
 msgstr "Круговая диаграмма"
 
-msgid "Pie Chart (legacy)"
-msgstr "Круговая диаграмма (устарело)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "Форма круговой диаграммы"
@@ -7951,8 +8145,16 @@ msgstr "Форма круговой диаграммы"
 msgid "Piecewise"
 msgstr "Дискретный"
 
-msgid "Pin"
-msgstr "Закрепить"
+msgid "Pin"
+msgstr "Закрепить"
+
+#, fuzzy
+msgid "Pin Left"
+msgstr "Сверху слева"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Сверху справа"
 
 msgid "Pivot Table"
 msgstr "Сводная таблица"
@@ -8012,6 +8214,9 @@ msgstr ""
 "убедитесь, что они совпадают с вашим SQL-запросом и заданными "
 "параметрами. Затем попробуйте выполнить свой запрос еще раз."
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr "Выберите хотя бы одно поле в [Группировать по]"
 
@@ -8021,12 +8226,25 @@ msgstr "Пожалуйста, подтвердите действие"
 msgid "Please confirm the overwrite values."
 msgstr ""
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "Пожалуйста, подтвердите действие"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Введите SQLAlchemy URI для проверки"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "Пожалуйста, введите пароль еще раз"
 
@@ -8042,9 +8260,6 @@ msgstr[0] "Пожалуйста, обратитесь к владельцу ди
 msgstr[1] ""
 msgstr[2] ""
 
-msgid "Please save the query to enable sharing"
-msgstr "Пожалуйста, сохраните запрос, чтобы включить функцию \"поделиться\""
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr "Сохраните диаграмму перед тем, как создавать рассылку"
 
@@ -8120,10 +8335,6 @@ msgstr "Линия"
 msgid "Populate \"Default value\" to enable this control"
 msgstr ""
 
-#, fuzzy
-msgid "Population age data"
-msgstr "Возрастные данные"
-
 msgid "Port"
 msgstr "Порт"
 
@@ -8161,16 +8372,6 @@ msgstr "Ограничить список значений"
 msgid "Pre-filter is required"
 msgstr "Предварительная фильтрация обязательна"
 
-#, fuzzy
-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. Эта настройка применяется"
-" только когда включен параметр \"Enable Filter Select\"."
-
 msgid "Predictive"
 msgstr "Прогноз"
 
@@ -8189,10 +8390,6 @@ msgstr "Предпросмотр"
 msgid "Preview uploaded file"
 msgstr "Предпросмотр"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "Предпросмотр «%s»"
-
 msgid "Previous"
 msgstr "Предыдущий"
 
@@ -8238,18 +8435,13 @@ msgstr "Прогресс"
 msgid "Progressive"
 msgstr "Постепенный"
 
-msgid "Propagate"
-msgstr ""
+#, fuzzy
+msgid "Project Id"
+msgstr "Устарело"
 
 msgid "Proportional"
 msgstr "Пропорция"
 
-msgid "Public and privately shared sheets"
-msgstr "Публичные и приватные таблицы"
-
-msgid "Publicly shared sheets only"
-msgstr "Только публичные таблицы"
-
 msgid "Published"
 msgstr "Опубликовано"
 
@@ -8268,9 +8460,6 @@ msgstr ""
 msgid "Put the labels outside of the pie?"
 msgstr "Вынести метки за пределы диаграммы"
 
-msgid "Put the labels outside the pie?"
-msgstr "Вынести метки за пределы диаграммы"
-
 msgid "Put your code here"
 msgstr "Введите произвольный текст в формате html или markdown"
 
@@ -8372,10 +8561,6 @@ msgstr "Радиус в метрах"
 msgid "Radius in miles"
 msgstr "Радиус в милях"
 
-#, python-format
-msgid "Ran %s"
-msgstr "Запущен %s"
-
 msgid "Range"
 msgstr "Интервал"
 
@@ -8403,18 +8588,9 @@ msgstr "Отношение"
 msgid "Raw records"
 msgstr "Сырые записи"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr "Недавно созданные диаграммы, дашборды и сохраненные запросы"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr "Недавно измененные диаграммы, дашборды и сохраненные запросы"
-
 msgid "Recently modified"
 msgstr "Измененные недавно"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr "Недавно просмотренные диаграммы, дашборды и сохраненные запросы"
-
 msgid "Recents"
 msgstr "Недавние"
 
@@ -8434,10 +8610,6 @@ msgstr "Повторять"
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-#, fuzzy
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr "Перенаправляет сюда при нажатии на таблицу из списка"
-
 msgid "Redo the action"
 msgstr "Повторить действие"
 
@@ -8477,6 +8649,10 @@ msgstr "Интервал обновления"
 msgid "Refresh interval saved"
 msgstr "Интервал обновления сохранен"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "Таблица"
+
 msgid "Refresh the default values"
 msgstr "Обновить значения по умолчанию"
 
@@ -8536,8 +8712,11 @@ msgid "Remove table preview"
 msgstr "Убрать предпросмотр таблицы"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "Удаленные столбцы: %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
 msgid "Rename tab"
 msgstr "Переименовать вкладку"
@@ -8548,11 +8727,10 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr "Отобразить колонки в HTML"
 
-msgid "Render data in HTML format if applicable."
-msgstr "Отобразить данные в HTML (если применимо)"
-
-msgid "Rendering"
-msgstr "Отрисовка"
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
+msgstr ""
 
 msgid "Replace"
 msgstr "Заменить"
@@ -8653,6 +8831,9 @@ msgstr "Отталкивание"
 msgid "Repulsion strength between nodes"
 msgstr "Сила отталкивания вершин"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "Неверный запрос: %(error)s"
@@ -8685,6 +8866,10 @@ msgstr "Для ресемплирования требуется индекс ф
 msgid "Reset"
 msgstr "Сбросить"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Выберите столбец"
+
 msgid "Reset state"
 msgstr "Сбросить текущее состояние"
 
@@ -8710,6 +8895,10 @@ msgstr "Results backend не нестроен"
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr "Сервер, необходимый для асинхронных запросов, не настроен"
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "Выполнить запрос повторно"
+
 msgid "Return to specific datetime."
 msgstr ""
 
@@ -8749,6 +8938,28 @@ msgstr "Нажмите правой кнопкой на элементе изм
 msgid "Role"
 msgstr "Роль"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Имя оповещения"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "Значение обязательно"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Имя обязательно"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "Датасет изменен"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Роли"
 
@@ -8829,9 +9040,6 @@ msgstr "Строчек на странице, 0 означает все стро
 msgid "Rows subtotal position"
 msgstr "Расположение подытогов для строк"
 
-msgid "Rows to Read"
-msgstr "Прочитать"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "Строки для чтения"
@@ -8898,14 +9106,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL-запрос скопирован!"
 
-msgid "SQL Expression"
-msgstr "SQL-выражение"
-
 msgid "SQL Lab"
 msgstr "SQL Lab"
 
-msgid "SQL Lab View"
-msgstr ""
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "сохраненные(ых) запросы(ов)"
 
 #, python-format
 msgid ""
@@ -9001,20 +9207,10 @@ msgstr "Не удалось получить примеры записей да
 msgid "Samples for datasource could not be retrieved."
 msgstr "Не удалось получить примеры записей для источника данных"
 
-msgid "Sankey"
-msgstr "Sankey"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Сохранить диаграмму"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "Диаграмма Sankey"
-
-msgid "Sankey Diagram with Loops"
-msgstr "Диаграмма Sankey с петлями"
-
 msgid "Satellite"
 msgstr "Спутник"
 
@@ -9075,9 +9271,6 @@ msgstr "Сохранить или перезаписать датасет"
 msgid "Save query"
 msgstr "Сохранить запрос"
 
-msgid "Save the query to enable this feature"
-msgstr "Сохраните запрос для включения этой опции"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr "Сохраните запрос как виртуальный датасет для создания диаграммы"
 
@@ -9105,6 +9298,10 @@ msgstr "Сохраненный запрос не найден"
 msgid "Saved query parameters are invalid."
 msgstr "Сохраненные параметры запроса недопустимы"
 
+#, fuzzy
+msgid "Saving..."
+msgstr "Загрузка..."
+
 msgid "Scale and Move"
 msgstr "Масштабирование и перемещение"
 
@@ -9159,11 +9356,6 @@ msgstr "Схема"
 msgid "Schema cache timeout"
 msgstr "Время жизни кэша схемы"
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr ""
-"Схема (используется в некоторых базах данных, таких как Postgres, "
-"Redshift и DB2)"
-
 msgid "Schemas allowed for File upload"
 msgstr "Схемы, в которые разрешена загрузка файлов"
 
@@ -9247,9 +9439,6 @@ msgstr "Секунд %s"
 msgid "Seconds value"
 msgstr "секунд"
 
-msgid "Secure Extra"
-msgstr "Доп. безопасность"
-
 msgid "Secure extra"
 msgstr "Безопасность"
 
@@ -9342,6 +9531,10 @@ msgstr "Укажите схему, если она поддерживается
 msgid "Select a sheet name from the uploaded file"
 msgstr "Выберите лист из загруженного файла"
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Выбрать базу данных"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -9359,7 +9552,7 @@ msgstr "Выбрать все данные"
 msgid "Select all items"
 msgstr "Выбрать все записи"
 
-msgid "Select any columns for metadata inspection"
+msgid "Select an aggregation method to apply to the metric."
 msgstr ""
 
 #, fuzzy
@@ -9387,6 +9580,11 @@ msgstr "Выберите цветовую схему"
 msgid "Select column"
 msgstr "Выберите столбец"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+"Выберите из выпадающего списка имена столбцов, которые должны быть "
+"обработаны как даты"
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9480,6 +9678,14 @@ msgstr "Выберите/введите имя датасета"
 msgid "Select owners"
 msgstr "Выбрать владельцев"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Выбрать теги"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Выбрать владельцев"
+
 msgid "Select saved metrics"
 msgstr "Выберите сохраненные меры"
 
@@ -9493,9 +9699,19 @@ msgstr "Выберите схему или введите ее имя"
 msgid "Select scheme"
 msgstr "Выберите схему"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr ""
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Снять выделение"
+
 #, fuzzy
 msgid "Select table or type to search tables"
 msgstr "Выберите таблицу или введите ее имя"
@@ -9529,12 +9745,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr "Выберите geojson столбец"
 
-msgid "Select the number of bins for the histogram"
-msgstr "Выберите количество бинов гистограммы"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "Выберите числовые столбцы для отрисовки гистограммы"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9559,9 +9769,6 @@ msgstr "Отправить как PNG"
 msgid "Send as text"
 msgstr "Отправить текстом"
 
-msgid "Send range filter events to other charts"
-msgstr ""
-
 msgid "September"
 msgstr "Сентябрь"
 
@@ -9574,13 +9781,6 @@ msgstr "По ряду"
 msgid "Series Height"
 msgstr "Высота рядов"
 
-msgid "Series Limit Sort By"
-msgstr "Сортировка категорий по"
-
-#, fuzzy
-msgid "Series Limit Sort Descending"
-msgstr "Сортировать"
-
 msgid "Series Order"
 msgstr "Порядок рядов"
 
@@ -9608,6 +9808,10 @@ msgstr "Серверная пагинация"
 msgid "Service Account"
 msgstr "Сервисный аккаунт"
 
+#, fuzzy
+msgid "Service version"
+msgstr "Сервисный аккаунт"
+
 msgid "Set auto-refresh interval"
 msgstr "Задать интервал обновления"
 
@@ -9639,6 +9843,10 @@ msgstr "Настройки"
 msgid "Settings for time series"
 msgstr "Настройки временных рядов"
 
+#, fuzzy
+msgid "Shape"
+msgstr "Форма круговой диаграммы"
+
 msgid "Share"
 msgstr "Поделиться"
 
@@ -9704,18 +9912,9 @@ msgstr "Показать выражение CREATE VIEW"
 msgid "Show Cell bars"
 msgstr "Наложить гистограммы на ячейки"
 
-msgid "Show Chart"
-msgstr "Показать диаграмму"
-
-msgid "Show Column"
-msgstr "Показать столбец"
-
 msgid "Show Dashboard"
 msgstr "Показать дашборд"
 
-msgid "Show Database"
-msgstr "Показать базу данных"
-
 msgid "Show Labels"
 msgstr "Показать метки"
 
@@ -9725,18 +9924,12 @@ msgstr "Показать запись"
 msgid "Show Markers"
 msgstr "Показать маркеры"
 
-msgid "Show Metric"
-msgstr "Показать меру"
-
 msgid "Show Metric Names"
 msgstr "Показать имена мер"
 
 msgid "Show Range Filter"
 msgstr "Показать фильтр Диапазон"
 
-msgid "Show Table"
-msgstr "Показать таблицу"
-
 msgid "Show Timestamp"
 msgstr "Показать метку времени"
 
@@ -9769,9 +9962,6 @@ msgstr "Показывать ось Y на спарклайне."
 msgid "Show all columns"
 msgstr "Показать все столбцы"
 
-msgid "Show all..."
-msgstr "Показать все..."
-
 msgid "Show axis line ticks"
 msgstr "Показывать деления на оси"
 
@@ -9793,6 +9983,10 @@ msgstr ""
 msgid "Show empty columns"
 msgstr "Показывать пустые столбцы"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "Показать меру"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9815,9 +10009,6 @@ msgstr "Показать легенду"
 msgid "Show less columns"
 msgstr "Показать меньше столбцов"
 
-msgid "Show less..."
-msgstr "Показать меньше..."
-
 msgid "Show minor ticks on axes."
 msgstr "Показать промежуточные деления на оси"
 
@@ -9854,6 +10045,10 @@ msgstr "Показать итог"
 msgid "Show the value on top of the bar"
 msgstr "Показать значение в верхней части столбца"
 
+#, fuzzy
+msgid "Show total"
+msgstr "Показать общий итог"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9901,8 +10096,8 @@ msgstr ""
 "Демонстрирует прогресс одного показателя по отношению к заданной цели. "
 "Чем больше заполнение, тем ближе показатель к целевому показателю."
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "Показано %s из %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -9935,18 +10130,16 @@ msgstr "Одиночное значение"
 msgid "Single value type"
 msgstr "Тип единственного значения"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "Определяет размер сетки (в пикселях)"
+
 msgid "Size of edge symbols"
 msgstr "Размер маркеров"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "Размер маркера. Также применяется к прогнозным значениям."
 
-msgid "Sizes of vehicles"
-msgstr ""
-
-msgid "Skip Rows"
-msgstr "Пропустить"
-
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
 msgstr "Пропускать пустые строки, вместо их перевода в пустые строки (NaN)"
 
@@ -10019,9 +10212,6 @@ msgstr "Извините, что-то пошло не так. Попробуйт
 msgid "Sorry, something went wrong. Try again later."
 msgstr "Извините, что-то пошло не так. Попробуйте еще раз позже."
 
-msgid "Sorry, there appears to be no data"
-msgstr "Извините, похоже, что данные отсутствуют"
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr "Произошла ошибка при сохранении дашборда %s: %s"
@@ -10041,9 +10231,6 @@ msgstr ""
 msgid "Sort"
 msgstr "Сортировка"
 
-msgid "Sort Bars"
-msgstr "Сортировать столбцы"
-
 msgid "Sort Descending"
 msgstr "Сортировать по убыванию"
 
@@ -10065,9 +10252,6 @@ msgstr "Сортировка оси Y"
 msgid "Sort ascending"
 msgstr "По возрастанию"
 
-msgid "Sort bars by x labels."
-msgstr "Сортировать столбцы по меткам на оси X"
-
 msgid "Sort by"
 msgstr "Сортировка"
 
@@ -10093,6 +10277,10 @@ msgstr "Сортировать отфильтрованные значения"
 msgid "Sort metric"
 msgstr "Показатель для сортировки"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "Экспорт запроса"
+
 msgid "Sort rows by"
 msgstr "Сортировка строк по"
 
@@ -10105,9 +10293,6 @@ msgstr "Тип сортировки"
 msgid "Source"
 msgstr "Источник"
 
-msgid "Source / Target"
-msgstr "Источник / Цель"
-
 msgid "Source SQL"
 msgstr "Исходный SQL"
 
@@ -10151,9 +10336,6 @@ msgstr "Квадратные мили"
 msgid "Stack"
 msgstr "Стопка"
 
-msgid "Stack Trace:"
-msgstr ""
-
 msgid "Stack series"
 msgstr "Использовать накопление"
 
@@ -10169,9 +10351,6 @@ msgstr "Столбцы с накоплением"
 msgid "Stacked Style"
 msgstr "Стиль накопления"
 
-msgid "Stacked style"
-msgstr "Стиль накопления"
-
 msgid "Standard time series"
 msgstr ""
 
@@ -10274,9 +10453,6 @@ msgstr "Схема"
 msgid "Strength to pull the graph toward center"
 msgstr "Сила притяжения вершин к центру"
 
-msgid "Stretched style"
-msgstr ""
-
 msgid "Stroke Color"
 msgstr "Цвет обводки"
 
@@ -10298,15 +10474,20 @@ msgstr "Скруглять элементы визуализации"
 msgid "Subdomain"
 msgstr "Подблок"
 
-msgid "Subheader"
-msgstr "Подзаголовок"
-
 msgid "Subheader Font Size"
 msgstr "Размер шрифта подзаголовка"
 
 msgid "Submit"
 msgstr "Отправить"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "Имя вкладки"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Размер маркера"
+
 msgid "Subtotal"
 msgstr "Подытог"
 
@@ -10358,9 +10539,6 @@ msgstr ""
 msgid "Superset chart"
 msgstr "Диаграмма Superset"
 
-msgid "Superset dashboard"
-msgstr "Дашборд Superset"
-
 msgid "Superset encountered an error while running a command."
 msgstr "Superset столкнулся с ошибкой во время выполнения команды"
 
@@ -10370,9 +10548,6 @@ msgstr "Superset столкнулся с неожиданной ошибкой"
 msgid "Supported databases"
 msgstr "Поддерживаемые базы данных"
 
-msgid "Survey Responses"
-msgstr ""
-
 msgid "Swap dataset"
 msgstr "Выбрать другой датасет"
 
@@ -10388,6 +10563,12 @@ msgstr ""
 "графиком, ступенчатым графиком и гистограммой. В этой диаграмме есть "
 "множество настроек."
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr "Маркер"
 
@@ -10397,9 +10578,20 @@ msgstr "Оформление концов ребра графа"
 msgid "Symbol size"
 msgstr "Размер маркера"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "Синхронизировать из источника"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr ""
 
@@ -10412,9 +10604,6 @@ msgstr ""
 msgid "TABLES"
 msgstr "ТАБЛИЦЫ"
 
-msgid "TEMPORAL X-AXIS"
-msgstr "Ось дат"
-
 #, fuzzy
 msgid "TEMPORAL_RANGE"
 msgstr "Содержит дату/время"
@@ -10453,6 +10642,10 @@ msgstr ""
 "Не удается найти таблицу \"%(table_name)s\". Проверьте ваше соединение с "
 "базой данных, схему и имя таблицы"
 
+#, fuzzy
+msgid "Table actions"
+msgstr "Столбцы таблицы"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10464,6 +10657,10 @@ msgstr "Время жизни кэша таблицы"
 msgid "Table columns"
 msgstr "Столбцы таблицы"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Имя таблицы"
+
 msgid "Table name undefined"
 msgstr "Имя таблицы не определено"
 
@@ -10528,13 +10725,6 @@ msgstr "Не удалось удалить тег"
 msgid "Tags"
 msgstr "Теги"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-"Сгруппируйте точки данных в бины, чтобы увидеть самые плотные скопления "
-"данных"
-
 msgid "Target"
 msgstr "Цель"
 
@@ -10561,6 +10751,10 @@ msgstr ""
 "Шаблонная ссылка, можно включить {{ metric }} или другие значения, "
 "поступающие из элементов управления."
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "Дата/время"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10615,9 +10809,6 @@ msgstr ""
 "Диаграмма принимает данные в формате GeoJSON и отображает их в виде "
 "интерактивных полигонов, линий и точек (кругов, значков и/или текста)"
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr "SQL-запрос сформирован некорректно и не может быть распознан"
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10647,6 +10838,10 @@ msgstr "Аннотация сохранена"
 msgid "The annotation has been updated"
 msgstr "Аннотация обновлена"
 
+#, fuzzy
+msgid "The background color of the charts."
+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."
@@ -10680,6 +10875,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr "Цвет для маркеров и кластеров в RGB"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "Показатель, по которому сортировать результаты"
+
 #, fuzzy
 msgid "The color of the isoband"
 msgstr "Показатель, по которому сортировать результаты"
@@ -10698,6 +10897,12 @@ msgstr ""
 "Цветовая схема определена соответствующим дашбордом.\n"
 "              Измените цветовую схему в свойствах дашборда."
 
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+
 msgid "The column header label"
 msgstr "Заголовок столбца"
 
@@ -10710,6 +10915,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr "Столбец был удален или переименован в базе данных"
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10721,24 +10932,9 @@ msgstr "Дашборд сохранен"
 msgid "The data source seems to have been deleted"
 msgstr "Похоже, источник данных был удален"
 
-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 ""
-"Типы были получены из базы данных. Возможно, в некоторых случаях "
-"потребуется вручную определить тип для столбцов, заданных выражениями."
-
-#, 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. Вы уверены, что"
-" хотите продолжить? Удаление базы данных приведет к неработоспособности "
-"этих компонентов."
+#, fuzzy
+msgid "The database"
+msgstr "Удалить базу данных"
 
 msgid "The database columns that contains lines information"
 msgstr ""
@@ -10773,15 +10969,9 @@ msgstr "База данных была удалена"
 msgid "The database was not found."
 msgstr "Не удалось найти базу данных"
 
-#, 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 дашборде(ах). Вы уверены, "
-"что хотите продолжить? Удаление датасета приведет к неработоспособности "
-"этих объектов."
+#, fuzzy
+msgid "The dataset"
+msgstr "Новый датасет"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "Датасет, связанный с этой диаграммой, больше не существует"
@@ -10849,6 +11039,15 @@ msgid ""
 "call."
 msgstr "Объект engine_params вызывает sqlalchemy.create_engine"
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, fuzzy, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10866,6 +11065,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr "Функция, которую нужно использовать для объединения точек в группы"
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10903,26 +11105,12 @@ msgid "The id of the active chart"
 msgstr "ID активной диаграммы"
 
 #, fuzzy
-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 "The layer attribution"
+msgstr "Параметры, связанные со временем"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-"Максимальное количество возвращаемых событий. Эквивалентно количеству "
-"строк."
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10960,6 +11148,19 @@ msgstr ""
 "этому можно будет избежать скачка значений на протяжении первых семи "
 "дней, когда данных для расчета еще мало."
 
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "Максимальное значение мер. Это необязательная настройка"
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Столбец с ID элементов"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 #, fuzzy
 msgid "The name of the rule must be unique"
 msgstr "Имя должно быть уникальным"
@@ -11207,6 +11408,9 @@ msgstr ""
 "числу. Например, 1, 1.0 или \"1\" (значения, совместимые с функцией "
 "float() из Python)."
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr "Сервер не сохранил данные из этого запроса"
 
@@ -11254,11 +11458,16 @@ msgstr "Схема была удалена или переименована в
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "Рассылка создана"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
-msgstr ""
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "Показать значения категорий на диаграмме"
 
 #, fuzzy
 msgid "The size of each cell in meters"
@@ -11267,6 +11476,9 @@ msgstr "Размер ячейки в метрах"
 msgid "The size of the square cell, in pixels"
 msgstr "Размер квадратной ячейки (в пикселях)"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr "Не удалось проверить формат загруженных данных"
 
@@ -11292,13 +11504,6 @@ msgstr ""
 "Таблица \"%(table_name)s\" не существует. Для выполнения запроса "
 "используйте существующую таблицу."
 
-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 "The table was deleted or renamed in the database."
 msgstr "Таблица была удалена или переименована в базе данных"
 
@@ -11365,6 +11570,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr "Единица времени для группировки блоков"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "Задайте имя диаграммы"
+
 msgid "The type of visualization to display"
 msgstr "Выберите тип визуализации"
 
@@ -11388,6 +11597,14 @@ msgstr "Пользователь \"%(username)s\" не существует"
 msgid "The username provided when connecting to a database is not valid."
 msgstr "Имя пользователя, указанное при подключении к базе данных, недействительно"
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "Выберите позицию легенды"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "Показать значение в верхней части столбца"
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "Способ расположения делений по оси X"
 
@@ -11395,6 +11612,13 @@ msgstr "Способ расположения делений по оси X"
 msgid "The width of the Isoline in pixels"
 msgstr "Ширина линий"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "Ширина линий"
+
 msgid "The width of the lines"
 msgstr "Ширина линий"
 
@@ -11411,9 +11635,6 @@ msgstr "На этот дашборд еще не добавлена ни одн
 msgid "There are no components added to this tab"
 msgstr "В этой вкладке нет компонентов"
 
-msgid "There are no databases available"
-msgstr "Нет доступных баз данных"
-
 msgid "There are no filters in this dashboard."
 msgstr "В этом дашборде нет фильтров"
 
@@ -11427,6 +11648,10 @@ msgstr ""
 "В SQL-запросе имеется синтаксическая ошибка. Возможно, это "
 "орфографическая ошибка или опечатка."
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "Выберите тип визуализации"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11455,6 +11680,10 @@ msgstr "Произошла ошибка при получении статуса
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Произошла ошибка при получении статуса избранного: %s"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Произошла ошибка при загрузке схем"
+
 msgid "There was an error loading the catalogs"
 msgstr "Произошла ошибка при загрузке каталогов"
 
@@ -11470,6 +11699,10 @@ msgstr "Произошла ошибка при загрузке схем"
 msgid "There was an error loading the tables"
 msgstr "Произошла ошибка при загрузке таблиц"
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr "Произошла ошибка при сохранении дашборда: %s"
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr "Произошла ошибка при сохранении статуса избранного: %s"
@@ -11477,6 +11710,10 @@ msgstr "Произошла ошибка при сохранении статус
 msgid "There was an error with your request"
 msgstr "Произошла ошибка с вашим запросом"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Произошла ошибка при удалении: %s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "Произошла ошибка при удалении %s: %s"
@@ -11560,23 +11797,9 @@ msgstr "Произошла ошибка при предпросмотре выб
 msgid "There was an issue previewing the selected query. %s"
 msgstr "Произошла ошибка при предпросмотре выбранного запроса: %s"
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr "Ваша Sankey-диаграмма содержит циклическую связь между элементами: {}"
-
 msgid "These are the datasets this filter will be applied to."
 msgstr "Фильтр будет применен к этим датасетам"
 
-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 ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11592,12 +11815,20 @@ msgstr "Это действие навсегда удалит %s"
 msgid "This action will permanently delete the layer."
 msgstr "Это действие навсегда удалит слой"
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "Это действие навсегда удалит слой"
+
 msgid "This action will permanently delete the saved query."
 msgstr "Это действие навсегда удалит сохраненный запрос"
 
 msgid "This action will permanently delete the template."
 msgstr "Это действие навсегда удалит шаблон"
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "Это действие навсегда удалит слой"
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11630,11 +11861,6 @@ msgstr ""
 "Для этого типа диаграммы нельзя использовать несохраненный запрос в "
 "качестве источника. "
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-
 msgid "This column might be incompatible with current dataset"
 msgstr "Эта диаграмма может быть несовместима с этим датасетом"
 
@@ -11716,6 +11942,12 @@ msgstr "Этот дашборд можно встроить. Передайте
 msgid "This dashboard was saved successfully."
 msgstr "Дашборд сохранен"
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr "Эта база данных управляется извне и не может быть изменена в Superset"
 
@@ -11733,6 +11965,9 @@ msgstr "Этот датасет не используется на диагра
 msgid "This defines the element to be plotted on the chart"
 msgstr "Элемент, который будет отражен на диаграмме"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11748,13 +11983,6 @@ msgstr ""
 "Это поле используется как уникальный идентификатор меры при добавлении ее"
 " на диаграммы. Также оно используется в качестве алиаса в SQL-запросе."
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr ""
-"Эти поля аналогичны представлениям. Это значит, что Superset будет "
-"генерировать подзапрос при обращении к ним."
-
 msgid "This filter might be incompatible with current dataset"
 msgstr "Этот фильтр может быть несовместим с этим датасетом"
 
@@ -11791,15 +12019,6 @@ msgstr "Этот компонент содержит ошибки. Пожалу
 msgid "This may be triggered by:"
 msgstr "Возможные причины:"
 
-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 ""
-"Мера, используемая для сортировки строк, если включено ограничение по "
-"количеству категорий или строк. Если не указано, используется первая из "
-"мер (где это уместно)."
-
 msgid "This metric might be incompatible with current dataset"
 msgstr "Эта мера может быть несовместима с этим датасетом"
 
@@ -11844,6 +12063,9 @@ msgstr ""
 "Для этой таблицы уже есть связанный датасет. Можно связать только один "
 "датасет с таблицей.\n"
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr "Это значение должно быть больше чем левое целевое значение"
 
@@ -11924,9 +12146,6 @@ msgstr "Соотношение времени"
 msgid "Time Series"
 msgstr "Временной ряд"
 
-msgid "Time Series - Bar Chart"
-msgstr "Временные ряды - Столбчатая диаграмма"
-
 msgid "Time Series - Line Chart"
 msgstr "Временные ряды - График"
 
@@ -11942,9 +12161,6 @@ msgstr "Временные ряды - Процентное изменение"
 msgid "Time Series - Period Pivot"
 msgstr "Временные ряды - Period Pivot"
 
-msgid "Time Series - Stacked"
-msgstr "Временные ряды - Диаграмма с накоплением"
-
 msgid "Time Series Options"
 msgstr "Настройки временных рядов"
 
@@ -12040,15 +12256,6 @@ msgstr ""
 "Временная строка неоднозначна. Пожалуйста, укажите [%(human_readable)s "
 "до] или [%(human_readable)s после]."
 
-msgid "Time-series Area Chart (legacy)"
-msgstr "Диаграмма с областями (устарело)"
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Столбчатая диаграмма (устарело)"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr "График по времени (устарело)"
-
 msgid "Time-series Percent Change"
 msgstr "Процентное изменение (устарело)"
 
@@ -12068,9 +12275,6 @@ msgstr "Формат даты/времени"
 msgid "Timezone"
 msgstr "Часовой пояс"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Смещение часового пояса (в часах) для этого источника данных"
-
 msgid "Timezone selector"
 msgstr "Выбор часового пояса"
 
@@ -12089,6 +12293,11 @@ msgstr "Название обязательно"
 msgid "Title or Slug"
 msgstr "Название или читаемый URL"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "Для фильтрации по мере используйте вкладку Свой SQL."
 
@@ -12130,6 +12339,10 @@ msgstr "Итог (%(aggfunc)s)"
 msgid "Total (%(aggregatorName)s)"
 msgstr "Итого (%(aggregatorName)s)"
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "Итого: %s"
+
 msgid "Total value"
 msgstr "Итого"
 
@@ -12237,9 +12450,6 @@ msgstr "Введите значение здесь"
 msgid "Type is required"
 msgstr "Поле обязательно к заполнению"
 
-msgid "Type of Google Sheets allowed"
-msgstr "Допустимый тип Google Таблиц"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "Тип сравнения, разница значений или доля"
 
@@ -12331,9 +12541,15 @@ msgstr ""
 " попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта "
 "проблема не устранена."
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr "Не удалось получать цветовую схему дашборда"
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "Не определено"
 
@@ -12364,6 +12580,10 @@ msgstr ""
 msgid "Unexpected time range: %(error)s"
 msgstr "Неожиданный диапазон времени: %(error)s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "отмены"
+
 msgid "Unknown"
 msgstr "Неизвестно"
 
@@ -12402,6 +12622,10 @@ msgstr "<без типа>"
 msgid "Unknown value"
 msgstr "Неизвестная ошибка"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "Выполняется"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr "Небезопасный возвращаемый тип для функции %(func)s: %(value_type)s"
@@ -12465,9 +12689,6 @@ msgstr "Загрузить файл столбчатого формата"
 msgid "Upload Columnar file to database"
 msgstr "Загрузить файл столбчатого формата в базу данных"
 
-msgid "Upload Credentials"
-msgstr "Загрузить учетные данные"
-
 msgid "Upload Enabled"
 msgstr "Загрузка включена"
 
@@ -12487,6 +12708,10 @@ msgstr "Загрузить файл в базу данных"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr "Загрузите файл с корректным расширением: [%s]"
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Загрузить учетные данные"
+
 msgid "Upload file to database"
 msgstr "Загрузить файл в базу данных"
 
@@ -12538,12 +12763,13 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "Выполнить запрос"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr "Отформатировать как дату, даже если мера представлена другим типом данных"
 
-msgid "Use legacy datasource editor"
-msgstr "Использовать старый редактор"
-
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr "Использовать меры как группы верхнего уровня для столбцов или строк"
 
@@ -12553,11 +12779,6 @@ msgstr "Используйте только одно значение"
 msgid "Use the Advanced Analytics options below"
 msgstr "Используйте настройки Расширенной аналитики ниже"
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr "Используйте файл JSON, который вы скачали, создав сервисный аккаунт"
-
 msgid "Use the edit button to change this field"
 msgstr "Используйте кнопку редактирования для изменения поля"
 
@@ -12603,9 +12824,23 @@ msgstr "Для использования фильтра нужно будет 
 msgid "User query"
 msgstr "Пользовательский запрос"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "Имя пользователя"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Имя обязательно"
+
+#, fuzzy
+msgid "Users"
+msgstr "категории"
+
 #, fuzzy
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
@@ -12639,6 +12874,10 @@ msgstr ""
 " этапы прошло значение. Эта диаграмма удобна, когда нужно показать "
 "воронку или поток с несколькими этапами или группами."
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "Значение"
 
@@ -12664,9 +12903,16 @@ msgstr "Изменение между периодами"
 msgid "Value format"
 msgstr "Формат значения"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "Значение должно быть больше нуля"
+
 msgid "Value is required"
 msgstr "Значение обязательно"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "Значение должно быть больше нуля"
@@ -12685,12 +12931,6 @@ msgid ""
 "show relevant values"
 msgstr "Фильтр будет учитывать значения, выбранные в других фильтрах дашборда"
 
-msgid "Vehicle Types"
-msgstr ""
-
-msgid "Verbose Name"
-msgstr "Удобочитаемое имя"
-
 msgid "Version"
 msgstr "Версия"
 
@@ -12703,9 +12943,6 @@ msgstr "Вертикально"
 msgid "Vertical (Left)"
 msgstr "Вертикально (слева)"
 
-msgid "Video game consoles"
-msgstr "Игровые приставки"
-
 msgid "View"
 msgstr "Показать"
 
@@ -12747,9 +12984,6 @@ msgstr "Виртуальный"
 msgid "Virtual (SQL)"
 msgstr "Виртуальный (SQL)"
 
-msgid "Virtual dataset"
-msgstr "Виртуальный датасет"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "Запрос виртуального датасета не может быть пустым"
 
@@ -12792,14 +13026,6 @@ msgstr ""
 "Визуализирует гео-данные, такие как 3D-здания, ландшафты или объекты в "
 "виде сетки"
 
-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."
@@ -12858,16 +13084,6 @@ msgid ""
 "instead."
 msgstr ""
 
-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 ""
-"Показывает поток значений разных групп через различные этапы в системе. "
-"Этапы представлены в виде узлов или слоев. Размер баров или краев "
-"соответствует значению меры."
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -12884,6 +13100,12 @@ msgstr "Тип визуализации"
 msgid "WED"
 msgstr "СР"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr "Ждем %s"
@@ -12897,9 +13119,6 @@ msgstr "Хотите добавить новую базу данных?"
 msgid "Warning"
 msgstr "Предупреждение"
 
-msgid "Warning Message"
-msgstr "Предупреждение"
-
 msgid "Warning!"
 msgstr "Предупреждение!"
 
@@ -13053,13 +13272,6 @@ msgstr ""
 "Когда предоставляется вторичная мера, используется линейная цветовая "
 "схема."
 
-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 Lab, новые таблицы будут "
-"добавлены в эту схему"
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr ""
 "Если отмечено, карта будет масштабирована к вашим данным после каждого "
@@ -13091,6 +13303,11 @@ msgstr ""
 "Применять фильтр также к основному столбцу со временем, когда он "
 "применяется к дополнительным"
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -13113,20 +13330,14 @@ msgstr ""
 "Если выбрать не адаптивное форматирование, подписи могут накладываться "
 "друг на друга"
 
-msgid "When using this option, default value can’t be set"
-msgstr "При включении этой опции нельзя установить значение по умолчанию"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr "Накладывать индикатор прогресса при наличии нескольких групп данных"
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr ""
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -13164,6 +13375,10 @@ msgstr "Отобразить легенду для диаграммы"
 msgid "Whether to display bubbles on top of countries"
 msgstr "Отобразить пузырьки поверх стран"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Отобразить легенду для диаграммы"
+
 msgid "Whether to display the aggregate count"
 msgstr "Отобразить совокупное количество"
 
@@ -13173,13 +13388,6 @@ msgstr "Отобразить интерактивную таблицу с дан
 msgid "Whether to display the labels."
 msgstr "Отобразить метки"
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-"Отобразить метки. Обратите внимание, что метка отображается только при "
-"достижении порога в 5%."
-
 msgid "Whether to display the legend (toggles)"
 msgstr "Отобразить легенду (переключатель)"
 
@@ -13195,6 +13403,10 @@ msgstr "Отобразить минимальное и максимальное
 msgid "Whether to display the numerical values within the cells"
 msgstr "Отобразить значения"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Отобразить процентную долю во всплывающей подсказке"
+
 msgid "Whether to display the stroke"
 msgstr "Отобразить обводку"
 
@@ -13207,9 +13419,17 @@ msgstr "Отобразить временную метку"
 msgid "Whether to display the tooltip labels."
 msgstr "Отобразить всплывающую подсказку"
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Отобразить значения"
+
 msgid "Whether to display the trend line"
 msgstr "Отобразить линию тренда"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Отобразить совокупное количество"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr "Включить возможность изменения положения и масштаба диаграммы"
 
@@ -13236,34 +13456,16 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr "Сделать сетку 3D"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "Сделать гистограмму нарастающей"
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr ""
-"Чтобы этот столбец стал доступен в свойстве [Time Granularity], он должен"
-" быть в формате дата-время или подобном ему"
-
-msgid "Whether to normalize the histogram"
-msgstr "Нормировать гистограмму"
-
 msgid "Whether to populate autocomplete filters options"
 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 ""
-
 msgid "Whether to show as Nightingale chart."
 msgstr "Отобразить в виде диаграммы Найтингейл"
 
+#, fuzzy
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr ""
 "Отображает дополнительные элементы управления на диаграмме и позволяет "
 "менять отображение столбцов: без накопления и с ним"
@@ -13286,11 +13488,6 @@ msgstr "Сортировка основной оси по убыванию ил
 msgid "Whether to sort descending or ascending"
 msgstr "Сортировать по убыванию или по возрастанию"
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr ""
-"Сортировать по убыванию или по возрастанию, если есть ограничение на "
-"количество категорий"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr "Сортировка результатов по выбранной мере в порядке убывания"
 
@@ -13350,9 +13547,6 @@ msgstr "Заполните описание к вашему запросу"
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "Отступ от заголовка оси X снизу"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "Отступ заголовка оси X"
 
@@ -13371,6 +13565,10 @@ msgstr "Метка оси X"
 msgid "X Axis Title"
 msgstr "Название оси X"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Отступ заголовка оси Y"
+
 msgid "X Log Scale"
 msgstr "Логарифмическая ось X"
 
@@ -13392,6 +13590,9 @@ msgstr "Ось X"
 msgid "XScale Interval"
 msgstr "Интервал оси X"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Границы оси Y 2"
 
@@ -13518,6 +13719,19 @@ msgstr ""
 "существуют. Перезапись может привести к потере части вашей работы. Вы "
 "уверены, что хотите продолжить?"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr "Вы можете"
 
@@ -13591,9 +13805,6 @@ msgstr "Недостаточно прав для доступа к этому д
 msgid "You don't have access to this embedded dashboard config."
 msgstr "У вас нет прав на редактирование этого встраиваемого дашборда"
 
-msgid "You don't have any favorites yet!"
-msgstr "У вас пока нет избранных!"
-
 msgid "You don't have permission to modify the value."
 msgstr "Недостаточно прав для редактирования этого значения"
 
@@ -13673,6 +13884,9 @@ msgstr "Диаграмма неактуальна"
 msgid "Your chart is ready to go!"
 msgstr "Ваша диаграмма готова!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr ""
 "Дашборд слишком большой. Пожалуйста, уменьшите его размер перед "
@@ -13703,6 +13917,9 @@ msgstr "Ваш запрос был сохранен"
 msgid "Your query was updated"
 msgstr "Ваш запрос был сохранен"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "Не удается удалить рассылку"
 
@@ -13715,6 +13932,9 @@ msgstr "Нулевые значения"
 msgid "Zoom"
 msgstr "Масштабирование"
 
+msgid "Zoom level"
+msgstr ""
+
 msgid "Zoom level of the map"
 msgstr "Уровень масштабирования карты"
 
@@ -13839,9 +14059,6 @@ msgstr "в"
 msgid "auto"
 msgstr "автоматически"
 
-msgid "auto (Smooth)"
-msgstr "автоматически (плавно)"
-
 msgid "background"
 msgstr ""
 
@@ -13890,9 +14107,6 @@ msgstr "изменение"
 msgid "chart"
 msgstr "диаграмма"
 
-msgid "charts"
-msgstr "диаграмм(ы)"
-
 msgid "choose WHERE or HAVING..."
 msgstr "выберите WHERE или HAVING..."
 
@@ -13902,6 +14116,10 @@ msgstr "сбросить все фильтры"
 msgid "click here"
 msgstr "нажмите сюда"
 
+#, fuzzy
+msgid "close"
+msgstr "Закрыть"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr "код ISO 3166-1 alpha-2 (cca2)"
 
@@ -13953,15 +14171,9 @@ msgstr "шаблон_css"
 msgid "cumsum"
 msgstr "кумулятивная сумма"
 
-msgid "cumulative"
-msgstr "кумулятивно"
-
 msgid "dashboard"
 msgstr "дашборд"
 
-msgid "dashboards"
-msgstr "дашборды(ов)"
-
 msgid "database"
 msgstr "база данных"
 
@@ -14025,9 +14237,6 @@ msgstr "карта deckGL"
 msgid "default"
 msgstr "по умолчанию"
 
-msgid "delete"
-msgstr "удалить"
-
 msgid "descendant"
 msgstr "потомок"
 
@@ -14041,9 +14250,6 @@ msgstr "Продолжительность"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr "диалект+драйвер://пользователь:пароль@хост:порт/схема"
 
-msgid "draft"
-msgstr "черновик"
-
 msgid "dttm"
 msgstr "Дата и время"
 
@@ -14084,9 +14290,6 @@ msgstr "например, world_population"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "например, xy12345.us-east-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "например, столбец \"идентификатор пользователя\""
-
 msgid "edit mode"
 msgstr "режиме редактирования"
 
@@ -14097,6 +14300,10 @@ msgstr ""
 msgid "entries"
 msgstr "категории"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "категории"
+
 msgid "error"
 msgstr "ошибка"
 
@@ -14166,11 +14373,6 @@ msgstr "здесь"
 msgid "hour"
 msgstr "час"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-
 msgid "in"
 msgstr "в"
 
@@ -14181,6 +14383,10 @@ msgstr "в модальном окне"
 msgid "invalid email"
 msgstr "Некорректная постоянная ссылка"
 
+#, fuzzy
+msgid "is"
+msgstr "Бины"
+
 msgid "is expected to be a Mapbox URL"
 msgstr "ожидается URL-адрес Mapbox"
 
@@ -14190,6 +14396,29 @@ msgstr "ожидается число"
 msgid "is expected to be an integer"
 msgstr "ожидается целое число"
 
+#, fuzzy, python-format
+msgid ""
+"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. Вы уверены, что"
+" хотите продолжить? Удаление базы данных приведет к неработоспособности "
+"этих компонентов."
+
+#, fuzzy, python-format
+msgid ""
+"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 дашборде(ах). Вы уверены, "
+"что хотите продолжить? Удаление датасета приведет к неработоспособности "
+"этих объектов."
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "по алфавиту А-Я"
 
@@ -14317,19 +14546,10 @@ msgstr "p99"
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr ""
-
-msgid "page_size.show"
-msgstr ""
-
 #, fuzzy
 msgid "pending"
 msgstr "Отрисовка"
 
-msgid "percentile (exclusive)"
-msgstr "процентиль (исключая)"
-
 #, fuzzy
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
@@ -14341,9 +14561,6 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "состояние постоянной ссылки не найдено"
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 #, fuzzy
 msgid "pixels"
 msgstr "пиксели"
@@ -14351,15 +14568,16 @@ msgstr "пиксели"
 msgid "previous calendar month"
 msgstr "предыдущий календарный месяц"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "предыдущий календарный год"
+
 msgid "previous calendar week"
 msgstr "предыдущая календарная неделя"
 
 msgid "previous calendar year"
 msgstr "предыдущий календарный год"
 
-msgid "published"
-msgstr "опубликовано"
-
 msgid "quarter"
 msgstr "квартал"
 
@@ -14378,9 +14596,6 @@ msgstr "обновить"
 msgid "recent"
 msgstr "недавние"
 
-msgid "recents"
-msgstr "недавние(их)"
-
 msgid "recipients"
 msgstr "получатели"
 
@@ -14403,8 +14618,9 @@ msgstr "безопасность на уровне строк"
 msgid "running"
 msgstr "Выполняется"
 
-msgid "saved queries"
-msgstr "сохраненные(ых) запросы(ов)"
+#, fuzzy
+msgid "save"
+msgstr "Сохранить"
 
 msgid "seconds"
 msgstr "секунд"
@@ -14421,10 +14637,6 @@ msgstr ""
 "масштабируются одинаково. \"Изменение\" - показывать изменения "
 "относительно первого значения в каждом ряду."
 
-#, fuzzy
-msgid "shift start date"
-msgstr "Дата начала"
-
 msgid "sql"
 msgstr ""
 
@@ -14482,9 +14694,6 @@ msgstr ""
 msgid "textarea"
 msgstr "текстовая область"
 
-msgid "to"
-msgstr "по"
-
 msgid "top"
 msgstr "сверху"
 
@@ -14494,6 +14703,14 @@ msgstr "отмены"
 msgid "unknown type icon"
 msgstr ""
 
+#, fuzzy
+msgid "unset"
+msgstr "Июнь"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "Обновлено: %s"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14520,9 +14737,6 @@ msgstr "дисперсия"
 msgid "view instructions"
 msgstr "посмотреть руководство"
 
-msgid "virtual"
-msgstr "виртуальный"
-
 msgid "viz type"
 msgstr "тип визуализации"
 
@@ -14558,3 +14772,6 @@ msgstr "год"
 
 msgid "zoom area"
 msgstr ""
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/sk/LC_MESSAGES/messages.po b/superset/translations/sk/LC_MESSAGES/messages.po
index d1ce35080bdbd664d249e4605b6b2461de82aa66..6ecd3b2e5a6b297c40d6bdb239594e55ce84a6c2 100644
--- a/superset/translations/sk/LC_MESSAGES/messages.po
+++ b/superset/translations/sk/LC_MESSAGES/messages.po
@@ -17,16 +17,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2021-05-24 15:59+0200\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language: sk\n"
 "Language-Team: sk <LL@li.org>\n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -66,7 +66,10 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
 
@@ -85,9 +88,17 @@ msgstr "Importovať dashboard"
 msgid " a new one"
 msgstr ""
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr ""
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr ""
 
@@ -146,10 +157,7 @@ msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr ""
 
 #, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
+msgid "%(label)s file"
 msgstr ""
 
 #, python-format
@@ -164,22 +172,6 @@ msgstr ""
 msgid "%(object)s does not exist in this database."
 msgstr ""
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr ""
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr ""
@@ -195,13 +187,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr ""
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -211,10 +196,6 @@ msgstr[0] ""
 msgstr[1] ""
 msgstr[2] ""
 
-#, python-format
-msgid "%(type)s File"
-msgstr ""
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -266,10 +247,6 @@ msgstr ""
 msgid "%s column(s)"
 msgstr ""
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -361,6 +338,10 @@ msgid ""
 "\n"
 msgstr ""
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr ""
 
@@ -421,6 +402,12 @@ msgstr ""
 msgid "10 minute"
 msgstr ""
 
+msgid "10/90 percentiles"
+msgstr ""
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr ""
 
@@ -517,6 +504,9 @@ msgstr ""
 msgid "5 seconds"
 msgstr ""
 
+msgid "5/95 percentiles"
+msgstr ""
+
 msgid "52 weeks"
 msgstr ""
 
@@ -583,9 +573,6 @@ msgstr ""
 msgid "A Big Number"
 msgstr ""
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr ""
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr ""
 
@@ -595,6 +582,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr ""
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -667,11 +657,6 @@ msgid ""
 "templating syntax"
 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 ""
 
@@ -768,25 +753,25 @@ msgstr ""
 msgid "Add CSS template"
 msgstr ""
 
-msgid "Add Chart"
+msgid "Add Dashboard"
 msgstr ""
 
-msgid "Add Column"
+msgid "Add Divider"
 msgstr ""
 
-msgid "Add Dashboard"
+msgid "Add Filter"
 msgstr ""
 
-msgid "Add Database"
+msgid "Add Layer"
 msgstr ""
 
 msgid "Add Log"
 msgstr ""
 
-msgid "Add Metric"
+msgid "Add Report"
 msgstr ""
 
-msgid "Add Report"
+msgid "Add Role"
 msgstr ""
 
 msgid "Add Rule"
@@ -795,6 +780,9 @@ msgstr ""
 msgid "Add Tag"
 msgstr ""
 
+msgid "Add User"
+msgstr ""
+
 msgid "Add a Plugin"
 msgstr ""
 
@@ -871,9 +859,6 @@ msgid ""
 "displayed in the filter."
 msgstr ""
 
-msgid "Add filters and dividers"
-msgstr ""
-
 msgid "Add item"
 msgstr ""
 
@@ -889,6 +874,9 @@ msgstr ""
 msgid "Add new formatter"
 msgstr ""
 
+msgid "Add or edit filters"
+msgstr ""
+
 msgid "Add required control values to preview chart"
 msgstr ""
 
@@ -910,12 +898,16 @@ msgstr ""
 msgid "Add to dashboard"
 msgstr ""
 
-msgid "Add/Edit Filters"
-msgstr ""
-
 msgid "Added"
 msgstr ""
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -932,9 +924,6 @@ msgstr ""
 msgid "Additional information"
 msgstr ""
 
-msgid "Additional metadata"
-msgstr ""
-
 msgid "Additional padding for legend."
 msgstr ""
 
@@ -998,6 +987,14 @@ msgstr ""
 msgid "Advanced-Analytics"
 msgstr ""
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Grafy"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Importovať dashboard"
+
 msgid "After"
 msgstr ""
 
@@ -1028,6 +1025,9 @@ msgstr ""
 msgid "Aggregation"
 msgstr ""
 
+msgid "Aggregation Method"
+msgstr ""
+
 msgid "Aggregation function"
 msgstr ""
 
@@ -1106,6 +1106,10 @@ msgstr ""
 msgid "All"
 msgstr ""
 
+#, python-format
+msgid "All %s hidden columns"
+msgstr ""
+
 msgid "All Text"
 msgstr ""
 
@@ -1121,25 +1125,13 @@ msgstr ""
 msgid "All panels"
 msgstr ""
 
-msgid "All panels with this column will be affected by this filter"
-msgstr ""
-
 msgid "Allow CREATE TABLE AS"
 msgstr ""
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr ""
-
 msgid "Allow CREATE VIEW AS"
 msgstr ""
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr ""
-
-msgid "Allow Csv Upload"
-msgstr ""
-
-msgid "Allow DML"
+msgid "Allow DDL and DML"
 msgstr ""
 
 msgid "Allow changing catalogs"
@@ -1156,6 +1148,9 @@ msgstr ""
 msgid "Allow creation of new tables based on queries"
 msgstr ""
 
+msgid "Allow creation of new values"
+msgstr ""
+
 msgid "Allow creation of new views based on queries"
 msgstr ""
 
@@ -1170,26 +1165,22 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr ""
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-
 msgid "Allow node selections"
 msgstr ""
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr ""
 
-msgid "Allow this database to be explored"
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
 msgstr ""
 
-msgid "Allow this database to be queried in SQL Lab"
+msgid "Allow this database to be explored"
 msgstr ""
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
+msgid "Allow this database to be queried in SQL Lab"
 msgstr ""
 
 msgid "Allowed Domains (comma separated)"
@@ -1231,6 +1222,9 @@ msgstr ""
 msgid "An error has occurred"
 msgstr ""
 
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr ""
+
 msgid "An error occurred"
 msgstr ""
 
@@ -1240,6 +1234,9 @@ msgstr ""
 msgid "An error occurred when running alert query"
 msgstr ""
 
+msgid "An error occurred while accessing the copy link."
+msgstr ""
+
 msgid "An error occurred while accessing the value."
 msgstr ""
 
@@ -1252,6 +1249,9 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr ""
 
+msgid "An error occurred while creating the copy link."
+msgstr ""
+
 msgid "An error occurred while creating the data source"
 msgstr ""
 
@@ -1385,6 +1385,10 @@ msgid ""
 "button."
 msgstr ""
 
+#, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr ""
+
 msgid "An error occurred while updating the value."
 msgstr ""
 
@@ -1575,12 +1579,6 @@ msgstr ""
 msgid "Apply metrics on"
 msgstr ""
 
-msgid "Apply to all panels"
-msgstr ""
-
-msgid "Apply to specific panels"
-msgstr ""
-
 msgid "April"
 msgstr ""
 
@@ -1622,6 +1620,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected queries?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected roles?"
+msgstr ""
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr ""
 
@@ -1631,6 +1632,9 @@ msgstr ""
 msgid "Are you sure you want to delete the selected templates?"
 msgstr ""
 
+msgid "Are you sure you want to delete the selected users?"
+msgstr ""
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr ""
 
@@ -1667,13 +1671,10 @@ msgstr ""
 msgid "Assist"
 msgstr ""
 
-msgid "Associated Charts"
-msgstr ""
-
-msgid "Async Execution"
+msgid "Asynchronous query execution"
 msgstr ""
 
-msgid "Asynchronous query execution"
+msgid "Attribution"
 msgstr ""
 
 msgid "August"
@@ -1700,6 +1701,15 @@ msgstr ""
 msgid "Automatic Color"
 msgstr ""
 
+msgid "Autosize Column"
+msgstr ""
+
+msgid "Autosize all columns"
+msgstr ""
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr ""
 
@@ -1707,6 +1717,9 @@ msgstr ""
 msgid "Average"
 msgstr "Spravovať"
 
+msgid "Average (Mean)"
+msgstr ""
+
 #, fuzzy
 msgid "Average value"
 msgstr "Spravovať"
@@ -1744,6 +1757,9 @@ msgstr ""
 msgid "Backend"
 msgstr ""
 
+msgid "Background Color"
+msgstr ""
+
 msgid "Backward values"
 msgstr ""
 
@@ -1759,9 +1775,6 @@ msgstr ""
 msgid "Bar Chart"
 msgstr ""
 
-msgid "Bar Chart (legacy)"
-msgstr ""
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
 
@@ -1775,10 +1788,22 @@ msgstr ""
 msgid "Base"
 msgstr "Databázy"
 
+msgid "Base exponent"
+msgstr ""
+
+msgid "Base height"
+msgstr ""
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+msgid "Base width"
+msgstr ""
+
 msgid "Based on a metric"
 msgstr ""
 
@@ -1798,9 +1823,6 @@ msgstr ""
 msgid "Batch editing %d filters:"
 msgstr ""
 
-msgid "Battery level over time"
-msgstr ""
-
 msgid "Be careful."
 msgstr ""
 
@@ -1822,6 +1844,13 @@ msgstr ""
 msgid "Bins"
 msgstr ""
 
+#, fuzzy
+msgid "Border color"
+msgstr "Uložené dotazy"
+
+msgid "Border width"
+msgstr ""
+
 msgid "Bottom"
 msgstr ""
 
@@ -1926,9 +1955,6 @@ msgstr ""
 msgid "Business"
 msgstr ""
 
-msgid "Business Data Type"
-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"
@@ -1993,7 +2019,7 @@ msgstr ""
 msgid "CSS templates could not be deleted."
 msgstr ""
 
-msgid "CSV Upload"
+msgid "CSV upload"
 msgstr ""
 
 msgid "CTAS & CVAS SCHEMA"
@@ -2005,7 +2031,7 @@ msgid ""
 "last statement. Then, try running your query again."
 msgstr ""
 
-msgid "CTAS Schema"
+msgid "CUSTOM"
 msgstr ""
 
 msgid ""
@@ -2020,9 +2046,6 @@ msgstr ""
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr ""
 
-msgid "Cache Timeout"
-msgstr ""
-
 msgid "Cache Timeout (seconds)"
 msgstr ""
 
@@ -2067,9 +2090,6 @@ msgstr ""
 msgid "Can select multiple values"
 msgstr ""
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr ""
-
 msgid "Cancel"
 msgstr ""
 
@@ -2082,6 +2102,10 @@ msgstr ""
 msgid "Cannot delete a database that has datasets attached"
 msgstr ""
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr ""
 
@@ -2092,6 +2116,9 @@ msgstr ""
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr ""
 
+msgid "Cartodiagram"
+msgstr ""
+
 msgid "Catalog"
 msgstr ""
 
@@ -2169,13 +2196,14 @@ msgstr ""
 msgid "Change order of rows."
 msgstr ""
 
-msgid "Changed By"
-msgstr ""
-
 #, fuzzy
 msgid "Changed by"
 msgstr "Spravovať"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "Spravovať"
+
 msgid "Changes saved."
 msgstr ""
 
@@ -2223,9 +2251,6 @@ msgstr ""
 msgid "Chart %(id)s not found"
 msgstr ""
 
-msgid "Chart Cache Timeout"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "Chart Data: %s"
 msgstr "Grafy"
@@ -2323,6 +2348,10 @@ msgstr ""
 msgid "Chart properties updated"
 msgstr ""
 
+#, fuzzy
+msgid "Chart size"
+msgstr "Grafy"
+
 msgid "Chart title"
 msgstr ""
 
@@ -2370,6 +2399,9 @@ msgstr ""
 msgid "Choose File"
 msgstr ""
 
+msgid "Choose a chart for displaying on the map"
+msgstr ""
+
 msgid "Choose a chart or dashboard not both"
 msgstr ""
 
@@ -2391,9 +2423,6 @@ msgstr ""
 msgid "Choose a source"
 msgstr ""
 
-msgid "Choose a source and a target"
-msgstr ""
-
 msgid "Choose a target"
 msgstr ""
 
@@ -2467,9 +2496,6 @@ msgstr ""
 msgid "Circular"
 msgstr ""
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2490,7 +2516,9 @@ msgstr ""
 msgid "Clear form"
 msgstr ""
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 
 msgid ""
@@ -2517,6 +2545,9 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr ""
 
+msgid "Click to add new layer"
+msgstr ""
+
 msgid "Click to cancel sorting"
 msgstr ""
 
@@ -2634,10 +2665,10 @@ msgstr ""
 msgid "Column Configuration"
 msgstr ""
 
-msgid "Column Data Types"
+msgid "Column Formatting"
 msgstr ""
 
-msgid "Column Formatting"
+msgid "Column Settings"
 msgstr ""
 
 msgid ""
@@ -2654,9 +2685,6 @@ msgstr ""
 msgid "Column data types"
 msgstr ""
 
-msgid "Column datatype"
-msgstr ""
-
 msgid "Column header tooltip"
 msgstr ""
 
@@ -2682,16 +2710,17 @@ msgid ""
 "label is used."
 msgstr ""
 
-msgid "Columnar Upload"
+msgid "Column type"
 msgstr ""
 
-msgid "Columns"
+msgid "Columnar upload"
 msgstr ""
 
-msgid "Columns To Be Parsed as Dates"
+msgid "Columns"
 msgstr ""
 
-msgid "Columns To Read"
+#, python-format
+msgid "Columns (%s)"
 msgstr ""
 
 #, python-format
@@ -2705,6 +2734,9 @@ msgstr ""
 msgid "Columns subtotal position"
 msgstr ""
 
+msgid "Columns to be parsed as dates"
+msgstr ""
+
 msgid "Columns to calculate distribution across."
 msgstr ""
 
@@ -2720,6 +2752,9 @@ msgstr ""
 msgid "Columns to group by on the rows"
 msgstr ""
 
+msgid "Columns to read"
+msgstr ""
+
 msgid "Combine metrics"
 msgstr ""
 
@@ -2754,17 +2789,6 @@ msgid ""
 "and color."
 msgstr ""
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-
 msgid "Comparison"
 msgstr ""
 
@@ -2822,18 +2846,27 @@ msgstr ""
 msgid "Configure the basics of your Annotation Layer."
 msgstr ""
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 
 msgid "Configure your how you overlay is displayed here."
 msgstr ""
 
+msgid "Confirm Password"
+msgstr ""
+
 msgid "Confirm overwrite"
 msgstr ""
 
 msgid "Confirm save"
 msgstr ""
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr ""
 
@@ -2864,9 +2897,6 @@ msgstr ""
 msgid "Connection failed, please check your connection settings."
 msgstr ""
 
-msgid "Connection looks good!"
-msgstr ""
-
 msgid "Content format"
 msgstr ""
 
@@ -2903,19 +2933,19 @@ msgstr ""
 msgid "Copy"
 msgstr ""
 
-msgid "Copy SELECT statement to the clipboard"
+msgid "Copy SELECT statement"
 msgstr ""
 
-msgid "Copy and Paste JSON credentials"
+msgid "Copy SELECT statement to the clipboard"
 msgstr ""
 
-msgid "Copy and paste the entire service account .json file here"
+msgid "Copy URL"
 msgstr ""
 
-msgid "Copy link"
+msgid "Copy and Paste JSON credentials"
 msgstr ""
 
-msgid "Copy message"
+msgid "Copy link"
 msgstr ""
 
 #, python-format
@@ -2934,6 +2964,9 @@ msgstr ""
 msgid "Copy query link to your clipboard"
 msgstr ""
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr ""
 
@@ -2949,6 +2982,9 @@ msgstr ""
 msgid "Copy to clipboard"
 msgstr ""
 
+msgid "Corner Radius"
+msgstr ""
+
 msgid "Correlation"
 msgstr ""
 
@@ -2978,6 +3014,9 @@ msgstr ""
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr ""
 
@@ -3068,6 +3107,9 @@ msgstr ""
 msgid "Creator"
 msgstr ""
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr ""
 
@@ -3147,6 +3189,9 @@ msgstr ""
 msgid "Custom color palettes"
 msgstr ""
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 msgid "Custom date"
 msgstr ""
 
@@ -3179,9 +3224,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr ""
 
-msgid "D3 Format"
-msgstr ""
-
 msgid "D3 format"
 msgstr ""
 
@@ -3240,6 +3282,18 @@ msgstr ""
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr ""
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+msgid "Dashboard cannot be favorited."
+msgstr ""
+
+msgid "Dashboard cannot be unfavorited."
+msgstr ""
+
+msgid "Dashboard color configuration could not be updated."
+msgstr ""
+
 msgid "Dashboard could not be deleted."
 msgstr ""
 
@@ -3253,6 +3307,9 @@ msgstr ""
 msgid "Dashboard imported"
 msgstr "Importovať dashboard"
 
+msgid "Dashboard native filters could not be patched."
+msgstr ""
+
 msgid "Dashboard parameters are invalid."
 msgstr ""
 
@@ -3296,10 +3353,6 @@ msgstr "Importovať dashboard"
 msgid "Data"
 msgstr "Dáta"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "Importovať dashboard"
-
 msgid "Data Table"
 msgstr ""
 
@@ -3324,6 +3377,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr ""
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Importovať dashboard"
+
 msgid "Data preview"
 msgstr ""
 
@@ -3478,13 +3535,6 @@ msgid ""
 "database table to the left or "
 msgstr ""
 
-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 "Datasets could not be deleted."
 msgstr ""
 
@@ -3518,9 +3568,6 @@ msgstr ""
 msgid "Date/Time"
 msgstr ""
 
-msgid "Datetime Format"
-msgstr ""
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3548,14 +3595,12 @@ msgstr ""
 msgid "December"
 msgstr ""
 
-msgid "Decides which column to sort the base axis by."
-msgstr ""
-
-msgid "Decides which measure to sort the base axis by."
+msgid "Decides which column or measure to sort the base axis by."
 msgstr ""
 
-msgid "Decimal Character"
-msgstr ""
+#, fuzzy
+msgid "Decimal character"
+msgstr "Grafy"
 
 msgid "Deck.gl - 3D Grid"
 msgstr ""
@@ -3598,16 +3643,16 @@ msgstr ""
 msgid "Default Catalog"
 msgstr ""
 
-msgid "Default Endpoint"
-msgstr ""
-
 msgid "Default Schema"
 msgstr ""
 
 msgid "Default URL"
 msgstr ""
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
 
 msgid "Default Value"
@@ -3627,9 +3672,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr ""
 
-msgid "Default value is required"
-msgstr ""
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 
@@ -3674,9 +3716,6 @@ msgid ""
 "[Periods] text box"
 msgstr ""
 
-msgid "Defines how each series is broken down"
-msgstr ""
-
 msgid "Defines the grid size in pixels"
 msgstr ""
 
@@ -3730,9 +3769,15 @@ msgstr ""
 msgid "Delete Report?"
 msgstr ""
 
+msgid "Delete Role?"
+msgstr ""
+
 msgid "Delete Template?"
 msgstr ""
 
+msgid "Delete User?"
+msgstr ""
+
 msgid "Delete all Really?"
 msgstr ""
 
@@ -3751,13 +3796,19 @@ msgstr ""
 msgid "Delete query"
 msgstr ""
 
+msgid "Delete role"
+msgstr ""
+
 msgid "Delete template"
 msgstr ""
 
 msgid "Delete this container and save to remove this message."
 msgstr ""
 
-msgid "Deleted"
+msgid "Delete user"
+msgstr ""
+
+msgid "Deleted"
 msgstr ""
 
 #, python-format
@@ -3827,13 +3878,29 @@ msgstr[2] ""
 msgid "Deleted %s"
 msgstr ""
 
+#, python-format
+msgid "Deleted role: %s"
+msgstr ""
+
+#, python-format
+msgid "Deleted roles: %s"
+msgstr ""
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Uložené dotazy"
+
+#, python-format
+msgid "Deleted users: %s"
+msgstr ""
+
 #, python-format
 msgid "Deleted: %s"
 msgstr ""
 
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 
 msgid "Delimited long & lat single column"
@@ -3845,18 +3912,12 @@ msgstr ""
 msgid "Delivery method"
 msgstr ""
 
-msgid "Demographics"
-msgstr ""
-
 msgid "Density"
 msgstr ""
 
 msgid "Dependent on"
 msgstr ""
 
-msgid "Deprecated"
-msgstr ""
-
 msgid "Description"
 msgstr ""
 
@@ -3946,21 +4007,24 @@ msgstr ""
 msgid "Discard"
 msgstr ""
 
-msgid "Display"
-msgstr ""
-
 msgid "Display Name"
 msgstr ""
 
 msgid "Display all"
 msgstr ""
 
+msgid "Display column in the chart"
+msgstr ""
+
 msgid "Display column level subtotal"
 msgstr ""
 
 msgid "Display column level total"
 msgstr ""
 
+msgid "Display column name"
+msgstr ""
+
 msgid "Display configuration"
 msgstr ""
 
@@ -3981,7 +4045,7 @@ msgstr ""
 msgid "Display row level total"
 msgstr ""
 
-msgid "Display settings"
+msgid "Display type icon"
 msgstr ""
 
 msgid ""
@@ -3997,9 +4061,6 @@ msgstr ""
 msgid "Distribution"
 msgstr ""
 
-msgid "Distribution - Bar Chart"
-msgstr ""
-
 msgid "Divider"
 msgstr ""
 
@@ -4027,9 +4088,18 @@ msgstr ""
 msgid "Download as image"
 msgstr ""
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr ""
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr ""
 
@@ -4126,6 +4196,13 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr ""
 
+msgid "Duplicate role"
+msgstr ""
+
+#, python-format
+msgid "Duplicate role %(name)s"
+msgstr ""
+
 msgid "Duplicate tab"
 msgstr ""
 
@@ -4138,29 +4215,12 @@ msgid ""
 "the cache. Note this defaults to the global timeout if undefined."
 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 ""
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-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."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4177,6 +4237,9 @@ msgstr ""
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr ""
 
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr ""
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr ""
 
@@ -4199,10 +4262,6 @@ msgstr ""
 msgid "ERROR"
 msgstr ""
 
-#, python-format
-msgid "ERROR: %s"
-msgstr ""
-
 msgid "Edge length"
 msgstr ""
 
@@ -4227,45 +4286,36 @@ msgstr ""
 msgid "Edit CSS template properties"
 msgstr ""
 
-msgid "Edit Chart"
-msgstr ""
-
 msgid "Edit Chart Properties"
 msgstr ""
 
-msgid "Edit Column"
-msgstr ""
-
 msgid "Edit Dashboard"
 msgstr ""
 
-msgid "Edit Database"
-msgstr ""
-
 msgid "Edit Dataset "
 msgstr ""
 
 msgid "Edit Log"
 msgstr ""
 
-msgid "Edit Metric"
-msgstr ""
-
 msgid "Edit Plugin"
 msgstr ""
 
 msgid "Edit Report"
 msgstr ""
 
-msgid "Edit Rule"
+msgid "Edit Role"
 msgstr ""
 
-msgid "Edit Table"
+msgid "Edit Rule"
 msgstr ""
 
 msgid "Edit Tag"
 msgstr ""
 
+msgid "Edit User"
+msgstr ""
+
 msgid "Edit annotation"
 msgstr ""
 
@@ -4303,6 +4353,9 @@ msgstr ""
 msgid "Edit query"
 msgstr ""
 
+msgid "Edit role"
+msgstr ""
+
 msgid "Edit template"
 msgstr ""
 
@@ -4316,6 +4369,9 @@ msgstr "Importovať dashboard"
 msgid "Edit time range"
 msgstr ""
 
+msgid "Edit user"
+msgstr ""
+
 msgid "Edited"
 msgstr ""
 
@@ -4341,6 +4397,12 @@ msgstr ""
 msgid "Elevation"
 msgstr ""
 
+msgid "Email"
+msgstr ""
+
+msgid "Email is required"
+msgstr ""
+
 msgid "Email reports active"
 msgstr ""
 
@@ -4357,6 +4419,9 @@ msgstr ""
 msgid "Embed dashboard"
 msgstr "Importovať dashboard"
 
+msgid "Embedded dashboard could not be deleted."
+msgstr ""
+
 msgid "Embedding deactivated."
 msgstr ""
 
@@ -4366,9 +4431,6 @@ msgstr ""
 msgid "Emphasis"
 msgstr ""
 
-msgid "Employment and education"
-msgstr ""
-
 msgid "Empty circle"
 msgstr ""
 
@@ -4390,9 +4452,6 @@ msgstr ""
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr ""
 
-msgid "Enable Filter Select"
-msgstr ""
-
 msgid "Enable cross-filtering"
 msgstr ""
 
@@ -4492,10 +4551,22 @@ msgstr "Datasety"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr ""
 
-msgid "Entity"
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+msgid "Enter the user's first name"
+msgstr ""
+
+msgid "Enter the user's last name"
+msgstr ""
+
+msgid "Enter the user's username"
 msgstr ""
 
-msgid "Entity ID"
+msgid "Entity"
 msgstr ""
 
 msgid "Equal Date Sizes"
@@ -4510,6 +4581,14 @@ msgstr ""
 msgid "Error Fetching Tagged Objects"
 msgstr ""
 
+#, python-format
+msgid "Error deleting %s"
+msgstr ""
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Datasety"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr ""
@@ -4532,6 +4611,9 @@ msgstr ""
 msgid "Error message"
 msgstr ""
 
+msgid "Error parsing"
+msgstr ""
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "Datasety"
@@ -4547,6 +4629,20 @@ msgstr "Nahrať Excel"
 msgid "Error saving dataset"
 msgstr "Datasety"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Datasety"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Datasety"
+
+msgid "Error while adding user!"
+msgstr ""
+
+msgid "Error while duplicating role!"
+msgstr ""
+
 msgid "Error while fetching charts"
 msgstr ""
 
@@ -4554,10 +4650,25 @@ msgstr ""
 msgid "Error while fetching data: %s"
 msgstr ""
 
+msgid "Error while fetching permissions"
+msgstr ""
+
+msgid "Error while fetching roles"
+msgstr ""
+
+msgid "Error while fetching users"
+msgstr ""
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr ""
 
+msgid "Error while updating role!"
+msgstr ""
+
+msgid "Error while updating user!"
+msgstr ""
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr ""
@@ -4581,15 +4692,6 @@ msgstr ""
 msgid "Event"
 msgstr ""
 
-msgid "Event Flow"
-msgstr ""
-
-msgid "Event Names"
-msgstr ""
-
-msgid "Event definition"
-msgstr ""
-
 msgid "Event flow"
 msgstr ""
 
@@ -4611,10 +4713,10 @@ msgstr ""
 msgid "Examples"
 msgstr ""
 
-msgid "Excel Upload"
+msgid "Excel file format cannot be determined"
 msgstr ""
 
-msgid "Excel file format cannot be determined"
+msgid "Excel upload"
 msgstr ""
 
 msgid "Exclude selected values"
@@ -4703,12 +4805,6 @@ msgstr ""
 msgid "Export to Pivoted .CSV"
 msgstr ""
 
-msgid "Export to YAML"
-msgstr ""
-
-msgid "Export to YAML?"
-msgstr ""
-
 msgid "Export to full .CSV"
 msgstr ""
 
@@ -4727,10 +4823,7 @@ msgstr ""
 msgid "Expose in SQL Lab"
 msgstr ""
 
-msgid "Expose this DB in SQL Lab"
-msgstr ""
-
-msgid "Expression"
+msgid "Extent"
 msgstr ""
 
 msgid "Extra"
@@ -4752,10 +4845,6 @@ msgid ""
 "\"warning_markdown\": \"This is a warning.\" }`."
 msgstr ""
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr ""
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr ""
 
@@ -4773,6 +4862,9 @@ msgstr ""
 msgid "FEB"
 msgstr ""
 
+msgid "FIT DATA"
+msgstr ""
+
 msgid "FRI"
 msgstr ""
 
@@ -4782,14 +4874,13 @@ msgstr ""
 msgid "Factor to multiply the metric by"
 msgstr ""
 
-msgid "Failed"
+msgid "Fail login count"
 msgstr ""
 
-msgid "Failed at retrieving results"
+msgid "Failed"
 msgstr ""
 
-#, python-format
-msgid "Failed at stopping query. %s"
+msgid "Failed at retrieving results"
 msgstr ""
 
 msgid "Failed to create report"
@@ -4820,6 +4911,9 @@ msgstr ""
 msgid "Failed to start remote query on a worker."
 msgstr ""
 
+msgid "Failed to stop query."
+msgstr ""
+
 msgid "Failed to tag items"
 msgstr ""
 
@@ -4842,9 +4936,6 @@ msgstr ""
 msgid "February"
 msgstr ""
 
-msgid "Fetch Values Predicate"
-msgstr ""
-
 msgid "Fetch data preview"
 msgstr ""
 
@@ -4869,13 +4960,10 @@ msgstr ""
 msgid "File"
 msgstr ""
 
-msgid "File Settings"
-msgstr ""
-
 msgid "File extension is not allowed."
 msgstr ""
 
-msgid "File size exceeds the maximum allowed size."
+msgid "File settings"
 msgstr ""
 
 msgid "File upload"
@@ -4942,9 +5030,6 @@ msgstr ""
 msgid "Filter your charts"
 msgstr ""
 
-msgid "Filterable"
-msgstr ""
-
 msgid "Filters"
 msgstr ""
 
@@ -4957,6 +5042,15 @@ msgstr ""
 msgid "Filters for comparison must have a value"
 msgstr ""
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+msgid "Filters for values greater than or equal."
+msgstr ""
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr ""
@@ -4981,6 +5075,13 @@ msgstr ""
 msgid "First"
 msgstr ""
 
+#, fuzzy
+msgid "First name"
+msgstr "Datasety"
+
+msgid "First name is required"
+msgstr ""
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5057,6 +5158,9 @@ msgstr ""
 msgid "Force refresh"
 msgstr ""
 
+msgid "Force refresh Slack channels list"
+msgstr ""
+
 msgid "Force refresh catalog list"
 msgstr ""
 
@@ -5171,6 +5275,9 @@ msgstr ""
 msgid "Geohash"
 msgstr ""
 
+msgid "Geometry Column"
+msgstr ""
+
 msgid "Get the last date by the date unit."
 msgstr ""
 
@@ -5228,9 +5335,6 @@ msgstr ""
 msgid "Group by"
 msgstr ""
 
-msgid "Groupable"
-msgstr ""
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5246,38 +5350,27 @@ msgstr ""
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-
 msgid "Has created by"
 msgstr ""
 
 msgid "Header"
 msgstr ""
 
-msgid "Header Row"
-msgstr ""
-
 msgid "Header row"
 msgstr ""
 
 msgid "Heatmap"
 msgstr ""
 
-msgid "Heatmap (legacy)"
-msgstr ""
-
-msgid "Heatmap Options"
-msgstr ""
-
 msgid "Height"
 msgstr ""
 
 msgid "Height of the sparkline"
 msgstr ""
 
+msgid "Hide Column"
+msgstr ""
+
 msgid "Hide Line"
 msgstr ""
 
@@ -5302,9 +5395,6 @@ msgstr ""
 msgid "Histogram"
 msgstr ""
 
-msgid "Histogram (legacy)"
-msgstr ""
-
 msgid "Home"
 msgstr "Domov"
 
@@ -5377,18 +5467,12 @@ msgid ""
 "hive.server2.proxy.user property."
 msgstr ""
 
-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.<br/>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 ""
-
-msgid "If Table Already Exists"
+msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr ""
 
-msgid "If a metric is specified, sorting will be done based on the metric value"
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
 msgstr ""
 
 msgid ""
@@ -5396,7 +5480,7 @@ msgid ""
 "it sorts the results ascending."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
+msgid "If table already exists"
 msgstr ""
 
 msgid "Ignore cache when generating report"
@@ -5417,9 +5501,6 @@ msgstr ""
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr ""
 
-msgid "Impersonate the logged on user"
-msgstr ""
-
 msgid "Import"
 msgstr ""
 
@@ -5430,9 +5511,6 @@ msgstr ""
 msgid "Import Dashboard(s)"
 msgstr ""
 
-msgid "Import a table definition"
-msgstr ""
-
 msgid "Import chart failed for an unknown reason"
 msgstr ""
 
@@ -5463,12 +5541,12 @@ msgstr ""
 msgid "Import saved query failed for an unknown reason."
 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."
+msgid "In"
 msgstr ""
 
-msgid "In"
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
 msgstr ""
 
 msgid "Include Series"
@@ -5493,13 +5571,14 @@ msgstr ""
 msgid "Index"
 msgstr ""
 
-msgid "Index Column"
+msgid "Index column"
 msgstr ""
 
-msgid "Index Label"
+msgid "Index label"
 msgstr ""
 
-msgid "Index label"
+#, python-format
+msgid "Indexes (%s)"
 msgstr ""
 
 msgid "Info"
@@ -5520,6 +5599,12 @@ msgstr ""
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr ""
 
+msgid "Insert Layer URL"
+msgstr ""
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr ""
 
@@ -5550,9 +5635,6 @@ msgstr ""
 msgid "Intervals"
 msgstr ""
 
-msgid "Intesity"
-msgstr ""
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -5593,6 +5675,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr ""
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr ""
@@ -5656,6 +5741,9 @@ msgstr ""
 msgid "Invert current page"
 msgstr ""
 
+msgid "Is active?"
+msgstr ""
+
 msgid "Is certified"
 msgstr ""
 
@@ -5829,12 +5917,6 @@ msgstr ""
 msgid "Last"
 msgstr ""
 
-msgid "Last Changed"
-msgstr ""
-
-msgid "Last Modified"
-msgstr ""
-
 #, python-format
 msgid "Last Updated %s"
 msgstr ""
@@ -5843,6 +5925,10 @@ msgstr ""
 msgid "Last Updated %s by %s"
 msgstr ""
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Anotačná vrstva"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr ""
@@ -5850,12 +5936,23 @@ msgstr ""
 msgid "Last day"
 msgstr ""
 
+msgid "Last login"
+msgstr ""
+
 msgid "Last modified"
 msgstr ""
 
 msgid "Last month"
 msgstr ""
 
+#, fuzzy
+msgid "Last name"
+msgstr "Datasety"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Datasety"
+
 msgid "Last quarter"
 msgstr ""
 
@@ -5868,15 +5965,38 @@ msgstr ""
 msgid "Last year"
 msgstr ""
 
+msgid "Lat"
+msgstr ""
+
 msgid "Latitude"
 msgstr ""
 
 msgid "Latitude of default viewport"
 msgstr ""
 
+msgid "Layer"
+msgstr ""
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Datasety"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr ""
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Importovať dashboard"
+
+msgid "Layer type"
+msgstr ""
+
+msgid "Layers"
+msgstr ""
+
 msgid "Layout"
 msgstr ""
 
@@ -5889,11 +6009,6 @@ msgstr ""
 msgid "Layout type of tree"
 msgstr ""
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-
 msgid "Least recently modified"
 msgstr ""
 
@@ -5957,11 +6072,6 @@ msgstr ""
 msgid "Limit type"
 msgstr ""
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-
 msgid "Limits the number of cells that get retrieved."
 msgstr ""
 
@@ -5997,6 +6107,9 @@ msgid ""
 "chart common in many fields."
 msgstr ""
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr ""
 
@@ -6024,9 +6137,15 @@ msgstr ""
 msgid "Link Copied!"
 msgstr ""
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr ""
 
+msgid "List Users"
+msgstr ""
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr ""
 
@@ -6093,6 +6212,9 @@ msgstr ""
 msgid "Login"
 msgstr ""
 
+msgid "Login count"
+msgstr ""
+
 msgid "Login with"
 msgstr ""
 
@@ -6102,6 +6224,9 @@ msgstr ""
 msgid "Logs"
 msgstr ""
 
+msgid "Lon"
+msgstr ""
+
 msgid "Long dashed"
 msgstr ""
 
@@ -6142,9 +6267,6 @@ msgstr ""
 msgid "Main"
 msgstr "Spravovať"
 
-msgid "Main Datetime Column"
-msgstr ""
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6176,6 +6298,10 @@ msgstr ""
 msgid "Map"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "Map Options"
+msgstr ""
+
 msgid "Map Style"
 msgstr ""
 
@@ -6218,13 +6344,16 @@ msgstr ""
 msgid "Markup type"
 msgstr ""
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr ""
 
 msgid "Max Bubble Size"
 msgstr ""
 
-msgid "Max Events"
+msgid "Max. features"
 msgstr ""
 
 msgid "Maximum"
@@ -6236,6 +6365,9 @@ msgstr ""
 msgid "Maximum Radius"
 msgstr ""
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6275,6 +6407,18 @@ msgstr ""
 msgid "Medium"
 msgstr ""
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -6368,11 +6512,6 @@ msgid ""
 "appropriate)."
 msgstr ""
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-
 msgid "Metrics"
 msgstr ""
 
@@ -6412,7 +6551,7 @@ msgstr ""
 msgid "Minimum Radius"
 msgstr ""
 
-msgid "Minimum leaf node event count"
+msgid "Minimum must be strictly less than maximum"
 msgstr ""
 
 msgid ""
@@ -6426,6 +6565,9 @@ msgstr ""
 msgid "Minimum value"
 msgstr ""
 
+msgid "Minimum value cannot be higher than maximum value"
+msgstr ""
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr ""
 
@@ -6448,6 +6590,9 @@ msgstr ""
 msgid "Minutes value"
 msgstr ""
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr ""
 
@@ -6464,6 +6609,13 @@ msgstr ""
 msgid "Modified %s"
 msgstr ""
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
 msgid "Modified by"
 msgstr ""
 
@@ -6471,10 +6623,6 @@ msgstr ""
 msgid "Modified by: %s"
 msgstr ""
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr ""
-
 msgid "Monday"
 msgstr ""
 
@@ -6535,9 +6683,6 @@ msgstr ""
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr ""
 
-msgid "Must have at least one numeric column specified"
-msgstr ""
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr ""
 
@@ -6562,9 +6707,6 @@ msgstr ""
 msgid "NOV"
 msgstr ""
 
-msgid "NOW"
-msgstr ""
-
 msgid "NUMERIC"
 msgstr ""
 
@@ -6589,9 +6731,6 @@ msgstr ""
 msgid "Name of the source nodes"
 msgstr ""
 
-msgid "Name of the table that exists in the source database"
-msgstr ""
-
 msgid "Name of the target nodes"
 msgstr ""
 
@@ -6607,17 +6746,19 @@ msgstr ""
 msgid "Need help? Learn more about"
 msgstr ""
 
+msgid "Network Error"
+msgstr ""
+
 msgid "Network error"
 msgstr ""
 
-msgid "Network error."
+msgid "Network error while attempting to fetch resource"
 msgstr ""
 
-msgid "New chart"
+msgid "Network error."
 msgstr ""
 
-#, python-format
-msgid "New columns added: %s"
+msgid "New chart"
 msgstr ""
 
 #, fuzzy
@@ -6668,6 +6809,9 @@ msgstr "Grafy"
 msgid "No Tags created"
 msgstr ""
 
+msgid "No actions"
+msgstr ""
+
 #, fuzzy
 msgid "No annotation layers"
 msgstr "Anotačná vrstva"
@@ -6687,10 +6831,6 @@ msgstr ""
 msgid "No charts"
 msgstr ""
 
-#, fuzzy
-msgid "No charts yet"
-msgstr "Grafy"
-
 msgid "No columns found"
 msgstr ""
 
@@ -6706,10 +6846,6 @@ msgstr ""
 msgid "No compatible schema found"
 msgstr ""
 
-#, fuzzy
-msgid "No dashboards yet"
-msgstr "Importovať dashboard"
-
 msgid "No data"
 msgstr ""
 
@@ -6719,6 +6855,9 @@ msgstr ""
 msgid "No data in file"
 msgstr ""
 
+msgid "No databases available"
+msgstr ""
+
 msgid "No databases match your search"
 msgstr ""
 
@@ -6749,12 +6888,6 @@ msgstr ""
 msgid "No matching records found"
 msgstr ""
 
-msgid "No of Bins"
-msgstr ""
-
-msgid "No recents yet"
-msgstr ""
-
 msgid "No records found"
 msgstr ""
 
@@ -6776,6 +6909,10 @@ msgid ""
 "contains data for the selected time range."
 msgstr ""
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Grafy"
+
 msgid "No rows were returned for this dataset"
 msgstr ""
 
@@ -6789,10 +6926,6 @@ msgstr "Uložené dotazy"
 msgid "No saved metrics found"
 msgstr ""
 
-#, fuzzy
-msgid "No saved queries yet"
-msgstr "Uložené dotazy"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 
@@ -6808,6 +6941,10 @@ msgstr ""
 msgid "No time columns"
 msgstr ""
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Grafy"
+
 msgid "No validator found (configured for the engine)"
 msgstr ""
 
@@ -6883,6 +7020,9 @@ msgstr ""
 msgid "Not up to date"
 msgstr ""
 
+msgid "Nothing here yet"
+msgstr ""
+
 msgid "Nothing triggered"
 msgstr ""
 
@@ -6982,9 +7122,6 @@ msgstr ""
 msgid "Offline"
 msgstr ""
 
-msgid "Offset"
-msgstr ""
-
 msgid "On Grace"
 msgstr ""
 
@@ -7009,6 +7146,9 @@ msgstr ""
 msgid "One or many metrics to display"
 msgstr ""
 
+msgid "One or more annotation layers failed loading."
+msgstr ""
+
 msgid "One or more columns already exist"
 msgstr ""
 
@@ -7036,12 +7176,6 @@ msgstr ""
 msgid "One or more parameters specified in the query are missing."
 msgstr ""
 
-msgid "One ore more annotation layers failed loading."
-msgstr ""
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr ""
-
 msgid "Only Total"
 msgstr ""
 
@@ -7054,9 +7188,6 @@ msgstr ""
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
 
-msgid "Only selected panels will be affected by this filter"
-msgstr ""
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7132,15 +7263,19 @@ msgstr ""
 msgid "Or choose from a list of other databases we support:"
 msgstr ""
 
-msgid "Order by entity id"
-msgstr ""
-
 msgid "Order results by selected columns"
 msgstr ""
 
 msgid "Ordering"
 msgstr ""
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr ""
 
@@ -7250,6 +7385,9 @@ msgid ""
 " or username."
 msgstr ""
 
+msgid "PDF download failed, please refresh and try again."
+msgstr ""
+
 msgid "Page length"
 msgstr ""
 
@@ -7307,6 +7445,12 @@ msgstr ""
 msgid "Password"
 msgstr ""
 
+msgid "Password is required"
+msgstr ""
+
+msgid "Passwords do not match!"
+msgstr ""
+
 msgid "Paste Private Key here"
 msgstr ""
 
@@ -7361,6 +7505,13 @@ msgstr ""
 msgid "Periods must be a whole number"
 msgstr ""
 
+msgid "Permissions"
+msgstr ""
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr ""
 
@@ -7376,9 +7527,6 @@ msgstr ""
 msgid "Physical (table or view)"
 msgstr ""
 
-msgid "Physical dataset"
-msgstr ""
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
 
@@ -7400,15 +7548,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr ""
 
-msgid "Pick at least one field for [Series]"
-msgstr ""
-
 msgid "Pick at least one metric"
 msgstr ""
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-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."
@@ -7420,7 +7562,7 @@ msgstr ""
 msgid "Pie Chart"
 msgstr ""
 
-msgid "Pie Chart (legacy)"
+msgid "Pie charts on a map"
 msgstr ""
 
 msgid "Pie shape"
@@ -7432,6 +7574,12 @@ msgstr ""
 msgid "Pin"
 msgstr ""
 
+msgid "Pin Left"
+msgstr ""
+
+msgid "Pin Right"
+msgstr ""
+
 msgid "Pivot Table"
 msgstr ""
 
@@ -7480,6 +7628,9 @@ msgid ""
 "your query again."
 msgstr ""
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr ""
 
@@ -7489,12 +7640,24 @@ msgstr ""
 msgid "Please confirm the overwrite values."
 msgstr ""
 
+msgid "Please confirm your password"
+msgstr ""
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr ""
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr ""
 
@@ -7508,9 +7671,6 @@ msgstr[0] ""
 msgstr[1] ""
 msgstr[2] ""
 
-msgid "Please save the query to enable sharing"
-msgstr ""
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
 
@@ -7583,9 +7743,6 @@ msgstr ""
 msgid "Populate \"Default value\" to enable this control"
 msgstr ""
 
-msgid "Population age data"
-msgstr ""
-
 msgid "Port"
 msgstr ""
 
@@ -7623,12 +7780,6 @@ msgstr ""
 msgid "Pre-filter is required"
 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 ""
-
 msgid "Predictive"
 msgstr ""
 
@@ -7648,10 +7799,6 @@ msgstr ""
 msgid "Preview uploaded file"
 msgstr "Nahrať Excel"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr ""
-
 msgid "Previous"
 msgstr ""
 
@@ -7697,18 +7844,12 @@ msgstr ""
 msgid "Progressive"
 msgstr ""
 
-msgid "Propagate"
+msgid "Project Id"
 msgstr ""
 
 msgid "Proportional"
 msgstr ""
 
-msgid "Public and privately shared sheets"
-msgstr ""
-
-msgid "Publicly shared sheets only"
-msgstr ""
-
 msgid "Published"
 msgstr ""
 
@@ -7727,9 +7868,6 @@ msgstr ""
 msgid "Put the labels outside of the pie?"
 msgstr ""
 
-msgid "Put the labels outside the pie?"
-msgstr ""
-
 msgid "Put your code here"
 msgstr ""
 
@@ -7832,10 +7970,6 @@ msgstr ""
 msgid "Radius in miles"
 msgstr ""
 
-#, python-format
-msgid "Ran %s"
-msgstr ""
-
 #, fuzzy
 msgid "Range"
 msgstr "Spravovať"
@@ -7865,18 +7999,9 @@ msgstr ""
 msgid "Raw records"
 msgstr ""
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 msgid "Recently modified"
 msgstr ""
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-
 msgid "Recents"
 msgstr ""
 
@@ -7895,9 +8020,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr ""
-
 msgid "Redo the action"
 msgstr ""
 
@@ -7935,6 +8057,9 @@ msgstr ""
 msgid "Refresh interval saved"
 msgstr ""
 
+msgid "Refresh table schema"
+msgstr ""
+
 msgid "Refresh the default values"
 msgstr ""
 
@@ -7988,8 +8113,11 @@ msgid "Remove table preview"
 msgstr ""
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr ""
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
 msgid "Rename tab"
 msgstr ""
@@ -8000,10 +8128,9 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
-msgstr ""
-
-msgid "Rendering"
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
 msgid "Replace"
@@ -8099,6 +8226,9 @@ msgstr ""
 msgid "Repulsion strength between nodes"
 msgstr ""
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr ""
@@ -8130,6 +8260,10 @@ msgstr ""
 msgid "Reset"
 msgstr ""
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Uložené dotazy"
+
 msgid "Reset state"
 msgstr ""
 
@@ -8155,6 +8289,9 @@ msgstr ""
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr ""
 
+msgid "Retry fetching results"
+msgstr ""
+
 msgid "Return to specific datetime."
 msgstr ""
 
@@ -8194,6 +8331,26 @@ msgstr ""
 msgid "Role"
 msgstr ""
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Spravovať"
+
+msgid "Role is required"
+msgstr ""
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Datasety"
+
+msgid "Role successfully updated!"
+msgstr ""
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr ""
 
@@ -8266,9 +8423,6 @@ msgstr ""
 msgid "Rows subtotal position"
 msgstr ""
 
-msgid "Rows to Read"
-msgstr ""
-
 msgid "Rows to read"
 msgstr ""
 
@@ -8334,14 +8488,12 @@ msgstr ""
 msgid "SQL Copied!"
 msgstr ""
 
-msgid "SQL Expression"
-msgstr ""
-
 msgid "SQL Lab"
 msgstr ""
 
-msgid "SQL Lab View"
-msgstr ""
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "Uložené dotazy"
 
 #, python-format
 msgid ""
@@ -8427,19 +8579,10 @@ msgstr ""
 msgid "Samples for datasource could not be retrieved."
 msgstr ""
 
-msgid "Sankey"
-msgstr ""
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Grafy"
 
-msgid "Sankey Diagram (legacy)"
-msgstr ""
-
-msgid "Sankey Diagram with Loops"
-msgstr ""
-
 msgid "Satellite"
 msgstr ""
 
@@ -8501,9 +8644,6 @@ msgstr ""
 msgid "Save query"
 msgstr ""
 
-msgid "Save the query to enable this feature"
-msgstr ""
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
 
@@ -8532,6 +8672,9 @@ msgstr ""
 msgid "Saved query parameters are invalid."
 msgstr ""
 
+msgid "Saving..."
+msgstr ""
+
 msgid "Scale and Move"
 msgstr ""
 
@@ -8583,9 +8726,6 @@ msgstr ""
 msgid "Schema cache timeout"
 msgstr ""
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr ""
-
 msgid "Schemas allowed for File upload"
 msgstr ""
 
@@ -8667,9 +8807,6 @@ msgstr ""
 msgid "Seconds value"
 msgstr ""
 
-msgid "Secure Extra"
-msgstr ""
-
 msgid "Secure extra"
 msgstr ""
 
@@ -8763,6 +8900,10 @@ msgstr ""
 msgid "Select a sheet name from the uploaded file"
 msgstr ""
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Datasety"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -8780,7 +8921,7 @@ msgstr ""
 msgid "Select all items"
 msgstr ""
 
-msgid "Select any columns for metadata inspection"
+msgid "Select an aggregation method to apply to the metric."
 msgstr ""
 
 msgid "Select catalog or type to search catalogs"
@@ -8807,6 +8948,9 @@ msgstr ""
 msgid "Select column"
 msgstr ""
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -8892,6 +9036,14 @@ msgstr ""
 msgid "Select owners"
 msgstr ""
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Grafy"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Grafy"
+
 msgid "Select saved metrics"
 msgstr ""
 
@@ -8905,9 +9057,19 @@ msgstr ""
 msgid "Select scheme"
 msgstr ""
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr ""
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Datasety"
+
 msgid "Select table or type to search tables"
 msgstr ""
 
@@ -8932,12 +9094,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr ""
 
-msgid "Select the number of bins for the histogram"
-msgstr ""
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr ""
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -8960,9 +9116,6 @@ msgstr ""
 msgid "Send as text"
 msgstr ""
 
-msgid "Send range filter events to other charts"
-msgstr ""
-
 msgid "September"
 msgstr ""
 
@@ -8975,12 +9128,6 @@ msgstr ""
 msgid "Series Height"
 msgstr ""
 
-msgid "Series Limit Sort By"
-msgstr ""
-
-msgid "Series Limit Sort Descending"
-msgstr ""
-
 #, fuzzy
 msgid "Series Order"
 msgstr "Uložené dotazy"
@@ -9010,6 +9157,9 @@ msgstr ""
 msgid "Service Account"
 msgstr ""
 
+msgid "Service version"
+msgstr ""
+
 msgid "Set auto-refresh interval"
 msgstr ""
 
@@ -9037,6 +9187,10 @@ msgstr ""
 msgid "Settings for time series"
 msgstr ""
 
+#, fuzzy
+msgid "Shape"
+msgstr "Spravovať"
+
 msgid "Share"
 msgstr ""
 
@@ -9098,18 +9252,9 @@ msgstr ""
 msgid "Show Cell bars"
 msgstr "Importovať dashboard"
 
-msgid "Show Chart"
-msgstr ""
-
-msgid "Show Column"
-msgstr ""
-
 msgid "Show Dashboard"
 msgstr ""
 
-msgid "Show Database"
-msgstr ""
-
 msgid "Show Labels"
 msgstr ""
 
@@ -9119,18 +9264,12 @@ msgstr ""
 msgid "Show Markers"
 msgstr ""
 
-msgid "Show Metric"
-msgstr ""
-
 msgid "Show Metric Names"
 msgstr ""
 
 msgid "Show Range Filter"
 msgstr ""
 
-msgid "Show Table"
-msgstr ""
-
 msgid "Show Timestamp"
 msgstr ""
 
@@ -9163,9 +9302,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr ""
 
-msgid "Show all..."
-msgstr ""
-
 msgid "Show axis line ticks"
 msgstr ""
 
@@ -9187,6 +9323,9 @@ msgstr ""
 msgid "Show empty columns"
 msgstr ""
 
+msgid "Show entries per page"
+msgstr ""
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9207,9 +9346,6 @@ msgstr ""
 msgid "Show less columns"
 msgstr ""
 
-msgid "Show less..."
-msgstr ""
-
 msgid "Show minor ticks on axes."
 msgstr ""
 
@@ -9246,6 +9382,9 @@ msgstr ""
 msgid "Show the value on top of the bar"
 msgstr ""
 
+msgid "Show total"
+msgstr ""
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9280,7 +9419,7 @@ msgid ""
 msgstr ""
 
 #, python-format
-msgid "Showing %s of %s"
+msgid "Showing %s of %s items"
 msgstr ""
 
 msgid "Shows a list of all series available at that point in time"
@@ -9313,16 +9452,13 @@ msgstr ""
 msgid "Single value type"
 msgstr ""
 
-msgid "Size of edge symbols"
-msgstr ""
-
-msgid "Size of marker. Also applies to forecast observations."
+msgid "Size in pixels"
 msgstr ""
 
-msgid "Sizes of vehicles"
+msgid "Size of edge symbols"
 msgstr ""
 
-msgid "Skip Rows"
+msgid "Size of marker. Also applies to forecast observations."
 msgstr ""
 
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
@@ -9393,9 +9529,6 @@ msgstr ""
 msgid "Sorry, something went wrong. Try again later."
 msgstr ""
 
-msgid "Sorry, there appears to be no data"
-msgstr ""
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr ""
@@ -9413,10 +9546,6 @@ msgstr ""
 msgid "Sort"
 msgstr ""
 
-#, fuzzy
-msgid "Sort Bars"
-msgstr "Importovať dashboard"
-
 msgid "Sort Descending"
 msgstr ""
 
@@ -9439,9 +9568,6 @@ msgstr ""
 msgid "Sort ascending"
 msgstr ""
 
-msgid "Sort bars by x labels."
-msgstr ""
-
 msgid "Sort by"
 msgstr ""
 
@@ -9467,6 +9593,9 @@ msgstr ""
 msgid "Sort metric"
 msgstr ""
 
+msgid "Sort query by"
+msgstr ""
+
 msgid "Sort rows by"
 msgstr ""
 
@@ -9479,9 +9608,6 @@ msgstr ""
 msgid "Source"
 msgstr ""
 
-msgid "Source / Target"
-msgstr ""
-
 msgid "Source SQL"
 msgstr ""
 
@@ -9523,9 +9649,6 @@ msgstr ""
 msgid "Stack"
 msgstr ""
 
-msgid "Stack Trace:"
-msgstr ""
-
 msgid "Stack series"
 msgstr ""
 
@@ -9541,9 +9664,6 @@ msgstr ""
 msgid "Stacked Style"
 msgstr ""
 
-msgid "Stacked style"
-msgstr ""
-
 msgid "Standard time series"
 msgstr ""
 
@@ -9638,9 +9758,6 @@ msgstr ""
 msgid "Strength to pull the graph toward center"
 msgstr ""
 
-msgid "Stretched style"
-msgstr ""
-
 msgid "Stroke Color"
 msgstr ""
 
@@ -9662,15 +9779,19 @@ msgstr ""
 msgid "Subdomain"
 msgstr ""
 
-msgid "Subheader"
-msgstr ""
-
 msgid "Subheader Font Size"
 msgstr ""
 
 msgid "Submit"
 msgstr ""
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "Importovať dashboard"
+
+msgid "Subtitle Font Size"
+msgstr ""
+
 msgid "Subtotal"
 msgstr ""
 
@@ -9722,9 +9843,6 @@ msgstr ""
 msgid "Superset chart"
 msgstr ""
 
-msgid "Superset dashboard"
-msgstr ""
-
 msgid "Superset encountered an error while running a command."
 msgstr ""
 
@@ -9734,9 +9852,6 @@ msgstr ""
 msgid "Supported databases"
 msgstr ""
 
-msgid "Survey Responses"
-msgstr ""
-
 #, fuzzy
 msgid "Swap dataset"
 msgstr "Datasety"
@@ -9750,6 +9865,12 @@ msgid ""
 "well."
 msgstr ""
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr ""
 
@@ -9759,9 +9880,20 @@ msgstr ""
 msgid "Symbol size"
 msgstr ""
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr ""
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr ""
 
@@ -9772,9 +9904,6 @@ msgstr ""
 msgid "TABLES"
 msgstr ""
 
-msgid "TEMPORAL X-AXIS"
-msgstr ""
-
 msgid "TEMPORAL_RANGE"
 msgstr ""
 
@@ -9810,6 +9939,9 @@ msgid ""
 "connection, schema, and table name"
 msgstr ""
 
+msgid "Table actions"
+msgstr ""
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -9821,6 +9953,10 @@ msgstr ""
 msgid "Table columns"
 msgstr ""
 
+#, fuzzy
+msgid "Table name"
+msgstr "Datasety"
+
 msgid "Table name undefined"
 msgstr ""
 
@@ -9883,11 +10019,6 @@ msgstr ""
 msgid "Tags"
 msgstr ""
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-
 msgid "Target"
 msgstr ""
 
@@ -9912,6 +10043,9 @@ msgid ""
 "coming from the controls."
 msgstr ""
 
+msgid "Temporal X-Axis"
+msgstr ""
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -9956,9 +10090,6 @@ msgid ""
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -9988,6 +10119,9 @@ msgstr ""
 msgid "The annotation has been updated"
 msgstr ""
 
+msgid "The background color of the charts."
+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."
@@ -10015,6 +10149,9 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr ""
 
+msgid "The color of the elements border"
+msgstr ""
+
 msgid "The color of the isoband"
 msgstr ""
 
@@ -10029,6 +10166,12 @@ msgid ""
 "        Edit the color scheme in the dashboard properties."
 msgstr ""
 
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+
 msgid "The column header label"
 msgstr ""
 
@@ -10041,6 +10184,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr ""
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10052,18 +10201,9 @@ msgstr ""
 msgid "The data source seems to have been deleted"
 msgstr ""
 
-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 ""
-
-#, 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 ""
+#, fuzzy
+msgid "The database"
+msgstr "Datasety"
 
 msgid "The database columns that contains lines information"
 msgstr ""
@@ -10094,12 +10234,9 @@ msgstr ""
 msgid "The database was not found."
 msgstr ""
 
-#, 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 ""
+#, fuzzy
+msgid "The dataset"
+msgstr "Datasety"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr ""
@@ -10157,6 +10294,15 @@ msgid ""
 "call."
 msgstr ""
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10174,6 +10320,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr ""
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10206,20 +10355,12 @@ msgstr ""
 msgid "The id of the active 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'"
+msgid "The layer attribution"
 msgstr ""
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10252,6 +10393,17 @@ msgid ""
 "periods"
 msgstr ""
 
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr ""
+
+msgid "The name of the geometry column"
+msgstr ""
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 msgid "The name of the rule must be unique"
 msgstr ""
 
@@ -10444,6 +10596,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr ""
 
@@ -10481,10 +10636,13 @@ msgstr ""
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+msgid "The screenshot has been downloaded."
+msgstr ""
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
+msgid "The service url of the layer"
 msgstr ""
 
 msgid "The size of each cell in meters"
@@ -10493,6 +10651,9 @@ msgstr ""
 msgid "The size of the square cell, in pixels"
 msgstr ""
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr ""
 
@@ -10514,11 +10675,6 @@ msgid ""
 "to run this query."
 msgstr ""
 
-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 "The table was deleted or renamed in the database."
 msgstr ""
 
@@ -10563,6 +10719,9 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr ""
 
+msgid "The type of the layer"
+msgstr ""
+
 msgid "The type of visualization to display"
 msgstr ""
 
@@ -10585,12 +10744,24 @@ msgstr ""
 msgid "The username provided when connecting to a database is not valid."
 msgstr ""
 
+msgid "The version of the service"
+msgstr ""
+
+msgid "The visible title of the layer"
+msgstr ""
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr ""
 
 msgid "The width of the Isoline in pixels"
 msgstr ""
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+msgid "The width of the elements border"
+msgstr ""
+
 msgid "The width of the lines"
 msgstr ""
 
@@ -10607,9 +10778,6 @@ msgstr ""
 msgid "There are no components added to this tab"
 msgstr ""
 
-msgid "There are no databases available"
-msgstr ""
-
 msgid "There are no filters in this dashboard."
 msgstr ""
 
@@ -10621,6 +10789,9 @@ msgid ""
 " or a typo."
 msgstr ""
 
+msgid "There is currently no information to display."
+msgstr ""
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -10644,6 +10815,9 @@ msgstr ""
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr ""
 
+msgid "There was an error generating the permalink."
+msgstr ""
+
 msgid "There was an error loading the catalogs"
 msgstr ""
 
@@ -10659,6 +10833,9 @@ msgstr ""
 msgid "There was an error loading the tables"
 msgstr ""
 
+msgid "There was an error retrieving dashboard tabs."
+msgstr ""
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr ""
@@ -10666,6 +10843,10 @@ msgstr ""
 msgid "There was an error with your request"
 msgstr ""
 
+#, python-format
+msgid "There was an issue deleting %s"
+msgstr ""
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr ""
@@ -10749,21 +10930,9 @@ msgstr ""
 msgid "There was an issue previewing the selected query. %s"
 msgstr ""
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr ""
-
 msgid "These are the datasets this filter will be applied to."
 msgstr ""
 
-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 ""
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -10777,12 +10946,18 @@ msgstr ""
 msgid "This action will permanently delete the layer."
 msgstr ""
 
+msgid "This action will permanently delete the role."
+msgstr ""
+
 msgid "This action will permanently delete the saved query."
 msgstr ""
 
 msgid "This action will permanently delete the template."
 msgstr ""
 
+msgid "This action will permanently delete the user."
+msgstr ""
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -10807,11 +10982,6 @@ msgid ""
 "source. "
 msgstr ""
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-
 msgid "This column might be incompatible with current dataset"
 msgstr ""
 
@@ -10877,6 +11047,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr ""
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 
@@ -10894,6 +11070,9 @@ msgstr ""
 msgid "This defines the element to be plotted on the chart"
 msgstr ""
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -10904,11 +11083,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr ""
-
 msgid "This filter might be incompatible with current dataset"
 msgstr ""
 
@@ -10938,12 +11112,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr ""
 
-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 ""
-
 msgid "This metric might be incompatible with current dataset"
 msgstr ""
 
@@ -10982,6 +11150,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr ""
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr ""
 
@@ -11058,9 +11229,6 @@ msgstr ""
 msgid "Time Series"
 msgstr ""
 
-msgid "Time Series - Bar Chart"
-msgstr ""
-
 msgid "Time Series - Line Chart"
 msgstr ""
 
@@ -11076,9 +11244,6 @@ msgstr ""
 msgid "Time Series - Period Pivot"
 msgstr ""
 
-msgid "Time Series - Stacked"
-msgstr ""
-
 msgid "Time Series Options"
 msgstr ""
 
@@ -11166,15 +11331,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr ""
 
-msgid "Time-series Area Chart (legacy)"
-msgstr ""
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr ""
-
-msgid "Time-series Line Chart (legacy)"
-msgstr ""
-
 msgid "Time-series Percent Change"
 msgstr ""
 
@@ -11193,9 +11349,6 @@ msgstr ""
 msgid "Timezone"
 msgstr ""
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr ""
-
 msgid "Timezone selector"
 msgstr ""
 
@@ -11214,6 +11367,11 @@ msgstr ""
 msgid "Title or Slug"
 msgstr ""
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr ""
 
@@ -11255,6 +11413,9 @@ msgstr ""
 msgid "Total (%(aggregatorName)s)"
 msgstr ""
 
+msgid "Total (Sum)"
+msgstr ""
+
 #, fuzzy
 msgid "Total value"
 msgstr "Anotačná vrstva"
@@ -11359,9 +11520,6 @@ msgstr ""
 msgid "Type is required"
 msgstr ""
 
-msgid "Type of Google Sheets allowed"
-msgstr ""
-
 msgid "Type of comparison, value difference or percentage"
 msgstr ""
 
@@ -11435,9 +11593,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr ""
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr ""
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr ""
 
@@ -11467,6 +11631,9 @@ msgstr "Uložené dotazy"
 msgid "Unexpected time range: %(error)s"
 msgstr ""
 
+msgid "Unhide"
+msgstr ""
+
 msgid "Unknown"
 msgstr ""
 
@@ -11504,6 +11671,9 @@ msgstr ""
 msgid "Unknown value"
 msgstr ""
 
+msgid "Unpin"
+msgstr ""
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr ""
@@ -11567,10 +11737,6 @@ msgstr "Nahrať Excel"
 msgid "Upload Columnar file to database"
 msgstr ""
 
-#, fuzzy
-msgid "Upload Credentials"
-msgstr "Nahrať Excel"
-
 #, fuzzy
 msgid "Upload Enabled"
 msgstr "Nahrať Excel"
@@ -11593,6 +11759,10 @@ msgstr ""
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Nahrať Excel"
+
 msgid "Upload file to database"
 msgstr ""
 
@@ -11644,10 +11814,10 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr ""
 
-msgid "Use date formatting even when metric value is not a timestamp"
+msgid "Use current extent"
 msgstr ""
 
-msgid "Use legacy datasource editor"
+msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 
 msgid "Use metrics as a top level group for columns or for rows"
@@ -11659,11 +11829,6 @@ msgstr ""
 msgid "Use the Advanced Analytics options below"
 msgstr ""
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-
 msgid "Use the edit button to change this field"
 msgstr ""
 
@@ -11700,9 +11865,23 @@ msgstr ""
 msgid "User query"
 msgstr ""
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr ""
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Datasety"
+
+#, fuzzy
+msgid "Users"
+msgstr "Uložené dotazy"
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
 
@@ -11724,6 +11903,10 @@ msgid ""
 "funnels and pipelines."
 msgstr ""
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr ""
 
@@ -11749,9 +11932,15 @@ msgstr ""
 msgid "Value format"
 msgstr ""
 
+msgid "Value greater than"
+msgstr ""
+
 msgid "Value is required"
 msgstr ""
 
+msgid "Value less than"
+msgstr ""
+
 msgid "Value must be 0 or greater"
 msgstr ""
 
@@ -11769,12 +11958,6 @@ msgid ""
 "show relevant values"
 msgstr ""
 
-msgid "Vehicle Types"
-msgstr ""
-
-msgid "Verbose Name"
-msgstr ""
-
 msgid "Version"
 msgstr ""
 
@@ -11787,9 +11970,6 @@ msgstr ""
 msgid "Vertical (Left)"
 msgstr ""
 
-msgid "Video game consoles"
-msgstr ""
-
 msgid "View"
 msgstr ""
 
@@ -11832,9 +12012,6 @@ msgstr ""
 msgid "Virtual (SQL)"
 msgstr ""
 
-msgid "Virtual dataset"
-msgstr ""
-
 msgid "Virtual dataset query cannot be empty"
 msgstr ""
 
@@ -11871,11 +12048,6 @@ msgid ""
 "grid view."
 msgstr ""
 
-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."
@@ -11920,13 +12092,6 @@ msgid ""
 "instead."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -11941,6 +12106,12 @@ msgstr ""
 msgid "WED"
 msgstr ""
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr ""
@@ -11954,9 +12125,6 @@ msgstr ""
 msgid "Warning"
 msgstr ""
 
-msgid "Warning Message"
-msgstr ""
-
 msgid "Warning!"
 msgstr ""
 
@@ -12089,11 +12257,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr ""
 
-msgid ""
-"When allowing CREATE TABLE AS option in SQL Lab, this option forces the "
-"table to be created in this schema"
-msgstr ""
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr ""
 
@@ -12114,6 +12277,11 @@ msgid ""
 "to the main datetime column."
 msgstr ""
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -12128,20 +12296,14 @@ msgstr ""
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
 
-msgid "When using this option, default value can’t be set"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
 msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr ""
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr ""
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -12179,6 +12341,9 @@ msgstr ""
 msgid "Whether to display bubbles on top of countries"
 msgstr ""
 
+msgid "Whether to display in the chart"
+msgstr ""
+
 msgid "Whether to display the aggregate count"
 msgstr ""
 
@@ -12188,11 +12353,6 @@ msgstr ""
 msgid "Whether to display the labels."
 msgstr ""
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-
 msgid "Whether to display the legend (toggles)"
 msgstr ""
 
@@ -12208,6 +12368,9 @@ msgstr ""
 msgid "Whether to display the numerical values within the cells"
 msgstr ""
 
+msgid "Whether to display the percentage value in the tooltip"
+msgstr ""
+
 msgid "Whether to display the stroke"
 msgstr ""
 
@@ -12220,9 +12383,15 @@ msgstr ""
 msgid "Whether to display the tooltip labels."
 msgstr ""
 
+msgid "Whether to display the total value in the tooltip"
+msgstr ""
+
 msgid "Whether to display the trend line"
 msgstr ""
 
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr ""
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr ""
 
@@ -12247,32 +12416,15 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr ""
 
-msgid "Whether to make the histogram cumulative"
-msgstr ""
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr ""
-
-msgid "Whether to normalize the histogram"
-msgstr ""
-
 msgid "Whether to populate autocomplete filters options"
 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 ""
-
 msgid "Whether to show as Nightingale chart."
 msgstr ""
 
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr ""
 
 msgid "Whether to show minor ticks on the axis"
@@ -12293,9 +12445,6 @@ msgstr ""
 msgid "Whether to sort descending or ascending"
 msgstr ""
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr ""
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 
@@ -12353,9 +12502,6 @@ msgstr ""
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr ""
-
 msgid "X AXIS TITLE MARGIN"
 msgstr ""
 
@@ -12374,6 +12520,9 @@ msgstr ""
 msgid "X Axis Title"
 msgstr ""
 
+msgid "X Axis Title Margin"
+msgstr ""
+
 msgid "X Log Scale"
 msgstr ""
 
@@ -12395,6 +12544,9 @@ msgstr ""
 msgid "XScale Interval"
 msgstr ""
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr ""
 
@@ -12505,6 +12657,19 @@ msgid ""
 "want to overwrite?"
 msgstr ""
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr ""
 
@@ -12574,9 +12739,6 @@ msgstr ""
 msgid "You don't have access to this embedded dashboard config."
 msgstr ""
 
-msgid "You don't have any favorites yet!"
-msgstr ""
-
 msgid "You don't have permission to modify the value."
 msgstr ""
 
@@ -12649,6 +12811,9 @@ msgstr ""
 msgid "Your chart is ready to go!"
 msgstr ""
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr ""
 
@@ -12675,6 +12840,9 @@ msgstr ""
 msgid "Your query was updated"
 msgstr ""
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr ""
 
@@ -12687,6 +12855,9 @@ msgstr ""
 msgid "Zoom"
 msgstr ""
 
+msgid "Zoom level"
+msgstr ""
+
 msgid "Zoom level of the map"
 msgstr ""
 
@@ -12800,9 +12971,6 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
-msgid "auto (Smooth)"
-msgstr ""
-
 msgid "background"
 msgstr ""
 
@@ -12849,10 +13017,6 @@ msgstr "Spravovať"
 msgid "chart"
 msgstr ""
 
-#, fuzzy
-msgid "charts"
-msgstr "Grafy"
-
 msgid "choose WHERE or HAVING..."
 msgstr ""
 
@@ -12862,6 +13026,9 @@ msgstr ""
 msgid "click here"
 msgstr ""
 
+msgid "close"
+msgstr ""
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr ""
 
@@ -12911,16 +13078,9 @@ msgstr ""
 msgid "cumsum"
 msgstr ""
 
-msgid "cumulative"
-msgstr ""
-
 msgid "dashboard"
 msgstr ""
 
-#, fuzzy
-msgid "dashboards"
-msgstr "Importovať dashboard"
-
 msgid "database"
 msgstr ""
 
@@ -12988,9 +13148,6 @@ msgstr ""
 msgid "default"
 msgstr ""
 
-msgid "delete"
-msgstr ""
-
 msgid "descendant"
 msgstr ""
 
@@ -13003,9 +13160,6 @@ msgstr ""
 msgid "dialect+driver://username:password@host:port/database"
 msgstr ""
 
-msgid "draft"
-msgstr ""
-
 msgid "dttm"
 msgstr ""
 
@@ -13045,9 +13199,6 @@ msgstr ""
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr ""
 
-msgid "e.g., a \"user id\" column"
-msgstr ""
-
 msgid "edit mode"
 msgstr ""
 
@@ -13057,6 +13208,9 @@ msgstr ""
 msgid "entries"
 msgstr ""
 
+msgid "entries per page"
+msgstr ""
+
 msgid "error"
 msgstr ""
 
@@ -13123,11 +13277,6 @@ msgstr ""
 msgid "hour"
 msgstr ""
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-
 msgid "in"
 msgstr ""
 
@@ -13137,6 +13286,9 @@ msgstr ""
 msgid "invalid email"
 msgstr ""
 
+msgid "is"
+msgstr ""
+
 msgid "is expected to be a Mapbox URL"
 msgstr ""
 
@@ -13146,6 +13298,22 @@ msgstr ""
 msgid "is expected to be an integer"
 msgstr ""
 
+#, python-format
+msgid ""
+"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 ""
+
+#, python-format
+msgid ""
+"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 ""
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr ""
 
@@ -13268,18 +13436,9 @@ msgstr ""
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr ""
-
-msgid "page_size.show"
-msgstr ""
-
 msgid "pending"
 msgstr ""
 
-msgid "percentile (exclusive)"
-msgstr ""
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -13288,22 +13447,19 @@ msgstr ""
 msgid "permalink state not found"
 msgstr ""
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 msgid "pixels"
 msgstr ""
 
 msgid "previous calendar month"
 msgstr ""
 
-msgid "previous calendar week"
+msgid "previous calendar quarter"
 msgstr ""
 
-msgid "previous calendar year"
+msgid "previous calendar week"
 msgstr ""
 
-msgid "published"
+msgid "previous calendar year"
 msgstr ""
 
 msgid "quarter"
@@ -13324,9 +13480,6 @@ msgstr ""
 msgid "recent"
 msgstr ""
 
-msgid "recents"
-msgstr ""
-
 msgid "recipients"
 msgstr ""
 
@@ -13350,8 +13503,8 @@ msgid "running"
 msgstr ""
 
 #, fuzzy
-msgid "saved queries"
-msgstr "Uložené dotazy"
+msgid "save"
+msgstr "Spravovať"
 
 msgid "seconds"
 msgstr ""
@@ -13366,9 +13519,6 @@ msgid ""
 "series"
 msgstr ""
 
-msgid "shift start date"
-msgstr ""
-
 msgid "sql"
 msgstr ""
 
@@ -13424,9 +13574,6 @@ msgstr ""
 msgid "textarea"
 msgstr ""
 
-msgid "to"
-msgstr ""
-
 msgid "top"
 msgstr ""
 
@@ -13436,6 +13583,12 @@ msgstr ""
 msgid "unknown type icon"
 msgstr ""
 
+msgid "unset"
+msgstr ""
+
+msgid "updated"
+msgstr ""
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -13459,9 +13612,6 @@ msgstr ""
 msgid "view instructions"
 msgstr ""
 
-msgid "virtual"
-msgstr ""
-
 msgid "viz type"
 msgstr ""
 
@@ -13497,3 +13647,6 @@ msgstr ""
 
 msgid "zoom area"
 msgstr ""
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/sl/LC_MESSAGES/messages.po b/superset/translations/sl/LC_MESSAGES/messages.po
index d0ee1045446d65e99ca160b32645c9c83c127c70..5bc92a3f811151f7ef3f773e952d58e91bb4c9df 100644
--- a/superset/translations/sl/LC_MESSAGES/messages.po
+++ b/superset/translations/sl/LC_MESSAGES/messages.po
@@ -17,17 +17,17 @@ msgid ""
 msgstr ""
 "Project-Id-Version:  Superset\n"
 "Report-Msgid-Bugs-To: dkrat7 @github.com\n"
-"POT-Creation-Date: 2024-10-05 23:48+0200\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2024-10-05 23:46+0200\n"
 "Last-Translator: dkrat7 <dkrat7 @github.com>\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"
+"&& n%100<=4 ? 2 : 3)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -91,12 +91,12 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
-"\n"
-"            Napaka: %(text)s\n"
-"            "
 
 msgid " (excluded)"
 msgstr " (ni vključeno)"
@@ -197,15 +197,9 @@ msgstr ""
 "%(dialect)s ni mogoče uporabiti kot podatkovni vir zaradi varnostnih "
 "razlogov."
 
-#, 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"
+#, fuzzy, python-format
+msgid "%(label)s file"
+msgstr "%(type)s datoteka"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -219,22 +213,6 @@ msgstr "%(name)s.pdf"
 msgid "%(object)s does not exist in this database."
 msgstr "%(object)s ne obstaja v tej podatkovni bazi."
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr "%(other)s grafikoni bodo prikazani tu"
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr "%(other)s nadzorne plošče bodo prikazane tu"
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr "%(other)s zadnji bodo prikazani tu"
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s shranjene poizvedbe bodo prikazane tu"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr "%(prefix)s %(title)s"
@@ -252,16 +230,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr "%(rows)d vrnjenih vrstic"
 
-#, 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"
-
 #, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -278,10 +246,6 @@ msgstr[3] ""
 "%(firstSuggestions)s ali %(lastSuggestion)s namesto "
 "\"%(undefinedParameter)s\"?"
 
-#, python-format
-msgid "%(type)s File"
-msgstr "%(type)s datoteka"
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -336,10 +300,6 @@ msgstr "Agreg. funkcije: %s"
 msgid "%s column(s)"
 msgstr "Stolpci: %s"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr "%s neustreznih elementov je skritih"
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -515,6 +475,13 @@ msgstr "frekvenca: 1 leto - začetek"
 msgid "10 minute"
 msgstr "10 minute"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 percentil"
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr "104 weeks"
 
@@ -611,6 +578,10 @@ msgstr "5 second"
 msgid "5 seconds"
 msgstr "5 seconds"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 percentil"
+
 msgid "52 weeks"
 msgstr "52 weeks"
 
@@ -644,10 +615,6 @@ msgstr "90 days"
 msgid ":"
 msgstr ":"
 
-#, python-format
-msgid ":%(column)d"
-msgstr ":%(column)d"
-
 msgid "< (Smaller than)"
 msgstr "< (manjše kot)"
 
@@ -681,9 +648,6 @@ msgstr ">= (večje ali enako)"
 msgid "A Big Number"
 msgstr "Velika številka"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "S spustnega seznama izberite imena stolpcev, ki bodo obravnavani kot datumi."
-
 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."
 
@@ -693,6 +657,9 @@ msgstr "Pri povezavi preko SSH-tunela so potrebna vrata podatkovne baze."
 msgid "A database with the same name already exists."
 msgstr "Podatkovna baza z enakim imenom že obstaja."
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -781,13 +748,6 @@ msgstr ""
 "Nabor parametrov, ki postanejo razpoložljivi za poizvedbo z uporabo Jinja"
 " sintakse"
 
-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."
-
 msgid "A timeout occurred while executing the query."
 msgstr "Pri izvajanju poizvedbe je potekel čas."
 
@@ -887,33 +847,41 @@ msgstr "Dodaj prejemnike v vednost (CC)"
 msgid "Add CSS template"
 msgstr "Dodaj CSS predlogo"
 
-msgid "Add Chart"
-msgstr "Dodaj grafikon"
-
-msgid "Add Column"
-msgstr "Dodaj stolpec"
-
 msgid "Add Dashboard"
 msgstr "Dodaj nadzorno ploščo"
 
-msgid "Add Database"
-msgstr "Dodaj podatkovno bazo"
+#, fuzzy
+msgid "Add Divider"
+msgstr "Ločilnik"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Dodaj filter"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Skrij sloj"
 
 msgid "Add Log"
 msgstr "Dodaj dnevnik"
 
-msgid "Add Metric"
-msgstr "Dodaj mero"
-
 msgid "Add Report"
 msgstr "Dodaj poročilo"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "Izključene vloge"
+
 msgid "Add Rule"
 msgstr "Dodaj pravilo"
 
 msgid "Add Tag"
 msgstr "Dodaj oznako"
 
+#, fuzzy
+msgid "Add User"
+msgstr "Dodaj pravilo"
+
 msgid "Add a Plugin"
 msgstr "Dodaj vtičnik"
 
@@ -998,9 +966,6 @@ msgstr ""
 "poizvedbe filtra\n"
 "                     ali pa omejiti nabor prikazanih vrednosti filtra."
 
-msgid "Add filters and dividers"
-msgstr "Dodaj filtre in ločilnike"
-
 msgid "Add item"
 msgstr "Dodaj"
 
@@ -1016,6 +981,10 @@ msgstr "Dodaj novo pravilo za barvo"
 msgid "Add new formatter"
 msgstr "Dodaj novo pravilo"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Dodaj in uredi filtre"
+
 msgid "Add required control values to preview chart"
 msgstr "Dodaj potrebne parametre za predogled grafikona"
 
@@ -1037,12 +1006,17 @@ msgstr "Dodajte ime nadzorne plošče"
 msgid "Add to dashboard"
 msgstr "Dodaj na nadzorno ploščo"
 
-msgid "Add/Edit Filters"
-msgstr "Dodaj/uredi filter"
-
 msgid "Added"
 msgstr "Dodano"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
 #, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -1060,9 +1034,6 @@ msgstr "Mogoče bodo potrebna dodatna polja"
 msgid "Additional information"
 msgstr "Dodatne informacije"
 
-msgid "Additional metadata"
-msgstr "Dodatni metapodatki"
-
 msgid "Additional padding for legend."
 msgstr "Dodatni razmak za legendo."
 
@@ -1172,6 +1143,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "Agregacija"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "Agregacija"
+
 msgid "Aggregation function"
 msgstr "Agregacijska funkcija"
 
@@ -1253,6 +1228,10 @@ msgstr "Poravnaj +/-"
 msgid "All"
 msgstr "Vse"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Stolpci tabele"
+
 msgid "All Text"
 msgstr "Celotno besedilo"
 
@@ -1268,30 +1247,15 @@ msgstr "Vsi filtri"
 msgid "All panels"
 msgstr "Vsi paneli"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr "Ta filter bo vplival na vse grafikone s tem stolpcem"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "Dovoli CREATE TABLE AS"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Dovoli opcijo CREATE TABLE AS v SQL laboratoriju"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "Dovoli CREATE VIEW AS"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Dovoli opcijo CREATE VIEW AS v SQL laboratoriju"
-
-msgid "Allow Csv Upload"
-msgstr "Dovoli nalaganje CSV"
-
 msgid "Allow DDL and DML"
 msgstr "Dovoli DDL in DML"
 
-msgid "Allow DDL/DML"
-msgstr "Dovoli DDL/DML"
-
 msgid "Allow changing catalogs"
 msgstr "Omogoči spreminjanje katalogov"
 
@@ -1308,6 +1272,10 @@ msgstr "Omogoči razvrščanje stolpcev"
 msgid "Allow creation of new tables based on queries"
 msgstr "Dovoli ustvarjanje novih tabel s poizvedbami"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "Dovoli ustvarjanje novih pogledov s poizvedbami"
+
 msgid "Allow creation of new views based on queries"
 msgstr "Dovoli ustvarjanje novih pogledov s poizvedbami"
 
@@ -1344,13 +1312,6 @@ msgstr "Dovoli raziskovanje te podatkovne baze"
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "Dovoli poizvedbo na to podatkovno bazo v SQL laboratoriju"
 
-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"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "Dovoljene domene (ločeno z vejico)"
 
@@ -1398,6 +1359,10 @@ msgstr ""
 msgid "An error has occurred"
 msgstr "Prišlo je do napake"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Prišlo je do napake pri pridobivanju podatkovnih setov: %s"
+
 msgid "An error occurred"
 msgstr "Prišlo je do napake"
 
@@ -1407,6 +1372,10 @@ msgstr "Pri shranjevanju podatkovnega seta je prišlo do napake"
 msgid "An error occurred when running alert query"
 msgstr "Pri zaganjanju poizvedbe za opozorilo je prišlo do napake"
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Pri dostopanju do vednosti je prišlo do težave."
+
 msgid "An error occurred while accessing the value."
 msgstr "Pri dostopanju do vednosti je prišlo do težave."
 
@@ -1421,6 +1390,10 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr "Napaka pri ustvarjanju %s: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Pri ustvarjanju vrednosti je prišlo do težave."
+
 msgid "An error occurred while creating the data source"
 msgstr "Pri ustvarjanju podatkovnega vira je prišlo do težave"
 
@@ -1566,6 +1539,10 @@ msgstr ""
 "Pri shranjevanju vaše poizvedbe v sistem je prišlo do napake. Da ne "
 "izgubite sprememb, shranite poizvedbo z gumbom \"Shrani poizvedbo\"."
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Napaka pri pridobivanju informacij za %s: %s"
+
 msgid "An error occurred while updating the value."
 msgstr "Pri posodabljanju vrednosti je prišlo do težave."
 
@@ -1753,12 +1730,6 @@ msgstr "Uporabi filtre"
 msgid "Apply metrics on"
 msgstr "Uporabi mero za"
 
-msgid "Apply to all panels"
-msgstr "Uporabi za vse grafikone"
-
-msgid "Apply to specific panels"
-msgstr "Uporabi za izbrane grafikone"
-
 msgid "April"
 msgstr "April"
 
@@ -1800,6 +1771,10 @@ msgstr "Ali ste prepričani, da želite izbrisati izbrane sloje?"
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "Ali ste prepričani, da želite izbrisati izbrane poizvedbe?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "Ali ste prepričani, da želite izbrisati izbrana pravila?"
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "Ali ste prepričani, da želite izbrisati izbrana pravila?"
 
@@ -1809,6 +1784,10 @@ msgstr "Ali ste prepričani, da želite izbrisati izbrane oznake?"
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "Ali ste prepričani, da želite izbrisati izbrane predloge?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "Ali ste prepričani, da želite izbrisati izbrane poizvedbe?"
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "Ali ste prepričani, da želite prepisati podatkovni set?"
 
@@ -1848,15 +1827,13 @@ msgstr "Določi nabor parametrov kot"
 msgid "Assist"
 msgstr "Pomoč"
 
-msgid "Associated Charts"
-msgstr "Povezani grafikoni"
-
-msgid "Async Execution"
-msgstr "Asinhrono izvajanje"
-
 msgid "Asynchronous query execution"
 msgstr "Asinhroni zagon poizvedb"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "Porazdelitev"
+
 msgid "August"
 msgstr "Avgust"
 
@@ -1881,12 +1858,26 @@ msgstr "Predikat za samodokončanje poizvedb"
 msgid "Automatic Color"
 msgstr "Samodejne barve"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Prilagodi stolpce"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Prilagodi stolpce"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "Razpoložljivi načini razvrščanja:"
 
 msgid "Average"
 msgstr "Povprečje"
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr "Povprečna vrednost"
 
@@ -1923,6 +1914,10 @@ msgstr "Nazaj na vse"
 msgid "Backend"
 msgstr "Zaledni sistem"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "ozadje"
+
 msgid "Backward values"
 msgstr "Prejšnje vrednosti"
 
@@ -1938,9 +1933,6 @@ msgstr "Stolpec"
 msgid "Bar Chart"
 msgstr "Stolpčni grafikon"
 
-msgid "Bar Chart (legacy)"
-msgstr "Stolpčni graf (zastarelo)"
-
 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."
 
@@ -1953,10 +1945,25 @@ msgstr "Orientacija stolpcev"
 msgid "Base"
 msgstr "Osnoven"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Vrata podatkovne baze"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Višina grafikona"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr "Slog osnovnega zemljevida. Glej dokumentacijo Mapbox: %s"
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Debelina črte"
+
 msgid "Based on a metric"
 msgstr "Osnovan na meri"
 
@@ -1976,9 +1983,6 @@ msgstr "Osnovne informacije"
 msgid "Batch editing %d filters:"
 msgstr "Skupinsko urejanje %d filtrov:"
 
-msgid "Battery level over time"
-msgstr "Napolnjenost baterije skozi čas"
-
 msgid "Be careful."
 msgstr "Bodite previdni."
 
@@ -2000,6 +2004,14 @@ msgstr "Velika številka s trendno krivuljo"
 msgid "Bins"
 msgstr "Razdelki"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Barve nizov"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Debelina povezave"
+
 msgid "Bottom"
 msgstr "Spodaj"
 
@@ -2123,9 +2135,6 @@ msgstr "'Bullet' grafikon"
 msgid "Business"
 msgstr "Aktivnost"
 
-msgid "Business Data Type"
-msgstr "Poslovni podatkovni tip"
-
 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"
@@ -2194,8 +2203,9 @@ msgstr "CSS predloge"
 msgid "CSS templates could not be deleted."
 msgstr "CSS predlog ni mogoče izbrisati."
 
-msgid "CSV Upload"
-msgstr "Nalaganje CSV"
+#, fuzzy
+msgid "CSV upload"
+msgstr "Nalaganje datoteke"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "CTAS & CVAS SHEMA"
@@ -2209,8 +2219,9 @@ msgstr ""
 "zadnji stavek SELECT. Poskrbite, da bo zadnji stavek v vaši poizvedbi "
 "SELECT in poskusite ponovno zagnati poizvedbo."
 
-msgid "CTAS Schema"
-msgstr "CTAS shema"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "Prilagojen"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2227,9 +2238,6 @@ msgstr "CVAS (create view as select) poizvedba ima več kot en stavek."
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "CVAS (create view as select) poizvedba ni SELECT stavek."
 
-msgid "Cache Timeout"
-msgstr "Trajanje predpomnilnika"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Trajanje predpomnilnika (sekunde)"
 
@@ -2274,9 +2282,6 @@ msgstr "Najvišjega zavihka ni mogoče premakniti v gnezdene zavihke"
 msgid "Can select multiple values"
 msgstr "Dovoli izbiro več vrednosti"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "Ne sme imeti prekrivanja med podatkovnimi serijami in členitvami"
-
 msgid "Cancel"
 msgstr "Prekliči"
 
@@ -2289,6 +2294,10 @@ msgstr "Dostop do poizvedbe ni mogoč"
 msgid "Cannot delete a database that has datasets attached"
 msgstr "Podatkovne baze s povezanimi podatkovnimi viri ni mogoče izbrisati"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr "Za SSH-tunel ne morete imeti več prijavnih podatkov"
 
@@ -2299,6 +2308,10 @@ msgstr "Filtra ni mogoče naložiti"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "Ni mogoče razčleniti časovnega izraza [%(human_readable)s]"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Grafikon s pravokotniki"
+
 msgid "Catalog"
 msgstr "Katalog"
 
@@ -2375,12 +2388,13 @@ msgstr "Spremeni vrstni red stolpcev."
 msgid "Change order of rows."
 msgstr "Spremeni vrstni red vrstic."
 
-msgid "Changed By"
-msgstr "Spremenil"
-
 msgid "Changed by"
 msgstr "Spremenil"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "sprememba"
+
 msgid "Changes saved."
 msgstr "Spremembe shranjene."
 
@@ -2432,9 +2446,6 @@ msgstr "Grafikon"
 msgid "Chart %(id)s not found"
 msgstr "Grafikon %(id)s ni najden"
 
-msgid "Chart Cache Timeout"
-msgstr "Trajanje predpomnilnika grafikona"
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr "Podatki grafikona: %s"
@@ -2531,6 +2542,10 @@ msgstr "Parametri grafikona so neveljavni."
 msgid "Chart properties updated"
 msgstr "Lastnosti grafikona posodobljene"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "grafikoni"
+
 msgid "Chart title"
 msgstr "Naslov grafikona"
 
@@ -2580,6 +2595,10 @@ msgstr "Izbran [Radij točk] mora biti prisoten v [Združevanje po]"
 msgid "Choose File"
 msgstr "Izberite datoteko"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Izberite grafikon ali nadzorno ploščo, ne obojega"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Izberite grafikon ali nadzorno ploščo, ne obojega"
 
@@ -2601,9 +2620,6 @@ msgstr "Izberite obliko zapisa števila"
 msgid "Choose a source"
 msgstr "Izberite izvor"
 
-msgid "Choose a source and a target"
-msgstr "Izberite izhodišče in cilj"
-
 msgid "Choose a target"
 msgstr "Izberite cilj"
 
@@ -2681,9 +2697,6 @@ msgstr "Okrogla oblika radarja"
 msgid "Circular"
 msgstr "Krožno"
 
-msgid "Classic chart that visualizes how metrics change over time."
-msgstr "Standardni grafikon za prikaz spreminjanje mere skozi čas."
-
 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."
@@ -2704,7 +2717,10 @@ msgstr "Počisti vse podatke"
 msgid "Clear form"
 msgstr "Počisti polja"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 "Kliknite na gumb \"Dodaj/Uredi filtre\" za kreiranje novih filtrov "
 "nadzorne plošče"
@@ -2739,6 +2755,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr "Klikni za dodajanje plastnice"
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "Klikni za dodajanje plastnice"
+
 msgid "Click to cancel sorting"
 msgstr "Kliknite za prekinitev razvrščanja"
 
@@ -2858,12 +2878,13 @@ msgstr "Stolpec \"%(column)s\" ni numeričen ali ne obstaja v rezultatu poizvedb
 msgid "Column Configuration"
 msgstr "Konfiguracija stolpca"
 
-msgid "Column Data Types"
-msgstr "Podatkovni tipi stolpcev"
-
 msgid "Column Formatting"
 msgstr "Oblikovanje stolpca"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Nastavitve poligonov"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2880,9 +2901,6 @@ msgstr "Stolpec s podatki zemljepisne dolžine"
 msgid "Column data types"
 msgstr "Podatkovni tipi stolpcev"
 
-msgid "Column datatype"
-msgstr "Podatkovni tipi stolpcev"
-
 msgid "Column header tooltip"
 msgstr "Opis glave stolpca"
 
@@ -2910,17 +2928,20 @@ msgstr ""
 "Stolpec, ki se uporabi kot indeks v dataframe-u. Če je prazno, se uporabi"
 " oznaka Index."
 
-msgid "Columnar Upload"
+#, fuzzy
+msgid "Column type"
+msgstr "Podatkovni tipi stolpcev"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "Nalaganje stolpčne datoteke"
 
 msgid "Columns"
 msgstr "Stolpci"
 
-msgid "Columns To Be Parsed as Dates"
-msgstr "Stolpci, ki bodo prepoznani kot datumi"
-
-msgid "Columns To Read"
-msgstr "Stolpci za branje"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "Stolpci: %s"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2933,6 +2954,10 @@ msgstr "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr "Položaj delnih vsot stolpcev"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "Izberite stolpce, ki bodo prepoznani kot datumi"
+
 msgid "Columns to calculate distribution across."
 msgstr "Stolpci za izračun porazdelitve."
 
@@ -2948,6 +2973,10 @@ msgstr "Stolpci za združevanje po stolpcih"
 msgid "Columns to group by on the rows"
 msgstr "Stolpci za združevanje po vrsticah"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Izberite stolpce za branje"
+
 msgid "Combine metrics"
 msgstr "Združuj mere"
 
@@ -2992,19 +3021,6 @@ msgstr ""
 "skupina predstavlja eno vrstico, časovne spremembe pa so prikazane z "
 "dolžino stolpcev in barvami."
 
-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."
-
-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."
-
 msgid "Comparison"
 msgstr "Primerjava"
 
@@ -3062,18 +3078,28 @@ msgstr "Nastavi doseg filtrov"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "Osnovne nastavitve sloja z oznakami."
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr "Nastavite nadzorno ploščo za vgradnjo v zunanjo spletno aplikacijo."
 
 msgid "Configure your how you overlay is displayed here."
 msgstr "Nastavite kako prikazuje vrhnja plast."
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Prikaži geslo."
+
 msgid "Confirm overwrite"
 msgstr "Potrdite prepis"
 
 msgid "Confirm save"
 msgstr "Potrdite shranjevanje"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "Poveži"
 
@@ -3104,9 +3130,6 @@ msgstr "Povezava neuspešna. Preverite nastavitve povezave"
 msgid "Connection failed, please check your connection settings."
 msgstr "Povezava neuspešna. Preverite nastavitve povezave."
 
-msgid "Connection looks good!"
-msgstr "Povezava izgleda v redu!"
-
 msgid "Content format"
 msgstr "Oblika vsebine"
 
@@ -3143,21 +3166,21 @@ msgstr "Kopirano na odložišče!"
 msgid "Copy"
 msgstr "Kopiraj"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "Kopiraj stavek SELECT na odložišče"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "Kopiraj in prilepi JSON prijavne podatke"
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "Tukaj kopirajte in prilepite celotno json datoteko servisnega računa"
-
 msgid "Copy link"
 msgstr "Kopiraj povezavo"
 
-msgid "Copy message"
-msgstr "Kopiraj sporočilo"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Kopija %s"
@@ -3174,6 +3197,9 @@ msgstr "Kopiraj URL poizvedbe"
 msgid "Copy query link to your clipboard"
 msgstr "Kopiraj povezavo do poizvedbe v odložišče"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr "Kopirajte ID računa, s katerim se skušate povezati."
 
@@ -3189,6 +3215,10 @@ msgstr "Kopiraj na odložišče"
 msgid "Copy to clipboard"
 msgstr "Kopiraj na odložišče"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "Notranji polmer"
+
 msgid "Correlation"
 msgstr "Korelacija"
 
@@ -3218,6 +3248,9 @@ msgstr "Ni mogoče naložiti gonilnika podatkovne baze: {}"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr "Gostitelj ni dosegljiv: \"%(host)s\"."
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr "Število"
 
@@ -3310,6 +3343,9 @@ msgstr "Ustvarjanje podatkovnega vira in novega zavihka"
 msgid "Creator"
 msgstr "Avtor"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr "Škrlatna"
 
@@ -3391,6 +3427,9 @@ msgstr "Prilagojena SQL-polja ne smejo vsebovati podpoizvedb."
 msgid "Custom color palettes"
 msgstr "Prilagojene barvne palete"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 msgid "Custom date"
 msgstr "Prilagojen datum"
 
@@ -3425,9 +3464,6 @@ msgstr "Prilagodite podatkovni vir, filtre in izgled."
 msgid "Cyclic dependency detected"
 msgstr "Zaznana krožna odvisnost"
 
-msgid "D3 Format"
-msgstr "D3 format"
-
 msgid "D3 format"
 msgstr "D3 format"
 
@@ -3497,6 +3533,10 @@ msgstr "Nadzorne plošče ni mogoče dodati med priljubljene."
 msgid "Dashboard cannot be unfavorited."
 msgstr "Nadzorne plošče ni mogoče odstraniti iz priljubljenih."
 
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "Nadzorne plošče ni mogoče posodobiti."
+
 msgid "Dashboard could not be deleted."
 msgstr "Nadzorne plošče ni mogoče izbrisati."
 
@@ -3509,6 +3549,10 @@ msgstr "Nadzorna plošča ne obstaja"
 msgid "Dashboard imported"
 msgstr "Nadzorna plošča uvožena"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "Nadzorne plošče ni mogoče posodobiti."
+
 msgid "Dashboard parameters are invalid."
 msgstr "Parametri nadzorne plošče so neveljavni."
 
@@ -3552,9 +3596,6 @@ msgstr "Črtkano"
 msgid "Data"
 msgstr "Podatki"
 
-msgid "Data Imported"
-msgstr "Podatki uvoženi"
-
 msgid "Data Table"
 msgstr "Tabela podatkov"
 
@@ -3584,6 +3625,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr "Podatki za %s"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Podatki uvoženi"
+
 msgid "Data preview"
 msgstr "Ogled podatkov"
 
@@ -3743,16 +3788,6 @@ msgstr ""
 "Podatkovni set lahko ustvarite iz tabel podatkovne baze ali s pomočjo "
 "SQL-poizvedbe. Izberite tabelo podatkovne baze na levi ali "
 
-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."
-
 msgid "Datasets could not be deleted."
 msgstr "Podatkovnih nizov ni mogoče izbrisati."
 
@@ -3786,9 +3821,6 @@ msgstr "Niz za obliko datuma"
 msgid "Date/Time"
 msgstr "Datum/Čas"
 
-msgid "Datetime Format"
-msgstr "Oblika zapisa datuma,časa"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3818,13 +3850,12 @@ msgstr "Deaktiviraj"
 msgid "December"
 msgstr "December"
 
-msgid "Decides which column to sort the base axis by."
-msgstr "Odloči, po katerem stolpcu bo razvrščena osnovna os."
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "Odloči, po kateri meri bo razvrščena osnovna os."
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "Decimalno ločilo"
 
 msgid "Deck.gl - 3D Grid"
@@ -3866,19 +3897,17 @@ msgstr "Zmanjšaj"
 msgid "Default Catalog"
 msgstr "Privzeti katalog"
 
-msgid "Default Endpoint"
-msgstr "Privzeta končna točka"
-
 msgid "Default Schema"
 msgstr "Privzeta shema"
 
 msgid "Default URL"
 msgstr "Privzeti URL"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
-"Privzeti URL za preusmeritev, ko dostopate iz strani s seznamom "
-"podatkovnih setov"
 
 msgid "Default Value"
 msgstr "Privzeta vrednost"
@@ -3899,9 +3928,6 @@ msgstr ""
 "Privzeta min. širina stolpca v pikslih. Dejanska širina bo lahko večja, "
 "če drugi stolpci ne potrebujejo veliko prostora"
 
-msgid "Default value is required"
-msgstr "Zahtevana je privzeta vrednost"
-
 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"
@@ -3960,9 +3986,6 @@ msgid ""
 "[Periods] text box"
 msgstr "Določi funkcijo drsečega okna. Dela skupaj s tekstovnim okvirjem [Obdobja]"
 
-msgid "Defines how each series is broken down"
-msgstr "Določa, kako se vsaka podatkovna serija razčleni"
-
 msgid "Defines the grid size in pixels"
 msgstr "Določa velikost mreže v pikslih"
 
@@ -4022,9 +4045,17 @@ msgstr "Izbrišem poizvedbo?"
 msgid "Delete Report?"
 msgstr "Izbrišem poročilo?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "Izbrišem predlogo?"
+
 msgid "Delete Template?"
 msgstr "Izbrišem predlogo?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Izbrišem poizvedbo?"
+
 msgid "Delete all Really?"
 msgstr "Ali resnično vse izbrišem?"
 
@@ -4043,12 +4074,20 @@ msgstr "Izbriši e-poštno poročilo"
 msgid "Delete query"
 msgstr "Izbriši poizvedbo"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "Izberite datoteko"
+
 msgid "Delete template"
 msgstr "Izbriši predlogo"
 
 msgid "Delete this container and save to remove this message."
 msgstr "Izbrišite ta okvir in shranite za odpravo tega sporočila."
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Izbriši poizvedbo"
+
 msgid "Deleted"
 msgstr "Izbrisano"
 
@@ -4128,6 +4167,22 @@ msgstr[3] "Izbrisanih %(num)d shranjenih poizvedb"
 msgid "Deleted %s"
 msgstr "Izbrisano %s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Izbrisano: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Izbrisano: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Izbrisano: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Izbrisano: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Izbrisano: %s"
@@ -4148,18 +4203,12 @@ msgstr "Ločilnik"
 msgid "Delivery method"
 msgstr "Način dostave"
 
-msgid "Demographics"
-msgstr "Demografija"
-
 msgid "Density"
 msgstr "Gostota"
 
 msgid "Dependent on"
 msgstr "Odvisen od"
 
-msgid "Deprecated"
-msgstr "Zastarelo"
-
 msgid "Description"
 msgstr "Opis"
 
@@ -4256,21 +4305,26 @@ msgstr "Za to podatkovno bazo onemogočite vrtanje v podrobnosti."
 msgid "Discard"
 msgstr "Zavrzi"
 
-msgid "Display"
-msgstr "Prikaz"
-
 msgid "Display Name"
 msgstr "Ime za prikaz"
 
 msgid "Display all"
 msgstr "Prikaži vse"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "Prikaži vsoto na nivoju stolpca"
+
 msgid "Display column level subtotal"
 msgstr "Prikaži delno vsoto na nivoju stolpca"
 
 msgid "Display column level total"
 msgstr "Prikaži vsoto na nivoju stolpca"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Prikaži vsoto na nivoju stolpca"
+
 msgid "Display configuration"
 msgstr "Prikaži nastavitve"
 
@@ -4295,8 +4349,9 @@ msgstr "Prikaži delno vsoto na nivoju vrstice"
 msgid "Display row level total"
 msgstr "Prikaži vsoto na nivoju vrstice"
 
-msgid "Display settings"
-msgstr "Nastavitve prikaza"
+#, fuzzy
+msgid "Display type icon"
+msgstr "ikona binarnega tipa"
 
 msgid ""
 "Displays connections between entities in a graph structure. Useful for "
@@ -4315,9 +4370,6 @@ msgstr "Porazdeli glede na"
 msgid "Distribution"
 msgstr "Porazdelitev"
 
-msgid "Distribution - Bar Chart"
-msgstr "Porazdelitev - Stolpčni grafikon"
-
 msgid "Divider"
 msgstr "Ločilnik"
 
@@ -4345,9 +4397,18 @@ msgstr "Izvozi kot sliko"
 msgid "Download as image"
 msgstr "Izvozi kot sliko"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "Izvozi kot CSV"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "Osnutek"
 
@@ -4450,6 +4511,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "Dupliciraj podatkovni set"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Dupliciraj"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "Podvojena imena stolpcev: %(columns)s"
+
 msgid "Duplicate tab"
 msgstr "Podvoji zavihek"
 
@@ -4465,22 +4534,6 @@ msgstr ""
 "Vrednost 0 označuje, da predpomnilnik nikoli ne poteče, -1 pa onemogoči "
 "predpomnjenje. V primeru, da ni definirano, ima globalno nastavitev."
 
-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."
-
-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."
-
 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 "
@@ -4490,15 +4543,6 @@ msgstr ""
 "izključite predpomnjenje. Če ni definirano, je uporabljena vrednost za "
 "podatkovni set."
 
-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."
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4519,6 +4563,10 @@ msgstr "Trajanje v ms (1.40008 => 1ms 400µs 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "Trajanje v ms (100.40008 => 100ms 400µs 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "Trajanje v ms (66000 => 1m 6s)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "Trajanje v ms (66000 => 1m 6s)"
 
@@ -4540,10 +4588,6 @@ msgstr "KONEC (NI VKLJUČEN)"
 msgid "ERROR"
 msgstr "NAPAKA"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "NAPAKA: %s"
-
 msgid "Edge length"
 msgstr "Dolžina povezave"
 
@@ -4568,45 +4612,38 @@ msgstr "Uredi CSS"
 msgid "Edit CSS template properties"
 msgstr "Uredi lastnosti CSS predloge"
 
-msgid "Edit Chart"
-msgstr "Uredi grafikon"
-
 msgid "Edit Chart Properties"
 msgstr "Uredi lastnosti grafikona"
 
-msgid "Edit Column"
-msgstr "Uredi stolpec"
-
 msgid "Edit Dashboard"
 msgstr "Uredi nadzorno ploščo"
 
-msgid "Edit Database"
-msgstr "Uredi podatkovno bazo"
-
 msgid "Edit Dataset "
 msgstr "Uredi podatkovni set "
 
 msgid "Edit Log"
 msgstr "Uredi dnevnik"
 
-msgid "Edit Metric"
-msgstr "Uredi mero"
-
 msgid "Edit Plugin"
 msgstr "Uredi vtičnik"
 
 msgid "Edit Report"
 msgstr "Uredi poročilo"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "načinu urejanja"
+
 msgid "Edit Rule"
 msgstr "Uredi pravilo"
 
-msgid "Edit Table"
-msgstr "Uredi tabelo"
-
 msgid "Edit Tag"
 msgstr "Uredi oznako"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Uredi poizvedbo"
+
 msgid "Edit annotation"
 msgstr "Uredi oznako"
 
@@ -4643,6 +4680,10 @@ msgstr "Uredi lastnosti"
 msgid "Edit query"
 msgstr "Uredi poizvedbo"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "načinu urejanja"
+
 msgid "Edit template"
 msgstr "Uredi predlogo"
 
@@ -4655,6 +4696,10 @@ msgstr "Uredi nadzorno ploščo"
 msgid "Edit time range"
 msgstr "Uredi časovno obdobje"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Uredi poizvedbo"
+
 msgid "Edited"
 msgstr "Urejeno"
 
@@ -4682,6 +4727,14 @@ msgstr "Uporabniško ime ali/in geslo sta napačna."
 msgid "Elevation"
 msgstr "Višina"
 
+#, fuzzy
+msgid "Email"
+msgstr "Podrobnosti"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "Zahtevana je vrednost"
+
 msgid "Email reports active"
 msgstr "E-poštna poročila aktivna"
 
@@ -4709,9 +4762,6 @@ msgstr "Oddajaj dogodke filtrov"
 msgid "Emphasis"
 msgstr "Poudari"
 
-msgid "Employment and education"
-msgstr "Zaposlitev in izobrazba"
-
 msgid "Empty circle"
 msgstr "Prazen krog"
 
@@ -4733,9 +4783,6 @@ msgstr "Prazna vrstica"
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr "Omogoči 'Dovoli nalaganje podatkov' v nastavitvah vseh podatkovnih baz"
 
-msgid "Enable Filter Select"
-msgstr "Omogoči izbiro filtra"
-
 msgid "Enable cross-filtering"
 msgstr "Omogoči medsebojne filtre"
 
@@ -4839,12 +4886,26 @@ msgstr "Vnesite naslov poročila"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "Vnesite potrebne %(dbModelName)s vpisne podatke"
 
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Vnesite naslov opozorila"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "Vnesite naslov opozorila"
+
+msgid "Enter the user's username"
+msgstr ""
+
 msgid "Entity"
 msgstr "Entiteta"
 
-msgid "Entity ID"
-msgstr "ID-entitete"
-
 msgid "Equal Date Sizes"
 msgstr "Enaki datumi"
 
@@ -4857,6 +4918,10 @@ msgstr "Napaka"
 msgid "Error Fetching Tagged Objects"
 msgstr "Pri pridobivanju označenih elementov je prišlo do napake"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Napaka pri pridobivanju podatkov: %s"
+
 msgid "Error faving chart"
 msgstr "Napaka pri dodajanju grafikona med priljubljene"
 
@@ -4902,6 +4967,18 @@ msgstr "Pri shranjevanju podatkovnega seta je prišlo do napake"
 msgid "Error unfaving chart"
 msgstr "Napaka pri odstranjevanju grafikona iz priljubljenih"
 
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Napaka pri pridobivanju grafikonov"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Napaka pri pridobivanju grafikonov"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Napaka pri pridobivanju grafikonov"
+
 msgid "Error while fetching charts"
 msgstr "Napaka pri pridobivanju grafikonov"
 
@@ -4909,10 +4986,30 @@ msgstr "Napaka pri pridobivanju grafikonov"
 msgid "Error while fetching data: %s"
 msgstr "Napaka pri pridobivanju podatkov: %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Napaka pri pridobivanju grafikonov"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Napaka pri pridobivanju grafikonov"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Napaka pri pridobivanju grafikonov"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "Napaka pri izvajanju poizvedbe virtualnega podatkovnega seta: %(msg)s"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Napaka pri pridobivanju grafikonov"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Napaka pri pridobivanju grafikonov"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "Napaka: %(error)s"
@@ -4936,15 +5033,6 @@ msgstr "Oceni potratnost pred zagonom poizvedbe"
 msgid "Event"
 msgstr "Dogodek"
 
-msgid "Event Flow"
-msgstr "Potek dogodkov"
-
-msgid "Event Names"
-msgstr "Imena dogodkov"
-
-msgid "Event definition"
-msgstr "Definicija dogodka"
-
 msgid "Event flow"
 msgstr "Potek dogodkov"
 
@@ -4966,12 +5054,13 @@ msgstr "Primer"
 msgid "Examples"
 msgstr "Vzorci"
 
-msgid "Excel Upload"
-msgstr "Nalaganje Excel-a"
-
 msgid "Excel file format cannot be determined"
 msgstr "Ni mogoče določiti formata Excel-ove datoteke"
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "Nalaganje Excel-a"
+
 msgid "Exclude selected values"
 msgstr "Izloči izbrane vrednosti"
 
@@ -5062,12 +5151,6 @@ msgstr "Izvozi v PDF"
 msgid "Export to Pivoted .CSV"
 msgstr "Izvozi v vrtilni .CSV"
 
-msgid "Export to YAML"
-msgstr "Izvozi v YAML"
-
-msgid "Export to YAML?"
-msgstr "Izvozim v YAML?"
-
 msgid "Export to full .CSV"
 msgstr "Izvozi v celoten .CSV"
 
@@ -5086,11 +5169,9 @@ msgstr "Prikaži podatkovno bazo v SQL laboratoriju"
 msgid "Expose in SQL Lab"
 msgstr "Uporabi v SQL laboratoriju"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Uporabi to podatkovno bazo v SQL laboratoriju"
-
-msgid "Expression"
-msgstr "Izraz"
+#, fuzzy
+msgid "Extent"
+msgstr "nedavno"
 
 msgid "Extra"
 msgstr "Dodatno"
@@ -5115,10 +5196,6 @@ msgstr ""
 "\"Tim za razvoj\", \"details\": \"Ta tabela je vir resnice.\" }, "
 "\"warning_markdown\": \"To je opozorilo.\" }`."
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "Dodatnega polja ni mogoče dekodirati z JSON. %(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "Dodatni parametri za poizvedbe z jinja predlogami"
 
@@ -5138,6 +5215,10 @@ msgstr "Relief"
 msgid "FEB"
 msgstr "FEB"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Uredi podatkovni set"
+
 msgid "FRI"
 msgstr "PET"
 
@@ -5147,16 +5228,15 @@ msgstr "Faktor"
 msgid "Factor to multiply the metric by"
 msgstr "Faktor, s katerim množite mero"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "Ni uspelo"
 
 msgid "Failed at retrieving results"
 msgstr "Napaka pri pridobivanju rezultatov"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "Neuspešno ustavljanje poizvedbe. %s"
-
 msgid "Failed to create report"
 msgstr "Ustvarjanje poročila nesupešno"
 
@@ -5185,6 +5265,10 @@ msgstr "Shranjevanje dosega medsebojnega filtra ni uspelo"
 msgid "Failed to start remote query on a worker."
 msgstr "Na delavcu ni bilo mogoče zagnati oddaljene poizvedbe."
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "Neuspešno ustavljanje poizvedbe. %s"
+
 msgid "Failed to tag items"
 msgstr "Napaka pri označevanju elementov"
 
@@ -5207,9 +5291,6 @@ msgstr "Ustvarjene barvne palete"
 msgid "February"
 msgstr "Februar"
 
-msgid "Fetch Values Predicate"
-msgstr "Pridobi vrednosti predikatov"
-
 msgid "Fetch data preview"
 msgstr "Pridobi predogled podatkov"
 
@@ -5234,14 +5315,12 @@ msgstr "Polje je obvezno"
 msgid "File"
 msgstr "Datoteka"
 
-msgid "File Settings"
-msgstr "Nastavitve datoteke"
-
 msgid "File extension is not allowed."
 msgstr "Končnica datoteke ni dovoljena."
 
-msgid "File size exceeds the maximum allowed size."
-msgstr "Velikost datoteke presega največjo dovoljeno."
+#, fuzzy
+msgid "File settings"
+msgstr "Nastavitve datoteke"
 
 msgid "File upload"
 msgstr "Nalaganje datoteke"
@@ -5306,9 +5385,6 @@ msgstr "Seznam vrednosti filtra ne sme biti prazen"
 msgid "Filter your charts"
 msgstr "Filtriraj grafikone"
 
-msgid "Filterable"
-msgstr "Filtriranje"
-
 msgid "Filters"
 msgstr "Filtri"
 
@@ -5321,6 +5397,16 @@ msgstr "Filtrira po merah"
 msgid "Filters for comparison must have a value"
 msgstr "Filtri za primerjavo morajo imeti vrednost"
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "`row_limit` mora biti večja ali enaka 0"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "Filtri izven dosega (%d)"
@@ -5353,6 +5439,14 @@ msgstr "Zaključi"
 msgid "First"
 msgstr "Prvi"
 
+#, fuzzy
+msgid "First name"
+msgstr "Ime grafikona"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "Zahtevano je ime"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5440,6 +5534,10 @@ msgstr "Vsili obliko zapisa datuma"
 msgid "Force refresh"
 msgstr "Osveži"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Osveži seznam shem"
+
 msgid "Force refresh catalog list"
 msgstr "Vsili osvežitev seznama katalogov"
 
@@ -5561,6 +5659,10 @@ msgstr "GeoJson nastavitve"
 msgid "Geohash"
 msgstr "Geohash"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Prazen stolpec"
+
 msgid "Get the last date by the date unit."
 msgstr "Pridobi zadnji datum glede na časovno enoto."
 
@@ -5620,9 +5722,6 @@ msgstr "Ključ za združevanje"
 msgid "Group by"
 msgstr "Združevanje po (Group by)"
 
-msgid "Groupable"
-msgstr "Združevanje"
-
 msgid "Guest user cannot modify chart payload"
 msgstr "Gost ne more spreminjati atributov grafikona"
 
@@ -5638,40 +5737,28 @@ msgstr "Predloga za Handlebars"
 msgid "Hard value bounds applied for color coding."
 msgstr "Točno definiran obseg vrednosti za barvno kodiranje."
 
-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."
-
 msgid "Has created by"
 msgstr "Ustvarjen s strani"
 
 msgid "Header"
 msgstr "Glava"
 
-msgid "Header Row"
-msgstr "Naslovna vrstica"
-
 msgid "Header row"
 msgstr "Vrstica z glavo"
 
 msgid "Heatmap"
 msgstr "Toplotna karta"
 
-msgid "Heatmap (legacy)"
-msgstr "Toplotna karta (zastarelo)"
-
-msgid "Heatmap Options"
-msgstr "Možnosti toplotne karte"
-
 msgid "Height"
 msgstr "Višina"
 
 msgid "Height of the sparkline"
 msgstr "Višina hitrega grafikona"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Časovni stolpec"
+
 msgid "Hide Line"
 msgstr "Skrij črto"
 
@@ -5696,9 +5783,6 @@ msgstr "Hierarhija"
 msgid "Histogram"
 msgstr "Histogram"
 
-msgid "Histogram (legacy)"
-msgstr "Histogram (zastarelo)"
-
 msgid "Home"
 msgstr "Domov"
 
@@ -5779,34 +5863,22 @@ msgstr ""
 "tečejo pod servisnim računom, vendar je trenutno prijavljen uporabnik "
 "predstavljen z lastnostjo hive.server2.proxy.user."
 
-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.<br/>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.<br/>Č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."
-
-msgid "If Table Already Exists"
-msgstr "Če tabela že obstaja"
-
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr "Če je določena mera, bo razvrščanje izvedeno na podlagi vrednosti mere"
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 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."
 
-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\"."
+#, fuzzy
+msgid "If table already exists"
+msgstr "Oznaka že obstaja"
 
 msgid "Ignore cache when generating report"
 msgstr "Ne upoštevaj predpomnjenja pri ustvarjanju poročila"
@@ -5828,9 +5900,6 @@ msgstr ""
 "Predstavljanje kot prijavljeni uporabnik (Presto, Trino, Drill, Hive in "
 "GSheets)"
 
-msgid "Impersonate the logged on user"
-msgstr "Predstavljaj se kot prijavljeni uporabnik"
-
 msgid "Import"
 msgstr "Uvozi"
 
@@ -5841,9 +5910,6 @@ msgstr "Uvozi %s"
 msgid "Import Dashboard(s)"
 msgstr "Uvozi nadzorne plošče"
 
-msgid "Import a table definition"
-msgstr "Uvozi definicijo tabele"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "Uvoz grafikona ni uspel zaradi neznanega razloga"
 
@@ -5874,17 +5940,14 @@ msgstr "Uvozi poizvedbe"
 msgid "Import saved query failed for an unknown reason."
 msgstr "Uvoz shranjene poizvedbe ni uspel zaradi neznanega razloga."
 
-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."
-
 msgid "In"
 msgstr "Vsebuje (IN)"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "Vključi serijo"
 
@@ -5907,15 +5970,17 @@ msgstr "Povečaj"
 msgid "Index"
 msgstr "Indeks"
 
-msgid "Index Column"
-msgstr "Indeksni stolpec"
-
-msgid "Index Label"
-msgstr "Oznaka indeksa"
+#, fuzzy
+msgid "Index column"
+msgstr "Stolpec črt"
 
 msgid "Index label"
 msgstr "Oznaka indeksa"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Ogled ključev in indeksov (%s)"
+
 msgid "Info"
 msgstr "Informacije"
 
@@ -5934,6 +5999,13 @@ msgstr "Vnesi poljubno širino v pikslih"
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr "Vnosno polje omogoča poljubno rotacijo (vnesite 30 za 30°)"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "Skrij sloj"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "Intenzivnost"
 
@@ -6011,6 +6083,9 @@ msgstr "Neveljavna koda valute v shranjeni meri"
 msgid "Invalid date/timestamp format"
 msgstr "Neveljaven zapis datuma/časa"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "Neveljaven tip operacije filtra: %(op)s"
@@ -6074,6 +6149,10 @@ msgstr "Invertiraj izbiro"
 msgid "Invert current page"
 msgstr "Invertiraj trenutno stran"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Opozorilo je aktivno"
+
 msgid "Is certified"
 msgstr "Certificiran"
 
@@ -6250,12 +6329,6 @@ msgstr "Veliko"
 msgid "Last"
 msgstr "Zadnji"
 
-msgid "Last Changed"
-msgstr "Zadnja sprememba"
-
-msgid "Last Modified"
-msgstr "Zadnja sprememba"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "Zadnja posodobitev %s"
@@ -6264,6 +6337,10 @@ msgstr "Zadnja posodobitev %s"
 msgid "Last Updated %s by %s"
 msgstr "Zadnja posodobitev %s, %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Ciljna vrednost"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr "Zadnja razpoložljiva vrednost na %s"
@@ -6271,12 +6348,24 @@ msgstr "Zadnja razpoložljiva vrednost na %s"
 msgid "Last day"
 msgstr "Zadnji dan"
 
+#, fuzzy
+msgid "Last login"
+msgstr "Zadnji mesec"
+
 msgid "Last modified"
 msgstr "Zadnja sprememba"
 
 msgid "Last month"
 msgstr "Zadnji mesec"
 
+#, fuzzy
+msgid "Last name"
+msgstr "ime podatkovnega seta"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Zahtevano je ime"
+
 msgid "Last quarter"
 msgstr "Zadnje četrletje"
 
@@ -6289,15 +6378,42 @@ msgstr "Zadnji teden"
 msgid "Last year"
 msgstr "Zadnje leto"
 
+#, fuzzy
+msgid "Lat"
+msgstr "ravno"
+
 msgid "Latitude"
 msgstr "Širina"
 
 msgid "Latitude of default viewport"
 msgstr "Širina privzetega pogleda"
 
+#, fuzzy
+msgid "Layer"
+msgstr "leto"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Naslov opozorila"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "Nastavitve sloja"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Naslov grafikona"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Tip filtra"
+
+#, fuzzy
+msgid "Layers"
+msgstr "opozorila"
+
 msgid "Layout"
 msgstr "Izgled"
 
@@ -6310,13 +6426,6 @@ msgstr "Tip izgleda grafikona"
 msgid "Layout type of tree"
 msgstr "Način izgleda drevesa"
 
-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"
-
 msgid "Least recently modified"
 msgstr "Zadnje spremenjeno"
 
@@ -6380,13 +6489,6 @@ msgstr "Like (ni razlik. velikih/malih črk)"
 msgid "Limit type"
 msgstr "Tip omejitve"
 
-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."
-
 msgid "Limits the number of cells that get retrieved."
 msgstr "Omeji število pridobljenih celic."
 
@@ -6430,6 +6532,9 @@ msgstr ""
 "Črtni grafikon se uporablja za vizualizacijo meritev zajetih skozi čas. "
 "Posamezne točke so med seboj povezane z ravnimi črtami."
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "Interpolacija krivulje na osnovi d3.js"
 
@@ -6457,9 +6562,16 @@ msgstr "Kodiranje črt"
 msgid "Link Copied!"
 msgstr "Povezava kopirana!"
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr "Seznam unikatnih vrednosti"
 
+#, fuzzy
+msgid "List Users"
+msgstr "Število razdelitev"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr "Seznam dodatnih stolpcev, ki bodo na razpolago v JavaScript funkcijah"
 
@@ -6526,6 +6638,10 @@ msgstr "Logaritemska y-os"
 msgid "Login"
 msgstr "Prijava"
 
+#, fuzzy
+msgid "Login count"
+msgstr "število"
+
 msgid "Login with"
 msgstr "Prijava z"
 
@@ -6535,6 +6651,10 @@ msgstr "Odjava"
 msgid "Logs"
 msgstr "Dnevniki"
 
+#, fuzzy
+msgid "Lon"
+msgstr "v"
+
 msgid "Long dashed"
 msgstr "Dolgo-črtkano"
 
@@ -6574,9 +6694,6 @@ msgstr "PON"
 msgid "Main"
 msgstr "Glavni"
 
-msgid "Main Datetime Column"
-msgstr "Glavni stolpec Datum-Čas"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6612,6 +6729,10 @@ msgstr "Ročno nastavi min./max. vrednosti za y-os."
 msgid "Map"
 msgstr "Zemljevid"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Možnosti toplotne karte"
+
 msgid "Map Style"
 msgstr "Slog zemljevida"
 
@@ -6663,8 +6784,8 @@ msgstr "Max"
 msgid "Max Bubble Size"
 msgstr "Max. velikost mehurčka"
 
-msgid "Max Events"
-msgstr "Maksimalno število dogodkov"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "Maksimum"
@@ -6675,6 +6796,9 @@ msgstr "Max. velikost pisave"
 msgid "Maximum Radius"
 msgstr "Max. polmer"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6720,6 +6844,18 @@ msgstr "Mediane"
 msgid "Medium"
 msgstr "Srednje"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr "Preklapljanje funkcionalnosti menijev"
 
@@ -6819,13 +6955,6 @@ msgstr ""
 "serij ali vrstic. Če ni določena, se uporabi prva mera (kjer je "
 "ustrezno)."
 
-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)."
-
 msgid "Metrics"
 msgstr "Mere"
 
@@ -6865,8 +6994,8 @@ msgstr "Min. velikost pisave"
 msgid "Minimum Radius"
 msgstr "Min. polmer"
 
-msgid "Minimum leaf node event count"
-msgstr "Min. št. dogodkov končnega vozlišča"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
 "Minimum radius size of the circle, in pixels. As the zoom level changes, "
@@ -6881,6 +7010,10 @@ msgstr "Minimalni prag v odstotnih točkah za prikaz oznak."
 msgid "Minimum value"
 msgstr "Minimalna vrednost"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "Začetni datum ne sme biti večji od končnega"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "Najmanjša vrednost, za katero bo na grafikonu prikazana oznaka."
 
@@ -6903,6 +7036,9 @@ msgstr "Minute %s"
 msgid "Minutes value"
 msgstr "Vrednost minut"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr "Manjkajo parametri URL-ja"
 
@@ -6919,6 +7055,14 @@ msgstr "Spremenjeno"
 msgid "Modified %s"
 msgstr "Zadnja sprememba %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
 msgid "Modified by"
 msgstr "Spremenil"
 
@@ -6926,10 +7070,6 @@ msgstr "Spremenil"
 msgid "Modified by: %s"
 msgstr "Spremenil: %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "Spremenjeni stolpci: %s"
-
 msgid "Monday"
 msgstr "Ponedeljek"
 
@@ -6992,9 +7132,6 @@ msgstr "Izberite bodisi grafikon bodisi nadzorno ploščo"
 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]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "Definiran mora biti vsaj en numerični stolpec"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr "Za SSH-tunel morate podati prijavne podatke"
 
@@ -7019,9 +7156,6 @@ msgstr "NOT GROUPED BY"
 msgid "NOV"
 msgstr "NOV"
 
-msgid "NOW"
-msgstr "ZDAJ"
-
 msgid "NUMERIC"
 msgstr "NUMERIC"
 
@@ -7046,9 +7180,6 @@ msgstr "Ime id-stolpca"
 msgid "Name of the source nodes"
 msgstr "Imena izvornih vozlišč"
 
-msgid "Name of the table that exists in the source database"
-msgstr "Ime tabele, ki obstaja v izvorni podatkovni bazi"
-
 msgid "Name of the target nodes"
 msgstr "Imena ciljnih vozlišč"
 
@@ -7064,19 +7195,23 @@ msgstr "Potrebujete pomoč? Kako povezati vašo podatkovno bazo se naučite"
 msgid "Need help? Learn more about"
 msgstr "Potrebujete pomoč? Naučite se več o"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Napaka omrežja"
+
 msgid "Network error"
 msgstr "Napaka omrežja"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Pri ustvarjanju podatkovnega vira je prišlo do težave"
+
 msgid "Network error."
 msgstr "Napaka omrežja."
 
 msgid "New chart"
 msgstr "Nov grafikon"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "Dodani novi stolpci: %s"
-
 msgid "New dataset"
 msgstr "Nov podatkovni set"
 
@@ -7123,6 +7258,10 @@ msgstr "Pravil še ni"
 msgid "No Tags created"
 msgstr "Ni ustvarjenih oznak"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Razveljavi dejanje"
+
 msgid "No annotation layers"
 msgstr "Ni slojev z oznakami"
 
@@ -7141,9 +7280,6 @@ msgstr "Ni razpoložljivih filtrov."
 msgid "No charts"
 msgstr "Ni grafikonov"
 
-msgid "No charts yet"
-msgstr "Ni še grafikonov"
-
 msgid "No columns found"
 msgstr "Ni najdenih stolpcev"
 
@@ -7159,9 +7295,6 @@ msgstr "Ni najdenih skladnih podatkovnih setov"
 msgid "No compatible schema found"
 msgstr "Ni najdenih skladnih shem"
 
-msgid "No dashboards yet"
-msgstr "Ni še nadzornih plošč"
-
 msgid "No data"
 msgstr "Ni podatkov"
 
@@ -7173,6 +7306,10 @@ msgstr ""
 msgid "No data in file"
 msgstr "V datoteki ni podatkov"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "Podatkovnih baz ni na voljo"
+
 msgid "No databases match your search"
 msgstr "Nobena podatkovna baza ne ustreza iskanju"
 
@@ -7203,12 +7340,6 @@ msgstr "Trenutno ni dodanih globalnih filtrov"
 msgid "No matching records found"
 msgstr "Ni ujemajočih zapisov"
 
-msgid "No of Bins"
-msgstr "Št. razdelkov"
-
-msgid "No recents yet"
-msgstr "Ni še nedavnih"
-
 msgid "No records found"
 msgstr "Ni zapisov"
 
@@ -7233,6 +7364,10 @@ msgstr ""
 "da so filtri pravilno nastavljeni in podatkovni vir vsebuje podatke za "
 "izbrano časovno obdobje."
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Pravil še ni"
+
 msgid "No rows were returned for this dataset"
 msgstr "Za podatkovni set ni vrnjenih vrstic"
 
@@ -7245,9 +7380,6 @@ msgstr "Shranjeni izrazi niso najdeni"
 msgid "No saved metrics found"
 msgstr "Shranjene mere niso najdene"
 
-msgid "No saved queries yet"
-msgstr "Ni še shranjenih poizvedb"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr "Rezultatov še ni shranjenih, ponovno morate zagnati poizvedbo"
 
@@ -7265,6 +7397,10 @@ msgstr "Ni najdenih časovnih stolpcev"
 msgid "No time columns"
 msgstr "Ni časovnih stolpcev"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Pravil še ni"
+
 msgid "No validator found (configured for the engine)"
 msgstr "Potrjevalnik ni najden (nastavljen za podatkovno bazo)"
 
@@ -7342,6 +7478,10 @@ msgstr "Ni sproženo"
 msgid "Not up to date"
 msgstr "Ni posodobljeno"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "Ni ni sproženo"
+
 msgid "Nothing triggered"
 msgstr "Ni ni sproženo"
 
@@ -7448,9 +7588,6 @@ msgstr "Oktober"
 msgid "Offline"
 msgstr "Offline"
 
-msgid "Offset"
-msgstr "Odmik"
-
 msgid "On Grace"
 msgstr "V mirovanju"
 
@@ -7521,9 +7658,6 @@ msgstr "Veljavno samo, ko \"Tip oznake\" ni procent."
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr "Veljavno samo, ko je izbran \"Tip oznake\" za prikaz vrednosti."
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "Ta filter bo vplival le na izbrane grafikone"
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7607,9 +7741,6 @@ msgstr "Možnosti"
 msgid "Or choose from a list of other databases we support:"
 msgstr "Ali pa izberite iz seznama drugih podatkovnih baz, ki jih podpiramo:"
 
-msgid "Order by entity id"
-msgstr "Uredi po ID-entitete"
-
 msgid "Order results by selected columns"
 msgstr "Razvrsti rezultate glede na izbrani stolpec"
 
@@ -7751,6 +7882,10 @@ msgstr ""
 "\"Lastniki\" je seznam uporabnikov, ki lahko spreminjajo nadzorno ploščo."
 " Iskanje je možno po imenu ali uporabniškem imenu."
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "Prenos slike ni uspel. Osvežite in poskusite ponovno."
+
 msgid "Page length"
 msgstr "Dolžina strani"
 
@@ -7810,6 +7945,14 @@ msgstr ""
 msgid "Password"
 msgstr "Geslo"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "Tip je obvezen"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Nadzorna plošča ne obstaja"
+
 msgid "Paste Private Key here"
 msgstr "Prilepite privatni ključ sem"
 
@@ -7864,6 +8007,14 @@ msgstr "Št. period"
 msgid "Periods must be a whole number"
 msgstr "Periode morajo biti celo število"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Verzija"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr "Oseba ali skupina, ki je certificirala ta grafikon."
 
@@ -7879,9 +8030,6 @@ msgstr "Fizičen"
 msgid "Physical (table or view)"
 msgstr "Fizičen (tabela ali pogled)"
 
-msgid "Physical dataset"
-msgstr "Fizičen podatkovni set"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr "Izberite dimenzijo, ki bo določala kategorične barve"
 
@@ -7903,15 +8051,9 @@ msgstr "Izberite nabor deck.gl grafikonov, ki bodo nanizani en na drugem"
 msgid "Pick a title for you annotation."
 msgstr "Izberite naslov za oznako."
 
-msgid "Pick at least one field for [Series]"
-msgstr "Izberite vsaj eno polje za [Serije]"
-
 msgid "Pick at least one metric"
 msgstr "Izberite vsaj eno mero"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "Izberite natanko dva stolpca za [Izvor / Cilj]"
-
 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."
@@ -7925,8 +8067,8 @@ msgstr "Izberite svoj priljubljen označevalni jezik"
 msgid "Pie Chart"
 msgstr "Tortni grafikon"
 
-msgid "Pie Chart (legacy)"
-msgstr "Tortni grafikon (zastarelo)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "Oblika torte"
@@ -7937,6 +8079,14 @@ msgstr "Odsekovno"
 msgid "Pin"
 msgstr "Žebljiček"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "Zgoraj levo"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Zgoraj desno"
+
 msgid "Pivot Table"
 msgstr "Vrtilna tabela"
 
@@ -7993,6 +8143,9 @@ msgstr ""
 "Preverite, če imajo Jinja parametri sintaktične napake in poskrbite, da "
 "se ujemajo znotraj SQL-poizvedbe. Potem ponovno poženite poizvedbo."
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr "Izberite vsaj en 'Group by'"
 
@@ -8002,12 +8155,25 @@ msgstr "Prosim, potrdite"
 msgid "Please confirm the overwrite values."
 msgstr "Potrdite vrednosti za prepis."
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "Prosim, potrdite"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Vnesite SQLAlchemy URI za test"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr "Vnesite veljaven zapis. Samo presledki niso dovoljeni."
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "Ponovno vpišite geslo."
 
@@ -8021,9 +8187,6 @@ 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."
 
-msgid "Please save the query to enable sharing"
-msgstr "Shranite poizvedbo za deljenje"
-
 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 "
@@ -8103,9 +8266,6 @@ msgstr "Poli-linija"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "Izpolnite \"Privzeto vrednost\", da omogočite ta kontrolnik"
 
-msgid "Population age data"
-msgstr "Podatki starosti populacije"
-
 msgid "Port"
 msgstr "Vrata"
 
@@ -8143,15 +8303,6 @@ msgstr "Predfiltriraj razpoložljive vrednosti"
 msgid "Pre-filter is required"
 msgstr "Zahtevan je predfilter"
 
-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`."
-
 msgid "Predictive"
 msgstr "Prediktivno"
 
@@ -8170,10 +8321,6 @@ msgstr "Predogled"
 msgid "Preview uploaded file"
 msgstr "Predogled naložene datoteke"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "Predogled: `%s`"
-
 msgid "Previous"
 msgstr "Prejšnji"
 
@@ -8219,18 +8366,13 @@ msgstr "Napredek"
 msgid "Progressive"
 msgstr "Progresivno"
 
-msgid "Propagate"
-msgstr "Razširi"
+#, fuzzy
+msgid "Project Id"
+msgstr "Zastarelo"
 
 msgid "Proportional"
 msgstr "Proporcionalno"
 
-msgid "Public and privately shared sheets"
-msgstr "Javno in zasebno deljene preglednice"
-
-msgid "Publicly shared sheets only"
-msgstr "Samo javno deljene preglednice"
-
 msgid "Published"
 msgstr "Objavljeno"
 
@@ -8249,9 +8391,6 @@ msgstr "Podajte pozitivno vrednost večjo od 0"
 msgid "Put the labels outside of the pie?"
 msgstr "Postavim oznake zunaj torte?"
 
-msgid "Put the labels outside the pie?"
-msgstr "Postavim oznake zunaj torte?"
-
 msgid "Put your code here"
 msgstr "Vstavite svojo kodo sem"
 
@@ -8353,10 +8492,6 @@ msgstr "Polmer v metrih"
 msgid "Radius in miles"
 msgstr "Polmer v miljah"
 
-#, python-format
-msgid "Ran %s"
-msgstr "Pretečeno %s"
-
 msgid "Range"
 msgstr "Doseg"
 
@@ -8384,24 +8519,9 @@ msgstr "Razmerje"
 msgid "Raw records"
 msgstr "Surovi podatki"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Nedavno ustvarjeni grafikoni, nadzorne plošče in shranjene poizvedbe bodo"
-" prikazane tukaj"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Nedavno urejani grafikoni, nadzorne plošče in shranjene poizvedbe bodo "
-"prikazane tukaj"
-
 msgid "Recently modified"
 msgstr "Nedavno spremenjeno"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Nedavno ogledani grafikoni, nadzorne plošče in shranjene poizvedbe bodo "
-"prikazane tukaj"
-
 msgid "Recents"
 msgstr "Nedavno"
 
@@ -8420,9 +8540,6 @@ msgstr "Ponavljajoče (vsak)"
 msgid "Red for increase, green for decrease"
 msgstr "Rdeča za povečanje, zelena za zmanjšanje"
 
-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"
-
 msgid "Redo the action"
 msgstr "Ponovno uveljavi dejanje"
 
@@ -8524,8 +8641,12 @@ msgid "Remove table preview"
 msgstr "Odstrani predogled tabele"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "Odstranjeni stolpci: %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
 msgid "Rename tab"
 msgstr "Preimenuj zavihek"
@@ -8536,11 +8657,10 @@ msgstr "Izvedi HTML"
 msgid "Render columns in HTML format"
 msgstr "Izvede HTML v stolpcih"
 
-msgid "Render data in HTML format if applicable."
-msgstr "Izvede HTML v podatkih, če je to izvedljivo."
-
-msgid "Rendering"
-msgstr "Izris"
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
+msgstr ""
 
 msgid "Replace"
 msgstr "Zamenjaj"
@@ -8639,6 +8759,9 @@ msgstr "Odbijanje"
 msgid "Repulsion strength between nodes"
 msgstr "Odbojna sila med vozlišči"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "Zahtevek je napačen: %(error)s"
@@ -8670,6 +8793,10 @@ msgstr "Prevzorčevalna operacija zahteva indeks tipa datumčas"
 msgid "Reset"
 msgstr "Ponastavi"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Izberite stolpec"
+
 msgid "Reset state"
 msgstr "Ponastavi stanje"
 
@@ -8739,6 +8866,28 @@ msgstr "Z desnim klikom na dimenzijo vrtajte v podrobnosti po tej vrednosti."
 msgid "Role"
 msgstr "Vloga"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Naslov opozorila"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "Zahtevana je vrednost"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Zahtevano je ime"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "Podatkovni set uspešno spremenjen!"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Vloge"
 
@@ -8820,9 +8969,6 @@ msgstr "Vrstic na stran (0 pomeni brez številčenja strani)"
 msgid "Rows subtotal position"
 msgstr "Položaj delnih vsot vrstic"
 
-msgid "Rows to Read"
-msgstr "Vrstice za branje"
-
 msgid "Rows to read"
 msgstr "Vrstice za branje"
 
@@ -8887,14 +9033,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL kopiran!"
 
-msgid "SQL Expression"
-msgstr "SQL-izraz"
-
 msgid "SQL Lab"
 msgstr "SQL laboratorij"
 
-msgid "SQL Lab View"
-msgstr "Pogled SQL laboratorija"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "shranjene poizvedbe"
 
 #, python-format
 msgid ""
@@ -8988,18 +9132,9 @@ msgstr "Vzorcev za podatkovni set ni bilo mogoče pridobiti."
 msgid "Samples for datasource could not be retrieved."
 msgstr "Vzorcev za podatkovni vir ni bilo mogoče pridobiti."
 
-msgid "Sankey"
-msgstr "Sankey"
-
 msgid "Sankey Chart"
 msgstr "Sankey grafikon"
 
-msgid "Sankey Diagram (legacy)"
-msgstr "Sankey grafikon (zastarelo)"
-
-msgid "Sankey Diagram with Loops"
-msgstr "Sankey grafikon z zankami"
-
 msgid "Satellite"
 msgstr "Satelitski"
 
@@ -9060,9 +9195,6 @@ msgstr "Shrani ali prepiši podatkovni set"
 msgid "Save query"
 msgstr "Shrani poizvedbo"
 
-msgid "Save the query to enable this feature"
-msgstr "Za omogočenje te funkcije shranite poizvedbo"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr "Shranite poizvedbo kot virtualni podatkovni set"
 
@@ -9090,6 +9222,10 @@ msgstr "Shranjena poizvedba ni najdena."
 msgid "Saved query parameters are invalid."
 msgstr "Parametri shranjene poizvedbe so neveljavni."
 
+#, fuzzy
+msgid "Saving..."
+msgstr "Nalagam ..."
+
 msgid "Scale and Move"
 msgstr "Povečava in premikanje"
 
@@ -9144,11 +9280,6 @@ msgstr "Shema"
 msgid "Schema cache timeout"
 msgstr "Trajanje prepomnilnika sheme"
 
-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"
-
 msgid "Schemas allowed for File upload"
 msgstr "Dovoljene sheme za nalaganje datotek"
 
@@ -9230,9 +9361,6 @@ msgstr "Sekunde %s"
 msgid "Seconds value"
 msgstr "Število sekund"
 
-msgid "Secure Extra"
-msgstr "Dodatna varnost"
-
 msgid "Secure extra"
 msgstr "Dodatna varnost"
 
@@ -9344,8 +9472,8 @@ msgstr "Izberite vse podatke"
 msgid "Select all items"
 msgstr "Izberite vse elemente"
 
-msgid "Select any columns for metadata inspection"
-msgstr "Izberite poljubne stolpce za pregled metapodatkov"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 msgid "Select catalog or type to search catalogs"
 msgstr "Izberite katalog ali poiščite kataloge z vnosom"
@@ -9368,6 +9496,11 @@ msgstr "Izberite barvno shemo"
 msgid "Select column"
 msgstr "Izberite stolpec"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr ""
+"S spustnega seznama izberite imena stolpcev, ki bodo obravnavani kot "
+"datumi."
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9459,6 +9592,14 @@ msgstr "Izberite ali vnesite ime podatkovnega seta"
 msgid "Select owners"
 msgstr "Izberite lastnike"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Izberite oznake"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Izberite lastnike"
+
 msgid "Select saved metrics"
 msgstr "Izberite shranjene mere"
 
@@ -9471,6 +9612,12 @@ msgstr "Izberite ali vnesite ime sheme"
 msgid "Select scheme"
 msgstr "Izberite shemo"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "Izberite zadevo"
 
@@ -9510,12 +9657,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr "Izberite geojson stolpec"
 
-msgid "Select the number of bins for the histogram"
-msgstr "Izberite število razdelkov za histogram"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "Izberite numerične stolpce za izris histograma"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9539,9 +9680,6 @@ msgstr "Pošlji kot PNG"
 msgid "Send as text"
 msgstr "Pošlji kot besedilo"
 
-msgid "Send range filter events to other charts"
-msgstr "Pošlji dogodke filtra obdobja na druge grafikone"
-
 msgid "September"
 msgstr "September"
 
@@ -9554,12 +9692,6 @@ msgstr "Serije"
 msgid "Series Height"
 msgstr "Višina serije"
 
-msgid "Series Limit Sort By"
-msgstr "Razvrščanje omejitev serije"
-
-msgid "Series Limit Sort Descending"
-msgstr "Razvrsti padajoče"
-
 msgid "Series Order"
 msgstr "Razvrščanje serij"
 
@@ -9587,6 +9719,10 @@ msgstr "Paginacija na strani strežnika"
 msgid "Service Account"
 msgstr "Servisni račun"
 
+#, fuzzy
+msgid "Service version"
+msgstr "Servisni račun"
+
 msgid "Set auto-refresh interval"
 msgstr "Nastavi interval samodejnega osveževanja"
 
@@ -9618,6 +9754,10 @@ msgstr "Nastavitve"
 msgid "Settings for time series"
 msgstr "Nastavitve časovne vrste"
 
+#, fuzzy
+msgid "Shape"
+msgstr "Oblika torte"
+
 msgid "Share"
 msgstr "Deljenje"
 
@@ -9682,18 +9822,9 @@ msgstr "Prikaži CREATE VIEW stavek"
 msgid "Show Cell bars"
 msgstr "Prikaži grafe v celicah"
 
-msgid "Show Chart"
-msgstr "Prikaži grafikon"
-
-msgid "Show Column"
-msgstr "Prikaži stolpec"
-
 msgid "Show Dashboard"
 msgstr "Prikaži nadzorno ploščo"
 
-msgid "Show Database"
-msgstr "Prikaži podatkovno bazo"
-
 msgid "Show Labels"
 msgstr "Prikaži oznake"
 
@@ -9703,18 +9834,12 @@ msgstr "Prikaži dnevnik"
 msgid "Show Markers"
 msgstr "Prikaži markerje"
 
-msgid "Show Metric"
-msgstr "Prikaži mero"
-
 msgid "Show Metric Names"
 msgstr "Prikaži imena mer"
 
 msgid "Show Range Filter"
 msgstr "Prikaži filter obdobja"
 
-msgid "Show Table"
-msgstr "Prikaži tabelo"
-
 msgid "Show Timestamp"
 msgstr "Prikaži časovno značko"
 
@@ -9749,9 +9874,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "Prikaži vse stolpce"
 
-msgid "Show all..."
-msgstr "Prikaži vse..."
-
 msgid "Show axis line ticks"
 msgstr "Prikaži oznake na X-osi"
 
@@ -9773,6 +9895,10 @@ msgstr "Prikaži točke kot krožne markerje na krivuljah"
 msgid "Show empty columns"
 msgstr "Prikaži prazne stolpce"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "Prikaži %s vnosov"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9795,9 +9921,6 @@ msgstr "Prikaži legendo"
 msgid "Show less columns"
 msgstr "Prikaži manj stolpcev"
 
-msgid "Show less..."
-msgstr "Prikaži manj..."
-
 msgid "Show minor ticks on axes."
 msgstr "Na oseh prikaži pomožne oznake."
 
@@ -9834,6 +9957,10 @@ msgstr "Prikaži povzetek"
 msgid "Show the value on top of the bar"
 msgstr "Prikaži vrednosti na vrhu stolpcev"
 
+#, fuzzy
+msgid "Show total"
+msgstr "Prikaži vsoto"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9879,8 +10006,8 @@ msgstr ""
 "Prikaže napredovanje posamezne mere glede na cilj. Večja napolnjenost, "
 "pomeni, da je mera bližje cilju."
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "Prikazanih %s od %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -9913,18 +10040,16 @@ msgstr "Ena vrednost"
 msgid "Single value type"
 msgstr "Tip z eno vrednostjo"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "Določa velikost mreže v pikslih"
+
 msgid "Size of edge symbols"
 msgstr "Velikost simbola povezave"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "Velikost markerja. Upošteva se tudi za napovedi."
 
-msgid "Sizes of vehicles"
-msgstr "Velikosti vozil"
-
-msgid "Skip Rows"
-msgstr "Izpusti vrstice"
-
 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"
 
@@ -9995,10 +10120,7 @@ msgid "Sorry, something went wrong. Please try again."
 msgstr "Nekaj je šlo narobe. Poskusite ponovno."
 
 msgid "Sorry, something went wrong. Try again later."
-msgstr "Nekaj je šlo narobe. Poskusite ponovno kasneje."
-
-msgid "Sorry, there appears to be no data"
-msgstr "Ni podatkov"
+msgstr "Nekaj je šlo narobe. Poskusite ponovno kasneje."
 
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
@@ -10017,9 +10139,6 @@ msgstr "Vaš brskalnik ne podpira kopiranja. Uporabite Ctrl / Cmd + C!"
 msgid "Sort"
 msgstr "Razvrsti"
 
-msgid "Sort Bars"
-msgstr "Uredi stolpce"
-
 msgid "Sort Descending"
 msgstr "Razvrsti padajoče"
 
@@ -10041,9 +10160,6 @@ msgstr "Razvrsti Y-os"
 msgid "Sort ascending"
 msgstr "Razvrsti naraščajoče"
 
-msgid "Sort bars by x labels."
-msgstr "Uredi stolpce po x-oznakah."
-
 msgid "Sort by"
 msgstr "Razvrščanje po"
 
@@ -10084,9 +10200,6 @@ msgstr "Način razvrščanja"
 msgid "Source"
 msgstr "Izvor"
 
-msgid "Source / Target"
-msgstr "Izhodišče/Cilj"
-
 msgid "Source SQL"
 msgstr "Izvorni SQL"
 
@@ -10130,9 +10243,6 @@ msgstr "Kvadratne milje"
 msgid "Stack"
 msgstr "Naloži"
 
-msgid "Stack Trace:"
-msgstr "Izpis napake:"
-
 msgid "Stack series"
 msgstr "Nalagaj serije"
 
@@ -10148,9 +10258,6 @@ msgstr "Naloženi stolpci"
 msgid "Stacked Style"
 msgstr "Slog nalaganja"
 
-msgid "Stacked style"
-msgstr "Naložen slog"
-
 msgid "Standard time series"
 msgstr "Standardna časovna vrsta"
 
@@ -10250,9 +10357,6 @@ msgstr "Ulice"
 msgid "Strength to pull the graph toward center"
 msgstr "Sila privlačnosti med grafikonom in središčem"
 
-msgid "Stretched style"
-msgstr "Raztegnjen slog"
-
 msgid "Stroke Color"
 msgstr "Barva obrobe"
 
@@ -10274,15 +10378,20 @@ msgstr "Zaobljena oblika koncev območja"
 msgid "Subdomain"
 msgstr "Poddomena"
 
-msgid "Subheader"
-msgstr "Podnaslov"
-
 msgid "Subheader Font Size"
 msgstr "Velikost pisave podnaslova"
 
 msgid "Submit"
 msgstr "Pošlji"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "Naslov zavihka"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Velikost mehurčka"
+
 msgid "Subtotal"
 msgstr "Delna vsota"
 
@@ -10334,9 +10443,6 @@ msgstr "Dokumentacija SDK za vgrajevanje."
 msgid "Superset chart"
 msgstr "Superset grafikon"
 
-msgid "Superset dashboard"
-msgstr "Superset nadzorna plošča"
-
 msgid "Superset encountered an error while running a command."
 msgstr "Superset je naletel na napako pri izvajanju ukaza."
 
@@ -10346,9 +10452,6 @@ msgstr "Superset je naletel na nepričakovano napako."
 msgid "Supported databases"
 msgstr "Podprte podatkovne baze"
 
-msgid "Survey Responses"
-msgstr "Rezultati anket"
-
 msgid "Swap dataset"
 msgstr "Zamenjaj podatkovni set"
 
@@ -10379,9 +10482,20 @@ msgstr "Simbol za konca povezave"
 msgid "Symbol size"
 msgstr "Velikost simbola"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "Sinhroniziraj stolpce z virom"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "Sintaksa"
 
@@ -10431,6 +10545,10 @@ msgstr ""
 "Tabele [%(table)s] ni mogoče najti. Preverite povezavo, shemo in ime "
 "podatkovne baze"
 
+#, fuzzy
+msgid "Table actions"
+msgstr "Stolpci tabele"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10444,6 +10562,10 @@ msgstr "Trajanje predpomnilnika tabele"
 msgid "Table columns"
 msgstr "Stolpci tabele"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Ime tabele"
+
 msgid "Table name undefined"
 msgstr "Ime tabele ni definirano"
 
@@ -10507,13 +10629,6 @@ msgstr "Označenega elementa ni mogoče izbrisati."
 msgid "Tags"
 msgstr "Oznake"
 
-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"
-
 msgid "Target"
 msgstr "Cilj"
 
@@ -10634,6 +10749,10 @@ msgstr "Označba je bila shranjena"
 msgid "The annotation has been updated"
 msgstr "Označba je bila posodobljena"
 
+#, fuzzy
+msgid "The background color of the charts."
+msgstr "Dodajte naslov grafikona"
+
 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."
@@ -10665,6 +10784,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr "Barva točk in gruč v RGB zapisu"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "Barva plastnice"
+
 msgid "The color of the isoband"
 msgstr "Barva površinske plastnice"
 
@@ -10681,6 +10804,15 @@ msgstr ""
 "Barvna shema je določena s povezano nadzorno ploščo.\n"
 "        Barvno shemo uredite v nastavitvah nadzorne plošče."
 
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+"Barvna shema je bila preglasovana z barvami oznak po meri.\n"
+"    Preverite JSON-metapodatke v naprednih nastavitvah"
+
 msgid "The column header label"
 msgstr "Naslov stolpca"
 
@@ -10693,6 +10825,12 @@ msgstr "Stolpec, ki bo uporabljen kot cilj povezave."
 msgid "The column was deleted or renamed in the database."
 msgstr "Stolpec je bil izbrisan ali preimenovan v podatkovni bazi."
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10704,15 +10842,6 @@ msgstr "Nadzorna plošča je bila shranjena"
 msgid "The data source seems to have been deleted"
 msgstr "Zdi se, da je bil podatkovni vir izbrisan"
 
-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."
-
 msgid "The database"
 msgstr "Podatkovna baza"
 
@@ -10817,6 +10946,15 @@ msgid ""
 "call."
 msgstr "Objekt engine_params se razširi v klic sqlalchemy.create_engine."
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10838,6 +10976,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr "Funkcija za agregacijo točk v skupine"
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10876,26 +11017,13 @@ msgstr "Imena gostitelja ni mogoče razrešiti."
 msgid "The id of the active chart"
 msgstr "Identifikator aktivnega grafikona"
 
-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."
+#, fuzzy
+msgid "The layer attribution"
+msgstr "S časom povezani atributi prikaza"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr "Spodnji prag za površinske plastnice"
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr "Največje število prikazanih dogodkov (enako številu vrnjenih vrstic)"
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10945,6 +11073,13 @@ msgstr ""
 "Najmanjša vrednost mer. To je opcijska nastavitev. Če ni nastavljeno, bo "
 "uporabljena najmanjša vrednost med podatki"
 
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Ime id-stolpca"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 msgid "The name of the rule must be unique"
 msgstr "Ime pravila mora biti unikatno"
 
@@ -11188,6 +11323,10 @@ msgstr ""
 "Rezultat te poizvedbe mora biti številska vrednost, kot je 1, 1.0 ali "
 "\"1\" (kompatibilno s Pythonovo float() funkcijo)."
 
+#, fuzzy
+msgid "The result size exceeds the allowed limit."
+msgstr "Velikost datoteke presega največjo dovoljeno."
+
 msgid "The results backend no longer has the data from the query."
 msgstr "Zaledni sistem rezultatov nima več podatkov iz poizvedbe."
 
@@ -11235,11 +11374,16 @@ msgstr "Shema je bila izbrisana ali preimenovana v podatkovni bazi."
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr "Zaslonske slike ni mogoče prenesti. Poskusite ponovno kasneje."
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "Zaslonska slika se prenaša."
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr "Ustvarja se zaslonska slika. Ne zapuščajte strani."
 
-msgid "The screenshot is now being downloaded."
-msgstr "Zaslonska slika se prenaša."
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "Na grafikonu prikaži vrednosti serij"
 
 msgid "The size of each cell in meters"
 msgstr "Velikost vsake celice v metrih"
@@ -11247,6 +11391,9 @@ msgstr "Velikost vsake celice v metrih"
 msgid "The size of the square cell, in pixels"
 msgstr "Velikost kvadratne celice v pikslih"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr "Neuspešna validacija podanih podatkov."
 
@@ -11272,13 +11419,6 @@ msgstr ""
 "Tabela \"%(table_name)s\" ne obstaja. V poizvedbi mora biti uporabljena "
 "veljavna tabela."
 
-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."
-
 msgid "The table was deleted or renamed in the database."
 msgstr "Tabela je bila izbrisana ali preimenovana v podatkovni bazi."
 
@@ -11342,6 +11482,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr "Časovna enota za združevanje blokov"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "Dodajte naslov grafikona"
+
 msgid "The type of visualization to display"
 msgstr "Tip vizualizacije za prikaz"
 
@@ -11364,12 +11508,27 @@ msgstr "Uporabniško ime \"%(username)s\" ne obstaja."
 msgid "The username provided when connecting to a database is not valid."
 msgstr "Uporabniško ime za povezavo s podatkovno bazo je neveljavno."
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "Izberite položaj legende"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "Prikaži vrednosti na vrhu stolpcev"
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "Način razporeditve oznak na X-osi"
 
 msgid "The width of the Isoline in pixels"
 msgstr "Debelina plastnic v pikslih"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "Debelina črt"
+
 msgid "The width of the lines"
 msgstr "Debelina črt"
 
@@ -11386,9 +11545,6 @@ msgstr "V nadzorni plošči ni grafikonov"
 msgid "There are no components added to this tab"
 msgstr "Na zavihku ni dodanih elementov"
 
-msgid "There are no databases available"
-msgstr "Podatkovnih baz ni na voljo"
-
 msgid "There are no filters in this dashboard."
 msgstr "V nadzorni plošči ni filtrov."
 
@@ -11400,6 +11556,10 @@ msgid ""
 " or a typo."
 msgstr "V SQL-poizvedbi je sintaktična napaka. Mogoče ste se zatipkali."
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "Tip vizualizacije za prikaz"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11427,6 +11587,10 @@ msgstr "Napaka pri pridobivanju statusa \"Priljubljeno\": %s"
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Napaka pri pridobivanju filtriranih grafikonov in nadzornih plošč:"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Napaka pri nalaganju shem"
+
 msgid "There was an error loading the catalogs"
 msgstr "Napaka pri nalaganju katalogov"
 
@@ -11452,6 +11616,10 @@ msgstr "Napaka pri shranjevanju statusa \"Priljubljeno\": %s"
 msgid "There was an error with your request"
 msgstr "Pri zahtevi je prišlo do napake"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Težava pri brisanju: %s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "Težava pri brisanju %s: %s"
@@ -11537,24 +11705,9 @@ msgstr "Do težave je prišlo pri predogledu izbrane poizvedbe %s"
 msgid "There was an issue previewing the selected query. %s"
 msgstr "Pri predogledu izbrane poizvedbe je prišlo do težave. %s"
 
-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: {}"
-
 msgid "These are the datasets this filter will be applied to."
 msgstr "To so podatkovni seti, na katere se nanaša ta filter."
 
-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."
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11571,12 +11724,20 @@ msgstr "S tem dejanjem boste trajno izbrisali %s."
 msgid "This action will permanently delete the layer."
 msgstr "S tem dejanjem boste trajno izbrisali sloj."
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "S tem dejanjem boste trajno izbrisali sloj."
+
 msgid "This action will permanently delete the saved query."
 msgstr "S tem dejanjem boste trajno izbrisali shranjeno poizvedbo."
 
 msgid "This action will permanently delete the template."
 msgstr "S tem dejanjem boste trajno izbrisali predlogo."
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "S tem dejanjem boste trajno izbrisali sloj."
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11607,13 +11768,6 @@ msgid ""
 "source. "
 msgstr "Tip grafikona ne podpira uporabe neshranjene poizvedbe za podatkovni vir. "
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-"Barvna shema je bila preglasovana z barvami oznak po meri.\n"
-"    Preverite JSON-metapodatke v naprednih nastavitvah"
-
 msgid "This column might be incompatible with current dataset"
 msgstr "Ta grafikon je lahko nekompatibilen s trenutnim podatkovnim setom"
 
@@ -11730,6 +11884,9 @@ msgstr "Podatkovni set ni uporabljen v nobenem grafikonu."
 msgid "This defines the element to be plotted on the chart"
 msgstr "Določa element, ki bo izrisan na grafikonu"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11744,13 +11901,6 @@ msgstr ""
 "To polje se uporablja kot unikaten ID za vključitev mere v grafikon. "
 "Uporablja se tudi kot alias v SQL-poizvedbi."
 
-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."
-
 msgid "This filter might be incompatible with current dataset"
 msgstr "Ta filter je lahko nekompatibilen s trenutnim podatkovnim setom"
 
@@ -11834,6 +11984,9 @@ msgstr ""
 "Ta tabela že ima povezan podatkovni set. S tabelo je lahko povezan le en "
 "podatkovni set.\n"
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr "Ta vrednost mora biti večja od leve ciljne vrednosti"
 
@@ -11914,9 +12067,6 @@ msgstr "Časovno razmerje"
 msgid "Time Series"
 msgstr "Časovna vrsta"
 
-msgid "Time Series - Bar Chart"
-msgstr "Časovna vrsta - Stolpčni grafikon"
-
 msgid "Time Series - Line Chart"
 msgstr "Časovna vrsta - Črtni grafikon"
 
@@ -11932,9 +12082,6 @@ msgstr "Časovna vrsta - Procentualna sprememba"
 msgid "Time Series - Period Pivot"
 msgstr "Časovna vrsta - Vrtenje period"
 
-msgid "Time Series - Stacked"
-msgstr "Časovna vrsta - Naložen graf"
-
 msgid "Time Series Options"
 msgstr "Možnosti časovne vrste"
 
@@ -12028,15 +12175,6 @@ msgstr ""
 "Časovni niz je nejasen. Podajte [%(human_readable)s ago] ali "
 "[%(human_readable)s later]."
 
-msgid "Time-series Area Chart (legacy)"
-msgstr "Ploščinski grafikon (zastarelo)"
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Stolpčni grafikon za časovno vrsto (zastarelo)"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr "Črtni grafikon (zastarelo)"
-
 msgid "Time-series Percent Change"
 msgstr "Časovna vrsta - Procentualna sprememba"
 
@@ -12055,9 +12193,6 @@ msgstr "Oblika zapisa časovne značke"
 msgid "Timezone"
 msgstr "Časovni pas"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Razlika časovnega pasu (v urah) za ta podatkovni vir"
-
 msgid "Timezone selector"
 msgstr "Izbira časovnega pasa"
 
@@ -12076,6 +12211,11 @@ msgstr "Naslov je obvezen"
 msgid "Title or Slug"
 msgstr "Naslov ali `Slug`"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "Za filtriranje po meri uporabite zavihek za SQL-izraz."
 
@@ -12117,6 +12257,10 @@ msgstr "Skupaj (%(aggfunc)s)"
 msgid "Total (%(aggregatorName)s)"
 msgstr "Skupaj (%(aggregatorName)s)"
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "Skupaj: %s"
+
 msgid "Total value"
 msgstr "Skupna vsota"
 
@@ -12226,9 +12370,6 @@ msgstr "Vnesite vrednost sem"
 msgid "Type is required"
 msgstr "Tip je obvezen"
 
-msgid "Type of Google Sheets allowed"
-msgstr "Dovoljeni tipi Googlovih preglednic"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "Vrsta primerjave, razlike vrednosti ali procenta"
 
@@ -12312,9 +12453,15 @@ msgstr ""
 "Stanja sheme tabele ni mogoče prenesti v sistem. Superset bo ponovil "
 "poskus kasneje. Če se težava ponavlja, kontaktirajte administratorja."
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr "Neuspešno pridobivanje barv nadzorne plošče"
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "Ni definirano"
 
@@ -12343,6 +12490,10 @@ msgstr "Nepričakovana napaka končnice datoteke"
 msgid "Unexpected time range: %(error)s"
 msgstr "Nepričakovano časovno obdobje: %(error)s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "razveljavitev"
+
 msgid "Unknown"
 msgstr "Neznano"
 
@@ -12380,6 +12531,10 @@ msgstr "Neznan tip"
 msgid "Unknown value"
 msgstr "Neznana vrednost"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "v teku"
+
 #, 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"
@@ -12441,9 +12596,6 @@ msgstr "Naloži stolpčno datoteko"
 msgid "Upload Columnar file to database"
 msgstr "Naloži stolpčno datoteko v podatkovno bazo"
 
-msgid "Upload Credentials"
-msgstr "Naloži prijavne podatke"
-
 msgid "Upload Enabled"
 msgstr "Nalaganje omogočeno"
 
@@ -12463,6 +12615,10 @@ msgstr "Naloži datoteko v podatkovno bazo."
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr "Naložite datoteko z veljavno končnico. Veljavne so: [%s]"
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Naloži prijavne podatke"
+
 msgid "Upload file to database"
 msgstr "Naloži datoteko v podatkovno bazo"
 
@@ -12515,12 +12671,13 @@ msgstr ""
 "Uporabite enega izmed obstoječih grafikonov kot vir oznak.\n"
 "          Grafikon mora biti naslednjega tipa: [%s]"
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "Zaženi trenutno poizvedbo"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr "Oblikovanje datuma uporabi tudi, ko vrednost mere ni časovna značka"
 
-msgid "Use legacy datasource editor"
-msgstr "Uporabi zastareli urejevalnik podatkovnega vira"
-
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr "Uporabi mere kot vrhovni nivo grupiranja za stolpce ali vrstice"
 
@@ -12530,13 +12687,6 @@ msgstr "Uporabite le eno vrednost."
 msgid "Use the Advanced Analytics options below"
 msgstr "Uporabite spodnje možnosti napredne analitike"
 
-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."
-
 msgid "Use the edit button to change this field"
 msgstr "Za spreminjanje tega polja uporabite gumb za urejanje"
 
@@ -12578,9 +12728,23 @@ msgstr "Uporabnik mora obvezno izbrati vrednost pred uveljavitvijo filtra"
 msgid "User query"
 msgstr "Uporabnikova poizvedba"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "Uporabniško ime"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Zahtevano je ime"
+
+#, fuzzy
+msgid "Users"
+msgstr "serije"
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
 "Uporabnikom ni dovoljeno nastaviti iskalne poti zaradi varnostnih "
@@ -12612,6 +12776,10 @@ msgstr ""
 "premikom kurzorja prikaže vrednosti na posameznem nivoju. Uporabno za "
 "večnivojsko, večskupinsko vizualizacijo."
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "Vrednost"
 
@@ -12637,9 +12805,16 @@ msgstr "Razlika vrednosti med časovnimi obdobji"
 msgid "Value format"
 msgstr "Oblika zapisa vrednosti"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "Vrednost mora biti večja od 0"
+
 msgid "Value is required"
 msgstr "Zahtevana je vrednost"
 
+msgid "Value less than"
+msgstr ""
+
 msgid "Value must be 0 or greater"
 msgstr "Vrednost mora biti 0 ali večja"
 
@@ -12657,12 +12832,6 @@ msgid ""
 "show relevant values"
 msgstr "Vrednosti izbrane v drugih filtrih bodo vplivale na možnosti filtra"
 
-msgid "Vehicle Types"
-msgstr "Vrste vozil"
-
-msgid "Verbose Name"
-msgstr "Podrobno ime"
-
 msgid "Version"
 msgstr "Verzija"
 
@@ -12675,9 +12844,6 @@ msgstr "Navpično"
 msgid "Vertical (Left)"
 msgstr "Navpično (levo)"
 
-msgid "Video game consoles"
-msgstr "Igralne konzole"
-
 msgid "View"
 msgstr "Ogled"
 
@@ -12719,9 +12885,6 @@ msgstr "Virtualen"
 msgid "Virtual (SQL)"
 msgstr "Virtualen (SQL-poizvedba)"
 
-msgid "Virtual dataset"
-msgstr "Virtualen podatkovni set"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "Poizvedba na virtualnem podatkovnem setu ne sme biti prazna"
 
@@ -12763,14 +12926,6 @@ msgstr ""
 "Prikaz geoprostorskih podatkov kot so 3D zgradbe, parcele ali objekti v "
 "mrežnem pogledu."
 
-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."
-
 msgid ""
 "Visualize multiple levels of hierarchy using a familiar tree-like "
 "structure."
@@ -12829,16 +12984,6 @@ msgstr ""
 "Prikaže več različnih časovnih vrst na istem grafikonu. Grafikon se "
 "opušča, zato priporočamo uporabo Grafikona časovne vrste."
 
-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."
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -12855,6 +13000,12 @@ msgstr "Tip vizualizacije"
 msgid "WED"
 msgstr "SRE"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr "Čakanje na %s"
@@ -12868,9 +13019,6 @@ msgstr "Želite dodati novo podatkovno bazo?"
 msgid "Warning"
 msgstr "Opozorilo"
 
-msgid "Warning Message"
-msgstr "Opozorilo"
-
 msgid "Warning!"
 msgstr "Opozorilo!"
 
@@ -13032,13 +13180,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr "Če je podana sekundarna metrika, je uporabljena linearna barvna skala."
 
-msgid ""
-"When allowing CREATE TABLE AS option in SQL Lab, this option forces the "
-"table to be created in this schema"
-msgstr ""
-"Z dovolitvijo opcije CREATE TABLE AS v SQL laboratoriju se tabele "
-"ustvarjajo s to shemo"
-
 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"
 
@@ -13094,24 +13235,14 @@ msgstr "Ko uporabljate 'Group By', ste omejeni na uporabo ene mere"
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr "Če ne uporabljate prilagodljive oblike, se oznake lahko prekrivajo"
 
-msgid "When using this option, default value can’t be set"
-msgstr "Če uporabite to možnost, privzeta vrednost ne more biti nastavljena"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr "Če želite prekrivanje območij, ko imate več skupin podatkov"
 
-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"
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-"Če želite, da je ta stolpec na voljo v sekciji `Filtri` v raziskovalnem "
-"pogledu."
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -13159,6 +13290,10 @@ msgstr "Če želite prikaz legende za grafikon"
 msgid "Whether to display bubbles on top of countries"
 msgstr "Če želite prikaz mehurčkov nad državami"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Če želite prikaz legende za grafikon"
+
 msgid "Whether to display the aggregate count"
 msgstr "Če želite prikazati agregirano število"
 
@@ -13168,11 +13303,6 @@ msgstr "Če želite prikaz interaktivne podatkovne tabele"
 msgid "Whether to display the labels."
 msgstr "Če želite prikaz oznak."
 
-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."
-
 msgid "Whether to display the legend (toggles)"
 msgstr "Preklapljanje prikaza legende"
 
@@ -13188,6 +13318,10 @@ msgstr "Če želite prikaz min. in max. vrednosti Y-osi"
 msgid "Whether to display the numerical values within the cells"
 msgstr "Če želite v celicah prikazati numerične vrednosti"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Če želite prikaz procentov v opisu orodja"
+
 msgid "Whether to display the stroke"
 msgstr "Če želite prikazati obrobe"
 
@@ -13200,9 +13334,17 @@ msgstr "Če želite prikazati časovno značko"
 msgid "Whether to display the tooltip labels."
 msgstr "Če želite prikaz oznak opisa orodja."
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Če želite v celicah prikazati numerične vrednosti"
+
 msgid "Whether to display the trend line"
 msgstr "Če želite prikazati trendno črto"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Če želite prikazati agregirano število"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr "Če želite omogočiti premikanje in povečevanje/zmanjševanje grafikona."
 
@@ -13227,30 +13369,9 @@ msgstr "Če želite vključiti granulacijo časa, ki je določena v sekciji Čas
 msgid "Whether to make the grid 3D"
 msgstr "Če želite mrežo v 3D-prikazu"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "Če želite kumulativni histogram"
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr ""
-"Če želite, da bo ta stolpec na razpolago kot možnost [Granulacija časa]. "
-"Stolpec mora biti tipa DATETIME ali DATETIME-like"
-
-msgid "Whether to normalize the histogram"
-msgstr "Če želite normirati histogram"
-
 msgid "Whether to populate autocomplete filters options"
 msgstr "Če želite napolniti možnosti za samodokončanje filtrov"
 
-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"
-
 msgid "Whether to show as Nightingale chart."
 msgstr "Če želite prikaz kot Nightingale grafikon."
 
@@ -13279,11 +13400,6 @@ msgstr "Če želite padajoče ali naraščajoče razvrščanje na osnovni osi."
 msgid "Whether to sort descending or ascending"
 msgstr "Če želite padajoče ali naraščajoče razvrščanje"
 
-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"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr "Če želite padajoče razvrstiti rezultate z izbrano mero."
 
@@ -13341,9 +13457,6 @@ msgstr "Dodajte opis vaše poizvedbe"
 msgid "Write a handlebars template to render the data"
 msgstr "Napišite Handlebars-predlogo za prikaz podatkov"
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "SPODNJA OBROBA NASLOVA X-OSI"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "OBROBA NASLOVA X-OSI"
 
@@ -13362,6 +13475,10 @@ msgstr "Naslov X-osi"
 msgid "X Axis Title"
 msgstr "Naslov X-osi"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Rob naslova Y-osi"
+
 msgid "X Log Scale"
 msgstr "Logaritemska X-os"
 
@@ -13383,6 +13500,9 @@ msgstr "X-os"
 msgid "XScale Interval"
 msgstr "Interval X-osi"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Meje Y-osi 2"
 
@@ -13503,6 +13623,19 @@ msgstr ""
 "Uvažate eno ali več shranjenih poizvedb, ki že obstajajo. S prepisom "
 "lahko izgubite podatke. Ali ste prepričani, da želite prepisati?"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr "Lahko"
 
@@ -13582,9 +13715,6 @@ msgstr "Nimate dostopa do tega podatkovnega seta."
 msgid "You don't have access to this embedded dashboard config."
 msgstr "Nimate dostopa do konfiguracije te vgrajene nadzorne plošče."
 
-msgid "You don't have any favorites yet!"
-msgstr "Priljubljenih še niste izbrali!"
-
 msgid "You don't have permission to modify the value."
 msgstr "Nimate dovoljenja za spreminjanje vrednosti."
 
@@ -13667,6 +13797,9 @@ msgstr "Grafikon ni aktualen"
 msgid "Your chart is ready to go!"
 msgstr "Grafikon je pripravljen!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 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."
 
@@ -13695,6 +13828,9 @@ msgstr "Vaša poizvedba je shranjena"
 msgid "Your query was updated"
 msgstr "Vaša poizvedba je posodobljena"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "Vašega poročila ni mogoče izbrisati"
 
@@ -13707,6 +13843,10 @@ msgstr "Nadomeščanje ničel"
 msgid "Zoom"
 msgstr "Povečava"
 
+#, fuzzy
+msgid "Zoom level"
+msgstr "približaj območje"
+
 msgid "Zoom level of the map"
 msgstr "Stopnja povečave zemljevida"
 
@@ -13830,9 +13970,6 @@ msgstr "ob"
 msgid "auto"
 msgstr "samodejno"
 
-msgid "auto (Smooth)"
-msgstr "samodejno (glajenje)"
-
 msgid "background"
 msgstr "ozadje"
 
@@ -13878,9 +14015,6 @@ msgstr "sprememba"
 msgid "chart"
 msgstr "grafikona"
 
-msgid "charts"
-msgstr "grafikoni"
-
 msgid "choose WHERE or HAVING..."
 msgstr "izberite WHERE ali HAVING..."
 
@@ -13890,6 +14024,10 @@ msgstr "počisti vse filtre"
 msgid "click here"
 msgstr "kliknite tukaj"
 
+#, fuzzy
+msgid "close"
+msgstr "Zapri"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr "koda ISO 3166-1 alpha-2 (cca2)"
 
@@ -13939,15 +14077,9 @@ msgstr "css_template"
 msgid "cumsum"
 msgstr "kumulativna vsota"
 
-msgid "cumulative"
-msgstr "kumulativno"
-
 msgid "dashboard"
 msgstr "nadzorna plošča"
 
-msgid "dashboards"
-msgstr "nadzorne plošče"
-
 msgid "database"
 msgstr "podatkovna baza"
 
@@ -14023,9 +14155,6 @@ msgstr "deviacija"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr "dialect+driver://username:password@host:port/database"
 
-msgid "draft"
-msgstr "osnutek"
-
 msgid "dttm"
 msgstr "datum-čas"
 
@@ -14065,9 +14194,6 @@ msgstr "npr. world_population"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "npr. xy12345.us-east-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "npr. stolpec \"id_uporabnika\""
-
 msgid "edit mode"
 msgstr "načinu urejanja"
 
@@ -14077,6 +14203,10 @@ msgstr "zadeva sporočila"
 msgid "entries"
 msgstr "vnosi"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "vnosi"
+
 msgid "error"
 msgstr "napaka"
 
@@ -14143,13 +14273,6 @@ msgstr "tukaj"
 msgid "hour"
 msgstr "ura"
 
-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"
-
 msgid "in"
 msgstr "v"
 
@@ -14159,6 +14282,10 @@ msgstr "v modalnem oknu"
 msgid "invalid email"
 msgstr "neveljaven email"
 
+#, fuzzy
+msgid "is"
+msgstr "Razdelki"
+
 msgid "is expected to be a Mapbox URL"
 msgstr "mora biti URL za Mapbox"
 
@@ -14187,6 +14314,9 @@ msgstr ""
 "je povezan z grafikoni %s, ki so prisotni na %s nadzornih ploščah. Ali "
 "želite nadaljevati? Izbris podatkovnega seta bo pokvaril te objekte."
 
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "a - ž"
 
@@ -14309,18 +14439,9 @@ msgstr "p99"
 msgid "page_size.all"
 msgstr "page_size.all"
 
-msgid "page_size.entries"
-msgstr "page_size.entries"
-
-msgid "page_size.show"
-msgstr "page_size.show"
-
 msgid "pending"
 msgstr "v teku"
 
-msgid "percentile (exclusive)"
-msgstr "percentil (odprt interval)"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14331,24 +14452,22 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "stanje povezave ni najdeno"
 
-msgid "pixelated (Sharp)"
-msgstr "pikselirano (ostro)"
-
 msgid "pixels"
 msgstr "piksli"
 
 msgid "previous calendar month"
 msgstr "prejšnji koledarski mesec"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "prejšnje koledarsko leto"
+
 msgid "previous calendar week"
 msgstr "prejšnji koledarski teden"
 
 msgid "previous calendar year"
 msgstr "prejšnje koledarsko leto"
 
-msgid "published"
-msgstr "objavljeno"
-
 msgid "quarter"
 msgstr "četrtletje"
 
@@ -14367,9 +14486,6 @@ msgstr "ponovni zagon"
 msgid "recent"
 msgstr "nedavno"
 
-msgid "recents"
-msgstr "nedavne"
-
 msgid "recipients"
 msgstr "prejemniki"
 
@@ -14391,8 +14507,9 @@ msgstr "varnost na nivoju vrstic"
 msgid "running"
 msgstr "v teku"
 
-msgid "saved queries"
-msgstr "shranjene poizvedbe"
+#, fuzzy
+msgid "save"
+msgstr "Shrani"
 
 msgid "seconds"
 msgstr "sekunde"
@@ -14409,9 +14526,6 @@ msgstr ""
 "uporabljajo enako skalo; sprememba: Prikaži razlike glede na prvo točko "
 "vsake serije"
 
-msgid "shift start date"
-msgstr "premakni začetni datum"
-
 msgid "sql"
 msgstr "sql"
 
@@ -14466,9 +14580,6 @@ msgstr "ikona časovnega tipa"
 msgid "textarea"
 msgstr "področje besedila"
 
-msgid "to"
-msgstr "do"
-
 msgid "top"
 msgstr "zgoraj"
 
@@ -14478,6 +14589,14 @@ msgstr "razveljavitev"
 msgid "unknown type icon"
 msgstr "ikona neznanega tipa"
 
+#, fuzzy
+msgid "unset"
+msgstr "Junij"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "%s posodobljeni"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14538,3 +14657,6 @@ msgstr "leto"
 
 msgid "zoom area"
 msgstr "približaj območje"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/tr/LC_MESSAGES/messages.po b/superset/translations/tr/LC_MESSAGES/messages.po
index c51c4b1e910baaa171ac3355123aaa8f4ee3b1b7..2af50eae0f80bea5cc90938e41fd7b25c88657ea 100644
--- a/superset/translations/tr/LC_MESSAGES/messages.po
+++ b/superset/translations/tr/LC_MESSAGES/messages.po
@@ -21,16 +21,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Superset VERSION\n"
 "Report-Msgid-Bugs-To: avsarcoteli@gmail.com\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2024-02-25 14:00+0300\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language: tr\n"
 "Language-Team: tr <LL@li.org>\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=1; plural=0\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -70,7 +70,10 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
 
@@ -88,9 +91,17 @@ msgstr ""
 msgid " a new one"
 msgstr ""
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr ""
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr ""
 
@@ -149,10 +160,7 @@ msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr ""
 
 #, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
+msgid "%(label)s file"
 msgstr ""
 
 #, python-format
@@ -167,22 +175,6 @@ msgstr ""
 msgid "%(object)s does not exist in this database."
 msgstr ""
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr ""
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr ""
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr ""
@@ -198,13 +190,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr ""
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -212,10 +197,6 @@ msgid_plural ""
 "\"%(undefinedParameter)s\"?"
 msgstr[0] ""
 
-#, python-format
-msgid "%(type)s File"
-msgstr ""
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -267,10 +248,6 @@ msgstr ""
 msgid "%s column(s)"
 msgstr ""
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -358,6 +335,10 @@ msgid ""
 "\n"
 msgstr ""
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0 Seçildi"
 
@@ -419,6 +400,12 @@ msgstr ""
 msgid "10 minute"
 msgstr "10 dakika"
 
+msgid "10/90 percentiles"
+msgstr ""
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr "104 hafta"
 
@@ -515,6 +502,9 @@ msgstr "5 saniye"
 msgid "5 seconds"
 msgstr "5 saniye"
 
+msgid "5/95 percentiles"
+msgstr ""
+
 msgid "52 weeks"
 msgstr "52 hafta"
 
@@ -581,9 +571,6 @@ msgstr ""
 msgid "A Big Number"
 msgstr ""
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "Açılır listeden tarih olarak değerlendirilecek sütun adlarını seçin."
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr ""
 
@@ -593,6 +580,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr ""
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -665,11 +655,6 @@ msgid ""
 "templating syntax"
 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 ""
 
@@ -768,33 +753,40 @@ msgstr "son kullanılanlar"
 msgid "Add CSS template"
 msgstr "CSS şablonu ekle"
 
-msgid "Add Chart"
-msgstr "Grafik Ekle"
-
-msgid "Add Column"
-msgstr "Kolon Ekle"
-
 msgid "Add Dashboard"
 msgstr "Dashboard Ekle"
 
-msgid "Add Database"
-msgstr "Veritabanı Ekle"
+msgid "Add Divider"
+msgstr ""
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Filtre ekle"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Alarm Ekle"
 
 msgid "Add Log"
 msgstr "Log Ekle"
 
-msgid "Add Metric"
-msgstr "Metrik Ekle"
-
 msgid "Add Report"
 msgstr "Rapor Ekle"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "Kural Ekle"
+
 msgid "Add Rule"
 msgstr "Kural Ekle"
 
 msgid "Add Tag"
 msgstr "Etiket Ekle"
 
+#, fuzzy
+msgid "Add User"
+msgstr "Kural Ekle"
+
 msgid "Add a Plugin"
 msgstr "Eklenti Ekle"
 
@@ -870,9 +862,6 @@ msgid ""
 "displayed in the filter."
 msgstr ""
 
-msgid "Add filters and dividers"
-msgstr ""
-
 msgid "Add item"
 msgstr ""
 
@@ -888,6 +877,10 @@ msgstr ""
 msgid "Add new formatter"
 msgstr ""
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Ekle ve filtreleri düzenle"
+
 msgid "Add required control values to preview chart"
 msgstr ""
 
@@ -909,12 +902,14 @@ msgstr "Dashboardın adını ekleyin"
 msgid "Add to dashboard"
 msgstr "Dashboarda ekle"
 
-msgid "Add/Edit Filters"
-msgstr "Filtre Ekle/Düzenle"
-
 msgid "Added"
 msgstr "Eklendi"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -929,9 +924,6 @@ msgstr "Ek alanlar gerekebilir"
 msgid "Additional information"
 msgstr "Ek bilgi"
 
-msgid "Additional metadata"
-msgstr "Ek metaveri"
-
 msgid "Additional padding for legend."
 msgstr ""
 
@@ -995,6 +987,14 @@ msgstr ""
 msgid "Advanced-Analytics"
 msgstr ""
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Grafikleri seç"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Dashboard seç"
+
 msgid "After"
 msgstr "Sonra"
 
@@ -1025,6 +1025,9 @@ msgstr ""
 msgid "Aggregation"
 msgstr ""
 
+msgid "Aggregation Method"
+msgstr ""
+
 msgid "Aggregation function"
 msgstr ""
 
@@ -1103,6 +1106,10 @@ msgstr ""
 msgid "All"
 msgstr "Tümü"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Kolonlar yenileniyor"
+
 msgid "All Text"
 msgstr "Tüm Metin"
 
@@ -1118,25 +1125,13 @@ msgstr "Tüm filtreler"
 msgid "All panels"
 msgstr "Tüm paneller"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr ""
-
 msgid "Allow CREATE TABLE AS"
 msgstr ""
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr ""
-
 msgid "Allow CREATE VIEW AS"
 msgstr ""
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr ""
-
-msgid "Allow Csv Upload"
-msgstr ""
-
-msgid "Allow DML"
+msgid "Allow DDL and DML"
 msgstr ""
 
 msgid "Allow changing catalogs"
@@ -1153,6 +1148,9 @@ msgstr ""
 msgid "Allow creation of new tables based on queries"
 msgstr ""
 
+msgid "Allow creation of new values"
+msgstr ""
+
 msgid "Allow creation of new views based on queries"
 msgstr ""
 
@@ -1167,26 +1165,22 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr ""
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-
 msgid "Allow node selections"
 msgstr ""
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr ""
 
-msgid "Allow this database to be explored"
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
 msgstr ""
 
-msgid "Allow this database to be queried in SQL Lab"
+msgid "Allow this database to be explored"
 msgstr ""
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
+msgid "Allow this database to be queried in SQL Lab"
 msgstr ""
 
 msgid "Allowed Domains (comma separated)"
@@ -1228,6 +1222,10 @@ msgstr ""
 msgid "An error has occurred"
 msgstr "Bir hata oluştu"
 
+#, fuzzy
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Verisetini kaydederken bir hata oluştu"
+
 msgid "An error occurred"
 msgstr "Bir hata oluştu"
 
@@ -1237,6 +1235,10 @@ msgstr "Verisetini kaydederken bir hata oluştu"
 msgid "An error occurred when running alert query"
 msgstr ""
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Verisetini kaydederken bir hata oluştu"
+
 msgid "An error occurred while accessing the value."
 msgstr ""
 
@@ -1249,6 +1251,10 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr ""
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Verisetini kaydederken bir hata oluştu"
+
 msgid "An error occurred while creating the data source"
 msgstr ""
 
@@ -1382,6 +1388,10 @@ msgid ""
 "button."
 msgstr ""
 
+#, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr ""
+
 msgid "An error occurred while updating the value."
 msgstr ""
 
@@ -1561,12 +1571,6 @@ msgstr "Filtreleri uygula"
 msgid "Apply metrics on"
 msgstr ""
 
-msgid "Apply to all panels"
-msgstr ""
-
-msgid "Apply to specific panels"
-msgstr ""
-
 msgid "April"
 msgstr "Nisan"
 
@@ -1608,6 +1612,10 @@ msgstr ""
 msgid "Are you sure you want to delete the selected queries?"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "%s’i silmek istiyor musunuz?"
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr ""
 
@@ -1617,6 +1625,10 @@ msgstr ""
 msgid "Are you sure you want to delete the selected templates?"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "Are you sure you want to delete the selected users?"
+msgstr "%s’i silmek istiyor musunuz?"
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr ""
 
@@ -1654,13 +1666,10 @@ msgstr ""
 msgid "Assist"
 msgstr ""
 
-msgid "Associated Charts"
-msgstr ""
-
-msgid "Async Execution"
+msgid "Asynchronous query execution"
 msgstr ""
 
-msgid "Asynchronous query execution"
+msgid "Attribution"
 msgstr ""
 
 msgid "August"
@@ -1687,12 +1696,24 @@ msgstr ""
 msgid "Automatic Color"
 msgstr ""
 
+msgid "Autosize Column"
+msgstr ""
+
+msgid "Autosize all columns"
+msgstr ""
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr ""
 
 msgid "Average"
 msgstr ""
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr ""
 
@@ -1730,6 +1751,9 @@ msgstr ""
 msgid "Backend"
 msgstr ""
 
+msgid "Background Color"
+msgstr ""
+
 msgid "Backward values"
 msgstr ""
 
@@ -1745,9 +1769,6 @@ msgstr ""
 msgid "Bar Chart"
 msgstr ""
 
-msgid "Bar Chart (legacy)"
-msgstr ""
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr ""
 
@@ -1760,10 +1781,25 @@ msgstr ""
 msgid "Base"
 msgstr ""
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Veritabanı portu"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Grafik yüksekliği"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Grafik genişliği"
+
 msgid "Based on a metric"
 msgstr ""
 
@@ -1783,9 +1819,6 @@ msgstr ""
 msgid "Batch editing %d filters:"
 msgstr ""
 
-msgid "Battery level over time"
-msgstr ""
-
 msgid "Be careful."
 msgstr "Dikkat edin."
 
@@ -1808,6 +1841,13 @@ msgstr ""
 msgid "Bins"
 msgstr "Bitiş"
 
+msgid "Border color"
+msgstr ""
+
+#, fuzzy
+msgid "Border width"
+msgstr "Grafik genişliği"
+
 msgid "Bottom"
 msgstr ""
 
@@ -1912,9 +1952,6 @@ msgstr ""
 msgid "Business"
 msgstr ""
 
-msgid "Business Data Type"
-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"
@@ -1980,8 +2017,9 @@ msgstr ""
 msgid "CSS templates could not be deleted."
 msgstr ""
 
-msgid "CSV Upload"
-msgstr ""
+#, fuzzy
+msgid "CSV upload"
+msgstr "Yükle"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr ""
@@ -1992,7 +2030,7 @@ msgid ""
 "last statement. Then, try running your query again."
 msgstr ""
 
-msgid "CTAS Schema"
+msgid "CUSTOM"
 msgstr ""
 
 msgid ""
@@ -2007,9 +2045,6 @@ msgstr ""
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr ""
 
-msgid "Cache Timeout"
-msgstr "Önbellek Zamanaşımı"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Önbellek Zamanaşımı (saniye)"
 
@@ -2054,9 +2089,6 @@ msgstr ""
 msgid "Can select multiple values"
 msgstr "Birden fazla değer seçilebilir"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr ""
-
 msgid "Cancel"
 msgstr "İptal"
 
@@ -2069,6 +2101,10 @@ msgstr ""
 msgid "Cannot delete a database that has datasets attached"
 msgstr ""
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr ""
 
@@ -2079,6 +2115,9 @@ msgstr ""
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr ""
 
+msgid "Cartodiagram"
+msgstr ""
+
 #, fuzzy
 msgid "Catalog"
 msgstr "etiket"
@@ -2156,12 +2195,13 @@ msgstr ""
 msgid "Change order of rows."
 msgstr ""
 
-msgid "Changed By"
-msgstr ""
-
 msgid "Changed by"
 msgstr ""
 
+#, fuzzy
+msgid "Changed on"
+msgstr "Oluşturan"
+
 msgid "Changes saved."
 msgstr ""
 
@@ -2211,9 +2251,6 @@ msgstr "Grafik"
 msgid "Chart %(id)s not found"
 msgstr "Grafik %(id)s bulunamadı"
 
-msgid "Chart Cache Timeout"
-msgstr "Grafik Önbellek Zamanaşımı"
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr "Grafik Verisi: %s"
@@ -2307,6 +2344,10 @@ msgstr ""
 msgid "Chart properties updated"
 msgstr ""
 
+#, fuzzy
+msgid "Chart size"
+msgstr "grafikler"
+
 msgid "Chart title"
 msgstr "Grafik başlığı"
 
@@ -2354,6 +2395,9 @@ msgstr ""
 msgid "Choose File"
 msgstr "Dosya Seçin"
 
+msgid "Choose a chart for displaying on the map"
+msgstr ""
+
 msgid "Choose a chart or dashboard not both"
 msgstr ""
 
@@ -2376,9 +2420,6 @@ msgstr ""
 msgid "Choose a source"
 msgstr "Kaynak seçin"
 
-msgid "Choose a source and a target"
-msgstr "Kaynak ve hedef seçin"
-
 msgid "Choose a target"
 msgstr "Hedef seçin"
 
@@ -2456,9 +2497,6 @@ msgstr ""
 msgid "Circular"
 msgstr ""
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2479,7 +2517,10 @@ msgstr "Tüm veriyi temizle"
 msgid "Clear form"
 msgstr "Formu temizle"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr "Yeni dashboard filtresi oluşturmak için Filtre Ekle/Düzenle butonuna basın"
 
 msgid ""
@@ -2506,6 +2547,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr ""
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "Etiketi düzenlemek için tıklayın"
+
 msgid "Click to cancel sorting"
 msgstr "Sıralamayı iptal etmek için tıklayın"
 
@@ -2623,12 +2668,13 @@ msgstr ""
 msgid "Column Configuration"
 msgstr ""
 
-msgid "Column Data Types"
-msgstr ""
-
 msgid "Column Formatting"
 msgstr ""
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Ayarları Filtrele"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2644,9 +2690,6 @@ msgstr ""
 msgid "Column data types"
 msgstr "Veri tipi"
 
-msgid "Column datatype"
-msgstr ""
-
 msgid "Column header tooltip"
 msgstr ""
 
@@ -2672,17 +2715,20 @@ msgid ""
 "label is used."
 msgstr ""
 
-msgid "Columnar Upload"
-msgstr ""
+#, fuzzy
+msgid "Column type"
+msgstr "Filtre tipi"
 
-msgid "Columns"
-msgstr ""
+#, fuzzy
+msgid "Columnar upload"
+msgstr "Yükle"
 
-msgid "Columns To Be Parsed as Dates"
+msgid "Columns"
 msgstr ""
 
-msgid "Columns To Read"
-msgstr ""
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "Saniye %s"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2695,6 +2741,9 @@ msgstr ""
 msgid "Columns subtotal position"
 msgstr ""
 
+msgid "Columns to be parsed as dates"
+msgstr ""
+
 msgid "Columns to calculate distribution across."
 msgstr ""
 
@@ -2710,6 +2759,10 @@ msgstr ""
 msgid "Columns to group by on the rows"
 msgstr ""
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Kolonlar bulunamadı"
+
 msgid "Combine metrics"
 msgstr ""
 
@@ -2744,17 +2797,6 @@ msgid ""
 "and color."
 msgstr ""
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-
 msgid "Comparison"
 msgstr ""
 
@@ -2812,18 +2854,28 @@ msgstr ""
 msgid "Configure the basics of your Annotation Layer."
 msgstr ""
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 
 msgid "Configure your how you overlay is displayed here."
 msgstr ""
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Şifreyi göster."
+
 msgid "Confirm overwrite"
 msgstr ""
 
 msgid "Confirm save"
 msgstr ""
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "Bağlan"
 
@@ -2854,9 +2906,6 @@ msgstr ""
 msgid "Connection failed, please check your connection settings."
 msgstr ""
 
-msgid "Connection looks good!"
-msgstr "Bağlantı iyi görünüyor!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "Tarih formatı"
@@ -2895,21 +2944,21 @@ msgstr ""
 msgid "Copy"
 msgstr "Kopyala"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr ""
 
-msgid "Copy and Paste JSON credentials"
+msgid "Copy URL"
 msgstr ""
 
-msgid "Copy and paste the entire service account .json file here"
+msgid "Copy and Paste JSON credentials"
 msgstr ""
 
 msgid "Copy link"
 msgstr "Linki kopyala"
 
-msgid "Copy message"
-msgstr "Mesajı kopyala"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "%s’in kopyası"
@@ -2926,6 +2975,9 @@ msgstr "Sorgu URL’ini kopyala"
 msgid "Copy query link to your clipboard"
 msgstr "Sorgu linkini panoya kopyala"
 
+msgid "Copy the current data"
+msgstr ""
+
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr ""
 
@@ -2941,6 +2993,9 @@ msgstr "Panoya Kopyala"
 msgid "Copy to clipboard"
 msgstr "Panoya kopyala"
 
+msgid "Corner Radius"
+msgstr ""
+
 msgid "Correlation"
 msgstr ""
 
@@ -2970,6 +3025,9 @@ msgstr "Veritabanı sürücüsü yüklenemedi: {}"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr "Say"
 
@@ -3060,6 +3118,9 @@ msgstr ""
 msgid "Creator"
 msgstr ""
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr ""
 
@@ -3145,6 +3206,9 @@ msgstr ""
 msgid "Custom color palettes"
 msgstr "Otomatik tamamlama"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "Başlangıç tarihi"
@@ -3179,9 +3243,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr ""
 
-msgid "D3 Format"
-msgstr ""
-
 msgid "D3 format"
 msgstr ""
 
@@ -3240,6 +3301,21 @@ msgstr ""
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr ""
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "Dashboard güncellenemedi."
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "Dashboard güncellenemedi."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "Dashboard güncellenemedi."
+
 msgid "Dashboard could not be deleted."
 msgstr "Dashboard silinemedi."
 
@@ -3252,6 +3328,10 @@ msgstr "Dashboard bulunmuyor"
 msgid "Dashboard imported"
 msgstr "Dashboard aktarıldı"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "Dashboard güncellenemedi."
+
 msgid "Dashboard parameters are invalid."
 msgstr ""
 
@@ -3292,10 +3372,6 @@ msgstr ""
 msgid "Data"
 msgstr "Veri"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "Veriseti aktarıldı"
-
 msgid "Data Table"
 msgstr "Veri Tablosu"
 
@@ -3320,6 +3396,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr ""
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Veriseti aktarıldı"
+
 msgid "Data preview"
 msgstr "Veri önizleme"
 
@@ -3474,13 +3554,6 @@ msgid ""
 "database table to the left or "
 msgstr ""
 
-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 "Datasets could not be deleted."
 msgstr ""
 
@@ -3514,9 +3587,6 @@ msgstr ""
 msgid "Date/Time"
 msgstr "Tarih/Zaman"
 
-msgid "Datetime Format"
-msgstr ""
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3544,13 +3614,10 @@ msgstr ""
 msgid "December"
 msgstr "Aralık"
 
-msgid "Decides which column to sort the base axis by."
+msgid "Decides which column or measure to sort the base axis by."
 msgstr ""
 
-msgid "Decides which measure to sort the base axis by."
-msgstr ""
-
-msgid "Decimal Character"
+msgid "Decimal character"
 msgstr ""
 
 msgid "Deck.gl - 3D Grid"
@@ -3592,9 +3659,6 @@ msgstr ""
 msgid "Default Catalog"
 msgstr ""
 
-msgid "Default Endpoint"
-msgstr ""
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "Şema seç"
@@ -3602,7 +3666,10 @@ msgstr "Şema seç"
 msgid "Default URL"
 msgstr ""
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
 
 msgid "Default Value"
@@ -3622,9 +3689,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr ""
 
-msgid "Default value is required"
-msgstr ""
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 
@@ -3669,9 +3733,6 @@ msgid ""
 "[Periods] text box"
 msgstr ""
 
-msgid "Defines how each series is broken down"
-msgstr ""
-
 msgid "Defines the grid size in pixels"
 msgstr ""
 
@@ -3725,9 +3786,17 @@ msgstr "Sorgu Silinsin mi?"
 msgid "Delete Report?"
 msgstr "Rapor Silinsin mi?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "sil"
+
 msgid "Delete Template?"
 msgstr "Şablon Silinsin mi?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Sorgu Silinsin mi?"
+
 msgid "Delete all Really?"
 msgstr "Hepsini silmek istiyor musunuz?"
 
@@ -3746,12 +3815,20 @@ msgstr "Email raporunu sil"
 msgid "Delete query"
 msgstr "Sorguyu sil"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "sil"
+
 msgid "Delete template"
 msgstr "Şablonu sil"
 
 msgid "Delete this container and save to remove this message."
 msgstr ""
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Sorguyu sil"
+
 msgid "Deleted"
 msgstr "Silindi"
 
@@ -3804,13 +3881,29 @@ msgstr[0] ""
 msgid "Deleted %s"
 msgstr "%s Silindi"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Silindi: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Silindi: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Silindi: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Silindi: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Silindi: %s"
 
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 
 msgid "Delimited long & lat single column"
@@ -3822,18 +3915,12 @@ msgstr ""
 msgid "Delivery method"
 msgstr ""
 
-msgid "Demographics"
-msgstr ""
-
 msgid "Density"
 msgstr ""
 
 msgid "Dependent on"
 msgstr ""
 
-msgid "Deprecated"
-msgstr ""
-
 msgid "Description"
 msgstr ""
 
@@ -3923,9 +4010,6 @@ msgstr ""
 msgid "Discard"
 msgstr ""
 
-msgid "Display"
-msgstr ""
-
 msgid "Display Name"
 msgstr ""
 
@@ -3933,12 +4017,18 @@ msgstr ""
 msgid "Display all"
 msgstr "Tümünü temizle"
 
+msgid "Display column in the chart"
+msgstr ""
+
 msgid "Display column level subtotal"
 msgstr ""
 
 msgid "Display column level total"
 msgstr ""
 
+msgid "Display column name"
+msgstr ""
+
 msgid "Display configuration"
 msgstr ""
 
@@ -3959,7 +4049,7 @@ msgstr ""
 msgid "Display row level total"
 msgstr ""
 
-msgid "Display settings"
+msgid "Display type icon"
 msgstr ""
 
 msgid ""
@@ -3975,9 +4065,6 @@ msgstr ""
 msgid "Distribution"
 msgstr ""
 
-msgid "Distribution - Bar Chart"
-msgstr ""
-
 msgid "Divider"
 msgstr ""
 
@@ -4005,9 +4092,18 @@ msgstr "Resim olarak indir"
 msgid "Download as image"
 msgstr "Resim olarak indir"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "CSV olarak indir"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "Taslak"
 
@@ -4100,6 +4196,13 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr ""
 
+msgid "Duplicate role"
+msgstr ""
+
+#, python-format
+msgid "Duplicate role %(name)s"
+msgstr ""
+
 msgid "Duplicate tab"
 msgstr ""
 
@@ -4112,29 +4215,12 @@ msgid ""
 "the cache. Note this defaults to the global timeout if undefined."
 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 ""
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-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."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4151,6 +4237,9 @@ msgstr ""
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr ""
 
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr ""
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr ""
 
@@ -4172,10 +4261,6 @@ msgstr ""
 msgid "ERROR"
 msgstr "HATA"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "HATA: %s"
-
 msgid "Edge length"
 msgstr ""
 
@@ -4200,45 +4285,38 @@ msgstr "CSS’i Düzenle"
 msgid "Edit CSS template properties"
 msgstr "CSS şablonu özelliklerini düzenle"
 
-msgid "Edit Chart"
-msgstr "Grafiği Düzenle"
-
 msgid "Edit Chart Properties"
 msgstr "Grafik Özelliklerini Düzenle"
 
-msgid "Edit Column"
-msgstr "Kolonu Düzenle"
-
 msgid "Edit Dashboard"
 msgstr "Dashboardı Düzenle"
 
-msgid "Edit Database"
-msgstr "Veritabanını Düzenle"
-
 msgid "Edit Dataset "
 msgstr "Verisetini Düzenle "
 
 msgid "Edit Log"
 msgstr "Log Düzenle"
 
-msgid "Edit Metric"
-msgstr ""
-
 msgid "Edit Plugin"
 msgstr "Eklentiyi Düzenle"
 
 msgid "Edit Report"
 msgstr "Raporu Düzenle"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "düzenleme modu"
+
 msgid "Edit Rule"
 msgstr "Kuralı Düzenle"
 
-msgid "Edit Table"
-msgstr "Tabloyu Düzenli"
-
 msgid "Edit Tag"
 msgstr "Etiketi Düzenle"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Sorguyu düzenle"
+
 msgid "Edit annotation"
 msgstr ""
 
@@ -4275,6 +4353,10 @@ msgstr "Özellikleri düzenle"
 msgid "Edit query"
 msgstr "Sorguyu düzenle"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "düzenleme modu"
+
 msgid "Edit template"
 msgstr "Şablonu düzenle"
 
@@ -4287,6 +4369,10 @@ msgstr "Dashboardı düzenle"
 msgid "Edit time range"
 msgstr ""
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Sorguyu düzenle"
+
 msgid "Edited"
 msgstr "Düzenlendi"
 
@@ -4312,6 +4398,14 @@ msgstr ""
 msgid "Elevation"
 msgstr ""
 
+#, fuzzy
+msgid "Email"
+msgstr "Küçük"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "İsim gereklidir"
+
 msgid "Email reports active"
 msgstr ""
 
@@ -4327,6 +4421,10 @@ msgstr ""
 msgid "Embed dashboard"
 msgstr ""
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "Dashboard silinemedi."
+
 msgid "Embedding deactivated."
 msgstr ""
 
@@ -4336,9 +4434,6 @@ msgstr ""
 msgid "Emphasis"
 msgstr ""
 
-msgid "Employment and education"
-msgstr ""
-
 msgid "Empty circle"
 msgstr ""
 
@@ -4360,9 +4455,6 @@ msgstr ""
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr ""
 
-msgid "Enable Filter Select"
-msgstr ""
-
 msgid "Enable cross-filtering"
 msgstr "Çapraz filtrelemeyi etkinleştir"
 
@@ -4462,10 +4554,24 @@ msgstr "Rapor ismi"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr ""
 
-msgid "Entity"
+msgid "Enter the unique project id for your database."
 msgstr ""
 
-msgid "Entity ID"
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Alarm adı"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "Alarm adı"
+
+msgid "Enter the user's username"
+msgstr ""
+
+msgid "Entity"
 msgstr ""
 
 msgid "Equal Date Sizes"
@@ -4480,6 +4586,14 @@ msgstr "Hata"
 msgid "Error Fetching Tagged Objects"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Veri getirirken hata: %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Verisetini kaydederken hata"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr ""
@@ -4502,6 +4616,9 @@ msgstr ""
 msgid "Error message"
 msgstr "Hata mesajı"
 
+msgid "Error parsing"
+msgstr ""
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "Verisetini kaydederken hata"
@@ -4516,6 +4633,22 @@ msgstr "Excel dosyası yükle"
 msgid "Error saving dataset"
 msgstr "Verisetini kaydederken hata"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Verisetini kaydederken hata"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Grafikleri getirirken hata"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Grafikleri getirirken hata"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Grafikleri getirirken hata"
+
 msgid "Error while fetching charts"
 msgstr "Grafikleri getirirken hata"
 
@@ -4523,10 +4656,30 @@ msgstr "Grafikleri getirirken hata"
 msgid "Error while fetching data: %s"
 msgstr "Veri getirirken hata: %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Grafikleri getirirken hata"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Grafikleri getirirken hata"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Grafikleri getirirken hata"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr ""
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Grafikleri getirirken hata"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Grafikleri getirirken hata"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "Hata: %(error)s"
@@ -4550,15 +4703,6 @@ msgstr ""
 msgid "Event"
 msgstr ""
 
-msgid "Event Flow"
-msgstr ""
-
-msgid "Event Names"
-msgstr ""
-
-msgid "Event definition"
-msgstr ""
-
 msgid "Event flow"
 msgstr ""
 
@@ -4580,13 +4724,13 @@ msgstr "Örnek"
 msgid "Examples"
 msgstr "Örnekler"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "Yükle"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "Yükle"
+
 msgid "Exclude selected values"
 msgstr ""
 
@@ -4674,12 +4818,6 @@ msgstr ""
 msgid "Export to Pivoted .CSV"
 msgstr "CSV’ye Aktar"
 
-msgid "Export to YAML"
-msgstr "YAML’a Aktar"
-
-msgid "Export to YAML?"
-msgstr "YAML’a Aktarılsın mı?"
-
 msgid "Export to full .CSV"
 msgstr ""
 
@@ -4698,11 +4836,9 @@ msgstr ""
 msgid "Expose in SQL Lab"
 msgstr ""
 
-msgid "Expose this DB in SQL Lab"
-msgstr ""
-
-msgid "Expression"
-msgstr ""
+#, fuzzy
+msgid "Extent"
+msgstr "son kullanılanlar"
 
 msgid "Extra"
 msgstr ""
@@ -4723,10 +4859,6 @@ msgid ""
 "\"warning_markdown\": \"This is a warning.\" }`."
 msgstr ""
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr ""
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr ""
 
@@ -4744,6 +4876,10 @@ msgstr ""
 msgid "FEB"
 msgstr "ŞUB"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Verisetini düzenle"
+
 msgid "FRI"
 msgstr "CUM"
 
@@ -4753,14 +4889,13 @@ msgstr ""
 msgid "Factor to multiply the metric by"
 msgstr ""
 
-msgid "Failed"
+msgid "Fail login count"
 msgstr ""
 
-msgid "Failed at retrieving results"
+msgid "Failed"
 msgstr ""
 
-#, python-format
-msgid "Failed at stopping query. %s"
+msgid "Failed at retrieving results"
 msgstr ""
 
 msgid "Failed to create report"
@@ -4791,6 +4926,9 @@ msgstr ""
 msgid "Failed to start remote query on a worker."
 msgstr ""
 
+msgid "Failed to stop query."
+msgstr ""
+
 msgid "Failed to tag items"
 msgstr ""
 
@@ -4814,9 +4952,6 @@ msgstr ""
 msgid "February"
 msgstr "Şubat"
 
-msgid "Fetch Values Predicate"
-msgstr ""
-
 msgid "Fetch data preview"
 msgstr ""
 
@@ -4841,15 +4976,12 @@ msgstr ""
 msgid "File"
 msgstr ""
 
-#, fuzzy
-msgid "File Settings"
-msgstr "Ayarları Filtrele"
-
 msgid "File extension is not allowed."
 msgstr ""
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "Ayarları Filtrele"
 
 #, fuzzy
 msgid "File upload"
@@ -4915,9 +5047,6 @@ msgstr "Filtre değeri listesi boş olamaz"
 msgid "Filter your charts"
 msgstr "Grafiklerinizi filtreleyin"
 
-msgid "Filterable"
-msgstr "Filtrelenebilir"
-
 msgid "Filters"
 msgstr "Filtreler"
 
@@ -4930,6 +5059,15 @@ msgstr ""
 msgid "Filters for comparison must have a value"
 msgstr ""
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+msgid "Filters for values greater than or equal."
+msgstr ""
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "Kapsam dışındaki filtreler (%d)"
@@ -4954,6 +5092,14 @@ msgstr "Bitiş"
 msgid "First"
 msgstr "İlk"
 
+#, fuzzy
+msgid "First name"
+msgstr "Grafik adı"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "İsim gereklidir"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5030,6 +5176,10 @@ msgstr ""
 msgid "Force refresh"
 msgstr "Yenilemeye zorla"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Şema listesini yenilemeye zorla"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "Tablo listesini yenilemeye zorla"
@@ -5146,6 +5296,10 @@ msgstr ""
 msgid "Geohash"
 msgstr ""
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Kolon seç"
+
 msgid "Get the last date by the date unit."
 msgstr ""
 
@@ -5203,9 +5357,6 @@ msgstr ""
 msgid "Group by"
 msgstr ""
 
-msgid "Groupable"
-msgstr ""
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5222,20 +5373,12 @@ msgstr ""
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-
 msgid "Has created by"
 msgstr ""
 
 msgid "Header"
 msgstr ""
 
-msgid "Header Row"
-msgstr ""
-
 #, fuzzy
 msgid "Header row"
 msgstr "Yeni başlık"
@@ -5243,18 +5386,16 @@ msgstr "Yeni başlık"
 msgid "Heatmap"
 msgstr ""
 
-msgid "Heatmap (legacy)"
-msgstr ""
-
-msgid "Heatmap Options"
-msgstr ""
-
 msgid "Height"
 msgstr ""
 
 msgid "Height of the sparkline"
 msgstr ""
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Kolon seç"
+
 msgid "Hide Line"
 msgstr ""
 
@@ -5279,9 +5420,6 @@ msgstr ""
 msgid "Histogram"
 msgstr ""
 
-msgid "Histogram (legacy)"
-msgstr ""
-
 msgid "Home"
 msgstr "Anasayfa"
 
@@ -5354,18 +5492,12 @@ msgid ""
 "hive.server2.proxy.user property."
 msgstr ""
 
-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.<br/>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 ""
-
-msgid "If Table Already Exists"
+msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr ""
 
-msgid "If a metric is specified, sorting will be done based on the metric value"
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
 msgstr ""
 
 msgid ""
@@ -5373,8 +5505,9 @@ msgid ""
 "it sorts the results ascending."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr ""
+#, fuzzy, python-format
+msgid "If table already exists"
+msgstr "Veriseti %(name)s zaten var"
 
 msgid "Ignore cache when generating report"
 msgstr ""
@@ -5394,9 +5527,6 @@ msgstr ""
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr ""
 
-msgid "Impersonate the logged on user"
-msgstr ""
-
 msgid "Import"
 msgstr "İçe aktar"
 
@@ -5407,9 +5537,6 @@ msgstr "İçe aktar %s"
 msgid "Import Dashboard(s)"
 msgstr "Dashboard(ları) İçe Aktar"
 
-msgid "Import a table definition"
-msgstr ""
-
 msgid "Import chart failed for an unknown reason"
 msgstr ""
 
@@ -5440,12 +5567,12 @@ msgstr "Sorguları içe aktar"
 msgid "Import saved query failed for an unknown reason."
 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."
+msgid "In"
 msgstr ""
 
-msgid "In"
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
 msgstr ""
 
 msgid "Include Series"
@@ -5470,17 +5597,18 @@ msgstr ""
 msgid "Index"
 msgstr ""
 
-msgid "Index Column"
-msgstr ""
-
 #, fuzzy
-msgid "Index Label"
-msgstr "etiket"
+msgid "Index column"
+msgstr "Kolon seç"
 
 #, fuzzy
 msgid "Index label"
 msgstr "etiket"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Haftalar %s"
+
 msgid "Info"
 msgstr "Bilgi"
 
@@ -5499,6 +5627,12 @@ msgstr ""
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr ""
 
+msgid "Insert Layer URL"
+msgstr ""
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr ""
 
@@ -5529,9 +5663,6 @@ msgstr ""
 msgid "Intervals"
 msgstr ""
 
-msgid "Intesity"
-msgstr ""
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -5572,6 +5703,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr ""
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr ""
@@ -5635,6 +5769,10 @@ msgstr ""
 msgid "Invert current page"
 msgstr ""
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Aktif"
+
 msgid "Is certified"
 msgstr ""
 
@@ -5808,12 +5946,6 @@ msgstr ""
 msgid "Last"
 msgstr "Son"
 
-msgid "Last Changed"
-msgstr "Son Değiştirme"
-
-msgid "Last Modified"
-msgstr "Son Düzenleme"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "%s Son Gücelleme"
@@ -5822,6 +5954,10 @@ msgstr "%s Son Gücelleme"
 msgid "Last Updated %s by %s"
 msgstr ""
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Bir değer girin"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr ""
@@ -5830,6 +5966,10 @@ msgstr ""
 msgid "Last day"
 msgstr "son gün"
 
+#, fuzzy
+msgid "Last login"
+msgstr "son ay"
+
 msgid "Last modified"
 msgstr "Son düzenleme"
 
@@ -5837,6 +5977,14 @@ msgstr "Son düzenleme"
 msgid "Last month"
 msgstr "son ay"
 
+#, fuzzy
+msgid "Last name"
+msgstr "veriseti ismi"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "İsim gereklidir"
+
 #, fuzzy
 msgid "Last quarter"
 msgstr "son çeyrek"
@@ -5852,15 +6000,41 @@ msgstr "son hafta"
 msgid "Last year"
 msgstr "son yıl"
 
+msgid "Lat"
+msgstr ""
+
 msgid "Latitude"
 msgstr ""
 
 msgid "Latitude of default viewport"
 msgstr ""
 
+#, fuzzy
+msgid "Layer"
+msgstr "yıl"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Alarm adı"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr ""
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Grafik başlığı"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Filtre tipi"
+
+#, fuzzy
+msgid "Layers"
+msgstr "alarmlar"
+
 msgid "Layout"
 msgstr ""
 
@@ -5873,11 +6047,6 @@ msgstr ""
 msgid "Layout type of tree"
 msgstr ""
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-
 msgid "Least recently modified"
 msgstr ""
 
@@ -5942,11 +6111,6 @@ msgstr ""
 msgid "Limit type"
 msgstr ""
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-
 msgid "Limits the number of cells that get retrieved."
 msgstr ""
 
@@ -5982,6 +6146,9 @@ msgid ""
 "chart common in many fields."
 msgstr ""
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr ""
 
@@ -6009,9 +6176,16 @@ msgstr ""
 msgid "Link Copied!"
 msgstr ""
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr ""
 
+#, fuzzy
+msgid "List Users"
+msgstr "Sorguyu düzenle"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr ""
 
@@ -6078,6 +6252,10 @@ msgstr ""
 msgid "Login"
 msgstr "Giriş"
 
+#, fuzzy
+msgid "Login count"
+msgstr "sayı"
+
 msgid "Login with"
 msgstr ""
 
@@ -6087,6 +6265,9 @@ msgstr "Çıkış"
 msgid "Logs"
 msgstr "Loglar"
 
+msgid "Lon"
+msgstr ""
+
 msgid "Long dashed"
 msgstr ""
 
@@ -6128,9 +6309,6 @@ msgstr "PZT"
 msgid "Main"
 msgstr "Benim"
 
-msgid "Main Datetime Column"
-msgstr ""
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6162,6 +6340,10 @@ msgstr ""
 msgid "Map"
 msgstr ""
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Grafik seçenekleri"
+
 msgid "Map Style"
 msgstr ""
 
@@ -6204,13 +6386,16 @@ msgstr ""
 msgid "Markup type"
 msgstr ""
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr ""
 
 msgid "Max Bubble Size"
 msgstr ""
 
-msgid "Max Events"
+msgid "Max. features"
 msgstr ""
 
 msgid "Maximum"
@@ -6222,6 +6407,9 @@ msgstr ""
 msgid "Maximum Radius"
 msgstr ""
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6261,6 +6449,18 @@ msgstr ""
 msgid "Medium"
 msgstr ""
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -6354,11 +6554,6 @@ msgid ""
 "appropriate)."
 msgstr ""
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-
 msgid "Metrics"
 msgstr ""
 
@@ -6398,7 +6593,7 @@ msgstr ""
 msgid "Minimum Radius"
 msgstr ""
 
-msgid "Minimum leaf node event count"
+msgid "Minimum must be strictly less than maximum"
 msgstr ""
 
 msgid ""
@@ -6412,6 +6607,9 @@ msgstr ""
 msgid "Minimum value"
 msgstr ""
 
+msgid "Minimum value cannot be higher than maximum value"
+msgstr ""
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr ""
 
@@ -6435,6 +6633,9 @@ msgstr ""
 msgid "Minutes value"
 msgstr "Bir değer girin"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr ""
 
@@ -6451,6 +6652,11 @@ msgstr "Düzenleme"
 msgid "Modified %s"
 msgstr "Son düzenleme %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+
 msgid "Modified by"
 msgstr "Düzenleyen"
 
@@ -6458,10 +6664,6 @@ msgstr "Düzenleyen"
 msgid "Modified by: %s"
 msgstr "Düzenleyen: %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr ""
-
 msgid "Monday"
 msgstr "Pazartesi"
 
@@ -6522,9 +6724,6 @@ msgstr ""
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr ""
 
-msgid "Must have at least one numeric column specified"
-msgstr ""
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr ""
 
@@ -6549,9 +6748,6 @@ msgstr ""
 msgid "NOV"
 msgstr "KAS"
 
-msgid "NOW"
-msgstr "ŞİMDİ"
-
 msgid "NUMERIC"
 msgstr ""
 
@@ -6577,9 +6773,6 @@ msgstr ""
 msgid "Name of the source nodes"
 msgstr ""
 
-msgid "Name of the table that exists in the source database"
-msgstr ""
-
 msgid "Name of the target nodes"
 msgstr ""
 
@@ -6595,19 +6788,22 @@ msgstr ""
 msgid "Need help? Learn more about"
 msgstr ""
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Beklenmeyen hata"
+
 msgid "Network error"
 msgstr ""
 
+msgid "Network error while attempting to fetch resource"
+msgstr ""
+
 msgid "Network error."
 msgstr ""
 
 msgid "New chart"
 msgstr "Yeni grafik"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "Yeni kolonlar eklendi: %s"
-
 msgid "New dataset"
 msgstr "Yeni veriseti"
 
@@ -6654,6 +6850,10 @@ msgstr "Henüz Kurallar Yok"
 msgid "No Tags created"
 msgstr ""
 
+#, fuzzy
+msgid "No actions"
+msgstr "Olaylar"
+
 msgid "No annotation layers"
 msgstr ""
 
@@ -6672,9 +6872,6 @@ msgstr "Uygun filtre yok."
 msgid "No charts"
 msgstr "Grafik yok"
 
-msgid "No charts yet"
-msgstr "Henüz grafik yok"
-
 msgid "No columns found"
 msgstr "Kolonlar bulunamadı"
 
@@ -6690,9 +6887,6 @@ msgstr ""
 msgid "No compatible schema found"
 msgstr ""
 
-msgid "No dashboards yet"
-msgstr "Henüz dashboard yok"
-
 msgid "No data"
 msgstr "Veri bulunamadı"
 
@@ -6702,6 +6896,10 @@ msgstr "Filtrelemeden sonra veri bulunamadı veya en son kayıt için veriler NU
 msgid "No data in file"
 msgstr "Dosyada veri yok"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "Yok"
+
 msgid "No databases match your search"
 msgstr "Aramanızla eşleşen veritabanı yok"
 
@@ -6732,12 +6930,6 @@ msgstr ""
 msgid "No matching records found"
 msgstr ""
 
-msgid "No of Bins"
-msgstr ""
-
-msgid "No recents yet"
-msgstr ""
-
 msgid "No records found"
 msgstr ""
 
@@ -6759,6 +6951,10 @@ msgid ""
 "contains data for the selected time range."
 msgstr ""
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Henüz Kurallar Yok"
+
 msgid "No rows were returned for this dataset"
 msgstr ""
 
@@ -6771,9 +6967,6 @@ msgstr ""
 msgid "No saved metrics found"
 msgstr ""
 
-msgid "No saved queries yet"
-msgstr "Henüz kaydedilmiş sorgu yok"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 
@@ -6789,6 +6982,10 @@ msgstr ""
 msgid "No time columns"
 msgstr ""
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Henüz Kurallar Yok"
+
 msgid "No validator found (configured for the engine)"
 msgstr ""
 
@@ -6865,6 +7062,9 @@ msgstr ""
 msgid "Not up to date"
 msgstr ""
 
+msgid "Nothing here yet"
+msgstr ""
+
 msgid "Nothing triggered"
 msgstr ""
 
@@ -6964,9 +7164,6 @@ msgstr "Ekim"
 msgid "Offline"
 msgstr ""
 
-msgid "Offset"
-msgstr ""
-
 msgid "On Grace"
 msgstr ""
 
@@ -6991,6 +7188,9 @@ msgstr ""
 msgid "One or many metrics to display"
 msgstr ""
 
+msgid "One or more annotation layers failed loading."
+msgstr ""
+
 msgid "One or more columns already exist"
 msgstr ""
 
@@ -7018,12 +7218,6 @@ msgstr ""
 msgid "One or more parameters specified in the query are missing."
 msgstr ""
 
-msgid "One ore more annotation layers failed loading."
-msgstr ""
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr ""
-
 msgid "Only Total"
 msgstr ""
 
@@ -7036,9 +7230,6 @@ msgstr ""
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
 
-msgid "Only selected panels will be affected by this filter"
-msgstr ""
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7114,15 +7305,19 @@ msgstr "Seçenekler"
 msgid "Or choose from a list of other databases we support:"
 msgstr ""
 
-msgid "Order by entity id"
-msgstr ""
-
 msgid "Order results by selected columns"
 msgstr ""
 
 msgid "Ordering"
 msgstr ""
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr ""
 
@@ -7232,6 +7427,9 @@ msgid ""
 " or username."
 msgstr ""
 
+msgid "PDF download failed, please refresh and try again."
+msgstr ""
+
 msgid "Page length"
 msgstr ""
 
@@ -7289,6 +7487,14 @@ msgstr ""
 msgid "Password"
 msgstr "Şifre"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "İsim gereklidir"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Dashboardlar bulunmuyor"
+
 msgid "Paste Private Key here"
 msgstr ""
 
@@ -7343,6 +7549,13 @@ msgstr ""
 msgid "Periods must be a whole number"
 msgstr ""
 
+msgid "Permissions"
+msgstr ""
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr ""
 
@@ -7358,9 +7571,6 @@ msgstr ""
 msgid "Physical (table or view)"
 msgstr "Fiziksel (tablo veya view)"
 
-msgid "Physical dataset"
-msgstr "Fiziksel veriseti"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
 
@@ -7382,15 +7592,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr ""
 
-msgid "Pick at least one field for [Series]"
-msgstr ""
-
 msgid "Pick at least one metric"
 msgstr ""
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-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."
@@ -7402,7 +7606,7 @@ msgstr ""
 msgid "Pie Chart"
 msgstr ""
 
-msgid "Pie Chart (legacy)"
+msgid "Pie charts on a map"
 msgstr ""
 
 msgid "Pie shape"
@@ -7414,6 +7618,13 @@ msgstr ""
 msgid "Pin"
 msgstr ""
 
+msgid "Pin Left"
+msgstr ""
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "sağ"
+
 msgid "Pivot Table"
 msgstr ""
 
@@ -7462,6 +7673,9 @@ msgid ""
 "your query again."
 msgstr ""
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr ""
 
@@ -7471,12 +7685,24 @@ msgstr ""
 msgid "Please confirm the overwrite values."
 msgstr ""
 
+msgid "Please confirm your password"
+msgstr ""
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr ""
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr ""
 
@@ -7488,9 +7714,6 @@ msgid "Please reach out to the Chart Owner for assistance."
 msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] ""
 
-msgid "Please save the query to enable sharing"
-msgstr ""
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
 
@@ -7563,9 +7786,6 @@ msgstr ""
 msgid "Populate \"Default value\" to enable this control"
 msgstr ""
 
-msgid "Population age data"
-msgstr ""
-
 msgid "Port"
 msgstr ""
 
@@ -7603,12 +7823,6 @@ msgstr ""
 msgid "Pre-filter is required"
 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 ""
-
 msgid "Predictive"
 msgstr ""
 
@@ -7628,10 +7842,6 @@ msgstr ""
 msgid "Preview uploaded file"
 msgstr "Excel dosyası yükle"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr ""
-
 msgid "Previous"
 msgstr ""
 
@@ -7677,18 +7887,12 @@ msgstr ""
 msgid "Progressive"
 msgstr ""
 
-msgid "Propagate"
+msgid "Project Id"
 msgstr ""
 
 msgid "Proportional"
 msgstr ""
 
-msgid "Public and privately shared sheets"
-msgstr ""
-
-msgid "Publicly shared sheets only"
-msgstr ""
-
 msgid "Published"
 msgstr "Paylaşıldı"
 
@@ -7707,9 +7911,6 @@ msgstr ""
 msgid "Put the labels outside of the pie?"
 msgstr ""
 
-msgid "Put the labels outside the pie?"
-msgstr ""
-
 msgid "Put your code here"
 msgstr ""
 
@@ -7811,10 +8012,6 @@ msgstr ""
 msgid "Radius in miles"
 msgstr ""
 
-#, python-format
-msgid "Ran %s"
-msgstr ""
-
 msgid "Range"
 msgstr ""
 
@@ -7842,24 +8039,9 @@ msgstr ""
 msgid "Raw records"
 msgstr ""
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Son zamanlarda oluşturulan grafikler, dashboardlar ve kaydedilen sorgular"
-" burada görünecek"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Son zamanlarda değiştirilen grafikler, dashboardlar ve kaydedilen "
-"sorgular burada görünecek"
-
 msgid "Recently modified"
 msgstr ""
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Son görüntülenen grafikler, dashboardlar ve kayıtlı sorgular burada "
-"görünecek"
-
 msgid "Recents"
 msgstr "Son Kullanılanlar"
 
@@ -7878,9 +8060,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr ""
-
 msgid "Redo the action"
 msgstr ""
 
@@ -7918,6 +8097,10 @@ msgstr "Yenileme aralığı"
 msgid "Refresh interval saved"
 msgstr "Yenileme aralığı kaydedildi"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "Tabloları listele"
+
 msgid "Refresh the default values"
 msgstr ""
 
@@ -7971,8 +8154,9 @@ msgid "Remove table preview"
 msgstr ""
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr ""
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
 
 msgid "Rename tab"
 msgstr ""
@@ -7983,10 +8167,9 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
-msgstr ""
-
-msgid "Rendering"
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
 msgid "Replace"
@@ -8083,6 +8266,9 @@ msgstr ""
 msgid "Repulsion strength between nodes"
 msgstr ""
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr ""
@@ -8114,6 +8300,10 @@ msgstr ""
 msgid "Reset"
 msgstr ""
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Kolon seç"
+
 msgid "Reset state"
 msgstr ""
 
@@ -8139,6 +8329,10 @@ msgstr ""
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr ""
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "Grafikleri getirirken hata"
+
 msgid "Return to specific datetime."
 msgstr ""
 
@@ -8178,6 +8372,27 @@ msgstr ""
 msgid "Role"
 msgstr "Rol"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Alarm adı"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "İsim gereklidir"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "İsim gereklidir"
+
+msgid "Role successfully updated!"
+msgstr ""
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Roller"
 
@@ -8250,9 +8465,6 @@ msgstr ""
 msgid "Rows subtotal position"
 msgstr ""
 
-msgid "Rows to Read"
-msgstr ""
-
 msgid "Rows to read"
 msgstr ""
 
@@ -8318,14 +8530,12 @@ msgstr ""
 msgid "SQL Copied!"
 msgstr ""
 
-msgid "SQL Expression"
-msgstr ""
-
 msgid "SQL Lab"
 msgstr ""
 
-msgid "SQL Lab View"
-msgstr ""
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "kaydedilmiş sorgular"
 
 #, python-format
 msgid ""
@@ -8411,19 +8621,10 @@ msgstr ""
 msgid "Samples for datasource could not be retrieved."
 msgstr ""
 
-msgid "Sankey"
-msgstr ""
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Grafiği kaydet"
 
-msgid "Sankey Diagram (legacy)"
-msgstr ""
-
-msgid "Sankey Diagram with Loops"
-msgstr ""
-
 msgid "Satellite"
 msgstr ""
 
@@ -8484,9 +8685,6 @@ msgstr "Verisetini Kaydet veya Üstüne Yaz"
 msgid "Save query"
 msgstr "Sorguyu kaydet"
 
-msgid "Save the query to enable this feature"
-msgstr "Bu özelliği aktif etmek için sorguyu kaydet"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr ""
 
@@ -8514,6 +8712,10 @@ msgstr ""
 msgid "Saved query parameters are invalid."
 msgstr ""
 
+#, fuzzy
+msgid "Saving..."
+msgstr "Yükleniyor…"
+
 msgid "Scale and Move"
 msgstr ""
 
@@ -8565,9 +8767,6 @@ msgstr "Şema"
 msgid "Schema cache timeout"
 msgstr ""
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr ""
-
 msgid "Schemas allowed for File upload"
 msgstr ""
 
@@ -8650,9 +8849,6 @@ msgstr "Saniye %s"
 msgid "Seconds value"
 msgstr "saniye"
 
-msgid "Secure Extra"
-msgstr ""
-
 msgid "Secure extra"
 msgstr ""
 
@@ -8742,6 +8938,10 @@ msgstr ""
 msgid "Select a sheet name from the uploaded file"
 msgstr ""
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Veritabanını sil"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -8759,7 +8959,7 @@ msgstr ""
 msgid "Select all items"
 msgstr ""
 
-msgid "Select any columns for metadata inspection"
+msgid "Select an aggregation method to apply to the metric."
 msgstr ""
 
 #, fuzzy
@@ -8786,6 +8986,9 @@ msgstr ""
 msgid "Select column"
 msgstr "Kolon seç"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr "Açılır listeden tarih olarak değerlendirilecek sütun adlarını seçin."
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -8872,6 +9075,14 @@ msgstr "Veriseti ismini seçin / girin"
 msgid "Select owners"
 msgstr ""
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Şema seç"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Dosya seç"
+
 msgid "Select saved metrics"
 msgstr ""
 
@@ -8884,9 +9095,19 @@ msgstr "Şema seçin"
 msgid "Select scheme"
 msgstr "Şema seç"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr ""
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Veritabanını sil"
+
 msgid "Select table or type to search tables"
 msgstr "Tablo seç"
 
@@ -8911,12 +9132,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr ""
 
-msgid "Select the number of bins for the histogram"
-msgstr ""
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr ""
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -8939,9 +9154,6 @@ msgstr ""
 msgid "Send as text"
 msgstr ""
 
-msgid "Send range filter events to other charts"
-msgstr ""
-
 msgid "September"
 msgstr "Eylül"
 
@@ -8954,12 +9166,6 @@ msgstr ""
 msgid "Series Height"
 msgstr ""
 
-msgid "Series Limit Sort By"
-msgstr ""
-
-msgid "Series Limit Sort Descending"
-msgstr ""
-
 msgid "Series Order"
 msgstr ""
 
@@ -8987,6 +9193,9 @@ msgstr ""
 msgid "Service Account"
 msgstr ""
 
+msgid "Service version"
+msgstr ""
+
 msgid "Set auto-refresh interval"
 msgstr "Otomatik yenilemeyi ayarla"
 
@@ -9014,6 +9223,10 @@ msgstr "Ayarlar"
 msgid "Settings for time series"
 msgstr ""
 
+#, fuzzy
+msgid "Shape"
+msgstr "Kullanım"
+
 msgid "Share"
 msgstr "Paylaş"
 
@@ -9074,18 +9287,9 @@ msgstr ""
 msgid "Show Cell bars"
 msgstr ""
 
-msgid "Show Chart"
-msgstr ""
-
-msgid "Show Column"
-msgstr ""
-
 msgid "Show Dashboard"
 msgstr ""
 
-msgid "Show Database"
-msgstr ""
-
 msgid "Show Labels"
 msgstr ""
 
@@ -9095,18 +9299,12 @@ msgstr ""
 msgid "Show Markers"
 msgstr ""
 
-msgid "Show Metric"
-msgstr ""
-
 msgid "Show Metric Names"
 msgstr ""
 
 msgid "Show Range Filter"
 msgstr ""
 
-msgid "Show Table"
-msgstr ""
-
 msgid "Show Timestamp"
 msgstr ""
 
@@ -9139,9 +9337,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr ""
 
-msgid "Show all..."
-msgstr ""
-
 msgid "Show axis line ticks"
 msgstr ""
 
@@ -9163,6 +9358,9 @@ msgstr ""
 msgid "Show empty columns"
 msgstr ""
 
+msgid "Show entries per page"
+msgstr ""
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9183,9 +9381,6 @@ msgstr ""
 msgid "Show less columns"
 msgstr ""
 
-msgid "Show less..."
-msgstr ""
-
 msgid "Show minor ticks on axes."
 msgstr ""
 
@@ -9222,6 +9417,10 @@ msgstr ""
 msgid "Show the value on top of the bar"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "Show total"
+msgstr "Toplamı göster"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9256,7 +9455,7 @@ msgid ""
 msgstr ""
 
 #, python-format
-msgid "Showing %s of %s"
+msgid "Showing %s of %s items"
 msgstr ""
 
 msgid "Shows a list of all series available at that point in time"
@@ -9289,16 +9488,13 @@ msgstr ""
 msgid "Single value type"
 msgstr ""
 
-msgid "Size of edge symbols"
-msgstr ""
-
-msgid "Size of marker. Also applies to forecast observations."
+msgid "Size in pixels"
 msgstr ""
 
-msgid "Sizes of vehicles"
+msgid "Size of edge symbols"
 msgstr ""
 
-msgid "Skip Rows"
+msgid "Size of marker. Also applies to forecast observations."
 msgstr ""
 
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
@@ -9370,9 +9566,6 @@ msgstr ""
 msgid "Sorry, something went wrong. Try again later."
 msgstr ""
 
-msgid "Sorry, there appears to be no data"
-msgstr ""
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr ""
@@ -9390,9 +9583,6 @@ msgstr ""
 msgid "Sort"
 msgstr ""
 
-msgid "Sort Bars"
-msgstr ""
-
 msgid "Sort Descending"
 msgstr ""
 
@@ -9414,9 +9604,6 @@ msgstr ""
 msgid "Sort ascending"
 msgstr ""
 
-msgid "Sort bars by x labels."
-msgstr ""
-
 msgid "Sort by"
 msgstr "Sırala"
 
@@ -9442,6 +9629,10 @@ msgstr ""
 msgid "Sort metric"
 msgstr ""
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "Sorguyu Dışa Aktar"
+
 msgid "Sort rows by"
 msgstr ""
 
@@ -9454,9 +9645,6 @@ msgstr ""
 msgid "Source"
 msgstr ""
 
-msgid "Source / Target"
-msgstr ""
-
 msgid "Source SQL"
 msgstr ""
 
@@ -9498,9 +9686,6 @@ msgstr ""
 msgid "Stack"
 msgstr ""
 
-msgid "Stack Trace:"
-msgstr ""
-
 msgid "Stack series"
 msgstr ""
 
@@ -9516,9 +9701,6 @@ msgstr ""
 msgid "Stacked Style"
 msgstr ""
 
-msgid "Stacked style"
-msgstr ""
-
 msgid "Standard time series"
 msgstr ""
 
@@ -9613,9 +9795,6 @@ msgstr ""
 msgid "Strength to pull the graph toward center"
 msgstr ""
 
-msgid "Stretched style"
-msgstr ""
-
 msgid "Stroke Color"
 msgstr ""
 
@@ -9637,15 +9816,19 @@ msgstr ""
 msgid "Subdomain"
 msgstr ""
 
-msgid "Subheader"
-msgstr ""
-
 msgid "Subheader Font Size"
 msgstr ""
 
 msgid "Submit"
 msgstr ""
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "Sekme başlığı"
+
+msgid "Subtitle Font Size"
+msgstr ""
+
 msgid "Subtotal"
 msgstr ""
 
@@ -9698,9 +9881,6 @@ msgstr ""
 msgid "Superset chart"
 msgstr ""
 
-msgid "Superset dashboard"
-msgstr ""
-
 msgid "Superset encountered an error while running a command."
 msgstr ""
 
@@ -9710,9 +9890,6 @@ msgstr ""
 msgid "Supported databases"
 msgstr ""
 
-msgid "Survey Responses"
-msgstr ""
-
 msgid "Swap dataset"
 msgstr ""
 
@@ -9725,6 +9902,12 @@ msgid ""
 "well."
 msgstr ""
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr ""
 
@@ -9734,9 +9917,20 @@ msgstr ""
 msgid "Symbol size"
 msgstr ""
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr ""
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr ""
 
@@ -9747,9 +9941,6 @@ msgstr ""
 msgid "TABLES"
 msgstr "TABLOLAR"
 
-msgid "TEMPORAL X-AXIS"
-msgstr ""
-
 msgid "TEMPORAL_RANGE"
 msgstr ""
 
@@ -9785,6 +9976,10 @@ msgid ""
 "connection, schema, and table name"
 msgstr ""
 
+#, fuzzy
+msgid "Table actions"
+msgstr "Grafik seçenekleri"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -9796,6 +9991,10 @@ msgstr ""
 msgid "Table columns"
 msgstr ""
 
+#, fuzzy
+msgid "Table name"
+msgstr "Tablo ismi"
+
 msgid "Table name undefined"
 msgstr ""
 
@@ -9857,11 +10056,6 @@ msgstr ""
 msgid "Tags"
 msgstr ""
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-
 msgid "Target"
 msgstr ""
 
@@ -9886,6 +10080,9 @@ msgid ""
 "coming from the controls."
 msgstr ""
 
+msgid "Temporal X-Axis"
+msgstr ""
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -9930,9 +10127,6 @@ msgid ""
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -9962,6 +10156,10 @@ msgstr ""
 msgid "The annotation has been updated"
 msgstr ""
 
+#, fuzzy
+msgid "The background color of the charts."
+msgstr "Grafiğin adını ekleyin"
+
 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."
@@ -9989,6 +10187,9 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr ""
 
+msgid "The color of the elements border"
+msgstr ""
+
 msgid "The color of the isoband"
 msgstr ""
 
@@ -10003,6 +10204,12 @@ msgid ""
 "        Edit the color scheme in the dashboard properties."
 msgstr ""
 
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+
 msgid "The column header label"
 msgstr ""
 
@@ -10015,6 +10222,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr ""
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10026,18 +10239,9 @@ msgstr ""
 msgid "The data source seems to have been deleted"
 msgstr ""
 
-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 ""
-
-#, 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 ""
+#, fuzzy
+msgid "The database"
+msgstr "Veritabanını sil"
 
 msgid "The database columns that contains lines information"
 msgstr ""
@@ -10068,12 +10272,9 @@ msgstr ""
 msgid "The database was not found."
 msgstr ""
 
-#, 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 ""
+#, fuzzy
+msgid "The dataset"
+msgstr "Yeni veriseti"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr ""
@@ -10131,6 +10332,15 @@ msgid ""
 "call."
 msgstr ""
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10148,6 +10358,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr ""
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10180,20 +10393,12 @@ msgstr ""
 msgid "The id of the active 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'"
+msgid "The layer attribution"
 msgstr ""
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10218,12 +10423,24 @@ msgid ""
 "call."
 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"
+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 ""
+
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr ""
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Grafiğin adını ekleyin"
+
+msgid "The name of the layer as described in GetCapabilities"
 msgstr ""
 
 msgid "The name of the rule must be unique"
@@ -10416,6 +10633,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr ""
 
@@ -10453,10 +10673,13 @@ msgstr ""
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+msgid "The screenshot has been downloaded."
+msgstr ""
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
+msgid "The service url of the layer"
 msgstr ""
 
 msgid "The size of each cell in meters"
@@ -10465,6 +10688,9 @@ msgstr ""
 msgid "The size of the square cell, in pixels"
 msgstr ""
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 msgid "The submitted payload failed validation."
 msgstr ""
 
@@ -10486,11 +10712,6 @@ msgid ""
 "to run this query."
 msgstr ""
 
-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 "The table was deleted or renamed in the database."
 msgstr ""
 
@@ -10535,6 +10756,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr ""
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "Grafiğin adını ekleyin"
+
 msgid "The type of visualization to display"
 msgstr ""
 
@@ -10557,12 +10782,24 @@ msgstr ""
 msgid "The username provided when connecting to a database is not valid."
 msgstr ""
 
+msgid "The version of the service"
+msgstr ""
+
+msgid "The visible title of the layer"
+msgstr ""
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr ""
 
 msgid "The width of the Isoline in pixels"
 msgstr ""
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+msgid "The width of the elements border"
+msgstr ""
+
 msgid "The width of the lines"
 msgstr ""
 
@@ -10579,9 +10816,6 @@ msgstr ""
 msgid "There are no components added to this tab"
 msgstr "Bu sekmeye eklenen herhangi bir komponent yok"
 
-msgid "There are no databases available"
-msgstr ""
-
 msgid "There are no filters in this dashboard."
 msgstr ""
 
@@ -10593,6 +10827,9 @@ msgid ""
 " or a typo."
 msgstr ""
 
+msgid "There is currently no information to display."
+msgstr ""
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -10617,6 +10854,10 @@ msgstr ""
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Grafiği yüklerken hata oluştu"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Şemaları yüklerken hata oluştu"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "Tabloları yüklerken hata oluştu"
@@ -10633,6 +10874,10 @@ msgstr "Şemaları yüklerken hata oluştu"
 msgid "There was an error loading the tables"
 msgstr "Tabloları yüklerken hata oluştu"
 
+#, fuzzy
+msgid "There was an error retrieving dashboard tabs."
+msgstr "Tabloları yüklerken hata oluştu"
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr ""
@@ -10640,6 +10885,10 @@ msgstr ""
 msgid "There was an error with your request"
 msgstr ""
 
+#, python-format
+msgid "There was an issue deleting %s"
+msgstr ""
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr ""
@@ -10723,21 +10972,9 @@ msgstr ""
 msgid "There was an issue previewing the selected query. %s"
 msgstr ""
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr ""
-
 msgid "These are the datasets this filter will be applied to."
 msgstr ""
 
-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 ""
-
 msgid ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -10751,12 +10988,20 @@ msgstr "Bu eylem %s’i kalıcı olarak silecektir."
 msgid "This action will permanently delete the layer."
 msgstr "Bu eylem katmanı kalıcı olarak silecektir."
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "Bu eylem katmanı kalıcı olarak silecektir."
+
 msgid "This action will permanently delete the saved query."
 msgstr "Bu eylem kaydedilmiş sorguyu kalıcı olarak silecektir."
 
 msgid "This action will permanently delete the template."
 msgstr "Bu eylem şablonu kalıcı olarak silecektir."
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "Bu eylem katmanı kalıcı olarak silecektir."
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -10783,11 +11028,6 @@ msgid ""
 "source. "
 msgstr ""
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-
 msgid "This column might be incompatible with current dataset"
 msgstr ""
 
@@ -10853,6 +11093,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr "Dashboard başarıyla kaydedildi."
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 
@@ -10870,6 +11116,9 @@ msgstr ""
 msgid "This defines the element to be plotted on the chart"
 msgstr ""
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -10880,11 +11129,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr ""
-
 msgid "This filter might be incompatible with current dataset"
 msgstr ""
 
@@ -10914,12 +11158,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr ""
 
-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 ""
-
 msgid "This metric might be incompatible with current dataset"
 msgstr ""
 
@@ -10958,6 +11196,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr ""
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr ""
 
@@ -11032,9 +11273,6 @@ msgstr ""
 msgid "Time Series"
 msgstr ""
 
-msgid "Time Series - Bar Chart"
-msgstr ""
-
 msgid "Time Series - Line Chart"
 msgstr ""
 
@@ -11050,9 +11288,6 @@ msgstr ""
 msgid "Time Series - Period Pivot"
 msgstr ""
 
-msgid "Time Series - Stacked"
-msgstr ""
-
 msgid "Time Series Options"
 msgstr ""
 
@@ -11140,15 +11375,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr ""
 
-msgid "Time-series Area Chart (legacy)"
-msgstr ""
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr ""
-
-msgid "Time-series Line Chart (legacy)"
-msgstr ""
-
 msgid "Time-series Percent Change"
 msgstr ""
 
@@ -11167,9 +11393,6 @@ msgstr ""
 msgid "Timezone"
 msgstr ""
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr ""
-
 msgid "Timezone selector"
 msgstr ""
 
@@ -11188,6 +11411,11 @@ msgstr ""
 msgid "Title or Slug"
 msgstr ""
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr ""
 
@@ -11229,6 +11457,9 @@ msgstr ""
 msgid "Total (%(aggregatorName)s)"
 msgstr ""
 
+msgid "Total (Sum)"
+msgstr ""
+
 msgid "Total value"
 msgstr ""
 
@@ -11333,9 +11564,6 @@ msgstr "Buraya bir değer girin"
 msgid "Type is required"
 msgstr ""
 
-msgid "Type of Google Sheets allowed"
-msgstr ""
-
 msgid "Type of comparison, value difference or percentage"
 msgstr ""
 
@@ -11409,9 +11637,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr ""
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr ""
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr ""
 
@@ -11440,6 +11674,10 @@ msgstr ""
 msgid "Unexpected time range: %(error)s"
 msgstr ""
 
+#, fuzzy
+msgid "Unhide"
+msgstr "geri al"
+
 msgid "Unknown"
 msgstr "Bilinmeyen"
 
@@ -11477,6 +11715,10 @@ msgstr "Bilinmeyen tip"
 msgid "Unknown value"
 msgstr "Bilinmeyen değer"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "çalışıyor"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr ""
@@ -11540,9 +11782,6 @@ msgstr "Kolon Ekle"
 msgid "Upload Columnar file to database"
 msgstr "Excel dosyasını veritabanına yükle"
 
-msgid "Upload Credentials"
-msgstr ""
-
 msgid "Upload Enabled"
 msgstr ""
 
@@ -11565,6 +11804,10 @@ msgstr "Dosyayı veritabanına yükle"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Excel dosyası yükle"
+
 msgid "Upload file to database"
 msgstr "Dosyayı veritabanına yükle"
 
@@ -11617,10 +11860,10 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr ""
 
-msgid "Use date formatting even when metric value is not a timestamp"
+msgid "Use current extent"
 msgstr ""
 
-msgid "Use legacy datasource editor"
+msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 
 msgid "Use metrics as a top level group for columns or for rows"
@@ -11632,11 +11875,6 @@ msgstr ""
 msgid "Use the Advanced Analytics options below"
 msgstr ""
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-
 msgid "Use the edit button to change this field"
 msgstr ""
 
@@ -11673,9 +11911,23 @@ msgstr ""
 msgid "User query"
 msgstr "Kullanıcı sorgusu"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "Kullanıcı adı"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "İsim gereklidir"
+
+#, fuzzy
+msgid "Users"
+msgstr "Kullanıcı"
+
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr ""
 
@@ -11697,6 +11949,10 @@ msgid ""
 "funnels and pipelines."
 msgstr ""
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "Değer"
 
@@ -11722,9 +11978,15 @@ msgstr ""
 msgid "Value format"
 msgstr ""
 
+msgid "Value greater than"
+msgstr ""
+
 msgid "Value is required"
 msgstr ""
 
+msgid "Value less than"
+msgstr ""
+
 msgid "Value must be 0 or greater"
 msgstr ""
 
@@ -11742,12 +12004,6 @@ msgid ""
 "show relevant values"
 msgstr ""
 
-msgid "Vehicle Types"
-msgstr ""
-
-msgid "Verbose Name"
-msgstr ""
-
 msgid "Version"
 msgstr ""
 
@@ -11760,9 +12016,6 @@ msgstr ""
 msgid "Vertical (Left)"
 msgstr ""
 
-msgid "Video game consoles"
-msgstr ""
-
 msgid "View"
 msgstr ""
 
@@ -11804,9 +12057,6 @@ msgstr "Sanal"
 msgid "Virtual (SQL)"
 msgstr "Sanal (SQL)"
 
-msgid "Virtual dataset"
-msgstr "Sanal veriseti"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "Sanal veriseti sorgusu boş olamaz"
 
@@ -11843,11 +12093,6 @@ msgid ""
 "grid view."
 msgstr ""
 
-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."
@@ -11892,13 +12137,6 @@ msgid ""
 "instead."
 msgstr ""
 
-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 ""
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -11913,6 +12151,12 @@ msgstr ""
 msgid "WED"
 msgstr "ÇAR"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, python-format
 msgid "Waiting on %s"
 msgstr ""
@@ -11927,9 +12171,6 @@ msgstr ""
 msgid "Warning"
 msgstr "Uyarı"
 
-msgid "Warning Message"
-msgstr "Uyarı Mesajı"
-
 msgid "Warning!"
 msgstr "Uyarı!"
 
@@ -12057,11 +12298,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr ""
 
-msgid ""
-"When allowing CREATE TABLE AS option in SQL Lab, this option forces the "
-"table to be created in this schema"
-msgstr ""
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr ""
 
@@ -12082,6 +12318,11 @@ msgid ""
 "to the main datetime column."
 msgstr ""
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -12096,20 +12337,14 @@ msgstr ""
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
 
-msgid "When using this option, default value can’t be set"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
 msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr ""
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr ""
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr ""
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -12147,6 +12382,9 @@ msgstr ""
 msgid "Whether to display bubbles on top of countries"
 msgstr ""
 
+msgid "Whether to display in the chart"
+msgstr ""
+
 msgid "Whether to display the aggregate count"
 msgstr ""
 
@@ -12156,11 +12394,6 @@ msgstr ""
 msgid "Whether to display the labels."
 msgstr ""
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-
 msgid "Whether to display the legend (toggles)"
 msgstr ""
 
@@ -12176,6 +12409,9 @@ msgstr ""
 msgid "Whether to display the numerical values within the cells"
 msgstr ""
 
+msgid "Whether to display the percentage value in the tooltip"
+msgstr ""
+
 msgid "Whether to display the stroke"
 msgstr ""
 
@@ -12188,9 +12424,15 @@ msgstr ""
 msgid "Whether to display the tooltip labels."
 msgstr ""
 
+msgid "Whether to display the total value in the tooltip"
+msgstr ""
+
 msgid "Whether to display the trend line"
 msgstr ""
 
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr ""
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr ""
 
@@ -12215,32 +12457,15 @@ msgstr ""
 msgid "Whether to make the grid 3D"
 msgstr ""
 
-msgid "Whether to make the histogram cumulative"
-msgstr ""
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr ""
-
-msgid "Whether to normalize the histogram"
-msgstr ""
-
 msgid "Whether to populate autocomplete filters options"
 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 ""
-
 msgid "Whether to show as Nightingale chart."
 msgstr ""
 
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr ""
 
 msgid "Whether to show minor ticks on the axis"
@@ -12261,9 +12486,6 @@ msgstr ""
 msgid "Whether to sort descending or ascending"
 msgstr ""
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr ""
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr ""
 
@@ -12321,9 +12543,6 @@ msgstr ""
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr ""
-
 msgid "X AXIS TITLE MARGIN"
 msgstr ""
 
@@ -12342,6 +12561,9 @@ msgstr ""
 msgid "X Axis Title"
 msgstr ""
 
+msgid "X Axis Title Margin"
+msgstr ""
+
 msgid "X Log Scale"
 msgstr ""
 
@@ -12363,6 +12585,9 @@ msgstr ""
 msgid "XScale Interval"
 msgstr ""
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr ""
 
@@ -12473,6 +12698,19 @@ msgid ""
 "want to overwrite?"
 msgstr ""
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr ""
 
@@ -12544,9 +12782,6 @@ msgstr "Bu verisetine erişemezsiniz."
 msgid "You don't have access to this embedded dashboard config."
 msgstr "Bu gömülü Dashboard’un configine erişemezsiniz."
 
-msgid "You don't have any favorites yet!"
-msgstr "Henüz favoriniz yok!"
-
 msgid "You don't have permission to modify the value."
 msgstr "Değeri değiştirmek için yetkiniz yok."
 
@@ -12619,6 +12854,9 @@ msgstr ""
 msgid "Your chart is ready to go!"
 msgstr ""
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr "Dashboard’unuz çok büyük. Lütfen kaydetmeden önce boyutunu küçültün."
 
@@ -12645,6 +12883,9 @@ msgstr "Sorgunuz kaydedildi"
 msgid "Your query was updated"
 msgstr "Sorgunuz güncellendi"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr ""
 
@@ -12657,6 +12898,9 @@ msgstr ""
 msgid "Zoom"
 msgstr ""
 
+msgid "Zoom level"
+msgstr ""
+
 msgid "Zoom level of the map"
 msgstr ""
 
@@ -12771,9 +13015,6 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
-msgid "auto (Smooth)"
-msgstr ""
-
 msgid "background"
 msgstr ""
 
@@ -12820,9 +13061,6 @@ msgstr ""
 msgid "chart"
 msgstr "grafik"
 
-msgid "charts"
-msgstr "grafikler"
-
 msgid "choose WHERE or HAVING..."
 msgstr ""
 
@@ -12832,6 +13070,10 @@ msgstr "tüm filtreleri temizle"
 msgid "click here"
 msgstr "tıklayın"
 
+#, fuzzy
+msgid "close"
+msgstr "Kapat"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr ""
 
@@ -12884,15 +13126,9 @@ msgstr ""
 msgid "cumsum"
 msgstr ""
 
-msgid "cumulative"
-msgstr ""
-
 msgid "dashboard"
 msgstr "dashboard"
 
-msgid "dashboards"
-msgstr "dashboardlar"
-
 msgid "database"
 msgstr "veritabanı"
 
@@ -12956,9 +13192,6 @@ msgstr ""
 msgid "default"
 msgstr ""
 
-msgid "delete"
-msgstr "sil"
-
 msgid "descendant"
 msgstr ""
 
@@ -12971,9 +13204,6 @@ msgstr ""
 msgid "dialect+driver://username:password@host:port/database"
 msgstr ""
 
-msgid "draft"
-msgstr "taslak"
-
 msgid "dttm"
 msgstr ""
 
@@ -13013,9 +13243,6 @@ msgstr ""
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr ""
 
-msgid "e.g., a \"user id\" column"
-msgstr ""
-
 msgid "edit mode"
 msgstr "düzenleme modu"
 
@@ -13025,6 +13252,9 @@ msgstr ""
 msgid "entries"
 msgstr ""
 
+msgid "entries per page"
+msgstr ""
+
 msgid "error"
 msgstr "hata"
 
@@ -13091,11 +13321,6 @@ msgstr ""
 msgid "hour"
 msgstr "saat"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr ""
-
 msgid "in"
 msgstr ""
 
@@ -13105,6 +13330,10 @@ msgstr ""
 msgid "invalid email"
 msgstr ""
 
+#, fuzzy
+msgid "is"
+msgstr "Bitiş"
+
 msgid "is expected to be a Mapbox URL"
 msgstr ""
 
@@ -13114,6 +13343,22 @@ msgstr ""
 msgid "is expected to be an integer"
 msgstr ""
 
+#, python-format
+msgid ""
+"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 ""
+
+#, python-format
+msgid ""
+"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 ""
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr ""
 
@@ -13235,18 +13480,9 @@ msgstr ""
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr "kayıt"
-
-msgid "page_size.show"
-msgstr ""
-
 msgid "pending"
 msgstr ""
 
-msgid "percentile (exclusive)"
-msgstr "yüzde %"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -13255,24 +13491,21 @@ msgstr ""
 msgid "permalink state not found"
 msgstr ""
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 msgid "pixels"
 msgstr ""
 
 msgid "previous calendar month"
 msgstr ""
 
+msgid "previous calendar quarter"
+msgstr ""
+
 msgid "previous calendar week"
 msgstr ""
 
 msgid "previous calendar year"
 msgstr ""
 
-msgid "published"
-msgstr "paylaşıldı"
-
 msgid "quarter"
 msgstr ""
 
@@ -13291,9 +13524,6 @@ msgstr "yeniden başlat"
 msgid "recent"
 msgstr ""
 
-msgid "recents"
-msgstr "son kullanılanlar"
-
 #, fuzzy
 msgid "recipients"
 msgstr "son kullanılanlar"
@@ -13316,8 +13546,9 @@ msgstr ""
 msgid "running"
 msgstr "çalışıyor"
 
-msgid "saved queries"
-msgstr "kaydedilmiş sorgular"
+#, fuzzy
+msgid "save"
+msgstr "Kaydet"
 
 msgid "seconds"
 msgstr "saniye"
@@ -13331,10 +13562,6 @@ msgid ""
 "series"
 msgstr ""
 
-#, fuzzy
-msgid "shift start date"
-msgstr "Başlangıç tarihi"
-
 msgid "sql"
 msgstr ""
 
@@ -13389,9 +13616,6 @@ msgstr ""
 msgid "textarea"
 msgstr ""
 
-msgid "to"
-msgstr "ila"
-
 msgid "top"
 msgstr ""
 
@@ -13401,6 +13625,14 @@ msgstr "geri al"
 msgid "unknown type icon"
 msgstr ""
 
+#, fuzzy
+msgid "unset"
+msgstr "Haziran"
+
+#, fuzzy
+msgid "updated"
+msgstr "Güncelle"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -13424,9 +13656,6 @@ msgstr ""
 msgid "view instructions"
 msgstr ""
 
-msgid "virtual"
-msgstr "sanal"
-
 msgid "viz type"
 msgstr ""
 
@@ -13462,3 +13691,6 @@ msgstr "yıl"
 
 msgid "zoom area"
 msgstr ""
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/uk/LC_MESSAGES/messages.po b/superset/translations/uk/LC_MESSAGES/messages.po
index 235335e2f872bd0b87bfffd9b934a255d8e86a53..c3677f1787a631a6b13570716062084c9cf8d9ec 100644
--- a/superset/translations/uk/LC_MESSAGES/messages.po
+++ b/superset/translations/uk/LC_MESSAGES/messages.po
@@ -18,17 +18,17 @@ msgid ""
 msgstr ""
 "Project-Id-Version:  \n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2023-09-17 12:57+0300\n"
 "Last-Translator: \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"
+"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-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -73,12 +73,12 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
-"\n"
-"            Помилка: %(text)s\n"
-"            "
 
 msgid " (excluded)"
 msgstr " (виключається)"
@@ -96,9 +96,17 @@ msgstr " інформаційна панель або "
 msgid " a new one"
 msgstr " новий"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr " вираз, який повинен дотримуватися до "
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr " Вихідний код аналізатора пісочниці Superset"
 
@@ -171,15 +179,9 @@ msgstr "Показати загалом"
 msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr "%(dialect)s не можна використовувати як джерело даних з міркувань безпеки."
 
-#, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
-msgstr ""
-"%(message)s\n"
-"Це може бути спровоковано:\n"
-"%(issues)s"
+#, fuzzy, python-format
+msgid "%(label)s file"
+msgstr "%(prefix)s %(title)s"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -193,22 +195,6 @@ msgstr "%(name)s.CSV"
 msgid "%(object)s does not exist in this database."
 msgstr "%(object)s не існує в цій базі даних."
 
-#, python-format
-msgid "%(other)s charts will appear here"
-msgstr "%(other)s -діаграми з’являться тут"
-
-#, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr "%(other)s інформаційні панелі з’являться тут"
-
-#, python-format
-msgid "%(other)s recents will appear here"
-msgstr "%(other)s останнє з’явиться тут"
-
-#, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s збережені запити з’являться тут"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr "%(prefix)s %(title)s"
@@ -224,16 +210,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr "%(rows)d рядки повернулися"
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-"%(subtitle)s\n"
-"Це може бути спровоковано:\n"
-" %(issue)s"
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -243,10 +219,6 @@ msgstr[0] "%(suggestion)s замість “%(undefinedParameter)s?\""
 msgstr[1] ""
 msgstr[2] ""
 
-#, fuzzy, python-format
-msgid "%(type)s File"
-msgstr "%(prefix)s %(title)s"
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -301,10 +273,6 @@ msgstr "%s агреговані"
 msgid "%s column(s)"
 msgstr "%s стовпці"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -411,6 +379,10 @@ msgstr ""
 "зберігатись, якщо ви очистите файли cookie або змінить браузери.\n"
 "\n"
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0 Вибрано"
 
@@ -472,6 +444,13 @@ msgstr "1 рік старту частоти"
 msgid "10 minute"
 msgstr "10 хвилин"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 відсотків"
+
+msgid "10000"
+msgstr ""
+
 msgid "104 weeks"
 msgstr "104 тижні"
 
@@ -568,6 +547,10 @@ msgstr "5 секунд"
 msgid "5 seconds"
 msgstr "5 секунд"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 відсотків"
+
 msgid "52 weeks"
 msgstr "52 тижні"
 
@@ -634,9 +617,6 @@ msgstr "> = (Більший або рівний)"
 msgid "A Big Number"
 msgstr "Велика кількість"
 
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "Виберіть імена стовпців зі списку, що випадає, які слід розібрати як дати."
-
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr "Список схем, відокремлений комами, до яких файли дозволяють завантажувати."
 
@@ -646,6 +626,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr "База даних з тим самим іменем вже існує."
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 #, fuzzy
 msgid ""
 "A dictionary with column names and their data types if you need to change"
@@ -740,14 +723,6 @@ msgstr ""
 "Набір параметрів, які стають доступними у запиті за допомогою синтаксису "
 "шаблону Jinja"
 
-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 "Під час виконання запиту стався таймаут."
 
@@ -847,27 +822,31 @@ msgstr "недавні"
 msgid "Add CSS template"
 msgstr "Додайте шаблон CSS"
 
-msgid "Add Chart"
-msgstr "Додайте діаграму"
-
-msgid "Add Column"
-msgstr "Додайте стовпчик"
-
 msgid "Add Dashboard"
 msgstr "Додайте Інформаційну панель"
 
-msgid "Add Database"
-msgstr "Додати базу даних"
+#, fuzzy
+msgid "Add Divider"
+msgstr "Роздільник"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "Додати фільтр"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "Сховати шар"
 
 msgid "Add Log"
 msgstr "Додати журнал"
 
-msgid "Add Metric"
-msgstr "Додати показник"
-
 msgid "Add Report"
 msgstr "Додайте звіт"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "Виключені ролі"
+
 msgid "Add Rule"
 msgstr "Додайте правило"
 
@@ -875,6 +854,10 @@ msgstr "Додайте правило"
 msgid "Add Tag"
 msgstr "мітка"
 
+#, fuzzy
+msgid "Add User"
+msgstr "Додайте правило"
+
 msgid "Add a Plugin"
 msgstr "Додайте плагін"
 
@@ -965,9 +948,6 @@ msgstr ""
 "                    базових даних або обмежити наявні значення, "
 "відображені у фільтрі."
 
-msgid "Add filters and dividers"
-msgstr "Додайте фільтри та роздільники"
-
 msgid "Add item"
 msgstr "Додати елемент"
 
@@ -983,6 +963,10 @@ msgstr "Додайте новий кольоровий форматер"
 msgid "Add new formatter"
 msgstr "Додати новий форматер"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "Додати та редагувати фільтри"
+
 msgid "Add required control values to preview chart"
 msgstr "Додайте необхідні контрольні значення для попереднього перегляду діаграми"
 
@@ -1004,12 +988,16 @@ msgstr "Додайте назву інформаційної панелі"
 msgid "Add to dashboard"
 msgstr "Додайте до інформаційної панелі"
 
-msgid "Add/Edit Filters"
-msgstr "Додати/редагувати фільтри"
-
 msgid "Added"
 msgstr "Доданий"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -1026,9 +1014,6 @@ msgstr "Можуть знадобитися додаткові поля"
 msgid "Additional information"
 msgstr "Додаткова інформація"
 
-msgid "Additional metadata"
-msgstr "Додаткові метадані"
-
 msgid "Additional padding for legend."
 msgstr "Додаткові прокладки для легенди."
 
@@ -1095,6 +1080,14 @@ msgstr "Розширений тип даних"
 msgid "Advanced-Analytics"
 msgstr "Розширена аналітика"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "Виберіть діаграми"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "Виберіть приладову панель"
+
 msgid "After"
 msgstr "Після"
 
@@ -1131,6 +1124,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "Агрегація"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "Агрегація"
+
 msgid "Aggregation function"
 msgstr "Функція агрегації"
 
@@ -1210,6 +1207,10 @@ msgstr "Вирівняти +/-"
 msgid "All"
 msgstr "Всі"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "Стовпці таблиці"
+
 msgid "All Text"
 msgstr "Весь текст"
 
@@ -1225,26 +1226,14 @@ msgstr "Всі фільтри"
 msgid "All panels"
 msgstr "Всі панелі"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr "На всі панелі з цим стовпцем впливатимуть цей фільтр"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "Дозволити створити таблицю як"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "Дозволити створювати таблицю як опцію в лабораторії SQL"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "Дозволити створити перегляд як"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "Дозволити створити перегляд як опцію в лабораторії SQL"
-
-msgid "Allow Csv Upload"
-msgstr "Дозволити завантаження CSV"
-
-msgid "Allow DML"
-msgstr "Дозволити DML"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr ""
@@ -1260,6 +1249,10 @@ msgstr "Дозволити перестановку стовпців"
 msgid "Allow creation of new tables based on queries"
 msgstr "Дозволити створення нових таблиць на основі запитів"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "Дозволити створення нових поглядів на основі запитів"
+
 msgid "Allow creation of new views based on queries"
 msgstr "Дозволити створення нових поглядів на основі запитів"
 
@@ -1277,32 +1270,24 @@ msgstr ""
 msgid "Allow file uploads to database"
 msgstr "Дозволити завантаження файлів у базу даних"
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr ""
-"Дозволити маніпулювання базою даних за допомогою операторів, що не "
-"вибирають, такі як оновлення, видалення, створення тощо."
-
 msgid "Allow node selections"
 msgstr "Дозволити вибір вузлів"
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr "Дозволити надсилання декількох багатокутників як події фільтра"
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "Дозволити досліджувати цю базу даних"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "Дозволити цю базу даних запитувати в лабораторії SQL"
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
-msgstr ""
-"Дозволити користувачам запускати оператори, що не вибирали (оновити, "
-"видаляти, створювати, ...) у лабораторії SQL"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "Дозволені домени (розділені кома)"
 
@@ -1352,6 +1337,10 @@ msgstr ""
 msgid "An error has occurred"
 msgstr "Сталася помилка"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "Помилка сталася під час отримання наборів даних: %s"
+
 msgid "An error occurred"
 msgstr "Виникла помилка"
 
@@ -1362,6 +1351,10 @@ msgstr "Сталася помилка збереження набору дани
 msgid "An error occurred when running alert query"
 msgstr "Помилка сталася під час обрізки журналів "
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "Під час доступу до значення сталася помилка."
+
 msgid "An error occurred while accessing the value."
 msgstr "Під час доступу до значення сталася помилка."
 
@@ -1376,6 +1369,10 @@ msgstr ""
 msgid "An error occurred while creating %ss: %s"
 msgstr "Помилка сталася під час створення %ss: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "Під час створення значення сталася помилка."
+
 msgid "An error occurred while creating the data source"
 msgstr "Під час створення джерела даних сталася помилка"
 
@@ -1519,6 +1516,10 @@ msgstr ""
 "Під час зберігання вашого запиту сталася помилка. Щоб уникнути втрати "
 "змін, збережіть свій запит за допомогою кнопки \"Зберегти запит\"."
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "Помилка сталася під час отримання %ss: %s"
+
 msgid "An error occurred while updating the value."
 msgstr "Під час оновлення значення сталася помилка."
 
@@ -1706,12 +1707,6 @@ msgstr "Застосувати фільтри"
 msgid "Apply metrics on"
 msgstr "Застосувати показники на"
 
-msgid "Apply to all panels"
-msgstr "Застосовуйте до всіх панелей"
-
-msgid "Apply to specific panels"
-msgstr "Застосовуйте до певних панелей"
-
 msgid "April"
 msgstr "Квітень"
 
@@ -1753,6 +1748,10 @@ msgstr "Ви впевнені, що хочете видалити вибрані
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "Ви впевнені, що хочете видалити вибрані запити?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "Ви впевнені, що хочете видалити вибрані правила?"
+
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "Ви впевнені, що хочете видалити вибрані правила?"
 
@@ -1762,6 +1761,10 @@ msgstr "Ви впевнені, що хочете видалити вибрані
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "Ви впевнені, що хочете видалити вибрані шаблони?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "Ви впевнені, що хочете видалити вибрані запити?"
+
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "Ви впевнені, що хочете перезаписати цей набір даних?"
 
@@ -1803,15 +1806,13 @@ msgstr "Призначити набір параметрів як"
 msgid "Assist"
 msgstr "основа"
 
-msgid "Associated Charts"
-msgstr "Асоційовані діаграми"
-
-msgid "Async Execution"
-msgstr "Виконання асинхронізації"
-
 msgid "Asynchronous query execution"
 msgstr "Асинхронне виконання запитів"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "Розподіл"
+
 msgid "August"
 msgstr "Серпень"
 
@@ -1836,12 +1837,26 @@ msgstr "Auto -Complete Query Prediac"
 msgid "Automatic Color"
 msgstr "Автоматичний колір"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "Налаштуйте стовпці"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "Налаштуйте стовпці"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "Доступні режими сортування:"
 
 msgid "Average"
 msgstr "Середній"
 
+msgid "Average (Mean)"
+msgstr ""
+
 msgid "Average value"
 msgstr "Середнє значення"
 
@@ -1879,6 +1894,10 @@ msgstr "Назад до всіх"
 msgid "Backend"
 msgstr "Бекен"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "фон"
+
 msgid "Backward values"
 msgstr "Назад значення"
 
@@ -1894,9 +1913,6 @@ msgstr "Бар"
 msgid "Bar Chart"
 msgstr "Гістограма"
 
-msgid "Bar Chart (legacy)"
-msgstr "Діаграма (спадщина)"
-
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr "Барські діаграми використовуються для показу показників як серії барів."
 
@@ -1909,10 +1925,25 @@ msgstr "Орієнтація"
 msgid "Base"
 msgstr "Базовий"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "Порт бази даних"
+
+#, fuzzy
+msgid "Base height"
+msgstr "Висота діаграми"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "Ширина лінії"
+
 msgid "Based on a metric"
 msgstr "На основі метрики"
 
@@ -1932,9 +1963,6 @@ msgstr "Основна інформація"
 msgid "Batch editing %d filters:"
 msgstr "Редагування партії %d фільтрів:"
 
-msgid "Battery level over time"
-msgstr "Рівень акумулятора з часом"
-
 msgid "Be careful."
 msgstr "Будь обережний."
 
@@ -1957,6 +1985,14 @@ msgstr "Велика кількість з Trendline"
 msgid "Bins"
 msgstr "у"
 
+#, fuzzy
+msgid "Border color"
+msgstr "Стовпці часових рядів"
+
+#, fuzzy
+msgid "Border width"
+msgstr "Ширина краю"
+
 msgid "Bottom"
 msgstr "Дно"
 
@@ -2085,9 +2121,6 @@ msgstr "Куляна діаграма"
 msgid "Business"
 msgstr "Бізнес"
 
-msgid "Business Data Type"
-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"
@@ -2159,8 +2192,9 @@ msgstr "Шаблони CSS"
 msgid "CSS templates could not be deleted."
 msgstr "Шаблон CSS не можна було видалити."
 
-msgid "CSV Upload"
-msgstr "Завантаження CSV"
+#, fuzzy
+msgid "CSV upload"
+msgstr "Завантажувати"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "Схема CTAS & CVAS"
@@ -2175,8 +2209,9 @@ msgstr ""
 "ваш запит має вибір як останнє твердження. Потім спробуйте знову "
 "запустити свій запит."
 
-msgid "CTAS Schema"
-msgstr "Схема CTAS"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "Звичайний"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2193,9 +2228,6 @@ msgstr "CVAS (створити перегляд як SELECT) Запит має 
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "CVAS (Створіть перегляд як SELECT) Запит не є оператором SELECT."
 
-msgid "Cache Timeout"
-msgstr "Тайм -аут кешу"
-
 msgid "Cache Timeout (seconds)"
 msgstr "Час кешу (секунди)"
 
@@ -2240,9 +2272,6 @@ msgstr "Не можна переміщувати вкладку верхньог
 msgid "Can select multiple values"
 msgstr "Може вибрати кілька значень"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "Не може бути перекриття між серіями та розбиттями"
-
 msgid "Cancel"
 msgstr "Скасувати"
 
@@ -2255,6 +2284,10 @@ msgstr "Не вдається отримати доступ до запиту"
 msgid "Cannot delete a database that has datasets attached"
 msgstr "Не вдається видалити базу даних, в якій додаються набори даних"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr "Не може бути декількох облікових даних для тунелю SSH"
 
@@ -2265,6 +2298,10 @@ msgstr "Не вдається завантажувати фільтр"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "Не вдається розбирати часовий рядок [%(human_readable)s]"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "Діаграма розділів"
+
 #, fuzzy
 msgid "Catalog"
 msgstr "мітка"
@@ -2342,13 +2379,14 @@ msgstr "Змінити порядок стовпців."
 msgid "Change order of rows."
 msgstr "Змінити порядок рядків."
 
-msgid "Changed By"
-msgstr "Змінений"
-
 #, fuzzy
 msgid "Changed by"
 msgstr "Змінений"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "зміна"
+
 msgid "Changes saved."
 msgstr "Збережені зміни."
 
@@ -2401,9 +2439,6 @@ msgstr "Графік"
 msgid "Chart %(id)s not found"
 msgstr "Діаграма %(id)s не знайдено"
 
-msgid "Chart Cache Timeout"
-msgstr "ЧАС КАХ ЧАСУВАННЯ"
-
 #, python-format
 msgid "Chart Data: %s"
 msgstr "Дані діаграми: %s"
@@ -2502,6 +2537,10 @@ msgstr "Параметри діаграми недійсні."
 msgid "Chart properties updated"
 msgstr "Властивості діаграми оновлені"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "діаграми"
+
 msgid "Chart title"
 msgstr "Назва діаграми"
 
@@ -2551,6 +2590,10 @@ msgstr "Вибір [радіуса точки] повинен бути прис
 msgid "Choose File"
 msgstr "Виберіть файл"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "Виберіть діаграму або інформаційну панель, а не обидва"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "Виберіть діаграму або інформаційну панель, а не обидва"
 
@@ -2573,9 +2616,6 @@ msgstr "Виберіть формат числа"
 msgid "Choose a source"
 msgstr "Виберіть джерело"
 
-msgid "Choose a source and a target"
-msgstr "Виберіть джерело та ціль"
-
 msgid "Choose a target"
 msgstr "Виберіть ціль"
 
@@ -2662,9 +2702,6 @@ msgstr "Форма радіолокаційного кола"
 msgid "Circular"
 msgstr "Круговий"
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2688,7 +2725,10 @@ msgstr "Очистіть усі дані"
 msgid "Clear form"
 msgstr "Чітка форма"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr ""
 "Натисніть кнопку \"+додавання/редагування фільтрів\", щоб створити нові "
 "фільтри для інформаційної панелі"
@@ -2723,6 +2763,10 @@ msgstr ""
 msgid "Click to add a contour"
 msgstr ""
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "Клацніть, щоб редагувати мітку"
+
 msgid "Click to cancel sorting"
 msgstr "Клацніть, щоб скасувати сортування"
 
@@ -2843,12 +2887,13 @@ msgstr "Стовпчик “%(column)s” не є числовим або не 
 msgid "Column Configuration"
 msgstr "Конфігурація стовпців"
 
-msgid "Column Data Types"
-msgstr "Типи даних стовпців"
-
 msgid "Column Formatting"
 msgstr "Форматування стовпців"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "Налаштування багатокутників"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2866,9 +2911,6 @@ msgstr "Стовпчик, що містить дані довготи"
 msgid "Column data types"
 msgstr "Типи даних стовпців"
 
-msgid "Column datatype"
-msgstr "Тип даних стовпців"
-
 msgid "Column header tooltip"
 msgstr "Підказка заголовка стовпців"
 
@@ -2898,17 +2940,19 @@ msgstr ""
 "порожній, якщо немає стовпця індексу."
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
+msgstr "Тип даних стовпців"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "Стовпчик"
 
 msgid "Columns"
 msgstr "Колони"
 
-msgid "Columns To Be Parsed as Dates"
-msgstr "Стовпці, які слід проаналізувати як дати"
-
-msgid "Columns To Read"
-msgstr "Стовпці для читання"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s стовпці"
 
 #, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2921,6 +2965,10 @@ msgstr "Стовпці відсутні в даних datasource: %(invalid_colu
 msgid "Columns subtotal position"
 msgstr "Стовпці субтотального положення"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "Стовпці, які слід проаналізувати як дати"
+
 msgid "Columns to calculate distribution across."
 msgstr "Стовпці для обчислення розподілу поперек."
 
@@ -2936,6 +2984,10 @@ msgstr "Стовпці до групи на стовпцях"
 msgid "Columns to group by on the rows"
 msgstr "Стовпці до групи на рядках"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "Стовпці для читання"
+
 msgid "Combine metrics"
 msgstr "Поєднати показники"
 
@@ -2981,22 +3033,6 @@ msgstr ""
 "група відображається на ряд, і змінюється з часом, візуалізується довжини"
 " планки та колір."
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr ""
-"Порівняйте тривалість часу, коли різні види діяльності займаються "
-"спільним переглядом часової шкали."
-
 msgid "Comparison"
 msgstr "Порівняння"
 
@@ -3056,6 +3092,9 @@ msgstr "Налаштуйте фільтрувальні сфери"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "Налаштуйте основи вашого шару анотації."
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr ""
 "Налаштуйте цю інформаційну панель, щоб вставити її у зовнішній веб "
@@ -3064,12 +3103,19 @@ msgstr ""
 msgid "Configure your how you overlay is displayed here."
 msgstr "Налаштуйте, як тут відображається накладка."
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "Показати пароль."
+
 msgid "Confirm overwrite"
 msgstr "Підтвердити перезапис"
 
 msgid "Confirm save"
 msgstr "Підтвердьте збереження"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "З'єднувати"
 
@@ -3101,9 +3147,6 @@ msgstr "Не вдалося підключити, будь ласка, пере
 msgid "Connection failed, please check your connection settings."
 msgstr "Не вдалося підключити, будь ласка, перевірте налаштування з'єднання"
 
-msgid "Connection looks good!"
-msgstr "З'єднання виглядає добре!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "Формат дати"
@@ -3143,21 +3186,21 @@ msgstr "Скопіюється в буфер обміну!"
 msgid "Copy"
 msgstr "Копіювати"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "Скопіюйте оператор SELECT у буфер обміну"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "Копіювати та вставити облікові дані JSON"
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "Скопіюйте та вставте весь обліковий запис служби .json файл тут"
-
 msgid "Copy link"
 msgstr "Копіювати посилання"
 
-msgid "Copy message"
-msgstr "Скопіюйте повідомлення"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "Копія %s"
@@ -3174,6 +3217,9 @@ msgstr "Скопіюйте URL -адресу запитів"
 msgid "Copy query link to your clipboard"
 msgstr "Скопіюйте посилання на запит у свій буфер обміну"
 
+msgid "Copy the current data"
+msgstr ""
+
 #, fuzzy
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr "Скопіюйте назву бази даних, до якої ви намагаєтесь підключитися."
@@ -3190,6 +3236,10 @@ msgstr "Копіювати в буфер обміну"
 msgid "Copy to clipboard"
 msgstr "Копіювати в буфер обміну"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "Внутрішній радіус"
+
 msgid "Correlation"
 msgstr "Співвідношення"
 
@@ -3219,6 +3269,9 @@ msgstr "Не вдалося завантажити драйвер бази да
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr "Не вдалося вирішити ім'я хоста: “%(host)s\"."
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 msgid "Count"
 msgstr "Рахувати"
 
@@ -3312,6 +3365,9 @@ msgstr "Створення джерела даних та створення н
 msgid "Creator"
 msgstr "Творець"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 msgid "Crimson"
 msgstr "Малиновий"
 
@@ -3402,6 +3458,9 @@ msgstr "Спеціальні поля SQL не можуть містити пі
 msgid "Custom color palettes"
 msgstr "Автозаповнення"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "Звичайний"
@@ -3436,9 +3495,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr "Виявлена ​​циклічна залежність"
 
-msgid "D3 Format"
-msgstr "Формат D3"
-
 msgid "D3 format"
 msgstr "Формат D3"
 
@@ -3499,8 +3555,23 @@ msgstr "Дашборд [%s] був щойно створений, а діагр
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr "Дашборд [{}] був щойно створений, і діаграма [{}] була додана до нього"
 
-msgid "Dashboard could not be deleted."
-msgstr "Не вдалося видалити інформаційну панель."
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "Не вдалося оновити інформаційну панель."
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "Не вдалося оновити інформаційну панель."
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "Не вдалося оновити інформаційну панель."
+
+msgid "Dashboard could not be deleted."
+msgstr "Не вдалося видалити інформаційну панель."
 
 msgid "Dashboard could not be updated."
 msgstr "Не вдалося оновити інформаційну панель."
@@ -3511,6 +3582,10 @@ msgstr "Дашборд не існує"
 msgid "Dashboard imported"
 msgstr "Дашборд імпортовано"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "Не вдалося оновити інформаційну панель."
+
 msgid "Dashboard parameters are invalid."
 msgstr "Параметри інформаційної панелі недійсні."
 
@@ -3558,10 +3633,6 @@ msgstr "Бридкий"
 msgid "Data"
 msgstr "Дані"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "Імпортний набір даних"
-
 msgid "Data Table"
 msgstr "Таблиця даних"
 
@@ -3591,6 +3662,10 @@ msgstr ""
 msgid "Data for %s"
 msgstr "Додаткові дані для JS"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "Імпортний набір даних"
+
 msgid "Data preview"
 msgstr "Попередній перегляд даних"
 
@@ -3751,13 +3826,6 @@ msgstr ""
 "Набори даних можна створити з таблиць баз даних або запитів SQL. Виберіть"
 " таблицю бази даних зліва або "
 
-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 ""
-
 #, fuzzy
 msgid "Datasets could not be deleted."
 msgstr "Набір даних не можна було видалити."
@@ -3792,9 +3860,6 @@ msgstr "Рядок формату дати"
 msgid "Date/Time"
 msgstr "Дата, час"
 
-msgid "Datetime Format"
-msgstr "Формат DateTime"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3824,13 +3889,12 @@ msgstr "Деактивувати"
 msgid "December"
 msgstr "Грудень"
 
-msgid "Decides which column to sort the base axis by."
-msgstr "Вирішує, який стовпець для сортування базової осі за."
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "Вирішує, яка міра для сортування базової осі за."
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "Десятковий характер"
 
 msgid "Deck.gl - 3D Grid"
@@ -3875,9 +3939,6 @@ msgstr "створити"
 msgid "Default Catalog"
 msgstr "Значення за замовчуванням"
 
-msgid "Default Endpoint"
-msgstr "Кінцева точка за замовчуванням"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "Виберіть схему"
@@ -3885,10 +3946,11 @@ msgstr "Виберіть схему"
 msgid "Default URL"
 msgstr "URL -адреса за замовчуванням"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
 msgstr ""
-"URL -адреса за замовчуванням для перенаправлення на доступ до доступу зі "
-"сторінки списку даних"
 
 msgid "Default Value"
 msgstr "Значення за замовчуванням"
@@ -3910,9 +3972,6 @@ msgstr ""
 "все ще може бути більша, ніж це, якщо іншим стовпцям не потрібно багато "
 "місця"
 
-msgid "Default value is required"
-msgstr "Значення за замовчуванням необхідне"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr ""
 "Значення за замовчуванням повинно бути встановлено, коли перевіряється "
@@ -3971,9 +4030,6 @@ msgstr ""
 "Визначає функцію котячого вікна для застосування, працює разом із "
 "текстовим полем [періоди]"
 
-msgid "Defines how each series is broken down"
-msgstr "Визначає, як розбивається кожна серія"
-
 msgid "Defines the grid size in pixels"
 msgstr "Визначає розмір сітки в пікселях"
 
@@ -4034,9 +4090,17 @@ msgstr "Видалити запит?"
 msgid "Delete Report?"
 msgstr "Видалити звіт?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "видаляти"
+
 msgid "Delete Template?"
 msgstr "Видалити шаблон?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "Видалити запит?"
+
 msgid "Delete all Really?"
 msgstr "Видалити все справді?"
 
@@ -4055,12 +4119,20 @@ msgstr "Видалити звіт електронної пошти"
 msgid "Delete query"
 msgstr "Видалити запит"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "видаляти"
+
 msgid "Delete template"
 msgstr "Видалити шаблон"
 
 msgid "Delete this container and save to remove this message."
 msgstr "Видаліть цей контейнер і збережіть, щоб видалити це повідомлення."
 
+#, fuzzy
+msgid "Delete user"
+msgstr "Видалити запит"
+
 msgid "Deleted"
 msgstr "Видалений"
 
@@ -4131,13 +4203,30 @@ msgstr[2] ""
 msgid "Deleted %s"
 msgstr "Видалено %s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "Видалено: %s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "Видалено: %s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "Видалено: %s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "Видалено: %s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "Видалено: %s"
 
+#, fuzzy
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr ""
 "Видалення вкладки видалить весь вміст всередині неї. Ви все ще можете "
 "змінити цю дію за допомогою"
@@ -4151,18 +4240,12 @@ msgstr "Розмежування"
 msgid "Delivery method"
 msgstr "Метод доставки"
 
-msgid "Demographics"
-msgstr "Демографія"
-
 msgid "Density"
 msgstr "Щільність"
 
 msgid "Dependent on"
 msgstr "Залежить від"
 
-msgid "Deprecated"
-msgstr "Застарілий"
-
 msgid "Description"
 msgstr "Опис"
 
@@ -4260,10 +4343,6 @@ msgstr "Для цього набору даних не було повернут
 msgid "Discard"
 msgstr "Відкинути"
 
-#, fuzzy
-msgid "Display"
-msgstr "Назва відображення"
-
 msgid "Display Name"
 msgstr "Назва відображення"
 
@@ -4271,6 +4350,10 @@ msgstr "Назва відображення"
 msgid "Display all"
 msgstr "Назва відображення"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "Загальний рівень стовпців відображення"
+
 #, fuzzy
 msgid "Display column level subtotal"
 msgstr "Загальний рівень стовпців відображення"
@@ -4278,6 +4361,10 @@ msgstr "Загальний рівень стовпців відображенн
 msgid "Display column level total"
 msgstr "Загальний рівень стовпців відображення"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "Загальний рівень стовпців відображення"
+
 msgid "Display configuration"
 msgstr "Конфігурація відображення"
 
@@ -4301,8 +4388,9 @@ msgstr "Відображення рівня рядка загалом"
 msgid "Display row level total"
 msgstr "Відображення рівня рядка загалом"
 
-msgid "Display settings"
-msgstr "Налаштування дисплею"
+#, fuzzy
+msgid "Display type icon"
+msgstr "значок булевого типу"
 
 msgid ""
 "Displays connections between entities in a graph structure. Useful for "
@@ -4321,9 +4409,6 @@ msgstr "Розповсюджувати"
 msgid "Distribution"
 msgstr "Розподіл"
 
-msgid "Distribution - Bar Chart"
-msgstr "Розповсюдження - штрих -діаграма"
-
 msgid "Divider"
 msgstr "Роздільник"
 
@@ -4352,9 +4437,18 @@ msgstr "Завантажте як зображення"
 msgid "Download as image"
 msgstr "Завантажте як зображення"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "Завантажте в CSV"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "Розтягувати"
 
@@ -4457,6 +4551,14 @@ msgstr ""
 msgid "Duplicate dataset"
 msgstr "Дублікат набору даних"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "Дублікат"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "Дублікат назви стовпців: %(columns)s"
+
 msgid "Duplicate tab"
 msgstr "Вкладка дублікатів"
 
@@ -4473,24 +4575,6 @@ 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 вказує на те, що кеш ніколи не закінчується. Зверніть "
-"увагу на це за замовчуванням до глобального тайм -ауту, якщо він не "
-"визначений."
-
-msgid ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-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 "
@@ -4500,15 +4584,6 @@ msgstr ""
 "Встановіть -1, щоб обійти кеш. Зверніть увагу на за замовчуванням до часу"
 " очікування набору даних, якщо він не визначений."
 
-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 ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4530,6 +4605,10 @@ msgstr "Тривалість в МС (1,40008 => 1 мс 400 мк 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "Тривалість у MS (100,40008 => 100 мс 400 мкс 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "Тривалість у MS (66000 => 1 м 6с)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "Тривалість у MS (66000 => 1 м 6с)"
 
@@ -4551,10 +4630,6 @@ msgstr "Кінець (ексклюзивний)"
 msgid "ERROR"
 msgstr "Помилка"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "Помилка: %s"
-
 msgid "Edge length"
 msgstr "Довжина краю"
 
@@ -4579,46 +4654,39 @@ msgstr "Редагувати CSS"
 msgid "Edit CSS template properties"
 msgstr "Редагувати властивості шаблону CSS"
 
-msgid "Edit Chart"
-msgstr "Редагувати діаграму"
-
 msgid "Edit Chart Properties"
 msgstr "Редагувати властивості діаграми"
 
-msgid "Edit Column"
-msgstr "Редагувати стовпчик"
-
 msgid "Edit Dashboard"
 msgstr "Редагувати Дашборд"
 
-msgid "Edit Database"
-msgstr "Редагувати базу даних"
-
 msgid "Edit Dataset "
 msgstr "Редагувати набір даних "
 
 msgid "Edit Log"
 msgstr "Редагувати журнал"
 
-msgid "Edit Metric"
-msgstr "Метрика редагування"
-
 msgid "Edit Plugin"
 msgstr "Редагувати плагін"
 
 msgid "Edit Report"
 msgstr "Редагувати звіт"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "режим редагування"
+
 msgid "Edit Rule"
 msgstr "Правило редагування"
 
-msgid "Edit Table"
-msgstr "Редагувати таблицю"
-
 #, fuzzy
 msgid "Edit Tag"
 msgstr "Редагувати журнал"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "Редагувати запит"
+
 msgid "Edit annotation"
 msgstr "Редагувати анотацію"
 
@@ -4655,6 +4723,10 @@ msgstr "Редагувати властивості"
 msgid "Edit query"
 msgstr "Редагувати запит"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "режим редагування"
+
 msgid "Edit template"
 msgstr "Редагувати шаблон"
 
@@ -4667,6 +4739,10 @@ msgstr "Відредагуйте інформаційну панель"
 msgid "Edit time range"
 msgstr "Редагувати часовий діапазон"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "Редагувати запит"
+
 msgid "Edited"
 msgstr "Редаговані"
 
@@ -4694,6 +4770,14 @@ msgstr "Або ім'я користувача, або пароль неправ
 msgid "Elevation"
 msgstr "Піднесення"
 
+#, fuzzy
+msgid "Email"
+msgstr "Підсумки"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "Значення потрібно"
+
 msgid "Email reports active"
 msgstr "Звіти про електронну пошту активні"
 
@@ -4709,6 +4793,10 @@ msgstr "Вбудувати код"
 msgid "Embed dashboard"
 msgstr "Вбудувати інформаційну панель"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "Не вдалося видалити інформаційну панель."
+
 msgid "Embedding deactivated."
 msgstr "Вбудовування деактивовано."
 
@@ -4718,9 +4806,6 @@ msgstr "Виносити подій фільтра"
 msgid "Emphasis"
 msgstr "Наголос"
 
-msgid "Employment and education"
-msgstr "Зайнятість та освіта"
-
 msgid "Empty circle"
 msgstr "Порожнє коло"
 
@@ -4744,9 +4829,6 @@ msgstr ""
 "Увімкніть \"Дозволити завантаження файлів у базу даних\" в налаштуваннях "
 "будь -якої бази даних"
 
-msgid "Enable Filter Select"
-msgstr "Увімкнути фільтр Виберіть"
-
 msgid "Enable cross-filtering"
 msgstr "Увімкнути перехресне фільтрування"
 
@@ -4850,12 +4932,26 @@ msgstr "Назва звіту"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "Введіть необхідні дані %(dbModelName)s"
 
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "Ім'я сповіщення"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "Ім'я сповіщення"
+
+msgid "Enter the user's username"
+msgstr ""
+
 msgid "Entity"
 msgstr "Об'єкт"
 
-msgid "Entity ID"
-msgstr "Ідентифікатор сутності"
-
 msgid "Equal Date Sizes"
 msgstr "Рівні розміри дати"
 
@@ -4869,6 +4965,14 @@ msgstr "Помилка"
 msgid "Error Fetching Tagged Objects"
 msgstr "Були помилкові об'єкти, пов’язані з набором даних"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "Помилка під час отримання даних: %s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "Сталася помилка збереження набору даних"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr "Помилка в виразі jinja у HAVING фразі: %(msg)s"
@@ -4891,6 +4995,10 @@ msgstr "Помилка завантаження діаграм даних. Фі
 msgid "Error message"
 msgstr "Повідомлення про помилку"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "помилка темна"
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "Сталася помилка збереження набору даних"
@@ -4907,6 +5015,22 @@ msgstr "Завантажте файл Excel"
 msgid "Error saving dataset"
 msgstr "Сталася помилка збереження набору даних"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "Сталася помилка збереження набору даних"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "Помилка під час отримання діаграм"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "Помилка під час отримання діаграм"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "Помилка під час отримання діаграм"
+
 msgid "Error while fetching charts"
 msgstr "Помилка під час отримання діаграм"
 
@@ -4914,10 +5038,30 @@ msgstr "Помилка під час отримання діаграм"
 msgid "Error while fetching data: %s"
 msgstr "Помилка під час отримання даних: %s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "Помилка під час отримання діаграм"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "Помилка під час отримання діаграм"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "Помилка під час отримання діаграм"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "Помилка під час надання віртуального запиту набору даних: %(msg)s"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "Помилка під час отримання діаграм"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "Помилка під час отримання діаграм"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "Помилка: %(error)s"
@@ -4941,15 +5085,6 @@ msgstr "Оцініть вартість перед проведенням зап
 msgid "Event"
 msgstr "Подія"
 
-msgid "Event Flow"
-msgstr "Потік подій"
-
-msgid "Event Names"
-msgstr "Назви подій"
-
-msgid "Event definition"
-msgstr "Визначення події"
-
 msgid "Event flow"
 msgstr "Потік подій"
 
@@ -4971,13 +5106,13 @@ msgstr "Приклад"
 msgid "Examples"
 msgstr "Приклади"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "Завантаження CSV"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "Завантаження CSV"
+
 msgid "Exclude selected values"
 msgstr "Виключіть вибрані значення"
 
@@ -5070,12 +5205,6 @@ msgstr "Експорт до Ямла"
 msgid "Export to Pivoted .CSV"
 msgstr "Експорт до повороту .csv"
 
-msgid "Export to YAML"
-msgstr "Експорт до Ямла"
-
-msgid "Export to YAML?"
-msgstr "Експорт до Ямла?"
-
 msgid "Export to full .CSV"
 msgstr "Експорт до повного .csv"
 
@@ -5095,11 +5224,9 @@ msgstr "Викрити базу даних у лабораторії SQL"
 msgid "Expose in SQL Lab"
 msgstr "Викриття в лабораторії SQL"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "Викрити цей БД у лабораторії SQL"
-
-msgid "Expression"
-msgstr "Вираз"
+#, fuzzy
+msgid "Extent"
+msgstr "недавній"
 
 msgid "Extra"
 msgstr "Додатковий"
@@ -5124,10 +5251,6 @@ msgstr ""
 "платформи даних \",\" Деталі \":\" Ця таблиця є джерелом істини \". }, "
 "\"попередження_markdown\": \"Це попередження\". } `."
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "Додаткове поле не може розшифровувати JSON. %(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "Додаткові параметри для використання в шаблонних запитах Jinja"
 
@@ -5147,6 +5270,10 @@ msgstr "Екструдований"
 msgid "FEB"
 msgstr "Лютий"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "Редагувати набір даних"
+
 msgid "FRI"
 msgstr "Пт"
 
@@ -5156,16 +5283,15 @@ msgstr "Фактор"
 msgid "Factor to multiply the metric by"
 msgstr "Коефіцієнт для множення метрики на"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "Провалився"
 
 msgid "Failed at retrieving results"
 msgstr "Не вдалося отримати результати"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "Не вдалося зупинити запит. %s"
-
 msgid "Failed to create report"
 msgstr "Не вдалося створити звіт"
 
@@ -5194,6 +5320,10 @@ msgstr "Не вдалося зберегти перехресне фільтру
 msgid "Failed to start remote query on a worker."
 msgstr "Не вдалося запустити віддалений запит на працівника."
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "Не вдалося зупинити запит. %s"
+
 #, fuzzy
 msgid "Failed to tag items"
 msgstr "Виберіть усі елементи"
@@ -5218,9 +5348,6 @@ msgstr ""
 msgid "February"
 msgstr "Лютий"
 
-msgid "Fetch Values Predicate"
-msgstr "Значення отримання предикатів"
-
 msgid "Fetch data preview"
 msgstr "Попередній перегляд даних"
 
@@ -5245,16 +5372,13 @@ msgstr "Потрібне поле"
 msgid "File"
 msgstr "Файл"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "Налаштування фільтра"
-
 #, fuzzy
 msgid "File extension is not allowed."
 msgstr "URI даних заборонено."
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "Налаштування фільтра"
 
 #, fuzzy
 msgid "File upload"
@@ -5322,9 +5446,6 @@ msgstr "Список значень фільтра не може бути пор
 msgid "Filter your charts"
 msgstr "Відфільтруйте свої діаграми"
 
-msgid "Filterable"
-msgstr "Фільтруваний"
-
 msgid "Filters"
 msgstr "Фільтри"
 
@@ -5337,6 +5458,16 @@ msgstr "Фільтри за метриками"
 msgid "Filters for comparison must have a value"
 msgstr ""
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "`row_limit` повинен бути більшим або рівним 0"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "Фільтри поза обсягом (%d)"
@@ -5370,6 +5501,14 @@ msgstr "Закінчити"
 msgid "First"
 msgstr "Перший"
 
+#, fuzzy
+msgid "First name"
+msgstr "Назва діаграми"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "Ім'я потрібно"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5460,6 +5599,10 @@ msgstr "Формат дат сили"
 msgid "Force refresh"
 msgstr "Оновити"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "Список схеми оновлення сили"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "Список таблиць оновлення сили оновлення"
@@ -5579,6 +5722,10 @@ msgstr "Налаштування Geojson"
 msgid "Geohash"
 msgstr "Геохаш"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "Порожній стовпчик"
+
 msgid "Get the last date by the date unit."
 msgstr "Отримайте останню дату до одиниці дати."
 
@@ -5638,9 +5785,6 @@ msgstr "Груповий ключ"
 msgid "Group by"
 msgstr "Група"
 
-msgid "Groupable"
-msgstr "Груповий"
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5657,23 +5801,12 @@ msgstr "Шаблон ручки"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr ""
-"Межі жорсткого значення застосовуються для кольорового кодування. Є "
-"актуальним і застосовується лише тоді, коли нормалізація застосовується "
-"проти всієї теплової карти."
-
 msgid "Has created by"
 msgstr "Створив"
 
 msgid "Header"
 msgstr "Заголовок"
 
-msgid "Header Row"
-msgstr "Заголовок"
-
 #, fuzzy
 msgid "Header row"
 msgstr "Заголовок"
@@ -5681,19 +5814,16 @@ msgstr "Заголовок"
 msgid "Heatmap"
 msgstr "Теплова карта"
 
-#, fuzzy
-msgid "Heatmap (legacy)"
-msgstr "Лінійна діаграма (спадщина)"
-
-msgid "Heatmap Options"
-msgstr "Варіанти теплової карти"
-
 msgid "Height"
 msgstr "Висота"
 
 msgid "Height of the sparkline"
 msgstr "Висота іскрової лінії"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "Стовпчик часу"
+
 msgid "Hide Line"
 msgstr "Приховувати лінію"
 
@@ -5718,10 +5848,6 @@ msgstr "Ієрархія"
 msgid "Histogram"
 msgstr "Гістограма"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "Лінійна діаграма (спадщина)"
-
 msgid "Home"
 msgstr "Домашня сторінка"
 
@@ -5802,33 +5928,24 @@ msgstr ""
 "запити в якості облікового запису послуг, але представлять себе в даний "
 "час в даний час користувачеві через властивість hive.server2.proxy.user."
 
-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.<br/>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."
-
-msgid "If Table Already Exists"
-msgstr "Якщо таблиця вже існує"
-
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr ""
 "Якщо вказано метрику, сортування буде здійснено на основі метричного "
 "значення"
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr "Якщо вибрано, встановіть схеми, дозволені для завантаження CSV додатково."
+#, fuzzy
+msgid "If table already exists"
+msgstr "Етикетка вже існує"
 
 #, fuzzy
 msgid "Ignore cache when generating report"
@@ -5849,9 +5966,6 @@ msgstr "Завантажити зображення не вдалося, оно
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr "Видання себе в системі в системі (Presto, Trino, Drill, Hive та Gsheets)"
 
-msgid "Impersonate the logged on user"
-msgstr "Видати себе за реєстрацію користувача"
-
 msgid "Import"
 msgstr "Імпорт"
 
@@ -5862,9 +5976,6 @@ msgstr "Імпорт %s"
 msgid "Import Dashboard(s)"
 msgstr "Імпортувати Дашборд(и)"
 
-msgid "Import a table definition"
-msgstr "Імпортувати визначення таблиці"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "Діаграма імпорту не вдалася з невідомих причин"
 
@@ -5895,17 +6006,14 @@ msgstr "Імпортувати запити"
 msgid "Import saved query failed for an unknown reason."
 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 ""
-"Важливо! Виберіть це, якщо таблиця ще не відсортована за ідентифікатором "
-"сутності, інакше немає гарантії, що всі події для кожної сутності "
-"повертаються."
-
 msgid "In"
 msgstr "У"
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "Включіть серію"
 
@@ -5929,17 +6037,18 @@ msgstr "створити"
 msgid "Index"
 msgstr "Індекс"
 
-msgid "Index Column"
-msgstr "Стовпчик індексу"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "Етикетки діапазону"
+msgid "Index column"
+msgstr "Стовпчик рядків"
 
 #, fuzzy
 msgid "Index label"
 msgstr "Етикетки діапазону"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "Переглянути ключі та індекси (%s)"
+
 msgid "Info"
 msgstr "Інформація"
 
@@ -5958,6 +6067,13 @@ msgstr ""
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr "Поле введення підтримує власне обертання. напр. 30 на 30 °"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "Сховати шар"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "Інтенсивність"
 
@@ -5988,9 +6104,6 @@ msgstr "Стовпчик запуску інтервалу"
 msgid "Intervals"
 msgstr "Інтервали"
 
-msgid "Intesity"
-msgstr "Нечіткість"
-
 msgid ""
 "Invalid Connection String: Expecting String of the form "
 "'ocient://user:pass@host:port/database'."
@@ -6039,6 +6152,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr "Недійсна дата/формат часової позначки"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "Недійсний тип функції фільтра: %(op)s"
@@ -6102,6 +6218,10 @@ msgstr "Зворотний вибір"
 msgid "Invert current page"
 msgstr "Інвертуйте поточну сторінку"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "Звіти про електронну пошту активні"
+
 msgid "Is certified"
 msgstr "Є сертифікованим"
 
@@ -6283,12 +6403,6 @@ msgstr "Великий"
 msgid "Last"
 msgstr "Останній"
 
-msgid "Last Changed"
-msgstr "Востаннє змінився"
-
-msgid "Last Modified"
-msgstr "Останнє змінено"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "Останній оновлений %s"
@@ -6297,6 +6411,10 @@ msgstr "Останній оновлений %s"
 msgid "Last Updated %s by %s"
 msgstr "Останній оновлений %s на %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "Цільове значення"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr "Остання доступна вартість, що спостерігається на %s"
@@ -6305,6 +6423,10 @@ msgstr "Остання доступна вартість, що спостері
 msgid "Last day"
 msgstr "останній день"
 
+#, fuzzy
+msgid "Last login"
+msgstr "минулого місяця"
+
 msgid "Last modified"
 msgstr "Останнє змінено"
 
@@ -6312,6 +6434,14 @@ msgstr "Останнє змінено"
 msgid "Last month"
 msgstr "минулого місяця"
 
+#, fuzzy
+msgid "Last name"
+msgstr "назва набору даних"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "Ім'я потрібно"
+
 #, fuzzy
 msgid "Last quarter"
 msgstr "останній чверть"
@@ -6327,15 +6457,42 @@ msgstr "минулого тижня"
 msgid "Last year"
 msgstr "минулого року"
 
+#, fuzzy
+msgid "Lat"
+msgstr "рівномірний"
+
 msgid "Latitude"
 msgstr "Широта"
 
 msgid "Latitude of default viewport"
 msgstr "Широта перегляду за замовчуванням"
 
+#, fuzzy
+msgid "Layer"
+msgstr "рік"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "Ім'я сповіщення"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "Конфігурація шару"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "Назва діаграми"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "Тип фільтру"
+
+#, fuzzy
+msgid "Layers"
+msgstr "попередження"
+
 msgid "Layout"
 msgstr "Макет"
 
@@ -6348,13 +6505,6 @@ msgstr "Тип макета графа"
 msgid "Layout type of tree"
 msgstr "Тип макета дерева"
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr ""
-"Листові вузли, що представляють менше, ніж ця кількість подій, спочатку "
-"будуть приховані у візуалізації"
-
 msgid "Least recently modified"
 msgstr "Найменше нещодавно модифіковано"
 
@@ -6421,13 +6571,6 @@ msgstr "Як (нечутливий до випадків)"
 msgid "Limit type"
 msgstr "Тип обмеження"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr ""
-"Обмеження рядків може призвести до неповних даних та оманливих діаграм. "
-"Подумайте про фільтрацію або групування джерел/цільових імен."
-
 msgid "Limits the number of cells that get retrieved."
 msgstr "Обмежує кількість клітин, які отримують."
 
@@ -6472,6 +6615,9 @@ msgstr ""
 "інформацію як ряд точок даних, підключених за допомогою прямих сегментів."
 " Це основний тип діаграми, поширений у багатьох полях."
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "Лінійна інтерполяція, визначена D3.js"
 
@@ -6500,9 +6646,16 @@ msgstr "Лінії кодування"
 msgid "Link Copied!"
 msgstr "Посилання скопійовано!"
 
+msgid "List Roles"
+msgstr ""
+
 msgid "List Unique Values"
 msgstr "Перелічіть унікальні значення"
 
+#, fuzzy
+msgid "List Users"
+msgstr "Розділений номер"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr "Список додаткових стовпців, доступних у функціях JavaScript"
 
@@ -6571,6 +6724,10 @@ msgstr "Логарифмічна вісь Y"
 msgid "Login"
 msgstr "Логін"
 
+#, fuzzy
+msgid "Login count"
+msgstr "рахувати"
+
 msgid "Login with"
 msgstr "Увійти за допомогою"
 
@@ -6580,6 +6737,10 @@ msgstr "Вийти"
 msgid "Logs"
 msgstr "Журнали"
 
+#, fuzzy
+msgid "Lon"
+msgstr "на"
+
 msgid "Long dashed"
 msgstr "Довгий пункт"
 
@@ -6622,9 +6783,6 @@ msgstr "Мн"
 msgid "Main"
 msgstr "хв"
 
-msgid "Main Datetime Column"
-msgstr "Основний стовпець DateTime"
-
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
 "contains data for the selected time range"
@@ -6660,6 +6818,10 @@ msgstr "Вручну встановити значення min/max для осі
 msgid "Map"
 msgstr "Карта"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "Варіанти теплової карти"
+
 msgid "Map Style"
 msgstr "Стиль карти"
 
@@ -6702,14 +6864,17 @@ msgstr "Маркери"
 msgid "Markup type"
 msgstr "Тип розмітки"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "Максимум"
 
 msgid "Max Bubble Size"
 msgstr "Максимальний розмір міхура"
 
-msgid "Max Events"
-msgstr "Максимальні події"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "Максимум"
@@ -6720,6 +6885,9 @@ msgstr "Максимальний розмір шрифту"
 msgid "Maximum Radius"
 msgstr "Максимальний радіус"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6765,6 +6933,18 @@ msgstr "Середні цінності"
 msgid "Medium"
 msgstr "Середній"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr "Дії меню запускають"
 
@@ -6865,13 +7045,6 @@ msgstr ""
 "серія, якщо присутній ліміт серії або рядка. Якщо невизначений повернення"
 " до першої метрики (де це доречно)."
 
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr ""
-"Метрика, яка використовується для замовлення ліміту, якщо присутній ліміт"
-" серії. Якщо невизначений повернення до першої метрики (де це доречно)."
-
 msgid "Metrics"
 msgstr "Показники"
 
@@ -6911,8 +7084,8 @@ msgstr "Мінімальний розмір шрифту"
 msgid "Minimum Radius"
 msgstr "Мінімальний радіус"
 
-msgid "Minimum leaf node event count"
-msgstr "Мінімальний кількість подій вузла листя"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
 "Minimum radius size of the circle, in pixels. As the zoom level changes, "
@@ -6927,6 +7100,10 @@ msgstr "Мінімальний поріг у відсотковому пункт
 msgid "Minimum value"
 msgstr "Мінімальне значення"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "З дати не може бути більшим, ніж на сьогоднішній день"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "Мінімальне значення для мітки для відображення на графі."
 
@@ -6951,6 +7128,9 @@ msgstr "Хвилини %s"
 msgid "Minutes value"
 msgstr "Мінімальне значення"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 msgid "Missing URL parameters"
 msgstr "Відсутні параметри URL -адреси"
 
@@ -6967,6 +7147,13 @@ msgstr "Змінений"
 msgid "Modified %s"
 msgstr "Модифіковані %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
 msgid "Modified by"
 msgstr "Змінений"
 
@@ -6974,10 +7161,6 @@ msgstr "Змінений"
 msgid "Modified by: %s"
 msgstr "Останнє змінено на %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "Модифіковані стовпці: %s"
-
 msgid "Monday"
 msgstr "Понеділок"
 
@@ -7040,9 +7223,6 @@ msgstr "Потрібно вибрати або діаграму, або інфо
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr "Повинен мати стовпець [група за], щоб мати \"рахувати\" як [мітку]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "Повинен мати щонайменше один числовий стовпчик"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr "Повинен надати облікові дані для тунелю SSH"
 
@@ -7067,9 +7247,6 @@ msgstr "Не згрупований"
 msgid "NOV"
 msgstr "Листопада"
 
-msgid "NOW"
-msgstr "Тепер"
-
 msgid "NUMERIC"
 msgstr "Числовий"
 
@@ -7095,9 +7272,6 @@ msgstr "Ім'я стовпця ідентифікатора"
 msgid "Name of the source nodes"
 msgstr "Назва вихідних вузлів"
 
-msgid "Name of the table that exists in the source database"
-msgstr "Назва таблиці, яка існує у вихідній базі даних"
-
 msgid "Name of the target nodes"
 msgstr "Назва цільових вузлів"
 
@@ -7114,19 +7288,23 @@ msgstr "Потрібна допомога? Дізнайтеся, як підкл
 msgid "Need help? Learn more about"
 msgstr "Потрібна допомога? Дізнайтеся більше про"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "Помилка мережі"
+
 msgid "Network error"
 msgstr "Помилка мережі"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "Під час створення джерела даних сталася помилка"
+
 msgid "Network error."
 msgstr "Помилка мережі."
 
 msgid "New chart"
 msgstr "Нова діаграма"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "Додано нові стовпці: %s"
-
 msgid "New dataset"
 msgstr "Новий набір даних"
 
@@ -7175,6 +7353,10 @@ msgstr "Ще немає правил"
 msgid "No Tags created"
 msgstr "було створено"
 
+#, fuzzy
+msgid "No actions"
+msgstr "Скасувати дію"
+
 msgid "No annotation layers"
 msgstr "Ніяких шарів анотації"
 
@@ -7193,9 +7375,6 @@ msgstr "Немає доступних фільтрів."
 msgid "No charts"
 msgstr "Немає діаграм"
 
-msgid "No charts yet"
-msgstr "Ще немає діаграм"
-
 msgid "No columns found"
 msgstr "Не знайдено стовпців"
 
@@ -7212,9 +7391,6 @@ msgstr "Не знайдено сумісних наборів даних"
 msgid "No compatible schema found"
 msgstr "Не знайдено сумісної схеми"
 
-msgid "No dashboards yet"
-msgstr "Ще немає інформаційних панелей"
-
 msgid "No data"
 msgstr "Немає даних"
 
@@ -7226,6 +7402,10 @@ msgstr ""
 msgid "No data in file"
 msgstr "Немає даних у файлі"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "Баз даних немає"
+
 msgid "No databases match your search"
 msgstr "Жодне бази даних не відповідає вашому пошуку"
 
@@ -7256,12 +7436,6 @@ msgstr "Наразі глобальні фільтри не додаються"
 msgid "No matching records found"
 msgstr "Не знайдено відповідних записів"
 
-msgid "No of Bins"
-msgstr "Немає бункерів"
-
-msgid "No recents yet"
-msgstr "Ще немає жодних випадків"
-
 msgid "No records found"
 msgstr "Записів не знайдено"
 
@@ -7286,6 +7460,10 @@ msgstr ""
 " результатів, переконайтеся, що будь -які фільтри налаштовані належним "
 "чином, а дані містять дані для вибраного діапазону часу."
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "Ще немає правил"
+
 msgid "No rows were returned for this dataset"
 msgstr "Для цього набору даних не було повернуто рядків"
 
@@ -7298,9 +7476,6 @@ msgstr "Збережених виразів не знайдено"
 msgid "No saved metrics found"
 msgstr "Збережених показників не знайдено"
 
-msgid "No saved queries yet"
-msgstr "Ще немає врятованих запитів"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr ""
 "Не знайдено жодних збережених результатів, вам потрібно повторно "
@@ -7320,6 +7495,10 @@ msgstr "Не знайдено тимчасових стовпців"
 msgid "No time columns"
 msgstr "Немає часу стовпців"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "Ще немає правил"
+
 msgid "No validator found (configured for the engine)"
 msgstr "Жодного валідатора не знайдено (налаштовано для двигуна)"
 
@@ -7399,6 +7578,10 @@ msgstr "Не спрацьований"
 msgid "Not up to date"
 msgstr "Не в курсі"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "Ніщо не спрацювало"
+
 msgid "Nothing triggered"
 msgstr "Ніщо не спрацювало"
 
@@ -7511,9 +7694,6 @@ msgstr "Жовтень"
 msgid "Offline"
 msgstr "Офлайн"
 
-msgid "Offset"
-msgstr "Компенсація"
-
 msgid "On Grace"
 msgstr "На благодать"
 
@@ -7543,6 +7723,10 @@ msgstr "Один або багато елементів керування, що
 msgid "One or many metrics to display"
 msgstr "Один або багато показників для відображення"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "Один руду більше анотаційних шарів не вдалося завантажити."
+
 msgid "One or more columns already exist"
 msgstr "Один або кілька стовпців вже існують"
 
@@ -7573,12 +7757,6 @@ msgstr "Один або кілька параметрів, зазначених
 msgid "One or more parameters specified in the query are missing."
 msgstr "Один або кілька параметрів, зазначених у запиті, відсутні."
 
-msgid "One ore more annotation layers failed loading."
-msgstr "Один руду більше анотаційних шарів не вдалося завантажити."
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "Протягом цієї бази даних допускаються лише вибору."
-
 msgid "Only Total"
 msgstr "Тільки повне"
 
@@ -7593,9 +7771,6 @@ msgstr ""
 "Застосовується лише тоді, коли \"тип мітки\" встановлюється для показу "
 "значень."
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "На цей фільтр вплине лише вибрані панелі"
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7680,15 +7855,19 @@ msgstr "Варіанти"
 msgid "Or choose from a list of other databases we support:"
 msgstr "Або виберіть зі списку інших баз даних, які ми підтримуємо:"
 
-msgid "Order by entity id"
-msgstr "Замовлення за сутністю ідентифікатор"
-
 msgid "Order results by selected columns"
 msgstr "Результати замовлення за вибраними стовпцями"
 
 msgid "Ordering"
 msgstr "Замовлення"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 msgid "Orientation"
 msgstr "Орієнтація"
 
@@ -7813,6 +7992,10 @@ msgstr ""
 "Власники - це список користувачів, які можуть змінити інформаційну "
 "панель. Шукати за іменем або іменем користувача."
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "Завантажити зображення не вдалося, оновити та повторіть спробу."
+
 msgid "Page length"
 msgstr "Довжина сторінки"
 
@@ -7872,6 +8055,14 @@ msgstr ""
 msgid "Password"
 msgstr "Пароль"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "Потрібен тип"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "Дашбордів не існує"
+
 msgid "Paste Private Key here"
 msgstr "Вставте тут приватний ключ"
 
@@ -7929,6 +8120,14 @@ msgstr "Періоди"
 msgid "Periods must be a whole number"
 msgstr "Періоди повинні бути цілим числом"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "Версія"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr "Особа або група, яка сертифікувала цю діаграму."
 
@@ -7944,9 +8143,6 @@ msgstr "Фізичний"
 msgid "Physical (table or view)"
 msgstr "Фізичний (таблиця або перегляд)"
 
-msgid "Physical dataset"
-msgstr "Фізичний набір даних"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr "Виберіть вимір, з якого визначені категоричні кольори"
 
@@ -7968,15 +8164,9 @@ msgstr "Виберіть набір діаграм палуби"
 msgid "Pick a title for you annotation."
 msgstr "Виберіть заголовок для вас анотацію."
 
-msgid "Pick at least one field for [Series]"
-msgstr "Виберіть принаймні одне поле для [серії]"
-
 msgid "Pick at least one metric"
 msgstr "Виберіть хоча б одну метрику"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-msgstr "Виберіть рівно 2 стовпці як [джерело / ціль]"
-
 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."
@@ -7990,9 +8180,8 @@ msgstr "Виберіть улюблену мову розмітки"
 msgid "Pie Chart"
 msgstr "Кругова діаграма"
 
-#, fuzzy
-msgid "Pie Chart (legacy)"
-msgstr "Лінійна діаграма (спадщина)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "Форма пирога"
@@ -8003,6 +8192,14 @@ msgstr ""
 msgid "Pin"
 msgstr "Шпилька"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "Зверху ліворуч"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "Праворуч зверху"
+
 msgid "Pivot Table"
 msgstr "Поворотна таблиця"
 
@@ -8061,6 +8258,9 @@ msgstr ""
 "синтаксису та переконайтеся, що вони відповідають вашому запиту SQL та "
 "встановіть параметри. Потім спробуйте знову запустити свій запит."
 
+msgid "Please choose a valid value"
+msgstr ""
+
 msgid "Please choose at least one groupby"
 msgstr "Будь ласка, виберіть хоча б одну групу"
 
@@ -8070,12 +8270,25 @@ msgstr "Будь-ласка підтвердіть"
 msgid "Please confirm the overwrite values."
 msgstr "Будь ласка, підтвердьте значення перезапису."
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "Будь-ласка підтвердіть"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "Будь ласка, введіть URI SQLALCHEMY для тестування"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "Будь ласка, повторно введіть пароль."
 
@@ -8089,9 +8302,6 @@ msgstr[0] "Будь ласка, зверніться до власника ді
 msgstr[1] ""
 msgstr[2] ""
 
-msgid "Please save the query to enable sharing"
-msgstr "Збережіть запит, щоб увімкнути обмін"
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr ""
 "Спочатку збережіть свою діаграму, а потім спробуйте створити новий звіт "
@@ -8173,9 +8383,6 @@ msgstr "Полілінія"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "Населення \"значення за замовчуванням\", щоб увімкнути цей контроль"
 
-msgid "Population age data"
-msgstr "Дані віку населення"
-
 msgid "Port"
 msgstr "Порт"
 
@@ -8213,15 +8420,6 @@ msgstr "Доступні значення попереднього фільтр
 msgid "Pre-filter is required"
 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`."
-
 msgid "Predictive"
 msgstr "Прогнозний"
 
@@ -8241,10 +8439,6 @@ msgstr "Попередній перегляд"
 msgid "Preview uploaded file"
 msgstr "Завантажте файл Excel"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "Попередній перегляд: `%S`"
-
 msgid "Previous"
 msgstr "Попередній"
 
@@ -8290,18 +8484,13 @@ msgstr "Прогресувати"
 msgid "Progressive"
 msgstr "Прогресивний"
 
-msgid "Propagate"
-msgstr "Розповсюджувати"
+#, fuzzy
+msgid "Project Id"
+msgstr "Застарілий"
 
 msgid "Proportional"
 msgstr "Пропорційний"
 
-msgid "Public and privately shared sheets"
-msgstr "Громадські та приватні діляться аркушами"
-
-msgid "Publicly shared sheets only"
-msgstr "Публічно поділяються лише аркушами"
-
 msgid "Published"
 msgstr "Опублікований"
 
@@ -8321,9 +8510,6 @@ msgstr "Значення повинно бути більше 0"
 msgid "Put the labels outside of the pie?"
 msgstr "Поставити етикетки поза пирогом?"
 
-msgid "Put the labels outside the pie?"
-msgstr "Поставити етикетки поза пирогом?"
-
 msgid "Put your code here"
 msgstr "Покладіть свій код сюди"
 
@@ -8427,10 +8613,6 @@ msgstr "Радіус у метрах"
 msgid "Radius in miles"
 msgstr "Радіус у милях"
 
-#, python-format
-msgid "Ran %s"
-msgstr "Ran %s"
-
 msgid "Range"
 msgstr "Діапазон"
 
@@ -8458,24 +8640,9 @@ msgstr "Співвідношення"
 msgid "Raw records"
 msgstr "RAW Records"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Нещодавно створені діаграми, інформаційні панелі та збережені запити "
-"з’являться тут"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Нещодавно відредаговані діаграми, інформаційні панелі та збереженні "
-"запити з’являться тут"
-
 msgid "Recently modified"
 msgstr "Нещодавно змінений"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr ""
-"Нещодавно переглянуті діаграми, інформаційні панелі та збережені запити "
-"з’являться тут"
-
 msgid "Recents"
 msgstr "Втілення"
 
@@ -8494,11 +8661,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr ""
-"Перенаправлення до цієї кінцевої точки при натисканні на таблицю зі "
-"списку таблиці"
-
 msgid "Redo the action"
 msgstr "Переробити дію"
 
@@ -8540,6 +8702,10 @@ msgstr "Інтервал оновлення"
 msgid "Refresh interval saved"
 msgstr "Оновити інтервал збережено"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "Див. Схему таблиці"
+
 msgid "Refresh the default values"
 msgstr "Оновити значення за замовчуванням"
 
@@ -8598,8 +8764,11 @@ msgid "Remove table preview"
 msgstr "Видалити попередній перегляд таблиці"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "Видалені стовпці: %s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
 msgid "Rename tab"
 msgstr "Перейменуйте вкладку"
@@ -8610,12 +8779,11 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
-msgid "Rendering"
-msgstr "Візуалізація"
-
 msgid "Replace"
 msgstr "Замінити"
 
@@ -8712,6 +8880,9 @@ msgstr "Відштовхування"
 msgid "Repulsion strength between nodes"
 msgstr "Сила відштовхування між вузлами"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "Запит невірний: %(error)s"
@@ -8744,6 +8915,10 @@ msgstr "REPAMBLE ORTERCTION вимагає DateTimeIndex"
 msgid "Reset"
 msgstr "Скинути"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "Виберіть стовпець"
+
 msgid "Reset state"
 msgstr "Скидання стану"
 
@@ -8769,6 +8944,10 @@ msgstr "Бекенд результатів не налаштовано."
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr "Результати, необхідні для асинхронних запитів, не налаштована."
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "Результати переробки"
+
 msgid "Return to specific datetime."
 msgstr "Повернення до конкретного часу."
 
@@ -8810,6 +8989,28 @@ msgstr ""
 msgid "Role"
 msgstr "Роль"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "Ім'я сповіщення"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "Значення потрібно"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "Ім'я потрібно"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "Успішно змінили набір даних!"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "Ролі"
 
@@ -8894,9 +9095,6 @@ msgstr "Рядки на сторінку, 0 означає, що немає па
 msgid "Rows subtotal position"
 msgstr "Рядки субтотального положення"
 
-msgid "Rows to Read"
-msgstr "Ряди для читання"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "Ряди для читання"
@@ -8964,14 +9162,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL скопійований!"
 
-msgid "SQL Expression"
-msgstr "Вираз SQL"
-
 msgid "SQL Lab"
 msgstr "SQL LAB"
 
-msgid "SQL Lab View"
-msgstr "Перегляд лабораторії SQL"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "збережені запити"
 
 #, python-format
 msgid ""
@@ -9067,20 +9263,10 @@ msgstr "Зразки для набору даних не вдалося отри
 msgid "Samples for datasource could not be retrieved."
 msgstr "Зразки для даних не вдалося отримати."
 
-msgid "Sankey"
-msgstr "Санкі"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "Зберегти діаграму"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "Діаграма Санкі"
-
-msgid "Sankey Diagram with Loops"
-msgstr "Діаграма Санкі з петлями"
-
 msgid "Satellite"
 msgstr "Супутник"
 
@@ -9141,9 +9327,6 @@ msgstr "Зберегти або перезаписати набір даних"
 msgid "Save query"
 msgstr "Зберегти запит"
 
-msgid "Save the query to enable this feature"
-msgstr "Збережіть запит, щоб увімкнути цю функцію"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr "Збережіть цей запит як віртуальний набір даних для продовження вивчення"
 
@@ -9171,6 +9354,10 @@ msgstr "Збережений запит не знайдено."
 msgid "Saved query parameters are invalid."
 msgstr "Збережені параметри запиту недійсні."
 
+#, fuzzy
+msgid "Saving..."
+msgstr "Завантаження ..."
+
 msgid "Scale and Move"
 msgstr "Масштаб і рухайтеся"
 
@@ -9226,11 +9413,6 @@ msgstr "Схема"
 msgid "Schema cache timeout"
 msgstr "Час очікування кешу схеми"
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr ""
-"Схема, як використовується лише в деяких базах даних, таких як Postgres, "
-"Redshift та DB2"
-
 msgid "Schemas allowed for File upload"
 msgstr "Схеми дозволені для завантаження файлів"
 
@@ -9314,9 +9496,6 @@ msgstr "Секунди %s"
 msgid "Seconds value"
 msgstr "секунди"
 
-msgid "Secure Extra"
-msgstr "Забезпечити додаткове"
-
 msgid "Secure extra"
 msgstr "Забезпечити додаткове"
 
@@ -9411,6 +9590,10 @@ msgstr "Виберіть схему, якщо база даних підтрим
 msgid "Select a sheet name from the uploaded file"
 msgstr "Виберіть базу даних для завантаження файлу в"
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "Видалити базу даних"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -9428,8 +9611,8 @@ msgstr "Виберіть усі дані"
 msgid "Select all items"
 msgstr "Виберіть усі елементи"
 
-msgid "Select any columns for metadata inspection"
-msgstr "Виберіть будь -які стовпці для перевірки метаданих"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 #, fuzzy
 msgid "Select catalog or type to search catalogs"
@@ -9455,6 +9638,9 @@ msgstr "Виберіть кольорову гаму"
 msgid "Select column"
 msgstr "Виберіть стовпець"
 
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr "Виберіть імена стовпців зі списку, що випадає, які слід розібрати як дати."
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9546,6 +9732,14 @@ msgstr "Виберіть або введіть ім'я набору даних"
 msgid "Select owners"
 msgstr "Виберіть власників"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "Скасувати всі"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "Виберіть власників"
+
 msgid "Select saved metrics"
 msgstr "Виберіть Збережена показниця"
 
@@ -9559,9 +9753,19 @@ msgstr "Виберіть схему або введіть для схем пош
 msgid "Select scheme"
 msgstr "Виберіть схему"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "Виберіть тему"
 
+#, fuzzy
+msgid "Select tab"
+msgstr "Скасувати всі"
+
 msgid "Select table or type to search tables"
 msgstr "Виберіть таблицю або введіть для пошукових таблиць"
 
@@ -9597,12 +9801,6 @@ msgstr ""
 msgid "Select the geojson column"
 msgstr "Виберіть стовпчик Geojson"
 
-msgid "Select the number of bins for the histogram"
-msgstr "Виберіть кількість бункерів для гістограми"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "Виберіть числові стовпці, щоб намалювати гістограму"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9628,9 +9826,6 @@ msgstr "Надіслати як PNG"
 msgid "Send as text"
 msgstr "Надіслати як текст"
 
-msgid "Send range filter events to other charts"
-msgstr "Надіслати події фільтра діапазону на інші діаграми"
-
 msgid "September"
 msgstr "Вересень"
 
@@ -9643,12 +9838,6 @@ msgstr "Серія"
 msgid "Series Height"
 msgstr "Висота серії"
 
-msgid "Series Limit Sort By"
-msgstr "Серія ліміту сортування"
-
-msgid "Series Limit Sort Descending"
-msgstr "Серія обмежує сортування"
-
 msgid "Series Order"
 msgstr "Замовлення серії"
 
@@ -9677,6 +9866,10 @@ msgstr "Сервер Пагінування"
 msgid "Service Account"
 msgstr "Рахунок служби"
 
+#, fuzzy
+msgid "Service version"
+msgstr "Рахунок служби"
+
 msgid "Set auto-refresh interval"
 msgstr "Встановіть інтервал автоматичного рефреша"
 
@@ -9707,6 +9900,10 @@ msgstr "Налаштування"
 msgid "Settings for time series"
 msgstr "Налаштування часових рядів"
 
+#, fuzzy
+msgid "Shape"
+msgstr "Форма пирога"
+
 msgid "Share"
 msgstr "Розподіляти"
 
@@ -9774,18 +9971,9 @@ msgstr "Показати заяву про створення перегляду
 msgid "Show Cell bars"
 msgstr "Показати стільникові смуги"
 
-msgid "Show Chart"
-msgstr "Показати діаграму"
-
-msgid "Show Column"
-msgstr "Показати колонку"
-
 msgid "Show Dashboard"
 msgstr "Показати приладову панель"
 
-msgid "Show Database"
-msgstr "Показати базу даних"
-
 msgid "Show Labels"
 msgstr "Показувати етикетки"
 
@@ -9795,18 +9983,12 @@ msgstr "Показувати журнал"
 msgid "Show Markers"
 msgstr "Шоу маркерів"
 
-msgid "Show Metric"
-msgstr "Показати показник"
-
 msgid "Show Metric Names"
 msgstr "Показати метричні назви"
 
 msgid "Show Range Filter"
 msgstr "Показати фільтр діапазону"
 
-msgid "Show Table"
-msgstr "Показати таблицю"
-
 msgid "Show Timestamp"
 msgstr "Показати часову позначку"
 
@@ -9842,9 +10024,6 @@ msgstr ""
 msgid "Show all columns"
 msgstr "Показати всі стовпці"
 
-msgid "Show all..."
-msgstr "Покажи все..."
-
 msgid "Show axis line ticks"
 msgstr "Показати кліщі лінії осі"
 
@@ -9867,6 +10046,10 @@ msgstr "Показати точки даних як маркери кола на
 msgid "Show empty columns"
 msgstr "Показати порожні стовпці"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "Показати показник"
+
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
 "area, showing proportion and contribution to the whole."
@@ -9889,9 +10072,6 @@ msgstr "Показати легенду"
 msgid "Show less columns"
 msgstr "Показати менше стовпців"
 
-msgid "Show less..."
-msgstr "Показувати менше ..."
-
 #, fuzzy
 msgid "Show minor ticks on axes."
 msgstr "Чи слід показувати незначні кліщі на осі"
@@ -9931,6 +10111,10 @@ msgstr "Шоу маркерів"
 msgid "Show the value on top of the bar"
 msgstr "Покажіть значення на вершині бару"
 
+#, fuzzy
+msgid "Show total"
+msgstr "Показати загалом"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9980,8 +10164,8 @@ msgstr ""
 "Демонструє прогрес однієї метрики проти заданої цілі. Чим вище заливка, "
 "тим ближче метрика до цілі."
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "Показуючи %s %s"
 
 msgid "Shows a list of all series available at that point in time"
@@ -10014,18 +10198,16 @@ msgstr "Єдине значення"
 msgid "Single value type"
 msgstr "Тип єдиного значення"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "Визначає розмір сітки в пікселях"
+
 msgid "Size of edge symbols"
 msgstr "Розмір символів краю"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "Розмір маркера. Також застосовується до прогнозних спостережень."
 
-msgid "Sizes of vehicles"
-msgstr "Розміри транспортних засобів"
-
-msgid "Skip Rows"
-msgstr "Пропустити ряди"
-
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
 msgstr "Пропустити порожні рядки, а не інтерпретувати їх як не значення числа"
 
@@ -10098,9 +10280,6 @@ msgstr "Вибач, щось пішло не так. Спробуйте ще р
 msgid "Sorry, something went wrong. Try again later."
 msgstr "Вибач, щось пішло не так. Спробуйте ще раз пізніше."
 
-msgid "Sorry, there appears to be no data"
-msgstr "Вибачте, даних, як видається, немає"
-
 #, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr "Вибачте, була помилка, заощадивши цей %s: %s"
@@ -10120,9 +10299,6 @@ msgstr ""
 msgid "Sort"
 msgstr "Сортувати"
 
-msgid "Sort Bars"
-msgstr "Сортування барів"
-
 msgid "Sort Descending"
 msgstr "Сортувати низхід"
 
@@ -10144,9 +10320,6 @@ msgstr "Сортуйте вісь"
 msgid "Sort ascending"
 msgstr "Сортувати висхід"
 
-msgid "Sort bars by x labels."
-msgstr "Сортуйте смуги за x мітками."
-
 msgid "Sort by"
 msgstr "Сортувати за"
 
@@ -10172,6 +10345,10 @@ msgstr "Сортувати значення фільтра"
 msgid "Sort metric"
 msgstr "Метрика сортування"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "Експортний запит"
+
 msgid "Sort rows by"
 msgstr "Сортувати ряди за"
 
@@ -10184,9 +10361,6 @@ msgstr "Тип сортування"
 msgid "Source"
 msgstr "Джерело"
 
-msgid "Source / Target"
-msgstr "Джерело / ціль"
-
 msgid "Source SQL"
 msgstr "Джерело SQL"
 
@@ -10231,9 +10405,6 @@ msgstr "Квадратні милі"
 msgid "Stack"
 msgstr "Стек"
 
-msgid "Stack Trace:"
-msgstr "Стечко слід:"
-
 msgid "Stack series"
 msgstr "Серія стека"
 
@@ -10249,9 +10420,6 @@ msgstr "Складені бари"
 msgid "Stacked Style"
 msgstr "Складений стиль"
 
-msgid "Stacked style"
-msgstr "Складений стиль"
-
 msgid "Standard time series"
 msgstr "Стандартний часовий ряд"
 
@@ -10352,9 +10520,6 @@ msgstr "Вулиці"
 msgid "Strength to pull the graph toward center"
 msgstr "Сила, щоб потягнути граф до центру"
 
-msgid "Stretched style"
-msgstr "Розтягнутий стиль"
-
 msgid "Stroke Color"
 msgstr "Колір удару"
 
@@ -10376,15 +10541,20 @@ msgstr "Стильні кінці смуги прогресу з круглою
 msgid "Subdomain"
 msgstr "Субдомен"
 
-msgid "Subheader"
-msgstr "Підзаголовка"
-
 msgid "Subheader Font Size"
 msgstr "Розмір шрифту підзаголовка"
 
 msgid "Submit"
 msgstr "Подавати"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "Назва вкладки"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "Розмір міхура"
+
 msgid "Subtotal"
 msgstr "Суттєвий"
 
@@ -10437,9 +10607,6 @@ msgstr "Суперсет вбудована документація SDK."
 msgid "Superset chart"
 msgstr "Суперсетна діаграма"
 
-msgid "Superset dashboard"
-msgstr "Інформаційна панель суперсетів"
-
 msgid "Superset encountered an error while running a command."
 msgstr "Суперсет зіткнувся з помилкою під час запуску команди."
 
@@ -10449,9 +10616,6 @@ msgstr "Суперсет зіткнувся з несподіваною поми
 msgid "Supported databases"
 msgstr "Підтримувані бази даних"
 
-msgid "Survey Responses"
-msgstr "Відповіді на опитування"
-
 msgid "Swap dataset"
 msgstr "Swap DataSet"
 
@@ -10467,6 +10631,12 @@ msgstr ""
 "рядками, розсіюванням та штрихами. Цей тип Viz також має багато варіантів"
 " налаштування."
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr "Символ"
 
@@ -10476,9 +10646,20 @@ msgstr "Символ двох кінців лінії краю"
 msgid "Symbol size"
 msgstr "Розмір символу"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "Синхронізовані стовпці з джерела"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "Синтаксис"
 
@@ -10491,9 +10672,6 @@ msgstr ""
 msgid "TABLES"
 msgstr "Столи"
 
-msgid "TEMPORAL X-AXIS"
-msgstr "Тимчасова осі x"
-
 msgid "TEMPORAL_RANGE"
 msgstr "Temporal_range"
 
@@ -10531,6 +10709,10 @@ msgstr ""
 "Таблиця [%(table_name)s] Не вдалося знайти, будь ласка, перевірте "
 "підключення до бази даних, схеми та назву таблиці"
 
+#, fuzzy
+msgid "Table actions"
+msgstr "Стовпці таблиці"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10542,6 +10724,10 @@ msgstr "Тайм -аут кешу таблиці"
 msgid "Table columns"
 msgstr "Стовпці таблиці"
 
+#, fuzzy
+msgid "Table name"
+msgstr "Назва таблиці"
+
 msgid "Table name undefined"
 msgstr "Назва таблиці не визначена"
 
@@ -10611,13 +10797,6 @@ msgstr "Позначений об’єкт не можна було видали
 msgid "Tags"
 msgstr "Теги"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr ""
-"Візьміть свої точки даних та групуйте їх у \"бункери\", щоб побачити, де "
-"лежать найгустіші області інформації"
-
 msgid "Target"
 msgstr "Цільовий"
 
@@ -10644,6 +10823,10 @@ msgstr ""
 "Шаблове посилання, можна включити {{metric}} або інші значення, що "
 "надходять з елементів управління."
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "Є тимчасовим"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10698,9 +10881,6 @@ msgstr ""
 "Geojsonlayer приймає дані, відформатовані Geojson, і представляє їх як "
 "інтерактивні багатокутники, лінії та точки (кола, ікони та/або тексти)."
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10733,6 +10913,10 @@ msgstr "Анотація врятована"
 msgid "The annotation has been updated"
 msgstr "Анотація оновлена"
 
+#, fuzzy
+msgid "The background color of the charts."
+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."
@@ -10771,6 +10955,10 @@ msgstr ""
 msgid "The color for points and clusters in RGB"
 msgstr "Колір для точок і кластерів у RGB"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "Формат кодування ліній"
+
 #, fuzzy
 msgid "The color of the isoband"
 msgstr "Формат кодування ліній"
@@ -10789,6 +10977,16 @@ msgstr ""
 "Колірна гамма визначається спорідненою інформаційною панеллю.\n"
 "        Відредагуйте кольорову гаму у властивостях приладної панелі."
 
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+"Ця кольорова гамма перекривається за допомогою спеціальних кольорів "
+"етикетки.\n"
+"    Перевірте метадані JSON у розширених налаштуваннях"
+
 msgid "The column header label"
 msgstr "Мітка заголовка стовпчика"
 
@@ -10801,6 +10999,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr "Стовпчик був видалений або перейменований у базу даних."
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10814,25 +11018,9 @@ msgstr "Приладна панель збережена"
 msgid "The data source seems to have been deleted"
 msgstr "Джерело даних, здається, було видалено"
 
-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 ""
-"Тип даних, який висловився в базі даних. У деяких випадках може "
-"знадобитися вводити тип вручну для визначені виразами стовпців. У "
-"більшості випадків користувачам не потрібно це змінювати."
-
-#, 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 вкладки, використовуючи цю "
-"базу даних. Ви впевнені, що хочете продовжувати? Видалення бази даних "
-"порушить ці об'єкти."
+#, fuzzy
+msgid "The database"
+msgstr "Видалити базу даних"
 
 msgid "The database columns that contains lines information"
 msgstr "Стовпці бази даних, що містить інформацію про рядки"
@@ -10867,15 +11055,9 @@ msgstr "База даних була видалена."
 msgid "The database was not found."
 msgstr "База даних не була знайдена."
 
-#, 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. Ви впевнені, що хочете продовжувати? Видалення набору даних "
-"порушить ці об'єкти."
+#, fuzzy
+msgid "The dataset"
+msgstr "Новий набір даних"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "Набір даних, пов'язаний з цією діаграмою, більше не існує"
@@ -10942,6 +11124,15 @@ msgid ""
 "call."
 msgstr "Об'єкт Engine_Params розпаковується в дзвінок SQLALCHEMY.CREATE_ENGINE."
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10959,6 +11150,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr "Функція, яку слід використовувати при агрегуванні точок у групи"
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10993,27 +11187,13 @@ msgstr "Ім'я хоста неможливо вирішити."
 msgid "The id of the active 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 ""
-"Список діаграм, пов’язаних з цією таблицею. Змінюючи цю дані, ви можете "
-"змінити, як поводяться ці пов'язані діаграми. Також зауважте, що діаграми"
-" повинні вказати на даний момент, тому ця форма не зможе зберегти, якщо "
-"видалити діаграми з даних. Якщо ви хочете змінити дані для діаграми, "
-"перезапишіть діаграму з \"Вивчення перегляду\""
+#, fuzzy
+msgid "The layer attribution"
+msgstr "Атрибути, пов’язані з часом"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr ""
-"Максимальна кількість подій, що повертаються, еквівалентні кількості "
-"рядків"
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -11057,6 +11237,19 @@ msgstr ""
 "даних - це загальна кількість 7 періодів. Це приховає \"рампу\", що "
 "відбудеться протягом перших 7 періодів"
 
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "Максимальне значення показників. Це необов'язкова конфігурація"
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "Ім'я стовпця ідентифікатора"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 #, fuzzy
 msgid "The name of the rule must be unique"
 msgstr "Ім'я повинно бути унікальним"
@@ -11309,6 +11502,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr "Результати, що бекрономиться, більше не мають даних із запиту."
 
@@ -11352,11 +11548,16 @@ msgstr "Схема була видалена або перейменована 
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "Звіт створений"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
-msgstr ""
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "Показувати значення серії на діаграмі"
 
 #, fuzzy
 msgid "The size of each cell in meters"
@@ -11365,6 +11566,9 @@ msgstr "Розмір квадратної клітини, пікселів"
 msgid "The size of the square cell, in pixels"
 msgstr "Розмір квадратної клітини, пікселів"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 #, fuzzy
 msgid "The submitted payload failed validation."
 msgstr "Надіслане корисне навантаження має неправильну схему."
@@ -11391,13 +11595,6 @@ msgstr ""
 "Таблиця “%(table_name)s\" не існує. Для запуску цього запиту необхідно "
 "використовувати дійсну таблицю."
 
-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 "The table was deleted or renamed in the database."
 msgstr "Таблицю було видалено або перейменовано в базу даних."
 
@@ -11463,6 +11660,10 @@ msgstr ""
 msgid "The time unit used for the grouping of blocks"
 msgstr "Одиниця часу, що використовується для групування блоків"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "Додайте назву діаграми"
+
 msgid "The type of visualization to display"
 msgstr "Тип візуалізації для відображення"
 
@@ -11489,6 +11690,14 @@ msgstr ""
 "Ім'я користувача, що надається при підключенні до бази даних, не є "
 "дійсним."
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "Виберіть положення легенди"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "Покажіть значення на вершині бару"
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "Те, як кліщі викладені на осі x"
 
@@ -11496,6 +11705,13 @@ msgstr "Те, як кліщі викладені на осі x"
 msgid "The width of the Isoline in pixels"
 msgstr "Ширина ліній"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "Ширина ліній"
+
 msgid "The width of the lines"
 msgstr "Ширина ліній"
 
@@ -11512,9 +11728,6 @@ msgstr "На цю інформаційну панель не додано діа
 msgid "There are no components added to this tab"
 msgstr "На цю вкладку немає компонентів"
 
-msgid "There are no databases available"
-msgstr "Баз даних немає"
-
 msgid "There are no filters in this dashboard."
 msgstr "На цій інформаційній панелі немає фільтрів."
 
@@ -11528,6 +11741,10 @@ msgstr ""
 "У запиті SQL є помилка синтаксису. Можливо, було неправильне написання чи"
 " друкарську помилку."
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "Тип візуалізації для відображення"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11556,6 +11773,10 @@ msgstr "Була помилка, яка отримала улюблений ст
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "Була помилка, яка отримала улюблений статус: %s"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "Сталася помилка, що завантажує схеми"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "Сталася помилка, що завантажує таблиці"
@@ -11572,6 +11793,10 @@ msgstr "Сталася помилка, що завантажує схеми"
 msgid "There was an error loading the tables"
 msgstr "Сталася помилка, що завантажує таблиці"
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr "Вибачте, була помилка збереження цієї інформаційної панелі: %s"
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr "Була помилка, щоб зберегти улюблений статус: %s"
@@ -11579,6 +11804,10 @@ msgstr "Була помилка, щоб зберегти улюблений ст
 msgid "There was an error with your request"
 msgstr "Була помилка з вашим запитом"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "Видаляло проблему: %s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "Виникло питання видалення %s: %s"
@@ -11662,27 +11891,10 @@ msgstr "Існувала проблема, що переглядає вибра
 msgid "There was an issue previewing the selected query. %s"
 msgstr "Була проблема, що переглядає вибраний запит. %s"
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr ""
-"У вашому Санкі є петля, будь ласка, надайте дерево. Ось несправне "
-"посилання: {}"
-
 #, fuzzy
 msgid "These are the datasets this filter will be applied to."
 msgstr "Це таблиці, до яких цей фільтр буде застосований."
 
-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 ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11700,12 +11912,20 @@ msgstr "Ця дія назавжди видаляє %s."
 msgid "This action will permanently delete the layer."
 msgstr "Ця дія назавжди видаляє шар."
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "Ця дія назавжди видаляє шар."
+
 msgid "This action will permanently delete the saved query."
 msgstr "Ця дія назавжди видаляє збережений запит."
 
 msgid "This action will permanently delete the template."
 msgstr "Ця дія назавжди видаляє шаблон."
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "Ця дія назавжди видаляє шар."
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11736,14 +11956,6 @@ msgstr ""
 "Цей тип діаграми не підтримується при використанні незбереженого запиту "
 "як джерела діаграми. "
 
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-"Ця кольорова гамма перекривається за допомогою спеціальних кольорів "
-"етикетки.\n"
-"    Перевірте метадані JSON у розширених налаштуваннях"
-
 msgid "This column might be incompatible with current dataset"
 msgstr "Цей стовпець може бути несумісним з поточним набором даних"
 
@@ -11827,6 +12039,12 @@ msgstr ""
 msgid "This dashboard was saved successfully."
 msgstr "Ця інформаційна панель була успішно збережена."
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr "Ця база даних керує зовні, і не може бути відредагована в суперсеті"
 
@@ -11844,6 +12062,9 @@ msgstr "Цей набір даних не використовується дл
 msgid "This defines the element to be plotted on the chart"
 msgstr "Це визначає елемент, який потрібно побудувати на діаграмі"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11854,13 +12075,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr ""
-"Ця поля діє на суперсетний вигляд, що означає, що Superset буде "
-"виконувати запит проти цього рядка як підзапит."
-
 msgid "This filter might be incompatible with current dataset"
 msgstr "Цей фільтр може бути несумісним із поточним набором даних"
 
@@ -11900,16 +12114,6 @@ msgstr ""
 msgid "This may be triggered by:"
 msgstr "Це може бути спровоковано:"
 
-#, 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 "This metric might be incompatible with current dataset"
 msgstr "Цей показник може бути несумісним із поточним набором даних"
 
@@ -11957,6 +12161,9 @@ msgstr ""
 "У цій таблиці вже є набір даних, пов'язаний з ним. Ви можете асоціювати "
 "лише один набір даних із таблицею.\n"
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr "Це значення повинно бути більшим, ніж ліве цільове значення"
 
@@ -12036,9 +12243,6 @@ msgstr "Співвідношення часу"
 msgid "Time Series"
 msgstr "Часовий ряд"
 
-msgid "Time Series - Bar Chart"
-msgstr "Часові серії - Барна діаграма"
-
 msgid "Time Series - Line Chart"
 msgstr "Часовий ряд - Лінійна діаграма"
 
@@ -12054,9 +12258,6 @@ msgstr "Часовий ряд - відсоток зміни"
 msgid "Time Series - Period Pivot"
 msgstr "Часовий ряд - Період"
 
-msgid "Time Series - Stacked"
-msgstr "Часовий ряд - складений"
-
 msgid "Time Series Options"
 msgstr "Параметри часових рядів"
 
@@ -12150,15 +12351,6 @@ msgstr ""
 "Рядок часу неоднозначний. Будь ласка, вкажіть [%(human_readable)s тому] "
 "або [%(human_readable)s пізніше]."
 
-msgid "Time-series Area Chart (legacy)"
-msgstr "Діаграма області (спадщина)"
-
-msgid "Time-series Bar Chart (legacy)"
-msgstr "Діаграма штрих часу (Legacy)"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr "Лінійна діаграма (спадщина)"
-
 msgid "Time-series Percent Change"
 msgstr "Зміна відсотків часових рядів"
 
@@ -12177,9 +12369,6 @@ msgstr "Формат часової позначки"
 msgid "Timezone"
 msgstr "Часовий пояс"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "Зсув часового поясу (у годинах) для цього даних"
-
 msgid "Timezone selector"
 msgstr "Вибір часу"
 
@@ -12198,6 +12387,11 @@ msgstr "Потрібна назва"
 msgid "Title or Slug"
 msgstr "Назва або слим"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "Щоб фільтрувати метрику, використовуйте власну вкладку SQL."
 
@@ -12240,6 +12434,10 @@ msgstr "Всього (%(aggfunc)s)"
 msgid "Total (%(aggregatorName)s)"
 msgstr "Всього (%(aggregatorName)s)"
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "Всього: %s"
+
 msgid "Total value"
 msgstr "Загальна вартість"
 
@@ -12352,9 +12550,6 @@ msgstr "Введіть тут значення"
 msgid "Type is required"
 msgstr "Потрібен тип"
 
-msgid "Type of Google Sheets allowed"
-msgstr "Тип аркушів Google дозволено"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "Тип порівняння, різниця у цінності або відсоток"
 
@@ -12442,9 +12637,15 @@ msgstr ""
 "повернеться пізніше. Зверніться до свого адміністратора, якщо ця проблема"
 " зберігається."
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr "Не в змозі отримати кольори панелі панелі"
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "Невизначений"
 
@@ -12476,6 +12677,10 @@ msgstr "Збережених виразів не знайдено"
 msgid "Unexpected time range: %(error)s"
 msgstr "Несподіваний часовий діапазон: %s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "скасувати"
+
 msgid "Unknown"
 msgstr "Невідомий"
 
@@ -12513,6 +12718,10 @@ msgstr "Невідомий тип"
 msgid "Unknown value"
 msgstr "Невідоме значення"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "біг"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr "Небезпечний тип повернення для функції %(func)s: %(value_type)s"
@@ -12576,9 +12785,6 @@ msgstr "Завантажте стовпчастий файл"
 msgid "Upload Columnar file to database"
 msgstr "Завантажте стовпчастий файл у базу даних"
 
-msgid "Upload Credentials"
-msgstr "Завантажити облікові дані"
-
 msgid "Upload Enabled"
 msgstr "Завантажити увімкнено"
 
@@ -12601,6 +12807,10 @@ msgstr "Завантажте файл у базу даних"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "Завантажити облікові дані"
+
 msgid "Upload file to database"
 msgstr "Завантажте файл у базу даних"
 
@@ -12659,14 +12869,15 @@ msgstr ""
 "\n"
 "          Ваша діаграма повинна бути одним із цих типів візуалізації: [%s]"
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "Запустити запит"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 "Використовуйте форматування дати навіть тоді, коли метричне значення не є"
 " часовою позначкою"
 
-msgid "Use legacy datasource editor"
-msgstr "Використовуйте редактор Legacy DataSource"
-
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr "Використовуйте показники як групу вищого рівня для стовпців або для рядків"
 
@@ -12676,13 +12887,6 @@ msgstr "Використовуйте лише одне значення."
 msgid "Use the Advanced Analytics options below"
 msgstr "Використовуйте наведені нижче варіанти аналітики"
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr ""
-"Використовуйте файл JSON, який ви автоматично завантажили під час "
-"створення облікового запису послуги."
-
 msgid "Use the edit button to change this field"
 msgstr "Використовуйте кнопку Редагувати, щоб змінити це поле"
 
@@ -12726,9 +12930,23 @@ msgstr "Користувач повинен вибрати значення пе
 msgid "User query"
 msgstr "Запит користувача"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "Ім'я користувача"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "Ім'я потрібно"
+
+#, fuzzy
+msgid "Users"
+msgstr "серія"
+
 #, fuzzy
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr "%(dialect)s не можна використовувати як джерело даних з міркувань безпеки."
@@ -12760,6 +12978,10 @@ msgstr ""
 "етапи, які взяла значення. Корисно для багатоступеневої, багатогрупової "
 "візуалізації воронки та трубопроводів."
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "Цінність"
 
@@ -12786,9 +13008,16 @@ msgstr ""
 msgid "Value format"
 msgstr "Формат значення"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "Значення повинно бути більше 0"
+
 msgid "Value is required"
 msgstr "Значення потрібно"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "Значення повинно бути більше 0"
@@ -12809,12 +13038,6 @@ msgstr ""
 "Значення, вибрані в інших фільтрах, впливатимуть на параметри фільтра, "
 "щоб показати лише відповідні значення"
 
-msgid "Vehicle Types"
-msgstr "Типи транспортних засобів"
-
-msgid "Verbose Name"
-msgstr "Назва багатослів'я"
-
 msgid "Version"
 msgstr "Версія"
 
@@ -12827,9 +13050,6 @@ msgstr "Вертикальний"
 msgid "Vertical (Left)"
 msgstr "Вертикальний (зліва)"
 
-msgid "Video game consoles"
-msgstr "Консолі відеоігор"
-
 msgid "View"
 msgstr "Переглянути"
 
@@ -12871,9 +13091,6 @@ msgstr "Віртуальний"
 msgid "Virtual (SQL)"
 msgstr "Віртуальний (SQL)"
 
-msgid "Virtual dataset"
-msgstr "Віртуальний набір даних"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "Віртуальний запит набору даних не може бути порожнім"
 
@@ -12918,14 +13135,6 @@ 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."
@@ -12990,16 +13199,6 @@ msgstr ""
 "діаграма застаріла, і ми рекомендуємо використовувати замість цього "
 "діаграму часових рядів."
 
-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 ""
-"Візуалізує потік значень різних груп через різні етапи системи. Нові "
-"етапи в трубопроводі візуалізуються як вузли або шари. Товщина брусків "
-"або країв представляє показник, який візуалізується."
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -13016,6 +13215,12 @@ msgstr "Тип з -за"
 msgid "WED"
 msgstr "Одружуватися"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, fuzzy, python-format
 msgid "Waiting on %s"
 msgstr "Показуючи %s %s"
@@ -13030,9 +13235,6 @@ msgstr "Хочете додати нову базу даних?"
 msgid "Warning"
 msgstr "УВАГА"
 
-msgid "Warning Message"
-msgstr "Попереджувальне повідомлення"
-
 msgid "Warning!"
 msgstr "УВАГА!"
 
@@ -13185,13 +13387,6 @@ msgstr ""
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr "Коли надається вторинна метрика, використовується лінійна кольорова шкала."
 
-msgid ""
-"When allowing CREATE TABLE AS option in SQL Lab, this option forces the "
-"table to be created in this schema"
-msgstr ""
-"При дозволі створювати таблицю як опцію в лабораторії SQL, ця опція "
-"змушує створювати таблицю в цій схемі"
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr "Після перевірки карта збільшиться до ваших даних після кожного запиту"
 
@@ -13219,6 +13414,11 @@ msgid ""
 "to the main datetime column."
 msgstr ""
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -13241,20 +13441,14 @@ msgstr ""
 "При використанні, крім адаптивного форматування, мітки можуть "
 "перекриватися"
 
-msgid "When using this option, default value can’t be set"
-msgstr "При використанні цієї опції значення за замовчуванням не можна встановити"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr "Чи перекривається панель прогресу, коли існує кілька груп даних"
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr "Чи створена таблиця за допомогою \"візуалізації\" потоку в лабораторії SQL"
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr "Чи викривається цей стовпець у розділі \"Фільтри\" перегляду \"Вивчення\"."
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -13297,6 +13491,10 @@ msgstr "Чи відображати легенду для діаграми"
 msgid "Whether to display bubbles on top of countries"
 msgstr "Чи відображати бульбашки поверх країн"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "Чи відображати легенду для діаграми"
+
 msgid "Whether to display the aggregate count"
 msgstr "Чи відображати кількість сукупності"
 
@@ -13306,13 +13504,6 @@ msgstr "Чи відображати таблицю інтерактивних д
 msgid "Whether to display the labels."
 msgstr "Чи відображати мітки."
 
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr ""
-"Чи відображати мітки. Зауважте, що мітка відображається лише тоді, коли "
-"поріг 5%."
-
 msgid "Whether to display the legend (toggles)"
 msgstr "Чи відображати легенду (перемикає)"
 
@@ -13328,6 +13519,10 @@ msgstr "Чи відображати значення min та максималь
 msgid "Whether to display the numerical values within the cells"
 msgstr "Чи відображати числові значення всередині комірок"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "Чи включати відсоток у підказку"
+
 msgid "Whether to display the stroke"
 msgstr "Чи відображати хід"
 
@@ -13341,9 +13536,17 @@ msgstr "Чи відображати часову позначку"
 msgid "Whether to display the tooltip labels."
 msgstr "Чи відображати мітки."
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "Чи відображати числові значення всередині комірок"
+
 msgid "Whether to display the trend line"
 msgstr "Чи відображати лінію тренду"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "Чи відображати кількість сукупності"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr "Чи можна змінювати положення графіку та масштабування."
 
@@ -13368,37 +13571,17 @@ msgstr "Чи включати часову деталізацію, визнач
 msgid "Whether to make the grid 3D"
 msgstr "Чи робити сітку 3D"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "Чи робити гістограму кумулятивною"
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr ""
-"Незалежно від того, щоб зробити цей стовпець доступним як параметр [Час "
-"деталізації], стовпець повинен бути датетом або датетом"
-
-msgid "Whether to normalize the histogram"
-msgstr "Чи нормалізувати гістограму"
-
 msgid "Whether to populate autocomplete filters options"
 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 ""
-"Чи заповнити спадне місце у розділі фільтра «Дослідження перегляду» зі "
-"списком різних значень, отриманих з бекенду на льоту"
-
 #, fuzzy
 msgid "Whether to show as Nightingale chart."
 msgstr "Чи показувати хід датчика діаграми"
 
+#, fuzzy
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr ""
 "Проявляти додаткові елементи управління чи ні. Додаткові елементи "
 "керування включають такі речі, як створення мулітбарів, складеними або "
@@ -13422,9 +13605,6 @@ msgstr "Чи сортувати висхідну чи спускатися на
 msgid "Whether to sort descending or ascending"
 msgstr "Чи сортувати низхідну чи висхідну"
 
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr "Чи слід сортувати низхідну чи підніматися, якщо присутній ліміт серії"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr "Чи слід сортувати результати за вибраним показником у порядку зменшення."
 
@@ -13482,9 +13662,6 @@ msgstr "Напишіть опис свого запиту"
 msgid "Write a handlebars template to render the data"
 msgstr "Напишіть шаблон ручки для надання даних"
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "X Осі Назва Нижня краю"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr ""
 
@@ -13504,6 +13681,10 @@ msgstr "X мітка вісь"
 msgid "X Axis Title"
 msgstr "Назва X Axis"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Рядки субтотального положення"
+
 msgid "X Log Scale"
 msgstr "X шкала журналу"
 
@@ -13525,6 +13706,9 @@ msgstr "X-вісь"
 msgid "XScale Interval"
 msgstr "Xscale Interval"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Y 2 межі"
 
@@ -13652,6 +13836,19 @@ msgstr ""
 "Перезавантаження може призвести до втрати частини своєї роботи. Ви "
 "впевнені, що хочете перезаписати?"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 msgid "You can"
 msgstr "Ти можеш"
 
@@ -13736,9 +13933,6 @@ msgstr "Ви не маєте доступу до цього набору дан
 msgid "You don't have access to this embedded dashboard config."
 msgstr "У вас немає доступу до цієї вбудованої конфігурації інформаційної панелі."
 
-msgid "You don't have any favorites yet!"
-msgstr "У вас ще немає улюблених!"
-
 msgid "You don't have permission to modify the value."
 msgstr "У вас немає дозволу на зміну значення."
 
@@ -13823,6 +14017,9 @@ msgstr "Ваша діаграма не оновлена"
 msgid "Your chart is ready to go!"
 msgstr "Ваша діаграма готова йти!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr ""
 "Ваша інформаційна панель занадто велика. Будь ласка, зменшіть його "
@@ -13853,6 +14050,9 @@ msgstr "Ваш запит був збережений"
 msgid "Your query was updated"
 msgstr "Ваш запит був оновлений"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "Ваш звіт не можна було видалити"
 
@@ -13865,6 +14065,10 @@ msgstr "Нульова імпутація"
 msgid "Zoom"
 msgstr "Масштаб"
 
+#, fuzzy
+msgid "Zoom level"
+msgstr "масштаб"
+
 msgid "Zoom level of the map"
 msgstr "Рівень масштабу карти"
 
@@ -13987,9 +14191,6 @@ msgstr "в"
 msgid "auto"
 msgstr "автоматичний"
 
-msgid "auto (Smooth)"
-msgstr "авто (Smooth)"
-
 msgid "background"
 msgstr "фон"
 
@@ -14036,9 +14237,6 @@ msgstr "зміна"
 msgid "chart"
 msgstr "діаграма"
 
-msgid "charts"
-msgstr "діаграми"
-
 msgid "choose WHERE or HAVING..."
 msgstr "виберіть WHERE або HAVING ..."
 
@@ -14048,6 +14246,10 @@ msgstr "очистіть усі фільтри"
 msgid "click here"
 msgstr "натисніть тут"
 
+#, fuzzy
+msgid "close"
+msgstr "Закривати"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr "код ISO 3166-1 Альфа-2 (CCA2)"
 
@@ -14101,15 +14303,9 @@ msgstr "css_template"
 msgid "cumsum"
 msgstr "кумсум"
 
-msgid "cumulative"
-msgstr "кумулятивний"
-
 msgid "dashboard"
 msgstr "панель приладів"
 
-msgid "dashboards"
-msgstr "інформаційні панелі"
-
 msgid "database"
 msgstr "база даних"
 
@@ -14174,9 +14370,6 @@ msgstr "палуба"
 msgid "default"
 msgstr "за замовчуванням"
 
-msgid "delete"
-msgstr "видаляти"
-
 msgid "descendant"
 msgstr "нащадок"
 
@@ -14189,9 +14382,6 @@ msgstr "відхилення"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr "dialect+driver://username:password@host:port/database"
 
-msgid "draft"
-msgstr "розтягувати"
-
 msgid "dttm"
 msgstr "dttm"
 
@@ -14232,9 +14422,6 @@ msgstr "напр. World_Population"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "напр. xy12345.us-east-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "наприклад, стовпець “user id”"
-
 msgid "edit mode"
 msgstr "режим редагування"
 
@@ -14245,6 +14432,10 @@ msgstr "Виберіть тему"
 msgid "entries"
 msgstr "записи"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "записи"
+
 msgid "error"
 msgstr "помилка"
 
@@ -14311,11 +14502,6 @@ msgstr "ось"
 msgid "hour"
 msgstr "година"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr "CSS атрибут об'єкта canvas, який визначає, як браузер збільшує зображення"
-
 msgid "in"
 msgstr "у"
 
@@ -14326,6 +14512,10 @@ msgstr "у модальному"
 msgid "invalid email"
 msgstr "Недійсний ключ постійного посилання"
 
+#, fuzzy
+msgid "is"
+msgstr "у"
+
 #, fuzzy
 msgid "is expected to be a Mapbox URL"
 msgstr "очікується, що буде числом"
@@ -14336,6 +14526,29 @@ msgstr "очікується, що буде числом"
 msgid "is expected to be an integer"
 msgstr "очікується, що буде цілим числом"
 
+#, fuzzy, python-format
+msgid ""
+"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 вкладки, використовуючи цю "
+"базу даних. Ви впевнені, що хочете продовжувати? Видалення бази даних "
+"порушить ці об'єкти."
+
+#, fuzzy, python-format
+msgid ""
+"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 "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "літера A-Z"
 
@@ -14460,18 +14673,9 @@ msgstr "p99"
 msgid "page_size.all"
 msgstr "page_size.all"
 
-msgid "page_size.entries"
-msgstr "page_size.entries"
-
-msgid "page_size.show"
-msgstr "page_size.show"
-
 msgid "pending"
 msgstr "що очікує"
 
-msgid "percentile (exclusive)"
-msgstr "відсотковий (ексклюзивний)"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14482,9 +14686,6 @@ msgstr ""
 msgid "permalink state not found"
 msgstr "стан постійного посилання не знайдено"
 
-msgid "pixelated (Sharp)"
-msgstr "пікселізований (різкий)"
-
 #, fuzzy
 msgid "pixels"
 msgstr "Пікселі"
@@ -14492,15 +14693,16 @@ msgstr "Пікселі"
 msgid "previous calendar month"
 msgstr "попередній календарний місяць"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "попередній календарний рік"
+
 msgid "previous calendar week"
 msgstr "попередній календарний тиждень"
 
 msgid "previous calendar year"
 msgstr "попередній календарний рік"
 
-msgid "published"
-msgstr "опублікований"
-
 msgid "quarter"
 msgstr "чверть"
 
@@ -14519,9 +14721,6 @@ msgstr "перезавантажити"
 msgid "recent"
 msgstr "недавній"
 
-msgid "recents"
-msgstr "недавні"
-
 #, fuzzy
 msgid "recipients"
 msgstr "недавні"
@@ -14544,8 +14743,9 @@ msgstr "rowlevelsecurity"
 msgid "running"
 msgstr "біг"
 
-msgid "saved queries"
-msgstr "збережені запити"
+#, fuzzy
+msgid "save"
+msgstr "Заощадити"
 
 msgid "seconds"
 msgstr "секунди"
@@ -14562,10 +14762,6 @@ msgstr ""
 "використовують однакову шкалу; Зміна: Показати зміни порівняно з першою "
 "точкою даних у кожній серії"
 
-#, fuzzy
-msgid "shift start date"
-msgstr "Дата початку"
-
 msgid "sql"
 msgstr ""
 
@@ -14621,9 +14817,6 @@ msgstr "іконка тимчасового типу"
 msgid "textarea"
 msgstr "textarea"
 
-msgid "to"
-msgstr "до"
-
 msgid "top"
 msgstr "топ"
 
@@ -14633,6 +14826,14 @@ msgstr "скасувати"
 msgid "unknown type icon"
 msgstr "іконка невідомого типу"
 
+#, fuzzy
+msgid "unset"
+msgstr "Червень"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "%s оновлено"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14658,9 +14859,6 @@ msgstr "дисперсія"
 msgid "view instructions"
 msgstr "переглянути інструкції"
 
-msgid "virtual"
-msgstr "віртуальний"
-
 msgid "viz type"
 msgstr "тип з -за"
 
@@ -14697,3 +14895,6 @@ msgstr "рік"
 
 msgid "zoom area"
 msgstr "масштаб"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/zh/LC_MESSAGES/messages.po b/superset/translations/zh/LC_MESSAGES/messages.po
index 4128f99c9096e941ef5f253e02dfe1e0f56dc70a..5e81f2d3294ef639d9d8d21f02e7d57ad0892c5e 100644
--- a/superset/translations/zh/LC_MESSAGES/messages.po
+++ b/superset/translations/zh/LC_MESSAGES/messages.po
@@ -18,16 +18,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Apache Superset 0.22.1\n"
 "Report-Msgid-Bugs-To: zhouyao94@qq.com\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2019-01-04 22:19+0800\n"
 "Last-Translator: cdmikechen \n"
 "Language: zh\n"
 "Language-Team: zh <benedictjin2016@gmail.com>\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=1; plural=0\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -69,12 +69,12 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
-"\n"
-"错误:%(text)s\n"
-"            "
 
 msgid " (excluded)"
 msgstr "(不包含)"
@@ -92,9 +92,17 @@ msgstr "一个已存在的看板或者"
 msgid " a new one"
 msgstr "另存为新的"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr " 表达式必须基于 "
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr ""
 
@@ -159,13 +167,8 @@ msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr "出于安全原因,%(dialect)s SQLite数据库不能用作数据源。"
 
 #, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
+msgid "%(label)s file"
 msgstr ""
-"%(message)s\n"
-"这可能由以下因素触发:%(issues)s"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -179,22 +182,6 @@ msgstr ""
 msgid "%(object)s does not exist in this database."
 msgstr "数据库中不存在 %(object)s 。"
 
-#, fuzzy, python-format
-msgid "%(other)s charts will appear here"
-msgstr " %(other)s 图表将出现在此处"
-
-#, fuzzy, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr " %(other)s 看板将出现在此处"
-
-#, fuzzy, python-format
-msgid "%(other)s recents will appear here"
-msgstr " %(other)s 最近访问的将出现在此处"
-
-#, fuzzy, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s 保存的请求将出现在此处"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr ""
@@ -210,15 +197,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr "返回了 %(rows)d 行"
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-"%(subtitle)s\n"
-"这可能由以下因素触发:%(issue)s"
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -226,10 +204,6 @@ msgid_plural ""
 "\"%(undefinedParameter)s\"?"
 msgstr[0] "用 %(suggestion)s 替换 \"%(undefinedParameter)s\" 吗?"
 
-#, python-format
-msgid "%(type)s File"
-msgstr ""
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -284,10 +258,6 @@ msgstr "%s 聚合"
 msgid "%s column(s)"
 msgstr "%s 列"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -375,6 +345,10 @@ msgid ""
 "\n"
 msgstr "--  注意:除非您保存查询,否则如果清除cookie或更改浏览器时,这些选项卡将不会保留。\n"
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
 msgstr "0个被选中"
 
@@ -444,6 +418,13 @@ msgstr "每年年初的频率"
 msgid "10 minute"
 msgstr "10分钟"
 
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91百分位"
+
+msgid "10000"
+msgstr ""
+
 #, fuzzy
 msgid "104 weeks"
 msgstr "周"
@@ -547,6 +528,10 @@ msgstr "5秒"
 msgid "5 seconds"
 msgstr "5秒"
 
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91百分位"
+
 #, fuzzy
 msgid "52 weeks"
 msgstr "52周"
@@ -620,10 +605,6 @@ msgstr "大于等于(>=)"
 msgid "A Big Number"
 msgstr "大数字"
 
-#, fuzzy
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "从下拉列表中选择要作为日期处理的列名称。"
-
 #, fuzzy
 msgid "A comma-separated list of schemas that files are allowed to upload to."
 msgstr "允许以逗号分割的CSV文件上传"
@@ -634,6 +615,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr "已存在同名的数据库。"
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -710,11 +694,6 @@ msgid ""
 "templating syntax"
 msgstr "在查询中可用的一组参数使用JINJA模板语法"
 
-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 "查询超时。"
 
@@ -819,27 +798,31 @@ msgstr "最近"
 msgid "Add CSS template"
 msgstr "新增CSS模板"
 
-msgid "Add Chart"
-msgstr "新增图表"
-
-msgid "Add Column"
-msgstr "新增列"
-
 msgid "Add Dashboard"
 msgstr "新增看板"
 
-msgid "Add Database"
-msgstr "新增数据库"
+#, fuzzy
+msgid "Add Divider"
+msgstr "分隔"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "增加过滤条件"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "隐藏Layer"
 
 msgid "Add Log"
 msgstr "新增日志"
 
-msgid "Add Metric"
-msgstr "新增指标"
-
 msgid "Add Report"
 msgstr "新增报告"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "排除角色"
+
 #, fuzzy
 msgid "Add Rule"
 msgstr "新增规则"
@@ -847,6 +830,10 @@ msgstr "新增规则"
 msgid "Add Tag"
 msgstr "新增标签"
 
+#, fuzzy
+msgid "Add User"
+msgstr "新增规则"
+
 msgid "Add a Plugin"
 msgstr "新增插件"
 
@@ -930,9 +917,6 @@ msgid ""
 "displayed in the filter."
 msgstr "为控制筛选器的源查询添加筛选条件,但这只限于自动完成的上下文,即这些条件不会影响筛选器在仪表板上的应用方式。当你希望通过只扫描底层数据的一个子集来提高查询性能,或者限制筛选器中显示的可用值范围时,这一点特别有用。"
 
-msgid "Add filters and dividers"
-msgstr "添加过滤器和分隔符"
-
 msgid "Add item"
 msgstr "增加条件"
 
@@ -948,6 +932,10 @@ msgstr "增加新的的颜色格式化器"
 msgid "Add new formatter"
 msgstr "新增格式化"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "范围过滤"
+
 msgid "Add required control values to preview chart"
 msgstr "添加必需的控制值以预览图表"
 
@@ -971,13 +959,14 @@ msgstr "给看板添加名称"
 msgid "Add to dashboard"
 msgstr "添加到看板"
 
-#, fuzzy
-msgid "Add/Edit Filters"
-msgstr "增加过滤条件"
-
 msgid "Added"
 msgstr "已添加"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -992,9 +981,6 @@ msgstr "可能需要额外的字段"
 msgid "Additional information"
 msgstr "附加信息"
 
-msgid "Additional metadata"
-msgstr "附加元数据"
-
 msgid "Additional padding for legend."
 msgstr "图例额外的内边距。"
 
@@ -1064,6 +1050,14 @@ msgstr "高级数据类型"
 msgid "Advanced-Analytics"
 msgstr "高级分析"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "选择图表"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "选择看板"
+
 msgid "After"
 msgstr "之后"
 
@@ -1095,6 +1089,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "合计"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "合计"
+
 msgid "Aggregation function"
 msgstr "聚合功能"
 
@@ -1175,6 +1173,10 @@ msgstr "对齐 +/-"
 msgid "All"
 msgstr "所有"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "表的列"
+
 msgid "All Text"
 msgstr "所有文本"
 
@@ -1190,26 +1192,14 @@ msgstr "所有过滤器"
 msgid "All panels"
 msgstr "应用于所有面板"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr "包含此列的所有面板都将受到此过滤条件的影响"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "允许 CREATE TABLE AS"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "在 SQL 编辑器中允许 CREATE TABLE AS 选项"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "允许 CREATE VIEW AS"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "在 SQL 编辑器中允许 CREATE VIEW AS 选项"
-
-msgid "Allow Csv Upload"
-msgstr "允许Csv上传"
-
-msgid "Allow DML"
-msgstr "允许 DML"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr ""
@@ -1225,6 +1215,10 @@ msgstr "允许列重排"
 msgid "Allow creation of new tables based on queries"
 msgstr "允许基于查询创建新表"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "允许基于查询创建新视图"
+
 msgid "Allow creation of new views based on queries"
 msgstr "允许基于查询创建新视图"
 
@@ -1240,28 +1234,24 @@ msgstr "允许最终用户通过拖放列标题来重新排列它们。请注意
 msgid "Allow file uploads to database"
 msgstr "允许上传文件到数据库"
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr "允许使用非SELECT语句(如UPDATE、DELETE、CREATE等)操作数据库。"
-
 msgid "Allow node selections"
 msgstr "允许节点选择"
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr "允许使用多个多边形来过滤事件"
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "允许浏览此数据库"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "允许在SQL工具箱中查询此数据库"
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
-msgstr "允许用户在 SQL 编辑器中运行非 SELECT 语句(UPDATE,DELETE,CREATE,...)"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "允许的域名(逗号分隔)"
 
@@ -1303,6 +1293,10 @@ msgstr "向数据库传递单个参数时必须指定引擎。"
 msgid "An error has occurred"
 msgstr "发生了一个错误"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "获取数据集时出错:%s"
+
 msgid "An error occurred"
 msgstr "发生了一个错误"
 
@@ -1313,6 +1307,10 @@ msgstr "保存数据集时发生错误"
 msgid "An error occurred when running alert query"
 msgstr "精简日志时出错 "
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "访问值时出错。"
+
 msgid "An error occurred while accessing the value."
 msgstr "访问值时出错。"
 
@@ -1325,6 +1323,10 @@ msgstr "收起表结构时出错。请与管理员联系。"
 msgid "An error occurred while creating %ss: %s"
 msgstr "创建时出错:%ss: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "创建值时出错。"
+
 msgid "An error occurred while creating the data source"
 msgstr "创建数据源时发生错误"
 
@@ -1461,6 +1463,10 @@ msgid ""
 "button."
 msgstr "在后端存储查询时出错。为避免丢失更改,请使用 \"保存查询\" 按钮保存查询。"
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "抓取出错:%ss: %s"
+
 msgid "An error occurred while updating the value."
 msgstr "更新值时出错。"
 
@@ -1649,12 +1655,6 @@ msgstr "应用过滤器"
 msgid "Apply metrics on"
 msgstr "应用指标到"
 
-msgid "Apply to all panels"
-msgstr "应用于所有面板"
-
-msgid "Apply to specific panels"
-msgstr "应用于特定面板"
-
 msgid "April"
 msgstr "四月"
 
@@ -1698,6 +1698,10 @@ msgstr "确实要删除选定的图层吗?"
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "您确实要删除选定的查询吗?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "确实要删除选定的图层吗?"
+
 #, fuzzy
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "确实要删除选定的图层吗?"
@@ -1709,6 +1713,10 @@ msgstr "确实要删除选定的 %s 吗?"
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "确实要删除选定的模板吗?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "您确实要删除选定的查询吗?"
+
 #, fuzzy
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "确实要删除选定的数据集吗?"
@@ -1750,15 +1758,13 @@ msgstr "数据集参数无效。"
 msgid "Assist"
 msgstr "关联"
 
-msgid "Associated Charts"
-msgstr "关联的图表"
-
-msgid "Async Execution"
-msgstr "异步执行查询"
-
 msgid "Asynchronous query execution"
 msgstr "异步执行查询"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "分布"
+
 msgid "August"
 msgstr "八月"
 
@@ -1785,6 +1791,17 @@ msgstr "自动补全查询谓词"
 msgid "Automatic Color"
 msgstr "自动配色"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "自定义列"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "自定义列"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "可用分类模式:"
 
@@ -1792,6 +1809,9 @@ msgstr "可用分类模式:"
 msgid "Average"
 msgstr "平均值"
 
+msgid "Average (Mean)"
+msgstr ""
+
 #, fuzzy
 msgid "Average value"
 msgstr "平均值"
@@ -1833,6 +1853,10 @@ msgstr "返回到列表"
 msgid "Backend"
 msgstr "后端"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "背景"
+
 #, fuzzy
 msgid "Backward values"
 msgstr "向后数值"
@@ -1850,10 +1874,6 @@ msgstr "柱"
 msgid "Bar Chart"
 msgstr "柱状图"
 
-#, fuzzy
-msgid "Bar Chart (legacy)"
-msgstr "柱状图(传统)"
-
 #, fuzzy
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr "柱状图用于将指标以一系列柱状显示。"
@@ -1869,10 +1889,25 @@ msgstr "方向"
 msgid "Base"
 msgstr "基础"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "数据库端口"
+
+#, fuzzy
+msgid "Base height"
+msgstr "图表高度"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "线宽"
+
 msgid "Based on a metric"
 msgstr "基于指标"
 
@@ -1892,9 +1927,6 @@ msgstr "基本情况"
 msgid "Batch editing %d filters:"
 msgstr "批量编辑 %d 个过滤条件:"
 
-msgid "Battery level over time"
-msgstr "电池电量随时间变化"
-
 msgid "Be careful."
 msgstr "小心。"
 
@@ -1917,6 +1949,14 @@ msgstr "带趋势线的数字"
 msgid "Bins"
 msgstr "处于"
 
+#, fuzzy
+msgid "Border color"
+msgstr "系列颜色"
+
+#, fuzzy
+msgid "Border width"
+msgstr "边缘宽度"
+
 msgid "Bottom"
 msgstr "底端"
 
@@ -2031,9 +2071,6 @@ msgstr "子弹图"
 msgid "Business"
 msgstr "商业"
 
-msgid "Business Data Type"
-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"
@@ -2104,8 +2141,8 @@ msgid "CSS templates could not be deleted."
 msgstr "CSS模板不能被删除"
 
 #, fuzzy
-msgid "CSV Upload"
-msgstr "允许CSV上传"
+msgid "CSV upload"
+msgstr "上传"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "CTAS和CVAS方案"
@@ -2118,8 +2155,9 @@ msgstr ""
 "CTA(create table as "
 "select)只能与最后一条语句为SELECT的查询一起运行。请确保查询的最后一个语句是SELECT。然后再次尝试运行查询。"
 
-msgid "CTAS Schema"
-msgstr "CTAS 模式"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "自定义"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2135,9 +2173,6 @@ msgstr "CVAS (create view as select)查询有多条语句。"
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "CVAS (create view as select)查询不是SELECT语句。"
 
-msgid "Cache Timeout"
-msgstr "缓存超时"
-
 msgid "Cache Timeout (seconds)"
 msgstr "缓存超时(秒)"
 
@@ -2185,9 +2220,6 @@ msgstr "无法将顶级选项卡移动到嵌套选项卡中"
 msgid "Can select multiple values"
 msgstr "允许选择多个值"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "Series 和 Breakdown 之间不能有重叠"
-
 msgid "Cancel"
 msgstr "取消"
 
@@ -2200,6 +2232,10 @@ msgstr "无法访问查询"
 msgid "Cannot delete a database that has datasets attached"
 msgstr "无法删除附加了数据集的数据库"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr ""
 
@@ -2210,6 +2246,10 @@ msgstr "无法加载筛选器"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "无法解析时间字符串[%(human_readable)s]"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "分区图"
+
 #, fuzzy
 msgid "Catalog"
 msgstr "标签"
@@ -2294,13 +2334,14 @@ msgstr "更改列的顺序。"
 msgid "Change order of rows."
 msgstr "更改行的顺序。"
 
-msgid "Changed By"
-msgstr "修改人"
-
 #, fuzzy
 msgid "Changed by"
 msgstr "修改人"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "范围"
+
 msgid "Changes saved."
 msgstr "修改已保存"
 
@@ -2351,9 +2392,6 @@ msgstr "图表"
 msgid "Chart %(id)s not found"
 msgstr "图表 %(id)s 没有找到"
 
-msgid "Chart Cache Timeout"
-msgstr "表缓存超时"
-
 #, fuzzy, python-format
 msgid "Chart Data: %s"
 msgstr "上次更新 %s"
@@ -2456,6 +2494,10 @@ msgstr "图表参数无效。"
 msgid "Chart properties updated"
 msgstr "编辑图表属性"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "图表"
+
 #, fuzzy
 msgid "Chart title"
 msgstr "图表标题"
@@ -2505,6 +2547,10 @@ msgstr "[点半径] 的选择项必须出现在 [Group By]"
 msgid "Choose File"
 msgstr "选择文件"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "选择图表或看板,不能都全部选择"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "选择图表或看板,不能都全部选择"
 
@@ -2527,9 +2573,6 @@ msgstr "选择一种数字格式"
 msgid "Choose a source"
 msgstr "选择一个源"
 
-msgid "Choose a source and a target"
-msgstr "选择一个源和一个目标"
-
 msgid "Choose a target"
 msgstr "选择一个目标"
 
@@ -2615,9 +2658,6 @@ msgstr "圆形雷达图"
 msgid "Circular"
 msgstr "圆"
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2640,7 +2680,10 @@ msgstr "清除所有"
 msgid "Clear form"
 msgstr "清除表单"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
 msgstr "点击“+添加/编辑过滤器”按钮来创建新的看板过滤器。"
 
 msgid ""
@@ -2667,6 +2710,10 @@ msgstr "单击此链接可切换到仅显示连接此数据库所需的必填字
 msgid "Click to add a contour"
 msgstr "点击添加等高线"
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "点击添加等高线"
+
 msgid "Click to cancel sorting"
 msgstr "点击取消排序"
 
@@ -2795,14 +2842,14 @@ msgstr "列\"%(column)s\"不是数字或不在查询结果中"
 msgid "Column Configuration"
 msgstr "列配置"
 
-#, fuzzy
-msgid "Column Data Types"
-msgstr "列数据类型"
-
 #, fuzzy
 msgid "Column Formatting"
 msgstr "列格式"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "多边形设置"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2818,10 +2865,6 @@ msgstr "包含经度数据的列"
 msgid "Column data types"
 msgstr "列数据类型"
 
-#, fuzzy
-msgid "Column datatype"
-msgstr "列数据类型"
-
 #, fuzzy
 msgid "Column header tooltip"
 msgstr "列标题提示"
@@ -2851,19 +2894,19 @@ msgid ""
 msgstr "字段作为数据文件的行标签使用。如果没有索引字段,则留空。"
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
+msgstr "列数据类型"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "列式存储文件"
 
 msgid "Columns"
 msgstr "列"
 
-#, fuzzy
-msgid "Columns To Be Parsed as Dates"
-msgstr "应作为日期解析的列的逗号分隔列表。"
-
-#, fuzzy
-msgid "Columns To Read"
-msgstr "要读取的列"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s 列"
 
 #, fuzzy, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2876,6 +2919,10 @@ msgstr "数据源中缺少列:%(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr "列的小计位置"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "应作为日期解析的列的逗号分隔列表。"
+
 #, fuzzy
 msgid "Columns to calculate distribution across."
 msgstr "计算分布的列。如果留空,则默认为临时列。"
@@ -2892,6 +2939,10 @@ msgstr "列上分组所依据的列"
 msgid "Columns to group by on the rows"
 msgstr "行上分组所依据的列"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "要读取的列"
+
 msgid "Combine metrics"
 msgstr "整合指标"
 
@@ -2926,17 +2977,6 @@ msgid ""
 "and color."
 msgstr "比较指标在不同组之间随时间的变化情况。每一组被映射到一行,并且随着时间的变化被可视化地显示条的长度和颜色。"
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr "比较不同活动在共享时间线视图中所花费的时间长度。"
-
 msgid "Comparison"
 msgstr "比较"
 
@@ -2997,12 +3037,19 @@ msgstr "配置过滤范围"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "注释层基本配置"
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr "配置此仪表板,以便将其嵌入到外部网络应用程序中。"
 
 msgid "Configure your how you overlay is displayed here."
 msgstr "配置如何在这里显示您的标注。"
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "显示密码"
+
 #, fuzzy
 msgid "Confirm overwrite"
 msgstr "确认保存"
@@ -3010,6 +3057,9 @@ msgstr "确认保存"
 msgid "Confirm save"
 msgstr "确认保存"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "连接"
 
@@ -3041,9 +3091,6 @@ msgstr "连接失败,请检查您的连接配置"
 msgid "Connection failed, please check your connection settings."
 msgstr "连接失败,请检查您的连接配置"
 
-msgid "Connection looks good!"
-msgstr "连接测试成功!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "日期格式化"
@@ -3085,21 +3132,21 @@ msgstr "复制到剪贴板!"
 msgid "Copy"
 msgstr "复制"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "将 SELECT 语句复制到剪贴板"
 
+msgid "Copy URL"
+msgstr ""
+
 msgid "Copy and Paste JSON credentials"
 msgstr "复制和粘贴JSON凭据"
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "复制服务帐户的json文件复制并粘贴到此处"
-
 msgid "Copy link"
 msgstr "复制链接"
 
-msgid "Copy message"
-msgstr "复制信息"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "%s 的副本"
@@ -3117,6 +3164,9 @@ msgstr "复制查询URL"
 msgid "Copy query link to your clipboard"
 msgstr "将查询链接复制到剪贴板"
 
+msgid "Copy the current data"
+msgstr ""
+
 #, fuzzy
 msgid "Copy the identifier of the account you are trying to connect to."
 msgstr "将尝试连接的账号复制到这里"
@@ -3134,6 +3184,10 @@ msgstr "复制到剪贴板"
 msgid "Copy to clipboard"
 msgstr "复制到剪贴板"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "内半径"
+
 msgid "Correlation"
 msgstr "相关性"
 
@@ -3163,6 +3217,9 @@ msgstr "无法加载数据库驱动程序:{}"
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 #, fuzzy
 msgid "Count"
 msgstr "计数"
@@ -3262,6 +3319,9 @@ msgstr "创建数据源,并弹出一个新的选项卡"
 msgid "Creator"
 msgstr "作者"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 #, fuzzy
 msgid "Crimson"
 msgstr "血红色"
@@ -3355,6 +3415,9 @@ msgstr ""
 msgid "Custom color palettes"
 msgstr "自动补全"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "自定义"
@@ -3389,9 +3452,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr ""
 
-msgid "D3 Format"
-msgstr "D3 格式"
-
 msgid "D3 format"
 msgstr "D3 格式"
 
@@ -3453,19 +3513,38 @@ msgstr "看板 [%s] 刚刚被创建,并且图表 [%s] 已被添加到其中"
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr "看板 [{}] 刚刚被创建,并且图表 [{}] 已被添加到其中"
 
-msgid "Dashboard could not be deleted."
-msgstr "看板无法被删除。"
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
 
-msgid "Dashboard could not be updated."
+#, fuzzy
+msgid "Dashboard cannot be favorited."
 msgstr "看板无法更新。"
 
-msgid "Dashboard does not exist"
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "看板无法更新。"
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "看板无法更新。"
+
+msgid "Dashboard could not be deleted."
+msgstr "看板无法被删除。"
+
+msgid "Dashboard could not be updated."
+msgstr "看板无法更新。"
+
+msgid "Dashboard does not exist"
 msgstr "看板不存在"
 
 #, fuzzy
 msgid "Dashboard imported"
 msgstr "看板已导入"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "看板无法更新。"
+
 msgid "Dashboard parameters are invalid."
 msgstr "看板参数无效。"
 
@@ -3511,10 +3590,6 @@ msgstr "虚线"
 msgid "Data"
 msgstr "数据"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "数据集已导入"
-
 msgid "Data Table"
 msgstr "数据表"
 
@@ -3539,6 +3614,10 @@ msgstr "无法从结果后端检索数据。您需要重新运行原始查询。
 msgid "Data for %s"
 msgstr "给JS的额外数据"
 
+#, fuzzy
+msgid "Data imported"
+msgstr "数据集已导入"
+
 msgid "Data preview"
 msgstr "数据预览"
 
@@ -3703,13 +3782,6 @@ msgid ""
 "database table to the left or "
 msgstr "数据集可以基于数据库表或SQL查询创建。请在左侧选择一个数据库表或者"
 
-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 ""
-
 #, fuzzy
 msgid "Datasets could not be deleted."
 msgstr "无法删除数据集"
@@ -3746,9 +3818,6 @@ msgstr "日期格式字符串"
 msgid "Date/Time"
 msgstr "日期/时间"
 
-msgid "Datetime Format"
-msgstr "时间格式"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3777,13 +3846,12 @@ msgstr "禁用"
 msgid "December"
 msgstr "十二月"
 
-msgid "Decides which column to sort the base axis by."
-msgstr ""
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "决定按哪个度量来对基轴进行排序。"
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "十进制字符"
 
 msgid "Deck.gl - 3D Grid"
@@ -3829,9 +3897,6 @@ msgstr "减少"
 msgid "Default Catalog"
 msgstr "缺省值"
 
-msgid "Default Endpoint"
-msgstr "默认端点"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "选择方案"
@@ -3839,8 +3904,11 @@ msgstr "选择方案"
 msgid "Default URL"
 msgstr "默认URL"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
-msgstr "从数据集列表页访问时重定向到的默认URL"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
+msgstr ""
 
 msgid "Default Value"
 msgstr "缺省值"
@@ -3860,9 +3928,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr "默认最小列宽(以像素为单位),如果其他列不需要太多空间,则实际宽度可能仍大于此值"
 
-msgid "Default value is required"
-msgstr "需要默认值"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr "选中筛选器具有默认值时,必须设置默认值"
 
@@ -3909,9 +3974,6 @@ msgid ""
 "[Periods] text box"
 msgstr "定义要应用的滚动窗口函数,与 [期限] 文本框一起使用"
 
-msgid "Defines how each series is broken down"
-msgstr "定义每个序列是如何被分解的"
-
 msgid "Defines the grid size in pixels"
 msgstr ""
 
@@ -3966,9 +4028,17 @@ msgstr "确定删除查询?"
 msgid "Delete Report?"
 msgstr "删除报表?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "删除"
+
 msgid "Delete Template?"
 msgstr "删除模板?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "确定删除查询?"
+
 msgid "Delete all Really?"
 msgstr "确定删除全部?"
 
@@ -3987,12 +4057,20 @@ msgstr "删除邮件报告"
 msgid "Delete query"
 msgstr "删除查询"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "删除"
+
 msgid "Delete template"
 msgstr "删除模板"
 
 msgid "Delete this container and save to remove this message."
 msgstr "删除此容器并保存以移除此消息。"
 
+#, fuzzy
+msgid "Delete user"
+msgstr "删除查询"
+
 #, fuzzy
 msgid "Deleted"
 msgstr "删除"
@@ -4046,13 +4124,30 @@ msgstr[0] "删除 %(num)d 个保存的查询"
 msgid "Deleted %s"
 msgstr "已删除:%s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "已删除:%s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "已删除:%s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "已删除:%s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "已删除:%s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "已删除:%s"
 
+#, fuzzy
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr "删除一个标签页将会移除其中的所有内容。您仍然可以回退这个操作,点击"
 
 msgid "Delimited long & lat single column"
@@ -4064,9 +4159,6 @@ msgstr "分隔符"
 msgid "Delivery method"
 msgstr "发送方式"
 
-msgid "Demographics"
-msgstr "人口统计"
-
 msgid "Density"
 msgstr "密度"
 
@@ -4074,9 +4166,6 @@ msgstr "密度"
 msgid "Dependent on"
 msgstr "取决于"
 
-msgid "Deprecated"
-msgstr "过时"
-
 msgid "Description"
 msgstr "描述"
 
@@ -4173,10 +4262,6 @@ msgstr "这个数据集没有返回预览数据"
 msgid "Discard"
 msgstr "取消"
 
-#, fuzzy
-msgid "Display"
-msgstr "显示"
-
 msgid "Display Name"
 msgstr "显示名称"
 
@@ -4184,6 +4269,10 @@ msgstr "显示名称"
 msgid "Display all"
 msgstr "显示名称"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "显示列级别合计"
+
 #, fuzzy
 msgid "Display column level subtotal"
 msgstr "显示列级别小计"
@@ -4191,6 +4280,10 @@ msgstr "显示列级别小计"
 msgid "Display column level total"
 msgstr "显示列级别合计"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "显示列级别合计"
+
 msgid "Display configuration"
 msgstr "显示配置"
 
@@ -4213,8 +4306,8 @@ msgid "Display row level total"
 msgstr "显示行级合计"
 
 #, fuzzy
-msgid "Display settings"
-msgstr "显示配置"
+msgid "Display type icon"
+msgstr "时间类型图标"
 
 msgid ""
 "Displays connections between entities in a graph structure. Useful for "
@@ -4229,9 +4322,6 @@ msgstr "基于某列进行分布"
 msgid "Distribution"
 msgstr "分布"
 
-msgid "Distribution - Bar Chart"
-msgstr "分布 - 柱状图"
-
 msgid "Divider"
 msgstr "分隔"
 
@@ -4262,9 +4352,18 @@ msgstr "下载为图片"
 msgid "Download as image"
 msgstr "下载为图片"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "下载为CSV"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "草稿"
 
@@ -4361,6 +4460,14 @@ msgstr "重复的列/指标标签:%(labels)s。请确保所有列和指标都
 msgid "Duplicate dataset"
 msgstr "复制数据集"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "复制"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "重复的列名%(columns)s"
+
 msgid "Duplicate tab"
 msgstr "复制选项卡"
 
@@ -4374,17 +4481,6 @@ msgid ""
 "the cache. Note this defaults to the global timeout if undefined."
 msgstr "该数据库图表缓存超时的持续时间(单位为秒)。超时时间设置为0表示缓存永不过期,设置为-1则表示绕过缓存。如果未定义,此项默认采用全局超时设置。"
 
-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 ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-msgstr "此图表的缓存超时持续时间(单位为秒)。如果未定义,该设置将默认使用数据源/数据库表的超时设置。"
-
 #, fuzzy
 msgid ""
 "Duration (in seconds) of the caching timeout for this chart. Set to -1 to"
@@ -4392,12 +4488,6 @@ msgid ""
 "undefined."
 msgstr "此图表缓存过期时间的时长(单位为秒)。设置为 -1 可以绕过缓存。如果未定义,将默认使用数据集的超时设置。"
 
-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 ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4415,6 +4505,10 @@ msgstr "时长(毫秒)(1.40008 => 1ms 400µs 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "时长(毫秒)(1.40008 => 1ms 400µs 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "时长(毫秒)(66000 => 1m 6s)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "时长(毫秒)(66000 => 1m 6s)"
 
@@ -4439,10 +4533,6 @@ msgstr "结束"
 msgid "ERROR"
 msgstr "错误"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "错误: %s"
-
 msgid "Edge length"
 msgstr "边长"
 
@@ -4467,48 +4557,41 @@ msgstr "编辑CSS"
 msgid "Edit CSS template properties"
 msgstr "编辑CSS模板属性"
 
-msgid "Edit Chart"
-msgstr "编辑图表"
-
 #, fuzzy
 msgid "Edit Chart Properties"
 msgstr "编辑图表属性"
 
-msgid "Edit Column"
-msgstr "编辑列"
-
 msgid "Edit Dashboard"
 msgstr "编辑看板"
 
-msgid "Edit Database"
-msgstr "编辑数据库"
-
 msgid "Edit Dataset "
 msgstr "编辑数据集"
 
 msgid "Edit Log"
 msgstr "编辑日志"
 
-msgid "Edit Metric"
-msgstr "编辑指标"
-
 msgid "Edit Plugin"
 msgstr "编辑插件"
 
 msgid "Edit Report"
 msgstr "编辑报告"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "编辑模式"
+
 #, fuzzy
 msgid "Edit Rule"
 msgstr "编辑规则"
 
-msgid "Edit Table"
-msgstr "编辑表"
-
 #, fuzzy
 msgid "Edit Tag"
 msgstr "编辑标签"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "编辑查询"
+
 msgid "Edit annotation"
 msgstr "编辑注释"
 
@@ -4546,6 +4629,10 @@ msgstr "编辑属性"
 msgid "Edit query"
 msgstr "编辑查询"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "编辑模式"
+
 msgid "Edit template"
 msgstr "编辑模板"
 
@@ -4559,6 +4646,10 @@ msgstr "编辑看板"
 msgid "Edit time range"
 msgstr "编辑时间范围"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "编辑查询"
+
 msgid "Edited"
 msgstr "已编辑"
 
@@ -4585,6 +4676,14 @@ msgstr "用户名或密码错误。"
 msgid "Elevation"
 msgstr "执行时间"
 
+#, fuzzy
+msgid "Email"
+msgstr "详细信息"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "需要值"
+
 msgid "Email reports active"
 msgstr "激活邮件报告"
 
@@ -4602,6 +4701,10 @@ msgstr "嵌入代码"
 msgid "Embed dashboard"
 msgstr "嵌入看板"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "看板无法被删除。"
+
 msgid "Embedding deactivated."
 msgstr "解除嵌入。"
 
@@ -4612,9 +4715,6 @@ msgstr "发送过滤器事件"
 msgid "Emphasis"
 msgstr "重点"
 
-msgid "Employment and education"
-msgstr "就业和教育"
-
 msgid "Empty circle"
 msgstr "空心圆"
 
@@ -4638,9 +4738,6 @@ msgstr "空的行"
 msgid "Enable 'Allow file uploads to database' in any database's settings"
 msgstr "在数据库设置中启用“允许上传文件到数据库”"
 
-msgid "Enable Filter Select"
-msgstr "启用过滤器选择"
-
 #, fuzzy
 msgid "Enable cross-filtering"
 msgstr "启用交叉筛选"
@@ -4746,12 +4843,26 @@ msgstr "报告名称"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "请输入必要的 %(dbModelName)s 的凭据"
 
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "告警名称"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "告警名称"
+
+msgid "Enter the user's username"
+msgstr ""
+
 msgid "Entity"
 msgstr "实体"
 
-msgid "Entity ID"
-msgstr "实体ID"
-
 msgid "Equal Date Sizes"
 msgstr "相同的日期大小"
 
@@ -4765,6 +4876,14 @@ msgstr "错误"
 msgid "Error Fetching Tagged Objects"
 msgstr "获取标签对象错误"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "获取数据时出错:%s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "保存数据集时发生错误"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr "jinja表达式中的HAVING子句出错:%(msg)s"
@@ -4787,6 +4906,10 @@ msgstr "加载图表数据源时出错。过滤器可能无法正常工作。"
 msgid "Error message"
 msgstr "错误信息"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "错误(暗色)"
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "保存数据集时发生错误"
@@ -4803,6 +4926,22 @@ msgstr "上传Excel"
 msgid "Error saving dataset"
 msgstr "保存数据集时发生错误"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "保存数据集时发生错误"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "获取图表时出错"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "获取图表时出错"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "获取图表时出错"
+
 msgid "Error while fetching charts"
 msgstr "获取图表时出错"
 
@@ -4810,10 +4949,30 @@ msgstr "获取图表时出错"
 msgid "Error while fetching data: %s"
 msgstr "获取数据时出错:%s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "获取图表时出错"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "获取图表时出错"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "获取图表时出错"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "保存查询时出错:%(msg)s"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "获取图表时出错"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "获取图表时出错"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "错误:%(error)s"
@@ -4839,15 +4998,6 @@ msgstr "在运行查询之前计算成本估算"
 msgid "Event"
 msgstr "事件"
 
-msgid "Event Flow"
-msgstr "事件流"
-
-msgid "Event Names"
-msgstr "事件名称"
-
-msgid "Event definition"
-msgstr "事件定义"
-
 msgid "Event flow"
 msgstr "事件流"
 
@@ -4869,13 +5019,13 @@ msgstr "例子"
 msgid "Examples"
 msgstr "示例"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "CSV上传"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "CSV上传"
+
 msgid "Exclude selected values"
 msgstr "排除选定的值"
 
@@ -4971,12 +5121,6 @@ msgstr "导出为PDF"
 msgid "Export to Pivoted .CSV"
 msgstr "导出为透视表形式的CSV"
 
-msgid "Export to YAML"
-msgstr "导出为YAML"
-
-msgid "Export to YAML?"
-msgstr "导出到YAML?"
-
 #, fuzzy
 msgid "Export to full .CSV"
 msgstr "导出全量CSV"
@@ -4997,11 +5141,9 @@ msgstr "在SQL工具箱中展示数据库"
 msgid "Expose in SQL Lab"
 msgstr "在 SQL 工具箱中展示"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "在 SQL 工具箱中展示这个数据库"
-
-msgid "Expression"
-msgstr "表达式"
+#, fuzzy
+msgid "Extent"
+msgstr "最近"
 
 msgid "Extra"
 msgstr "扩展"
@@ -5025,10 +5167,6 @@ msgstr ""
 " Platform Team\", \"details\": \"This table is the source of truth.\" } "
 "}`."
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "JSON无法解码额外字段。%(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "用于jinja模板化查询的额外参数"
 
@@ -5047,6 +5185,10 @@ msgstr "拉伸"
 msgid "FEB"
 msgstr "二月"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "编辑数据集"
+
 msgid "FRI"
 msgstr "星期五"
 
@@ -5056,16 +5198,15 @@ msgstr "因子"
 msgid "Factor to multiply the metric by"
 msgstr "用于乘以度量值的因子"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "失败"
 
 msgid "Failed at retrieving results"
 msgstr "检索结果失败"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "停止查询失败。 %s"
-
 msgid "Failed to create report"
 msgstr "创建报告发生错误"
 
@@ -5096,6 +5237,10 @@ msgstr "保存交叉筛选作用域失败"
 msgid "Failed to start remote query on a worker."
 msgstr "无法启动远程查询"
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "停止查询失败。 %s"
+
 #, fuzzy
 msgid "Failed to tag items"
 msgstr "给对象打标签失败"
@@ -5119,9 +5264,6 @@ msgstr ""
 msgid "February"
 msgstr "二月"
 
-msgid "Fetch Values Predicate"
-msgstr "取值谓词"
-
 msgid "Fetch data preview"
 msgstr "获取数据预览"
 
@@ -5147,15 +5289,12 @@ msgstr "字段是必需的"
 msgid "File"
 msgstr "文件"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "过滤器设置"
-
 msgid "File extension is not allowed."
 msgstr ""
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "过滤器设置"
 
 #, fuzzy
 msgid "File upload"
@@ -5228,9 +5367,6 @@ msgstr "过滤器值列表不能为空"
 msgid "Filter your charts"
 msgstr "过滤您的图表"
 
-msgid "Filterable"
-msgstr "可过滤"
-
 msgid "Filters"
 msgstr "过滤"
 
@@ -5243,6 +5379,16 @@ msgstr "按指标过滤"
 msgid "Filters for comparison must have a value"
 msgstr "用于比较的过滤器必须有值"
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "`行限制` 必须大于或等于0"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "过滤器超出范围(%d)"
@@ -5272,6 +5418,14 @@ msgstr "完成"
 msgid "First"
 msgstr "第一个值"
 
+#, fuzzy
+msgid "First name"
+msgstr "图表名称"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "需要名称"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5351,6 +5505,10 @@ msgstr "强制日期格式化"
 msgid "Force refresh"
 msgstr "强制刷新"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "强制刷新模式列表"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "强制刷新表列表"
@@ -5479,6 +5637,10 @@ msgstr "GeoJSON设置"
 msgid "Geohash"
 msgstr "Geohash"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "空的列"
+
 msgid "Get the last date by the date unit."
 msgstr "按日期单位获取最后的日期。"
 
@@ -5541,9 +5703,6 @@ msgstr "分组"
 msgid "Group by"
 msgstr "分组"
 
-msgid "Groupable"
-msgstr "可分组"
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5561,11 +5720,6 @@ msgstr "Handlebars模板"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr "应用于颜色编码的硬值边界。只有当对整个热图应用标准化时才是相关的和应用的。"
-
 #, fuzzy
 msgid "Has created by"
 msgstr "已创建"
@@ -5573,9 +5727,6 @@ msgstr "已创建"
 msgid "Header"
 msgstr "标题行"
 
-msgid "Header Row"
-msgstr "标题行"
-
 #, fuzzy
 msgid "Header row"
 msgstr "标题行"
@@ -5583,12 +5734,6 @@ msgstr "标题行"
 msgid "Heatmap"
 msgstr "热力图"
 
-msgid "Heatmap (legacy)"
-msgstr "热力图(传统)"
-
-msgid "Heatmap Options"
-msgstr "热图选项"
-
 msgid "Height"
 msgstr "高度"
 
@@ -5596,6 +5741,10 @@ msgstr "高度"
 msgid "Height of the sparkline"
 msgstr "迷你图的高度"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "时间列"
+
 #, fuzzy
 msgid "Hide Line"
 msgstr "隐藏线"
@@ -5624,10 +5773,6 @@ msgstr "层次"
 msgid "Histogram"
 msgstr "直方图"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "热力图(传统)"
-
 msgid "Home"
 msgstr "主页"
 
@@ -5705,30 +5850,22 @@ msgstr ""
 "hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据 hive.server2.proxy.user "
 "的属性伪装当前登录用户。"
 
-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.<br/>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 工具箱中的所有查询都将被当前登录的用户执行,并且这些用户必须拥有运行它们的权限。<br/>如果启用 Hive "
-"和hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据hive.server2.proxy.user的属性伪装当前登录用户。"
-
-#, fuzzy
-msgid "If Table Already Exists"
-msgstr "如果表已存在"
-
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr "如果指定了度量,则将根据该度量值进行排序"
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr "如果选择,请额外设置csv上传允许的模式。"
+#, fuzzy
+msgid "If table already exists"
+msgstr "标签已存在"
 
 #, fuzzy
 msgid "Ignore cache when generating report"
@@ -5749,9 +5886,6 @@ msgstr "图片发送失败,请刷新或重试"
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr "模拟登录用户 (Presto, Trino, Drill & Hive)"
 
-msgid "Impersonate the logged on user"
-msgstr "模拟登录用户"
-
 msgid "Import"
 msgstr "导入"
 
@@ -5762,9 +5896,6 @@ msgstr "导入 %s"
 msgid "Import Dashboard(s)"
 msgstr "导入看板"
 
-msgid "Import a table definition"
-msgstr "导入一个已定义的表"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "导入图表失败,原因未知"
 
@@ -5795,15 +5926,15 @@ msgstr "导入查询"
 msgid "Import saved query failed for an unknown reason."
 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 "很重要!如果表尚未按实体ID排序,则选择此项,否则无法保证返回每个实体的所有事件。"
-
 #, fuzzy
 msgid "In"
 msgstr ""
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "包含系列"
 
@@ -5828,17 +5959,18 @@ msgstr "增加"
 msgid "Index"
 msgstr "索引"
 
-msgid "Index Column"
-msgstr "索引字段"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "范围标签"
+msgid "Index column"
+msgstr "线段列"
 
 #, fuzzy
 msgid "Index label"
 msgstr "范围标签"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "查看键和索引(%s)"
+
 msgid "Info"
 msgstr "信息"
 
@@ -5857,6 +5989,13 @@ msgstr "输入自定义宽度(像素)"
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr "输入字段支持自定义。例如,30代表30°"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "隐藏Layer"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "强度"
 
@@ -5889,10 +6028,6 @@ msgstr "间隔开始列"
 msgid "Intervals"
 msgstr "间隔"
 
-#, fuzzy
-msgid "Intesity"
-msgstr "强度"
-
 #, fuzzy
 msgid ""
 "Invalid Connection String: Expecting String of the form "
@@ -5939,6 +6074,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr "无效的日期/时间戳格式"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "选择框的操作类型无效: %(op)s"
@@ -6004,6 +6142,10 @@ msgstr "反选"
 msgid "Invert current page"
 msgstr "反转当前页"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "激活邮件报告"
+
 msgid "Is certified"
 msgstr "已认证"
 
@@ -6191,12 +6333,6 @@ msgstr "大"
 msgid "Last"
 msgstr "最后一个"
 
-msgid "Last Changed"
-msgstr "最后更新"
-
-msgid "Last Modified"
-msgstr "最后修改"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "最后更新 %s"
@@ -6205,6 +6341,10 @@ msgstr "最后更新 %s"
 msgid "Last Updated %s by %s"
 msgstr "最后由 %s 更新 %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "目标值"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr "到 %s 最后一个可用值"
@@ -6213,6 +6353,10 @@ msgstr "到 %s 最后一个可用值"
 msgid "Last day"
 msgstr "昨天"
 
+#, fuzzy
+msgid "Last login"
+msgstr "上一月"
+
 msgid "Last modified"
 msgstr "最后修改"
 
@@ -6220,6 +6364,14 @@ msgstr "最后修改"
 msgid "Last month"
 msgstr "上一月"
 
+#, fuzzy
+msgid "Last name"
+msgstr "数据集名称"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "需要名称"
+
 #, fuzzy
 msgid "Last quarter"
 msgstr "上一季度"
@@ -6235,15 +6387,42 @@ msgstr "上一周"
 msgid "Last year"
 msgstr "上一年"
 
+#, fuzzy
+msgid "Lat"
+msgstr "扁平"
+
 msgid "Latitude"
 msgstr "纬度"
 
 msgid "Latitude of default viewport"
 msgstr "默认视口纬度"
 
+#, fuzzy
+msgid "Layer"
+msgstr "年"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "告警名称"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "配置层"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "图表标题"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "过滤类型"
+
+#, fuzzy
+msgid "Layers"
+msgstr "警报"
+
 msgid "Layout"
 msgstr "布局"
 
@@ -6256,11 +6435,6 @@ msgstr "图形的布局类型"
 msgid "Layout type of tree"
 msgstr "树的布局类型"
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr "表示少于此数量的事件的叶节点最初将隐藏在可视化中"
-
 msgid "Least recently modified"
 msgstr "最近未经常修改"
 
@@ -6332,11 +6506,6 @@ msgstr "Like(区分大小写)"
 msgid "Limit type"
 msgstr "限制类型"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr "限制行数可能导致不完整的数据和误导性的图表。可以考虑过滤或分组源/目标名称。"
-
 #, fuzzy
 msgid "Limits the number of cells that get retrieved."
 msgstr "限制检索的单元格数量。"
@@ -6374,6 +6543,9 @@ msgid ""
 "chart common in many fields."
 msgstr "时间序列折线图用于可视化在规则时间间隔内进行的重复测量。折线图是一种图表,它将信息显示为一系列由直线段连接的数据点。它是许多领域中常见的一种基本类型的图表。"
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "由 d3.js 定义的线插值"
 
@@ -6404,10 +6576,17 @@ msgstr "线段编码"
 msgid "Link Copied!"
 msgstr "链接已复制!"
 
+msgid "List Roles"
+msgstr ""
+
 #, fuzzy
 msgid "List Unique Values"
 msgstr "列出唯一值"
 
+#, fuzzy
+msgid "List Users"
+msgstr "数字"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr "在JavaScript函数中可用的额外列列表"
 
@@ -6480,6 +6659,10 @@ msgstr "对数轴"
 msgid "Login"
 msgstr "登录"
 
+#, fuzzy
+msgid "Login count"
+msgstr "计数"
+
 #, fuzzy
 msgid "Login with"
 msgstr "登录方式"
@@ -6490,6 +6673,10 @@ msgstr "登出"
 msgid "Logs"
 msgstr "日志"
 
+#, fuzzy
+msgid "Lon"
+msgstr "位于"
+
 msgid "Long dashed"
 msgstr "长虚线"
 
@@ -6534,9 +6721,6 @@ msgstr "星期一"
 msgid "Main"
 msgstr "最小值"
 
-msgid "Main Datetime Column"
-msgstr "主日期列"
-
 #, fuzzy
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
@@ -6571,6 +6755,10 @@ msgstr "手工设置Y轴最大最小值"
 msgid "Map"
 msgstr "地图"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "热图选项"
+
 msgid "Map Style"
 msgstr "地图样式"
 
@@ -6613,14 +6801,17 @@ msgstr "标记"
 msgid "Markup type"
 msgstr "Markup 类型"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "最大值"
 
 msgid "Max Bubble Size"
 msgstr "最大气泡的尺寸"
 
-msgid "Max Events"
-msgstr "最大事件数"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "最大"
@@ -6631,6 +6822,9 @@ msgstr "最大字体大小"
 msgid "Maximum Radius"
 msgstr "最大半径"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6673,6 +6867,18 @@ msgstr "中位数值"
 msgid "Medium"
 msgstr "中"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -6769,12 +6975,6 @@ msgid ""
 "appropriate)."
 msgstr "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。"
 
-#, fuzzy
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。"
-
 msgid "Metrics"
 msgstr "指标"
 
@@ -6817,8 +7017,8 @@ msgstr "最小字体大小"
 msgid "Minimum Radius"
 msgstr "最小半径"
 
-msgid "Minimum leaf node event count"
-msgstr "叶节点最小事件数"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
 "Minimum radius size of the circle, in pixels. As the zoom level changes, "
@@ -6832,6 +7032,10 @@ msgstr "标签显示百分比最小阈值"
 msgid "Minimum value"
 msgstr "最小值"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "起始日期不能晚于结束日期"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "在图形上显示标签的最小值。"
 
@@ -6856,6 +7060,9 @@ msgstr "%s分钟"
 msgid "Minutes value"
 msgstr "最小值"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 #, fuzzy
 msgid "Missing URL parameters"
 msgstr "缺失URL参数"
@@ -6874,6 +7081,11 @@ msgstr "已修改"
 msgid "Modified %s"
 msgstr "最后修改 %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+
 msgid "Modified by"
 msgstr "修改人"
 
@@ -6881,10 +7093,6 @@ msgstr "修改人"
 msgid "Modified by: %s"
 msgstr "上次修改人 %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "修改的列:%s"
-
 msgid "Monday"
 msgstr "星期一"
 
@@ -6950,9 +7158,6 @@ msgstr "选择图表或看板,不能都全部选择"
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr "[Group By] 列必须要有 ‘count’字段作为 [标签]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "必须至少指明一个数值列"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr ""
 
@@ -6978,9 +7183,6 @@ msgstr "需要进行分组的一列或多列"
 msgid "NOV"
 msgstr "十一月"
 
-msgid "NOW"
-msgstr "现在"
-
 #, fuzzy
 msgid "NUMERIC"
 msgstr "数字"
@@ -7007,9 +7209,6 @@ msgstr "ID列名称"
 msgid "Name of the source nodes"
 msgstr "源节点名称"
 
-msgid "Name of the table that exists in the source database"
-msgstr "源数据库中存在的表名称"
-
 msgid "Name of the target nodes"
 msgstr "目标节点名称"
 
@@ -7026,20 +7225,24 @@ msgstr "需要帮助?学习如何连接到数据库"
 msgid "Need help? Learn more about"
 msgstr "需要帮助?请看"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "网络异常。"
+
 #, fuzzy
 msgid "Network error"
 msgstr "网络异常。"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "创建数据源时发生错误"
+
 msgid "Network error."
 msgstr "网络异常。"
 
 msgid "New chart"
 msgstr "新增图表"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "新增的列:%s"
-
 #, fuzzy
 msgid "New dataset"
 msgstr "新数据集"
@@ -7092,6 +7295,10 @@ msgstr "还没有规则"
 msgid "No Tags created"
 msgstr "还没创建标签"
 
+#, fuzzy
+msgid "No actions"
+msgstr "撤销这个动作"
+
 #, fuzzy
 msgid "No annotation layers"
 msgstr "没有注释层"
@@ -7113,10 +7320,6 @@ msgstr "没有有效的过滤器"
 msgid "No charts"
 msgstr "没有图表"
 
-#, fuzzy
-msgid "No charts yet"
-msgstr "还没有图表"
-
 #, fuzzy
 msgid "No columns found"
 msgstr "找不到列"
@@ -7136,10 +7339,6 @@ msgstr "找不到兼容的数据库"
 msgid "No compatible schema found"
 msgstr "找不到兼容的模式"
 
-#, fuzzy
-msgid "No dashboards yet"
-msgstr "还没有看板"
-
 msgid "No data"
 msgstr "没有数据"
 
@@ -7149,6 +7348,10 @@ msgstr "过滤后没有数据,或者最新时间记录的数据为NULL"
 msgid "No data in file"
 msgstr "文件中无数据"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "没有可用的数据库"
+
 msgid "No databases match your search"
 msgstr "没有与您的搜索匹配的数据库"
 
@@ -7182,13 +7385,6 @@ msgstr "当前没有已添加的全局过滤器"
 msgid "No matching records found"
 msgstr "没有找到任何记录"
 
-msgid "No of Bins"
-msgstr "直方图容器数"
-
-#, fuzzy
-msgid "No recents yet"
-msgstr "还没有记录"
-
 msgid "No records found"
 msgstr "没有找到任何记录"
 
@@ -7211,6 +7407,10 @@ msgid ""
 "contains data for the selected time range."
 msgstr "此查询没有返回任何结果。如果希望返回结果,请确保所有过滤选择的配置正确,并且数据源包含所选时间范围的数据。"
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "还没有规则"
+
 msgid "No rows were returned for this dataset"
 msgstr "这个数据集没有返回任何行"
 
@@ -7226,10 +7426,6 @@ msgstr "没有已保存的表达式"
 msgid "No saved metrics found"
 msgstr "没有已保存的指标"
 
-#, fuzzy
-msgid "No saved queries yet"
-msgstr "还没保存查询"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr "找不到存储的结果,需要重新运行查询"
 
@@ -7247,6 +7443,10 @@ msgstr "没有找到时间列"
 msgid "No time columns"
 msgstr "没有时间列"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "还没有规则"
+
 msgid "No validator found (configured for the engine)"
 msgstr ""
 
@@ -7330,6 +7530,10 @@ msgstr "没有触发"
 msgid "Not up to date"
 msgstr "不是最新的"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "无触发"
+
 msgid "Nothing triggered"
 msgstr "无触发"
 
@@ -7437,9 +7641,6 @@ msgstr "十月"
 msgid "Offline"
 msgstr "离线"
 
-msgid "Offset"
-msgstr "偏移"
-
 msgid "On Grace"
 msgstr "在宽限期内"
 
@@ -7464,6 +7665,10 @@ msgstr "一个或多个控件作为列进行透视"
 msgid "One or many metrics to display"
 msgstr "一个或多个指标显示"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "一个或多个注释层加载失败。"
+
 msgid "One or more columns already exist"
 msgstr "一个或多个列已存在"
 
@@ -7492,12 +7697,6 @@ msgstr "查询中指定的一个或多个参数的格式不正确。"
 msgid "One or more parameters specified in the query are missing."
 msgstr "查询中指定的一个或多个参数丢失。"
 
-msgid "One ore more annotation layers failed loading."
-msgstr "一个或多个注释层加载失败。"
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "此数据库只允许使用 `SELECT` 语句"
-
 msgid "Only Total"
 msgstr "仅总计"
 
@@ -7510,9 +7709,6 @@ msgstr ""
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "只有选定的面板将受此过滤条件的影响"
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7592,15 +7788,19 @@ msgstr "设置"
 msgid "Or choose from a list of other databases we support:"
 msgstr "或者从我们支持的其他数据库列表中选择:"
 
-msgid "Order by entity id"
-msgstr "按实体ID排序"
-
 msgid "Order results by selected columns"
 msgstr "按选定列对结果进行排序"
 
 msgid "Ordering"
 msgstr "排序"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 #, fuzzy
 msgid "Orientation"
 msgstr "方向"
@@ -7719,6 +7919,10 @@ msgid ""
 " or username."
 msgstr "所有者是一个用户列表,这些用户有权限修改仪表板。可按名称或用户名搜索。"
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "图片发送失败,请刷新或重试"
+
 msgid "Page length"
 msgstr "页长"
 
@@ -7773,8 +7977,16 @@ msgid ""
 " are pruned"
 msgstr "高度与父高度的比例低于此值的分区将被修剪"
 
-msgid "Password"
-msgstr "密码"
+msgid "Password"
+msgstr "密码"
+
+#, fuzzy
+msgid "Password is required"
+msgstr "类型是必需的"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "看板不存在"
 
 msgid "Paste Private Key here"
 msgstr ""
@@ -7837,6 +8049,14 @@ msgstr "周期"
 msgid "Periods must be a whole number"
 msgstr "周期必须是整数值"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "版本"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr "认证此图表的个人或组。"
 
@@ -7852,9 +8072,6 @@ msgstr "实体"
 msgid "Physical (table or view)"
 msgstr "实体(表或视图)"
 
-msgid "Physical dataset"
-msgstr "实体数据集"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
 
@@ -7877,15 +8094,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr "为您的注释选择一个标题"
 
-msgid "Pick at least one field for [Series]"
-msgstr "为 [序列] 选择至少一个字段"
-
 msgid "Pick at least one metric"
 msgstr "选择至少一个指标"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-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."
@@ -7897,9 +8108,8 @@ msgstr "选择您最爱的 Markup 语言"
 msgid "Pie Chart"
 msgstr "饼图"
 
-#, fuzzy
-msgid "Pie Chart (legacy)"
-msgstr "饼图(传统)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "饼图形状"
@@ -7910,6 +8120,14 @@ msgstr ""
 msgid "Pin"
 msgstr "标记"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "上左"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "上右"
+
 msgid "Pivot Table"
 msgstr "透视表"
 
@@ -7959,6 +8177,9 @@ msgid ""
 "your query again."
 msgstr "请检查您的模板参数是否有语法错误,并确保它们在您的 SQL 查询和设置参数中保持一致。然后,再次尝试运行您的查询。"
 
+msgid "Please choose a valid value"
+msgstr ""
+
 #, fuzzy
 msgid "Please choose at least one groupby"
 msgstr "请至少选择一个分组字段 "
@@ -7969,12 +8190,25 @@ msgstr "请确认"
 msgid "Please confirm the overwrite values."
 msgstr ""
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "请确认"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "请输入要测试的SQLAlchemy URI"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "请重新输入密码。"
 
@@ -7986,9 +8220,6 @@ msgid "Please reach out to the Chart Owner for assistance."
 msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] "请联系图表所有者寻求帮助。"
 
-msgid "Please save the query to enable sharing"
-msgstr "请保存查询以启用共享"
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr "请先保存您的图表,然后尝试创建一个新的电子邮件报告。"
 
@@ -8068,9 +8299,6 @@ msgstr "多段线"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "填充 \"Default value\" 以启用此控件"
 
-msgid "Population age data"
-msgstr "人口年龄数据"
-
 #, fuzzy
 msgid "Port"
 msgstr "端口"
@@ -8110,12 +8338,6 @@ msgstr "预滤器可用值"
 msgid "Pre-filter is required"
 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的模板语法。只在`启用过滤器选择`时应用。"
-
 msgid "Predictive"
 msgstr "预测"
 
@@ -8135,10 +8357,6 @@ msgstr "预览"
 msgid "Preview uploaded file"
 msgstr "上传Excel"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "预览 %s"
-
 msgid "Previous"
 msgstr "前一个"
 
@@ -8189,18 +8407,13 @@ msgstr "进度"
 msgid "Progressive"
 msgstr "进度"
 
-msgid "Propagate"
-msgstr "传播"
+#, fuzzy
+msgid "Project Id"
+msgstr "过时"
 
 msgid "Proportional"
 msgstr "比例"
 
-msgid "Public and privately shared sheets"
-msgstr "公共和私人共享的表"
-
-msgid "Publicly shared sheets only"
-msgstr "仅公开共享表"
-
 msgid "Published"
 msgstr "已发布"
 
@@ -8221,9 +8434,6 @@ msgstr "`行偏移量` 必须大于或等于0"
 msgid "Put the labels outside of the pie?"
 msgstr "是否将标签显示在饼图外侧?"
 
-msgid "Put the labels outside the pie?"
-msgstr "是否将标签显示在饼图外侧?"
-
 msgid "Put your code here"
 msgstr "把您的代码放在这里"
 
@@ -8332,10 +8542,6 @@ msgstr "半径(米)"
 msgid "Radius in miles"
 msgstr "半径(英里)"
 
-#, python-format
-msgid "Ran %s"
-msgstr "运行于 %s"
-
 msgid "Range"
 msgstr "范围"
 
@@ -8363,18 +8569,9 @@ msgstr "比率"
 msgid "Raw records"
 msgstr "原始记录"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr "最近创建的图表、看板和保存的查询将显示在此处"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr "最近编辑的图表、看板和保存的查询将显示在此处"
-
 msgid "Recently modified"
 msgstr "最近修改"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr "最近查看的图表、看板和保存的查询将显示在此处"
-
 msgid "Recents"
 msgstr "最近"
 
@@ -8393,9 +8590,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr "点击表列表中的表时将重定向到此端点"
-
 msgid "Redo the action"
 msgstr ""
 
@@ -8434,6 +8628,10 @@ msgstr "刷新间隔"
 msgid "Refresh interval saved"
 msgstr "刷新间隔已保存"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "查看表结构"
+
 msgid "Refresh the default values"
 msgstr "刷新默认值"
 
@@ -8493,8 +8691,9 @@ msgid "Remove table preview"
 msgstr "删除表格预览"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "删除的列:%s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
 
 msgid "Rename tab"
 msgstr "重命名选项卡"
@@ -8505,12 +8704,11 @@ msgstr ""
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
-msgid "Rendering"
-msgstr "渲染"
-
 msgid "Replace"
 msgstr "替换"
 
@@ -8611,6 +8809,9 @@ msgstr "排斥力"
 msgid "Repulsion strength between nodes"
 msgstr "节点间的排斥力强度"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "请求不正确: %(error)s"
@@ -8646,6 +8847,10 @@ msgstr "重采样操作需要DatetimeIndex"
 msgid "Reset"
 msgstr "重置"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "选择列"
+
 msgid "Reset state"
 msgstr "状态重置"
 
@@ -8672,6 +8877,10 @@ msgstr "后端未配置结果"
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr "后端未配置异步查询所需的结果"
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "重新获取结果"
+
 msgid "Return to specific datetime."
 msgstr "返回指定的日期时间。"
 
@@ -8712,6 +8921,28 @@ msgstr ""
 msgid "Role"
 msgstr "角色"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "告警名称"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "需要值"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "需要名称"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "修改数据集成功!"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "角色"
 
@@ -8788,9 +9019,6 @@ msgstr "每页行数,0 表示没有分页"
 msgid "Rows subtotal position"
 msgstr "行小计的位置"
 
-msgid "Rows to Read"
-msgstr "读取的行"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "读取的行"
@@ -8861,14 +9089,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL复制成功!"
 
-msgid "SQL Expression"
-msgstr "SQL表达式"
-
 msgid "SQL Lab"
 msgstr "SQL 工具箱"
 
-msgid "SQL Lab View"
-msgstr "SQL Lab 视图"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "已保存查询"
 
 #, python-format
 msgid ""
@@ -8968,20 +9194,10 @@ msgstr "无法预览此数据集"
 msgid "Samples for datasource could not be retrieved."
 msgstr "无法预览此数据源"
 
-msgid "Sankey"
-msgstr "蛇形图"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "图表保存"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "桑基图"
-
-msgid "Sankey Diagram with Loops"
-msgstr "桑基图"
-
 #, fuzzy
 msgid "Satellite"
 msgstr "卫星"
@@ -9048,9 +9264,6 @@ msgstr "保存或覆盖数据集"
 msgid "Save query"
 msgstr "保存查询"
 
-msgid "Save the query to enable this feature"
-msgstr "请保存查询以启用共享"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr "将这个查询保存为虚拟数据集以继续探索"
 
@@ -9078,6 +9291,10 @@ msgstr "保存的查询未找到"
 msgid "Saved query parameters are invalid."
 msgstr "保存的查询参数无效"
 
+#, fuzzy
+msgid "Saving..."
+msgstr "加载中..."
+
 msgid "Scale and Move"
 msgstr "缩放和移动"
 
@@ -9133,9 +9350,6 @@ msgstr "模式"
 msgid "Schema cache timeout"
 msgstr "模式缓存超时"
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr "模式,只在一些数据库中使用,比如Postgres、Redshift和DB2"
-
 #, fuzzy
 msgid "Schemas allowed for File upload"
 msgstr "允许使用CSV上传的模式"
@@ -9224,9 +9438,6 @@ msgstr "%s 秒"
 msgid "Seconds value"
 msgstr "秒"
 
-msgid "Secure Extra"
-msgstr "安全"
-
 msgid "Secure extra"
 msgstr "安全"
 
@@ -9327,6 +9538,10 @@ msgstr "指定一个模式(需要数据库支持)"
 msgid "Select a sheet name from the uploaded file"
 msgstr "选择将要上传文件的数据库"
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "删除数据库"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -9346,8 +9561,8 @@ msgstr "选择所有数据"
 msgid "Select all items"
 msgstr "选择所有项"
 
-msgid "Select any columns for metadata inspection"
-msgstr "选择任意列进行元数据巡检"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 #, fuzzy
 msgid "Select catalog or type to search catalogs"
@@ -9374,6 +9589,10 @@ msgstr "选择颜色方案"
 msgid "Select column"
 msgstr "选择列"
 
+#, fuzzy
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr "从下拉列表中选择要作为日期处理的列名称。"
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9467,6 +9686,14 @@ msgstr "选择表或输入数据集名称"
 msgid "Select owners"
 msgstr "选择所有者"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "选择标签"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "选择所有者"
+
 msgid "Select saved metrics"
 msgstr "选择已保存指标"
 
@@ -9481,9 +9708,19 @@ msgstr "选择模式或输入模式名称来搜索"
 msgid "Select scheme"
 msgstr "选择方案"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "选择主题"
 
+#, fuzzy
+msgid "Select tab"
+msgstr "反选所有"
+
 #, fuzzy
 msgid "Select table or type to search tables"
 msgstr "选择表或输入表名来搜索"
@@ -9511,12 +9748,6 @@ msgstr "选择您希望在与此图表交互时应用交叉筛选的图表。您
 msgid "Select the geojson column"
 msgstr "选择GeoJSON列"
 
-msgid "Select the number of bins for the histogram"
-msgstr "选择直方图的分箱数量"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "选择数值列来绘制直方图"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9540,9 +9771,6 @@ msgstr "发送PNG"
 msgid "Send as text"
 msgstr "发送文本"
 
-msgid "Send range filter events to other charts"
-msgstr "将过滤条件的事件发送到其他图表"
-
 msgid "September"
 msgstr "九月"
 
@@ -9555,14 +9783,6 @@ msgstr "系列"
 msgid "Series Height"
 msgstr "系列高度"
 
-#, fuzzy
-msgid "Series Limit Sort By"
-msgstr "系列限制排序依据"
-
-#, fuzzy
-msgid "Series Limit Sort Descending"
-msgstr "系列限制降序排列"
-
 #, fuzzy
 msgid "Series Order"
 msgstr "系列顺序"
@@ -9592,6 +9812,10 @@ msgstr "服务端分页"
 msgid "Service Account"
 msgstr "服务帐户"
 
+#, fuzzy
+msgid "Service version"
+msgstr "服务帐户"
+
 msgid "Set auto-refresh interval"
 msgstr "设置自动刷新"
 
@@ -9620,6 +9844,10 @@ msgstr "设置"
 msgid "Settings for time series"
 msgstr "时间序列设置"
 
+#, fuzzy
+msgid "Shape"
+msgstr "饼图形状"
+
 msgid "Share"
 msgstr "分享"
 
@@ -9683,18 +9911,9 @@ msgstr "显示 CREATE VIEW 语句"
 msgid "Show Cell bars"
 msgstr "显示单元格的柱"
 
-msgid "Show Chart"
-msgstr "显示图表"
-
-msgid "Show Column"
-msgstr "显示列"
-
 msgid "Show Dashboard"
 msgstr "显示看板"
 
-msgid "Show Database"
-msgstr "显示数据库"
-
 msgid "Show Labels"
 msgstr "显示标签"
 
@@ -9704,18 +9923,12 @@ msgstr "显示日志"
 msgid "Show Markers"
 msgstr "显示标记"
 
-msgid "Show Metric"
-msgstr "显示指标"
-
 msgid "Show Metric Names"
 msgstr "显示指标名"
 
 msgid "Show Range Filter"
 msgstr "显示范围过滤器"
 
-msgid "Show Table"
-msgstr "显示表"
-
 msgid "Show Timestamp"
 msgstr "显示时间戳"
 
@@ -9750,9 +9963,6 @@ msgstr "在迷你图上显示Y轴。如果设置了手动设置的最小/最大
 msgid "Show all columns"
 msgstr "显示所有列"
 
-msgid "Show all..."
-msgstr "显示所有..."
-
 msgid "Show axis line ticks"
 msgstr "显示轴线刻度"
 
@@ -9777,6 +9987,10 @@ msgstr "将数据点显示为线条上的圆形标记"
 msgid "Show empty columns"
 msgstr "显示空列"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "显示指标"
+
 #, fuzzy
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
@@ -9798,9 +10012,6 @@ msgstr "显示图例"
 msgid "Show less columns"
 msgstr "显示较少的列"
 
-msgid "Show less..."
-msgstr "显示更少..."
-
 #, fuzzy
 msgid "Show minor ticks on axes."
 msgstr "在坐标轴上显示次级刻度。"
@@ -9841,6 +10052,10 @@ msgstr "显示标记"
 msgid "Show the value on top of the bar"
 msgstr "在柱子上方显示值"
 
+#, fuzzy
+msgid "Show total"
+msgstr "显示总计"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9874,8 +10089,8 @@ msgid ""
 "higher the fill, the closer the metric is to the target."
 msgstr "显示单个指标相对于给定目标的进度。填充越高,度量越接近目标"
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "显示 %s个 总计 %s个"
 
 msgid "Shows a list of all series available at that point in time"
@@ -9908,18 +10123,16 @@ msgstr "单个值"
 msgid "Single value type"
 msgstr "单值类型"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "像素"
+
 msgid "Size of edge symbols"
 msgstr "边缘符号的大小"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "标记的大小。也适用于预测观察。”"
 
-msgid "Sizes of vehicles"
-msgstr "工具尺寸"
-
-msgid "Skip Rows"
-msgstr "跳过行"
-
 #, fuzzy
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
 msgstr "跳过空白行而不是把它们解释为NaN值。"
@@ -9998,9 +10211,6 @@ msgstr "抱歉,出了点问题。请稍后再试。"
 msgid "Sorry, something went wrong. Try again later."
 msgstr "抱歉,出了点问题。请稍后再试。"
 
-msgid "Sorry, there appears to be no data"
-msgstr "抱歉,似乎没有数据"
-
 #, fuzzy, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr "抱歉,保存  %s 时发生错误:%s"
@@ -10018,9 +10228,6 @@ msgstr "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C!
 msgid "Sort"
 msgstr "排序:"
 
-msgid "Sort Bars"
-msgstr "排序柱状图"
-
 msgid "Sort Descending"
 msgstr "降序"
 
@@ -10044,9 +10251,6 @@ msgstr "排序Y轴"
 msgid "Sort ascending"
 msgstr "升序排序"
 
-msgid "Sort bars by x labels."
-msgstr "按 x 标签排序。"
-
 msgid "Sort by"
 msgstr "排序 "
 
@@ -10072,6 +10276,10 @@ msgstr "排序过滤器值"
 msgid "Sort metric"
 msgstr "排序指标"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "导出查询"
+
 msgid "Sort rows by"
 msgstr "排序 "
 
@@ -10084,9 +10292,6 @@ msgstr "排序类型"
 msgid "Source"
 msgstr "来源"
 
-msgid "Source / Target"
-msgstr "源/目标"
-
 msgid "Source SQL"
 msgstr "源 SQL"
 
@@ -10134,9 +10339,6 @@ msgstr "平方英里"
 msgid "Stack"
 msgstr "堆叠"
 
-msgid "Stack Trace:"
-msgstr "报错:"
-
 msgid "Stack series"
 msgstr "堆叠系列"
 
@@ -10152,9 +10354,6 @@ msgstr "堆叠柱状图"
 msgid "Stacked Style"
 msgstr "堆叠样式"
 
-msgid "Stacked style"
-msgstr "堆叠样式"
-
 msgid "Standard time series"
 msgstr "标准时间序列"
 
@@ -10258,9 +10457,6 @@ msgstr "街道"
 msgid "Strength to pull the graph toward center"
 msgstr "将图形拉向中心"
 
-msgid "Stretched style"
-msgstr "拉伸样式"
-
 #, fuzzy
 msgid "Stroke Color"
 msgstr "边线颜色"
@@ -10285,15 +10481,20 @@ msgstr "用圆帽设置进度条末端的样式"
 msgid "Subdomain"
 msgstr "子域"
 
-msgid "Subheader"
-msgstr "子标题"
-
 msgid "Subheader Font Size"
 msgstr "子标题的字体大小"
 
 msgid "Submit"
 msgstr "提交"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "选项卡标题"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "气泡尺寸"
+
 msgid "Subtotal"
 msgstr ""
 
@@ -10348,9 +10549,6 @@ msgstr "Superset的嵌入SDK文档。"
 msgid "Superset chart"
 msgstr "Superset图表"
 
-msgid "Superset dashboard"
-msgstr "看板"
-
 msgid "Superset encountered an error while running a command."
 msgstr "Superset 在执行命令时遇到了一个错误。"
 
@@ -10360,9 +10558,6 @@ msgstr "Superset 遇到了未知错误。"
 msgid "Supported databases"
 msgstr "已支持数据库"
 
-msgid "Survey Responses"
-msgstr "调查结果"
-
 #, fuzzy
 msgid "Swap dataset"
 msgstr "交换数据集"
@@ -10377,6 +10572,12 @@ msgid ""
 "well."
 msgstr "用于可视化时间序列数据。在步进图、折线图、散点图和条形图之间进行选择,也有许多自定义选项"
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr "符号"
 
@@ -10386,9 +10587,20 @@ msgstr "边线两端的符号"
 msgid "Symbol size"
 msgstr "符号的大小"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "从源同步列"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "语法"
 
@@ -10399,10 +10611,6 @@ msgstr ""
 msgid "TABLES"
 msgstr "表"
 
-#, fuzzy
-msgid "TEMPORAL X-AXIS"
-msgstr "时间X轴"
-
 #, fuzzy
 msgid "TEMPORAL_RANGE"
 msgstr "时间范围"
@@ -10439,6 +10647,10 @@ msgid ""
 "connection, schema, and table name"
 msgstr "找不到 [%(table_name)s] 表,请仔细检查您的数据库连接、Schema 和 表名"
 
+#, fuzzy
+msgid "Table actions"
+msgstr "表的列"
+
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
 "strategy to append or replace or provide a different Table Name to use."
@@ -10451,6 +10663,10 @@ msgstr "数据库表缓存超时"
 msgid "Table columns"
 msgstr "表的列"
 
+#, fuzzy
+msgid "Table name"
+msgstr "表名"
+
 msgid "Table name undefined"
 msgstr "表名未定义"
 
@@ -10521,11 +10737,6 @@ msgstr "无法删除标签对象"
 msgid "Tags"
 msgstr "标签"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr "获取数据点,并将其分组,以查看信息最密集的区域"
-
 msgid "Target"
 msgstr "目标"
 
@@ -10551,6 +10762,10 @@ msgid ""
 "coming from the controls."
 msgstr "模板链接,可以包含{{metric}}或来自控件的其他值。"
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "时间条件"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10597,9 +10812,6 @@ msgid ""
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
 
-msgid "The SQL is invalid and cannot be parsed."
-msgstr ""
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10629,6 +10841,10 @@ msgstr "注释已保存。"
 msgid "The annotation has been updated"
 msgstr "注释已更新。"
 
+#, fuzzy
+msgid "The background color of the charts."
+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."
@@ -10658,6 +10874,10 @@ msgstr "经典的,很好地展示了每个投资者获得了多少公司,“
 msgid "The color for points and clusters in RGB"
 msgstr "点和聚合群的颜色(RGB)"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "等值线的颜色"
+
 #, fuzzy
 msgid "The color of the isoband"
 msgstr "等值带的颜色"
@@ -10675,6 +10895,15 @@ msgid ""
 "        Edit the color scheme in the dashboard properties."
 msgstr "配色方案由相关的看板决定。在看板属性中编辑配色方案"
 
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+"此配色方案正被自定义标签颜色覆盖。\n"
+"请在高级设置中检查 JSON 元数据。"
+
 #, fuzzy
 msgid "The column header label"
 msgstr "列的标题"
@@ -10688,6 +10917,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr "该列已在数据库中删除或重命名。"
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10699,20 +10934,9 @@ msgstr "该看板已成功保存。"
 msgid "The data source seems to have been deleted"
 msgstr "数据源已经被删除"
 
-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 "由数据库推断的数据类型。在某些情况下,可能需要为表达式定义的列手工输入一个类型。在大多数情况下,用户不需要修改这个数据类型。"
-
-#, 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 "
-"编辑器选项卡。确定要继续吗?删除数据库将破坏这些对象。"
+#, fuzzy
+msgid "The database"
+msgstr "删除数据库"
 
 #, fuzzy
 msgid "The database columns that contains lines information"
@@ -10746,12 +10970,9 @@ msgstr "数据库已删除。"
 msgid "The database was not found."
 msgstr "数据库没有找到"
 
-#, 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 看板内。确定要继续吗?删除数据集将破坏这些对象。"
+#, fuzzy
+msgid "The dataset"
+msgstr "新数据集"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "这个图表所链接的数据集可能被删除了。"
@@ -10813,6 +11034,15 @@ msgstr ""
 "1. engine_params 对象在调用 sqlalchemy.create_engine 时被引用, metadata_params 在调用"
 " sqlalchemy.MetaData 时被引用。"
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10830,6 +11060,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr ""
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10862,20 +11095,13 @@ msgstr "提供的主机名无法解析。"
 msgid "The id of the active chart"
 msgstr "活动图表的ID"
 
-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 "与此表关联的图表列表。通过更改此数据源,您可以更改这些相关图表的行为。还要注意,图表需要指向数据源,如果从数据源中删除图表,则此窗体将无法保存。如果要为图表更改数据源,请从“浏览视图”更改该图表。"
+#, fuzzy
+msgid "The layer attribution"
+msgstr "时间相关的表单属性"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr "返回的最大事件数,相当于行数"
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10910,6 +11136,19 @@ msgstr ""
 "显示值所需的滚动周期的最小值。例如,如果您想累积 7 天的总额,您可能希望您的“最小周期”为 7,以便显示的所有数据点都是 7 "
 "个区间的总和。这将隐藏掉前 7 个阶段的“加速”效果"
 
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "度量的最大值。这是一个可选配置"
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "ID列名称"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 #, fuzzy
 msgid "The name of the rule must be unique"
 msgstr "名称必须是唯一的"
@@ -11119,6 +11358,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr "结果后端不再拥有来自查询的数据。"
 
@@ -11156,11 +11398,16 @@ msgstr "该模式已在数据库中删除或重命名。"
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "报告已创建"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
-msgstr ""
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "在图表上显示系列值"
 
 #, fuzzy
 msgid "The size of each cell in meters"
@@ -11169,6 +11416,9 @@ msgstr "每个单元的大小,以米为单位"
 msgid "The size of the square cell, in pixels"
 msgstr "平方单元的大小,以像素为单位"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 #, fuzzy
 msgid "The submitted payload failed validation."
 msgstr "提交的有效负载的模式不正确。"
@@ -11191,11 +11441,6 @@ msgid ""
 "to run this query."
 msgstr "表 \"%(table_name)s\" 不存在。必须使用有效的表来运行此查询。"
 
-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 "The table was deleted or renamed in the database."
 msgstr "该表已在数据库中删除或重命名。"
 
@@ -11243,6 +11488,10 @@ msgstr "每个块的时间单位。应该是主域域粒度更小的单位。应
 msgid "The time unit used for the grouping of blocks"
 msgstr "用于块分组的时间单位"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "给图表添加名称"
+
 msgid "The type of visualization to display"
 msgstr "要显示的可视化类型"
 
@@ -11265,6 +11514,14 @@ msgstr "指标 '%(username)s' 不存在"
 msgid "The username provided when connecting to a database is not valid."
 msgstr "连接到数据库时提供的用户名无效。"
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "选择图例的位置"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "在柱子上方显示值"
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "X轴刻度的布局方式"
 
@@ -11272,6 +11529,13 @@ msgstr "X轴刻度的布局方式"
 msgid "The width of the Isoline in pixels"
 msgstr "等值线的宽度(以像素为单位)"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "线条的宽度"
+
 #, fuzzy
 msgid "The width of the lines"
 msgstr "线条的宽度"
@@ -11290,9 +11554,6 @@ msgstr "此看板中没有添加图表。"
 msgid "There are no components added to this tab"
 msgstr ""
 
-msgid "There are no databases available"
-msgstr "没有可用的数据库"
-
 msgid "There are no filters in this dashboard."
 msgstr "此看板中没有过滤条件。"
 
@@ -11304,6 +11565,10 @@ msgid ""
 " or a typo."
 msgstr "SQL查询中存在语法错误。可能是拼写错误或是打错关键字。"
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "要显示的可视化类型"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11330,6 +11595,10 @@ msgstr "获取此看板的收藏夹状态时出现问题:%s。"
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "获取此看板的收藏夹状态时出现问题:%s。"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "抱歉,这个看板在获取图表时发生错误:"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "您的请求有错误"
@@ -11348,6 +11617,10 @@ msgstr "抱歉,这个看板在获取图表时发生错误:"
 msgid "There was an error loading the tables"
 msgstr "您的请求有错误"
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr "抱歉,这个看板在保存时发生错误:%s"
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr "获取此看板的收藏夹状态时出现问题: %s"
@@ -11355,6 +11628,10 @@ msgstr "获取此看板的收藏夹状态时出现问题: %s"
 msgid "There was an error with your request"
 msgstr "您的请求有错误"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "删除时出现问题:%s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "删除 %s 时出现问题:%s"
@@ -11439,22 +11716,10 @@ msgstr "预览所选查询时出现问题 %s"
 msgid "There was an issue previewing the selected query. %s"
 msgstr "预览所选查询时出现问题。%s"
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr "您的桑基图中存在循环,请提供一棵树。这是一个错误的链接:{}"
-
 #, fuzzy
 msgid "These are the datasets this filter will be applied to."
 msgstr "这些是将应用此过滤的表。"
 
-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 ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11468,12 +11733,20 @@ msgstr "此操作将永久删除 %s 。"
 msgid "This action will permanently delete the layer."
 msgstr "此操作将永久删除图层。"
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "此操作将永久删除图层。"
+
 msgid "This action will permanently delete the saved query."
 msgstr "此操作将永久删除保存的查询。"
 
 msgid "This action will permanently delete the template."
 msgstr "此操作将永久删除模板。"
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "此操作将永久删除图层。"
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11498,14 +11771,6 @@ msgid ""
 "source. "
 msgstr ""
 
-#, fuzzy
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-"此配色方案正被自定义标签颜色覆盖。\n"
-"请在高级设置中检查 JSON 元数据。"
-
 #, fuzzy
 msgid "This column might be incompatible with current dataset"
 msgstr "此图表可能与过滤器不兼容(数据集不匹配)"
@@ -11572,6 +11837,12 @@ msgstr "此仪表板已准备好嵌入。在您的应用程序中,将以下 ID
 msgid "This dashboard was saved successfully."
 msgstr "该看板已成功保存。"
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 
@@ -11589,6 +11860,9 @@ msgstr ""
 msgid "This defines the element to be plotted on the chart"
 msgstr "这定义了要在图表上绘制的元素"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11599,11 +11873,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr "这个字段执行Superset视图时,意味着Superset将以子查询的形式对字符串运行查询。"
-
 #, fuzzy
 msgid "This filter might be incompatible with current dataset"
 msgstr "此图表可能与过滤器不兼容(数据集不匹配)"
@@ -11636,13 +11905,6 @@ msgstr "此 markdown 组件有错误。请还原最近的更改。"
 msgid "This may be triggered by:"
 msgstr "这可能由以下因素触发:"
 
-#, 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 "如果存在序列或行限制,则用于定义顶部序列的排序方式的度量。如果未定义,则返回第一个度量(如果适用)。"
-
 #, fuzzy
 msgid "This metric might be incompatible with current dataset"
 msgstr "此图表可能与过滤器不兼容(数据集不匹配)"
@@ -11683,6 +11945,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr "此表已经关联了一个数据集。一个表只能关联一个数据集。"
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr "这个值应该大于左边的目标值"
 
@@ -11763,9 +12028,6 @@ msgstr "时间粒度(grain)"
 msgid "Time Series"
 msgstr "时间序列"
 
-msgid "Time Series - Bar Chart"
-msgstr "时间序列 - 柱状图"
-
 msgid "Time Series - Line Chart"
 msgstr "时间序列-折线图"
 
@@ -11781,9 +12043,6 @@ msgstr "时间序列 - 百分比变化"
 msgid "Time Series - Period Pivot"
 msgstr "时间序列 - 周期透视表"
 
-msgid "Time Series - Stacked"
-msgstr "时间序列 - 堆叠图"
-
 msgid "Time Series Options"
 msgstr "时间序列选项"
 
@@ -11874,17 +12133,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr "时间字符串不明确。请指定为 [%(human_readable)s 前] 还是 [%(human_readable)s 后]。"
 
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "面积图(传统)"
-
-#, fuzzy
-msgid "Time-series Bar Chart (legacy)"
-msgstr "时间序列-条形图(传统)"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr "折线图(传统)"
-
 msgid "Time-series Percent Change"
 msgstr "时间序列-百分比变化"
 
@@ -11903,9 +12151,6 @@ msgstr "时间戳格式"
 msgid "Timezone"
 msgstr "时区"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "数据源的时差(单位:小时)"
-
 msgid "Timezone selector"
 msgstr "时区选择"
 
@@ -11924,6 +12169,11 @@ msgstr "标题是必填项"
 msgid "Title or Slug"
 msgstr "标题或者Slug"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "若要在计量值上筛选,请使用自定义SQL选项卡。"
 
@@ -11969,6 +12219,10 @@ msgstr ""
 msgid "Total (%(aggregatorName)s)"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "总计: %s"
+
 #, fuzzy
 msgid "Total value"
 msgstr "总计值"
@@ -12080,9 +12334,6 @@ msgstr "请输入值"
 msgid "Type is required"
 msgstr "类型是必需的"
 
-msgid "Type of Google Sheets allowed"
-msgstr "接受Google Sheets的类型"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "比较类型,值差异或百分比"
 
@@ -12156,9 +12407,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr "无法将表结构状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。"
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr ""
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "未命名"
 
@@ -12189,6 +12446,10 @@ msgstr "没有已保存的表达式"
 msgid "Unexpected time range: %(error)s"
 msgstr "意外时间范围:%(error)s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "撤销"
+
 msgid "Unknown"
 msgstr "未知"
 
@@ -12227,6 +12488,10 @@ msgstr "未知错误"
 msgid "Unknown value"
 msgstr "未知值"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "正在执行"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr "函数返回不安全的类型 %(func)s: %(value_type)s"
@@ -12293,9 +12558,6 @@ msgstr "上传列式文件"
 msgid "Upload Columnar file to database"
 msgstr "上传列式文件到数据库"
 
-msgid "Upload Credentials"
-msgstr "上传凭据"
-
 msgid "Upload Enabled"
 msgstr "已启用上传"
 
@@ -12318,6 +12580,10 @@ msgstr "上传文件到数据库"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "上传凭据"
+
 msgid "Upload file to database"
 msgstr "上传文件到数据库"
 
@@ -12374,12 +12640,13 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr "使用另一个现有的图表作为注释和标记的数据源。您的图表必须是以下可视化类型之一:[%s]"
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "运行查询"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 
-msgid "Use legacy datasource editor"
-msgstr "使用旧数据源编辑器"
-
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr "将指标作为列或行的顶级组使用"
 
@@ -12389,11 +12656,6 @@ msgstr "只使用一个值"
 msgid "Use the Advanced Analytics options below"
 msgstr "使用下面的高级分析选项"
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr "使用您在创建服务帐户时自动下载的JSON文件"
-
 #, fuzzy
 msgid "Use the edit button to change this field"
 msgstr "使用编辑按钮更改此字段"
@@ -12431,9 +12693,23 @@ msgstr "用户必须给过滤器选择一个值"
 msgid "User query"
 msgstr "用户查询"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "用户名"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "需要名称"
+
+#, fuzzy
+msgid "Users"
+msgstr "序列"
+
 #, fuzzy
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr "出于安全考虑,不允许用户设置搜索路径。"
@@ -12456,6 +12732,10 @@ msgid ""
 "funnels and pipelines."
 msgstr "使用圆圈来可视化数据在系统不同阶段的流动。将鼠标悬停在可视化图表的各个路径上,以理解值经历的各个阶段。这对于多阶段、多组的漏斗和管道可视化非常有用。"
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "值"
 
@@ -12482,9 +12762,16 @@ msgstr ""
 msgid "Value format"
 msgstr "数值格式"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "`行偏移量` 必须大于或等于0"
+
 msgid "Value is required"
 msgstr "需要值"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "`行偏移量` 必须大于或等于0"
@@ -12504,12 +12791,6 @@ msgid ""
 "show relevant values"
 msgstr ""
 
-msgid "Vehicle Types"
-msgstr "类型"
-
-msgid "Verbose Name"
-msgstr "全称"
-
 msgid "Version"
 msgstr "版本"
 
@@ -12523,9 +12804,6 @@ msgstr "纵向"
 msgid "Vertical (Left)"
 msgstr "纵向(左对齐)"
 
-msgid "Video game consoles"
-msgstr "控制台"
-
 #, fuzzy
 msgid "View"
 msgstr "预览"
@@ -12572,9 +12850,6 @@ msgstr "虚拟"
 msgid "Virtual (SQL)"
 msgstr "虚拟(SQL)"
 
-msgid "Virtual dataset"
-msgstr "虚拟数据集"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "虚拟数据集查询不能为空"
 
@@ -12611,11 +12886,6 @@ msgid ""
 "grid view."
 msgstr ""
 
-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."
@@ -12662,13 +12932,6 @@ msgid ""
 "instead."
 msgstr "在一个图表中显示许多不同的时间序列对象。此图表已被弃用,建议改用时间序列图表"
 
-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 "可视化不同组的值在系统不同阶段的流动。管道中的新阶段被可视化为节点或层。条形或边缘的厚度表示正在可视化的度量。"
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -12683,6 +12946,12 @@ msgstr "可视化类型"
 msgid "WED"
 msgstr "星期三"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, fuzzy, python-format
 msgid "Waiting on %s"
 msgstr "显示 %s个 总计 %s个"
@@ -12697,9 +12966,6 @@ msgstr "添加一个新数据库?"
 msgid "Warning"
 msgstr "警告!"
 
-msgid "Warning Message"
-msgstr "告警信息"
-
 msgid "Warning!"
 msgstr "警告!"
 
@@ -12835,11 +13101,6 @@ msgstr "当计算类型设置为“百分比变化”时,Y轴格式将被强
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr "当提供次计量指标时,会使用线性色阶。"
 
-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 选项时,此选项可以此模式中强制创建表"
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr "勾选后,每次查询后地图将自动缩放至您的数据范围"
 
@@ -12860,6 +13121,11 @@ msgid ""
 "to the main datetime column."
 msgstr "当对次要时间列进行筛选时,将相同的筛选条件应用到主日期时间列。"
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -12876,21 +13142,14 @@ msgstr "当使用“Group by”时,只限于使用单个度量。"
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
 
-#, fuzzy
-msgid "When using this option, default value can’t be set"
-msgstr "默认选择第一项(使用此选项时,不能“设置默认值”)"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr "当有多组数据时进度条是否重叠"
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr "表是否由 sql 实验室中的 \"可视化\" 流生成"
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr "该列是否在浏览视图的`过滤器`部分显示。"
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -12930,6 +13189,10 @@ msgstr "是否显示图表的图例(色块分布)"
 msgid "Whether to display bubbles on top of countries"
 msgstr "是否在国家之上展示气泡"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "是否显示图表的图例(色块分布)"
+
 #, fuzzy
 msgid "Whether to display the aggregate count"
 msgstr "是否显示聚合计数"
@@ -12940,12 +13203,6 @@ msgstr "是否显示交互式数据表格"
 msgid "Whether to display the labels."
 msgstr "是否显示标签。"
 
-#, fuzzy
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr "是否显示标签。请注意,只有当达到5%的阈值时标签才会显示。"
-
 msgid "Whether to display the legend (toggles)"
 msgstr "是否显示图例(切换)"
 
@@ -12961,6 +13218,10 @@ msgstr "是否显示Y轴的最小值和最大值"
 msgid "Whether to display the numerical values within the cells"
 msgstr "是否在单元格内显示数值"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "是否在工具提示中包含百分比"
+
 #, fuzzy
 msgid "Whether to display the stroke"
 msgstr "是否显示边框"
@@ -12975,9 +13236,17 @@ msgstr "是否显示时间戳"
 msgid "Whether to display the tooltip labels."
 msgstr "是否显示标签。"
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "是否在单元格内显示数值"
+
 msgid "Whether to display the trend line"
 msgstr "是否显示趋势线"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "是否显示聚合计数"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr "是否启用更改图形位置和缩放。"
 
@@ -13005,33 +13274,17 @@ msgstr "是否包含时间段中定义的时间粒度"
 msgid "Whether to make the grid 3D"
 msgstr "是否将网格变为3D"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "是否将直方图设置为累积的"
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr "是否将此列作为[时间粒度]选项, 列中的数据类型必须是DATETIME"
-
-msgid "Whether to normalize the histogram"
-msgstr "是否规范化直方图"
-
 msgid "Whether to populate autocomplete filters options"
 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 "是否在浏览视图的过滤器部分中填充过滤器的下拉列表,并提供从后端获取的不同值的列表"
-
 #, fuzzy
 msgid "Whether to show as Nightingale chart."
 msgstr "是否显示量规图进度"
 
+#, fuzzy
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr "是否显示额外的控件。额外的控制包括使多栏图表堆叠或并排。"
 
 msgid "Whether to show minor ticks on the axis"
@@ -13053,10 +13306,6 @@ msgstr "确定是按升序还是降序对基轴进行排序。"
 msgid "Whether to sort descending or ascending"
 msgstr "是降序还是升序排序"
 
-#, fuzzy
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr "是降序还是升序排序"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr "是否按所选指标按降序对结果进行排序。"
 
@@ -13115,9 +13364,6 @@ msgstr "为您的查询写一段描述"
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "X 轴标题下边距"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "X 轴标题边距"
 
@@ -13137,6 +13383,10 @@ msgstr "X 轴标签"
 msgid "X Axis Title"
 msgstr "X 轴标题"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Y 轴标题边距"
+
 msgid "X Log Scale"
 msgstr "X 对数尺度"
 
@@ -13160,6 +13410,9 @@ msgstr "X 轴"
 msgid "XScale Interval"
 msgstr "X 轴比例尺间隔"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Y 界限"
 
@@ -13276,6 +13529,19 @@ msgid ""
 "want to overwrite?"
 msgstr "您正在导入一个或多个已存在的查询。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 #, fuzzy
 msgid "You can"
 msgstr "你可以"
@@ -13351,9 +13617,6 @@ msgstr "您没有访问此数据集的权限。"
 msgid "You don't have access to this embedded dashboard config."
 msgstr "您没有访问此嵌入看板的权限。"
 
-msgid "You don't have any favorites yet!"
-msgstr "您还没有任何的收藏!"
-
 msgid "You don't have permission to modify the value."
 msgstr "您没有编辑此值的权限"
 
@@ -13432,6 +13695,9 @@ msgstr "不是最新的"
 msgid "Your chart is ready to go!"
 msgstr "图表已就绪!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr "您的看板太大了。保存前请缩小尺寸。"
 
@@ -13459,6 +13725,9 @@ msgstr "您的查询已保存"
 msgid "Your query was updated"
 msgstr "您的查询已更新"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "这个报告无法被删除"
 
@@ -13472,6 +13741,10 @@ msgstr "零值填补"
 msgid "Zoom"
 msgstr "缩放"
 
+#, fuzzy
+msgid "Zoom level"
+msgstr "缩放面积"
+
 msgid "Zoom level of the map"
 msgstr "地图缩放等级"
 
@@ -13593,9 +13866,6 @@ msgstr "在"
 msgid "auto"
 msgstr "自动"
 
-msgid "auto (Smooth)"
-msgstr ""
-
 msgid "background"
 msgstr "背景"
 
@@ -13645,9 +13915,6 @@ msgstr "范围"
 msgid "chart"
 msgstr "图表"
 
-msgid "charts"
-msgstr "图表"
-
 msgid "choose WHERE or HAVING..."
 msgstr "选择WHERE或HAVING子句..."
 
@@ -13658,6 +13925,10 @@ msgstr "清除所有过滤器"
 msgid "click here"
 msgstr "点击这里"
 
+#, fuzzy
+msgid "close"
+msgstr "关闭"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr ""
 
@@ -13714,15 +13985,9 @@ msgstr "css模板"
 msgid "cumsum"
 msgstr "累积求和"
 
-msgid "cumulative"
-msgstr "累积"
-
 msgid "dashboard"
 msgstr "看板"
 
-msgid "dashboards"
-msgstr "看板"
-
 msgid "database"
 msgstr "数据库"
 
@@ -13800,9 +14065,6 @@ msgstr "deckGL图表"
 msgid "default"
 msgstr "默认"
 
-msgid "delete"
-msgstr "删除"
-
 msgid "descendant"
 msgstr "降序"
 
@@ -13816,9 +14078,6 @@ msgstr "偏离"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr ""
 
-msgid "draft"
-msgstr "草稿"
-
 msgid "dttm"
 msgstr "时间"
 
@@ -13859,9 +14118,6 @@ msgstr "例如:postgres"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "例如:xy12345.us-east-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "例如:userid列"
-
 #, fuzzy
 msgid "edit mode"
 msgstr "编辑模式"
@@ -13874,6 +14130,10 @@ msgstr "选择主题"
 msgid "entries"
 msgstr "序列"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "序列"
+
 #, fuzzy
 msgid "error"
 msgstr "错误"
@@ -13948,11 +14208,6 @@ msgstr "点击这里"
 msgid "hour"
 msgstr "小时"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr "图像渲染画布对象的 CSS 属性,它定义了浏览器如何放大图像"
-
 msgid "in"
 msgstr "处于"
 
@@ -13963,6 +14218,10 @@ msgstr "(在模型中)"
 msgid "invalid email"
 msgstr "无效状态。"
 
+#, fuzzy
+msgid "is"
+msgstr "处于"
+
 #, fuzzy
 msgid "is expected to be a Mapbox URL"
 msgstr "应该为MapBox的URL"
@@ -13973,6 +14232,24 @@ msgstr "应该为数字"
 msgid "is expected to be an integer"
 msgstr "应该为整数"
 
+#, fuzzy, python-format
+msgid ""
+"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 "
+"编辑器选项卡。确定要继续吗?删除数据库将破坏这些对象。"
+
+#, fuzzy, python-format
+msgid ""
+"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 看板内。确定要继续吗?删除数据集将破坏这些对象。"
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "a-z键"
 
@@ -14106,19 +14383,10 @@ msgstr ""
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr ""
-
-msgid "page_size.show"
-msgstr ""
-
 #, fuzzy
 msgid "pending"
 msgstr "正在处理"
 
-msgid "percentile (exclusive)"
-msgstr "百分位数(独占)"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14128,24 +14396,22 @@ msgstr "百分位数必须是具有两个数值的列表或元组,其中第一
 msgid "permalink state not found"
 msgstr "未找到持久链接状态"
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 msgid "pixels"
 msgstr "像素"
 
 msgid "previous calendar month"
 msgstr "前一月"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "前一年"
+
 msgid "previous calendar week"
 msgstr "前一周"
 
 msgid "previous calendar year"
 msgstr "前一年"
 
-msgid "published"
-msgstr "已发布"
-
 #, fuzzy
 msgid "quarter"
 msgstr "季度"
@@ -14167,9 +14433,6 @@ msgstr "重启"
 msgid "recent"
 msgstr "最近"
 
-msgid "recents"
-msgstr "最近"
-
 #, fuzzy
 msgid "recipients"
 msgstr "最近"
@@ -14194,8 +14457,9 @@ msgstr "行级安全"
 msgid "running"
 msgstr "正在执行"
 
-msgid "saved queries"
-msgstr "已保存查询"
+#, fuzzy
+msgid "save"
+msgstr "保存"
 
 #, fuzzy
 msgid "seconds"
@@ -14211,10 +14475,6 @@ msgid ""
 "series"
 msgstr "series:独立处理每个序列;overall:所有序列使用相同的比例;change:显示与每个序列中第一个数据点相比的更改"
 
-#, fuzzy
-msgid "shift start date"
-msgstr "开始时间"
-
 msgid "sql"
 msgstr ""
 
@@ -14279,10 +14539,6 @@ msgstr "时间类型图标"
 msgid "textarea"
 msgstr "文本区域"
 
-#, fuzzy
-msgid "to"
-msgstr "至"
-
 #, fuzzy
 msgid "top"
 msgstr "顶部"
@@ -14295,6 +14551,14 @@ msgstr "撤销"
 msgid "unknown type icon"
 msgstr "未知类型图标"
 
+#, fuzzy
+msgid "unset"
+msgstr "六月"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "上次更新 %s"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14322,9 +14586,6 @@ msgstr "方差"
 msgid "view instructions"
 msgstr "查看指引"
 
-msgid "virtual"
-msgstr "虚拟"
-
 #, fuzzy
 msgid "viz type"
 msgstr "可视化类型"
@@ -14364,3 +14625,6 @@ msgstr "年"
 
 msgid "zoom area"
 msgstr "缩放面积"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/translations/zh_TW/LC_MESSAGES/messages.po b/superset/translations/zh_TW/LC_MESSAGES/messages.po
index 1fe130e01f6aebf50d622b1d5150b0fcac34d1e8..7e6b06ce777a59aa103535f45d3eee32dcd23154 100644
--- a/superset/translations/zh_TW/LC_MESSAGES/messages.po
+++ b/superset/translations/zh_TW/LC_MESSAGES/messages.po
@@ -17,16 +17,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Apache Superset 0.22.1\n"
 "Report-Msgid-Bugs-To: bestlong168@gmail.com\n"
-"POT-Creation-Date: 2024-07-30 17:32-0600\n"
+"POT-Creation-Date: 2025-04-29 12:34+0330\n"
 "PO-Revision-Date: 2019-01-04 22:19+0800\n"
 "Last-Translator: Shao Yu-Lung <bestlong168@gmail.com>\n"
 "Language: zh_TW\n"
 "Language-Team: zh_TW <bestlong168@gmail.com>\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=1; plural=0\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.15.0\n"
+"Generated-By: Babel 2.9.1\n"
 
 msgid ""
 "\n"
@@ -68,12 +68,12 @@ msgstr ""
 #, python-format
 msgid ""
 "\n"
-"            Error: %(text)s\n"
+"            <p>Your report/alert was unable to be generated because of "
+"the following error: %(text)s</p>\n"
+"            <p>Please check your dashboard/chart for errors.</p>\n"
+"            <p><b><a href=\"%(url)s\">%(call_to_action)s</a></b></p>\n"
 "            "
 msgstr ""
-"\n"
-"錯誤:%(text)s\n"
-"            "
 
 msgid " (excluded)"
 msgstr "(不包含)"
@@ -81,7 +81,7 @@ msgstr "(不包含)"
 msgid ""
 " Set the opacity to 0 if you do not want to override the color specified "
 "in the GeoJSON"
-msgstr "如果您不想覆盖 GeoJSON 中指定的颜色,請將不透明度設定為0"
+msgstr "如果您不想覆盖 GeoJSON 中指定的颜色,請將不透明度設定為 0"
 
 #, fuzzy
 msgid " a dashboard OR "
@@ -91,9 +91,17 @@ msgstr "一個已存在的看板或者"
 msgid " a new one"
 msgstr "另存為新的"
 
+#, python-format
+msgid " at line %(line)d"
+msgstr ""
+
 msgid " expression which needs to adhere to the "
 msgstr " 表達式必須基於 "
 
+#, python-format
+msgid " near '%(highlight)s'"
+msgstr ""
+
 msgid " source code of Superset's sandboxed parser"
 msgstr ""
 
@@ -114,8 +122,8 @@ msgid ""
 "                      database/column name level via the extra parameter."
 msgstr ""
 "來確保字符的表達順序與時間順序一致的標準。如果時間戳格式不符合 ISO 8601 "
-"標準,则需要定義表達式和類型,以便將字符串轉换為日期或時間戳。注意:當前不支持時區。如果時間以epoch格式儲存,請输入 `epoch_s` or"
-" `epoch_ms` 。如果没有指定任何模式,我們可以通過額外的参數在每個資料庫/列名級别上使用可選的預設值。"
+"標準,则需要定義表達式和類型,以便將字符串轉换為日期或時間戳。注意:當前不支持時區。如果時間以 epoch 格式儲存,請输入 `epoch_s` "
+"or `epoch_ms` 。如果没有指定任何模式,我們可以通過額外的参數在每個 資料庫/欄位 名稱級別上使用可選的預設值。"
 
 #, fuzzy
 msgid " to add calculated columns"
@@ -130,10 +138,10 @@ msgid " to edit or add columns and metrics."
 msgstr "編輯或增加列與指標"
 
 msgid " to mark a column as a time column"
-msgstr ""
+msgstr "標記欄位為時間欄位"
 
 msgid " to open SQL Lab. From there you can save the query as a dataset."
-msgstr "然後打開 SQL 工具箱。在哪裡你可以將查詢保存為一個數據集。"
+msgstr "然後打開 SQL 工具箱。在那裡你可以將查詢保存為一個數據集。"
 
 msgid " to visualize your data."
 msgstr ""
@@ -147,24 +155,19 @@ msgstr "% 計算"
 
 #, fuzzy, python-format
 msgid "% of parent"
-msgstr "父類"
+msgstr "% 父類"
 
 #, fuzzy, python-format
 msgid "% of total"
-msgstr "顯示總計"
+msgstr "% 顯示總計"
 
 #, python-format
 msgid "%(dialect)s cannot be used as a data source for security reasons."
 msgstr "出於安全原因,%(dialect)s SQLite 資料庫不能用作數據源。"
 
 #, python-format
-msgid ""
-"%(message)s\n"
-"This may be triggered by: \n"
-"%(issues)s"
+msgid "%(label)s file"
 msgstr ""
-"%(message)s\n"
-"這可能由以下因素觸發:%(issues)s"
 
 #, python-format
 msgid "%(name)s.csv"
@@ -178,22 +181,6 @@ msgstr ""
 msgid "%(object)s does not exist in this database."
 msgstr "資料庫中不存在 %(object)s 。"
 
-#, fuzzy, python-format
-msgid "%(other)s charts will appear here"
-msgstr " %(other)s 圖表將出現在此處"
-
-#, fuzzy, python-format
-msgid "%(other)s dashboards will appear here"
-msgstr " %(other)s 看板將出現在此處"
-
-#, fuzzy, python-format
-msgid "%(other)s recents will appear here"
-msgstr " %(other)s 最近訪問的將出現在此處"
-
-#, fuzzy, python-format
-msgid "%(other)s saved queries will appear here"
-msgstr "%(other)s 保存的請求將出現在此處"
-
 #, python-format
 msgid "%(prefix)s %(title)s"
 msgstr ""
@@ -209,15 +196,6 @@ msgstr ""
 msgid "%(rows)d rows returned"
 msgstr "返回了 %(rows)d 行"
 
-#, python-format
-msgid ""
-"%(subtitle)s\n"
-"This may be triggered by:\n"
-" %(issue)s"
-msgstr ""
-"%(subtitle)s\n"
-"這可能由以下因素觸發:%(issue)s"
-
 #, fuzzy, python-format
 msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\""
 msgid_plural ""
@@ -225,10 +203,6 @@ msgid_plural ""
 "\"%(undefinedParameter)s\"?"
 msgstr[0] "用 %(suggestion)s 替换 \"%(undefinedParameter)s\" 嗎?"
 
-#, python-format
-msgid "%(type)s File"
-msgstr ""
-
 #, python-format
 msgid ""
 "%(validator)s was unable to check your query.\n"
@@ -283,10 +257,6 @@ msgstr "%s 聚合"
 msgid "%s column(s)"
 msgstr "%s 列"
 
-#, python-format
-msgid "%s ineligible item(s) are hidden"
-msgstr ""
-
 #, python-format
 msgid ""
 "%s items could not be tagged because you don’t have edit permissions to "
@@ -308,7 +278,7 @@ msgstr "%s 個選項"
 
 #, fuzzy, python-format
 msgid "%s recipients"
-msgstr "最近"
+msgstr "%s 最近"
 
 #, fuzzy, python-format
 msgid "%s row"
@@ -374,28 +344,32 @@ msgid ""
 "\n"
 msgstr "--  注意:除非您保存查詢,否則如果清除 cookie 或更改瀏覽器時,這些選項卡將不會保留。\n"
 
+#, python-format
+msgid "... and %s others"
+msgstr ""
+
 msgid "0 Selected"
-msgstr "0個被選中"
+msgstr "0 個被選中"
 
 msgid "1 calendar day frequency"
-msgstr "1個日曆日的頻率"
+msgstr "1 個日曆日的頻率"
 
 #, fuzzy
 msgid "1 day"
 msgstr "天"
 
 msgid "1 day ago"
-msgstr "1天之前"
+msgstr "1 天之前"
 
 msgid "1 hour"
-msgstr "1小時"
+msgstr "1 小時"
 
 #, fuzzy
 msgid "1 hourly frequency"
 msgstr "每小時一次的頻率"
 
 msgid "1 minute"
-msgstr "1分鐘"
+msgstr "1 分鐘"
 
 msgid "1 minutely frequency"
 msgstr "每分鐘一次的頻率"
@@ -412,10 +386,10 @@ msgstr "每月月初的頻率"
 
 #, fuzzy
 msgid "1 week"
-msgstr "1週"
+msgstr "1 週"
 
 msgid "1 week ago"
-msgstr "1週之前"
+msgstr "1 週之前"
 
 #, fuzzy
 msgid "1 week starting Monday (freq=W-MON)"
@@ -430,7 +404,7 @@ msgid "1 year"
 msgstr "年"
 
 msgid "1 year ago"
-msgstr "1年之前"
+msgstr "1 年之前"
 
 #, fuzzy
 msgid "1 year end frequency"
@@ -441,24 +415,31 @@ msgid "1 year start frequency"
 msgstr "每年年初的頻率"
 
 msgid "10 minute"
-msgstr "10分鐘"
+msgstr "10 分鐘"
+
+#, fuzzy
+msgid "10/90 percentiles"
+msgstr "9/91 百分位"
+
+msgid "10000"
+msgstr ""
 
 #, fuzzy
 msgid "104 weeks"
 msgstr "週"
 
 msgid "104 weeks ago"
-msgstr "104週之前"
+msgstr "104 週之前"
 
 msgid "15 minute"
-msgstr "15分鐘"
+msgstr "15 分鐘"
 
 #, fuzzy
 msgid "156 weeks"
-msgstr "156週"
+msgstr "156 週"
 
 msgid "156 weeks ago"
-msgstr "156週之前"
+msgstr "156 週之前"
 
 msgid "1AS"
 msgstr ""
@@ -477,55 +458,55 @@ msgstr ""
 
 #, fuzzy
 msgid "2 years"
-msgstr "2年"
+msgstr "2 年"
 
 msgid "2 years ago"
-msgstr "2年之前"
+msgstr "2 年之前"
 
 msgid "2/98 percentiles"
-msgstr "2/98百分位"
+msgstr "2/98 百分位"
 
 msgid "22"
 msgstr ""
 
 #, fuzzy
 msgid "28 days"
-msgstr "28天"
+msgstr "28 天"
 
 msgid "28 days ago"
-msgstr "28天之前"
+msgstr "28 天之前"
 
 msgid "2D"
 msgstr "2D"
 
 msgid "3 letter code of the country"
-msgstr "國家3字碼"
+msgstr "國家 3 字碼"
 
 #, fuzzy
 msgid "3 years"
-msgstr "3年"
+msgstr "3 年"
 
 msgid "3 years ago"
-msgstr "3年前"
+msgstr "3 年前"
 
 msgid "30 days"
-msgstr "30天"
+msgstr "30 天"
 
 #, fuzzy
 msgid "30 days ago"
-msgstr "30天之前"
+msgstr "30 天之前"
 
 msgid "30 minute"
-msgstr "30分鐘"
+msgstr "30 分鐘"
 
 msgid "30 minutes"
-msgstr "30分鐘"
+msgstr "30 分鐘"
 
 msgid "30 second"
-msgstr "30秒"
+msgstr "30 秒"
 
 msgid "30 seconds"
-msgstr "30秒"
+msgstr "30 秒"
 
 msgid "3D"
 msgstr ""
@@ -534,50 +515,54 @@ msgid "4 weeks (freq=4W-MON)"
 msgstr ""
 
 msgid "5 minute"
-msgstr "5分鐘"
+msgstr "5 分鐘"
 
 msgid "5 minutes"
-msgstr "5分鐘"
+msgstr "5 分鐘"
 
 msgid "5 second"
-msgstr "5秒"
+msgstr "5 秒"
 
 #, fuzzy
 msgid "5 seconds"
-msgstr "5秒"
+msgstr "5 秒"
+
+#, fuzzy
+msgid "5/95 percentiles"
+msgstr "9/91 百分位"
 
 #, fuzzy
 msgid "52 weeks"
-msgstr "52週"
+msgstr "52 週"
 
 msgid "52 weeks ago"
-msgstr "52週之前"
+msgstr "52 週之前"
 
 #, fuzzy
 msgid "52 weeks starting Monday (freq=52W-MON)"
 msgstr "以週一開始的52週"
 
 msgid "6 hour"
-msgstr "6小時"
+msgstr "6 小時"
 
 msgid "60 days"
-msgstr "60天"
+msgstr "60 天"
 
 msgid "7 calendar day frequency"
-msgstr "7個日曆日的頻率"
+msgstr "7 個日曆日的頻率"
 
 #, fuzzy
 msgid "7 days"
-msgstr "7天"
+msgstr "7 天"
 
 msgid "7D"
 msgstr ""
 
 msgid "9/91 percentiles"
-msgstr "9/91百分位"
+msgstr "9/91 百分位"
 
 msgid "90 days"
-msgstr "90天"
+msgstr "90 天"
 
 msgid ":"
 msgstr ":"
@@ -589,7 +574,7 @@ msgid "<= (Smaller or equal)"
 msgstr "小於等於(<=)"
 
 msgid "<enter SQL expression here>"
-msgstr "输入SQL表達式"
+msgstr "输入 SQL 表達式"
 
 #, fuzzy
 msgid "<new column>"
@@ -619,13 +604,9 @@ msgstr "大於等於(>=)"
 msgid "A Big Number"
 msgstr "大數字"
 
-#, fuzzy
-msgid "Select column names from a dropdown list that should be parsed as dates."
-msgstr "从下拉列表中选择要分析的日期列名称。"
-
 #, fuzzy
 msgid "A comma-separated list of schemas that files are allowed to upload to."
-msgstr "允許以逗號分割的CSV文件上傳"
+msgstr "允許以逗號分割的 CSV 文件上傳"
 
 msgid "A database port is required when connecting via SSH Tunnel."
 msgstr ""
@@ -633,6 +614,9 @@ msgstr ""
 msgid "A database with the same name already exists."
 msgstr "已存在同名的資料庫。"
 
+msgid "A date is required when using custom date shift"
+msgstr ""
+
 msgid ""
 "A dictionary with column names and their data types if you need to change"
 " the defaults. Example: {\"user_id\":\"int\"}. Check Python's Pandas "
@@ -642,7 +626,7 @@ msgstr ""
 msgid ""
 "A full URL pointing to the location of the built plugin (could be hosted "
 "on a CDN for example)"
-msgstr "指向内置插件位置的完整URL(例如,可以托管在CDN上)"
+msgstr "指向內置插件位置的完整 URL(例如,可以托管在 CDN 上)"
 
 msgid "A handlebars template that is applied to the data"
 msgstr ""
@@ -689,7 +673,7 @@ 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 "一種极坐標圖表,其中圆被分成等角度的楔形,任何楔形表示的值由其面積表示,而不是其半徑或掃掠角度。"
+msgstr "一種極座標圖表,其中圆被分成等角度的楔形,任何楔形表示的值由其面積表示,而不是其半徑或掃掠角度。"
 
 msgid "A readable URL for your dashboard"
 msgstr "為看板生成一個可讀的 URL"
@@ -709,11 +693,6 @@ msgid ""
 "templating syntax"
 msgstr "在查詢中可用的一組参數使用 Jinja 模板語法"
 
-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 "查詢超時。"
 
@@ -816,29 +795,33 @@ msgid "Add CC Recipients"
 msgstr "最近"
 
 msgid "Add CSS template"
-msgstr "新增CSS模板"
-
-msgid "Add Chart"
-msgstr "新增圖表"
-
-msgid "Add Column"
-msgstr "新增列"
+msgstr "新增 CSS 模板"
 
 msgid "Add Dashboard"
 msgstr "新增看板"
 
-msgid "Add Database"
-msgstr "新增資料庫"
+#, fuzzy
+msgid "Add Divider"
+msgstr "分隔"
+
+#, fuzzy
+msgid "Add Filter"
+msgstr "增加過濾條件"
+
+#, fuzzy
+msgid "Add Layer"
+msgstr "隐藏 Layer"
 
 msgid "Add Log"
 msgstr "新增日誌"
 
-msgid "Add Metric"
-msgstr "新增指標"
-
 msgid "Add Report"
 msgstr "新增報告"
 
+#, fuzzy
+msgid "Add Role"
+msgstr "排除角色"
+
 #, fuzzy
 msgid "Add Rule"
 msgstr "新增規則"
@@ -846,6 +829,10 @@ msgstr "新增規則"
 msgid "Add Tag"
 msgstr "新增標籤"
 
+#, fuzzy
+msgid "Add User"
+msgstr "新增規則"
+
 msgid "Add a Plugin"
 msgstr "新增插件"
 
@@ -864,7 +851,7 @@ msgstr "新增其他自定義参數"
 
 #, fuzzy
 msgid "Add an annotation layer"
-msgstr "新增注释層"
+msgstr "新增注釋層"
 
 msgid "Add an item"
 msgstr "新增一行"
@@ -874,17 +861,17 @@ msgid "Add and edit filters"
 msgstr "範圍過濾"
 
 msgid "Add annotation"
-msgstr "新增注释"
+msgstr "新增注釋"
 
 msgid "Add annotation layer"
-msgstr "新增注释層"
+msgstr "新增注釋層"
 
 #, fuzzy
 msgid "Add another notification method"
 msgstr "新增通知方法"
 
 msgid "Add calculated columns to dataset in \"Edit datasource\" modal"
-msgstr "在“編輯數據源”對话框中向數據集增加計算列"
+msgstr "在 “編輯數據源” 對话框中向數據集增加計算列"
 
 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal"
 msgstr ""
@@ -929,9 +916,6 @@ msgid ""
 "displayed in the filter."
 msgstr "為控制篩選器的源查詢增加篩選條件,但這只限於自動完成的上下文,即這些條件不會影響篩選器在仪表板上的應用方式。當你希望通過只掃描底層數據的一個子集來提高查詢性能,或者限制篩選器中顯示的可用值範圍時,這一點特别有用。"
 
-msgid "Add filters and dividers"
-msgstr "增加過濾器和分隔符"
-
 msgid "Add item"
 msgstr "增加條件"
 
@@ -942,11 +926,15 @@ msgid "Add metrics to dataset in \"Edit datasource\" modal"
 msgstr ""
 
 msgid "Add new color formatter"
-msgstr "增加新的的颜色格式化器"
+msgstr "增加新的的顏色格式化器"
 
 msgid "Add new formatter"
 msgstr "新增格式化"
 
+#, fuzzy
+msgid "Add or edit filters"
+msgstr "範圍過濾"
+
 msgid "Add required control values to preview chart"
 msgstr "增加必需的控制值以預覽圖表"
 
@@ -970,13 +958,14 @@ msgstr "給看板增加名稱"
 msgid "Add to dashboard"
 msgstr "增加到看板"
 
-#, fuzzy
-msgid "Add/Edit Filters"
-msgstr "增加過濾條件"
-
 msgid "Added"
 msgstr "已增加"
 
+#, python-format
+msgid "Added 1 new column to the virtual dataset"
+msgid_plural "Added %s new columns to the virtual dataset"
+msgstr[0] ""
+
 #, fuzzy, python-format
 msgid "Added to 1 dashboard"
 msgid_plural "Added to %s dashboards"
@@ -991,9 +980,6 @@ msgstr "可能需要額外的欄位"
 msgid "Additional information"
 msgstr "附加訊息"
 
-msgid "Additional metadata"
-msgstr "附加元數據"
-
 msgid "Additional padding for legend."
 msgstr "圖例額外的内邊距。"
 
@@ -1063,6 +1049,14 @@ msgstr "高級數據類型"
 msgid "Advanced-Analytics"
 msgstr "高級分析"
 
+#, fuzzy
+msgid "Affected Charts"
+msgstr "選擇圖表"
+
+#, fuzzy
+msgid "Affected Dashboards"
+msgstr "選擇看板"
+
 msgid "After"
 msgstr "之後"
 
@@ -1094,6 +1088,10 @@ msgstr ""
 msgid "Aggregation"
 msgstr "合計"
 
+#, fuzzy
+msgid "Aggregation Method"
+msgstr "合計"
+
 msgid "Aggregation function"
 msgstr "聚合功能"
 
@@ -1174,6 +1172,10 @@ msgstr "對齊 +/-"
 msgid "All"
 msgstr "所有"
 
+#, fuzzy, python-format
+msgid "All %s hidden columns"
+msgstr "所有 %s 隱藏的欄位"
+
 msgid "All Text"
 msgstr "所有文本"
 
@@ -1189,26 +1191,14 @@ msgstr "所有過濾器"
 msgid "All panels"
 msgstr "應用於所有面板"
 
-msgid "All panels with this column will be affected by this filter"
-msgstr "包含此列的所有面板都將受到此過濾條件的影響"
-
 msgid "Allow CREATE TABLE AS"
 msgstr "允許 CREATE TABLE AS"
 
-msgid "Allow CREATE TABLE AS option in SQL Lab"
-msgstr "在 SQL 編輯器中允許 CREATE TABLE AS 選項"
-
 msgid "Allow CREATE VIEW AS"
 msgstr "允許 CREATE VIEW AS"
 
-msgid "Allow CREATE VIEW AS option in SQL Lab"
-msgstr "在 SQL 編輯器中允許 CREATE VIEW AS 選項"
-
-msgid "Allow Csv Upload"
-msgstr "允許 Csv 上傳"
-
-msgid "Allow DML"
-msgstr "允許 DML"
+msgid "Allow DDL and DML"
+msgstr ""
 
 msgid "Allow changing catalogs"
 msgstr ""
@@ -1224,6 +1214,10 @@ msgstr "允許列重排"
 msgid "Allow creation of new tables based on queries"
 msgstr "允許基於查詢創建新表"
 
+#, fuzzy
+msgid "Allow creation of new values"
+msgstr "允許基於查詢創建新視圖"
+
 msgid "Allow creation of new views based on queries"
 msgstr "允許基於查詢創建新視圖"
 
@@ -1239,28 +1233,24 @@ msgstr "允許最終用戶通過拖放列標題來重新排列它們。請注意
 msgid "Allow file uploads to database"
 msgstr "允許上傳文件到資料庫"
 
-msgid ""
-"Allow manipulation of the database using non-SELECT statements such as "
-"UPDATE, DELETE, CREATE, etc."
-msgstr "允許使用非 SELECT 語句(如 UPDATE、DELETE、CREATE 等)操作資料庫。"
-
 msgid "Allow node selections"
 msgstr "允許節點選擇"
 
 msgid "Allow sending multiple polygons as a filter event"
 msgstr "允許使用多個多邊形來過濾事件"
 
+msgid ""
+"Allow the execution of DDL (Data Definition Language: CREATE, DROP, "
+"TRUNCATE, etc.) and DML (Data Modification Language: INSERT, UPDATE, "
+"DELETE, etc)"
+msgstr ""
+
 msgid "Allow this database to be explored"
 msgstr "允許瀏覽此資料庫"
 
 msgid "Allow this database to be queried in SQL Lab"
 msgstr "允許在 SQL 工具箱中查詢此資料庫"
 
-msgid ""
-"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in"
-" SQL Lab"
-msgstr "允許用戶在 SQL 編輯器中運行非 SELECT 語句(UPDATE,DELETE,CREATE,...)"
-
 msgid "Allowed Domains (comma separated)"
 msgstr "允許的域名(逗號分隔)"
 
@@ -1272,7 +1262,9 @@ msgid ""
 "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個四分區。"
+msgstr ""
+"也稱為框須圖,該可視化比較了一個相關指標在多個組中的分布。中間的框强調平均值、中值和内部 2 "
+"個四分位數。每個框週围的触須可視化了最小值、最大值、範圍和外部 2 個四分區。"
 
 msgid "Altered"
 msgstr "已更改"
@@ -1302,6 +1294,10 @@ msgstr "向資料庫傳递單個参數時必須指定引擎。"
 msgid "An error has occurred"
 msgstr "發生了一個錯誤"
 
+#, fuzzy, python-format
+msgid "An error has occurred while syncing virtual dataset columns"
+msgstr "獲取數據集時出錯:%s"
+
 msgid "An error occurred"
 msgstr "發生了一個錯誤"
 
@@ -1312,6 +1308,10 @@ msgstr "保存數據集時發生錯誤"
 msgid "An error occurred when running alert query"
 msgstr "精简日誌時出錯 "
 
+#, fuzzy
+msgid "An error occurred while accessing the copy link."
+msgstr "訪問值時出錯。"
+
 msgid "An error occurred while accessing the value."
 msgstr "訪問值時出錯。"
 
@@ -1324,6 +1324,10 @@ msgstr "收起表結構時出錯。請與管理員聯繫。"
 msgid "An error occurred while creating %ss: %s"
 msgstr "創建時出錯:%ss: %s"
 
+#, fuzzy
+msgid "An error occurred while creating the copy link."
+msgstr "創建值時出錯。"
+
 msgid "An error occurred while creating the data source"
 msgstr "創建數據源時發生錯誤"
 
@@ -1460,6 +1464,10 @@ msgid ""
 "button."
 msgstr "在後端儲存查詢時出錯。為避免丢失更改,請使用 \"保存查詢\" 按钮保存查詢。"
 
+#, fuzzy, python-format
+msgid "An error occurred while syncing permissions for %s: %s"
+msgstr "抓取出錯:%ss: %s"
+
 msgid "An error occurred while updating the value."
 msgstr "更新值時出錯。"
 
@@ -1617,7 +1625,7 @@ msgstr "應用的過濾器 (%d)"
 
 #, fuzzy, python-format
 msgid "Applied filters (%s)"
-msgstr "應用的過濾器 (%d)"
+msgstr "應用的過濾器 (%s)"
 
 #, fuzzy, python-format
 msgid "Applied filters: %s"
@@ -1648,12 +1656,6 @@ msgstr "應用過濾器"
 msgid "Apply metrics on"
 msgstr "應用指標到"
 
-msgid "Apply to all panels"
-msgstr "應用於所有面板"
-
-msgid "Apply to specific panels"
-msgstr "應用於特定面板"
-
 msgid "April"
 msgstr "四月"
 
@@ -1697,6 +1699,10 @@ msgstr "確定要删除選定的圖層嗎?"
 msgid "Are you sure you want to delete the selected queries?"
 msgstr "您確定要删除選定的查詢嗎?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected roles?"
+msgstr "確定要删除選定的圖層嗎?"
+
 #, fuzzy
 msgid "Are you sure you want to delete the selected rules?"
 msgstr "確定要删除選定的圖層嗎?"
@@ -1708,6 +1714,10 @@ msgstr "確定要删除選定的 %s 嗎?"
 msgid "Are you sure you want to delete the selected templates?"
 msgstr "確定要删除選定的模板嗎?"
 
+#, fuzzy
+msgid "Are you sure you want to delete the selected users?"
+msgstr "您確定要删除選定的查詢嗎?"
+
 #, fuzzy
 msgid "Are you sure you want to overwrite this dataset?"
 msgstr "確定要删除選定的數據集嗎?"
@@ -1749,15 +1759,13 @@ msgstr "數據集参數無效。"
 msgid "Assist"
 msgstr "關聯"
 
-msgid "Associated Charts"
-msgstr "關聯的圖表"
-
-msgid "Async Execution"
-msgstr "異步執行查詢"
-
 msgid "Asynchronous query execution"
 msgstr "異步執行查詢"
 
+#, fuzzy
+msgid "Attribution"
+msgstr "分布"
+
 msgid "August"
 msgstr "八月"
 
@@ -1784,6 +1792,17 @@ msgstr "自動補全查詢谓詞"
 msgid "Automatic Color"
 msgstr "自動配色"
 
+#, fuzzy
+msgid "Autosize Column"
+msgstr "自定義列"
+
+#, fuzzy
+msgid "Autosize all columns"
+msgstr "自定義列"
+
+msgid "Available Handlebars Helpers in Superset:"
+msgstr ""
+
 msgid "Available sorting modes:"
 msgstr "可用分類模式:"
 
@@ -1791,6 +1810,9 @@ msgstr "可用分類模式:"
 msgid "Average"
 msgstr "平均值"
 
+msgid "Average (Mean)"
+msgstr ""
+
 #, fuzzy
 msgid "Average value"
 msgstr "平均值"
@@ -1832,6 +1854,10 @@ msgstr "返回到列表"
 msgid "Backend"
 msgstr "後端"
 
+#, fuzzy
+msgid "Background Color"
+msgstr "背景"
+
 #, fuzzy
 msgid "Backward values"
 msgstr "向後數值"
@@ -1849,10 +1875,6 @@ msgstr "柱"
 msgid "Bar Chart"
 msgstr "柱狀圖"
 
-#, fuzzy
-msgid "Bar Chart (legacy)"
-msgstr "柱狀圖(傳统)"
-
 #, fuzzy
 msgid "Bar Charts are used to show metrics as a series of bars."
 msgstr "柱狀圖用於將指標以一系列柱狀顯示。"
@@ -1868,10 +1890,25 @@ msgstr "方向"
 msgid "Base"
 msgstr "基礎"
 
+#, fuzzy
+msgid "Base exponent"
+msgstr "資料庫端口"
+
+#, fuzzy
+msgid "Base height"
+msgstr "圖表高度"
+
 #, python-format
 msgid "Base layer map style. See Mapbox documentation: %s"
 msgstr ""
 
+msgid "Base slope"
+msgstr ""
+
+#, fuzzy
+msgid "Base width"
+msgstr "線寬"
+
 msgid "Based on a metric"
 msgstr "基於指標"
 
@@ -1891,9 +1928,6 @@ msgstr "基本情况"
 msgid "Batch editing %d filters:"
 msgstr "批量編輯 %d 個過濾條件:"
 
-msgid "Battery level over time"
-msgstr "電池電量随時間變化"
-
 msgid "Be careful."
 msgstr "小心。"
 
@@ -1916,6 +1950,14 @@ msgstr "带趋势線的數字"
 msgid "Bins"
 msgstr "處於"
 
+#, fuzzy
+msgid "Border color"
+msgstr "系列颜色"
+
+#, fuzzy
+msgid "Border width"
+msgstr "邊缘寬度"
+
 msgid "Bottom"
 msgstr "底端"
 
@@ -2030,9 +2072,6 @@ msgstr "子弹圖"
 msgid "Business"
 msgstr "商業"
 
-msgid "Business Data Type"
-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"
@@ -2095,7 +2134,7 @@ msgid "CSS template"
 msgstr "CSS 模板"
 
 msgid "CSS template not found."
-msgstr "CSS模板未找到"
+msgstr "CSS 模板未找到"
 
 msgid "CSS templates"
 msgstr "CSS 模板"
@@ -2105,8 +2144,8 @@ msgid "CSS templates could not be deleted."
 msgstr "CSS 模板不能被删除"
 
 #, fuzzy
-msgid "CSV Upload"
-msgstr "允許 CSV 上傳"
+msgid "CSV upload"
+msgstr "上傳"
 
 msgid "CTAS & CVAS SCHEMA"
 msgstr "CTAS 和 CVAS 方案"
@@ -2119,8 +2158,9 @@ msgstr ""
 "CTA(create table as select)只能與最後一條語句為 SELECT 的查詢一起運行。請確保查詢的最後一個語句是 "
 "SELECT。然後再次嘗試運行查詢。"
 
-msgid "CTAS Schema"
-msgstr "CTAS 模式"
+#, fuzzy
+msgid "CUSTOM"
+msgstr "自定義"
 
 msgid ""
 "CVAS (create view as select) can only be run with a query with a single "
@@ -2136,9 +2176,6 @@ msgstr "CVAS (create view as select)查詢有多條語句。"
 msgid "CVAS (create view as select) query is not a SELECT statement."
 msgstr "CVAS (create view as select)查詢不是 SELECT 語句。"
 
-msgid "Cache Timeout"
-msgstr "缓存超時"
-
 msgid "Cache Timeout (seconds)"
 msgstr "缓存超時(秒)"
 
@@ -2186,9 +2223,6 @@ msgstr "無法將頂級選項卡移動到嵌套選項卡中"
 msgid "Can select multiple values"
 msgstr "允許選擇多個值"
 
-msgid "Can't have overlap between Series and Breakdowns"
-msgstr "Series 和 Breakdown 之間不能有重叠"
-
 msgid "Cancel"
 msgstr "取消"
 
@@ -2201,6 +2235,10 @@ msgstr "無法訪問查詢"
 msgid "Cannot delete a database that has datasets attached"
 msgstr "無法删除附加了數據集的資料庫"
 
+#, python-format
+msgid "Cannot find the table (%s) metadata."
+msgstr ""
+
 msgid "Cannot have multiple credentials for the SSH Tunnel"
 msgstr ""
 
@@ -2211,6 +2249,10 @@ msgstr "無法加载篩選器"
 msgid "Cannot parse time string [%(human_readable)s]"
 msgstr "無法解析時間字符串[%(human_readable)s]"
 
+#, fuzzy
+msgid "Cartodiagram"
+msgstr "分區圖"
+
 #, fuzzy
 msgid "Catalog"
 msgstr "標籤"
@@ -2295,13 +2337,14 @@ msgstr "更改列的順序。"
 msgid "Change order of rows."
 msgstr "更改行的順序。"
 
-msgid "Changed By"
-msgstr "修改人"
-
 #, fuzzy
 msgid "Changed by"
 msgstr "修改人"
 
+#, fuzzy
+msgid "Changed on"
+msgstr "範圍"
+
 msgid "Changes saved."
 msgstr "修改已保存"
 
@@ -2352,9 +2395,6 @@ msgstr "圖表"
 msgid "Chart %(id)s not found"
 msgstr "圖表 %(id)s 没有找到"
 
-msgid "Chart Cache Timeout"
-msgstr "表缓存超時"
-
 #, fuzzy, python-format
 msgid "Chart Data: %s"
 msgstr "上次更新 %s"
@@ -2457,6 +2497,10 @@ msgstr "圖表参數無效。"
 msgid "Chart properties updated"
 msgstr "編輯圖表属性"
 
+#, fuzzy
+msgid "Chart size"
+msgstr "圖表"
+
 #, fuzzy
 msgid "Chart title"
 msgstr "圖表標題"
@@ -2506,6 +2550,10 @@ msgstr "[點半徑] 的選擇項必須出現在 [Group By]"
 msgid "Choose File"
 msgstr "選擇文件"
 
+#, fuzzy
+msgid "Choose a chart for displaying on the map"
+msgstr "選擇圖表或看板,不能都全部選擇"
+
 msgid "Choose a chart or dashboard not both"
 msgstr "選擇圖表或看板,不能都全部選擇"
 
@@ -2528,9 +2576,6 @@ msgstr "選擇一種數字格式"
 msgid "Choose a source"
 msgstr "選擇一個源"
 
-msgid "Choose a source and a target"
-msgstr "選擇一個源和一個目標"
-
 msgid "Choose a target"
 msgstr "選擇一個目標"
 
@@ -2616,9 +2661,6 @@ msgstr "圆形雷達圖"
 msgid "Circular"
 msgstr "圆"
 
-msgid "Classic chart that visualizes how metrics change over time."
-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."
@@ -2641,8 +2683,11 @@ msgstr "清除所有"
 msgid "Clear form"
 msgstr "清除表單"
 
-msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters"
-msgstr "點擊“+增加/編輯過濾器”按钮來創建新的看板過濾器。"
+#, fuzzy
+msgid ""
+"Click on \"Add or Edit Filters\" option in Settings to create new "
+"dashboard filters"
+msgstr "點擊 \"+增加/編輯過濾器\" 按钮來創建新的看板過濾器。"
 
 msgid ""
 "Click on \"Create chart\" button in the control panel on the left to "
@@ -2668,6 +2713,10 @@ msgstr "單擊此链接可切换到僅顯示連接此資料庫所需的必填欄
 msgid "Click to add a contour"
 msgstr "點擊增加等高線"
 
+#, fuzzy
+msgid "Click to add new layer"
+msgstr "點擊增加等高線"
+
 msgid "Click to cancel sorting"
 msgstr "點擊取消排序"
 
@@ -2778,10 +2827,10 @@ msgstr ""
 
 #, fuzzy
 msgid "Color: "
-msgstr "颜色"
+msgstr "顏色: "
 
 msgid "Colors"
-msgstr "颜色"
+msgstr "顏色"
 
 msgid "Column"
 msgstr "列"
@@ -2790,20 +2839,20 @@ msgstr "列"
 msgid ""
 "Column \"%(column)s\" is not numeric or does not exists in the query "
 "results."
-msgstr "列\"%(column)s\"不是數字或不在查詢结果中"
+msgstr "列 \"%(column)s\" 不是數字或不在查詢结果中"
 
 #, fuzzy
 msgid "Column Configuration"
 msgstr "列配置"
 
-#, fuzzy
-msgid "Column Data Types"
-msgstr "列數據類型"
-
 #, fuzzy
 msgid "Column Formatting"
 msgstr "列格式"
 
+#, fuzzy
+msgid "Column Settings"
+msgstr "多邊形設定"
+
 msgid ""
 "Column containing ISO 3166-2 codes of region/province/department in your "
 "table."
@@ -2819,10 +2868,6 @@ msgstr "包含經度數據的列"
 msgid "Column data types"
 msgstr "列數據類型"
 
-#, fuzzy
-msgid "Column datatype"
-msgstr "列數據類型"
-
 #, fuzzy
 msgid "Column header tooltip"
 msgstr "列標題提示"
@@ -2852,19 +2897,19 @@ msgid ""
 msgstr "欄位作為數據文件的行標籤使用。如果没有索引欄位,则留空。"
 
 #, fuzzy
-msgid "Columnar Upload"
+msgid "Column type"
+msgstr "列數據類型"
+
+#, fuzzy
+msgid "Columnar upload"
 msgstr "列式儲存文件"
 
 msgid "Columns"
 msgstr "列"
 
-#, fuzzy
-msgid "Columns To Be Parsed as Dates"
-msgstr "應作為日期解析的列的逗號分隔列表。"
-
-#, fuzzy
-msgid "Columns To Read"
-msgstr "要讀取的列"
+#, fuzzy, python-format
+msgid "Columns (%s)"
+msgstr "%s 列"
 
 #, fuzzy, python-format
 msgid "Columns missing in dataset: %(invalid_columns)s"
@@ -2877,6 +2922,10 @@ msgstr "數據源中缺少列:%(invalid_columns)s"
 msgid "Columns subtotal position"
 msgstr "列的小計位置"
 
+#, fuzzy
+msgid "Columns to be parsed as dates"
+msgstr "應作為日期解析的列的逗號分隔列表。"
+
 #, fuzzy
 msgid "Columns to calculate distribution across."
 msgstr "計算分布的列。如果留空,则預設為临時列。"
@@ -2893,6 +2942,10 @@ msgstr "列上分組所依据的列"
 msgid "Columns to group by on the rows"
 msgstr "行上分組所依据的列"
 
+#, fuzzy
+msgid "Columns to read"
+msgstr "要讀取的列"
+
 msgid "Combine metrics"
 msgstr "整合指標"
 
@@ -2900,12 +2953,12 @@ 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為索引。長度必須與間隔界限匹配。"
+msgstr "間隔的逗號分隔色選項,例如 1、2、4。整數表示所選配色方案中的颜色,並以 1 為索引。長度必須與間隔界限匹配。"
 
 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提供的值匹配。"
+msgstr "逗號分隔的區間界限,例如 0-2, 2-4 和 4-5 區間的 2,4,5。最後一個數字應與為 Max 提供的值匹配。"
 
 msgid "Comparator option"
 msgstr "比較器選項"
@@ -2927,17 +2980,6 @@ msgid ""
 "and color."
 msgstr "比較指標在不同組之間随時間的變化情况。每一組被映射到一行,並且随着時間的變化被可視化地顯示條的長度和颜色。"
 
-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 ""
-"Compares the lengths of time different activities take in a shared "
-"timeline view."
-msgstr "比較不同活動在共享時間線視圖中所花费的時間長度。"
-
 msgid "Comparison"
 msgstr "比較"
 
@@ -2971,7 +3013,7 @@ msgid "Confidence interval"
 msgstr "置信區間間隔"
 
 msgid "Confidence interval must be between 0 and 1 (exclusive)"
-msgstr "置信區間必須介於0和1(不包含1)之間"
+msgstr "置信區間必須介於 0 和 1(不包含 1)之間"
 
 msgid "Configuration"
 msgstr "配置"
@@ -2998,12 +3040,19 @@ msgstr "配置過濾範圍"
 msgid "Configure the basics of your Annotation Layer."
 msgstr "注释層基本配置"
 
+msgid "Configure the chart size for each zoom level"
+msgstr ""
+
 msgid "Configure this dashboard to embed it into an external web application."
 msgstr "配置此仪表板,以便將其嵌入到外部網路應用程序中。"
 
 msgid "Configure your how you overlay is displayed here."
 msgstr "配置如何在這里顯示您的標注。"
 
+#, fuzzy
+msgid "Confirm Password"
+msgstr "顯示密碼"
+
 #, fuzzy
 msgid "Confirm overwrite"
 msgstr "確認保存"
@@ -3011,6 +3060,9 @@ msgstr "確認保存"
 msgid "Confirm save"
 msgstr "確認保存"
 
+msgid "Confirm the user's password"
+msgstr ""
+
 msgid "Connect"
 msgstr "連接"
 
@@ -3018,7 +3070,7 @@ msgid "Connect Google Sheet"
 msgstr ""
 
 msgid "Connect Google Sheets as tables to this database"
-msgstr "將Google Sheet作為表格連接到此資料庫"
+msgstr "將 Google Sheet 作為表格連接到此資料庫"
 
 msgid "Connect a database"
 msgstr "連接資料庫"
@@ -3030,7 +3082,7 @@ msgid "Connect this database using the dynamic form instead"
 msgstr "使用動態参數連接此資料庫"
 
 msgid "Connect this database with a SQLAlchemy URI string instead"
-msgstr "使用SQLAlchemy URI链接此資料庫"
+msgstr "使用 SQLAlchemy URI 链接此資料庫"
 
 msgid "Connection"
 msgstr "連接"
@@ -3042,9 +3094,6 @@ msgstr "連接失敗,請檢查您的連接配置"
 msgid "Connection failed, please check your connection settings."
 msgstr "連接失敗,請檢查您的連接配置"
 
-msgid "Connection looks good!"
-msgstr "連接测試成功!"
-
 #, fuzzy
 msgid "Content format"
 msgstr "時間格式"
@@ -3086,21 +3135,21 @@ msgstr "複製到剪貼簿!"
 msgid "Copy"
 msgstr "複製"
 
+msgid "Copy SELECT statement"
+msgstr ""
+
 msgid "Copy SELECT statement to the clipboard"
 msgstr "將 SELECT 語句複製到剪貼簿"
 
-msgid "Copy and Paste JSON credentials"
-msgstr "複製和粘贴JSON憑證"
+msgid "Copy URL"
+msgstr ""
 
-msgid "Copy and paste the entire service account .json file here"
-msgstr "複製服務帳戶的 json 文件複製並粘贴到此處"
+msgid "Copy and Paste JSON credentials"
+msgstr "複製和粘贴 JSON 憑證"
 
 msgid "Copy link"
 msgstr "複製链接"
 
-msgid "Copy message"
-msgstr "複製訊息"
-
 #, python-format
 msgid "Copy of %s"
 msgstr "%s 的副本"
@@ -3118,9 +3167,12 @@ msgstr "複製查詢 URL"
 msgid "Copy query link to your clipboard"
 msgstr "將查詢链接複製到剪貼簿"
 
+msgid "Copy the current data"
+msgstr ""
+
 #, fuzzy
 msgid "Copy the identifier of the account you are trying to connect to."
-msgstr "將嘗試連接的账號複製到這里"
+msgstr "將嘗試連接的帳號複製到這里"
 
 msgid "Copy the name of the HTTP Path of your cluster."
 msgstr ""
@@ -3135,6 +3187,10 @@ msgstr "複製到剪貼簿"
 msgid "Copy to clipboard"
 msgstr "複製到剪貼簿"
 
+#, fuzzy
+msgid "Corner Radius"
+msgstr "内半徑"
+
 msgid "Correlation"
 msgstr "相關性"
 
@@ -3158,12 +3214,15 @@ msgid "Could not load database driver"
 msgstr "無法加载資料庫驱動程序"
 
 msgid "Could not load database driver: {}"
-msgstr "無法加载資料庫驱動程序:{}"
+msgstr "無法加载資料庫驅動程序:{}"
 
 #, python-format
 msgid "Could not resolve hostname: \"%(host)s\"."
 msgstr ""
 
+msgid "Could not validate the user in the current session."
+msgstr ""
+
 #, fuzzy
 msgid "Count"
 msgstr "計數"
@@ -3263,6 +3322,9 @@ msgstr "創建數據源,並弹出一個新的選項卡"
 msgid "Creator"
 msgstr "作者"
 
+msgid "Credentials uploaded"
+msgstr ""
+
 #, fuzzy
 msgid "Crimson"
 msgstr "血红色"
@@ -3356,6 +3418,9 @@ msgstr ""
 msgid "Custom color palettes"
 msgstr "自動補全"
 
+msgid "Custom column name (leave blank for default)"
+msgstr ""
+
 #, fuzzy
 msgid "Custom date"
 msgstr "自定義"
@@ -3390,9 +3455,6 @@ msgstr ""
 msgid "Cyclic dependency detected"
 msgstr ""
 
-msgid "D3 Format"
-msgstr "D3 格式"
-
 msgid "D3 format"
 msgstr "D3 格式"
 
@@ -3454,6 +3516,21 @@ msgstr "看板 [%s] 刚刚被創建,並且圖表 [%s] 已被增加到其中"
 msgid "Dashboard [{}] just got created and chart [{}] was added to it"
 msgstr "看板 [{}] 刚刚被創建,並且圖表 [{}] 已被增加到其中"
 
+msgid "Dashboard cannot be copied due to invalid parameters."
+msgstr ""
+
+#, fuzzy
+msgid "Dashboard cannot be favorited."
+msgstr "看板無法更新。"
+
+#, fuzzy
+msgid "Dashboard cannot be unfavorited."
+msgstr "看板無法更新。"
+
+#, fuzzy
+msgid "Dashboard color configuration could not be updated."
+msgstr "看板無法更新。"
+
 msgid "Dashboard could not be deleted."
 msgstr "看板無法被删除。"
 
@@ -3467,6 +3544,10 @@ msgstr "看板不存在"
 msgid "Dashboard imported"
 msgstr "看板已導入"
 
+#, fuzzy
+msgid "Dashboard native filters could not be patched."
+msgstr "看板無法更新。"
+
 msgid "Dashboard parameters are invalid."
 msgstr "看板参數無效。"
 
@@ -3512,10 +3593,6 @@ msgstr "虚線"
 msgid "Data"
 msgstr "數據"
 
-#, fuzzy
-msgid "Data Imported"
-msgstr "數據集已導入"
-
 msgid "Data Table"
 msgstr "數據表"
 
@@ -3538,7 +3615,11 @@ msgstr "無法從结果後端檢索數據。您需要重新運行原始查詢。
 
 #, fuzzy, python-format
 msgid "Data for %s"
-msgstr "給 JS 的額外數據"
+msgstr "給 %s 的數據"
+
+#, fuzzy
+msgid "Data imported"
+msgstr "數據集已導入"
 
 msgid "Data preview"
 msgstr "數據預覽"
@@ -3648,7 +3729,7 @@ msgstr "數據集"
 
 #, fuzzy, python-format
 msgid "Dataset %(table)s already exists"
-msgstr "數據集 %(name)s 已存在"
+msgstr "數據集 %(table)s 已存在"
 
 #, fuzzy
 msgid "Dataset Name"
@@ -3702,14 +3783,7 @@ msgstr "數據集"
 msgid ""
 "Datasets can be created from database tables or SQL queries. Select a "
 "database table to the left or "
-msgstr "數據集可以基於資料庫表或SQL查詢創建。請在左側選擇一個資料庫表或者"
-
-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 ""
+msgstr "數據集可以基於資料庫表或 SQL 查詢創建。請在左側選擇一個資料庫表或者"
 
 #, fuzzy
 msgid "Datasets could not be deleted."
@@ -3747,9 +3821,6 @@ msgstr "日期格式字符串"
 msgid "Date/Time"
 msgstr "日期/時間"
 
-msgid "Datetime Format"
-msgstr "時間格式"
-
 msgid ""
 "Datetime column not provided as part table configuration and is required "
 "by this type of chart"
@@ -3778,20 +3849,19 @@ msgstr "禁用"
 msgid "December"
 msgstr "十二月"
 
-msgid "Decides which column to sort the base axis by."
-msgstr ""
-
-msgid "Decides which measure to sort the base axis by."
+#, fuzzy
+msgid "Decides which column or measure to sort the base axis by."
 msgstr "决定按哪個度量來對基軸進行排序。"
 
-msgid "Decimal Character"
+#, fuzzy
+msgid "Decimal character"
 msgstr "十進制字符"
 
 msgid "Deck.gl - 3D Grid"
-msgstr "Deck.gl - 3D網格"
+msgstr "Deck.gl - 3D 網格"
 
 msgid "Deck.gl - 3D HEX"
-msgstr "Deck.gl - 3D六角曲面"
+msgstr "Deck.gl - 3D 六角曲面"
 
 msgid "Deck.gl - Arc"
 msgstr "Deck.gl - 弧度"
@@ -3830,18 +3900,18 @@ msgstr "減少"
 msgid "Default Catalog"
 msgstr "預設值"
 
-msgid "Default Endpoint"
-msgstr "預設端點"
-
 #, fuzzy
 msgid "Default Schema"
 msgstr "選擇方案"
 
 msgid "Default URL"
-msgstr "預設URL"
+msgstr "預設 URL"
 
-msgid "Default URL to redirect to when accessing from the dataset list page"
-msgstr "從數據集列表頁訪問時重定向到的預設URL"
+msgid ""
+"Default URL to redirect to when accessing from the dataset list page.\n"
+"            Accepts relative URLs such as <span style=„white-space: "
+"nowrap;”>/superset/dashboard/{id}/</span>"
+msgstr ""
 
 msgid "Default Value"
 msgstr "預設值"
@@ -3861,9 +3931,6 @@ msgid ""
 "than this if other columns don't need much space"
 msgstr "預設最小列寬(以像素為單位),如果其他列不需要太多空間,则實際寬度可能仍大於此值"
 
-msgid "Default value is required"
-msgstr "需要預設值"
-
 msgid "Default value must be set when \"Filter has default value\" is checked"
 msgstr "選中篩選器具有預設值時,必須設定預設值"
 
@@ -3875,7 +3942,7 @@ msgstr "當\"必填項\"被選中時預設值必須被設定"
 msgid ""
 "Default value set automatically when \"Select first filter value by "
 "default\" is checked"
-msgstr "當勾選“預設選擇第一個過濾值”時,將自動設定預設值。"
+msgstr "當勾選 \"預設選擇第一個過濾值\" 時,將自動設定預設值。"
 
 msgid ""
 "Define a function that receives the input and outputs the content for a "
@@ -3910,9 +3977,6 @@ msgid ""
 "[Periods] text box"
 msgstr "定義要應用的滚動窗口函數,與 [期限] 文本框一起使用"
 
-msgid "Defines how each series is broken down"
-msgstr "定義每個序列是如何被分解的"
-
 msgid "Defines the grid size in pixels"
 msgstr ""
 
@@ -3967,9 +4031,17 @@ msgstr "確定删除查詢?"
 msgid "Delete Report?"
 msgstr "删除報表?"
 
+#, fuzzy
+msgid "Delete Role?"
+msgstr "删除"
+
 msgid "Delete Template?"
 msgstr "删除模板?"
 
+#, fuzzy
+msgid "Delete User?"
+msgstr "確定删除查詢?"
+
 msgid "Delete all Really?"
 msgstr "確定删除全部?"
 
@@ -3988,12 +4060,20 @@ msgstr "删除郵件報告"
 msgid "Delete query"
 msgstr "删除查詢"
 
+#, fuzzy
+msgid "Delete role"
+msgstr "删除"
+
 msgid "Delete template"
 msgstr "删除模板"
 
 msgid "Delete this container and save to remove this message."
 msgstr "删除此容器並保存以移除此消息。"
 
+#, fuzzy
+msgid "Delete user"
+msgstr "删除查詢"
+
 #, fuzzy
 msgid "Deleted"
 msgstr "删除"
@@ -4047,13 +4127,30 @@ msgstr[0] "删除 %(num)d 個保存的查詢"
 msgid "Deleted %s"
 msgstr "已删除:%s"
 
+#, fuzzy, python-format
+msgid "Deleted role: %s"
+msgstr "已删除:%s"
+
+#, fuzzy, python-format
+msgid "Deleted roles: %s"
+msgstr "已删除:%s"
+
+#, fuzzy, python-format
+msgid "Deleted user: %s"
+msgstr "已删除:%s"
+
+#, fuzzy, python-format
+msgid "Deleted users: %s"
+msgstr "已删除:%s"
+
 #, python-format
 msgid "Deleted: %s"
 msgstr "已删除:%s"
 
+#, fuzzy
 msgid ""
-"Deleting a tab will remove all content within it. You may still reverse "
-"this action with the"
+"Deleting a tab will remove all content within it and will deactivate any "
+"related alerts or reports. You may still reverse this action with the"
 msgstr "删除一個標籤頁將會移除其中的所有内容。您仍然可以回退這個操作,點擊"
 
 msgid "Delimited long & lat single column"
@@ -4065,9 +4162,6 @@ msgstr "分隔符"
 msgid "Delivery method"
 msgstr "發送方式"
 
-msgid "Demographics"
-msgstr "人口统計"
-
 msgid "Density"
 msgstr "密度"
 
@@ -4075,9 +4169,6 @@ msgstr "密度"
 msgid "Dependent on"
 msgstr "取决於"
 
-msgid "Deprecated"
-msgstr "過時"
-
 msgid "Description"
 msgstr "描述"
 
@@ -4174,10 +4265,6 @@ msgstr "這個數據集没有返回預覽數據"
 msgid "Discard"
 msgstr "取消"
 
-#, fuzzy
-msgid "Display"
-msgstr "顯示"
-
 msgid "Display Name"
 msgstr "顯示名稱"
 
@@ -4185,6 +4272,10 @@ msgstr "顯示名稱"
 msgid "Display all"
 msgstr "顯示名稱"
 
+#, fuzzy
+msgid "Display column in the chart"
+msgstr "顯示列級别合計"
+
 #, fuzzy
 msgid "Display column level subtotal"
 msgstr "顯示列級别小計"
@@ -4192,6 +4283,10 @@ msgstr "顯示列級别小計"
 msgid "Display column level total"
 msgstr "顯示列級别合計"
 
+#, fuzzy
+msgid "Display column name"
+msgstr "顯示列級别合計"
+
 msgid "Display configuration"
 msgstr "顯示配置"
 
@@ -4214,8 +4309,8 @@ msgid "Display row level total"
 msgstr "顯示行級合計"
 
 #, fuzzy
-msgid "Display settings"
-msgstr "顯示配置"
+msgid "Display type icon"
+msgstr "時間類型圖標"
 
 msgid ""
 "Displays connections between entities in a graph structure. Useful for "
@@ -4232,9 +4327,6 @@ msgstr "基於某列進行分布"
 msgid "Distribution"
 msgstr "分布"
 
-msgid "Distribution - Bar Chart"
-msgstr "分布 - 柱狀圖"
-
 msgid "Divider"
 msgstr "分隔"
 
@@ -4265,9 +4357,18 @@ msgstr "下载為圖片"
 msgid "Download as image"
 msgstr "下载為圖片"
 
+msgid "Download is on the way"
+msgstr ""
+
 msgid "Download to CSV"
 msgstr "下载為 CSV"
 
+#, python-format
+msgid ""
+"Downloading %(rows)s rows based on the LIMIT configuration. If you want "
+"the entire result set, you need to adjust the LIMIT."
+msgstr ""
+
 msgid "Draft"
 msgstr "草稿"
 
@@ -4364,6 +4465,14 @@ msgstr "重复的列/指標標籤:%(labels)s。請確保所有列和指標都
 msgid "Duplicate dataset"
 msgstr "複製數據集"
 
+#, fuzzy
+msgid "Duplicate role"
+msgstr "複製"
+
+#, fuzzy, python-format
+msgid "Duplicate role %(name)s"
+msgstr "重复的角色 %(name)s"
+
 msgid "Duplicate tab"
 msgstr "複製選項卡"
 
@@ -4377,17 +4486,6 @@ msgid ""
 "the cache. Note this defaults to the global timeout if undefined."
 msgstr "該資料庫圖表缓存超時的持續時間(單位為秒)。超時時間設定為0表示缓存永不過期,設定為-1则表示绕過缓存。如果未定義,此項預設採用全局超時設定。"
 
-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 ""
-"Duration (in seconds) of the caching timeout for this chart. Note this "
-"defaults to the datasource/table timeout if undefined."
-msgstr "此圖表的缓存超時持續時間(單位為秒)。如果未定義,該設定將預設使用數據源/資料庫表的超時設定。"
-
 #, fuzzy
 msgid ""
 "Duration (in seconds) of the caching timeout for this chart. Set to -1 to"
@@ -4395,12 +4493,6 @@ msgid ""
 "undefined."
 msgstr "此圖表缓存過期時間的時長(單位為秒)。設定為 -1 可以绕過缓存。如果未定義,將預設使用數據集的超時設定。"
 
-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 ""
 "Duration (in seconds) of the metadata caching timeout for schemas of this"
 " database. If left unset, the cache never expires."
@@ -4418,6 +4510,10 @@ msgstr "時長(毫秒)(1.40008 => 1ms 400µs 80ns)"
 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)"
 msgstr "時長(毫秒)(1.40008 => 1ms 400µs 80ns)"
 
+#, fuzzy
+msgid "Duration in ms (10500 => 0:10.5)"
+msgstr "時長(毫秒)(66000 => 1m 6s)"
+
 msgid "Duration in ms (66000 => 1m 6s)"
 msgstr "時長(毫秒)(66000 => 1m 6s)"
 
@@ -4429,7 +4525,7 @@ msgid "Dynamically search all filter values"
 msgstr "動態搜索所有的過濾器值"
 
 msgid "ECharts"
-msgstr "ECharts圖表"
+msgstr "ECharts 圖表"
 
 #, fuzzy
 msgid "EMAIL_REPORTS_CTA"
@@ -4442,10 +4538,6 @@ msgstr "结束"
 msgid "ERROR"
 msgstr "錯誤"
 
-#, python-format
-msgid "ERROR: %s"
-msgstr "錯誤: %s"
-
 msgid "Edge length"
 msgstr "邊長"
 
@@ -4470,48 +4562,41 @@ msgstr "編輯 CSS"
 msgid "Edit CSS template properties"
 msgstr "編輯 CSS 模板属性"
 
-msgid "Edit Chart"
-msgstr "編輯圖表"
-
 #, fuzzy
 msgid "Edit Chart Properties"
 msgstr "編輯圖表属性"
 
-msgid "Edit Column"
-msgstr "編輯列"
-
 msgid "Edit Dashboard"
 msgstr "編輯看板"
 
-msgid "Edit Database"
-msgstr "編輯資料庫"
-
 msgid "Edit Dataset "
 msgstr "編輯數據集"
 
 msgid "Edit Log"
 msgstr "編輯日誌"
 
-msgid "Edit Metric"
-msgstr "編輯指標"
-
 msgid "Edit Plugin"
 msgstr "編輯插件"
 
 msgid "Edit Report"
 msgstr "編輯報告"
 
+#, fuzzy
+msgid "Edit Role"
+msgstr "編輯模式"
+
 #, fuzzy
 msgid "Edit Rule"
 msgstr "編輯規則"
 
-msgid "Edit Table"
-msgstr "編輯表"
-
 #, fuzzy
 msgid "Edit Tag"
 msgstr "編輯標籤"
 
+#, fuzzy
+msgid "Edit User"
+msgstr "編輯查詢"
+
 msgid "Edit annotation"
 msgstr "編輯注释"
 
@@ -4549,6 +4634,10 @@ msgstr "編輯属性"
 msgid "Edit query"
 msgstr "編輯查詢"
 
+#, fuzzy
+msgid "Edit role"
+msgstr "編輯模式"
+
 msgid "Edit template"
 msgstr "編輯模板"
 
@@ -4562,6 +4651,10 @@ msgstr "編輯看板"
 msgid "Edit time range"
 msgstr "編輯時間範圍"
 
+#, fuzzy
+msgid "Edit user"
+msgstr "編輯查詢"
+
 msgid "Edited"
 msgstr "已編輯"
 
@@ -4579,7 +4672,7 @@ msgstr "用戶名\"%(username)s\"或密碼不正確"
 msgid ""
 "Either the username \"%(username)s\", password, or database name "
 "\"%(database)s\" is incorrect."
-msgstr "用戶名\"%(username)s\"、密碼或資料庫名稱\"%(database)s\"不正確"
+msgstr "用戶名 \"%(username)s\", 密碼或資料庫名稱 \"%(database)s\" 不正確"
 
 msgid "Either the username or the password is wrong."
 msgstr "用戶名或密碼錯誤。"
@@ -4588,6 +4681,14 @@ msgstr "用戶名或密碼錯誤。"
 msgid "Elevation"
 msgstr "執行時間"
 
+#, fuzzy
+msgid "Email"
+msgstr "詳細訊息"
+
+#, fuzzy
+msgid "Email is required"
+msgstr "需要值"
+
 msgid "Email reports active"
 msgstr "啟用郵件報告"
 
@@ -4605,6 +4706,10 @@ msgstr "嵌入代碼"
 msgid "Embed dashboard"
 msgstr "嵌入看板"
 
+#, fuzzy
+msgid "Embedded dashboard could not be deleted."
+msgstr "看板無法被删除。"
+
 msgid "Embedding deactivated."
 msgstr "解除嵌入。"
 
@@ -4615,9 +4720,6 @@ msgstr "發送過濾器事件"
 msgid "Emphasis"
 msgstr "重點"
 
-msgid "Employment and education"
-msgstr "就業和教育"
-
 msgid "Empty circle"
 msgstr "空心圆"
 
@@ -4639,10 +4741,7 @@ msgid "Empty row"
 msgstr "空的行"
 
 msgid "Enable 'Allow file uploads to database' in any database's settings"
-msgstr "在資料庫設定中啟用“允許上傳文件到資料庫”"
-
-msgid "Enable Filter Select"
-msgstr "啟用過濾器選擇"
+msgstr "在資料庫設定中啟用 '允許上傳文件到資料庫'"
 
 #, fuzzy
 msgid "Enable cross-filtering"
@@ -4749,12 +4848,26 @@ msgstr "報告名稱"
 msgid "Enter the required %(dbModelName)s credentials"
 msgstr "請输入必要的 %(dbModelName)s 的憑證"
 
+msgid "Enter the unique project id for your database."
+msgstr ""
+
+msgid "Enter the user's email"
+msgstr ""
+
+#, fuzzy
+msgid "Enter the user's first name"
+msgstr "告警名稱"
+
+#, fuzzy
+msgid "Enter the user's last name"
+msgstr "告警名稱"
+
+msgid "Enter the user's username"
+msgstr ""
+
 msgid "Entity"
 msgstr "實體"
 
-msgid "Entity ID"
-msgstr "實體ID"
-
 msgid "Equal Date Sizes"
 msgstr "相同的日期大小"
 
@@ -4768,6 +4881,14 @@ msgstr "錯誤"
 msgid "Error Fetching Tagged Objects"
 msgstr "獲取標籤對象錯誤"
 
+#, fuzzy, python-format
+msgid "Error deleting %s"
+msgstr "獲取數據時出錯:%s"
+
+#, fuzzy
+msgid "Error faving chart"
+msgstr "保存數據集時發生錯誤"
+
 #, python-format
 msgid "Error in jinja expression in HAVING clause: %(msg)s"
 msgstr "jinja 表達式中的 HAVING 子句出錯:%(msg)s"
@@ -4790,6 +4911,10 @@ msgstr "加载圖表數據源時出錯。過濾器可能無法正常工作。"
 msgid "Error message"
 msgstr "錯誤訊息"
 
+#, fuzzy
+msgid "Error parsing"
+msgstr "錯誤(暗色)"
+
 #, fuzzy
 msgid "Error reading CSV file"
 msgstr "保存數據集時發生錯誤"
@@ -4806,6 +4931,22 @@ msgstr "上傳 Excel"
 msgid "Error saving dataset"
 msgstr "保存數據集時發生錯誤"
 
+#, fuzzy
+msgid "Error unfaving chart"
+msgstr "保存數據集時發生錯誤"
+
+#, fuzzy
+msgid "Error while adding role!"
+msgstr "獲取圖表時出錯"
+
+#, fuzzy
+msgid "Error while adding user!"
+msgstr "獲取圖表時出錯"
+
+#, fuzzy
+msgid "Error while duplicating role!"
+msgstr "獲取圖表時出錯"
+
 msgid "Error while fetching charts"
 msgstr "獲取圖表時出錯"
 
@@ -4813,10 +4954,30 @@ msgstr "獲取圖表時出錯"
 msgid "Error while fetching data: %s"
 msgstr "獲取數據時出錯:%s"
 
+#, fuzzy
+msgid "Error while fetching permissions"
+msgstr "獲取圖表時出錯"
+
+#, fuzzy
+msgid "Error while fetching roles"
+msgstr "獲取圖表時出錯"
+
+#, fuzzy
+msgid "Error while fetching users"
+msgstr "獲取圖表時出錯"
+
 #, python-format
 msgid "Error while rendering virtual dataset query: %(msg)s"
 msgstr "保存查詢時出錯:%(msg)s"
 
+#, fuzzy
+msgid "Error while updating role!"
+msgstr "獲取圖表時出錯"
+
+#, fuzzy
+msgid "Error while updating user!"
+msgstr "獲取圖表時出錯"
+
 #, python-format
 msgid "Error: %(error)s"
 msgstr "錯誤:%(error)s"
@@ -4842,15 +5003,6 @@ msgstr "在運行查詢之前計算成本估算"
 msgid "Event"
 msgstr "事件"
 
-msgid "Event Flow"
-msgstr "事件流"
-
-msgid "Event Names"
-msgstr "事件名稱"
-
-msgid "Event definition"
-msgstr "事件定義"
-
 msgid "Event flow"
 msgstr "事件流"
 
@@ -4872,13 +5024,13 @@ msgstr "例子"
 msgid "Examples"
 msgstr "示例"
 
-#, fuzzy
-msgid "Excel Upload"
-msgstr "CSV 上傳"
-
 msgid "Excel file format cannot be determined"
 msgstr ""
 
+#, fuzzy
+msgid "Excel upload"
+msgstr "CSV 上傳"
+
 msgid "Exclude selected values"
 msgstr "排除選定的值"
 
@@ -4974,12 +5126,6 @@ msgstr "導出為 PDF"
 msgid "Export to Pivoted .CSV"
 msgstr "導出為透視表形式的 CSV"
 
-msgid "Export to YAML"
-msgstr "導出為 YAML"
-
-msgid "Export to YAML?"
-msgstr "導出到 YAML?"
-
 #, fuzzy
 msgid "Export to full .CSV"
 msgstr "導出全量 CSV"
@@ -5000,11 +5146,9 @@ msgstr "在 SQL 工具箱中展示資料庫"
 msgid "Expose in SQL Lab"
 msgstr "在 SQL 工具箱中展示"
 
-msgid "Expose this DB in SQL Lab"
-msgstr "在 SQL 工具箱中展示這個資料庫"
-
-msgid "Expression"
-msgstr "表達式"
+#, fuzzy
+msgid "Extent"
+msgstr "最近"
 
 msgid "Extra"
 msgstr "擴展"
@@ -5028,10 +5172,6 @@ msgstr ""
 " Platform Team\", \"details\": \"This table is the source of truth.\" } "
 "}`."
 
-#, python-format
-msgid "Extra field cannot be decoded by JSON. %(msg)s"
-msgstr "JSON 無法解碼額外欄位。%(msg)s"
-
 msgid "Extra parameters for use in jinja templated queries"
 msgstr "用於 jinja 模板化查詢的額外参數"
 
@@ -5050,6 +5190,10 @@ msgstr "拉伸"
 msgid "FEB"
 msgstr "二月"
 
+#, fuzzy
+msgid "FIT DATA"
+msgstr "編輯數據集"
+
 msgid "FRI"
 msgstr "星期五"
 
@@ -5059,16 +5203,15 @@ msgstr "因子"
 msgid "Factor to multiply the metric by"
 msgstr "用於乘以度量值的因子"
 
+msgid "Fail login count"
+msgstr ""
+
 msgid "Failed"
 msgstr "失敗"
 
 msgid "Failed at retrieving results"
 msgstr "檢索结果失敗"
 
-#, python-format
-msgid "Failed at stopping query. %s"
-msgstr "停止查詢失敗。 %s"
-
 msgid "Failed to create report"
 msgstr "創建報告發生錯誤"
 
@@ -5099,6 +5242,10 @@ msgstr "保存交叉篩選作用域失敗"
 msgid "Failed to start remote query on a worker."
 msgstr "無法啟動遠程查詢"
 
+#, fuzzy, python-format
+msgid "Failed to stop query."
+msgstr "停止查詢失敗。 %s"
+
 #, fuzzy
 msgid "Failed to tag items"
 msgstr "給對象打標籤失敗"
@@ -5122,9 +5269,6 @@ msgstr ""
 msgid "February"
 msgstr "二月"
 
-msgid "Fetch Values Predicate"
-msgstr "取值谓詞"
-
 msgid "Fetch data preview"
 msgstr "獲取數據預覽"
 
@@ -5150,15 +5294,12 @@ msgstr "欄位是必需的"
 msgid "File"
 msgstr "文件"
 
-#, fuzzy
-msgid "File Settings"
-msgstr "過濾器設定"
-
 msgid "File extension is not allowed."
 msgstr ""
 
-msgid "File size exceeds the maximum allowed size."
-msgstr ""
+#, fuzzy
+msgid "File settings"
+msgstr "過濾器設定"
 
 #, fuzzy
 msgid "File upload"
@@ -5231,9 +5372,6 @@ msgstr "過濾器值列表不能為空"
 msgid "Filter your charts"
 msgstr "過濾您的圖表"
 
-msgid "Filterable"
-msgstr "可過濾"
-
 msgid "Filters"
 msgstr "過濾"
 
@@ -5246,6 +5384,16 @@ msgstr "按指標過濾"
 msgid "Filters for comparison must have a value"
 msgstr "用於比較的過濾器必須有值"
 
+msgid "Filters for values equal to this exact value."
+msgstr ""
+
+#, fuzzy
+msgid "Filters for values greater than or equal."
+msgstr "`行限制` 必須大於或等於 0"
+
+msgid "Filters for values less than or equal."
+msgstr ""
+
 #, python-format
 msgid "Filters out of scope (%d)"
 msgstr "過濾器超出範圍(%d)"
@@ -5275,6 +5423,14 @@ msgstr "完成"
 msgid "First"
 msgstr "第一個值"
 
+#, fuzzy
+msgid "First name"
+msgstr "圖表名稱"
+
+#, fuzzy
+msgid "First name is required"
+msgstr "需要名稱"
+
 msgid ""
 "Fix the trend line to the full time range specified in case filtered "
 "results do not include the start or end dates"
@@ -5354,6 +5510,10 @@ msgstr "强制日期格式化"
 msgid "Force refresh"
 msgstr "强制刷新"
 
+#, fuzzy
+msgid "Force refresh Slack channels list"
+msgstr "强制刷新模式列表"
+
 #, fuzzy
 msgid "Force refresh catalog list"
 msgstr "强制刷新表列表"
@@ -5482,6 +5642,10 @@ msgstr "GeoJSON 設定"
 msgid "Geohash"
 msgstr "Geohash"
 
+#, fuzzy
+msgid "Geometry Column"
+msgstr "空的列"
+
 msgid "Get the last date by the date unit."
 msgstr "按日期單位獲取最後的日期。"
 
@@ -5544,9 +5708,6 @@ msgstr "分組"
 msgid "Group by"
 msgstr "分組"
 
-msgid "Groupable"
-msgstr "可分組"
-
 msgid "Guest user cannot modify chart payload"
 msgstr ""
 
@@ -5564,11 +5725,6 @@ msgstr "Handlebars模板"
 msgid "Hard value bounds applied for color coding."
 msgstr ""
 
-msgid ""
-"Hard value bounds applied for color coding. Is only relevant and applied "
-"when the normalization is applied against the whole heatmap."
-msgstr "應用於颜色编碼的硬值邊界。只有當對整個热圖應用標準化時才是相關的和應用的。"
-
 #, fuzzy
 msgid "Has created by"
 msgstr "已創建"
@@ -5576,9 +5732,6 @@ msgstr "已創建"
 msgid "Header"
 msgstr "標題行"
 
-msgid "Header Row"
-msgstr "標題行"
-
 #, fuzzy
 msgid "Header row"
 msgstr "標題行"
@@ -5586,12 +5739,6 @@ msgstr "標題行"
 msgid "Heatmap"
 msgstr "热力圖"
 
-msgid "Heatmap (legacy)"
-msgstr "熱力圖 (傳統)"
-
-msgid "Heatmap Options"
-msgstr "热圖選項"
-
 msgid "Height"
 msgstr "高度"
 
@@ -5599,6 +5746,10 @@ msgstr "高度"
 msgid "Height of the sparkline"
 msgstr "迷你圖的高度"
 
+#, fuzzy
+msgid "Hide Column"
+msgstr "時間列"
+
 #, fuzzy
 msgid "Hide Line"
 msgstr "隐藏線"
@@ -5627,10 +5778,6 @@ msgstr "層次"
 msgid "Histogram"
 msgstr "直方圖"
 
-#, fuzzy
-msgid "Histogram (legacy)"
-msgstr "熱力圖 (傳統)"
-
 msgid "Home"
 msgstr "主頁"
 
@@ -5708,31 +5855,22 @@ msgstr ""
 "hive.server2.enable.doAs,將作為服務帳戶運行查詢,但會根据 hive.server2.proxy.user "
 "的属性偽裝當前登入用戶。"
 
-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.<br/>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 工具箱中的所有查詢都將被當前登入的用戶執行,並且這些用戶必須拥有運行它們的權限。<br/>如果啟用 Hive "
-"和hive.server2.enable.doAs,將作為服務帳戶運行查詢,但會根据 hive.server2.proxy.user "
-"的属性偽裝當前登入用戶。"
-
-#, fuzzy
-msgid "If Table Already Exists"
-msgstr "如果表已存在"
-
 msgid "If a metric is specified, sorting will be done based on the metric value"
 msgstr "如果指定了度量,则將根据該度量值進行排序"
 
+msgid ""
+"If changes are made to your SQL query, columns in your dataset will be "
+"synced when saving the dataset."
+msgstr ""
+
 msgid ""
 "If enabled, this control sorts the results/values descending, otherwise "
 "it sorts the results ascending."
 msgstr ""
 
-msgid "If selected, please set the schemas allowed for csv upload in Extra."
-msgstr "如果選擇,請額外設定 csv 上傳允許的模式。"
+#, fuzzy
+msgid "If table already exists"
+msgstr "標籤已存在"
 
 #, fuzzy
 msgid "Ignore cache when generating report"
@@ -5753,9 +5891,6 @@ msgstr "圖片發送失敗,請刷新或重試"
 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)"
 msgstr "模拟登入用戶 (Presto, Trino, Drill & Hive)"
 
-msgid "Impersonate the logged on user"
-msgstr "模拟登入用戶"
-
 msgid "Import"
 msgstr "導入"
 
@@ -5766,9 +5901,6 @@ msgstr "導入 %s"
 msgid "Import Dashboard(s)"
 msgstr "導入看板"
 
-msgid "Import a table definition"
-msgstr "導入一個已定義的表"
-
 msgid "Import chart failed for an unknown reason"
 msgstr "導入圖表失敗,原因未知"
 
@@ -5799,15 +5931,15 @@ msgstr "導入查詢"
 msgid "Import saved query failed for an unknown reason."
 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 "很重要!如果表尚未按實體ID排序,则選擇此項,否則無法保證返回每個實體的所有事件。"
-
 #, fuzzy
 msgid "In"
 msgstr ""
 
+msgid ""
+"In order to connect to non-public sheets you need to either provide a "
+"service account or configure an OAuth2 client."
+msgstr ""
+
 msgid "Include Series"
 msgstr "包含系列"
 
@@ -5816,7 +5948,7 @@ msgstr "描述要發送給你的報告"
 
 #, fuzzy, python-format
 msgid "Include description to be sent with %s"
-msgstr "描述要發送給你的報告"
+msgstr ""
 
 msgid "Include series name as an axis"
 msgstr "包括系列名稱作為軸"
@@ -5832,17 +5964,18 @@ msgstr "增加"
 msgid "Index"
 msgstr "索引"
 
-msgid "Index Column"
-msgstr "索引欄位"
-
 #, fuzzy
-msgid "Index Label"
-msgstr "範圍標籤"
+msgid "Index column"
+msgstr "線段列"
 
 #, fuzzy
 msgid "Index label"
 msgstr "範圍標籤"
 
+#, fuzzy, python-format
+msgid "Indexes (%s)"
+msgstr "查看鍵和索引(%s)"
+
 msgid "Info"
 msgstr "訊息"
 
@@ -5861,6 +5994,13 @@ msgstr "输入自定義寬度(像素)"
 msgid "Input field supports custom rotation. e.g. 30 for 30°"
 msgstr "输入欄位支持自定義。例如,30 代表 30°"
 
+#, fuzzy
+msgid "Insert Layer URL"
+msgstr "隐藏 Layer"
+
+msgid "Insert Layer title"
+msgstr ""
+
 msgid "Intensity"
 msgstr "强度"
 
@@ -5893,10 +6033,6 @@ msgstr "間隔開始列"
 msgid "Intervals"
 msgstr "間隔"
 
-#, fuzzy
-msgid "Intesity"
-msgstr "强度"
-
 #, fuzzy
 msgid ""
 "Invalid Connection String: Expecting String of the form "
@@ -5943,6 +6079,9 @@ msgstr ""
 msgid "Invalid date/timestamp format"
 msgstr "無效的日期/時間戳格式"
 
+msgid "Invalid executor type"
+msgstr ""
+
 #, python-format
 msgid "Invalid filter operation type: %(op)s"
 msgstr "選擇框的操作類型無效: %(op)s"
@@ -6008,6 +6147,10 @@ msgstr "反選"
 msgid "Invert current page"
 msgstr "反轉當前頁"
 
+#, fuzzy
+msgid "Is active?"
+msgstr "告警失敗"
+
 msgid "Is certified"
 msgstr "已認證"
 
@@ -6197,12 +6340,6 @@ msgstr "大"
 msgid "Last"
 msgstr "最後一個"
 
-msgid "Last Changed"
-msgstr "最後更新"
-
-msgid "Last Modified"
-msgstr "最後修改"
-
 #, python-format
 msgid "Last Updated %s"
 msgstr "最後更新 %s"
@@ -6211,6 +6348,10 @@ msgstr "最後更新 %s"
 msgid "Last Updated %s by %s"
 msgstr "最後由 %s 更新 %s"
 
+#, fuzzy
+msgid "Last Value"
+msgstr "目標值"
+
 #, python-format
 msgid "Last available value seen on %s"
 msgstr "到 %s 最後一個可用值"
@@ -6219,6 +6360,10 @@ msgstr "到 %s 最後一個可用值"
 msgid "Last day"
 msgstr "昨天"
 
+#, fuzzy
+msgid "Last login"
+msgstr "上一月"
+
 msgid "Last modified"
 msgstr "最後修改"
 
@@ -6226,6 +6371,14 @@ msgstr "最後修改"
 msgid "Last month"
 msgstr "上一月"
 
+#, fuzzy
+msgid "Last name"
+msgstr "數據集名稱"
+
+#, fuzzy
+msgid "Last name is required"
+msgstr "需要名稱"
+
 #, fuzzy
 msgid "Last quarter"
 msgstr "上一季度"
@@ -6241,15 +6394,42 @@ msgstr "上一週"
 msgid "Last year"
 msgstr "上一年"
 
+#, fuzzy
+msgid "Lat"
+msgstr "扁平"
+
 msgid "Latitude"
 msgstr "緯度"
 
 msgid "Latitude of default viewport"
 msgstr "預設視口緯度"
 
+#, fuzzy
+msgid "Layer"
+msgstr "年"
+
+#, fuzzy
+msgid "Layer Name"
+msgstr "告警名稱"
+
+msgid "Layer URL"
+msgstr ""
+
 msgid "Layer configuration"
 msgstr "配置層"
 
+#, fuzzy
+msgid "Layer title"
+msgstr "圖表標題"
+
+#, fuzzy
+msgid "Layer type"
+msgstr "過濾類型"
+
+#, fuzzy
+msgid "Layers"
+msgstr "警報"
+
 msgid "Layout"
 msgstr "布局"
 
@@ -6262,11 +6442,6 @@ msgstr "圖形的布局類型"
 msgid "Layout type of tree"
 msgstr "樹的布局類型"
 
-msgid ""
-"Leaf nodes that represent fewer than this number of events will be "
-"initially hidden in the visualization"
-msgstr "表示少於此數量的事件的葉節點最初將隐藏在可視化中"
-
 msgid "Least recently modified"
 msgstr "最近未經常修改"
 
@@ -6338,11 +6513,6 @@ msgstr "Like(區分大小寫)"
 msgid "Limit type"
 msgstr "限制類型"
 
-msgid ""
-"Limiting rows may result in incomplete data and misleading charts. "
-"Consider filtering or grouping source/target names instead."
-msgstr "限制行數可能導致不完整的數據和误導性的圖表。可以考慮過濾或分組源/目標名稱。"
-
 #, fuzzy
 msgid "Limits the number of cells that get retrieved."
 msgstr "限制檢索的單元格數量。"
@@ -6380,6 +6550,9 @@ msgid ""
 "chart common in many fields."
 msgstr "時間序列折線圖用於可視化在規則時間間隔内進行的重复测量。折線圖是一種圖表,它將訊息顯示為一系列由直線段連接的數據點。它是許多领域中常見的一種基本類型的圖表。"
 
+msgid "Line charts on a map"
+msgstr ""
+
 msgid "Line interpolation as defined by d3.js"
 msgstr "由 d3.js 定義的線插值"
 
@@ -6410,10 +6583,17 @@ msgstr "線段编碼"
 msgid "Link Copied!"
 msgstr "链接已複製!"
 
+msgid "List Roles"
+msgstr ""
+
 #, fuzzy
 msgid "List Unique Values"
 msgstr "列出唯一值"
 
+#, fuzzy
+msgid "List Users"
+msgstr "數字"
+
 msgid "List of extra columns made available in JavaScript functions"
 msgstr "在 JavaScript 函數中可用的額外列列表"
 
@@ -6486,6 +6666,10 @@ msgstr "對數軸"
 msgid "Login"
 msgstr "登入"
 
+#, fuzzy
+msgid "Login count"
+msgstr "計數"
+
 #, fuzzy
 msgid "Login with"
 msgstr "登入方式"
@@ -6496,6 +6680,10 @@ msgstr "登出"
 msgid "Logs"
 msgstr "日誌"
 
+#, fuzzy
+msgid "Lon"
+msgstr "位於"
+
 msgid "Long dashed"
 msgstr "長虚線"
 
@@ -6540,9 +6728,6 @@ msgstr "星期一"
 msgid "Main"
 msgstr "最小值"
 
-msgid "Main Datetime Column"
-msgstr "主日期列"
-
 #, fuzzy
 msgid ""
 "Make sure that the controls are configured properly and the datasource "
@@ -6577,6 +6762,10 @@ msgstr "手工設定 Y 軸最大最小值"
 msgid "Map"
 msgstr "地圖"
 
+#, fuzzy
+msgid "Map Options"
+msgstr "热圖選項"
+
 msgid "Map Style"
 msgstr "地圖樣式"
 
@@ -6619,14 +6808,17 @@ msgstr "標記"
 msgid "Markup type"
 msgstr "Markup 類型"
 
+msgid "Match time shift color with original series"
+msgstr ""
+
 msgid "Max"
 msgstr "最大值"
 
 msgid "Max Bubble Size"
 msgstr "最大氣泡的尺寸"
 
-msgid "Max Events"
-msgstr "最大事件數"
+msgid "Max. features"
+msgstr ""
 
 msgid "Maximum"
 msgstr "最大"
@@ -6637,6 +6829,9 @@ msgstr "最大字體大小"
 msgid "Maximum Radius"
 msgstr "最大半徑"
 
+msgid "Maximum number of features to fetch from service"
+msgstr ""
+
 msgid ""
 "Maximum radius size of the circle, in pixels. As the zoom level changes, "
 "this insures that the circle respects this maximum radius."
@@ -6679,6 +6874,18 @@ msgstr "中位數值"
 msgid "Medium"
 msgstr "中"
 
+msgid "Memory in bytes - binary (1024B => 1KiB)"
+msgstr ""
+
+msgid "Memory in bytes - decimal (1024B => 1.024kB)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - binary (1024B => 1KiB/s)"
+msgstr ""
+
+msgid "Memory transfer rate in bytes - decimal (1024B => 1.024kB/s)"
+msgstr ""
+
 msgid "Menu actions trigger"
 msgstr ""
 
@@ -6775,12 +6982,6 @@ msgid ""
 "appropriate)."
 msgstr "如果存在序列或行限制,则用於定義頂部序列的排序方式的度量。如果未定義,则返回第一個度量(如果適用)。"
 
-#, fuzzy
-msgid ""
-"Metric used to order the limit if a series limit is present. If undefined"
-" reverts to the first metric (where appropriate)."
-msgstr "如果存在序列或行限制,则用於定義頂部序列的排序方式的度量。如果未定義,则返回第一個度量(如果適用)。"
-
 msgid "Metrics"
 msgstr "指標"
 
@@ -6823,8 +7024,8 @@ msgstr "最小字體大小"
 msgid "Minimum Radius"
 msgstr "最小半徑"
 
-msgid "Minimum leaf node event count"
-msgstr "葉節點最小事件數"
+msgid "Minimum must be strictly less than maximum"
+msgstr ""
 
 msgid ""
 "Minimum radius size of the circle, in pixels. As the zoom level changes, "
@@ -6838,6 +7039,10 @@ msgstr "標籤顯示百分比最小閥值"
 msgid "Minimum value"
 msgstr "最小值"
 
+#, fuzzy
+msgid "Minimum value cannot be higher than maximum value"
+msgstr "起始日期不能晚於结束日期"
+
 msgid "Minimum value for label to be displayed on graph."
 msgstr "在圖形上顯示標籤的最小值。"
 
@@ -6862,6 +7067,9 @@ msgstr "%s分鐘"
 msgid "Minutes value"
 msgstr "最小值"
 
+msgid "Missing OAuth2 token"
+msgstr ""
+
 #, fuzzy
 msgid "Missing URL parameters"
 msgstr "缺失URL参數"
@@ -6880,6 +7088,11 @@ msgstr "已修改"
 msgid "Modified %s"
 msgstr "最後修改 %s"
 
+#, python-format
+msgid "Modified 1 column in the virtual dataset"
+msgid_plural "Modified %s columns in the virtual dataset"
+msgstr[0] ""
+
 msgid "Modified by"
 msgstr "修改人"
 
@@ -6887,10 +7100,6 @@ msgstr "修改人"
 msgid "Modified by: %s"
 msgstr "上次修改人 %s"
 
-#, python-format
-msgid "Modified columns: %s"
-msgstr "修改的列:%s"
-
 msgid "Monday"
 msgstr "星期一"
 
@@ -6956,9 +7165,6 @@ msgstr "選擇圖表或看板,不能都全部選擇"
 msgid "Must have a [Group By] column to have 'count' as the [Label]"
 msgstr "[Group By] 列必須要有 ‘count’ 欄位作為 [標籤]"
 
-msgid "Must have at least one numeric column specified"
-msgstr "必須至少指明一個數值列"
-
 msgid "Must provide credentials for the SSH Tunnel"
 msgstr ""
 
@@ -6984,9 +7190,6 @@ msgstr "需要進行分組的一列或多列"
 msgid "NOV"
 msgstr "十一月"
 
-msgid "NOW"
-msgstr "現在"
-
 #, fuzzy
 msgid "NUMERIC"
 msgstr "數字"
@@ -7013,9 +7216,6 @@ msgstr "ID 列名稱"
 msgid "Name of the source nodes"
 msgstr "源節點名稱"
 
-msgid "Name of the table that exists in the source database"
-msgstr "源資料庫中存在的表名稱"
-
 msgid "Name of the target nodes"
 msgstr "目標節點名稱"
 
@@ -7032,20 +7232,24 @@ msgstr "需要帮助?学习如何連接到資料庫"
 msgid "Need help? Learn more about"
 msgstr "需要帮助?請看"
 
+#, fuzzy
+msgid "Network Error"
+msgstr "網路異常。"
+
 #, fuzzy
 msgid "Network error"
 msgstr "網路異常。"
 
+#, fuzzy
+msgid "Network error while attempting to fetch resource"
+msgstr "創建數據源時發生錯誤"
+
 msgid "Network error."
 msgstr "網路異常。"
 
 msgid "New chart"
 msgstr "新增圖表"
 
-#, python-format
-msgid "New columns added: %s"
-msgstr "新增的列:%s"
-
 #, fuzzy
 msgid "New dataset"
 msgstr "新數據集"
@@ -7098,6 +7302,10 @@ msgstr "還没有規則"
 msgid "No Tags created"
 msgstr "還没創建標籤"
 
+#, fuzzy
+msgid "No actions"
+msgstr "還原這個動作"
+
 #, fuzzy
 msgid "No annotation layers"
 msgstr "没有注释層"
@@ -7119,10 +7327,6 @@ msgstr "没有有效的過濾器"
 msgid "No charts"
 msgstr "没有圖表"
 
-#, fuzzy
-msgid "No charts yet"
-msgstr "還没有圖表"
-
 #, fuzzy
 msgid "No columns found"
 msgstr "找不到列"
@@ -7142,10 +7346,6 @@ msgstr "找不到兼容的資料庫"
 msgid "No compatible schema found"
 msgstr "找不到兼容的模式"
 
-#, fuzzy
-msgid "No dashboards yet"
-msgstr "還没有看板"
-
 msgid "No data"
 msgstr "没有數據"
 
@@ -7155,6 +7355,10 @@ msgstr "過濾後没有數據,或者最新時間紀錄的數據為NULL"
 msgid "No data in file"
 msgstr "文件中無數據"
 
+#, fuzzy
+msgid "No databases available"
+msgstr "没有可用的資料庫"
+
 msgid "No databases match your search"
 msgstr "没有與您的搜索匹配的資料庫"
 
@@ -7188,13 +7392,6 @@ msgstr "當前没有已增加的全局過濾器"
 msgid "No matching records found"
 msgstr "没有找到任何紀錄"
 
-msgid "No of Bins"
-msgstr "直方圖容器數"
-
-#, fuzzy
-msgid "No recents yet"
-msgstr "還没有紀錄"
-
 msgid "No records found"
 msgstr "没有找到任何紀錄"
 
@@ -7217,6 +7414,10 @@ msgid ""
 "contains data for the selected time range."
 msgstr "此查詢没有返回任何结果。如果希望返回结果,請確保所有過濾選擇的配置正確,並且數據源包含所選時間範圍的數據。"
 
+#, fuzzy
+msgid "No roles yet"
+msgstr "還没有規則"
+
 msgid "No rows were returned for this dataset"
 msgstr "這個數據集没有返回任何行"
 
@@ -7232,10 +7433,6 @@ msgstr "没有已保存的表達式"
 msgid "No saved metrics found"
 msgstr "没有已保存的指標"
 
-#, fuzzy
-msgid "No saved queries yet"
-msgstr "還没保存查詢"
-
 msgid "No stored results found, you need to re-run your query"
 msgstr "找不到儲存的结果,需要重新運行查詢"
 
@@ -7253,6 +7450,10 @@ msgstr "没有找到時間列"
 msgid "No time columns"
 msgstr "没有時間列"
 
+#, fuzzy
+msgid "No users yet"
+msgstr "還没有規則"
+
 msgid "No validator found (configured for the engine)"
 msgstr ""
 
@@ -7336,6 +7537,10 @@ msgstr "没有觸發"
 msgid "Not up to date"
 msgstr "不是最新的"
 
+#, fuzzy
+msgid "Nothing here yet"
+msgstr "無觸發"
+
 msgid "Nothing triggered"
 msgstr "無觸發"
 
@@ -7443,9 +7648,6 @@ msgstr "十月"
 msgid "Offline"
 msgstr "離線"
 
-msgid "Offset"
-msgstr "偏移"
-
 msgid "On Grace"
 msgstr "在寬限期内"
 
@@ -7470,6 +7672,10 @@ msgstr "一個或多個控件作為列進行透視"
 msgid "One or many metrics to display"
 msgstr "一個或多個指標顯示"
 
+#, fuzzy
+msgid "One or more annotation layers failed loading."
+msgstr "一個或多個注释層加载失敗。"
+
 msgid "One or more columns already exist"
 msgstr "一個或多個列已存在"
 
@@ -7498,12 +7704,6 @@ msgstr "查詢中指定的一個或多個参數的格式不正確。"
 msgid "One or more parameters specified in the query are missing."
 msgstr "查詢中指定的一個或多個参數丢失。"
 
-msgid "One ore more annotation layers failed loading."
-msgstr "一個或多個注释層加载失敗。"
-
-msgid "Only SELECT statements are allowed against this database."
-msgstr "此資料庫只允許使用 `SELECT` 語句"
-
 msgid "Only Total"
 msgstr "僅總計"
 
@@ -7516,9 +7716,6 @@ msgstr ""
 msgid "Only applies when \"Label Type\" is set to show values."
 msgstr ""
 
-msgid "Only selected panels will be affected by this filter"
-msgstr "只有選定的面板將受此過濾條件的影響"
-
 msgid ""
 "Only show the total value on the stacked chart, and not show on the "
 "selected category"
@@ -7600,15 +7797,19 @@ msgstr "設定"
 msgid "Or choose from a list of other databases we support:"
 msgstr "或者從我們支持的其他資料庫列表中選擇:"
 
-msgid "Order by entity id"
-msgstr "按實體 ID 排序"
-
 msgid "Order results by selected columns"
 msgstr "按選定列對结果進行排序"
 
 msgid "Ordering"
 msgstr "排序"
 
+msgid ""
+"Orders the query result that generates the source data for this chart. If"
+" a series or row limit is reached, this determines what data are "
+"truncated. If undefined, defaults to the first metric (where "
+"appropriate)."
+msgstr ""
+
 #, fuzzy
 msgid "Orientation"
 msgstr "方向"
@@ -7727,6 +7928,10 @@ msgid ""
 " or username."
 msgstr "所有者是一個用戶列表,這些用戶有權限修改仪表板。可按名稱或用戶名搜索。"
 
+#, fuzzy
+msgid "PDF download failed, please refresh and try again."
+msgstr "圖片發送失敗,請刷新或重試"
+
 msgid "Page length"
 msgstr "頁長"
 
@@ -7784,6 +7989,14 @@ msgstr "高度與父高度的比例低於此值的分區將被修剪"
 msgid "Password"
 msgstr "密碼"
 
+#, fuzzy
+msgid "Password is required"
+msgstr "類型是必需的"
+
+#, fuzzy
+msgid "Passwords do not match!"
+msgstr "看板不存在"
+
 msgid "Paste Private Key here"
 msgstr ""
 
@@ -7845,6 +8058,14 @@ msgstr "週期"
 msgid "Periods must be a whole number"
 msgstr "週期必須是整數值"
 
+#, fuzzy
+msgid "Permissions"
+msgstr "版本"
+
+#, python-format
+msgid "Permissions successfully synced for %s"
+msgstr ""
+
 msgid "Person or group that has certified this chart."
 msgstr "認證此圖表的個人或組。"
 
@@ -7860,9 +8081,6 @@ msgstr "實體"
 msgid "Physical (table or view)"
 msgstr "實體(表或視圖)"
 
-msgid "Physical dataset"
-msgstr "實體數據集"
-
 msgid "Pick a dimension from which categorical colors are defined"
 msgstr ""
 
@@ -7885,15 +8103,9 @@ msgstr ""
 msgid "Pick a title for you annotation."
 msgstr "為您的注释選擇一個標題"
 
-msgid "Pick at least one field for [Series]"
-msgstr "為 [序列] 選擇至少一個欄位"
-
 msgid "Pick at least one metric"
 msgstr "選擇至少一個指標"
 
-msgid "Pick exactly 2 columns as [Source / Target]"
-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."
@@ -7905,9 +8117,8 @@ msgstr "選擇您最爱的 Markup 語言"
 msgid "Pie Chart"
 msgstr "餅圖"
 
-#, fuzzy
-msgid "Pie Chart (legacy)"
-msgstr "餅圖(傳统)"
+msgid "Pie charts on a map"
+msgstr ""
 
 msgid "Pie shape"
 msgstr "餅圖形狀"
@@ -7918,6 +8129,14 @@ msgstr ""
 msgid "Pin"
 msgstr "標記"
 
+#, fuzzy
+msgid "Pin Left"
+msgstr "上左"
+
+#, fuzzy
+msgid "Pin Right"
+msgstr "上右"
+
 msgid "Pivot Table"
 msgstr "透視表"
 
@@ -7967,6 +8186,9 @@ msgid ""
 "your query again."
 msgstr "請檢查您的模板参數是否有語法錯誤,並確保它們在您的 SQL 查詢和設定参數中保持一致。然後,再次嘗試運行您的查詢。"
 
+msgid "Please choose a valid value"
+msgstr ""
+
 #, fuzzy
 msgid "Please choose at least one groupby"
 msgstr "請至少選擇一個分組欄位 "
@@ -7977,12 +8199,25 @@ msgstr "請確認"
 msgid "Please confirm the overwrite values."
 msgstr ""
 
+#, fuzzy
+msgid "Please confirm your password"
+msgstr "請確認"
+
 msgid "Please enter a SQLAlchemy URI to test"
 msgstr "請输入要测試的 SQLAlchemy URI"
 
+msgid "Please enter a valid email address"
+msgstr ""
+
 msgid "Please enter valid text. Spaces alone are not permitted."
 msgstr ""
 
+msgid "Please provide a valid range"
+msgstr ""
+
+msgid "Please provide a value within range"
+msgstr ""
+
 msgid "Please re-enter the password."
 msgstr "請重新输入密碼。"
 
@@ -7994,9 +8229,6 @@ msgid "Please reach out to the Chart Owner for assistance."
 msgid_plural "Please reach out to the Chart Owners for assistance."
 msgstr[0] "請聯繫圖表所有者寻求帮助。"
 
-msgid "Please save the query to enable sharing"
-msgstr "請保存查詢以啟用共享"
-
 msgid "Please save your chart first, then try creating a new email report."
 msgstr "請先保存您的圖表,然後嘗試創建一個新的電子郵件報告。"
 
@@ -8076,9 +8308,6 @@ msgstr "多段線"
 msgid "Populate \"Default value\" to enable this control"
 msgstr "填充 \"Default value\" 以啟用此控件"
 
-msgid "Population age data"
-msgstr "人口年齡數據"
-
 #, fuzzy
 msgid "Port"
 msgstr "端口"
@@ -8118,12 +8347,6 @@ msgstr "預滤器可用值"
 msgid "Pre-filter is required"
 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 的模板語法。只在 `啟用過濾器選擇` 時應用。"
-
 msgid "Predictive"
 msgstr "預测"
 
@@ -8143,10 +8366,6 @@ msgstr "預覽"
 msgid "Preview uploaded file"
 msgstr "上傳 Excel"
 
-#, python-format
-msgid "Preview: `%s`"
-msgstr "預覽 %s"
-
 msgid "Previous"
 msgstr "前一個"
 
@@ -8197,18 +8416,13 @@ msgstr "進度"
 msgid "Progressive"
 msgstr "進度"
 
-msgid "Propagate"
-msgstr "傳播"
+#, fuzzy
+msgid "Project Id"
+msgstr "過時"
 
 msgid "Proportional"
 msgstr "比例"
 
-msgid "Public and privately shared sheets"
-msgstr "公共和私人共享的表"
-
-msgid "Publicly shared sheets only"
-msgstr "僅公開共享表"
-
 msgid "Published"
 msgstr "已發布"
 
@@ -8229,9 +8443,6 @@ msgstr "`行偏移量` 必須 大於 或 等於 0"
 msgid "Put the labels outside of the pie?"
 msgstr "是否將標籤顯示在餅圖外側?"
 
-msgid "Put the labels outside the pie?"
-msgstr "是否將標籤顯示在餅圖外側?"
-
 msgid "Put your code here"
 msgstr "把您的代碼放在這里"
 
@@ -8340,10 +8551,6 @@ msgstr "半徑(米)"
 msgid "Radius in miles"
 msgstr "半徑(英里)"
 
-#, python-format
-msgid "Ran %s"
-msgstr "運行於 %s"
-
 msgid "Range"
 msgstr "範圍"
 
@@ -8371,18 +8578,9 @@ msgstr "比率"
 msgid "Raw records"
 msgstr "原始紀錄"
 
-msgid "Recently created charts, dashboards, and saved queries will appear here"
-msgstr "最近創建的圖表、看板和保存的查詢將顯示在此處"
-
-msgid "Recently edited charts, dashboards, and saved queries will appear here"
-msgstr "最近編輯的圖表、看板和保存的查詢將顯示在此處"
-
 msgid "Recently modified"
 msgstr "最近修改"
 
-msgid "Recently viewed charts, dashboards, and saved queries will appear here"
-msgstr "最近查看的圖表、看板和保存的查詢將顯示在此處"
-
 msgid "Recents"
 msgstr "最近"
 
@@ -8401,9 +8599,6 @@ msgstr ""
 msgid "Red for increase, green for decrease"
 msgstr ""
 
-msgid "Redirects to this endpoint when clicking on the table from the table list"
-msgstr "點擊表列表中的表時將重定向到此端點"
-
 msgid "Redo the action"
 msgstr ""
 
@@ -8444,6 +8639,10 @@ msgstr "刷新間隔"
 msgid "Refresh interval saved"
 msgstr "刷新間隔已保存"
 
+#, fuzzy
+msgid "Refresh table schema"
+msgstr "查看表結構"
+
 msgid "Refresh the default values"
 msgstr "刷新預設值"
 
@@ -8505,8 +8704,9 @@ msgid "Remove table preview"
 msgstr "删除表格預覽"
 
 #, python-format
-msgid "Removed columns: %s"
-msgstr "删除的列:%s"
+msgid "Removed 1 column from the virtual dataset"
+msgid_plural "Removed %s columns from the virtual dataset"
+msgstr[0] ""
 
 msgid "Rename tab"
 msgstr "重命名選項卡"
@@ -8518,12 +8718,11 @@ msgstr "渲染"
 msgid "Render columns in HTML format"
 msgstr ""
 
-msgid "Render data in HTML format if applicable."
+msgid ""
+"Renders table cells as HTML when applicable. For example, HTML <a> tags "
+"will be rendered as hyperlinks."
 msgstr ""
 
-msgid "Rendering"
-msgstr "渲染"
-
 msgid "Replace"
 msgstr "替换"
 
@@ -8624,6 +8823,9 @@ msgstr "排斥力"
 msgid "Repulsion strength between nodes"
 msgstr "節點間的排斥力强度"
 
+msgid "Request Access"
+msgstr ""
+
 #, python-format
 msgid "Request is incorrect: %(error)s"
 msgstr "請求不正確: %(error)s"
@@ -8659,6 +8861,10 @@ msgstr "重採樣操作需要DatetimeIndex"
 msgid "Reset"
 msgstr "重置"
 
+#, fuzzy
+msgid "Reset columns"
+msgstr "選擇列"
+
 msgid "Reset state"
 msgstr "狀態重置"
 
@@ -8685,6 +8891,10 @@ msgstr "後端未配置结果"
 msgid "Results backend needed for asynchronous queries is not configured."
 msgstr "後端未配置異步查詢所需的结果"
 
+#, fuzzy
+msgid "Retry fetching results"
+msgstr "重新獲取结果"
+
 msgid "Return to specific datetime."
 msgstr "返回指定的日期時間。"
 
@@ -8725,6 +8935,28 @@ msgstr ""
 msgid "Role"
 msgstr "角色"
 
+#, fuzzy
+msgid "Role Name"
+msgstr "告警名稱"
+
+#, fuzzy
+msgid "Role is required"
+msgstr "需要值"
+
+#, fuzzy
+msgid "Role name is required"
+msgstr "需要名稱"
+
+#, fuzzy
+msgid "Role successfully updated!"
+msgstr "修改數據集成功!"
+
+msgid "Role was successfully created!"
+msgstr ""
+
+msgid "Role was successfully duplicated!"
+msgstr ""
+
 msgid "Roles"
 msgstr "角色"
 
@@ -8801,9 +9033,6 @@ msgstr "每頁行數,0 表示没有分頁"
 msgid "Rows subtotal position"
 msgstr "行小計的位置"
 
-msgid "Rows to Read"
-msgstr "讀取的行"
-
 #, fuzzy
 msgid "Rows to read"
 msgstr "讀取的行"
@@ -8874,14 +9103,12 @@ msgstr "SQL"
 msgid "SQL Copied!"
 msgstr "SQL 複製成功!"
 
-msgid "SQL Expression"
-msgstr "SQL 表達式"
-
 msgid "SQL Lab"
 msgstr "SQL 工具箱"
 
-msgid "SQL Lab View"
-msgstr "SQL Lab 視圖"
+#, fuzzy
+msgid "SQL Lab queries"
+msgstr "已保存查詢"
 
 #, python-format
 msgid ""
@@ -8981,20 +9208,10 @@ msgstr "無法預覽此數據集"
 msgid "Samples for datasource could not be retrieved."
 msgstr "無法預覽此數據源"
 
-msgid "Sankey"
-msgstr "蛇形圖"
-
 #, fuzzy
 msgid "Sankey Chart"
 msgstr "圖表保存"
 
-#, fuzzy
-msgid "Sankey Diagram (legacy)"
-msgstr "桑基圖"
-
-msgid "Sankey Diagram with Loops"
-msgstr "桑基圖"
-
 #, fuzzy
 msgid "Satellite"
 msgstr "卫星"
@@ -9061,9 +9278,6 @@ msgstr "保存或覆盖數據集"
 msgid "Save query"
 msgstr "保存查詢"
 
-msgid "Save the query to enable this feature"
-msgstr "請保存查詢以啟用共享"
-
 msgid "Save this query as a virtual dataset to continue exploring"
 msgstr "將這個查詢保存為虛擬數據集以繼續探索"
 
@@ -9091,6 +9305,10 @@ msgstr "保存的查詢未找到"
 msgid "Saved query parameters are invalid."
 msgstr "保存的查詢参數無效"
 
+#, fuzzy
+msgid "Saving..."
+msgstr "加载中..."
+
 msgid "Scale and Move"
 msgstr "縮放和移動"
 
@@ -9146,9 +9364,6 @@ msgstr "模式"
 msgid "Schema cache timeout"
 msgstr "模式缓存超時"
 
-msgid "Schema, as used only in some databases like Postgres, Redshift and DB2"
-msgstr "模式,只在一些資料庫中使用,比如 Postgres、Redshift 和 DB2"
-
 #, fuzzy
 msgid "Schemas allowed for File upload"
 msgstr "允許使用 CSV 上傳的模式"
@@ -9178,7 +9393,7 @@ msgstr "搜索"
 
 #, fuzzy, python-format
 msgid "Search %s records"
-msgstr "搜索 / 過濾"
+msgstr "搜索 %s 紀錄"
 
 msgid "Search / Filter"
 msgstr "搜索 / 過濾"
@@ -9237,9 +9452,6 @@ msgstr "%s 秒"
 msgid "Seconds value"
 msgstr "秒"
 
-msgid "Secure Extra"
-msgstr "安全"
-
 msgid "Secure extra"
 msgstr "安全"
 
@@ -9340,6 +9552,10 @@ msgstr "指定一個模式(需要資料庫支持)"
 msgid "Select a sheet name from the uploaded file"
 msgstr "選擇將要上傳文件的資料庫"
 
+#, fuzzy
+msgid "Select a tab"
+msgstr "選擇數據集"
+
 msgid ""
 "Select a time grain for the visualization. The grain is the time interval"
 " represented by a single point on the chart."
@@ -9359,8 +9575,8 @@ msgstr "選擇所有數據"
 msgid "Select all items"
 msgstr "選擇所有項"
 
-msgid "Select any columns for metadata inspection"
-msgstr "選擇任意列進行元數據巡檢"
+msgid "Select an aggregation method to apply to the metric."
+msgstr ""
 
 #, fuzzy
 msgid "Select catalog or type to search catalogs"
@@ -9387,6 +9603,10 @@ msgstr "選擇颜色方案"
 msgid "Select column"
 msgstr "選擇列"
 
+#, fuzzy
+msgid "Select column names from a dropdown list that should be parsed as dates."
+msgstr "從下拉列表中選擇要分析的日期列名稱。"
+
 msgid ""
 "Select columns that will be displayed in the table. You can multiselect "
 "columns."
@@ -9480,6 +9700,14 @@ msgstr "選擇表或输入數據集名稱"
 msgid "Select owners"
 msgstr "選擇所有者"
 
+#, fuzzy
+msgid "Select page size"
+msgstr "選擇標籤"
+
+#, fuzzy
+msgid "Select roles"
+msgstr "選擇所有者"
+
 msgid "Select saved metrics"
 msgstr "選擇已保存指標"
 
@@ -9494,9 +9722,19 @@ msgstr "選擇模式或输入模式名稱來搜索"
 msgid "Select scheme"
 msgstr "選擇方案"
 
+msgid ""
+"Select shape for computing values. \"FIXED\" sets all zoom levels to the "
+"same size. \"LINEAR\" increases sizes linearly based on specified slope. "
+"\"EXP\" increases sizes exponentially based on specified exponent"
+msgstr ""
+
 msgid "Select subject"
 msgstr "選擇主題"
 
+#, fuzzy
+msgid "Select tab"
+msgstr "反選所有"
+
 #, fuzzy
 msgid "Select table or type to search tables"
 msgstr "選擇表或输入表名來搜索"
@@ -9524,12 +9762,6 @@ msgstr "選擇您希望在與此圖表交互時應用交叉篩選的圖表。您
 msgid "Select the geojson column"
 msgstr "選擇GeoJSON列"
 
-msgid "Select the number of bins for the histogram"
-msgstr "選擇直方圖的分箱數量"
-
-msgid "Select the numeric columns to draw the histogram"
-msgstr "選擇數值列來繪制直方圖"
-
 #, python-format
 msgid ""
 "Select values in highlighted field(s) in the control panel. Then run the "
@@ -9553,9 +9785,6 @@ msgstr "發送PNG"
 msgid "Send as text"
 msgstr "發送文本"
 
-msgid "Send range filter events to other charts"
-msgstr "將過濾條件的事件發送到其他圖表"
-
 msgid "September"
 msgstr "九月"
 
@@ -9568,14 +9797,6 @@ msgstr "系列"
 msgid "Series Height"
 msgstr "系列高度"
 
-#, fuzzy
-msgid "Series Limit Sort By"
-msgstr "系列限制排序依据"
-
-#, fuzzy
-msgid "Series Limit Sort Descending"
-msgstr "系列限制降序排列"
-
 #, fuzzy
 msgid "Series Order"
 msgstr "系列順序"
@@ -9605,6 +9826,10 @@ msgstr "服務端分頁"
 msgid "Service Account"
 msgstr "服務帳戶"
 
+#, fuzzy
+msgid "Service version"
+msgstr "服務帳戶"
+
 msgid "Set auto-refresh interval"
 msgstr "設定自動刷新"
 
@@ -9633,6 +9858,10 @@ msgstr "設定"
 msgid "Settings for time series"
 msgstr "時間序列設定"
 
+#, fuzzy
+msgid "Shape"
+msgstr "餅圖形狀"
+
 msgid "Share"
 msgstr "分享"
 
@@ -9684,7 +9913,7 @@ msgstr "顯示"
 
 #, fuzzy, python-format
 msgid "Show %s entries"
-msgstr "顯示指標"
+msgstr "顯示 %s 指標"
 
 msgid "Show Bubbles"
 msgstr "顯示氣泡"
@@ -9696,18 +9925,9 @@ msgstr "顯示 CREATE VIEW 語句"
 msgid "Show Cell bars"
 msgstr "顯示單元格的柱"
 
-msgid "Show Chart"
-msgstr "顯示圖表"
-
-msgid "Show Column"
-msgstr "顯示列"
-
 msgid "Show Dashboard"
 msgstr "顯示看板"
 
-msgid "Show Database"
-msgstr "顯示資料庫"
-
 msgid "Show Labels"
 msgstr "顯示標籤"
 
@@ -9717,18 +9937,12 @@ msgstr "顯示日誌"
 msgid "Show Markers"
 msgstr "顯示標記"
 
-msgid "Show Metric"
-msgstr "顯示指標"
-
 msgid "Show Metric Names"
 msgstr "顯示指標名"
 
 msgid "Show Range Filter"
 msgstr "顯示範圍過濾器"
 
-msgid "Show Table"
-msgstr "顯示表"
-
 msgid "Show Timestamp"
 msgstr "顯示時間戳"
 
@@ -9763,9 +9977,6 @@ msgstr "在迷你圖上顯示Y軸。如果設定了手動設定的最小/最大
 msgid "Show all columns"
 msgstr "顯示所有列"
 
-msgid "Show all..."
-msgstr "顯示所有..."
-
 msgid "Show axis line ticks"
 msgstr "顯示軸線刻度"
 
@@ -9790,6 +10001,10 @@ msgstr "將數據點顯示為線條上的圆形標記"
 msgid "Show empty columns"
 msgstr "顯示空列"
 
+#, fuzzy, python-format
+msgid "Show entries per page"
+msgstr "顯示指標"
+
 #, fuzzy
 msgid ""
 "Show hierarchical relationships of data, with the value represented by "
@@ -9811,9 +10026,6 @@ msgstr "顯示圖例"
 msgid "Show less columns"
 msgstr "顯示較少的列"
 
-msgid "Show less..."
-msgstr "顯示更少..."
-
 #, fuzzy
 msgid "Show minor ticks on axes."
 msgstr "在坐標軸上顯示次級刻度。"
@@ -9854,6 +10066,10 @@ msgstr "顯示標記"
 msgid "Show the value on top of the bar"
 msgstr "在柱子上方顯示值"
 
+#, fuzzy
+msgid "Show total"
+msgstr "顯示總計"
+
 msgid ""
 "Show total aggregations of selected metrics. Note that row limit does not"
 " apply to the result."
@@ -9887,8 +10103,8 @@ msgid ""
 "higher the fill, the closer the metric is to the target."
 msgstr "顯示單個指標相對於給定目標的進度。填充越高,度量越接近目標"
 
-#, python-format
-msgid "Showing %s of %s"
+#, fuzzy, python-format
+msgid "Showing %s of %s items"
 msgstr "顯示 %s 個 總計 %s 個"
 
 msgid "Shows a list of all series available at that point in time"
@@ -9921,18 +10137,16 @@ msgstr "單個值"
 msgid "Single value type"
 msgstr "單值類型"
 
+#, fuzzy
+msgid "Size in pixels"
+msgstr "像素"
+
 msgid "Size of edge symbols"
 msgstr "邊缘符號的大小"
 
 msgid "Size of marker. Also applies to forecast observations."
 msgstr "標記的大小。也適用於預测观察。”"
 
-msgid "Sizes of vehicles"
-msgstr "工具尺寸"
-
-msgid "Skip Rows"
-msgstr "跳過行"
-
 #, fuzzy
 msgid "Skip blank lines rather than interpreting them as Not A Number values"
 msgstr "跳過空白行而不是把它們解释為 NaN 值。"
@@ -10011,9 +10225,6 @@ msgstr "抱歉,出了點問題。請稍後再試。"
 msgid "Sorry, something went wrong. Try again later."
 msgstr "抱歉,出了點問題。請稍後再試。"
 
-msgid "Sorry, there appears to be no data"
-msgstr "抱歉,似乎没有數據"
-
 #, fuzzy, python-format
 msgid "Sorry, there was an error saving this %s: %s"
 msgstr "抱歉,保存  %s 時發生錯誤:%s"
@@ -10031,9 +10242,6 @@ msgstr "抱歉,您的瀏覽器不支持複製操作。使用 Ctrl / Cmd + C!
 msgid "Sort"
 msgstr "排序:"
 
-msgid "Sort Bars"
-msgstr "排序柱狀圖"
-
 msgid "Sort Descending"
 msgstr "降序"
 
@@ -10057,9 +10265,6 @@ msgstr "排序 Y 軸"
 msgid "Sort ascending"
 msgstr "升序排序"
 
-msgid "Sort bars by x labels."
-msgstr "按 x 標籤排序。"
-
 msgid "Sort by"
 msgstr "排序 "
 
@@ -10085,6 +10290,10 @@ msgstr "排序過濾器值"
 msgid "Sort metric"
 msgstr "排序指標"
 
+#, fuzzy
+msgid "Sort query by"
+msgstr "導出查詢"
+
 msgid "Sort rows by"
 msgstr "排序 "
 
@@ -10097,9 +10306,6 @@ msgstr "排序類型"
 msgid "Source"
 msgstr "來源"
 
-msgid "Source / Target"
-msgstr "源/目標"
-
 msgid "Source SQL"
 msgstr "源 SQL"
 
@@ -10147,9 +10353,6 @@ msgstr "平方英里"
 msgid "Stack"
 msgstr "堆叠"
 
-msgid "Stack Trace:"
-msgstr "報錯:"
-
 msgid "Stack series"
 msgstr "堆叠系列"
 
@@ -10165,9 +10368,6 @@ msgstr "堆叠柱狀圖"
 msgid "Stacked Style"
 msgstr "堆叠樣式"
 
-msgid "Stacked style"
-msgstr "堆叠樣式"
-
 msgid "Standard time series"
 msgstr "標準時間序列"
 
@@ -10271,9 +10471,6 @@ msgstr "街道"
 msgid "Strength to pull the graph toward center"
 msgstr "將圖形拉向中心"
 
-msgid "Stretched style"
-msgstr "拉伸樣式"
-
 #, fuzzy
 msgid "Stroke Color"
 msgstr "邊線颜色"
@@ -10298,15 +10495,20 @@ msgstr "用圆帽設定進度條末端的樣式"
 msgid "Subdomain"
 msgstr "子域"
 
-msgid "Subheader"
-msgstr "子標題"
-
 msgid "Subheader Font Size"
 msgstr "子標題的字體大小"
 
 msgid "Submit"
 msgstr "提交"
 
+#, fuzzy
+msgid "Subtitle"
+msgstr "選項卡標題"
+
+#, fuzzy
+msgid "Subtitle Font Size"
+msgstr "氣泡尺寸"
+
 msgid "Subtotal"
 msgstr ""
 
@@ -10361,9 +10563,6 @@ msgstr "Superset 的嵌入 SDK 文檔。"
 msgid "Superset chart"
 msgstr "Superset 圖表"
 
-msgid "Superset dashboard"
-msgstr "看板"
-
 msgid "Superset encountered an error while running a command."
 msgstr "Superset 在執行命令時遇到了一個錯誤。"
 
@@ -10373,9 +10572,6 @@ msgstr "Superset 遇到了未知錯誤。"
 msgid "Supported databases"
 msgstr "已支持資料庫"
 
-msgid "Survey Responses"
-msgstr "調查结果"
-
 #, fuzzy
 msgid "Swap dataset"
 msgstr "交换數據集"
@@ -10390,6 +10586,12 @@ msgid ""
 "well."
 msgstr "用於可視化時間序列數據。在步進圖、折線圖、散點圖和條形圖之間進行選擇,也有許多自定義選項"
 
+msgid "Switch to the next tab"
+msgstr ""
+
+msgid "Switch to the previous tab"
+msgstr ""
+
 msgid "Symbol"
 msgstr "符號"
 
@@ -10399,9 +10601,20 @@ msgstr "邊線两端的符號"
 msgid "Symbol size"
 msgstr "符號的大小"
 
+msgid "Sync Permissions"
+msgstr ""
+
 msgid "Sync columns from source"
 msgstr "從源同步列"
 
+#, python-format
+msgid "Syncing permissions for %s"
+msgstr ""
+
+#, python-format
+msgid "Syncing permissions for %s in the background"
+msgstr ""
+
 msgid "Syntax"
 msgstr "語法"
 
@@ -10412,10 +10625,6 @@ msgstr ""
 msgid "TABLES"
 msgstr "表"
 
-#, fuzzy
-msgid "TEMPORAL X-AXIS"
-msgstr "時間X軸"
-
 #, fuzzy
 msgid "TEMPORAL_RANGE"
 msgstr "時間範圍"
@@ -10450,7 +10659,11 @@ msgstr "表名"
 msgid ""
 "Table [%(table)s] could not be found, please double check your database "
 "connection, schema, and table name"
-msgstr "找不到 [%(table_name)s] 表,請仔細檢查您的資料庫連接、Schema 和 表名"
+msgstr "找不到 [%(table)s] 資料表,請仔細檢查您的資料庫連接、Schema 和 資料表名稱"
+
+#, fuzzy
+msgid "Table actions"
+msgstr "表的列"
 
 msgid ""
 "Table already exists. You can change your 'if table already exists' "
@@ -10464,6 +10677,10 @@ msgstr "資料庫表缓存超時"
 msgid "Table columns"
 msgstr "表的列"
 
+#, fuzzy
+msgid "Table name"
+msgstr "表名"
+
 msgid "Table name undefined"
 msgstr "表名未定義"
 
@@ -10534,11 +10751,6 @@ msgstr "無法删除標籤對象"
 msgid "Tags"
 msgstr "標籤"
 
-msgid ""
-"Take your data points, and group them into \"bins\" to see where the "
-"densest areas of information lie"
-msgstr "獲取數據點,並將其分組,以查看訊息最密集的區域"
-
 msgid "Target"
 msgstr "目標"
 
@@ -10564,6 +10776,10 @@ msgid ""
 "coming from the controls."
 msgstr "模板链接,可以包含{{metric}}或來自控件的其他值。"
 
+#, fuzzy
+msgid "Temporal X-Axis"
+msgstr "時間條件"
+
 msgid ""
 "Terminate running queries when browser window closed or navigated to "
 "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake "
@@ -10610,10 +10826,6 @@ msgid ""
 "interactive polygons, lines and points (circles, icons and/or texts)."
 msgstr ""
 
-#, fuzzy
-msgid "The SQL is invalid and cannot be parsed."
-msgstr "提供的主機名無法解析。"
-
 msgid ""
 "The Sankey chart visually tracks the movement and transformation of "
 "values across\n"
@@ -10643,6 +10855,10 @@ msgstr "注释已保存。"
 msgid "The annotation has been updated"
 msgstr "注释已更新。"
 
+#, fuzzy
+msgid "The background color of the charts."
+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."
@@ -10672,6 +10888,10 @@ msgstr "經典的,很好地展示了每個投資者獲得了多少公司,“
 msgid "The color for points and clusters in RGB"
 msgstr "點和聚合群的颜色(RGB)"
 
+#, fuzzy
+msgid "The color of the elements border"
+msgstr "等值線的颜色"
+
 #, fuzzy
 msgid "The color of the isoband"
 msgstr "等值带的颜色"
@@ -10689,6 +10909,15 @@ msgid ""
 "        Edit the color scheme in the dashboard properties."
 msgstr "配色方案由相關的看板决定。在看板属性中編輯配色方案"
 
+#, fuzzy
+msgid ""
+"The colors of this chart might be overridden by custom label colors of "
+"the related dashboard.\n"
+"    Check the JSON metadata in the Advanced settings."
+msgstr ""
+"此配色方案正被自定義標籤颜色覆盖。\n"
+"請在高級設定中檢查 JSON 元數據。"
+
 #, fuzzy
 msgid "The column header label"
 msgstr "列的標題"
@@ -10702,6 +10931,12 @@ msgstr ""
 msgid "The column was deleted or renamed in the database."
 msgstr "該列已在資料庫中删除或重命名。"
 
+msgid "The configuration for the map layers"
+msgstr ""
+
+msgid "The corner radius of the chart background"
+msgstr ""
+
 msgid ""
 "The country code standard that Superset should expect to find in the "
 "[country] column"
@@ -10713,20 +10948,9 @@ msgstr "該看板已成功保存。"
 msgid "The data source seems to have been deleted"
 msgstr "數據源已經被删除"
 
-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 "由資料庫推斷的數據類型。在某些情况下,可能需要為表達式定義的列手工输入一個類型。在大多數情况下,用戶不需要修改這個數據類型。"
-
-#, 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 "
-"編輯器選項卡。確定要繼續嗎?删除資料庫將破坏這些對象。"
+#, fuzzy
+msgid "The database"
+msgstr "删除資料庫"
 
 #, fuzzy
 msgid "The database columns that contains lines information"
@@ -10760,12 +10984,9 @@ msgstr "資料庫已删除。"
 msgid "The database was not found."
 msgstr "資料庫没有找到"
 
-#, 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 看板内。確定要繼續嗎?删除數據集將破坏這些對象。"
+#, fuzzy
+msgid "The dataset"
+msgstr "新數據集"
 
 msgid "The dataset associated with this chart no longer exists"
 msgstr "這個圖表所链接的數據集可能被删除了。"
@@ -10827,6 +11048,15 @@ msgstr ""
 "1. engine_params 對象在調用 sqlalchemy.create_engine 時被引用, metadata_params 在調用"
 " sqlalchemy.MetaData 時被引用。"
 
+msgid "The exponent to compute all sizes from. \"EXP\" only"
+msgstr ""
+
+msgid ""
+"The extent of the map on application start. FIT DATA automatically sets "
+"the extent so that all data points are included in the viewport. CUSTOM "
+"allows users to define the extent manually."
+msgstr ""
+
 #, python-format
 msgid ""
 "The following entries in `series_columns` are missing in `columns`: "
@@ -10844,6 +11074,9 @@ msgstr ""
 msgid "The function to use when aggregating points into groups"
 msgstr ""
 
+msgid "The height of the current zoom level to compute all heights from"
+msgstr ""
+
 msgid ""
 "The histogram chart displays the distribution of a dataset by\n"
 "          representing the frequency or count of values within different "
@@ -10876,20 +11109,13 @@ msgstr "提供的主機名無法解析。"
 msgid "The id of the active chart"
 msgstr "活動圖表的ID"
 
-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 "與此表關聯的圖表列表。通過更改此數據源,您可以更改這些相關圖表的行為。還要注意,圖表需要指向數據源,如果從數據源中删除圖表,则此窗體將無法保存。如果要為圖表更改數據源,請從“瀏覽視圖”更改該圖表。"
+#, fuzzy
+msgid "The layer attribution"
+msgstr "時間相關的表單属性"
 
 msgid "The lower limit of the threshold range of the Isoband"
 msgstr ""
 
-msgid "The maximum number of events to return, equivalent to the number of rows"
-msgstr "返回的最大事件數,相當於行數"
-
 msgid ""
 "The maximum number of subdivisions of each group; lower values are pruned"
 " first"
@@ -10924,6 +11150,19 @@ msgstr ""
 "顯示值所需的滚動週期的最小值。例如,如果您想累積 7 天的總額,您可能希望您的“最小週期”為 7,以便顯示的所有數據點都是 7 "
 "個區間的總和。這將隐藏掉前 7 個階段的“加速”效果"
 
+#, fuzzy
+msgid ""
+"The minimum value of metrics. It is an optional configuration. If not "
+"set, it will be the minimum value of the data"
+msgstr "度量的最大值。這是一個可選配置"
+
+#, fuzzy
+msgid "The name of the geometry column"
+msgstr "ID 列名稱"
+
+msgid "The name of the layer as described in GetCapabilities"
+msgstr ""
+
 #, fuzzy
 msgid "The name of the rule must be unique"
 msgstr "名稱必須是唯一的"
@@ -11133,6 +11372,9 @@ msgid ""
 "function)."
 msgstr ""
 
+msgid "The result size exceeds the allowed limit."
+msgstr ""
+
 msgid "The results backend no longer has the data from the query."
 msgstr "结果後端不再拥有來自查詢的數據。"
 
@@ -11170,11 +11412,16 @@ msgstr "該模式已在資料庫中删除或重命名。"
 msgid "The screenshot could not be downloaded. Please, try again later."
 msgstr ""
 
+#, fuzzy
+msgid "The screenshot has been downloaded."
+msgstr "報告已創建"
+
 msgid "The screenshot is being generated. Please, do not leave the page."
 msgstr ""
 
-msgid "The screenshot is now being downloaded."
-msgstr ""
+#, fuzzy
+msgid "The service url of the layer"
+msgstr "在圖表上顯示系列值"
 
 #, fuzzy
 msgid "The size of each cell in meters"
@@ -11183,6 +11430,9 @@ msgstr "每個單元的大小,以米為單位"
 msgid "The size of the square cell, in pixels"
 msgstr "平方單元的大小,以像素為單位"
 
+msgid "The slope to compute all sizes from. \"LINEAR\" only"
+msgstr ""
+
 #, fuzzy
 msgid "The submitted payload failed validation."
 msgstr "提交的有效負载的模式不正確。"
@@ -11205,11 +11455,6 @@ msgid ""
 "to run this query."
 msgstr "表 \"%(table_name)s\" 不存在。必須使用有效的表來運行此查詢。"
 
-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 "The table was deleted or renamed in the database."
 msgstr "該表已在資料庫中删除或重命名。"
 
@@ -11257,6 +11502,10 @@ msgstr "每個块的時間單位。應該是主域域粒度更小的單位。應
 msgid "The time unit used for the grouping of blocks"
 msgstr "用於块分組的時間單位"
 
+#, fuzzy
+msgid "The type of the layer"
+msgstr "給圖表增加名稱"
+
 msgid "The type of visualization to display"
 msgstr "要顯示的可視化類型"
 
@@ -11279,6 +11528,14 @@ msgstr "指標 '%(username)s' 不存在"
 msgid "The username provided when connecting to a database is not valid."
 msgstr "連接到資料庫時提供的用戶名無效。"
 
+#, fuzzy
+msgid "The version of the service"
+msgstr "選擇圖例的位置"
+
+#, fuzzy
+msgid "The visible title of the layer"
+msgstr "在柱子上方顯示值"
+
 msgid "The way the ticks are laid out on the X-axis"
 msgstr "X軸刻度的布局方式"
 
@@ -11286,6 +11543,13 @@ msgstr "X軸刻度的布局方式"
 msgid "The width of the Isoline in pixels"
 msgstr "等值線的寬度(以像素為單位)"
 
+msgid "The width of the current zoom level to compute all widths from"
+msgstr ""
+
+#, fuzzy
+msgid "The width of the elements border"
+msgstr "線條的寬度"
+
 #, fuzzy
 msgid "The width of the lines"
 msgstr "線條的寬度"
@@ -11304,9 +11568,6 @@ msgstr "此看板中没有增加圖表。"
 msgid "There are no components added to this tab"
 msgstr ""
 
-msgid "There are no databases available"
-msgstr "没有可用的資料庫"
-
 msgid "There are no filters in this dashboard."
 msgstr "此看板中没有過濾條件。"
 
@@ -11318,6 +11579,10 @@ msgid ""
 " or a typo."
 msgstr "SQL 查詢中存在語法錯誤。可能是拼寫錯誤或是打錯關鍵字。"
 
+#, fuzzy
+msgid "There is currently no information to display."
+msgstr "要顯示的可視化類型"
+
 msgid ""
 "There is no chart definition associated with this component, could it "
 "have been deleted?"
@@ -11344,6 +11609,10 @@ msgstr "獲取此看板的收藏夹狀態時出現問題:%s。"
 msgid "There was an error fetching the filtered charts and dashboards:"
 msgstr "獲取此看板的收藏夹狀態時出現問題:%s。"
 
+#, fuzzy
+msgid "There was an error generating the permalink."
+msgstr "抱歉,這個看板在獲取圖表時發生錯誤:"
+
 #, fuzzy
 msgid "There was an error loading the catalogs"
 msgstr "您的請求有錯誤"
@@ -11362,6 +11631,10 @@ msgstr "抱歉,這個看板在獲取圖表時發生錯誤:"
 msgid "There was an error loading the tables"
 msgstr "您的請求有錯誤"
 
+#, fuzzy, python-format
+msgid "There was an error retrieving dashboard tabs."
+msgstr "抱歉,這個看板在保存時發生錯誤:%s"
+
 #, python-format
 msgid "There was an error saving the favorite status: %s"
 msgstr "獲取此看板的收藏夹狀態時出現問題: %s"
@@ -11369,6 +11642,10 @@ msgstr "獲取此看板的收藏夹狀態時出現問題: %s"
 msgid "There was an error with your request"
 msgstr "您的請求有錯誤"
 
+#, fuzzy, python-format
+msgid "There was an issue deleting %s"
+msgstr "删除時出現問題:%s"
+
 #, python-format
 msgid "There was an issue deleting %s: %s"
 msgstr "删除 %s 時出現問題:%s"
@@ -11453,22 +11730,10 @@ msgstr "預覽所選查詢時出現問題 %s"
 msgid "There was an issue previewing the selected query. %s"
 msgstr "預覽所選查詢時出現問題。%s"
 
-msgid ""
-"There's a loop in your Sankey, please provide a tree. Here's a faulty "
-"link: {}"
-msgstr "您的桑基圖中存在循環,請提供一棵樹。這是一個錯誤的链接:{}"
-
 #, fuzzy
 msgid "These are the datasets this filter will be applied to."
 msgstr "這些是將應用此過濾的表。"
 
-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 ""
 "This JSON object is generated dynamically when clicking the save or "
 "overwrite button in the dashboard view. It is exposed here for reference "
@@ -11482,12 +11747,20 @@ msgstr "此操作將永久删除 %s 。"
 msgid "This action will permanently delete the layer."
 msgstr "此操作將永久删除圖層。"
 
+#, fuzzy
+msgid "This action will permanently delete the role."
+msgstr "此操作將永久删除圖層。"
+
 msgid "This action will permanently delete the saved query."
 msgstr "此操作將永久删除保存的查詢。"
 
 msgid "This action will permanently delete the template."
 msgstr "此操作將永久删除模板。"
 
+#, fuzzy
+msgid "This action will permanently delete the user."
+msgstr "此操作將永久删除圖層。"
+
 msgid ""
 "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. "
 "mydatabase.com)."
@@ -11512,14 +11785,6 @@ msgid ""
 "source. "
 msgstr ""
 
-#, fuzzy
-msgid ""
-"This color scheme is being overridden by custom label colors.\n"
-"    Check the JSON metadata in the Advanced settings"
-msgstr ""
-"此配色方案正被自定義標籤颜色覆盖。\n"
-"請在高級設定中檢查 JSON 元數據。"
-
 #, fuzzy
 msgid "This column might be incompatible with current dataset"
 msgstr "此圖表可能與過濾器不兼容(數據集不匹配)"
@@ -11586,6 +11851,12 @@ msgstr "此仪表板已准备好嵌入。在您的應用程序中,將以下 ID
 msgid "This dashboard was saved successfully."
 msgstr "該看板已成功保存。"
 
+msgid ""
+"This database does not allow for DDL/DML, and the query could not be "
+"parsed to confirm it is a read-only query. Please contact your "
+"administrator for more assistance."
+msgstr ""
+
 msgid "This database is managed externally, and can't be edited in Superset"
 msgstr ""
 
@@ -11603,6 +11874,9 @@ msgstr ""
 msgid "This defines the element to be plotted on the chart"
 msgstr "這定義了要在圖表上繪制的元素"
 
+msgid "This email is already associated with an account."
+msgstr ""
+
 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."
@@ -11613,11 +11887,6 @@ msgid ""
 " It is also used as the alias in the SQL query."
 msgstr ""
 
-msgid ""
-"This fields acts a Superset view, meaning that Superset will run a query "
-"against this string as a subquery."
-msgstr "這個欄位執行 Superset 視圖時,意味着 Superset 將以子查詢的形式對字符串運行查詢。"
-
 #, fuzzy
 msgid "This filter might be incompatible with current dataset"
 msgstr "此圖表可能與過濾器不兼容(數據集不匹配)"
@@ -11650,13 +11919,6 @@ msgstr "此 markdown 組件有錯誤。請還原最近的更改。"
 msgid "This may be triggered by:"
 msgstr "這可能由以下因素觸發:"
 
-#, 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 "如果存在序列或行限制,则用於定義頂部序列的排序方式的度量。如果未定義,则返回第一個度量(如果適用)。"
-
 #, fuzzy
 msgid "This metric might be incompatible with current dataset"
 msgstr "此圖表可能與過濾器不兼容(數據集不匹配)"
@@ -11697,6 +11959,9 @@ msgid ""
 "associate one dataset with a table.\n"
 msgstr "此表已經關聯了一個數據集。一個表只能關聯一個數據集。"
 
+msgid "This username is already taken. Please choose another one."
+msgstr ""
+
 msgid "This value should be greater than the left target value"
 msgstr "這個值應該大於左邊的目標值"
 
@@ -11777,9 +12042,6 @@ msgstr "時間粒度(grain)"
 msgid "Time Series"
 msgstr "時間序列"
 
-msgid "Time Series - Bar Chart"
-msgstr "時間序列 - 柱狀圖"
-
 msgid "Time Series - Line Chart"
 msgstr "時間序列 - 折線圖"
 
@@ -11795,9 +12057,6 @@ msgstr "時間序列 - 百分比變化"
 msgid "Time Series - Period Pivot"
 msgstr "時間序列 - 週期透視表"
 
-msgid "Time Series - Stacked"
-msgstr "時間序列 - 堆叠圖"
-
 msgid "Time Series Options"
 msgstr "時間序列選項"
 
@@ -11888,17 +12147,6 @@ msgid ""
 "[%(human_readable)s later]."
 msgstr "時間字符串不明確。請指定為 [%(human_readable)s 前] 還是 [%(human_readable)s 後]。"
 
-#, fuzzy
-msgid "Time-series Area Chart (legacy)"
-msgstr "面積圖(傳统)"
-
-#, fuzzy
-msgid "Time-series Bar Chart (legacy)"
-msgstr "時間序列 - 條形圖(傳统)"
-
-msgid "Time-series Line Chart (legacy)"
-msgstr "折線圖(傳统)"
-
 msgid "Time-series Percent Change"
 msgstr "時間序列 - 百分比變化"
 
@@ -11917,9 +12165,6 @@ msgstr "時間戳格式"
 msgid "Timezone"
 msgstr "時區"
 
-msgid "Timezone offset (in hours) for this datasource"
-msgstr "數據源的時差(單位:小時)"
-
 msgid "Timezone selector"
 msgstr "時區選擇"
 
@@ -11938,6 +12183,11 @@ msgstr "標題是必填項"
 msgid "Title or Slug"
 msgstr "標題或者 Slug"
 
+msgid ""
+"To enable multiple column sorting, hold down the ⇧ Shift key while "
+"clicking the column header."
+msgstr ""
+
 msgid "To filter on a metric, use Custom SQL tab."
 msgstr "若要在計量值上篩選,請使用自定義 SQL 選項卡。"
 
@@ -11983,6 +12233,10 @@ msgstr ""
 msgid "Total (%(aggregatorName)s)"
 msgstr ""
 
+#, fuzzy, python-format
+msgid "Total (Sum)"
+msgstr "總計: %s"
+
 #, fuzzy
 msgid "Total value"
 msgstr "總計值"
@@ -12094,9 +12348,6 @@ msgstr "請输入值"
 msgid "Type is required"
 msgstr "類型是必需的"
 
-msgid "Type of Google Sheets allowed"
-msgstr "接受 Google Sheets 的類型"
-
 msgid "Type of comparison, value difference or percentage"
 msgstr "比較類型,值差異或百分比"
 
@@ -12170,9 +12421,15 @@ msgid ""
 "later. Please contact your administrator if this problem persists."
 msgstr "無法將表結構狀態遷移到後端。系统將稍後重試。如果此問題仍然存在,請與管理員聯繫。"
 
+msgid "Unable to parse SQL"
+msgstr ""
+
 msgid "Unable to retrieve dashboard colors"
 msgstr ""
 
+msgid "Unable to sync permissions for this database connection."
+msgstr ""
+
 msgid "Undefined"
 msgstr "未命名"
 
@@ -12203,6 +12460,10 @@ msgstr "没有已保存的表達式"
 msgid "Unexpected time range: %(error)s"
 msgstr "意外時間範圍:%(error)s"
 
+#, fuzzy
+msgid "Unhide"
+msgstr "還原"
+
 msgid "Unknown"
 msgstr "未知"
 
@@ -12241,6 +12502,10 @@ msgstr "未知錯誤"
 msgid "Unknown value"
 msgstr "未知值"
 
+#, fuzzy
+msgid "Unpin"
+msgstr "正在執行"
+
 #, python-format
 msgid "Unsafe return type for function %(func)s: %(value_type)s"
 msgstr "函數返回不安全的類型 %(func)s: %(value_type)s"
@@ -12307,9 +12572,6 @@ msgstr "上傳列式文件"
 msgid "Upload Columnar file to database"
 msgstr "上傳列式文件到資料庫"
 
-msgid "Upload Credentials"
-msgstr "上傳憑證"
-
 msgid "Upload Enabled"
 msgstr "已啟用上傳"
 
@@ -12332,6 +12594,10 @@ msgstr "上傳文件到資料庫"
 msgid "Upload a file with a valid extension. Valid: [%s]"
 msgstr ""
 
+#, fuzzy
+msgid "Upload credentials"
+msgstr "上傳憑證"
+
 msgid "Upload file to database"
 msgstr "上傳文件到資料庫"
 
@@ -12388,12 +12654,13 @@ msgid ""
 "          Your chart must be one of these visualization types: [%s]"
 msgstr "使用另一個現有的圖表作為注释和標記的數據源。您的圖表必須是以下可視化類型之一:[%s]"
 
+#, fuzzy
+msgid "Use current extent"
+msgstr "運行查詢"
+
 msgid "Use date formatting even when metric value is not a timestamp"
 msgstr ""
 
-msgid "Use legacy datasource editor"
-msgstr "使用舊數據源編輯器"
-
 msgid "Use metrics as a top level group for columns or for rows"
 msgstr "將指標作為列或行的頂級組使用"
 
@@ -12403,11 +12670,6 @@ msgstr "只使用一個值"
 msgid "Use the Advanced Analytics options below"
 msgstr "使用下面的高級分析選項"
 
-msgid ""
-"Use the JSON file you automatically downloaded when creating your service"
-" account."
-msgstr "使用您在創建服務帳戶時自動下载的JSON文件"
-
 #, fuzzy
 msgid "Use the edit button to change this field"
 msgstr "使用編輯按钮更改此欄位"
@@ -12445,9 +12707,23 @@ msgstr "用戶必須給過濾器選擇一個值"
 msgid "User query"
 msgstr "用戶查詢"
 
+msgid "User was successfully created!"
+msgstr ""
+
+msgid "User was successfully updated!"
+msgstr ""
+
 msgid "Username"
 msgstr "用戶名"
 
+#, fuzzy
+msgid "Username is required"
+msgstr "需要名稱"
+
+#, fuzzy
+msgid "Users"
+msgstr "序列"
+
 #, fuzzy
 msgid "Users are not allowed to set a search path for security reasons."
 msgstr "出於安全考慮,不允許用戶設定搜索路徑。"
@@ -12470,6 +12746,10 @@ msgid ""
 "funnels and pipelines."
 msgstr "使用圆圈來可視化數據在系统不同階段的流動。將鼠標懸停在可視化圖表的各個路徑上,以理解值經歷的各個階段。這對於多階段、多組的漏斗和管道可視化非常有用。"
 
+#, python-format
+msgid "Validating connectivity for %s"
+msgstr ""
+
 msgid "Value"
 msgstr "值"
 
@@ -12496,9 +12776,16 @@ msgstr ""
 msgid "Value format"
 msgstr "數值格式"
 
+#, fuzzy
+msgid "Value greater than"
+msgstr "`行偏移量` 必須 大於 或 等於 0"
+
 msgid "Value is required"
 msgstr "需要值"
 
+msgid "Value less than"
+msgstr ""
+
 #, fuzzy
 msgid "Value must be 0 or greater"
 msgstr "`行偏移量` 必須 大於 或 等於 0"
@@ -12518,12 +12805,6 @@ msgid ""
 "show relevant values"
 msgstr ""
 
-msgid "Vehicle Types"
-msgstr "類型"
-
-msgid "Verbose Name"
-msgstr "全稱"
-
 msgid "Version"
 msgstr "版本"
 
@@ -12537,9 +12818,6 @@ msgstr "縱向"
 msgid "Vertical (Left)"
 msgstr "縱向(左對齊)"
 
-msgid "Video game consoles"
-msgstr "控制台"
-
 #, fuzzy
 msgid "View"
 msgstr "預覽"
@@ -12586,9 +12864,6 @@ msgstr "虛擬"
 msgid "Virtual (SQL)"
 msgstr "虛擬(SQL)"
 
-msgid "Virtual dataset"
-msgstr "虛擬數據集"
-
 msgid "Virtual dataset query cannot be empty"
 msgstr "虛擬數據集查詢不能為空"
 
@@ -12625,11 +12900,6 @@ msgid ""
 "grid view."
 msgstr ""
 
-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."
@@ -12676,13 +12946,6 @@ msgid ""
 "instead."
 msgstr "在一個圖表中顯示許多不同的時間序列對象。此圖表已被弃用,建議改用時間序列圖表"
 
-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 "可視化不同組的值在系统不同階段的流動。管道中的新階段被可視化為節點或層。條形或邊缘的厚度表示正在可視化的度量。"
-
 msgid ""
 "Visualizes the words in a column that appear the most often. Bigger font "
 "corresponds to higher frequency."
@@ -12697,9 +12960,15 @@ msgstr "可視化類型"
 msgid "WED"
 msgstr "星期三"
 
+msgid "WFS"
+msgstr ""
+
+msgid "WMS"
+msgstr ""
+
 #, fuzzy, python-format
 msgid "Waiting on %s"
-msgstr "顯示 %s 個 總計 %s 個"
+msgstr "等待 %s 中"
 
 #, fuzzy
 msgid "Waiting on database..."
@@ -12711,9 +12980,6 @@ msgstr "增加一個新資料庫?"
 msgid "Warning"
 msgstr "警告!"
 
-msgid "Warning Message"
-msgstr "告警訊息"
-
 msgid "Warning!"
 msgstr "警告!"
 
@@ -12849,11 +13115,6 @@ msgstr "當計算類型設定為 “百分比變化” 時,Y 軸格式將被
 msgid "When a secondary metric is provided, a linear color scale is used."
 msgstr "當提供次計量指標時,會使用線性色階。"
 
-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 選項時,此選項可以此模式中强制創建表"
-
 msgid "When checked, the map will zoom to your data after each query"
 msgstr "勾選後,每次查詢後地圖將自動縮放至您的數據範圍"
 
@@ -12874,6 +13135,11 @@ msgid ""
 "to the main datetime column."
 msgstr "當對次要時間列進行篩選時,將相同的篩選條件應用到主日期時間列。"
 
+msgid ""
+"When unchecked, colors from the selected color scheme will be used for "
+"time shifted series"
+msgstr ""
+
 msgid ""
 "When using \"Autocomplete filters\", this can be used to improve "
 "performance of the query fetching the values. Use this option to apply a "
@@ -12890,21 +13156,14 @@ msgstr "當使用 “Group by” 時,只限於使用單個度量。"
 msgid "When using other than adaptive formatting, labels may overlap"
 msgstr ""
 
-#, fuzzy
-msgid "When using this option, default value can’t be set"
-msgstr "預設選擇第一項(使用此選項時,不能 “設定預設值”)"
+msgid ""
+"When using this option, default value can’t be set. Using this option may"
+" impact the load times for your dashboard."
+msgstr ""
 
 msgid "Whether the progress bar overlaps when there are multiple groups of data"
 msgstr "當有多組數據時進度條是否重叠"
 
-msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab"
-msgstr "表是否由 SQL 實驗室中的 \"可視化\" 流生成"
-
-msgid ""
-"Whether this column is exposed in the `Filters` section of the explore "
-"view."
-msgstr "該列是否在瀏覽視圖的 `過濾器` 部分顯示。"
-
 msgid ""
 "Whether to align background charts with both positive and negative values"
 " at 0"
@@ -12944,6 +13203,10 @@ msgstr "是否顯示圖表的圖例(色块分布)"
 msgid "Whether to display bubbles on top of countries"
 msgstr "是否在國家之上展示氣泡"
 
+#, fuzzy
+msgid "Whether to display in the chart"
+msgstr "是否顯示圖表的圖例(色块分布)"
+
 #, fuzzy
 msgid "Whether to display the aggregate count"
 msgstr "是否顯示聚合計數"
@@ -12954,12 +13217,6 @@ msgstr "是否顯示交互式數據表格"
 msgid "Whether to display the labels."
 msgstr "是否顯示標籤。"
 
-#, fuzzy
-msgid ""
-"Whether to display the labels. Note that the label only displays when the"
-" 5% threshold."
-msgstr "是否顯示標籤。請注意,只有當達到 5% 的閥值時標籤才會顯示。"
-
 msgid "Whether to display the legend (toggles)"
 msgstr "是否顯示圖例(切换)"
 
@@ -12975,6 +13232,10 @@ msgstr "是否顯示 Y 軸的最小值和最大值"
 msgid "Whether to display the numerical values within the cells"
 msgstr "是否在單元格内顯示數值"
 
+#, fuzzy
+msgid "Whether to display the percentage value in the tooltip"
+msgstr "是否在工具提示中包含百分比"
+
 #, fuzzy
 msgid "Whether to display the stroke"
 msgstr "是否顯示邊框"
@@ -12989,9 +13250,17 @@ msgstr "是否顯示時間戳"
 msgid "Whether to display the tooltip labels."
 msgstr "是否顯示標籤。"
 
+#, fuzzy
+msgid "Whether to display the total value in the tooltip"
+msgstr "是否在單元格内顯示數值"
+
 msgid "Whether to display the trend line"
 msgstr "是否顯示趋势線"
 
+#, fuzzy
+msgid "Whether to display the type icon (#, Δ, %)"
+msgstr "是否顯示聚合計數"
+
 msgid "Whether to enable changing graph position and scaling."
 msgstr "是否啟用更改圖形位置和縮放。"
 
@@ -13019,33 +13288,17 @@ msgstr "是否包含時間段中定義的時間粒度"
 msgid "Whether to make the grid 3D"
 msgstr "是否將網格變為 3D"
 
-msgid "Whether to make the histogram cumulative"
-msgstr "是否將直方圖設定為累積的"
-
-msgid ""
-"Whether to make this column available as a [Time Granularity] option, "
-"column has to be DATETIME or DATETIME-like"
-msgstr "是否將此列作為[時間粒度]選項, 列中的數據類型必須是DATETIME"
-
-msgid "Whether to normalize the histogram"
-msgstr "是否規范化直方圖"
-
 msgid "Whether to populate autocomplete filters options"
 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 "是否在瀏覽視圖的過濾器部分中填充過濾器的下拉列表,並提供從後端獲取的不同值的列表"
-
 #, fuzzy
 msgid "Whether to show as Nightingale chart."
 msgstr "是否顯示量規圖進度"
 
+#, fuzzy
 msgid ""
 "Whether to show extra controls or not. Extra controls include things like"
-" making mulitBar charts stacked or side by side."
+" making multiBar charts stacked or side by side."
 msgstr "是否顯示額外的控件。額外的控制包括使多欄圖表堆叠或並排。"
 
 msgid "Whether to show minor ticks on the axis"
@@ -13067,10 +13320,6 @@ msgstr "確定是按升序還是降序對基軸進行排序。"
 msgid "Whether to sort descending or ascending"
 msgstr "是降序還是升序排序"
 
-#, fuzzy
-msgid "Whether to sort descending or ascending if a series limit is present"
-msgstr "是降序還是升序排序"
-
 msgid "Whether to sort results by the selected metric in descending order."
 msgstr "是否按所選指標按降序對结果進行排序。"
 
@@ -13129,9 +13378,6 @@ msgstr "為您的查詢寫一段描述"
 msgid "Write a handlebars template to render the data"
 msgstr ""
 
-msgid "X AXIS TITLE BOTTOM MARGIN"
-msgstr "X 軸標題下邊距"
-
 msgid "X AXIS TITLE MARGIN"
 msgstr "X 軸標題邊距"
 
@@ -13151,6 +13397,10 @@ msgstr "X 軸標籤"
 msgid "X Axis Title"
 msgstr "X 軸標題"
 
+#, fuzzy
+msgid "X Axis Title Margin"
+msgstr "Y 軸標題邊距"
+
 msgid "X Log Scale"
 msgstr "X 對數尺度"
 
@@ -13174,6 +13424,9 @@ msgstr "X 軸"
 msgid "XScale Interval"
 msgstr "X 軸比例尺間隔"
 
+msgid "XYZ"
+msgstr ""
+
 msgid "Y 2 bounds"
 msgstr "Y 界限"
 
@@ -13290,6 +13543,19 @@ msgid ""
 "want to overwrite?"
 msgstr "您正在導入一個或多個已存在的查詢。覆盖可能會導致您丢失一些工作。您確定要覆盖嗎?"
 
+msgid ""
+"You are viewing this chart in a dashboard context with labels shared "
+"across multiple charts.\n"
+"        The color scheme selection is disabled."
+msgstr ""
+
+msgid ""
+"You are viewing this chart in the context of a dashboard that is directly"
+" affecting its colors.\n"
+"        To edit the color scheme, open this chart outside of the "
+"dashboard."
+msgstr ""
+
 #, fuzzy
 msgid "You can"
 msgstr "你可以"
@@ -13365,9 +13631,6 @@ msgstr "您没有訪問此數據集的權限。"
 msgid "You don't have access to this embedded dashboard config."
 msgstr "您没有訪問此嵌入看板的權限。"
 
-msgid "You don't have any favorites yet!"
-msgstr "您還没有任何的收藏!"
-
 msgid "You don't have permission to modify the value."
 msgstr "您没有編輯此值的權限"
 
@@ -13446,6 +13709,9 @@ msgstr "不是最新的"
 msgid "Your chart is ready to go!"
 msgstr "圖表已就绪!"
 
+msgid "Your dashboard is near the size limit."
+msgstr ""
+
 msgid "Your dashboard is too large. Please reduce its size before saving it."
 msgstr "您的看板太大了。保存前請縮小尺寸。"
 
@@ -13473,6 +13739,9 @@ msgstr "您的查詢已保存"
 msgid "Your query was updated"
 msgstr "您的查詢已更新"
 
+msgid "Your range is not within the dataset range"
+msgstr ""
+
 msgid "Your report could not be deleted"
 msgstr "這個報告無法被删除"
 
@@ -13486,6 +13755,10 @@ msgstr "零值填補"
 msgid "Zoom"
 msgstr "縮放"
 
+#, fuzzy
+msgid "Zoom level"
+msgstr "縮放面積"
+
 msgid "Zoom level of the map"
 msgstr "地圖縮放等級"
 
@@ -13607,9 +13880,6 @@ msgstr "在"
 msgid "auto"
 msgstr "自動"
 
-msgid "auto (Smooth)"
-msgstr ""
-
 msgid "background"
 msgstr "背景"
 
@@ -13659,9 +13929,6 @@ msgstr "範圍"
 msgid "chart"
 msgstr "圖表"
 
-msgid "charts"
-msgstr "圖表"
-
 msgid "choose WHERE or HAVING..."
 msgstr "選擇 WHERE 或 HAVING 子句..."
 
@@ -13672,6 +13939,10 @@ msgstr "清除所有過濾器"
 msgid "click here"
 msgstr "點擊這里"
 
+#, fuzzy
+msgid "close"
+msgstr "關闭"
+
 msgid "code ISO 3166-1 alpha-2 (cca2)"
 msgstr ""
 
@@ -13728,15 +13999,9 @@ msgstr "css 模板"
 msgid "cumsum"
 msgstr "累積求和"
 
-msgid "cumulative"
-msgstr "累積"
-
 msgid "dashboard"
 msgstr "看板"
 
-msgid "dashboards"
-msgstr "看板"
-
 msgid "database"
 msgstr "資料庫"
 
@@ -13814,9 +14079,6 @@ msgstr ""
 msgid "default"
 msgstr "預設"
 
-msgid "delete"
-msgstr "删除"
-
 msgid "descendant"
 msgstr "降序"
 
@@ -13830,9 +14092,6 @@ msgstr "偏離"
 msgid "dialect+driver://username:password@host:port/database"
 msgstr ""
 
-msgid "draft"
-msgstr "草稿"
-
 msgid "dttm"
 msgstr "時間"
 
@@ -13873,9 +14132,6 @@ msgstr "例如:world_population"
 msgid "e.g. xy12345.us-east-2.aws"
 msgstr "例如:xy12345.us-east-2.aws"
 
-msgid "e.g., a \"user id\" column"
-msgstr "例如:\"user id\" 列"
-
 #, fuzzy
 msgid "edit mode"
 msgstr "編輯模式"
@@ -13888,6 +14144,10 @@ msgstr "選擇主題"
 msgid "entries"
 msgstr "序列"
 
+#, fuzzy
+msgid "entries per page"
+msgstr "序列"
+
 #, fuzzy
 msgid "error"
 msgstr "錯誤"
@@ -13962,11 +14222,6 @@ msgstr "點擊這里"
 msgid "hour"
 msgstr "小時"
 
-msgid ""
-"image-rendering CSS attribute of the canvas object that defines how the "
-"browser scales up the image"
-msgstr "圖像渲染画布對象的 CSS 属性,它定義了瀏覽器如何放大圖像"
-
 msgid "in"
 msgstr "處於"
 
@@ -13977,6 +14232,10 @@ msgstr "(在模型中)"
 msgid "invalid email"
 msgstr "無效狀態。"
 
+#, fuzzy
+msgid "is"
+msgstr "處於"
+
 #, fuzzy
 msgid "is expected to be a Mapbox URL"
 msgstr "應該為 MapBox 的 URL"
@@ -13987,6 +14246,24 @@ msgstr "應該為數字"
 msgid "is expected to be an integer"
 msgstr "應該為整數"
 
+#, fuzzy, python-format
+msgid ""
+"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 個 SQL "
+"編輯器選項卡。確定要繼續嗎?删除資料庫將破壞這些對象。"
+
+#, fuzzy, python-format
+msgid ""
+"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 看板内。確定要繼續嗎?删除數據集將破壞這些對象。"
+
+msgid "is not"
+msgstr ""
+
 msgid "key a-z"
 msgstr "a-z 鍵"
 
@@ -14120,19 +14397,10 @@ msgstr ""
 msgid "page_size.all"
 msgstr ""
 
-msgid "page_size.entries"
-msgstr ""
-
-msgid "page_size.show"
-msgstr ""
-
 #, fuzzy
 msgid "pending"
 msgstr "正在處理"
 
-msgid "percentile (exclusive)"
-msgstr "百分位數(獨占)"
-
 msgid ""
 "percentiles must be a list or tuple with two numeric values, of which the"
 " first is lower than the second value"
@@ -14142,24 +14410,22 @@ msgstr "百分位數必須是具有兩個數值的列表或元組,其中第一
 msgid "permalink state not found"
 msgstr "未找到持久链接狀態"
 
-msgid "pixelated (Sharp)"
-msgstr ""
-
 msgid "pixels"
 msgstr "像素"
 
 msgid "previous calendar month"
 msgstr "前一月"
 
+#, fuzzy
+msgid "previous calendar quarter"
+msgstr "前一年"
+
 msgid "previous calendar week"
 msgstr "前一週"
 
 msgid "previous calendar year"
 msgstr "前一年"
 
-msgid "published"
-msgstr "已發布"
-
 #, fuzzy
 msgid "quarter"
 msgstr "季度"
@@ -14181,9 +14447,6 @@ msgstr "重啟"
 msgid "recent"
 msgstr "最近"
 
-msgid "recents"
-msgstr "最近"
-
 #, fuzzy
 msgid "recipients"
 msgstr "最近"
@@ -14208,8 +14471,9 @@ msgstr "行級安全"
 msgid "running"
 msgstr "正在執行"
 
-msgid "saved queries"
-msgstr "已保存查詢"
+#, fuzzy
+msgid "save"
+msgstr "保存"
 
 #, fuzzy
 msgid "seconds"
@@ -14225,10 +14489,6 @@ msgid ""
 "series"
 msgstr "series:獨立處理每個序列;overall:所有序列使用相同的比例;change:顯示與每個序列中第一個數據點相比的更改"
 
-#, fuzzy
-msgid "shift start date"
-msgstr "開始時間"
-
 #, fuzzy
 msgid "sql"
 msgstr "SQL"
@@ -14294,10 +14554,6 @@ msgstr "時間類型圖標"
 msgid "textarea"
 msgstr "文本區域"
 
-#, fuzzy
-msgid "to"
-msgstr "至"
-
 #, fuzzy
 msgid "top"
 msgstr "頂部"
@@ -14310,6 +14566,14 @@ msgstr "還原"
 msgid "unknown type icon"
 msgstr "未知類型圖標"
 
+#, fuzzy
+msgid "unset"
+msgstr "六月"
+
+#, fuzzy, python-format
+msgid "updated"
+msgstr "上次更新 %s"
+
 msgid ""
 "upper percentile must be greater than 0 and less than 100. Must be higher"
 " than lower percentile."
@@ -14337,9 +14601,6 @@ msgstr "方差"
 msgid "view instructions"
 msgstr "查看指引"
 
-msgid "virtual"
-msgstr "虛擬"
-
 #, fuzzy
 msgid "viz type"
 msgstr "可視化類型"
@@ -14379,3 +14640,6 @@ msgstr "年"
 
 msgid "zoom area"
 msgstr "縮放面積"
+
+msgid "© Layer attribution"
+msgstr ""
diff --git a/superset/utils/cache.py b/superset/utils/cache.py
index 87a74dd6e2b8571bbb85a7b18ffb16d1d76e5ee9..93072e6a53441354fa58dcbb1b553314735c8f73 100644
--- a/superset/utils/cache.py
+++ b/superset/utils/cache.py
@@ -109,7 +109,7 @@ def memoized_func(key: str, cache: Cache = cache_manager.cache) -> Callable[...,
     force means whether to force refresh the cache and is treated as False by default,
     except force = True is passed to the decorated function.
 
-    timeout of cache is set to 600 seconds by default,
+    timeout of cache is set to CACHE_DEFAULT_TIMEOUT seconds by default,
     except cache_timeout = {timeout in seconds} is passed to the decorated function.
 
     :param key: a callable function that takes function arguments and returns
@@ -121,7 +121,9 @@ def memoized_func(key: str, cache: Cache = cache_manager.cache) -> Callable[...,
         def wrapped_f(*args: Any, **kwargs: Any) -> Any:
             should_cache = kwargs.pop("cache", True)
             force = kwargs.pop("force", False)
-            cache_timeout = kwargs.pop("cache_timeout", 0)
+            cache_timeout = kwargs.pop(
+                "cache_timeout", app.config["CACHE_DEFAULT_TIMEOUT"]
+            )
 
             if not should_cache:
                 return f(*args, **kwargs)
diff --git a/superset/utils/core.py b/superset/utils/core.py
index 2b80c89f61268adcf1db105148bee257edc1fa29..f1792ac47a32d785334275cc3c207abbb3ecf440 100644
--- a/superset/utils/core.py
+++ b/superset/utils/core.py
@@ -1741,24 +1741,30 @@ def parse_boolean_string(bool_str: str | None) -> bool:
 
 def apply_max_row_limit(
     limit: int,
-    max_limit: int | None = None,
+    server_pagination: bool | None = None,
 ) -> int:
     """
-    Override row limit if max global limit is defined
+    Override row limit based on server pagination setting
 
     :param limit: requested row limit
-    :param max_limit: Maximum allowed row limit
+    :param server_pagination: whether server-side pagination
+    is enabled, defaults to None
     :return: Capped row limit
 
-    >>> apply_max_row_limit(100000, 10)
-    10
-    >>> apply_max_row_limit(10, 100000)
-    10
-    >>> apply_max_row_limit(0, 10000)
-    10000
-    """
-    if max_limit is None:
-        max_limit = current_app.config["SQL_MAX_ROW"]
+    >>> apply_max_row_limit(600000, server_pagination=True)  # Server pagination
+    500000
+    >>> apply_max_row_limit(600000, server_pagination=False)  # No pagination
+    50000
+    >>> apply_max_row_limit(5000)  # No server_pagination specified
+    5000
+    >>> apply_max_row_limit(0)  # Zero returns default max limit
+    50000
+    """
+    max_limit = (
+        current_app.config["TABLE_VIZ_MAX_ROW_SERVER"]
+        if server_pagination
+        else current_app.config["SQL_MAX_ROW"]
+    )
     if limit != 0:
         return min(max_limit, limit)
     return max_limit
diff --git a/superset/utils/log.py b/superset/utils/log.py
index 70f6a1bda26b239281de703a0657275487ce446c..3a4a5ebb368be1ccf8d60b000ab03e21a26213cf 100644
--- a/superset/utils/log.py
+++ b/superset/utils/log.py
@@ -26,7 +26,7 @@ from contextlib import contextmanager
 from datetime import datetime, timedelta
 from typing import Any, Callable, cast, Literal, TYPE_CHECKING
 
-from flask import g, request
+from flask import g, has_request_context, request
 from flask_appbuilder.const import API_URI_RIS_KEY
 from sqlalchemy.exc import SQLAlchemyError
 
@@ -193,14 +193,15 @@ class AbstractEventLogger(ABC):
 
         # Whenever a user is not bounded to a session we
         # need to add them back before logging to capture user_id
-        if user_id is None:
+        if user_id is None and has_request_context():
             try:
-                db.session.add(g.user)
-                user_id = get_user_id()
-            except Exception as ex:  # pylint: disable=broad-except
-                logging.warning(ex)
+                actual_user = g.get("user", None)
+                if actual_user is not None:
+                    db.session.add(actual_user)
+                    user_id = get_user_id()
+            except Exception as ex:
+                logging.warning("Failed to add user to db session: %s", ex)
                 user_id = None
-
         payload = collect_request_payload()
         if object_ref:
             payload["object_ref"] = object_ref
diff --git a/superset/views/base.py b/superset/views/base.py
index a598994f19f5de4dd05ac02785c4291d6ebab84e..43b4f776718142d851ac497d44aa6fbbe5574e5e 100644
--- a/superset/views/base.py
+++ b/superset/views/base.py
@@ -109,6 +109,7 @@ FRONTEND_CONF_KEYS = (
     "JWT_ACCESS_CSRF_COOKIE_NAME",
     "SQLLAB_QUERY_RESULT_TIMEOUT",
     "SYNC_DB_PERMISSIONS_IN_ASYNC_MODE",
+    "TABLE_VIZ_MAX_ROW_SERVER",
 )
 
 logger = logging.getLogger(__name__)
diff --git a/superset/views/core.py b/superset/views/core.py
index 54dead027b426539357acbaf91735ae81e7b03fb..074e26d19f3caaa4abcfea19a2889fda1eab2a6d 100755
--- a/superset/views/core.py
+++ b/superset/views/core.py
@@ -135,7 +135,7 @@ class Superset(BaseSupersetView):
         endpoint_params = {"form_data": f"{form_data}"}
 
         if ReservedUrlParameters.is_standalone_mode():
-            endpoint_params[ReservedUrlParameters.STANDALONE] = "true"
+            endpoint_params[ReservedUrlParameters.STANDALONE.value] = "true"
         return redirect(url_for("ExploreView.root", **endpoint_params))
 
     def get_query_string_response(self, viz_obj: BaseViz) -> FlaskResponse:
diff --git a/superset/viz.py b/superset/viz.py
index c2ac433dce123667b9d31df5c05feb188ff10079..0ee99848f5d3ff6c07e9189212892ad2eaeaf623 100644
--- a/superset/viz.py
+++ b/superset/viz.py
@@ -1532,7 +1532,31 @@ class DeckGLMultiLayer(BaseViz):
 
         slice_ids = self.form_data.get("deck_slices")
         slices = db.session.query(Slice).filter(Slice.id.in_(slice_ids)).all()
+
+        features: dict[str, list[Any]] = {}
+
+        for slc in slices:
+            form_data = slc.form_data
+
+            form_data["extra_filters"] = self.form_data.get("extra_filters", [])
+            form_data["extra_form_data"] = self.form_data.get("extra_form_data", {})
+            form_data["adhoc_filters"] = self.form_data.get("adhoc_filters")
+
+            viz_type_name = form_data.get("viz_type")
+            viz_class = viz_types.get(viz_type_name)
+            if not viz_class:
+                continue  # skip unknown viz types
+
+            viz_instance = viz_class(datasource=slc.datasource, form_data=form_data)
+            payload = viz_instance.get_payload()
+
+            if payload and "data" in payload and "features" in payload["data"]:
+                if viz_type_name not in features:
+                    features[viz_type_name] = []
+                features[viz_type_name].extend(payload["data"]["features"])
+
         return {
+            "features": features,
             "mapboxApiKey": config["MAPBOX_API_KEY"],
             "slices": [slc.data for slc in slices],
         }
diff --git a/tests/integration_tests/databases/commands_tests.py b/tests/integration_tests/databases/commands_tests.py
index f6ab6b11604dc15d0320e7e1acfff26fc3a406fa..75343cef666e7a3a9f0c1c2e1689d3d636ba4a9d 100644
--- a/tests/integration_tests/databases/commands_tests.py
+++ b/tests/integration_tests/databases/commands_tests.py
@@ -421,7 +421,8 @@ class TestImportDatabasesCommand(SupersetTestCase):
         assert database.database_name == "imported_database"
         assert database.expose_in_sqllab
         assert database.extra == "{}"
-        assert database.sqlalchemy_uri == "postgresql://user:pass@host1"
+        assert database.sqlalchemy_uri == "postgresql://user:XXXXXXXXXX@host1"
+        assert database.password == "pass"  # noqa: S105
 
         db.session.delete(database)
         db.session.commit()
@@ -461,7 +462,8 @@ class TestImportDatabasesCommand(SupersetTestCase):
         assert database.database_name == "imported_database"
         assert database.expose_in_sqllab
         assert database.extra == '{"schemas_allowed_for_file_upload": ["upload"]}'
-        assert database.sqlalchemy_uri == "postgresql://user:pass@host1"
+        assert database.sqlalchemy_uri == "postgresql://user:XXXXXXXXXX@host1"
+        assert database.password == "pass"  # noqa: S105
 
         db.session.delete(database)
         db.session.commit()
@@ -732,7 +734,8 @@ class TestImportDatabasesCommand(SupersetTestCase):
         assert database.database_name == "imported_database"
         assert database.expose_in_sqllab
         assert database.extra == "{}"
-        assert database.sqlalchemy_uri == "postgresql://user:pass@host1"
+        assert database.sqlalchemy_uri == "postgresql://user:XXXXXXXXXX@host1"
+        assert database.password == "pass"  # noqa: S105
 
         model_ssh_tunnel = (
             db.session.query(SSHTunnel)
@@ -779,7 +782,8 @@ class TestImportDatabasesCommand(SupersetTestCase):
         assert database.database_name == "imported_database"
         assert database.expose_in_sqllab
         assert database.extra == "{}"
-        assert database.sqlalchemy_uri == "postgresql://user:pass@host1"
+        assert database.sqlalchemy_uri == "postgresql://user:XXXXXXXXXX@host1"
+        assert database.password == "pass"  # noqa: S105
 
         model_ssh_tunnel = (
             db.session.query(SSHTunnel)
@@ -1008,7 +1012,12 @@ class TestTestConnectionDatabaseCommand(SupersetTestCase):
 @patch("superset.db_engine_specs.base.is_hostname_valid")
 @patch("superset.db_engine_specs.base.is_port_open")
 @patch("superset.commands.database.validate.DatabaseDAO")
-def test_validate(DatabaseDAO, is_port_open, is_hostname_valid, app_context):  # noqa: N803
+def test_validate(
+    mock_database_dao,  # noqa: N803
+    is_port_open,
+    is_hostname_valid,
+    app_context,
+) -> None:
     """
     Test parameter validation.
     """
diff --git a/tests/integration_tests/datasets/api_tests.py b/tests/integration_tests/datasets/api_tests.py
index 9990110befefff8ae40ef648081d4d5ff7a2c1f7..8ed7ec216ba03cdb5a45dbef40607b0b0e39e0ec 100644
--- a/tests/integration_tests/datasets/api_tests.py
+++ b/tests/integration_tests/datasets/api_tests.py
@@ -14,11 +14,10 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-"""Unit tests for Superset"""
+from __future__ import annotations
 
 import unittest
 from io import BytesIO
-from typing import Optional
 from unittest.mock import ANY, patch
 from zipfile import is_zipfile, ZipFile
 
@@ -70,14 +69,26 @@ from tests.integration_tests.fixtures.importexport import (
 class TestDatasetApi(SupersetTestCase):
     fixture_tables_names = ("ab_permission", "ab_permission_view", "ab_view_menu")
     fixture_virtual_table_names = ("sql_virtual_dataset_1", "sql_virtual_dataset_2")
+    items_to_delete: list[SqlaTable | Database | TableColumn] = []
+
+    def setUp(self):
+        self.items_to_delete = []
+
+    def tearDown(self):
+        for item in self.items_to_delete:
+            db.session.delete(item)
+        db.session.commit()
+        super().tearDown()
 
     @staticmethod
     def insert_dataset(
         table_name: str,
         owners: list[int],
         database: Database,
-        sql: Optional[str] = None,
-        schema: Optional[str] = None,
+        sql: str | None = None,
+        schema: str | None = None,
+        catalog: str | None = None,
+        fetch_metadata: bool = True,
     ) -> SqlaTable:
         obj_owners = list()  # noqa: C408
         for owner in owners:
@@ -89,10 +100,12 @@ class TestDatasetApi(SupersetTestCase):
             owners=obj_owners,
             database=database,
             sql=sql,
+            catalog=catalog,
         )
         db.session.add(table)
         db.session.commit()
-        table.fetch_metadata()
+        if fetch_metadata:
+            table.fetch_metadata()
         return table
 
     def insert_default_dataset(self):
@@ -100,6 +113,16 @@ class TestDatasetApi(SupersetTestCase):
             "ab_permission", [self.get_user("admin").id], get_main_database()
         )
 
+    def insert_database(self, name: str, allow_multi_catalog: bool = False) -> Database:
+        db_connection = Database(
+            database_name=name,
+            sqlalchemy_uri=get_example_database().sqlalchemy_uri,
+            extra=('{"allow_multi_catalog": true}' if allow_multi_catalog else "{}"),
+        )
+        db.session.add(db_connection)
+        db.session.commit()
+        return db_connection
+
     def get_fixture_datasets(self) -> list[SqlaTable]:
         return (
             db.session.query(SqlaTable)
@@ -315,8 +338,7 @@ class TestDatasetApi(SupersetTestCase):
 
         # revert gamma permission
         gamma_role.permissions.remove(main_db_pvm)
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_get_dataset_related_database_gamma(self):
         """
@@ -480,8 +502,7 @@ class TestDatasetApi(SupersetTestCase):
             ],
         }
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_get_dataset_render_jinja_exceptions(self):
         """
@@ -547,8 +568,7 @@ class TestDatasetApi(SupersetTestCase):
             == "Unable to render expression from dataset calculated column."
         )
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_get_dataset_distinct_schema(self):
         """
@@ -618,9 +638,7 @@ class TestDatasetApi(SupersetTestCase):
                 },
             )
 
-        for dataset in datasets:
-            db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = datasets
 
     def test_get_dataset_distinct_not_allowed(self):
         """
@@ -647,8 +665,7 @@ class TestDatasetApi(SupersetTestCase):
         assert response["count"] == 0
         assert response["result"] == []
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_get_dataset_info(self):
         """
@@ -722,8 +739,7 @@ class TestDatasetApi(SupersetTestCase):
         )
         assert columns[0].expression == "COUNT(*)"
 
-        db.session.delete(model)
-        db.session.commit()
+        self.items_to_delete = [model]
 
     def test_create_dataset_item_normalize(self):
         """
@@ -749,8 +765,7 @@ class TestDatasetApi(SupersetTestCase):
         assert model.database_id == table_data["database"]
         assert model.normalize_columns is True
 
-        db.session.delete(model)
-        db.session.commit()
+        self.items_to_delete = [model]
 
     def test_create_dataset_item_gamma(self):
         """
@@ -791,8 +806,7 @@ class TestDatasetApi(SupersetTestCase):
         model = db.session.query(SqlaTable).get(data.get("id"))
         assert admin in model.owners
         assert alpha in model.owners
-        db.session.delete(model)
-        db.session.commit()
+        self.items_to_delete = [model]
 
     def test_create_dataset_item_owners_invalid(self):
         """
@@ -839,8 +853,7 @@ class TestDatasetApi(SupersetTestCase):
         model = db.session.query(SqlaTable).get(data.get("id"))
         assert admin in model.owners
         assert alpha in model.owners
-        db.session.delete(model)
-        db.session.commit()
+        self.items_to_delete = [model]
 
     @unittest.skip("test is failing stochastically")
     def test_create_dataset_same_name_different_schema(self):
@@ -991,8 +1004,7 @@ class TestDatasetApi(SupersetTestCase):
         model = db.session.query(SqlaTable).get(dataset.id)
         assert model.owners == current_owners
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_clear_owner_list(self):
         """
@@ -1008,8 +1020,7 @@ class TestDatasetApi(SupersetTestCase):
         model = db.session.query(SqlaTable).get(dataset.id)
         assert model.owners == []
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_populate_owner(self):
         """
@@ -1026,8 +1037,7 @@ class TestDatasetApi(SupersetTestCase):
         model = db.session.query(SqlaTable).get(dataset.id)
         assert model.owners == [gamma]
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_item(self):
         """
@@ -1045,8 +1055,7 @@ class TestDatasetApi(SupersetTestCase):
         assert model.description == dataset_data["description"]
         assert model.owners == current_owners
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_item_w_override_columns(self):
         """
@@ -1082,8 +1091,7 @@ class TestDatasetApi(SupersetTestCase):
             col.advanced_data_type for col in columns
         ]
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_item_w_override_columns_same_columns(self):
         """
@@ -1130,8 +1138,7 @@ class TestDatasetApi(SupersetTestCase):
         columns = db.session.query(TableColumn).filter_by(table_id=dataset.id).all()
         assert len(columns) != prev_col_len
         assert len(columns) == 3
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_create_column_and_metric(self):
         """
@@ -1226,8 +1233,7 @@ class TestDatasetApi(SupersetTestCase):
         assert metrics[1].warning_text == new_metric_data["warning_text"]
         assert str(metrics[1].uuid) == new_metric_data["uuid"]
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_delete_column(self):
         """
@@ -1276,8 +1282,7 @@ class TestDatasetApi(SupersetTestCase):
         assert columns[1].column_name == "name"
         assert len(columns) == 2
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_update_column(self):
         """
@@ -1313,8 +1318,7 @@ class TestDatasetApi(SupersetTestCase):
             assert columns[0].groupby is False
             assert columns[0].filterable is False
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_delete_metric(self):
         """
@@ -1357,8 +1361,7 @@ class TestDatasetApi(SupersetTestCase):
         metrics = metrics_query.all()
         assert len(metrics) == 1
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_update_column_uniqueness(self):
         """
@@ -1378,8 +1381,7 @@ class TestDatasetApi(SupersetTestCase):
             "message": {"columns": ["One or more columns already exist"]}
         }
         assert data == expected_result
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_update_metric_uniqueness(self):
         """
@@ -1399,8 +1401,7 @@ class TestDatasetApi(SupersetTestCase):
             "message": {"metrics": ["One or more metrics already exist"]}
         }
         assert data == expected_result
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_update_column_duplicate(self):
         """
@@ -1425,8 +1426,7 @@ class TestDatasetApi(SupersetTestCase):
             "message": {"columns": ["One or more columns are duplicated"]}
         }
         assert data == expected_result
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_update_metric_duplicate(self):
         """
@@ -1451,8 +1451,7 @@ class TestDatasetApi(SupersetTestCase):
             "message": {"metrics": ["One or more metrics are duplicated"]}
         }
         assert data == expected_result
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_item_gamma(self):
         """
@@ -1465,8 +1464,7 @@ class TestDatasetApi(SupersetTestCase):
         uri = f"api/v1/dataset/{dataset.id}"
         rv = self.client.put(uri, json=table_data)
         assert rv.status_code == 403
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_dataset_get_list_no_username(self):
         """
@@ -1491,8 +1489,7 @@ class TestDatasetApi(SupersetTestCase):
         assert current_dataset["description"] == "changed_description"
         assert "username" not in current_dataset["changed_by"].keys()
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_dataset_get_no_username(self):
         """
@@ -1512,8 +1509,7 @@ class TestDatasetApi(SupersetTestCase):
         assert res["description"] == "changed_description"
         assert "username" not in res["changed_by"].keys()
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_item_not_owned(self):
         """
@@ -1526,8 +1522,7 @@ class TestDatasetApi(SupersetTestCase):
         uri = f"api/v1/dataset/{dataset.id}"
         rv = self.put_assert_metric(uri, table_data, "put")
         assert rv.status_code == 403
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_update_dataset_item_owners_invalid(self):
         """
@@ -1540,8 +1535,7 @@ class TestDatasetApi(SupersetTestCase):
         uri = f"api/v1/dataset/{dataset.id}"
         rv = self.put_assert_metric(uri, table_data, "put")
         assert rv.status_code == 422
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     @patch("superset.daos.dataset.DatasetDAO.update")
     def test_update_dataset_sqlalchemy_error(self, mock_dao_update):
@@ -1560,8 +1554,7 @@ class TestDatasetApi(SupersetTestCase):
         assert rv.status_code == 422
         assert data == {"message": "Dataset could not be updated."}
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     @with_feature_flags(DATASET_FOLDERS=True)
     def test_update_dataset_add_folders(self):
@@ -1607,7 +1600,6 @@ class TestDatasetApi(SupersetTestCase):
 
         uri = f"api/v1/dataset/{dataset.id}"
         rv = self.put_assert_metric(uri, dataset_data, "put")
-        print(rv.data.decode("utf-8"))
         assert rv.status_code == 200
 
         model = db.session.query(SqlaTable).get(dataset.id)
@@ -1643,8 +1635,229 @@ class TestDatasetApi(SupersetTestCase):
             },
         ]
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
+
+    def test_update_dataset_change_db_connection_multi_catalog_disabled(self):
+        """
+        Dataset API: Test changing the DB connection powering the dataset
+        to a connection with multi-catalog disabled.
+        """
+        self.login(ADMIN_USERNAME)
+
+        db_connection = self.insert_database("db_connection")
+        new_db_connection = self.insert_database("new_db_connection")
+        dataset = self.insert_dataset(
+            table_name="test_dataset",
+            owners=[],
+            database=db_connection,
+            sql="select 1 as one",
+            schema="test_schema",
+            catalog="old_default_catalog",
+            fetch_metadata=False,
+        )
+
+        with patch.object(
+            new_db_connection, "get_default_catalog", return_value="new_default_catalog"
+        ):
+            payload = {"database_id": new_db_connection.id}
+            uri = f"api/v1/dataset/{dataset.id}"
+            rv = self.put_assert_metric(uri, payload, "put")
+            assert rv.status_code == 200
+
+            model = db.session.query(SqlaTable).get(dataset.id)
+            assert model.database == new_db_connection
+            # Catalog should have been updated to new connection's default catalog
+            assert model.catalog == "new_default_catalog"
+
+        self.items_to_delete = [dataset, db_connection, new_db_connection]
+
+    def test_update_dataset_change_db_connection_multi_catalog_enabled(self):
+        """
+        Dataset API: Test changing the DB connection powering the dataset
+        to a connection with multi-catalog enabled.
+        """
+        self.login(ADMIN_USERNAME)
+
+        db_connection = self.insert_database("db_connection")
+        new_db_connection = self.insert_database(
+            "new_db_connection", allow_multi_catalog=True
+        )
+        dataset = self.insert_dataset(
+            table_name="test_dataset",
+            owners=[],
+            database=db_connection,
+            sql="select 1 as one",
+            schema="test_schema",
+            catalog="old_default_catalog",
+            fetch_metadata=False,
+        )
+
+        with patch.object(
+            new_db_connection, "get_default_catalog", return_value="default"
+        ):
+            payload = {"database_id": new_db_connection.id}
+            uri = f"api/v1/dataset/{dataset.id}"
+            rv = self.put_assert_metric(uri, payload, "put")
+            assert rv.status_code == 200
+
+        model = db.session.query(SqlaTable).get(dataset.id)
+        assert model.database == new_db_connection
+        # Catalog was not changed as not provided and multi-catalog is enabled
+        assert model.catalog == "old_default_catalog"
+
+        self.items_to_delete = [dataset, db_connection, new_db_connection]
+
+    def test_update_dataset_change_db_connection_not_found(self):
+        """
+        Dataset API: Test changing the DB connection powering the dataset
+        to an invalid DB connection.
+        """
+        self.login(ADMIN_USERNAME)
+
+        dataset = self.insert_default_dataset()
+
+        payload = {"database_id": 1500}
+        uri = f"api/v1/dataset/{dataset.id}"
+        rv = self.put_assert_metric(uri, payload, "put")
+        response = json.loads(rv.data.decode("utf-8"))
+        assert rv.status_code == 422
+        assert response["message"] == {"database": ["Database does not exist"]}
+
+        self.items_to_delete = [dataset]
+
+    def test_update_dataset_change_catalog(self):
+        """
+        Dataset API: Test changing the catalog associated with the dataset.
+        """
+        self.login(ADMIN_USERNAME)
+
+        db_connection = self.insert_database("db_connection", allow_multi_catalog=True)
+        dataset = self.insert_dataset(
+            table_name="test_dataset",
+            owners=[],
+            database=db_connection,
+            sql="select 1 as one",
+            schema="test_schema",
+            catalog="test_catalog",
+            fetch_metadata=False,
+        )
+
+        with patch.object(db_connection, "get_default_catalog", return_value="default"):
+            payload = {"catalog": "other_catalog"}
+            uri = f"api/v1/dataset/{dataset.id}"
+            rv = self.put_assert_metric(uri, payload, "put")
+            assert rv.status_code == 200
+
+            model = db.session.query(SqlaTable).get(dataset.id)
+            assert model.catalog == "other_catalog"
+
+        self.items_to_delete = [dataset, db_connection]
+
+    def test_update_dataset_change_catalog_not_allowed(self):
+        """
+        Dataset API: Test changing the catalog associated with the dataset fails
+        when multi-catalog is disabled on the DB connection.
+        """
+        self.login(ADMIN_USERNAME)
+
+        db_connection = self.insert_database("db_connection")
+        dataset = self.insert_dataset(
+            table_name="test_dataset",
+            owners=[],
+            database=db_connection,
+            sql="select 1 as one",
+            schema="test_schema",
+            catalog="test_catalog",
+            fetch_metadata=False,
+        )
+
+        with patch.object(db_connection, "get_default_catalog", return_value="default"):
+            payload = {"catalog": "other_catalog"}
+            uri = f"api/v1/dataset/{dataset.id}"
+            rv = self.put_assert_metric(uri, payload, "put")
+            response = json.loads(rv.data.decode("utf-8"))
+            assert rv.status_code == 422
+            assert response["message"] == {
+                "catalog": ["Only the default catalog is supported for this connection"]
+            }
+
+        self.items_to_delete = [dataset, db_connection]
+
+    def test_update_dataset_validate_uniqueness(self):
+        """
+        Dataset API: Test the dataset uniqueness validation takes into
+        consideration the new database connection.
+        """
+        test_db = get_main_database()
+        if test_db.backend == "sqlite":
+            # Skip this test for SQLite as it doesn't support multiple
+            # schemas.
+            return
+
+        self.login(ADMIN_USERNAME)
+
+        db_connection = self.insert_database("db_connection")
+        new_db_connection = self.insert_database("new_db_connection")
+        first_schema_dataset = self.insert_dataset(
+            table_name="test_dataset",
+            owners=[],
+            database=db_connection,
+            sql="select 1 as one",
+            schema="first_schema",
+            fetch_metadata=False,
+        )
+        second_schema_dataset = self.insert_dataset(
+            table_name="test_dataset",
+            owners=[],
+            database=db_connection,
+            sql="select 1 as one",
+            schema="second_schema",
+            fetch_metadata=False,
+        )
+        new_db_conn_dataset = self.insert_dataset(
+            table_name="test_dataset",
+            owners=[],
+            database=new_db_connection,
+            sql="select 1 as one",
+            schema="first_schema",
+            fetch_metadata=False,
+        )
+
+        with patch.object(
+            db_connection,
+            "get_default_catalog",
+            return_value=None,
+        ):
+            payload = {"schema": "second_schema"}
+            uri = f"api/v1/dataset/{first_schema_dataset.id}"
+            rv = self.put_assert_metric(uri, payload, "put")
+            response = json.loads(rv.data.decode("utf-8"))
+            assert rv.status_code == 422
+            assert response["message"] == {
+                "table": ["Dataset second_schema.test_dataset already exists"]
+            }
+
+        with patch.object(
+            new_db_connection,
+            "get_default_catalog",
+            return_value=None,
+        ):
+            payload["database_id"] = new_db_connection.id
+            uri = f"api/v1/dataset/{first_schema_dataset.id}"
+            rv = self.put_assert_metric(uri, payload, "put")
+            assert rv.status_code == 200
+
+        model = db.session.query(SqlaTable).get(first_schema_dataset.id)
+        assert model.database == new_db_connection
+        assert model.schema == "second_schema"
+
+        self.items_to_delete = [
+            first_schema_dataset,
+            second_schema_dataset,
+            new_db_conn_dataset,
+            new_db_connection,
+            db_connection,
+        ]
 
     def test_delete_dataset_item(self):
         """
@@ -1674,8 +1887,7 @@ class TestDatasetApi(SupersetTestCase):
         uri = f"api/v1/dataset/{dataset.id}"
         rv = self.delete_assert_metric(uri, "delete")
         assert rv.status_code == 403
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_delete_dataset_item_not_authorized(self):
         """
@@ -1687,8 +1899,7 @@ class TestDatasetApi(SupersetTestCase):
         uri = f"api/v1/dataset/{dataset.id}"
         rv = self.client.delete(uri)
         assert rv.status_code == 403
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     @patch("superset.daos.dataset.DatasetDAO.delete")
     def test_delete_dataset_sqlalchemy_error(self, mock_dao_delete):
@@ -1705,8 +1916,7 @@ class TestDatasetApi(SupersetTestCase):
         data = json.loads(rv.data.decode("utf-8"))
         assert rv.status_code == 422
         assert data == {"message": "Datasets could not be deleted."}
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     @pytest.mark.usefixtures("create_datasets")
     def test_delete_dataset_column(self):
@@ -1947,8 +2157,7 @@ class TestDatasetApi(SupersetTestCase):
             .filter_by(table_id=dataset.id, column_name="id")
             .one()
         )
-        db.session.delete(id_column)
-        db.session.commit()
+        self.items_to_delete = [id_column]
 
         self.login(ADMIN_USERNAME)
         uri = f"api/v1/dataset/{dataset.id}/refresh"
@@ -1961,8 +2170,7 @@ class TestDatasetApi(SupersetTestCase):
             .one()
         )
         assert id_column is not None
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     def test_dataset_item_refresh_not_found(self):
         """
@@ -1987,8 +2195,7 @@ class TestDatasetApi(SupersetTestCase):
         rv = self.put_assert_metric(uri, {}, "refresh")
         assert rv.status_code == 403
 
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     @unittest.skip("test is failing stochastically")
     def test_export_dataset(self):
@@ -2250,8 +2457,7 @@ class TestDatasetApi(SupersetTestCase):
         dataset = (
             db.session.query(SqlaTable).filter_by(table_name="birth_names_2").one()
         )
-        db.session.delete(dataset)
-        db.session.commit()
+        self.items_to_delete = [dataset]
 
     @patch("superset.commands.database.importers.v1.utils.add_permissions")
     def test_import_dataset_overwrite(self, mock_add_permissions):
@@ -2447,8 +2653,7 @@ class TestDatasetApi(SupersetTestCase):
         response = json.loads(rv.data.decode("utf-8"))
         assert response.get("count") == 1
 
-        db.session.delete(table_w_certification)
-        db.session.commit()
+        self.items_to_delete = [table_w_certification]
 
     @pytest.mark.usefixtures("create_virtual_datasets")
     def test_duplicate_virtual_dataset(self):
@@ -2473,8 +2678,7 @@ class TestDatasetApi(SupersetTestCase):
         assert len(new_dataset.columns) == 2
         assert new_dataset.columns[0].column_name == "id"
         assert new_dataset.columns[1].column_name == "name"
-        db.session.delete(new_dataset)
-        db.session.commit()
+        self.items_to_delete = [new_dataset]
 
     @pytest.mark.usefixtures("create_datasets")
     def test_duplicate_physical_dataset(self):
@@ -2604,8 +2808,7 @@ class TestDatasetApi(SupersetTestCase):
         assert table.template_params == '{"param": 1}'
         assert table.normalize_columns is False
 
-        db.session.delete(table)
-        db.session.commit()
+        self.items_to_delete = [table]
 
         with examples_db.get_sqla_engine() as engine:
             engine.execute("DROP TABLE test_create_sqla_table_api")
diff --git a/tests/integration_tests/datasource_tests.py b/tests/integration_tests/datasource_tests.py
index 5797d01cc1ee9ffb590937d425e8e8b3c57855fc..c9ba88411dea17ebdf9f55faa8827d993d95d204 100644
--- a/tests/integration_tests/datasource_tests.py
+++ b/tests/integration_tests/datasource_tests.py
@@ -580,10 +580,7 @@ def test_get_samples_with_incorrect_cc(test_client, login_as_admin, virtual_data
     )
     rv = test_client.post(uri, json={})
     assert rv.status_code == 422
-
-    assert "error" in rv.json
-    if virtual_dataset.database.db_engine_spec.engine_name == "PostgreSQL":
-        assert "INCORRECT SQL" in rv.json.get("error")
+    assert rv.json["errors"][0]["error_type"] == "INVALID_SQL_ERROR"
 
 
 @with_feature_flags(ALLOW_ADHOC_SUBQUERY=True)
diff --git a/tests/unit_tests/commands/databases/importers/v1/command_test.py b/tests/unit_tests/commands/databases/importers/v1/command_test.py
index 1243d57b5b7c4c70260c184c4dadb550e801dace..14c1779aef4919887cbf46ed1059c3348a809fa5 100644
--- a/tests/unit_tests/commands/databases/importers/v1/command_test.py
+++ b/tests/unit_tests/commands/databases/importers/v1/command_test.py
@@ -17,6 +17,7 @@
 
 import copy
 import json
+from typing import Any
 
 from pytest_mock import MockerFixture
 from sqlalchemy.orm.session import Session
@@ -48,3 +49,47 @@ def test_import_database_with_encrypted_extra(
     uuid = configs["databases/examples.yaml"]["uuid"]
     database = db.session.query(Database).filter_by(uuid=uuid).one()
     assert database.encrypted_extra == '{"secret": "info"}'
+
+
+def test_import_mask_password(
+    mocker: MockerFixture,
+    session: Session,
+) -> None:
+    """
+    Test that passwords are masked when importing databases.
+    """
+    from superset import db, security_manager
+    from superset.commands.database.importers.v1 import ImportDatabasesCommand
+    from superset.models.core import Database
+
+    mocker.patch("superset.commands.database.importers.v1.utils.add_permissions")
+    mocker.patch.object(security_manager, "can_access", return_value=True)
+
+    configs: dict[str, dict[str, Any]] = {
+        "databases/examples.yaml": {
+            "database_name": "examples",
+            "sqlalchemy_uri": "postgresql://user:password@localhost:5432/superset",
+            "cache_timeout": None,
+            "expose_in_sqllab": True,
+            "allow_run_async": False,
+            "allow_ctas": False,
+            "allow_cvas": False,
+            "extra": {},
+            "uuid": "a2dc77af-e654-49bb-b321-40f6b559a1ee",
+            "version": "1.0.0",
+            "password": None,
+            "allow_csv_upload": False,
+        },
+    }
+
+    engine = db.session.get_bind()
+    Database.metadata.create_all(engine)  # pylint: disable=no-member
+
+    ImportDatabasesCommand._import(configs)
+    uuid = configs["databases/examples.yaml"]["uuid"]
+    database = db.session.query(Database).filter_by(uuid=uuid).one()
+    assert (
+        database.sqlalchemy_uri
+        == "postgresql://user:XXXXXXXXXX@localhost:5432/superset"
+    )
+    assert database.password == "password"  # noqa: S105
diff --git a/tests/unit_tests/commands/databases/update_test.py b/tests/unit_tests/commands/databases/update_test.py
index 5e6b0869d72763416b86fc68f99f0ededdd5a53e..32b816295be5fc8b6626e8e2d826658334bd6f14 100644
--- a/tests/unit_tests/commands/databases/update_test.py
+++ b/tests/unit_tests/commands/databases/update_test.py
@@ -642,3 +642,28 @@ def test_update_without_catalog_change(mocker: MockerFixture) -> None:
     UpdateDatabaseCommand(1, {}).run()
 
     update_catalog_attribute.assert_not_called()
+
+
+def test_update_broken_connection(mocker: MockerFixture) -> None:
+    """
+    Test that updating a database with a broken connection works
+    even if it has to run a query to get the default catalog.
+    """
+    database = mocker.MagicMock()
+    database.get_default_catalog.side_effect = Exception("Broken connection")
+    database.id = 1
+    new_db = mocker.MagicMock()
+    new_db.get_default_catalog.return_value = "main"
+
+    database_dao = mocker.patch("superset.commands.database.update.DatabaseDAO")
+    database_dao.find_by_id.return_value = database
+    database_dao.update.return_value = new_db
+    mocker.patch("superset.commands.database.update.SyncPermissionsCommand")
+
+    update_catalog_attribute = mocker.patch.object(
+        UpdateDatabaseCommand,
+        "_update_catalog_attribute",
+    )
+    UpdateDatabaseCommand(1, {}).run()
+
+    update_catalog_attribute.assert_called_once_with(1, "main")
diff --git a/tests/unit_tests/commands/dataset/test_update.py b/tests/unit_tests/commands/dataset/update_test.py
similarity index 72%
rename from tests/unit_tests/commands/dataset/test_update.py
rename to tests/unit_tests/commands/dataset/update_test.py
index fa2026b533b19fd17e99d4d93d5e0df95d9532d4..45a1a4160d80e64ecc3aa8db28929894c6549654 100644
--- a/tests/unit_tests/commands/dataset/test_update.py
+++ b/tests/unit_tests/commands/dataset/update_test.py
@@ -15,78 +15,125 @@
 # specific language governing permissions and limitations
 # under the License.
 
-from typing import cast
-from unittest.mock import MagicMock
+from typing import Any, cast
 
 import pytest
 from marshmallow import ValidationError
 from pytest_mock import MockerFixture
 
-from superset import db
-from superset.commands.dataset.exceptions import DatasetInvalidError
+from superset.commands.dataset.exceptions import (
+    DatabaseNotFoundValidationError,
+    DatasetExistsValidationError,
+    DatasetForbiddenError,
+    DatasetInvalidError,
+    DatasetNotFoundError,
+    MultiCatalogDisabledValidationError,
+)
 from superset.commands.dataset.update import UpdateDatasetCommand, validate_folders
-from superset.connectors.sqla.models import SqlaTable
+from superset.commands.exceptions import OwnersNotFoundValidationError
 from superset.datasets.schemas import FolderSchema
-from superset.models.core import Database
+from superset.errors import ErrorLevel, SupersetError, SupersetErrorType
+from superset.exceptions import SupersetSecurityException
 from tests.unit_tests.conftest import with_feature_flags
 
 
-@pytest.mark.usefixture("session")
-def test_update_uniqueness_error(mocker: MockerFixture) -> None:
+def test_update_dataset_not_found(mocker: MockerFixture) -> None:
     """
-    Test uniqueness validation in dataset update command.
+    Test updating an unexisting ID raises a `DatasetNotFoundError`.
     """
-    SqlaTable.metadata.create_all(db.session.get_bind())
-
-    # First, make sure session is clean
-    db.session.rollback()
-
-    try:
-        # Set up test data
-        database = Database(database_name="my_db", sqlalchemy_uri="sqlite://")
-        bar = SqlaTable(table_name="bar", schema="foo", database=database)
-        baz = SqlaTable(table_name="baz", schema="qux", database=database)
-        db.session.add_all([database, bar, baz])
-        db.session.commit()
-
-        # Set up mocks
-        mock_g = mocker.patch("superset.security.manager.g")
-        mock_g.user = MagicMock()
-        mocker.patch(
-            "superset.views.base.security_manager.can_access_all_datasources",
-            return_value=True,
-        )
-        mocker.patch(
-            "superset.commands.dataset.update.security_manager.raise_for_ownership",
-            return_value=None,
-        )
-        mocker.patch.object(UpdateDatasetCommand, "compute_owners", return_value=[])
-
-        # Run the test that should fail
-        with pytest.raises(DatasetInvalidError):
-            UpdateDatasetCommand(
-                bar.id,
-                {
-                    "table_name": "baz",
-                    "schema": "qux",
-                },
-            ).run()
-    except Exception:
-        db.session.rollback()
-        raise
-    finally:
-        # Clean up - this will run even if the test fails
-        try:
-            db.session.query(SqlaTable).filter(
-                SqlaTable.table_name.in_(["bar", "baz"]),
-                SqlaTable.schema.in_(["foo", "qux"]),
-            ).delete(synchronize_session=False)
-            db.session.query(Database).filter(Database.database_name == "my_db").delete(
-                synchronize_session=False
+    mock_dataset_dao = mocker.patch("superset.commands.dataset.update.DatasetDAO")
+    mock_dataset_dao.find_by_id.return_value = None
+
+    with pytest.raises(DatasetNotFoundError):
+        UpdateDatasetCommand(1, {"name": "test"}).run()
+
+
+def test_update_dataset_forbidden(mocker: MockerFixture) -> None:
+    """
+    Test try updating a dataset without permission raises a `DatasetForbiddenError`.
+    """
+    mock_dataset_dao = mocker.patch("superset.commands.dataset.update.DatasetDAO")
+    mock_dataset_dao.find_by_id.return_value = mocker.MagicMock()
+
+    mocker.patch(
+        "superset.commands.dataset.update.security_manager.raise_for_ownership",
+        side_effect=SupersetSecurityException(
+            SupersetError(
+                error_type=SupersetErrorType.MISSING_OWNERSHIP_ERROR,
+                message="Sample message",
+                level=ErrorLevel.ERROR,
             )
-            db.session.commit()
-        except Exception:
-            db.session.rollback()
+        ),
+    )
+
+    with pytest.raises(DatasetForbiddenError):
+        UpdateDatasetCommand(1, {"name": "test"}).run()
+
+
+@pytest.mark.parametrize(
+    ("payload, exception, error_msg"),
+    [
+        (
+            {"database_id": 2},
+            DatabaseNotFoundValidationError,
+            "Database does not exist",
+        ),
+        (
+            {"catalog": "test"},
+            MultiCatalogDisabledValidationError,
+            "Only the default catalog is supported for this connection",
+        ),
+        (
+            {"table_name": "table", "schema": "schema"},
+            DatasetExistsValidationError,
+            "Dataset catalog.schema.table already exists",
+        ),
+        (
+            {"owners": [1]},
+            OwnersNotFoundValidationError,
+            "Owners are invalid",
+        ),
+    ],
+)
+def test_update_validation_errors(
+    payload: dict[str, Any],
+    exception: Exception,
+    error_msg: str,
+    mocker: MockerFixture,
+) -> None:
+    """
+    Test validation errors for the `UpdateDatasetCommand`.
+    """
+    mock_dataset_dao = mocker.patch("superset.commands.dataset.update.DatasetDAO")
+    mocker.patch(
+        "superset.commands.dataset.update.security_manager.raise_for_ownership",
+    )
+    mocker.patch("superset.commands.utils.security_manager.is_admin", return_value=True)
+    mocker.patch(
+        "superset.commands.utils.security_manager.get_user_by_id", return_value=None
+    )
+    mock_database = mocker.MagicMock()
+    mock_database.id = 1
+    mock_database.get_default_catalog.return_value = "catalog"
+    mock_database.allow_multi_catalog = False
+    mock_dataset = mocker.MagicMock()
+    mock_dataset.database = mock_database
+    mock_dataset.catalog = "catalog"
+    mock_dataset_dao.find_by_id.return_value = mock_dataset
+
+    if exception == DatabaseNotFoundValidationError:
+        mock_dataset_dao.get_database_by_id.return_value = None
+    else:
+        mock_dataset_dao.get_database_by_id.return_value = mock_database
+
+    if exception == DatasetExistsValidationError:
+        mock_dataset_dao.validate_update_uniqueness.return_value = False
+    else:
+        mock_dataset_dao.validate_update_uniqueness.return_value = True
+
+    with pytest.raises(DatasetInvalidError) as excinfo:
+        UpdateDatasetCommand(1, payload).run()
+    assert any(error_msg in str(exc) for exc in excinfo.value._exceptions)
 
 
 @with_feature_flags(DATASET_FOLDERS=True)
diff --git a/tests/unit_tests/common/test_query_object_factory.py b/tests/unit_tests/common/test_query_object_factory.py
index 8ff362dec362caa8d6c4896aa200b2b90b4354bf..379137a34c4f6bd622b8a87f83804763cbde9eb3 100644
--- a/tests/unit_tests/common/test_query_object_factory.py
+++ b/tests/unit_tests/common/test_query_object_factory.py
@@ -14,7 +14,7 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
-from typing import Any, Optional
+from typing import Any
 from unittest.mock import Mock
 
 from pytest import fixture  # noqa: PT013
@@ -45,9 +45,15 @@ def connector_registry() -> Mock:
     return mock
 
 
-def apply_max_row_limit(limit: int, max_limit: Optional[int] = None) -> int:
-    if max_limit is None:
-        max_limit = create_app_config()["SQL_MAX_ROW"]
+def apply_max_row_limit(
+    limit: int,
+    server_pagination: bool | None = None,
+) -> int:
+    max_limit = (
+        create_app_config()["TABLE_VIZ_MAX_ROW_SERVER"]
+        if server_pagination
+        else create_app_config()["SQL_MAX_ROW"]
+    )
     if limit != 0:
         return min(max_limit, limit)
     return max_limit
diff --git a/tests/unit_tests/databases/commands/importers/v1/import_test.py b/tests/unit_tests/databases/commands/importers/v1/import_test.py
index b255dae28b3da4d60749d67e2125bd8fc45ae5bb..e052037d7fc6cbb913c150077a116e1ba6f44968 100644
--- a/tests/unit_tests/databases/commands/importers/v1/import_test.py
+++ b/tests/unit_tests/databases/commands/importers/v1/import_test.py
@@ -45,7 +45,8 @@ def test_import_database(mocker: MockerFixture, session: Session) -> None:
     config = copy.deepcopy(database_config)
     database = import_database(config)
     assert database.database_name == "imported_database"
-    assert database.sqlalchemy_uri == "postgresql://user:pass@host1"
+    assert database.sqlalchemy_uri == "postgresql://user:XXXXXXXXXX@host1"
+    assert database.password == "pass"  # noqa: S105
     assert database.cache_timeout is None
     assert database.expose_in_sqllab is True
     assert database.allow_run_async is False
diff --git a/tests/unit_tests/migrations/shared/utils_test.py b/tests/unit_tests/migrations/shared/utils_test.py
new file mode 100644
index 0000000000000000000000000000000000000000..66580d1a4a3f1000a73a362e4cfede9a5748e671
--- /dev/null
+++ b/tests/unit_tests/migrations/shared/utils_test.py
@@ -0,0 +1,200 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+from superset.migrations.shared.utils import create_index, drop_index
+
+
+# ----- Dummy classes for capturing calls ----- #
+class DummyLogger:
+    def __init__(self):
+        self.messages = []
+
+    def info(self, message):
+        self.messages.append(message)
+
+
+class DummyOp:
+    def __init__(self):
+        self.called = False
+        self.call_kwargs = None
+
+    def create_index(self, **kwargs):
+        self.called = True
+        self.call_kwargs = kwargs
+
+    def drop_index(self, **kwargs):
+        self.called = True
+        self.call_kwargs = kwargs
+
+
+# ----- Fake functions to simulate table index checks ----- #
+def fake_table_has_index_true(*args, **kwargs):
+    return True
+
+
+def fake_table_has_index_false(*args, **kwargs):
+    return False
+
+
+# ----- Tests for create_index ----- #
+def test_create_index_skips_if_index_exists(monkeypatch):
+    dummy_logger = DummyLogger()
+    dummy_op = DummyOp()
+
+    # Patch globals in the module where create_index is defined.
+    monkeypatch.setattr("superset.migrations.shared.utils.logger", dummy_logger)
+    monkeypatch.setattr("superset.migrations.shared.utils.op", dummy_op)
+    monkeypatch.setattr(
+        "superset.migrations.shared.utils.table_has_index", fake_table_has_index_true
+    )
+
+    table_name = "test_table"
+    index_name = "idx_test"
+    columns = ["col1", "col2"]
+
+    create_index(table_name, index_name, columns, unique=True)
+
+    # When the index already exists, op.create_index should not be called.
+    assert dummy_op.called is False
+    # And a log message mentioning "already has index" should be generated.
+    assert any("already has index" in msg for msg in dummy_logger.messages)
+
+
+def test_create_index_creates_index(monkeypatch):
+    dummy_logger = DummyLogger()
+    dummy_op = DummyOp()
+
+    monkeypatch.setattr("superset.migrations.shared.utils.logger", dummy_logger)
+    monkeypatch.setattr("superset.migrations.shared.utils.op", dummy_op)
+    monkeypatch.setattr(
+        "superset.migrations.shared.utils.table_has_index", fake_table_has_index_false
+    )
+
+    table_name = "test_table"
+    index_name = "idx_test"
+    columns = ["col1", "col2"]
+
+    create_index(table_name, index_name, columns, unique=False)
+
+    # When the index does not exist, op.create_index should be called.
+    assert dummy_op.called is True
+    call_kwargs = dummy_op.call_kwargs
+    assert call_kwargs.get("table_name") == table_name
+    assert call_kwargs.get("index_name") == index_name
+    assert call_kwargs.get("unique") is False
+    assert call_kwargs.get("columns") == columns
+    # And a log message mentioning "Creating index" should be generated.
+    assert any("Creating index" in msg for msg in dummy_logger.messages)
+
+
+def test_create_unique_index_creates_index(monkeypatch):
+    dummy_logger = DummyLogger()
+    dummy_op = DummyOp()
+
+    monkeypatch.setattr("superset.migrations.shared.utils.logger", dummy_logger)
+    monkeypatch.setattr("superset.migrations.shared.utils.op", dummy_op)
+    monkeypatch.setattr(
+        "superset.migrations.shared.utils.table_has_index", fake_table_has_index_false
+    )
+
+    table_name = "test_table"
+    index_name = "idx_test"
+    columns = ["col1", "col2"]
+
+    create_index(table_name, index_name, columns, unique=True)
+
+    # When the index does not exist, op.create_index should be called.
+    assert dummy_op.called is True
+    call_kwargs = dummy_op.call_kwargs
+    assert call_kwargs.get("table_name") == table_name
+    assert call_kwargs.get("index_name") == index_name
+    assert call_kwargs.get("unique") is True
+    assert call_kwargs.get("columns") == columns
+    # And a log message mentioning "Creating index" should be generated.
+    print(dummy_logger.messages)
+    assert any("Creating index" in msg for msg in dummy_logger.messages)
+
+
+def test_create_index_with_not_unique(monkeypatch):
+    dummy_logger = DummyLogger()
+    dummy_op = DummyOp()
+
+    monkeypatch.setattr("superset.migrations.shared.utils.logger", dummy_logger)
+    monkeypatch.setattr("superset.migrations.shared.utils.op", dummy_op)
+    monkeypatch.setattr(
+        "superset.migrations.shared.utils.table_has_index", fake_table_has_index_false
+    )
+
+    table_name = "test_table"
+    index_name = "idx_test"
+    columns = ["col1", "col2"]
+
+    create_index(table_name, index_name, columns, unique=False)
+
+    # When the index does not exist, op.create_index should be called.
+    assert dummy_op.called is True
+    call_kwargs = dummy_op.call_kwargs
+    assert call_kwargs.get("table_name") == table_name
+    assert call_kwargs.get("index_name") == index_name
+    assert call_kwargs.get("unique") is False
+    assert call_kwargs.get("columns") == columns
+
+
+# ----- Tests for drop_index ----- #
+def test_drop_index_skips_if_index_not_exist(monkeypatch):
+    dummy_logger = DummyLogger()
+    dummy_op = DummyOp()
+
+    monkeypatch.setattr("superset.migrations.shared.utils.logger", dummy_logger)
+    monkeypatch.setattr("superset.migrations.shared.utils.op", dummy_op)
+    monkeypatch.setattr(
+        "superset.migrations.shared.utils.table_has_index", fake_table_has_index_false
+    )
+
+    table_name = "test_table"
+    index_name = "idx_test"
+
+    drop_index(table_name, index_name)
+
+    # When the index does not exist, op.drop_index should not be called.
+    assert dummy_op.called is False
+    # And a log message mentioning "doesn't have index" should be generated.
+    assert any("doesn't have index" in msg for msg in dummy_logger.messages)
+
+
+def test_drop_index_drops_index_when_exists(monkeypatch):
+    dummy_logger = DummyLogger()
+    dummy_op = DummyOp()
+
+    monkeypatch.setattr("superset.migrations.shared.utils.logger", dummy_logger)
+    monkeypatch.setattr("superset.migrations.shared.utils.op", dummy_op)
+    monkeypatch.setattr(
+        "superset.migrations.shared.utils.table_has_index", fake_table_has_index_true
+    )
+
+    table_name = "test_table"
+    index_name = "idx_test"
+
+    drop_index(table_name, index_name)
+
+    # When the index exists, op.drop_index should be called.
+    assert dummy_op.called is True
+    call_kwargs = dummy_op.call_kwargs
+    assert call_kwargs.get("table_name") == table_name
+    assert call_kwargs.get("index_name") == index_name
+    # And a log message mentioning "Dropping index" should be generated.
+    assert any("Dropping index" in msg for msg in dummy_logger.messages)
diff --git a/tests/unit_tests/migrations/viz/time_related_fields_test.py b/tests/unit_tests/migrations/viz/time_related_fields_test.py
index 4494aff1cf2b74d3d36f684f6ec5fe96c2940bff..c5a94a6adca5fb632dc90a3798b5a5a21493e21b 100644
--- a/tests/unit_tests/migrations/viz/time_related_fields_test.py
+++ b/tests/unit_tests/migrations/viz/time_related_fields_test.py
@@ -21,7 +21,7 @@ from tests.unit_tests.migrations.viz.utils import migrate_and_assert
 
 SOURCE_FORM_DATA: dict[str, Any] = {
     "granularity_sqla": "ds",
-    "time_range": "100 years ago : now",
+    "time_range": "1925-04-24 : 2025-04-24",
     "viz_type": "pivot_table",
 }
 
@@ -29,7 +29,7 @@ TARGET_FORM_DATA: dict[str, Any] = {
     "form_data_bak": SOURCE_FORM_DATA,
     "granularity_sqla": "ds",
     "rowOrder": "value_z_to_a",
-    "time_range": "100 years ago : now",
+    "time_range": "1925-04-24 : 2025-04-24",
     "viz_type": "pivot_table_v2",
 }
 
@@ -40,7 +40,7 @@ def test_migration() -> None:
     target["adhoc_filters"] = [
         {
             "clause": "WHERE",
-            "comparator": "100 years ago : now",
+            "comparator": "1925-04-24 : 2025-04-24",
             "expressionType": "SIMPLE",
             "operator": "TEMPORAL_RANGE",
             "subject": "ds",
@@ -65,7 +65,9 @@ def test_custom_sql_time_column() -> None:
             "comparator": None,
             "expressionType": "SQL",
             "operator": "TEMPORAL_RANGE",
-            "sqlExpression": "sum(ds)",
+            "sqlExpression": (
+                "sum(ds) >= '1925-04-24T00:00:00' AND sum(ds) < '2025-04-24T00:00:00'"
+            ),
             "subject": "ds",
         }
     ]
diff --git a/tests/unit_tests/sql_parse_tests.py b/tests/unit_tests/sql_parse_tests.py
index 9c814a0f4221fc1cced8d7fdea3527aae81c6249..23aa6b0b1256e9d298fdfc7e89bc7d4cdd26f112 100644
--- a/tests/unit_tests/sql_parse_tests.py
+++ b/tests/unit_tests/sql_parse_tests.py
@@ -1237,6 +1237,35 @@ def test_check_sql_functions_exist() -> None:
     )
 
 
+def test_check_sql_functions_exist_with_comments() -> None:
+    """
+    Test sql functions are detected correctly with comments
+    """
+    assert not (
+        check_sql_functions_exist(
+            "select a, b from version/**/", {"version"}, "postgresql"
+        )
+    )
+
+    assert check_sql_functions_exist("select version/**/()", {"version"}, "postgresql")
+
+    assert check_sql_functions_exist(
+        "select version from version/**/()", {"version"}, "postgresql"
+    )
+
+    assert check_sql_functions_exist(
+        "select 1, a.version from (select version from version/**/()) as a",
+        {"version"},
+        "postgresql",
+    )
+
+    assert check_sql_functions_exist(
+        "select 1, a.version from (select version/**/()) as a",
+        {"version"},
+        "postgresql",
+    )
+
+
 def test_sanitize_clause_valid():
     # regular clauses
     assert sanitize_clause("col = 1") == "col = 1"