align(文案尾批): 用户删除确认半角引号无后缀、品牌数据库删除确认对齐原文(对齐 admin.js:970/3775)

This commit is contained in:
2026-09-05 23:36:56 +08:00
parent a2bfb08122
commit 596933eea2
5 changed files with 21 additions and 6 deletions
@@ -38,10 +38,10 @@ export function recordSourceLabel(source: string | null | undefined): string {
return (source || '').trim().toUpperCase() === 'MANUAL' ? '手动新增' : '自动导入'
}
/** 删除二次确认文案。 */
/** 删除二次确认文案(对齐 admin.js:3775 原文)。 */
export function invalidAsinDeleteText(item: Pick<InvalidAsinItem, 'dataValue'> | null | undefined): string {
const value = item?.dataValue || '该 ASIN'
return `确定删除不符合 ASIN${value}”吗?删除后不可恢复。`
return `确定删除“${value}”吗?`
}
/**