fix(client/notif): 通知占位示例文案改英文(默认语言一致,避免英文 app 显中文)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
wangjia
2026-07-12 18:05:24 +08:00
parent f5669c1a67
commit 44f22dcf52
+6 -6
View File
@@ -35,24 +35,24 @@ class NotificationsScreen extends ConsumerWidget {
icon: PangolinIcons.bell, icon: PangolinIcons.bell,
status: PangolinStatus.neutral, status: PangolinStatus.neutral,
typeLabel: t.notifTypeNews, typeLabel: t.notifTypeNews,
title: '产品动态标题占位', title: 'Product update', // TODO(spec-3): placeholder
sub: '2 天前', sub: '2 days ago',
read: false, read: false,
), ),
( (
icon: PangolinIcons.zap, icon: PangolinIcons.zap,
status: PangolinStatus.connected, status: PangolinStatus.connected,
typeLabel: t.notifTypeFeature, typeLabel: t.notifTypeFeature,
title: '新功能上线标题占位', title: 'New feature released', // TODO(spec-3): placeholder
sub: '5 天前', sub: '5 days ago',
read: false, read: false,
), ),
( (
icon: PangolinIcons.alertTriangle, icon: PangolinIcons.alertTriangle,
status: PangolinStatus.error, status: PangolinStatus.error,
typeLabel: t.notifTypeImportant, typeLabel: t.notifTypeImportant,
title: '重要通知标题占位', title: 'Important notice', // TODO(spec-3): placeholder
sub: '1 周前', sub: '1 week ago',
read: true, read: true,
), ),
]; ];