This commit is contained in:
2024-04-19 10:27:36 +02:00
parent fcb6bbe566
commit 35c96e715c
7852 changed files with 4815 additions and 8 deletions

View File

@ -0,0 +1,16 @@
<?php
return [
'about_asset_depreciations' => 'Um fyrningar eigna',
'about_depreciations' => 'Þú getur búið til mismunandi fyrningarflokka til að afskrifa eignir eftir línulegu afskriftarferli.',
'asset_depreciations' => 'Fyrningar eigna',
'create' => 'Búa til fyrningarflokk',
'depreciation_name' => 'Heiti fyrningarflokks',
'depreciation_min' => 'Floor Value of Depreciation',
'number_of_months' => 'Fjöldi mánaða',
'update' => 'Uppfæra fyrningarflokk',
'depreciation_min' => 'Minimum Value after Depreciation',
'no_depreciations_warning' => '<strong>Warning: </strong>
You do not currently have any depreciations set up.
Please set up at least one depreciation to view the depreciation report.',
];

View File

@ -0,0 +1,25 @@
<?php
return array(
'does_not_exist' => 'Þessi fyrningarflokkur er ekki til.',
'assoc_users' => 'This depreciation is currently associated with one or more models and cannot be deleted. Please delete the models, and then try deleting again. ',
'create' => array(
'error' => 'Fyrningarflokkurinn var ekki búinn til. Vinsamlegast reyndu aftur. :(',
'success' => 'Fyrningarflokkurinn var búinn til. :)'
),
'update' => array(
'error' => 'Fyrningarflokkurinn var ekki uppfærður. Vinsamlegast reyndu aftur',
'success' => 'Fyrningarflokkurinn var uppfærður.'
),
'delete' => array(
'confirm' => 'Ertu viss um að þú viljir eyða þessum fyrningarflokki?',
'error' => 'Það kom upp vandamál þegar reynt var að eyða fyrningarflokknum. Vinsamlegast reyndu aftur.',
'success' => 'Fyrningarflokknum var eytt.'
)
);

View File

@ -0,0 +1,11 @@
<?php
return [
'id' => 'ID',
'months' => 'Mánuðir',
'term' => 'Tími',
'title' => 'Heiti ',
'depreciation_min' => 'Floor Value',
];