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

View file

@ -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",

View file

@ -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}';

View file

@ -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()),
);
}