Skip to content

Commit 3fc75c9

Browse files
committed
feat(debug_options): Log查看界面
1 parent 84b7271 commit 3fc75c9

17 files changed

Lines changed: 1605 additions & 151 deletions

lib/l10n/app_en.arb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,5 +390,8 @@
390390
"licensesLicenseCopied": "License text copied to clipboard",
391391

392392
"markdownCopyCode": "Copy code",
393-
"markdownCodeCopied": "Code copied to clipboard"
393+
"markdownCodeCopied": "Code copied to clipboard",
394+
395+
"debugLogs": "Debug Logs",
396+
"debugLogsDescription": "View application logs"
394397
}

lib/l10n/app_localizations.dart

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2071,6 +2071,18 @@ abstract class AppLocalizations {
20712071
/// In en, this message translates to:
20722072
/// **'Code copied to clipboard'**
20732073
String get markdownCodeCopied;
2074+
2075+
/// No description provided for @debugLogs.
2076+
///
2077+
/// In en, this message translates to:
2078+
/// **'Debug Logs'**
2079+
String get debugLogs;
2080+
2081+
/// No description provided for @debugLogsDescription.
2082+
///
2083+
/// In en, this message translates to:
2084+
/// **'View application logs'**
2085+
String get debugLogsDescription;
20742086
}
20752087

20762088
class _AppLocalizationsDelegate

lib/l10n/app_localizations_en.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,4 +1042,10 @@ class AppLocalizationsEn extends AppLocalizations {
10421042

10431043
@override
10441044
String get markdownCodeCopied => 'Code copied to clipboard';
1045+
1046+
@override
1047+
String get debugLogs => 'Debug Logs';
1048+
1049+
@override
1050+
String get debugLogsDescription => 'View application logs';
10451051
}

lib/l10n/app_localizations_zh.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,4 +1009,10 @@ class AppLocalizationsZh extends AppLocalizations {
10091009

10101010
@override
10111011
String get markdownCodeCopied => '代码已复制到剪贴板';
1012+
1013+
@override
1014+
String get debugLogs => '调试日志';
1015+
1016+
@override
1017+
String get debugLogsDescription => '查看应用运行日志';
10121018
}

lib/l10n/app_zh.arb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,5 +366,8 @@
366366

367367

368368
"markdownCopyCode": "复制代码",
369-
"markdownCodeCopied": "代码已复制到剪贴板"
369+
"markdownCodeCopied": "代码已复制到剪贴板",
370+
371+
"debugLogs": "调试日志",
372+
"debugLogsDescription": "查看应用运行日志"
370373
}

0 commit comments

Comments
 (0)