new: docs website (#1033)

* new: docs website
Fixes #1032

* opt.

* opt.

* opt.

* fix
This commit is contained in:
lollipopkit🏳️‍⚧️
2026-01-29 14:24:08 +08:00
committed by GitHub
parent a0a62acdbc
commit 71e757fe13
52 changed files with 5545 additions and 2 deletions

View File

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

View File

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