Skip to content

Commit d2c9a8c

Browse files
committed
Added freezed package
1 parent d100c40 commit d2c9a8c

File tree

13 files changed

+1226
-123
lines changed

13 files changed

+1226
-123
lines changed

lib/l10n/arb/app_cs.arb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,5 +282,6 @@
282282
}
283283
},
284284
"manySharesWarning": "Velké množství podílů",
285-
"manySharesWarningText": "S některými protokoly můžete zaznamenat snížený výkon, pokud je počet podílů příliš vysoký. Zvažte odebrání některých členů nebo snížení počtu podílů, které obdrží, pokud zaznamenáte problém s výkonem."
285+
"manySharesWarningText": "S některými protokoly můžete zaznamenat snížený výkon, pokud je počet podílů příliš vysoký. Zvažte odebrání některých členů nebo snížení počtu podílů, které obdrží, pokud zaznamenáte problém s výkonem.",
286+
"groupCreationFailed": "Vytvoření skupiny selhalo"
286287
}

lib/l10n/arb/app_en.arb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,5 +282,6 @@
282282
}
283283
},
284284
"manySharesWarning": "Very large number of shares",
285-
"manySharesWarningText": "You may experience degraded performance with certain protocols if the share count is too high. Consider removing some members or lowering the number of shares they receive if this poses an issue."
285+
"manySharesWarningText": "You may experience degraded performance with certain protocols if the share count is too high. Consider removing some members or lowering the number of shares they receive if this poses an issue.",
286+
"groupCreationFailed": "Group creation failed"
286287
}

lib/l10n/arb/app_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1292,6 +1292,12 @@ abstract class AppLocalizations {
12921292
/// In en, this message translates to:
12931293
/// **'You may experience degraded performance with certain protocols if the share count is too high. Consider removing some members or lowering the number of shares they receive if this poses an issue.'**
12941294
String get manySharesWarningText;
1295+
1296+
/// No description provided for @groupCreationFailed.
1297+
///
1298+
/// In en, this message translates to:
1299+
/// **'Group creation failed'**
1300+
String get groupCreationFailed;
12951301
}
12961302

12971303
class _AppLocalizationsDelegate

lib/l10n/arb/app_localizations_cs.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -655,4 +655,7 @@ class AppLocalizationsCs extends AppLocalizations {
655655
@override
656656
String get manySharesWarningText =>
657657
'S některými protokoly můžete zaznamenat snížený výkon, pokud je počet podílů příliš vysoký. Zvažte odebrání některých členů nebo snížení počtu podílů, které obdrží, pokud zaznamenáte problém s výkonem.';
658+
659+
@override
660+
String get groupCreationFailed => 'Vytvoření skupiny selhalo';
658661
}

lib/l10n/arb/app_localizations_en.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -653,4 +653,7 @@ class AppLocalizationsEn extends AppLocalizations {
653653
@override
654654
String get manySharesWarningText =>
655655
'You may experience degraded performance with certain protocols if the share count is too high. Consider removing some members or lowering the number of shares they receive if this poses an issue.';
656+
657+
@override
658+
String get groupCreationFailed => 'Group creation failed';
656659
}

0 commit comments

Comments
 (0)