From 18f82411c9dfd06ac9bacb35da0add4824269588 Mon Sep 17 00:00:00 2001 From: Kasia <36897697+kasiazjc@users.noreply.github.com> Date: Thu, 24 Mar 2022 20:51:06 +0100 Subject: [PATCH] fix: Adaptive formatting spelling (#19359) Co-authored-by: Kasia Zajac (cherry picked from commit dc769a9a34e9b6417447ee490ecd203ace0941d9) --- .../superset-ui-chart-controls/src/utils/D3Formatting.ts | 4 ++-- superset-frontend/src/explore/controls.jsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts b/superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts index 02585cc58db9..0e30f82d7b44 100644 --- a/superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts +++ b/superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts @@ -25,7 +25,7 @@ export const D3_FORMAT_DOCS = t( // input choices & options export const D3_FORMAT_OPTIONS: [string, string][] = [ - [NumberFormats.SMART_NUMBER, t('Adaptative formating')], + [NumberFormats.SMART_NUMBER, t('Adaptive formatting')], ['~g', t('Original value')], [',d', ',d (12345.432 => 12,345)'], ['.1s', '.1s (12345.432 => 10k)'], @@ -48,7 +48,7 @@ export const D3_TIME_FORMAT_DOCS = t( ); export const D3_TIME_FORMAT_OPTIONS: [string, string][] = [ - [smartDateFormatter.id, t('Adaptative formating')], + [smartDateFormatter.id, t('Adaptive formatting')], ['%d/%m/%Y', '%d/%m/%Y | 14/01/2019'], ['%m/%d/%Y', '%m/%d/%Y | 01/14/2019'], ['%Y-%m-%d', '%Y-%m-%d | 2019-01-14'], diff --git a/superset-frontend/src/explore/controls.jsx b/superset-frontend/src/explore/controls.jsx index 401bad34e32d..00ecc28fb1ac 100644 --- a/superset-frontend/src/explore/controls.jsx +++ b/superset-frontend/src/explore/controls.jsx @@ -75,7 +75,7 @@ export const PRIMARY_COLOR = { r: 0, g: 122, b: 135, a: 1 }; // input choices & options export const D3_FORMAT_OPTIONS = [ - ['SMART_NUMBER', 'Adaptative formating'], + ['SMART_NUMBER', 'Adaptive formatting'], ['~g', 'Original value'], [',d', ',d (12345.432 => 12,345)'], ['.1s', '.1s (12345.432 => 10k)'], @@ -98,7 +98,7 @@ export const D3_FORMAT_DOCS = 'D3 format syntax: https://github.com/d3/d3-format'; export const D3_TIME_FORMAT_OPTIONS = [ - ['smart_date', 'Adaptative formating'], + ['smart_date', 'Adaptive formatting'], ['%d/%m/%Y', '%d/%m/%Y | 14/01/2019'], ['%m/%d/%Y', '%m/%d/%Y | 01/14/2019'], ['%Y-%m-%d', '%Y-%m-%d | 2019-01-14'],