fdroid
Kherel 2021-03-26 14:53:21 +01:00
parent 804147b8d6
commit 275ba21a47
5 changed files with 9 additions and 11 deletions

View File

@ -58,7 +58,9 @@
"card_title": "Server",
"status": "Status — Good",
"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": {

View File

@ -58,7 +58,9 @@
"card_title": "Сервер",
"status": "Статус — в норме",
"bottom_sheet": {
"1": "Это виртульный компьютер на котором работают все ваши сервисы."
"1": "Это виртульный компьютер на котором работают все ваши сервисы.",
"2": "General information",
"3": "Location"
}
},
"domain": {

View File

@ -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/not_ready_card/not_ready_card.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/utils/route_transitions/basic.dart';
import 'package:easy_localization/easy_localization.dart';
@ -195,7 +194,7 @@ class _ProviderDetails extends StatelessWidget {
BrandText.body1(
'providers.backup.bottom_sheet.2'.tr(args: [domainName, 'Time'])),
SizedBox(height: 10),
BrandText.body1('providers.backup.bottom_sheet.3'.tr()),
BrandText.body1('providers.backup.status'.tr()),
];
break;
}

View File

@ -121,7 +121,7 @@ class _ServerDetailsState extends State<ServerDetails>
SizedBox(height: 10),
BrandText.body1('providers.server.bottom_sheet.1'.tr()),
SizedBox(height: 30),
Center(child: BrandText.h2('General information')),
Center(child: BrandText.h2('providers.server.2'.tr())),
SizedBox(height: 10),
Table(
columnWidths: {
@ -195,7 +195,7 @@ class _ServerDetailsState extends State<ServerDetails>
],
),
SizedBox(height: 30),
Center(child: BrandText.h2('Location')),
Center(child: BrandText.h2('providers.server.3'.tr())),
SizedBox(height: 10),
Table(
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()),
],
),
),

View File

@ -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_header/brand_header.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/icon_status_mask/icon_status_mask.dart';
import 'package:selfprivacy/ui/components/not_ready_card/not_ready_card.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:url_launcher/url_launcher.dart';