Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ const Select = forwardRef(

const bulkSelectComponent = useMemo(
() => (
<StyledBulkActionsContainer justify="center">
<StyledBulkActionsContainer justify="center" wrap>
<Button
type="link"
buttonStyle="link"
Expand All @@ -504,7 +504,7 @@ const Select = forwardRef(
handleSelectAll();
}}
>
{`${t('Select all')} (${bulkSelectCounts.selectable})`}
{t('Select all')} {`(${bulkSelectCounts.selectable})`}
</Button>
<Button
type="link"
Expand All @@ -521,7 +521,7 @@ const Select = forwardRef(
handleDeselectAll();
}}
>
{`${t('Deselect all')} (${bulkSelectCounts.deselectable})`}
{t('Deselect all')} {`(${bulkSelectCounts.deselectable})`}
</Button>
</StyledBulkActionsContainer>
),
Expand Down
3 changes: 3 additions & 0 deletions superset/translations/ru/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -10238,6 +10238,9 @@ msgstr "Выберите тип визуализации"
msgid "Select aggregate options"
msgstr "Выберите настройки агрегации"

msgid "Select all"
msgstr "Выбрать все"

msgid "Select all data"
msgstr "Выбрать все данные"

Expand Down
Loading