diff --git a/resources/lang/en/admin/statuslabels/message.php b/resources/lang/en/admin/statuslabels/message.php index 619a5a509..2937f8497 100644 --- a/resources/lang/en/admin/statuslabels/message.php +++ b/resources/lang/en/admin/statuslabels/message.php @@ -20,6 +20,13 @@ return array( 'confirm' => 'Are you sure you wish to delete this Status Label?', 'error' => 'There was an issue deleting the Status Label. Please try again.', 'success' => 'The Status Label was deleted successfully.' - ) + ), + + 'help' => array( + 'undeployable' => 'These assets cannot be assigned to anyone.', + 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'archived' => 'These assets cannot be checked out, and will only show up in the Archived view. This is useful for retaining information about assets for budgeting/historic purposes but keeping them out of the day-to-day asset list.', + 'pending' => 'These assets can not yet be assigned to anyone, often used for items that are out for repair, but are expected to return to circulation.', + ), ); diff --git a/resources/views/statuslabels/index.blade.php b/resources/views/statuslabels/index.blade.php index 6f8cafee2..c7194adfa 100755 --- a/resources/views/statuslabels/index.blade.php +++ b/resources/views/statuslabels/index.blade.php @@ -46,6 +46,12 @@

{{ trans('admin/statuslabels/table.about') }}

{{ trans('admin/statuslabels/table.info') }}

+ +

{{ trans('admin/statuslabels/table.deployable') }}: {!! trans('admin/statuslabels/message.help.deployable') !!}

+

Pending{{ trans('admin/statuslabels/message.help.pending') }}

+

Undeployable: {{ trans('admin/statuslabels/message.help.undeployable') }}

+

Archived: {{ trans('admin/statuslabels/message.help.archived') }}

+