This is an automated email from the ASF dual-hosted git repository. jli pushed a commit to branch 6.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit e84bdfaa6d51720f22e723d729268cb5b8fa1fdc Author: Mehmet Salih Yavuz <salih.ya...@proton.me> AuthorDate: Tue Sep 2 21:34:54 2025 +0300 fix(ChartCreation): Translate chart description (#34918) (cherry picked from commit 5dba59b6a42cff0110a4613fcd0d45a36923e199) --- .../explore/components/controls/VizTypeControl/VizTypeGallery.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx b/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx index e5f93dc33c..e9a189539b 100644 --- a/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx +++ b/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx @@ -428,7 +428,7 @@ const Selector: FC<{ role="tab" > {icon} - {selector} + {t(selector)} </SelectorLabel> ); }; @@ -814,8 +814,9 @@ export default function VizTypeGallery(props: VizTypeGalleryProps) { ))} </TagsWrapper> <Description> - {selectedVizMetadata?.description || - t('No description available.')} + {t( + selectedVizMetadata?.description || 'No description available.', + )} </Description> <SectionTitle css={css`