mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-07 20:07:29 -08:00
26 lines
1.1 KiB
PHP
26 lines
1.1 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => '분류가 존재하지 않습니다.',
|
|
'assoc_models' => 'This category is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this category and try again. ',
|
|
'assoc_items' => 'This category is currently associated with at least one :asset_type and cannot be deleted. Please update your :asset_type to no longer reference this category and try again. ',
|
|
|
|
'create' => array(
|
|
'error' => '분류가 생성되지 않았습니다. 다시 시도해 주세요',
|
|
'success' => '분류가 생성되었습니다.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => '분류가 갱신되지 않았습니다. 다시 시도해 주세요',
|
|
'success' => '분류가 갱신되었습니다.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => '이 분류를 삭제하시겠습니까?',
|
|
'error' => '분류 삭제 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
|
'success' => '분류가 삭제되었습니다'
|
|
)
|
|
|
|
);
|