mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
26 lines
1,002 B
PHP
26 lines
1,002 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Kategorin existerar inte. ',
|
|
'assoc_models' => 'This category is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this category and try again. ',
|
|
'assoc_items' => 'This category is currently associated with at least one :asset_type and cannot be deleted. Please update your :asset_type to no longer reference this category and try again. ',
|
|
|
|
'create' => array(
|
|
'error' => 'Kategorin blev inte skapad, försök igen.',
|
|
'success' => 'Kategorin skapades.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Kategorin uppdaterades inte, vänligen försök igen.',
|
|
'success' => 'kategorin uppdaterad.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Är du säker på att du vill radera denna kategori?',
|
|
'error' => 'Ett problem uppstod vid kategoriraderingen. Försök igen.',
|
|
'success' => 'Kategorin raderades.'
|
|
)
|
|
|
|
);
|