chore: Update dependencies (#1088)

* chore: Update submodules and dependencies

Update the fl_lib and circle_chart submodules to the latest commit

Upgrade the hive_ce_generator dependency from 1.9.2 to 1.11.0

* build: Updated dependency versions

Updated fl_chart to 1.2.0, json_serializable to 6.13.0, and test to 1.29.0

Replaced flutter_secure_storage_macos with flutter_secure_storage_darwin

Removed the animations and screenshot dependencies, which are no longer in use

* chore: Update French i18n
This commit is contained in:
GT610
2026-03-25 11:49:50 +08:00
committed by GitHub
parent c4d528733d
commit fa4ac00ced
36 changed files with 336 additions and 287 deletions

View File

@@ -1685,6 +1685,12 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Delete {name}?'**
String portForward_deleteConfirmFmt(Object name);
/// No description provided for @sponsor.
///
/// In en, this message translates to:
/// **'Sponsor'**
String get sponsor;
}
class _AppLocalizationsDelegate

View File

@@ -916,4 +916,7 @@ class AppLocalizationsDe extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Sponsor';
}

View File

@@ -907,4 +907,7 @@ class AppLocalizationsEn extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Sponsor';
}

View File

@@ -918,4 +918,7 @@ class AppLocalizationsEs extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Patrocinador';
}

View File

@@ -921,4 +921,7 @@ class AppLocalizationsFr extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Soutenir';
}

View File

@@ -907,4 +907,7 @@ class AppLocalizationsId extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Sponsor';
}

View File

@@ -913,4 +913,7 @@ class AppLocalizationsIt extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Sponsor';
}

View File

@@ -877,4 +877,7 @@ class AppLocalizationsJa extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => '赞助';
}

View File

@@ -876,4 +876,7 @@ class AppLocalizationsKo extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => '후원';
}

View File

@@ -914,4 +914,7 @@ class AppLocalizationsNl extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Sponsor';
}

View File

@@ -909,4 +909,7 @@ class AppLocalizationsPt extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Patrocinador';
}

View File

@@ -913,4 +913,7 @@ class AppLocalizationsRu extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Спонсор';
}

View File

@@ -908,4 +908,7 @@ class AppLocalizationsTr extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Sponsor';
}

View File

@@ -913,4 +913,7 @@ class AppLocalizationsUk extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return 'Delete $name?';
}
@override
String get sponsor => 'Спонсор';
}

View File

@@ -855,6 +855,9 @@ class AppLocalizationsZh extends AppLocalizations {
String portForward_deleteConfirmFmt(Object name) {
return '删除 $name';
}
@override
String get sponsor => '赞助';
}
/// The translations for Chinese, as used in Taiwan (`zh_TW`).
@@ -1682,4 +1685,7 @@ class AppLocalizationsZhTw extends AppLocalizationsZh {
@override
String get podmanDockerEmulationDetected =>
'檢測到 Podman Docker 仿真。請在設定中切換到 Podman。';
@override
String get sponsor => '贊助';
}