From b54c1caa7468d838294a32eb67112fd2aa4032ef Mon Sep 17 00:00:00 2001 From: snipe Date: Sat, 25 May 2024 10:43:28 +0100 Subject: [PATCH] Improved translation Signed-off-by: snipe --- resources/lang/en-US/general.php | 2 +- resources/views/partials/bootstrap-table.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lang/en-US/general.php b/resources/lang/en-US/general.php index 66100dd09f..542e41ec35 100644 --- a/resources/lang/en-US/general.php +++ b/resources/lang/en-US/general.php @@ -398,7 +398,7 @@ return [ 'accessory_name' => 'Accessory Name:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', - 'checkin_tooltip' => 'Check this item in', + 'checkin_tooltip' => 'Check this item in so that it is available for re-issue, re-imaging, etc', 'checkout_user_tooltip' => 'Check this item out to a user', 'maintenance_mode' => 'The service is temporarily unavailable for system updates. Please check back later.', 'maintenance_mode_title' => 'System Temporarily Unavailable', diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index 8b01ce7865..151aaee3a4 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -459,7 +459,7 @@ // The user is allowed to check items in } else if (row.available_actions.checkin == true) { if (row.assigned_to) { - return '{{ trans('general.checkin') }}'; + return '{{ trans('general.checkin') }}'; } else if (row.assigned_pivot_id) { return '{{ trans('general.checkin') }}'; }