Skip to content

Commit e48969c

Browse files
committed
Correct translate in russian
1 parent 2c319a6 commit e48969c

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

lib/presentation/l10n/app_localizations.dart

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class AppLocalizations {
173173
'analyticsPeriodYear': 'Текущий год',
174174
'analyticsFiltersClear': 'Сбросить фильтры',
175175
'analyticsSummaryPeriodLabel': 'Период',
176-
'analyticsSummarySpentLabel': 'Потрачено за период',
176+
'analyticsSummarySpentLabel': 'Потрачено',
177177
'analyticsSummaryTotalLabel': 'Всего трат',
178178
'analyticsBreakdownPaidLabel': 'Оплачено {amount}',
179179
'analyticsBreakdownUpcomingLabel': 'Осталось {amount}',
@@ -338,8 +338,10 @@ class AppLocalizations {
338338
String analyticsBreakdownPaidLabel(String amount) =>
339339
_strings['analyticsBreakdownPaidLabel']!.replaceAll('{amount}', amount);
340340
String analyticsBreakdownUpcomingLabel(String amount) =>
341-
_strings['analyticsBreakdownUpcomingLabel']!
342-
.replaceAll('{amount}', amount);
341+
_strings['analyticsBreakdownUpcomingLabel']!.replaceAll(
342+
'{amount}',
343+
amount,
344+
);
343345
String get addButtonLabel => _strings['addButtonLabel']!;
344346
String get settingsTitle => _strings['settingsTitle']!;
345347
String get settingsGeneralSection => _strings['settingsGeneralSection']!;

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
2323
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
2424
# In Windows, build-name is used as the major, minor, and patch parts
2525
# of the product and file versions while build-number is used as the build suffix.
26-
version: 0.2.0+1
26+
version: 0.2.1+3
2727

2828
environment:
2929
sdk: ^3.10.3

0 commit comments

Comments
 (0)