feat: exclusive summary
Build & Deploy iOS to TestFlight / build-and-deploy (push) Has been cancelled
Build & Deploy iOS to TestFlight / build-and-deploy (push) Has been cancelled
This commit is contained in:
+25
-1
@@ -431,5 +431,29 @@
|
||||
"device": "Device",
|
||||
"@device": {},
|
||||
"profit_loss": "Laba Rugi",
|
||||
"@profit_loss": {}
|
||||
"@profit_loss": {},
|
||||
"exclusive_summary": "Exclusive Summary",
|
||||
"@exclusive_summary": {},
|
||||
"hpp_breakdown": "HPP Breakdown",
|
||||
"@hpp_breakdown": {},
|
||||
"operational_expense_breakdown": "Operational Expense Breakdown",
|
||||
"@operational_expense_breakdown": {},
|
||||
"daily_summary": "Daily Summary",
|
||||
"@daily_summary": {},
|
||||
"daily_transactions": "Daily Transactions",
|
||||
"@daily_transactions": {},
|
||||
"reimburse_summary": "Reimburse Summary",
|
||||
"@reimburse_summary": {},
|
||||
"total_reimburse": "Total Reimburse",
|
||||
"@total_reimburse": {},
|
||||
"excluded_salary_staff": "Excluded Salary Staff",
|
||||
"@excluded_salary_staff": {},
|
||||
"hpp": "HPP",
|
||||
"@hpp": {},
|
||||
"salary_total": "Total Salary",
|
||||
"@salary_total": {},
|
||||
"operational_expenses": "Operational Expenses",
|
||||
"@operational_expenses": {},
|
||||
"total_cost": "Total Cost",
|
||||
"@total_cost": {}
|
||||
}
|
||||
|
||||
+25
-1
@@ -431,5 +431,29 @@
|
||||
"device": "Perangkat",
|
||||
"@device": {},
|
||||
"profit_loss": "Laba Rugi",
|
||||
"@profit_loss": {}
|
||||
"@profit_loss": {},
|
||||
"exclusive_summary": "Ringkasan Eksklusif",
|
||||
"@exclusive_summary": {},
|
||||
"hpp_breakdown": "Rincian HPP",
|
||||
"@hpp_breakdown": {},
|
||||
"operational_expense_breakdown": "Rincian Biaya Operasional",
|
||||
"@operational_expense_breakdown": {},
|
||||
"daily_summary": "Ringkasan Harian",
|
||||
"@daily_summary": {},
|
||||
"daily_transactions": "Transaksi Harian",
|
||||
"@daily_transactions": {},
|
||||
"reimburse_summary": "Ringkasan Reimburse",
|
||||
"@reimburse_summary": {},
|
||||
"total_reimburse": "Total Reimburse",
|
||||
"@total_reimburse": {},
|
||||
"excluded_salary_staff": "Gaji Staf (Dikecualikan)",
|
||||
"@excluded_salary_staff": {},
|
||||
"hpp": "HPP",
|
||||
"@hpp": {},
|
||||
"salary_total": "Total Gaji",
|
||||
"@salary_total": {},
|
||||
"operational_expenses": "Biaya Operasional",
|
||||
"@operational_expenses": {},
|
||||
"total_cost": "Total Biaya",
|
||||
"@total_cost": {}
|
||||
}
|
||||
|
||||
@@ -1306,6 +1306,78 @@ abstract class AppLocalizations {
|
||||
/// In en, this message translates to:
|
||||
/// **'Laba Rugi'**
|
||||
String get profit_loss;
|
||||
|
||||
/// No description provided for @exclusive_summary.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Exclusive Summary'**
|
||||
String get exclusive_summary;
|
||||
|
||||
/// No description provided for @hpp_breakdown.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'HPP Breakdown'**
|
||||
String get hpp_breakdown;
|
||||
|
||||
/// No description provided for @operational_expense_breakdown.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Operational Expense Breakdown'**
|
||||
String get operational_expense_breakdown;
|
||||
|
||||
/// No description provided for @daily_summary.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Daily Summary'**
|
||||
String get daily_summary;
|
||||
|
||||
/// No description provided for @daily_transactions.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Daily Transactions'**
|
||||
String get daily_transactions;
|
||||
|
||||
/// No description provided for @reimburse_summary.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Reimburse Summary'**
|
||||
String get reimburse_summary;
|
||||
|
||||
/// No description provided for @total_reimburse.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Total Reimburse'**
|
||||
String get total_reimburse;
|
||||
|
||||
/// No description provided for @excluded_salary_staff.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Excluded Salary Staff'**
|
||||
String get excluded_salary_staff;
|
||||
|
||||
/// No description provided for @hpp.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'HPP'**
|
||||
String get hpp;
|
||||
|
||||
/// No description provided for @salary_total.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Total Salary'**
|
||||
String get salary_total;
|
||||
|
||||
/// No description provided for @operational_expenses.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Operational Expenses'**
|
||||
String get operational_expenses;
|
||||
|
||||
/// No description provided for @total_cost.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Total Cost'**
|
||||
String get total_cost;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
|
||||
|
||||
@@ -621,4 +621,40 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get profit_loss => 'Laba Rugi';
|
||||
|
||||
@override
|
||||
String get exclusive_summary => 'Exclusive Summary';
|
||||
|
||||
@override
|
||||
String get hpp_breakdown => 'HPP Breakdown';
|
||||
|
||||
@override
|
||||
String get operational_expense_breakdown => 'Operational Expense Breakdown';
|
||||
|
||||
@override
|
||||
String get daily_summary => 'Daily Summary';
|
||||
|
||||
@override
|
||||
String get daily_transactions => 'Daily Transactions';
|
||||
|
||||
@override
|
||||
String get reimburse_summary => 'Reimburse Summary';
|
||||
|
||||
@override
|
||||
String get total_reimburse => 'Total Reimburse';
|
||||
|
||||
@override
|
||||
String get excluded_salary_staff => 'Excluded Salary Staff';
|
||||
|
||||
@override
|
||||
String get hpp => 'HPP';
|
||||
|
||||
@override
|
||||
String get salary_total => 'Total Salary';
|
||||
|
||||
@override
|
||||
String get operational_expenses => 'Operational Expenses';
|
||||
|
||||
@override
|
||||
String get total_cost => 'Total Cost';
|
||||
}
|
||||
|
||||
@@ -621,4 +621,40 @@ class AppLocalizationsId extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get profit_loss => 'Laba Rugi';
|
||||
|
||||
@override
|
||||
String get exclusive_summary => 'Ringkasan Eksklusif';
|
||||
|
||||
@override
|
||||
String get hpp_breakdown => 'Rincian HPP';
|
||||
|
||||
@override
|
||||
String get operational_expense_breakdown => 'Rincian Biaya Operasional';
|
||||
|
||||
@override
|
||||
String get daily_summary => 'Ringkasan Harian';
|
||||
|
||||
@override
|
||||
String get daily_transactions => 'Transaksi Harian';
|
||||
|
||||
@override
|
||||
String get reimburse_summary => 'Ringkasan Reimburse';
|
||||
|
||||
@override
|
||||
String get total_reimburse => 'Total Reimburse';
|
||||
|
||||
@override
|
||||
String get excluded_salary_staff => 'Gaji Staf (Dikecualikan)';
|
||||
|
||||
@override
|
||||
String get hpp => 'HPP';
|
||||
|
||||
@override
|
||||
String get salary_total => 'Total Gaji';
|
||||
|
||||
@override
|
||||
String get operational_expenses => 'Biaya Operasional';
|
||||
|
||||
@override
|
||||
String get total_cost => 'Total Biaya';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user