From 6a16a306e9c9095771b672c3c18ffd6354fa085a Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Sun, 14 Dec 2025 14:38:56 +0700 Subject: [PATCH] refactor(commands): Update command descriptions to English for improved clarity and consistency. --- app/Console/Commands/ClosePayrolls.php | 2 +- app/Console/Commands/GeneratePayrolls.php | 2 +- app/Console/Commands/GenerateStockOpname.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Console/Commands/ClosePayrolls.php b/app/Console/Commands/ClosePayrolls.php index 9d48168..dc099c5 100644 --- a/app/Console/Commands/ClosePayrolls.php +++ b/app/Console/Commands/ClosePayrolls.php @@ -11,7 +11,7 @@ class ClosePayrolls extends Command { protected $signature = 'payroll:close {--current} {--month= : Target month in Y-m format}'; - protected $description = 'Tandai payroll sebagai sudah dibayar untuk bulan saat ini atau bulan yang ditentukan. Default: bulan saat ini.'; + protected $description = 'Mark payrolls as paid for the current month or the specified month. Default: current month.'; public function handle(): void { diff --git a/app/Console/Commands/GeneratePayrolls.php b/app/Console/Commands/GeneratePayrolls.php index d28cdd9..49a81f1 100644 --- a/app/Console/Commands/GeneratePayrolls.php +++ b/app/Console/Commands/GeneratePayrolls.php @@ -12,7 +12,7 @@ class GeneratePayrolls extends Command { protected $signature = 'payroll:generate {--current} {--next}'; - protected $description = 'Generate data payroll untuk bulan saat ini atau bulan berikutnya. Default: bulan berikutnya.'; + protected $description = 'Generate payroll data for the current month or the next month. Default: next month.'; public function handle(): void { diff --git a/app/Console/Commands/GenerateStockOpname.php b/app/Console/Commands/GenerateStockOpname.php index e13e978..6edb519 100644 --- a/app/Console/Commands/GenerateStockOpname.php +++ b/app/Console/Commands/GenerateStockOpname.php @@ -13,7 +13,7 @@ class GenerateStockOpname extends Command { protected $signature = 'stock-opname:generate'; - protected $description = 'Otomatis generate dokumen stock opname'; + protected $description = 'Automatically generate stock opname documents'; public function handle() {