bugfix: 限制10条下载&错误信息i18n

This commit is contained in:
2026-04-15 10:20:13 +08:00
parent 309cf49a54
commit 8c0fe1daf6
3 changed files with 17 additions and 11 deletions

View File

@@ -269,9 +269,12 @@ export default {
total: 'Total Applications Submitted',
downloadExcel: 'Download Full Information Table (Excel)',
range: 'Set the download range',
startIndex:'start ID',
endIndex:'end ID',
startIndex: 'start ID',
endIndex: 'end ID',
download: 'Download',
limit:'Maximum 10 entries can be downloaded at once'
limit: 'Maximum 10 entries can be downloaded at once',
minIndex: 'Minimum ID is 10000',
maxIndex: 'Maximum ID is {maxIndex}',
indexError: 'End ID must be greater than or equal to Start ID'
}
}

View File

@@ -261,6 +261,9 @@ export default {
startIndex: '起始序号',
endIndex: '结束序号',
download: '下载',
limit:'一次最多下载10条数据'
limit:'一次最多下载10条数据',
minIndex: '最小序号为10000',
maxIndex: '最大序号为 {maxIndex}',
indexError: '结束序号必须大于或等于起始序号'
}
}