diff --git a/superset-frontend/src/dashboard/components/SliceHeaderControls.jsx b/superset-frontend/src/dashboard/components/SliceHeaderControls.jsx index 673f2baf6e956..58351990a693d 100644 --- a/superset-frontend/src/dashboard/components/SliceHeaderControls.jsx +++ b/superset-frontend/src/dashboard/components/SliceHeaderControls.jsx @@ -176,7 +176,7 @@ class SliceHeaderControls extends React.PureComponent { const refreshTooltip = isCached ? t('Cached %s', cachedWhen) : (updatedWhen && t('Fetched %s', updatedWhen)) || ''; - const resizeLabel = isFullSize ? t('Minimize') : t('Maximize'); + const resizeLabel = isFullSize ? t('Minimize Chart') : t('Maximize Chart'); const menu = ( - {t('Explore chart')} + {t('View Chart in Explore')} )} - {this.props.supersetCanCSV && ( - {t('Export CSV')} - )} - - {resizeLabel} - + {resizeLabel} + {t('Download as image')} + + {this.props.supersetCanCSV && ( + {t('Export CSV')} + )} );