pull/68/head
Kherel 2021-10-05 22:43:12 +02:00
parent 5c01d6a375
commit 4ae77f33c8
3 changed files with 4 additions and 9 deletions

View File

@ -90,8 +90,7 @@
"card_title": "Domain", "card_title": "Domain",
"status": "Status — Good", "status": "Status — Good",
"bottom_sheet": { "bottom_sheet": {
"1": "It's your personal internet address that will point to the server and other services of yours.", "1": "It's your personal internet address that will point to the server and other services of yours."
"2": "{}"
} }
}, },
"backup": { "backup": {

View File

@ -90,8 +90,7 @@
"card_title": "Домен", "card_title": "Домен",
"status": "Статус — в норме", "status": "Статус — в норме",
"bottom_sheet": { "bottom_sheet": {
"1": "Это ваш личный адрес в интернете, который будет указывать на сервер и другие ваши сервисы.", "1": "Это ваш личный адрес в интернете, который будет указывать на сервер и другие ваши сервисы."
"2": "{}"
} }
}, },
"backup": { "backup": {
@ -99,9 +98,7 @@
"status": "Статус — в норме", "status": "Статус — в норме",
"bottom_sheet": { "bottom_sheet": {
"1": "Выручит Вас в любой ситуации: хакерская атака, удаление сервера и.т.д.", "1": "Выручит Вас в любой ситуации: хакерская атака, удаление сервера и.т.д.",
"2": "Использовано 3Gb из бестплатых 10Gb.", "2": "Использовано 3Gb из бестплатых 10Gb. Последнее копирование была сделана вчера в {}."
"3": "Последнее копирование была сделана вчера в {}."
} }
} }
}, },

View File

@ -178,8 +178,7 @@ class _ProviderDetails extends StatelessWidget {
children = [ children = [
BrandText.body1('providers.domain.bottom_sheet.1'.tr()), BrandText.body1('providers.domain.bottom_sheet.1'.tr()),
SizedBox(height: 10), SizedBox(height: 10),
BrandText.body1( BrandText.body1(domainName),
'providers.domain.bottom_sheet.2'.tr(args: [domainName])),
SizedBox(height: 10), SizedBox(height: 10),
BrandText.body1('providers.domain.status'.tr()), BrandText.body1('providers.domain.status'.tr()),
]; ];