update remove animation

This commit is contained in:
efrilm
2026-05-12 14:48:53 +07:00
parent 411d1274bd
commit 86d581f5ea
12 changed files with 439 additions and 477 deletions
+3 -1
View File
@@ -429,5 +429,7 @@
"package_name": "Package Name",
"@package_name": {},
"device": "Device",
"@device": {}
"@device": {},
"profit_loss": "Laba Rugi",
"@profit_loss": {}
}
+3 -1
View File
@@ -429,5 +429,7 @@
"package_name": "Nama Paket",
"@package_name": {},
"device": "Perangkat",
"@device": {}
"@device": {},
"profit_loss": "Laba Rugi",
"@profit_loss": {}
}
+6
View File
@@ -1300,6 +1300,12 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Device'**
String get device;
/// No description provided for @profit_loss.
///
/// In en, this message translates to:
/// **'Laba Rugi'**
String get profit_loss;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
+3
View File
@@ -618,4 +618,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get device => 'Device';
@override
String get profit_loss => 'Laba Rugi';
}
+3
View File
@@ -618,4 +618,7 @@ class AppLocalizationsId extends AppLocalizations {
@override
String get device => 'Perangkat';
@override
String get profit_loss => 'Laba Rugi';
}