mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-28 15:09:40 -08:00
cea255995c
* refactor to clean up LDAP login, and make the login method easier to handle. * Login refactor cleanup * Google 2FA package * Adds Google Authenticator two-factor * Removed unused blade * Added optin setting in profile * Removed dumb comments * Made lock_passwords check more consistent * Additional two factor strings * Lock passwords check * Display feature disabled text if in demo mode * Two factor admin reset options * Translation strings
26 lines
905 B
PHP
26 lines
905 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Status Label does not exist.',
|
|
'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ',
|
|
|
|
|
|
'create' => array(
|
|
'error' => 'Status Label was not created, please try again.',
|
|
'success' => 'La etichetta di stato è creato correttamente.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Status Label was not updated, please try again',
|
|
'success' => 'La etichetta di stato è stato aggiornato correttamente.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Are you sure you wish to delete this Status Label?',
|
|
'error' => 'There was an issue deleting the Status Label. Please try again.',
|
|
'success' => 'L\'etichetta di stato è stata cancellata correttamente.'
|
|
)
|
|
|
|
);
|