mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 16:44:08 -08:00
Adjusted the phrasing around auto-incrementing asset tags.
This commit is contained in:
parent
312200bf44
commit
5fe2083688
|
@ -16,14 +16,13 @@ return array(
|
||||||
'alert_inv_threshold' => 'Inventory Alert Threshold',
|
'alert_inv_threshold' => 'Inventory Alert Threshold',
|
||||||
'allow_user_skin' => 'Allow user skin',
|
'allow_user_skin' => 'Allow user skin',
|
||||||
'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.' ,
|
'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.' ,
|
||||||
'asset_ids' => 'Asset IDs',
|
|
||||||
'audit_interval' => 'Audit Interval',
|
'audit_interval' => 'Audit Interval',
|
||||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||||
'audit_warning_days' => 'Audit Warning Threshold',
|
'audit_warning_days' => 'Audit Warning Threshold',
|
||||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||||
'auto_increment_assets' => 'Generate auto-incrementing asset IDs',
|
'auto_increment_assets' => 'Generate auto-incrementing asset tags',
|
||||||
'auto_increment_prefix' => 'Prefix (optional)',
|
'auto_increment_prefix' => 'Prefix (optional)',
|
||||||
'auto_incrementing_help' => 'Enable auto-incrementing asset IDs first to set this',
|
'auto_incrementing_help' => 'Enable auto-incrementing asset tags first to set this',
|
||||||
'backups' => 'Backups',
|
'backups' => 'Backups',
|
||||||
'barcode_settings' => 'Barcode Settings',
|
'barcode_settings' => 'Barcode Settings',
|
||||||
'confirm_purge' => 'Confirm Purge',
|
'confirm_purge' => 'Confirm Purge',
|
||||||
|
@ -47,6 +46,7 @@ return array(
|
||||||
'barcode_type' => '2D Barcode Type',
|
'barcode_type' => '2D Barcode Type',
|
||||||
'alt_barcode_type' => '1D barcode type',
|
'alt_barcode_type' => '1D barcode type',
|
||||||
'email_logo_size' => 'Square logos in email look best. ',
|
'email_logo_size' => 'Square logos in email look best. ',
|
||||||
|
'enabled' => 'Enabled',
|
||||||
'eula_settings' => 'EULA Settings',
|
'eula_settings' => 'EULA Settings',
|
||||||
'eula_markdown' => 'This EULA allows <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>.',
|
'eula_markdown' => 'This EULA allows <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>.',
|
||||||
'favicon' => 'Favicon',
|
'favicon' => 'Favicon',
|
||||||
|
|
|
@ -43,11 +43,11 @@
|
||||||
<!-- auto ids -->
|
<!-- auto ids -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="col-md-5">
|
<div class="col-md-5">
|
||||||
{{ Form::label('auto_increment_assets', trans('admin/settings/general.asset_ids')) }}
|
{{ Form::label('auto_increment_assets', trans('admin/settings/general.auto_increment_assets')) }}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-7">
|
<div class="col-md-7">
|
||||||
{{ Form::checkbox('auto_increment_assets', '1', old('auto_increment_assets', $setting->auto_increment_assets),array('class' => 'minimal', 'aria-label'=>'auto_increment_assets')) }}
|
{{ Form::checkbox('auto_increment_assets', '1', old('auto_increment_assets', $setting->auto_increment_assets),array('class' => 'minimal', 'aria-label'=>'auto_increment_assets')) }}
|
||||||
{{ trans('admin/settings/general.auto_increment_assets') }}
|
{{ trans('admin/settings/general.enabled') }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue