Skip to content

Commit fc08994

Browse files
committed
feat: 展开 & 折叠
1 parent 77a138f commit fc08994

File tree

6 files changed

+404
-110
lines changed

6 files changed

+404
-110
lines changed

lib/l10n/app_en.arb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,9 @@
243243
"chatInputPlaceholder": "Type a message...",
244244
"chatInputFeatureArea": "Feature Area",
245245

246+
"chatListExpand": "Expand",
247+
"chatListCollapse": "Collapse",
248+
246249
"networkStatusTitle": "Network Status",
247250
"networkStatusConnected": "Connected to Internet",
248251
"networkStatusConnectedDesc": "You are connected to the internet and can connect to TouchFish servers on the public network",

lib/l10n/app_localizations.dart

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1298,6 +1298,18 @@ abstract class AppLocalizations {
12981298
/// **'Feature Area'**
12991299
String get chatInputFeatureArea;
13001300

1301+
/// No description provided for @chatListExpand.
1302+
///
1303+
/// In en, this message translates to:
1304+
/// **'Expand'**
1305+
String get chatListExpand;
1306+
1307+
/// No description provided for @chatListCollapse.
1308+
///
1309+
/// In en, this message translates to:
1310+
/// **'Collapse'**
1311+
String get chatListCollapse;
1312+
13011313
/// No description provided for @networkStatusTitle.
13021314
///
13031315
/// In en, this message translates to:

lib/l10n/app_localizations_en.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -637,6 +637,12 @@ class AppLocalizationsEn extends AppLocalizations {
637637
@override
638638
String get chatInputFeatureArea => 'Feature Area';
639639

640+
@override
641+
String get chatListExpand => 'Expand';
642+
643+
@override
644+
String get chatListCollapse => 'Collapse';
645+
640646
@override
641647
String get networkStatusTitle => 'Network Status';
642648

lib/l10n/app_localizations_zh.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -611,6 +611,12 @@ class AppLocalizationsZh extends AppLocalizations {
611611
@override
612612
String get chatInputFeatureArea => '功能区域';
613613

614+
@override
615+
String get chatListExpand => '展开';
616+
617+
@override
618+
String get chatListCollapse => '折叠';
619+
614620
@override
615621
String get networkStatusTitle => '网络状态';
616622

lib/l10n/app_zh.arb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,9 @@
229229
"chatInputPlaceholder": "输入消息...",
230230
"chatInputFeatureArea": "功能区域",
231231

232+
"chatListExpand": "展开",
233+
"chatListCollapse": "折叠",
234+
232235
"networkStatusTitle": "网络状态",
233236
"networkStatusConnected": "已连接到互联网",
234237
"networkStatusConnectedDesc": "您已连接到互联网,可以连接公共网络上的 TouchFish 服务器",

0 commit comments

Comments
 (0)