| | |
| | | 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', |
| | | } |
| | | }, |
| | | }, |
| | |
| | | tips: '正在导入中,请不要关闭此窗口', |
| | | err: '无法导入此文件,请确保您提供了有效的 CSV 文件', |
| | | download: '下载导入模板', |
| | | result: '导入完成。已导入 %{success} 成功, 和 %{error} 失败', |
| | | } |
| | | }, |
| | | }, |
| | |
| | | |
| | | {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> |
| | | )} |
| | | |