chore(mobile): translate missing strings (#22057)

This commit is contained in:
bo0tzz 2025-09-16 15:51:03 +02:00 committed by GitHub
parent df7ea4d8ea
commit 4d00261bc1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 87 additions and 43 deletions

View file

@ -29,7 +29,7 @@ class CastDialog extends ConsumerWidget {
future: ref.read(castProvider.notifier).getDevices(),
builder: (context, snapshot) {
if (snapshot.hasError) {
return Text('Error: ${snapshot.error.toString()}');
return Text('error_saving_image'.tr(args: [snapshot.error.toString()]));
} else if (!snapshot.hasData) {
return const SizedBox(height: 48, child: Center(child: CircularProgressIndicator()));
}