TF-3719 Add handle export log to device if need

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-05-16 20:16:11 +07:00
committed by Dat H. Pham
parent a891e07887
commit 0ca3ca170d
20 changed files with 541 additions and 6 deletions
@@ -4702,4 +4702,47 @@ class AppLocalizations {
args: [description],
);
}
String get exportTraceLog {
return Intl.message(
'Export trace log',
name: 'exportTraceLog',
);
}
String get messageExportTraceLogDialog {
return Intl.message(
'The mobile API error message log has been tracked. Do you want to export it?',
name: 'messageExportTraceLogDialog',
);
}
String get youNeedToGrantFilesPermissionToExportFile {
return Intl.message(
'You need to grant files permission to export files',
name: 'youNeedToGrantFilesPermissionToExportFile',
);
}
String exportTraceLogSuccess(String path) {
return Intl.message(
'Export successful tracking logs at "$path"',
name: 'exportTraceLogSuccess',
args: [path],
);
}
String get noLogsHaveBeenRecordedYet {
return Intl.message(
'No logs have been recorded yet.',
name: 'noLogsHaveBeenRecordedYet',
);
}
String get exportTraceLogFailed {
return Intl.message(
'Export trace log failed',
name: 'exportTraceLogFailed',
);
}
}