From 44f22dcf52a04889e89b6ce09afaca0352d162af Mon Sep 17 00:00:00 2001 From: wangjia <809946525@qq.com> Date: Sun, 12 Jul 2026 18:05:24 +0800 Subject: [PATCH] =?UTF-8?q?fix(client/notif):=20=E9=80=9A=E7=9F=A5?= =?UTF-8?q?=E5=8D=A0=E4=BD=8D=E7=A4=BA=E4=BE=8B=E6=96=87=E6=A1=88=E6=94=B9?= =?UTF-8?q?=E8=8B=B1=E6=96=87(=E9=BB=98=E8=AE=A4=E8=AF=AD=E8=A8=80?= =?UTF-8?q?=E4=B8=80=E8=87=B4,=E9=81=BF=E5=85=8D=E8=8B=B1=E6=96=87=20app?= =?UTF-8?q?=20=E6=98=BE=E4=B8=AD=E6=96=87)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 (1M context) --- client/lib/screens/notifications_page.dart | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/client/lib/screens/notifications_page.dart b/client/lib/screens/notifications_page.dart index 7b3e07b..b6f3941 100644 --- a/client/lib/screens/notifications_page.dart +++ b/client/lib/screens/notifications_page.dart @@ -35,24 +35,24 @@ class NotificationsScreen extends ConsumerWidget { icon: PangolinIcons.bell, status: PangolinStatus.neutral, typeLabel: t.notifTypeNews, - title: '产品动态标题占位', - sub: '2 天前', + title: 'Product update', // TODO(spec-3): placeholder + sub: '2 days ago', read: false, ), ( icon: PangolinIcons.zap, status: PangolinStatus.connected, typeLabel: t.notifTypeFeature, - title: '新功能上线标题占位', - sub: '5 天前', + title: 'New feature released', // TODO(spec-3): placeholder + sub: '5 days ago', read: false, ), ( icon: PangolinIcons.alertTriangle, status: PangolinStatus.error, typeLabel: t.notifTypeImportant, - title: '重要通知标题占位', - sub: '1 周前', + title: 'Important notice', // TODO(spec-3): placeholder + sub: '1 week ago', read: true, ), ];