Мелкие правки по переводу

This commit is contained in:
Andrew 2023-05-18 12:20:23 +07:00
parent 159a88f006
commit 30f15dc40c
2 changed files with 3 additions and 3 deletions

View file

@ -149,7 +149,7 @@ class AssetsPagePanelController extends GetxController {
}, },
); );
}, },
child: const Text("Перенеите файл сюда") child: const Text("Перенесите файл сюда")
.paddingAll(8) .paddingAll(8)
.fittedBox() .fittedBox()
.constrained(height: 200, width: 200), .constrained(height: 200, width: 200),
@ -253,7 +253,7 @@ class AssetsPagePanelController extends GetxController {
() => Wrap( () => Wrap(
children: tags children: tags
.where((p0) => p0.isNotEmpty) .where((p0) => p0.isNotEmpty)
.map((tag) => Chip(label: Text(tag))) .map((tag) => Chip(label: Text(tag)).paddingAll(2))
.toList(growable: false), .toList(growable: false),
).paddingAll(8).card(color: Colors.blueGrey.shade200).expanded(), ).paddingAll(8).card(color: Colors.blueGrey.shade200).expanded(),
), ),

View file

@ -580,7 +580,7 @@ class UserListPanelController extends GetxController {
Future<void> deleteUser(UserDefinition user) async { Future<void> deleteUser(UserDefinition user) async {
final accept = await Get.dialog<bool>( final accept = await Get.dialog<bool>(
AlertDialog( AlertDialog(
title: const Text("Delete user"), title: const Text("Удалить пользователя"),
content: const Text( content: const Text(
"Вы уверены, что хотите удалить этого пользователя?", "Вы уверены, что хотите удалить этого пользователя?",
), ),