mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-19 07:09:14 +00:00
fix: l10n assets format fix, whitespace and keyname
This commit is contained in:
parent
05800f5900
commit
dd036890b2
|
@ -250,7 +250,7 @@
|
|||
"dark_theme_title": "Цёмная тэма",
|
||||
"change_application_theme": "Змяніць каляровую тэму",
|
||||
"language": "Мова",
|
||||
"click_to_change_locale":"Націсніце, каб адчыніць меню выбару мовы",
|
||||
"click_to_change_locale": "Націсніце, каб адчыніць меню выбару мовы",
|
||||
"dangerous_settings": "Небяспечныя налады",
|
||||
"reset_config_title": "Скід налад",
|
||||
"reset_config_description": "Скінуць API ключы i суперкарыстальніка."
|
||||
|
|
|
@ -49,16 +49,16 @@
|
|||
"waiting": "Waiting for initialization…",
|
||||
"copy": "Copy",
|
||||
"copy_raw": "Raw response",
|
||||
"historyEmpty": "No data yet",
|
||||
"error":"Error",
|
||||
"log":"Log",
|
||||
"rest_api_request":"Rest API Request",
|
||||
"rest_api_response":"Rest API Response",
|
||||
"graphql_request":"GraphQL Request",
|
||||
"graphql_response":"GraphQL Response",
|
||||
"history_empty": "No data yet",
|
||||
"error": "Error",
|
||||
"log": "Log",
|
||||
"rest_api_request": "Rest API Request",
|
||||
"rest_api_response": "Rest API Response",
|
||||
"graphql_request": "GraphQL Request",
|
||||
"graphql_response": "GraphQL Response",
|
||||
"logged_at": "Logged at",
|
||||
"data": "Data",
|
||||
"errors":"Errors",
|
||||
"errors": "Errors",
|
||||
"error_path": "Path",
|
||||
"error_locations": "Locations",
|
||||
"error_extensions": "Extensions",
|
||||
|
|
|
@ -29,7 +29,7 @@ sealed class ConsoleLog {
|
|||
String get content;
|
||||
|
||||
/// data available for copy in dialog
|
||||
String? get shareableData => '{"title":"$title",\n'
|
||||
String? get shareableData => '{"title": "$title",\n'
|
||||
'"timestamp": "$fullUTCString",\n'
|
||||
'"data":{\n$content\n}'
|
||||
'\n}';
|
||||
|
|
|
@ -116,7 +116,7 @@ class _ConsoleViewEmpty extends StatelessWidget {
|
|||
@override
|
||||
Widget build(final BuildContext context) => Align(
|
||||
alignment: Alignment.topCenter,
|
||||
child: Text('console_page.historyEmpty'.tr()),
|
||||
child: Text('console_page.history_empty'.tr()),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue