From 1eccf30c10e226b8aab7eabe4b9e26113089109f Mon Sep 17 00:00:00 2001 From: Andrew nuark G Date: Wed, 17 May 2023 20:47:07 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B2=D1=91=D0=BB=20?= =?UTF-8?q?=D0=BD=D0=B0=D1=81=D1=82=D1=80=D0=BE=D0=B9=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/home_panels/settings_panel.dart | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/pages/home_panels/settings_panel.dart b/lib/pages/home_panels/settings_panel.dart index 2f2265a..d1cbc65 100644 --- a/lib/pages/home_panels/settings_panel.dart +++ b/lib/pages/home_panels/settings_panel.dart @@ -25,7 +25,7 @@ class _SettingsPanelState extends State { mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: [ - const Text("Current user access token:") + const Text("Ключ доступа пользователя:") .textStyle(Get.textTheme.bodySmall!), [ Text(ApiController.to.token) @@ -37,8 +37,8 @@ class _SettingsPanelState extends State { ClipboardData(text: ApiController.to.token), ); Get.snackbar( - "Copied", - "Token copied to clipboard", + "Скопировано", + "Ключ скопирован в буфер обмена", snackPosition: SnackPosition.BOTTOM, ); }, @@ -50,21 +50,21 @@ class _SettingsPanelState extends State { TextFormField( enabled: false, decoration: const InputDecoration( - labelText: 'Endpoint', - hintText: 'Enter Tuuli Endpoint', + labelText: 'Адрес бэкенда', + hintText: 'Введите адрес бэкенда', ), initialValue: ApiController.to.endPoint, ).expanded(), ElevatedButton( onPressed: () => Get.find().logout(), - child: const Text("Logout to change"), + child: const Text("Выйти и изменить"), ) ].toRow(), const SizedBox(height: 16), [ ElevatedButton( onPressed: () => Get.bottomSheet(const LogPrintPanel()), - child: const Text("Show app logs"), + child: const Text("Показать лог приложения"), ).expanded(), ].toRow(), ],