mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-27 11:16:45 +00:00
fix
This commit is contained in:
parent
804147b8d6
commit
275ba21a47
|
@ -58,7 +58,9 @@
|
||||||
"card_title": "Server",
|
"card_title": "Server",
|
||||||
"status": "Status — Good",
|
"status": "Status — Good",
|
||||||
"bottom_sheet": {
|
"bottom_sheet": {
|
||||||
"1": "It's a virtual computer, where all your services live."
|
"1": "It's a virtual computer, where all your services live.",
|
||||||
|
"2": "General information",
|
||||||
|
"3": "Location"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"domain": {
|
"domain": {
|
||||||
|
|
|
@ -58,7 +58,9 @@
|
||||||
"card_title": "Сервер",
|
"card_title": "Сервер",
|
||||||
"status": "Статус — в норме",
|
"status": "Статус — в норме",
|
||||||
"bottom_sheet": {
|
"bottom_sheet": {
|
||||||
"1": "Это виртульный компьютер на котором работают все ваши сервисы."
|
"1": "Это виртульный компьютер на котором работают все ваши сервисы.",
|
||||||
|
"2": "General information",
|
||||||
|
"3": "Location"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"domain": {
|
"domain": {
|
||||||
|
|
|
@ -11,7 +11,6 @@ import 'package:selfprivacy/ui/components/brand_text/brand_text.dart';
|
||||||
import 'package:selfprivacy/ui/components/icon_status_mask/icon_status_mask.dart';
|
import 'package:selfprivacy/ui/components/icon_status_mask/icon_status_mask.dart';
|
||||||
import 'package:selfprivacy/ui/components/not_ready_card/not_ready_card.dart';
|
import 'package:selfprivacy/ui/components/not_ready_card/not_ready_card.dart';
|
||||||
import 'package:selfprivacy/ui/components/one_page/one_page.dart';
|
import 'package:selfprivacy/ui/components/one_page/one_page.dart';
|
||||||
import 'package:selfprivacy/ui/pages/providers/settings/settings.dart';
|
|
||||||
import 'package:selfprivacy/ui/pages/server_details/server_details.dart';
|
import 'package:selfprivacy/ui/pages/server_details/server_details.dart';
|
||||||
import 'package:selfprivacy/utils/route_transitions/basic.dart';
|
import 'package:selfprivacy/utils/route_transitions/basic.dart';
|
||||||
import 'package:easy_localization/easy_localization.dart';
|
import 'package:easy_localization/easy_localization.dart';
|
||||||
|
@ -195,7 +194,7 @@ class _ProviderDetails extends StatelessWidget {
|
||||||
BrandText.body1(
|
BrandText.body1(
|
||||||
'providers.backup.bottom_sheet.2'.tr(args: [domainName, 'Time'])),
|
'providers.backup.bottom_sheet.2'.tr(args: [domainName, 'Time'])),
|
||||||
SizedBox(height: 10),
|
SizedBox(height: 10),
|
||||||
BrandText.body1('providers.backup.bottom_sheet.3'.tr()),
|
BrandText.body1('providers.backup.status'.tr()),
|
||||||
];
|
];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -121,7 +121,7 @@ class _ServerDetailsState extends State<ServerDetails>
|
||||||
SizedBox(height: 10),
|
SizedBox(height: 10),
|
||||||
BrandText.body1('providers.server.bottom_sheet.1'.tr()),
|
BrandText.body1('providers.server.bottom_sheet.1'.tr()),
|
||||||
SizedBox(height: 30),
|
SizedBox(height: 30),
|
||||||
Center(child: BrandText.h2('General information')),
|
Center(child: BrandText.h2('providers.server.2'.tr())),
|
||||||
SizedBox(height: 10),
|
SizedBox(height: 10),
|
||||||
Table(
|
Table(
|
||||||
columnWidths: {
|
columnWidths: {
|
||||||
|
@ -195,7 +195,7 @@ class _ServerDetailsState extends State<ServerDetails>
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
SizedBox(height: 30),
|
SizedBox(height: 30),
|
||||||
Center(child: BrandText.h2('Location')),
|
Center(child: BrandText.h2('providers.server.3'.tr())),
|
||||||
SizedBox(height: 10),
|
SizedBox(height: 10),
|
||||||
Table(
|
Table(
|
||||||
columnWidths: {
|
columnWidths: {
|
||||||
|
@ -227,9 +227,6 @@ class _ServerDetailsState extends State<ServerDetails>
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
// BrandText.body1('providers.server.bottom_sheet.2'.tr()),
|
|
||||||
// SizedBox(height: 10),
|
|
||||||
// BrandText.body1('providers.server.bottom_sheet.3'.tr()),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -8,12 +8,10 @@ import 'package:selfprivacy/ui/components/brand_button/brand_button.dart';
|
||||||
import 'package:selfprivacy/ui/components/brand_card/brand_card.dart';
|
import 'package:selfprivacy/ui/components/brand_card/brand_card.dart';
|
||||||
import 'package:selfprivacy/ui/components/brand_header/brand_header.dart';
|
import 'package:selfprivacy/ui/components/brand_header/brand_header.dart';
|
||||||
import 'package:selfprivacy/ui/components/brand_icons/brand_icons.dart';
|
import 'package:selfprivacy/ui/components/brand_icons/brand_icons.dart';
|
||||||
import 'package:selfprivacy/ui/components/brand_modal_sheet/brand_modal_sheet.dart';
|
|
||||||
import 'package:selfprivacy/ui/components/brand_text/brand_text.dart';
|
import 'package:selfprivacy/ui/components/brand_text/brand_text.dart';
|
||||||
import 'package:selfprivacy/ui/components/icon_status_mask/icon_status_mask.dart';
|
import 'package:selfprivacy/ui/components/icon_status_mask/icon_status_mask.dart';
|
||||||
import 'package:selfprivacy/ui/components/not_ready_card/not_ready_card.dart';
|
import 'package:selfprivacy/ui/components/not_ready_card/not_ready_card.dart';
|
||||||
import 'package:easy_localization/easy_localization.dart';
|
import 'package:easy_localization/easy_localization.dart';
|
||||||
import 'package:selfprivacy/utils/route_transitions/basic.dart';
|
|
||||||
import 'package:selfprivacy/utils/ui_helpers.dart';
|
import 'package:selfprivacy/utils/ui_helpers.dart';
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue