mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -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>
51 lines
3.8 KiB
PHP
51 lines
3.8 KiB
PHP
<?php
|
|
|
|
return [
|
|
'about_kits_title' => 'Acerca de kits predefinidos',
|
|
'about_kits_text' => 'Los Kits predefinidos le permiten rápidamente entregar un conjunto de elementos (assets, licencias, etc) a un usuario. Esto puede ser útil cuando su proceso de aprovisionar a usuarios nuevos es consistente para varios usuarios y todos reciben los mismos ítems.',
|
|
'checkout' => 'Asignar kit ',
|
|
'create_success' => 'El kit se ha creado correctamente.',
|
|
'create' => 'Crear kit predefinido',
|
|
'update' => 'Actualizar kit predefinido',
|
|
'delete_success' => 'Kit eliminado correctamente.',
|
|
'update_success' => 'El kit se ha actualizado correctamente.',
|
|
'none_models' => 'No hay suficientes recursos disponibles para :model para asignar. :qty son requeridos. ',
|
|
'none_licenses' => 'No hay suficientes licencias disponibles de :license para entregar. Se requieren :qty . ',
|
|
'none_consumables' => 'No hay suficientes unidades disponibles de :consumable para entregar. Se requieren :qty . ',
|
|
'none_accessory' => 'No hay suficientes unidades disponibles de :accessory para entregar. Se necesitan :qty . ',
|
|
'append_accessory' => 'Append Accessory',
|
|
'update_appended_accessory' => 'Update appended Accessory',
|
|
'append_consumable' => 'Append Consumable',
|
|
'update_appended_consumable' => 'Update appended Consumable',
|
|
'append_license' => 'Append license',
|
|
'update_appended_license' => 'Update appended license',
|
|
'append_model' => 'Append model',
|
|
'update_appended_model' => 'Update appended model',
|
|
'license_error' => 'License already attached to kit',
|
|
'license_added_success' => 'License added successfully',
|
|
'license_updated' => 'License was successfully updated',
|
|
'license_none' => 'License does not exist',
|
|
'license_detached' => 'License was successfully detached',
|
|
'consumable_added_success' => 'Consumable added successfully',
|
|
'consumable_updated' => 'Consumable was successfully updated',
|
|
'consumable_error' => 'Consumable already attached to kit',
|
|
'consumable_deleted' => 'Delete was successful',
|
|
'consumable_none' => 'Consumable does not exist',
|
|
'consumable_detached' => 'Consumable was successfully detached',
|
|
'accessory_added_success' => 'Accessory added successfully',
|
|
'accessory_updated' => 'Accessory was successfully updated',
|
|
'accessory_detached' => 'Accessory was successfully detached',
|
|
'accessory_error' => 'Accessory already attached to kit',
|
|
'accessory_deleted' => 'Delete was successful',
|
|
'accessory_none' => 'Accessory does not exist',
|
|
'checkout_success' => 'Checkout was successful',
|
|
'checkout_error' => 'Checkout error',
|
|
'kit_none' => 'Kit does not exist',
|
|
'kit_created' => 'Kit was successfully created',
|
|
'kit_updated' => 'Kit was successfully updated',
|
|
'kit_not_found' => 'Kit not found',
|
|
'kit_deleted' => 'Kit was successfully deleted',
|
|
'kit_model_updated' => 'Model was successfully updated',
|
|
'kit_model_detached' => 'Model was successfully detached',
|
|
];
|