mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
ddfa5776c5
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();` I'll try to fix it. :( FML Signed-off-by: snipe <snipe@snipe.net>
30 lines
876 B
PHP
30 lines
876 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Fabricante inexistente.',
|
|
'assoc_users' => 'Este Fabricante está asociado al menos a un modelo y no puede ser eliminado',
|
|
|
|
'create' => array(
|
|
'error' => 'Fabricante no creado, Intentalo de nuevo.',
|
|
'success' => 'Fabricante creado.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Fabricante no actualizado, Intentalo de nuevo',
|
|
'success' => 'Fabricante actualizado.'
|
|
),
|
|
|
|
'restore' => array(
|
|
'error' => 'El fabricante no fue restaurado, intente de nuevo',
|
|
'success' => 'Fabricante restaurado con éxito.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Estás seguro que quieres eliminar Fabricante?',
|
|
'error' => 'Hubo un problema eliminando el fabricante. Por favor, inténtalo de nuevo.',
|
|
'success' => 'Fabricante Eliminado.'
|
|
)
|
|
|
|
);
|