chore: Update l10n (#1039)

This commit is contained in:
GT610
2026-01-30 15:24:48 +08:00
committed by GitHub
parent 6338c6ce6b
commit 64dc00475a
2 changed files with 2 additions and 2 deletions

View File

@@ -404,7 +404,7 @@ abstract class AppLocalizations {
/// No description provided for @compactDatabaseContent. /// No description provided for @compactDatabaseContent.
/// ///
/// In en, this message translates to: /// In en, this message translates to:
/// **'Database size: {size}\n\nThis will rebuild the whole database to reduce file size.'** /// **'Database size: {size}\n\nThis will reorganize the database to reduce file size. No data will be deleted.'**
String compactDatabaseContent(Object size); String compactDatabaseContent(Object size);
/// No description provided for @confirm. /// No description provided for @confirm.

View File

@@ -166,7 +166,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override @override
String compactDatabaseContent(Object size) { String compactDatabaseContent(Object size) {
return 'Database size: $size\n\nThis will rebuild the whole database to reduce file size.'; return 'Database size: $size\n\nThis will reorganize the database to reduce file size. No data will be deleted.';
} }
@override @override