#
luxiaotao1123
2024-09-19 c807939eff3a8492bae9e38aa77a9b5ac3a429a9
#
3个文件已修改
9 ■■■■■ 已修改文件
zy-acs-flow/src/i18n/en.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-acs-flow/src/i18n/zh.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-acs-flow/src/page/components/ImportModal.jsx 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-acs-flow/src/i18n/en.js
@@ -55,6 +55,7 @@
                tips: 'The import is running, please do not close this tab.',
                err: 'Failed to import this file, please make sure your provided a valid CSV file.',
                download: 'Download Import Template',
                result: 'Contacts import complete. Imported %{success} contacts, with %{error} errors',
            }
        },
    },
zy-acs-flow/src/i18n/zh.js
@@ -55,6 +55,7 @@
                tips: '正在导入中,请不要关闭此窗口',
                err: '无法导入此文件,请确保您提供了有效的 CSV 文件',
                download: '下载导入模板',
                result: '导入完成。已导入 %{success} 成功, 和 %{error} 失败',
            }
        },
    },
zy-acs-flow/src/page/components/ImportModal.jsx
@@ -132,9 +132,10 @@
                        {importer.state === 'complete' && (
                            <Alert severity="success">
                                Contacts import complete. Imported{' '}
                                {importer.importCount} contacts, with{' '}
                                {importer.errorCount} errors
                                  {translate('common.action.import.result', {
                                    success: importer.importCount,
                                    error: importer.errorCount
                                  })}
                            </Alert>
                        )}