diff --git a/resources/lang/en/admin/consumables/general.php b/resources/lang/en/admin/consumables/general.php index 8fd9d4f97f..89656e4dfb 100644 --- a/resources/lang/en/admin/consumables/general.php +++ b/resources/lang/en/admin/consumables/general.php @@ -3,13 +3,14 @@ return array( 'about_consumables_title' => 'About Consumables', 'about_consumables_text' => 'Consumables are anything purchased that will be used up over time. For example, printer ink or copier paper.', - 'consumable_name' => 'Consumable Name', - 'cost' => 'Purchase Cost', - 'create' => 'Create Consumable', - 'date' => 'Purchase Date', - 'item_no' => 'Item No.', - 'order' => 'Order Number', - 'remaining' => 'Remaining', - 'total' => 'Total', + 'checkout' => 'Checkout Consumable to User', + 'consumable_name' => 'Consumable Name', + 'cost' => 'Purchase Cost', + 'create' => 'Create Consumable', + 'date' => 'Purchase Date', + 'item_no' => 'Item No.', + 'order' => 'Order Number', + 'remaining' => 'Remaining', + 'total' => 'Total', 'update' => 'Update Consumable', ); diff --git a/resources/views/consumables/checkout.blade.php b/resources/views/consumables/checkout.blade.php index de9871e633..032bbaf6f3 100644 --- a/resources/views/consumables/checkout.blade.php +++ b/resources/views/consumables/checkout.blade.php @@ -2,7 +2,7 @@ {{-- Page title --}} @section('title') - {{ trans('admin/hardware/general.checkout') }} + {{ trans('admin/consumables/general.checkout') }} @parent @stop