mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
58 lines
1.6 KiB
PHP
58 lines
1.6 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'field' => array(
|
|
'invalid' => 'Tätä kenttää ei ole olemassa.',
|
|
'already_added' => 'Kentässä jo lisätty',
|
|
|
|
'create' => array(
|
|
'error' => 'Kenttää ei luotu, yritä uudelleen.',
|
|
'success' => 'Kenttä luotiin onnistuneesti.',
|
|
'assoc_success' => 'Kenttä lisättiin onnistuneesti kenttätasolle.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Kenttä ei päivittynyt, yritä uudelleen',
|
|
'success' => 'Kenttä päivitettiin onnistuneesti.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Haluatko varmasti poistaa tämän kentän?',
|
|
'error' => 'Kentässä on ollut ongelma. Yritä uudelleen.',
|
|
'success' => 'Kenttä poistettiin onnistuneesti.',
|
|
'in_use' => 'Kenttä on edelleen käytössä.',
|
|
)
|
|
|
|
),
|
|
|
|
'fieldset' => array(
|
|
|
|
'does_not_exist' => 'Fieldsetia ei ole olemassa',
|
|
|
|
'create' => array(
|
|
'error' => 'Fieldsetia ei luotu, yritä uudelleen.',
|
|
'success' => 'Fieldset luotu onnistuneesti.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Fieldsetia ei ole päivitetty, yritä uudelleen',
|
|
'success' => 'Fieldset päivitettiin onnistuneesti.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Haluatko varmasti poistaa tämän kentän?',
|
|
'error' => 'On tapahtunut ongelma, joka poistaa kentän kentän. Yritä uudelleen.',
|
|
'success' => 'Fieldset poistettiin onnistuneesti.',
|
|
'in_use' => 'Fieldset on edelleen käytössä.',
|
|
)
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
);
|