mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-11 22:07:29 -08:00
Extract translation strings
This commit is contained in:
parent
ebfc395e78
commit
65de9c5e07
|
@ -8,6 +8,8 @@ return array(
|
|||
'clone' => 'Clone Category',
|
||||
'create' => 'Create Category',
|
||||
'edit' => 'Edit Category',
|
||||
'email_will_be_sent_due_to_global_eula' => 'An email will be sent to the user because the global EULA is being used.',
|
||||
'email_will_be_sent_due_to_category_eula' => 'An email will be sent to the user because a EULA is set for this category.',
|
||||
'eula_text' => 'Category EULA',
|
||||
'eula_text_help' => 'This field allows you to customize your EULAs for specific types of assets. If you only have one EULA for all of your assets, you can check the box below to use the primary default.',
|
||||
'name' => 'Category Name',
|
||||
|
|
|
@ -133,8 +133,8 @@
|
|||
let messageSpan = $('#email_will_be_sent_message');
|
||||
|
||||
let messages = {
|
||||
global: 'An email will be sent to the user because the global EULA is being used.',
|
||||
local: 'An email will be sent to the user because a EULA is set for this category.',
|
||||
global: '{{ trans('admin/categories/general.email_will_be_sent_due_to_global_eula') }}',
|
||||
local: '{{ trans('admin/categories/general.email_will_be_sent_due_to_category_eula') }}',
|
||||
};
|
||||
|
||||
function handleEulaChange() {
|
||||
|
|
Loading…
Reference in a new issue