Added Localizations and ran small fixes

This commit is contained in:
Arseni
2025-11-25 08:20:09 +03:00
parent 72d8da1fe8
commit fcb5ab4f2c
41 changed files with 444 additions and 233 deletions

View File

@@ -23,7 +23,7 @@ class UploadHistorySection extends StatelessWidget {
return const Center(child: CircularProgressIndicator());
}
if (provider.error != null) {
return Text("Error: ${provider.error}");
return Text(l10.notificationError(provider.error ?? l10.noErrorInformation));
}
final items = provider.data ?? [];