This is an automated email from the ASF dual-hosted git repository.
sfirke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 2392c8e624a fix(Select): fix Russian translations for Select (#35751)
2392c8e624a is described below
commit 2392c8e624a99cebee4999d003ad0a5283715143
Author: innovark <[email protected]>
AuthorDate: Tue May 12 20:48:42 2026 +0300
fix(Select): fix Russian translations for Select (#35751)
Co-authored-by: Evan Rusackas <[email protected]>
Co-authored-by: Sam Firke <[email protected]>
---
.../packages/superset-ui-core/src/components/Select/Select.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/superset-frontend/packages/superset-ui-core/src/components/Select/Select.tsx
b/superset-frontend/packages/superset-ui-core/src/components/Select/Select.tsx
index ead92724684..bab0e9a7394 100644
---
a/superset-frontend/packages/superset-ui-core/src/components/Select/Select.tsx
+++
b/superset-frontend/packages/superset-ui-core/src/components/Select/Select.tsx
@@ -507,7 +507,7 @@ const Select = forwardRef(
const bulkSelectComponent = useMemo(
() => (
- <StyledBulkActionsContainer justify="space-between">
+ <StyledBulkActionsContainer justify="center" gap="small" wrap>
<Button
type="link"
buttonStyle="link"
@@ -519,7 +519,7 @@ const Select = forwardRef(
handleSelectAll();
}}
>
- {`${t('Select all')} (${formatNumber('SMART_NUMBER',
bulkSelectCounts.selectable)})`}
+ {t('Select all')} {`(${formatNumber('SMART_NUMBER',
bulkSelectCounts.selectable)})`}
</Button>
<Button
type="link"
@@ -536,7 +536,7 @@ const Select = forwardRef(
handleDeselectAll();
}}
>
- {`${t('Clear')} (${formatNumber('SMART_NUMBER',
bulkSelectCounts.deselectable)})`}
+ {t('Clear')} {`(${formatNumber('SMART_NUMBER',
bulkSelectCounts.deselectable)})`}
</Button>
</StyledBulkActionsContainer>
),