mirror of
https://github.com/apache/superset.git
synced 2026-04-26 19:44:58 +00:00
chore(translations): Add missing i18n (#17525)
* Add *.ts to babel.cfg * Add missing i18n calls * Update pot file * Fix lint issues and review comment * Incorparate review feedback * Fix missing or non-extractable i18n calls * Update pot file * Fix syntax error in CommonParameters.tsx * Fix introduced issues
This commit is contained in:
@@ -88,9 +88,10 @@ function TimeoutErrorMessage({
|
||||
</>
|
||||
);
|
||||
|
||||
const copyText = `${subtitle}
|
||||
${t('This may be triggered by:')}
|
||||
${extra.issue_codes.map(issueCode => issueCode.message).join('\n')}`;
|
||||
const copyText = t('%(subtitle)s\nThis may be triggered by:\n %(issue)s', {
|
||||
subtitle,
|
||||
issue: extra.issue_codes.map(issueCode => issueCode.message).join('\n'),
|
||||
});
|
||||
|
||||
return (
|
||||
<ErrorAlert
|
||||
|
||||
Reference in New Issue
Block a user