diff --git a/example/src/__dev__/test_report.tsx b/example/src/__dev__/test_report.tsx index 9a5bc6a..6550674 100644 --- a/example/src/__dev__/test_report.tsx +++ b/example/src/__dev__/test_report.tsx @@ -15,7 +15,7 @@ import { const data = [ { id: seqId('_rp').toString(), - title: 'Unwelcome commercial content or spam', + title: 'Unwelcome commercial content', checked: true, }, { diff --git a/example/src/screens/ReportScreen.tsx b/example/src/screens/ReportScreen.tsx index 435d11d..b11a906 100644 --- a/example/src/screens/ReportScreen.tsx +++ b/example/src/screens/ReportScreen.tsx @@ -83,7 +83,7 @@ export function ReportScreen(props: Props) { const data = [ { id: seqId('_rp').toString(), - title: 'Unwelcome commercial content or spam', + title: 'Unwelcome commercial content', checked: false, }, { diff --git a/src/biz/MessageList/MessageList.tsx b/src/biz/MessageList/MessageList.tsx index b74e406..5888127 100644 --- a/src/biz/MessageList/MessageList.tsx +++ b/src/biz/MessageList/MessageList.tsx @@ -321,7 +321,7 @@ function useGetReportDefaultData(_tr: (key: string, ...args: any[]) => string) { return [ { id: seqId('_rp').toString(), - title: 'Unwelcome commercial content or spam', + title: 'Unwelcome commercial content', checked: false, }, { diff --git a/src/i18n/StringSet.cn.tsx b/src/i18n/StringSet.cn.tsx index f56c3ad..1c9bf78 100644 --- a/src/i18n/StringSet.cn.tsx +++ b/src/i18n/StringSet.cn.tsx @@ -50,7 +50,7 @@ export function createStringSetCn(): StringSet { 'report_button_click_menu_button_cancel': '取消', 'report_button_click_menu_button_report': '举报', - 'Unwelcome commercial content or spam': '不受欢迎的商业内容或垃圾内容', + 'Unwelcome commercial content': '不受欢迎的商业内容', 'Pornographic or explicit content': '色情或露骨内容', 'Child abuse': '虐待儿童', 'Hate speech or graphic violence': '仇恨言论或过于写实的暴力内容', diff --git a/src/i18n/StringSet.en.tsx b/src/i18n/StringSet.en.tsx index 062f2d6..5a7b128 100644 --- a/src/i18n/StringSet.en.tsx +++ b/src/i18n/StringSet.en.tsx @@ -52,8 +52,7 @@ export function createStringSetEn(): StringSet { 'report_button_click_menu_button_cancel': 'Cancel', 'report_button_click_menu_button_report': 'Report', - 'Unwelcome commercial content or spam': - 'Unwelcome commercial content or spam', + 'Unwelcome commercial content': 'Unwelcome commercial content', 'Pornographic or explicit content': 'Pornographic or explicit content', 'Child abuse': 'Child abuse', 'Hate speech or graphic violence': 'Hate speech or graphic violence',