fix: l10n assets format fix, whitespace and keyname

This commit is contained in:
Aliaksei Tratseuski 2024-06-19 15:20:15 +04:00
parent 05800f5900
commit dd036890b2
4 changed files with 11 additions and 11 deletions

View file

@ -250,7 +250,7 @@
"dark_theme_title": "Цёмная тэма", "dark_theme_title": "Цёмная тэма",
"change_application_theme": "Змяніць каляровую тэму", "change_application_theme": "Змяніць каляровую тэму",
"language": "Мова", "language": "Мова",
"click_to_change_locale":"Націсніце, каб адчыніць меню выбару мовы", "click_to_change_locale": "Націсніце, каб адчыніць меню выбару мовы",
"dangerous_settings": "Небяспечныя налады", "dangerous_settings": "Небяспечныя налады",
"reset_config_title": "Скід налад", "reset_config_title": "Скід налад",
"reset_config_description": "Скінуць API ключы i суперкарыстальніка." "reset_config_description": "Скінуць API ключы i суперкарыстальніка."

View file

@ -49,16 +49,16 @@
"waiting": "Waiting for initialization…", "waiting": "Waiting for initialization…",
"copy": "Copy", "copy": "Copy",
"copy_raw": "Raw response", "copy_raw": "Raw response",
"historyEmpty": "No data yet", "history_empty": "No data yet",
"error":"Error", "error": "Error",
"log":"Log", "log": "Log",
"rest_api_request":"Rest API Request", "rest_api_request": "Rest API Request",
"rest_api_response":"Rest API Response", "rest_api_response": "Rest API Response",
"graphql_request":"GraphQL Request", "graphql_request": "GraphQL Request",
"graphql_response":"GraphQL Response", "graphql_response": "GraphQL Response",
"logged_at": "Logged at", "logged_at": "Logged at",
"data": "Data", "data": "Data",
"errors":"Errors", "errors": "Errors",
"error_path": "Path", "error_path": "Path",
"error_locations": "Locations", "error_locations": "Locations",
"error_extensions": "Extensions", "error_extensions": "Extensions",

View file

@ -29,7 +29,7 @@ sealed class ConsoleLog {
String get content; String get content;
/// data available for copy in dialog /// data available for copy in dialog
String? get shareableData => '{"title":"$title",\n' String? get shareableData => '{"title": "$title",\n'
'"timestamp": "$fullUTCString",\n' '"timestamp": "$fullUTCString",\n'
'"data":{\n$content\n}' '"data":{\n$content\n}'
'\n}'; '\n}';

View file

@ -116,7 +116,7 @@ class _ConsoleViewEmpty extends StatelessWidget {
@override @override
Widget build(final BuildContext context) => Align( Widget build(final BuildContext context) => Align(
alignment: Alignment.topCenter, alignment: Alignment.topCenter,
child: Text('console_page.historyEmpty'.tr()), child: Text('console_page.history_empty'.tr()),
); );
} }