feat: анимации с реанимации

This commit is contained in:
Jganenokk
2026-08-06 19:21:45 +07:00
parent 81159bac60
commit 79c743e86a
50 changed files with 3247 additions and 925 deletions
+45
View File
@@ -2443,4 +2443,49 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get downloadsHistoryCleared => 'Download history cleared';
@override
String uploadNotificationPhotos(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count photos',
one: 'Photo',
);
return '$_temp0';
}
@override
String get uploadNotificationVideo => 'Video';
@override
String get uploadNotificationFile => 'File';
@override
String uploadNotificationMultiple(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: 'Sending $count files',
);
return '$_temp0';
}
@override
String get uploadNotificationPreparing => 'Preparing…';
@override
String uploadSpeedBytes(String value) {
return '$value B/s';
}
@override
String uploadSpeedKb(String value) {
return '$value KB/s';
}
@override
String uploadSpeedMb(String value) {
return '$value MB/s';
}
}