mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 22:37:28 -08:00
Fix language strings
This commit is contained in:
parent
530ea474d1
commit
0881301b6d
|
@ -2,20 +2,4 @@
|
|||
|
||||
return array(
|
||||
'error' => 'You must select at least ONE option.',
|
||||
'no_report_permission' => 'Template does not exist or you do not have permission to view it.',
|
||||
'about_templates' => 'About Saved Templates',
|
||||
'saving_templates_description' => 'Select your options, then enter the name of your template in the box above and click the \'Save Template\' button. Use the dropdown to select a previously saved template.',
|
||||
|
||||
'create' => [
|
||||
'success' => 'Template saved successfully',
|
||||
'needs_title' => 'Template title can not be blank.',
|
||||
'duplicate' => 'Template title already exists. Please choose a different one.',
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'delete' => 'Are you sure you want to delete this report?',
|
||||
'delete_confirm' => 'Template deleted',
|
||||
'no_delete_permission' => 'Template does not exist or you do not have permission to delete it.',
|
||||
],
|
||||
|
||||
);
|
||||
|
|
|
@ -13,5 +13,12 @@ return [
|
|||
'user_state' => 'User State',
|
||||
'user_country' => 'User Country',
|
||||
'user_zip' => 'User Zip'
|
||||
]
|
||||
];
|
||||
],
|
||||
'saved_templates' => 'Saved Templates',
|
||||
'save_template' => 'Save Template',
|
||||
'select_a_template' => 'Select a Template',
|
||||
'apply_template' => 'Apply Template',
|
||||
'generate_template' => 'Generate Template',
|
||||
'apply_and_generate' => 'Apply and Generate',
|
||||
'template_name' => 'Enter Template Name',
|
||||
];
|
||||
|
|
|
@ -1,5 +1,18 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'error' => 'You must select at least ONE option.'
|
||||
);
|
||||
return [
|
||||
'error' => 'You must select at least ONE option.',
|
||||
'no_report_permission' => 'Template does not exist or you do not have permission to view it.',
|
||||
'about_templates' => 'About Saved Templates',
|
||||
'saving_templates_description' => 'Select your options, then enter the name of your template in the box above and click the \'Save Template\' button. Use the dropdown to select a previously saved template.',
|
||||
'create' => [
|
||||
'success' => 'Template saved successfully',
|
||||
'needs_title' => 'Template title can not be blank.',
|
||||
'duplicate' => 'Template title already exists. Please choose a different one.',
|
||||
],
|
||||
'delete' => [
|
||||
'delete' => 'Are you sure you want to delete this report?',
|
||||
'delete_confirm' => 'Template deleted',
|
||||
'no_delete_permission' => 'Template does not exist or you do not have permission to delete it.',
|
||||
],
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue