Skip to content

Commit b4bfdff

Browse files
committed
fix: text
1 parent fc845d0 commit b4bfdff

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
- 修正系統主題色變更問題。
125125
- 修正地震速報倒數顯示異常。
126126
- 修正歷史事件異常。
127-
- 修正重新載入獲取最新資料
127+
- 修正重新載入取得最新資料
128128

129129
## [3.0.2] - 2025-08-13
130130

@@ -294,7 +294,7 @@
294294

295295
### 修正
296296

297-
- 修正使用較大顯示器設備時無法接受監控條款的問題
297+
- 修正使用較大顯示器裝置時無法接受監控條款的問題
298298
- 分開消耗性和非消耗性贊助項目。
299299
- 移除贊助價格中多餘的貨幣符號。
300300
- (iOS) 修正裝置資訊值溢出的問題。

lib/app/home/_widgets/wind_card.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ class _WindCardState extends State<WindCard>
529529
),
530530
child: Text(
531531
hasDanger
532-
? '附近有強磁場干擾,指北針方向可能完全不準確。請遠離磁鐵、電子設備或金屬物品。'.i18n
532+
? '附近有強磁場干擾,指北針方向可能完全不準確。請遠離磁鐵、電子裝置或金屬物品。'.i18n
533533
: '附近可能有磁場干擾,指北針方向可能有偏差。'.i18n,
534534
style: context.texts.bodySmall,
535535
),

lib/app/settings/map/page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ class SettingsMapPage extends StatelessWidget {
421421
),
422422
Expanded(
423423
child: Text(
424-
'過高的動畫幀率可能會造成卡頓或設備發熱'.i18n,
424+
'過高的動畫幀率可能會造成卡頓或裝置發熱'.i18n,
425425
style: context.texts.bodySmall?.copyWith(
426426
color: context.theme.extendedColors.amber,
427427
),

lib/app/settings/page.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ class SettingsIndexPage extends StatelessWidget {
135135
Symbols.grid_view_rounded,
136136
color: Colors.lightBlueAccent,
137137
),
138-
title: Text('佈局'.i18n),
139-
subtitle: Text('調整 DPIP 的佈局樣式'.i18n),
138+
title: Text('版面'.i18n),
139+
subtitle: Text('調整 DPIP 的版面樣式'.i18n),
140140
trailing: const Icon(Symbols.chevron_right_rounded),
141141
onTap: () => SettingsLayoutRoute().push(context),
142142
),
@@ -258,7 +258,7 @@ class SettingsIndexPage extends StatelessWidget {
258258
color: Colors.brown,
259259
),
260260
title: Text('第三方套件授權'.i18n),
261-
subtitle: Text('DPIP 的實現歸功於開放源始碼'.i18n),
261+
subtitle: Text('DPIP 的實現歸功於開放原始碼'.i18n),
262262
trailing: const Icon(Symbols.chevron_right_rounded),
263263
onTap: () => LicenseRoute().push(context),
264264
),

lib/app/welcome/4-permissions/page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ class _WelcomePermissionPageState extends State<WelcomePermissionPage>
485485
// child: const Icon(Icons.start, color: Colors.orange),
486486
// ),
487487
// title: const Text('自動化啟動'),
488-
// subtitle: const Text('允許 DPIP 在設備重新啟動或關閉後自動啟動,以持續提供防災通知服務。'),
488+
// subtitle: const Text('允許 DPIP 在裝置重新啟動或關閉後自動啟動,以持續提供防災通知服務。'),
489489
// trailing: FutureBuilder<bool>(
490490
// future: _autoStartPermission,
491491
// builder: (context, snapshot) {

lib/route/announcement/announcement.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class _AnnouncementPageState extends State<AnnouncementPage> {
6969
});
7070
} catch (e) {
7171
setState(() {
72-
errorMessage = '獲取公告時發生錯誤: $e'.i18n;
72+
errorMessage = '取得公告時發生錯誤: $e'.i18n;
7373
isLoading = false;
7474
});
7575
}

lib/route/notification/notification.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class _NotificationHistoryPageState extends State<NotificationHistoryPage> {
2828
final records = await ExpTech().getNotificationHistory();
2929
notificationRecords = records.reversed.toList();
3030
} catch (e) {
31-
errorMessage = '獲取通知紀錄時發生錯誤 $e';
31+
errorMessage = '取得通知紀錄時發生錯誤 $e';
3232
} finally {
3333
isLoading = false;
3434
setState(() {});

lib/router.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class SettingsShellRoute extends ShellRouteData {
200200
'/settings/location/select' => '新增地點'.i18n,
201201
final p when p?.startsWith('/settings/location/select/') == true =>
202202
'新增地點'.i18n,
203-
'/settings/layout' => '佈局'.i18n,
203+
'/settings/layout' => '版面'.i18n,
204204
'/settings/theme' => '主題'.i18n,
205205
'/settings/theme/select' => '主題'.i18n,
206206
'/settings/locale' => '語言'.i18n,

0 commit comments

Comments
 (0)