🔖chore(ui): Improve Loading prompt

This commit is contained in:
Apple\Apple
2025-06-08 00:33:26 +08:00
parent 5018945c71
commit cb83a06103

View File

@@ -14,7 +14,7 @@ const Loading = ({ prompt: name = '', size = 'large' }) => {
tip={null}
/>
<span className="whitespace-nowrap mt-2 text-center" style={{ color: 'var(--semi-color-primary)' }}>
{name ? t('加载{{name}}中...', { name }) : t('加载中...')}
{name ? t('{{name}}', { name }) : t('加载中...')}
</span>
</div>
</div>