ok
This commit is contained in:
12
Production/SNIPE-IT/resources/lang/ko-KR/account/general.php
Normal file
12
Production/SNIPE-IT/resources/lang/ko-KR/account/general.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'personal_api_keys' => 'Personal API Keys',
|
||||
'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they
|
||||
will not be visible to you again.',
|
||||
'api_base_url' => 'Your API base url is located at:',
|
||||
'api_base_url_endpoint' => '/<endpoint>',
|
||||
'api_token_expiration_time' => 'API tokens are set to expire in:',
|
||||
'api_reference' => 'Please check the <a href="https://snipe-it.readme.io/reference" target="_blank">API reference</a> to
|
||||
find specific API endpoints and additional API documentation.',
|
||||
);
|
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'accessory_category' => '부속품 분류',
|
||||
'accessory_name' => '부속품 명',
|
||||
'checkout' => '부속품 반출',
|
||||
'checkin' => '부속품 반입',
|
||||
'create' => '부속품 생성',
|
||||
'edit' => '부속품 수정',
|
||||
'eula_text' => '분류 사용권 계약서',
|
||||
'eula_text_help' => '이 필드는 특정 유형의 자산들에 대한 사용권 계약서들을 지정할 수 있게 해 줍니다. 당신의 모든 자산들에게 단 하나의 사용권 계약서만 가지고 있다면, 첫번째를 기본으로 사용하도록 아래의 상자에 체크할 수 있습니다.',
|
||||
'require_acceptance' => '이 분류의 자산 승인을 확인하는 사용자가 필요합니다.',
|
||||
'no_default_eula' => '기본 사용권 계약서가 없습니다. 설정에서 추가하세요.',
|
||||
'total' => '총계',
|
||||
'remaining' => '사용가능',
|
||||
'update' => '부속품 갱신',
|
||||
'use_default_eula' => '대체 <a href="#" data-toggle="modal" data-target="#eulaModal">기본 사용권 계약서</a>를 사용합니다.',
|
||||
'use_default_eula_disabled' => '<del>대체 기본 사용권 계약서를 사용합니다.</del> 기본 사용권 계약서가 정의되지 않았습니다. 설정에서 하나를 추가해 주세요.',
|
||||
'clone' => 'Clone Accessory',
|
||||
'delete_disabled' => 'This accessory cannot be deleted yet because some items are still checked out.',
|
||||
|
||||
);
|
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => '해당 악세사리 [:id] 가 존재하지 않습니다.',
|
||||
'not_found' => '액세서리를 찾을 수 없습니다.',
|
||||
'assoc_users' => '이 부속품은 현재 사용자에게 :count 개가 반출 되었습니다. 이 부속품을 반입하고 다시 시도해 주세요. ',
|
||||
|
||||
'create' => array(
|
||||
'error' => '부속품을 만들 수 없었습니다. 재시도해 주세요.',
|
||||
'success' => '부속품을 만들었습니다.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '부속품을 갱신하지 못했습니다. 재시도해 주세요.',
|
||||
'success' => '부속품을 갱신했습니다.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 부속품을 삭제하시겠습니까?',
|
||||
'error' => '분류 삭제 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '해당 부속품이 삭제 완료 되었습니다.'
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
'error' => '부속품이 반출되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '부속품이 반출 되었습니다.',
|
||||
'unavailable' => 'Accessory is not available for checkout. Check quantity available',
|
||||
'user_does_not_exist' => '잘못된 사용자 입니다. 다시 시도해 주세요.'
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => '부속품이 반입되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '부속품이 반입 되었습니다.',
|
||||
'user_does_not_exist' => '잘못된 사용자 입니다. 다시 시도해 주세요.'
|
||||
)
|
||||
|
||||
|
||||
);
|
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'dl_csv' => 'CSV로 내려받기',
|
||||
'eula_text' => '사용권 계약서',
|
||||
'id' => '아이디',
|
||||
'require_acceptance' => '승인',
|
||||
'title' => '부속품 명',
|
||||
|
||||
|
||||
);
|
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'asset_maintenance_type' => '자산 관리 유형',
|
||||
'title' => '제목',
|
||||
'start_date' => '시작일',
|
||||
'completion_date' => '완료일',
|
||||
'cost' => '비용',
|
||||
'is_warranty' => '보증 개선',
|
||||
'asset_maintenance_time' => '자산 관리 기간(일 단위)',
|
||||
'notes' => '주석',
|
||||
'update' => '자산 관리 갱신',
|
||||
'create' => '자산 관리 생성'
|
||||
];
|
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'asset_maintenances' => '자산 관리',
|
||||
'edit' => '자산 관리 수정',
|
||||
'delete' => '자산 관리 삭제',
|
||||
'view' => '자산 관리 상세 보기',
|
||||
'repair' => '수리',
|
||||
'maintenance' => '관리',
|
||||
'upgrade' => '개선',
|
||||
'calibration' => '측정',
|
||||
'software_support' => '스프트웨어 지원',
|
||||
'hardware_support' => '하드웨어 지원',
|
||||
'configuration_change' => 'Configuration Change',
|
||||
'pat_test' => 'PAT Test',
|
||||
];
|
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'not_found' => '자산 관리를 찾을 수 없습니다!',
|
||||
'delete' => [
|
||||
'confirm' => '이 자산 관리를 삭제 하시겠습니까?',
|
||||
'error' => '자산 관리 삭제시에 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '자산 관리가 삭제되었습니다.',
|
||||
],
|
||||
'create' => [
|
||||
'error' => '자산 관리가 생성되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '자산 관리가 생성되었습니다.',
|
||||
],
|
||||
'edit' => [
|
||||
'error' => '자산 관리가 수정되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '자산 관리가 수정되었습니다.',
|
||||
],
|
||||
'asset_maintenance_incomplete' => '아직 완료되지 않았습니다.',
|
||||
'warranty' => '보증',
|
||||
'not_warranty' => '보증 안됨',
|
||||
];
|
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => '자산 관리',
|
||||
'asset_name' => '자산명',
|
||||
'is_warranty' => '보증',
|
||||
'dl_csv' => 'CSV로 내려받기',
|
||||
];
|
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'asset_categories' => '자산 분류',
|
||||
'category_name' => '분류 명',
|
||||
'checkin_email' => '반입/반출 시 사용자에게 이메일을 보냅니다.',
|
||||
'checkin_email_notification' => '이 사용자는 반입 / 반출 시 이메일을 보냅니다.',
|
||||
'clone' => '분류 복제',
|
||||
'create' => '분류 생성',
|
||||
'edit' => '분류 수정',
|
||||
'email_will_be_sent_due_to_global_eula' => 'An email will be sent to the user because the global EULA is being used.',
|
||||
'email_will_be_sent_due_to_category_eula' => 'An email will be sent to the user because a EULA is set for this category.',
|
||||
'eula_text' => '분류 사용권 계약서',
|
||||
'eula_text_help' => '이 필드는 특정 유형의 자산들에 대한 사용권 계약서들을 지정할 수 있게 해 줍니다. 당신의 모든 자산들에게 단 하나의 사용권 계약서만 가지고 있다면, 첫번째를 기본으로 사용하도록 아래의 상자에 체크할 수 있습니다.',
|
||||
'name' => '분류 명',
|
||||
'require_acceptance' => '이 분류의 자산 승인을 확인하는 사용자가 필요합니다.',
|
||||
'required_acceptance' => '이 사용자에게 이 항목의 승인을 확인하는 링크가 이메일로 전송됩니다.',
|
||||
'required_eula' => '이 사용자에게 사용권 계약서의 사본을 이메일로 전송합니다.',
|
||||
'no_default_eula' => '기본 사용권 계약서가 없습니다. 설정에서 추가하세요.',
|
||||
'update' => '분류 갱신',
|
||||
'use_default_eula' => '대체 <a href="#" data-toggle="modal" data-target="#eulaModal">기본 사용권 계약서</a>를 사용합니다.',
|
||||
'use_default_eula_disabled' => '<del>대체 기본 사용권 계약서를 사용합니다.</del> 기본 사용권 계약서가 정의되지 않았습니다. 설정에서 하나를 추가해 주세요.',
|
||||
'use_default_eula_column' => '기본 EULA 사용',
|
||||
|
||||
);
|
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => '분류가 존재하지 않습니다.',
|
||||
'assoc_models' => '이 분류는 적어도 한개의 모델과 연결되어 있기에 삭제할 수 없습니다. 이 분류를 참조하지 않게 모델을 수정하고 다시 시도해 주세요. ',
|
||||
'assoc_items' => '이 분류는 적어도 하나의 :asset_type 과 연결되어 있기에 삭제할 수 없습니다. 이 분류를 참조하지 않게 :asset_type 을 수정하고 다시 시도해 주세요. ',
|
||||
|
||||
'create' => array(
|
||||
'error' => '분류가 생성되지 않았습니다. 다시 시도해 주세요',
|
||||
'success' => '분류가 생성되었습니다.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '분류가 갱신되지 않았습니다. 다시 시도해 주세요',
|
||||
'success' => '분류가 갱신되었습니다.',
|
||||
'cannot_change_category_type' => 'You cannot change the category type once it has been created',
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 분류를 삭제하시겠습니까?',
|
||||
'error' => '분류 삭제 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '분류가 삭제되었습니다'
|
||||
)
|
||||
|
||||
);
|
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'eula_text' => '사용권 계약서',
|
||||
'id' => '아이디',
|
||||
'parent' => '상위',
|
||||
'require_acceptance' => '승인',
|
||||
'title' => '자산 분류 명',
|
||||
|
||||
);
|
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'select_company' => '회사 선택',
|
||||
'about_companies' => '회사 란',
|
||||
'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.',
|
||||
];
|
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'does_not_exist' => '회사가 없습니다.',
|
||||
'deleted' => 'Deleted company',
|
||||
'assoc_users' => '이 회사는 적어도 한개의 모델과 연결되어 있기에 삭제할 수 없습니다. 이 회사를 참조하지 않게 모델을 수정하고 다시 시도해 주세요. ',
|
||||
'create' => [
|
||||
'error' => '회사를 만들지 못했습니다. 재시도해 주십시오.',
|
||||
'success' => '회사를 만들었습니다.',
|
||||
],
|
||||
'update' => [
|
||||
'error' => '회사를 갱신하지 못했습니다. 재시도해 주십시오.',
|
||||
'success' => '회사를 갱신했습니다.',
|
||||
],
|
||||
'delete' => [
|
||||
'confirm' => '이 회사를 삭제하고자 하는게 맞습니까?',
|
||||
'error' => '회사 삭제 도중 이슈가 발생했습니다. 재시도해 주십시오.',
|
||||
'success' => '회사를 삭제했습니다.',
|
||||
],
|
||||
];
|
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
return array(
|
||||
'companies' => '회사들',
|
||||
'create' => '회사 생성',
|
||||
'email' => 'Company Email',
|
||||
'title' => '회사',
|
||||
'phone' => 'Company Phone',
|
||||
'update' => '회사 갱신',
|
||||
'name' => '회사명',
|
||||
'id' => '아이디',
|
||||
);
|
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'component_name' => '부품명',
|
||||
'checkin' => '반입 부품',
|
||||
'checkout' => '반출 부품',
|
||||
'cost' => '구매 원가',
|
||||
'create' => '부품 생성',
|
||||
'edit' => '부품 수정',
|
||||
'date' => '구매 일자',
|
||||
'order' => '주문 번호',
|
||||
'remaining' => '잔여수량',
|
||||
'total' => '총계',
|
||||
'update' => '부품 갱신',
|
||||
'checkin_limit' => 'Amount checked in must be equal to or less than :assigned_qty'
|
||||
);
|
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => '부품이 존재하지 않습니다.',
|
||||
|
||||
'create' => array(
|
||||
'error' => '부품이 생성되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '부품이 생성되었습니다.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '부품이 갱신되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '부품이 갱신 되었습니다.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 부품을 삭제하시겠습니까?',
|
||||
'error' => '부품 삭제시 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '부품이 삭제되었습니다.'
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
'error' => '부품이 반출되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '부품이 반출 되었습니다.',
|
||||
'user_does_not_exist' => '잘못된 사용자 입니다. 다시 시도해 주세요.',
|
||||
'unavailable' => 'Not enough components remaining: :remaining remaining, :requested requested ',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => '부품이 반입되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '부품이 반입되었습니다.',
|
||||
'user_does_not_exist' => '잘못된 사용자 입니다. 다시 시도해 주세요.'
|
||||
)
|
||||
|
||||
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'title' => '부품명',
|
||||
);
|
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'checkout' => '사용자에게 소모품 반출',
|
||||
'consumable_name' => '소모품 명',
|
||||
'create' => '소모품 생성',
|
||||
'item_no' => '항목 번호',
|
||||
'remaining' => '잔여수량',
|
||||
'total' => '총계',
|
||||
'update' => '소모품 갱신',
|
||||
);
|
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => '소모품이 존재하지 않습니다.',
|
||||
|
||||
'create' => array(
|
||||
'error' => '소모품이 생성되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '소모품이 생성되었습니다.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '소모품이 수정되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '소모품이 수정되었습니다.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 소모품을 삭제하시겠습니까?',
|
||||
'error' => '소모품 삭제시 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '소모품이 삭제 되었습니다.'
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
'error' => '소모품이 반출되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '소모품이 반출 되었습니다.',
|
||||
'user_does_not_exist' => '잘못된 사용자 입니다. 다시 시도해 주세요.',
|
||||
'unavailable' => 'There are not enough consumables for this checkout. Please check the quantity left. ',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => '소모품이 반입되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '소모품이 반입 되었습니다.',
|
||||
'user_does_not_exist' => '잘못된 사용자 입니다. 다시 시도해 주세요.'
|
||||
)
|
||||
|
||||
|
||||
);
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'title' => '소모품 명',
|
||||
);
|
@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'custom_fields' => '사용자 정의 항목들',
|
||||
'manage' => '관리',
|
||||
'field' => '항목',
|
||||
'about_fieldsets_title' => '항목세트란',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
|
||||
'custom_format' => 'Custom Regex format...',
|
||||
'encrypt_field' => '필드 암호화',
|
||||
'encrypt_field_help' => '경고: 항목을 암호화 하면 검색을 할 수 없습니다.',
|
||||
'encrypted' => '암호화',
|
||||
'fieldset' => '항목세트',
|
||||
'qty_fields' => '항목수',
|
||||
'fieldsets' => '항목세트',
|
||||
'fieldset_name' => '항목세트명',
|
||||
'field_name' => '항목명',
|
||||
'field_values' => '항목 값',
|
||||
'field_values_help' => '줄 당 한 개의 옵션을 선택하세요. 첫번째 줄 이후의 빈 줄은 무시됩니다.',
|
||||
'field_element' => '양식 성분',
|
||||
'field_element_short' => '성분',
|
||||
'field_format' => '형식',
|
||||
'field_custom_format' => '사용자 형식',
|
||||
'field_custom_format_help' => '이 항목을 사용하면 유효성 검사를 위해 정규 표현식을 사용할 수 있습니다. "regex:"로 시작해야 합니다 - 예를 들어, 사용자정의 항목 값에 올바른 IMEI (15 자리) 가 포함되어 있는지 확인하려면 <code>regex: / ^ [0-9]{15} $ / </code>을 사용합니다.',
|
||||
'required' => '필수사항',
|
||||
'req' => '필수',
|
||||
'used_by_models' => '적용 모델',
|
||||
'order' => '순서',
|
||||
'create_fieldset' => '신규 항목세트',
|
||||
'update_fieldset' => 'Update Fieldset',
|
||||
'fieldset_does_not_exist' => 'Fieldset :id does not exist',
|
||||
'fieldset_updated' => 'Fieldset updated',
|
||||
'create_fieldset_title' => 'Create a new fieldset',
|
||||
'create_field' => '신규 사용자 항목',
|
||||
'create_field_title' => 'Create a new custom field',
|
||||
'value_encrypted' => '이 항목의 값은 데이터베이스 내에서 암호화 되었습니다. 관리자만이 해독된 값을 확인 할 수 있습니다.',
|
||||
'show_in_email' => '사용자에게 전송된 반출 이메일에 이 항목의 값을 포함 시키시겠습니까? 암호화 된 항목들은 이메일에 포함될 수 없습니다',
|
||||
'show_in_email_short' => 'Include in emails.',
|
||||
'help_text' => 'Help Text',
|
||||
'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.',
|
||||
'about_custom_fields_title' => 'About Custom Fields',
|
||||
'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.',
|
||||
'add_field_to_fieldset' => 'Add Field to Fieldset',
|
||||
'make_optional' => 'Required - click to make optional',
|
||||
'make_required' => 'Optional - click to make required',
|
||||
'reorder' => 'Reorder',
|
||||
'db_field' => 'DB Field',
|
||||
'db_convert_warning' => 'WARNING. This field is in the custom fields table as <code>:db_column</code> but should be <code>:expected</code>.',
|
||||
'is_unique' => 'This value must be unique across all assets',
|
||||
'unique' => 'Unique',
|
||||
'display_in_user_view' => 'Allow the checked out user to view these values in their View Assigned Assets page',
|
||||
'display_in_user_view_table' => 'Visible to User',
|
||||
'auto_add_to_fieldsets' => 'Automatically add this to every new fieldset',
|
||||
'add_to_preexisting_fieldsets' => 'Add to any existing fieldsets',
|
||||
'show_in_listview' => 'Show in list views by default. Authorized users will still be able to show/hide via the column selector',
|
||||
'show_in_listview_short' => 'Show in lists',
|
||||
'show_in_requestable_list_short' => 'Show in requestable assets list',
|
||||
'show_in_requestable_list' => 'Show value in requestable assets list. Encrypted fields will not be shown',
|
||||
'encrypted_options' => 'This field is encrypted, so some display options will not be available.',
|
||||
|
||||
];
|
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'field' => array(
|
||||
'invalid' => '그 항목은 없습니다.',
|
||||
'already_added' => '이미 추가한 항목입니다.',
|
||||
|
||||
'create' => array(
|
||||
'error' => '항목을 생성하지 못했습니다. 재시도해 주십시오.',
|
||||
'success' => '항목을 생성했습니다.',
|
||||
'assoc_success' => '항목세트에 항목을 추가했습니다.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '항목을 생성하지 못했습니다. 재시도해 주십시오.',
|
||||
'success' => '항목을 갱신했습니다.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 항목을 삭제하는 것이 맞습니까?',
|
||||
'error' => '항목 삭제 도중에 이슈가 발생했습니다. 재시도해 주십시오.',
|
||||
'success' => '항목을 삭제했습니다.',
|
||||
'in_use' => '아직까지 항목을 사용하고 있습니다.',
|
||||
)
|
||||
|
||||
),
|
||||
|
||||
'fieldset' => array(
|
||||
|
||||
'does_not_exist' => '항목세트가 존재하지 않습니다',
|
||||
|
||||
'create' => array(
|
||||
'error' => '항목세트를 만들지 못했습니다. 재시도해 주십시오.',
|
||||
'success' => '항목세트를 생성했습니다.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '항목세트를 갱신하지 못했습니다. 재시도해 주십시오.',
|
||||
'success' => '항목세트를 갱신했습니다.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 항목세트를 삭제하는 것이 맞습니까?',
|
||||
'error' => '항목세트 삭제 도중에 이슈가 발생했습니다. 재시도해 주십시오.',
|
||||
'success' => '항목세트를 삭제했습니다.',
|
||||
'in_use' => '항목세트를 사용 중입니다.',
|
||||
)
|
||||
|
||||
),
|
||||
|
||||
'fieldset_default_value' => array(
|
||||
|
||||
'error' => 'Error validating default fieldset values.',
|
||||
|
||||
),
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
);
|
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => '부서가 존재하지 않습니다.',
|
||||
'department_already_exists' => 'A department already exists with that name at this company location. Or choose a more specific name for this department. ',
|
||||
'assoc_users' => '이 부서는 현재 적어도 한명의 사용자와 연결되어 있어서 삭제할 수 없습니다. 사용자가 더 이상 이 부서를 참조하지 않게 갱신하고 다시 시도해주세요. ',
|
||||
'create' => array(
|
||||
'error' => '부서가 생성되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '부서가 생성되었습니다.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => '부서가 갱신되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '부서가 갱신되었습니다.'
|
||||
),
|
||||
'delete' => array(
|
||||
'confirm' => '이 부서를 삭제하시겠습니까?',
|
||||
'error' => '부서를 삭제하는 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '부서가 삭제되었습니다.'
|
||||
)
|
||||
|
||||
);
|
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => '부서 명',
|
||||
'manager' => '관리자',
|
||||
'location' => '위치',
|
||||
'create' => '부서 생성',
|
||||
'update' => '부서 갱신',
|
||||
);
|
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'about_asset_depreciations' => '자산 감가 상각이란',
|
||||
'about_depreciations' => '가치가 하락하는 자산들을 직선법에 의한 감가상각 설정을 할 수 있습니다.',
|
||||
'asset_depreciations' => '자산 감가 상각',
|
||||
'create' => '감가 상각 생성',
|
||||
'depreciation_name' => '감가 상각 명',
|
||||
'depreciation_min' => 'Floor Value of Depreciation',
|
||||
'number_of_months' => '개월 수',
|
||||
'update' => '감가 상각 갱신',
|
||||
'depreciation_min' => '감가상각 완료 후 최소 가치',
|
||||
'no_depreciations_warning' => '<strong>Warning: </strong>
|
||||
You do not currently have any depreciations set up.
|
||||
Please set up at least one depreciation to view the depreciation report.',
|
||||
];
|
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => '감가 상각 등급이 존재하지 않습니다.',
|
||||
'assoc_users' => '이 감가 상각은 현재 하나 이상의 모델들에 연결되어 있습니다. 모델들을 삭제하고, 다시 삭제해 주세요. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => '감가 상각 등급이 생성되지 않았습니다. 다시 시도해 주세요. :(',
|
||||
'success' => '감가 상각 등급이 생성되었습니다. :)'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '감가 상각 등급이 갱신되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '감가 상각 등급이 갱신 되었습니다.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 감가 상각 등급을 삭제 하시겠습니까?',
|
||||
'error' => '감가 상각 등급 삭제 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '감가 상각 등급이 삭제되었습니다.'
|
||||
)
|
||||
|
||||
);
|
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'id' => '아이디',
|
||||
'months' => '개월',
|
||||
'term' => '기간',
|
||||
'title' => '이름 ',
|
||||
'depreciation_min' => 'Floor Value',
|
||||
|
||||
];
|
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'group_exists' => '그룹이 이미 존재합니다!',
|
||||
'group_not_found' => '그룹 ID :id가 존재하지 않습니다.',
|
||||
'group_name_required' => '이름 항목을 입력해주세요.',
|
||||
|
||||
'success' => array(
|
||||
'create' => '그룹이 생성되었습니다.',
|
||||
'update' => '그룹이 갱신되었습니다.',
|
||||
'delete' => '그룹이 삭제되었습니다.',
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 그룹을 삭제 하시겠습니까?',
|
||||
'create' => '그룹을 생성하는 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'update' => '그룹을 갱신하는 중 오류가 발생했습니다. 다시 시도해 주세요.',
|
||||
'delete' => '그룹을 삭제하는 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
),
|
||||
|
||||
);
|
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => '아이디',
|
||||
'name' => '이름',
|
||||
'users' => '사용자 # 명',
|
||||
|
||||
);
|
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'about_groups_title' => '그룹이란',
|
||||
'about_groups' => '그룹은 일반적인 당신의 권한에 사용된다.',
|
||||
'group_management' => '그룹 관리',
|
||||
'create' => '새 그룹 생성',
|
||||
'update' => '그룹 수정',
|
||||
'group_name' => '그룹 명',
|
||||
'group_admin' => '그룹 관리자',
|
||||
'allow' => '허용',
|
||||
'deny' => '거부',
|
||||
'permission' => 'Permission',
|
||||
'grant' => 'Grant',
|
||||
'no_permissions' => 'This group has no permissions.'
|
||||
];
|
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'bulk_delete' => '대량 자산 삭제 승인',
|
||||
'bulk_restore' => 'Confirm Bulk Restore Assets',
|
||||
'bulk_delete_help' => '아래의 대량 자산 삭제 내용을 검토하십시오. 삭제하시면 복구할 수 없고, 현재 할당되어 있는 사용자와의 연결이 끊어집니다.',
|
||||
'bulk_restore_help' => 'Review the assets for bulk restoration below. Once restored, these assets will not be associated with any users they were previously assigned to.',
|
||||
'bulk_delete_warn' => '삭제 대상: asset_count 개',
|
||||
'bulk_restore_warn' => 'You are about to restore :asset_count assets.',
|
||||
'bulk_update' => '대량 자산 갱신',
|
||||
'bulk_update_help' => '이 양식은 한번에 여러개의 자산들을 갱신하게 해줍니다. 변경하고 싶은 항목만 채워 넣으세요. 빈란으로 남겨둔 항목들은 변경되지 않을 것입니다. ',
|
||||
'bulk_update_warn' => 'You are about to edit the properties of a single asset.|You are about to edit the properties of :asset_count assets.',
|
||||
'bulk_update_with_custom_field' => 'Note the assets are :asset_model_count different types of models.',
|
||||
'bulk_update_model_prefix' => 'On Models',
|
||||
'bulk_update_custom_field_unique' => 'This is a unique field and can not be bulk edited.',
|
||||
'checkedout_to' => '반출 대상',
|
||||
'checkout_date' => '반출 일자',
|
||||
'checkin_date' => '반입 일자',
|
||||
'checkout_to' => '반출 대상',
|
||||
'cost' => '구매 원가',
|
||||
'create' => '자산 생성',
|
||||
'date' => '구매 일자',
|
||||
'depreciation' => '감가 상각',
|
||||
'depreciates_on' => '감가 상각 일자',
|
||||
'default_location' => '기본 장소',
|
||||
'default_location_phone' => 'Default Location Phone',
|
||||
'eol_date' => '폐기 일자',
|
||||
'eol_rate' => '폐기 비율',
|
||||
'expected_checkin' => '반입 예상 일',
|
||||
'expires' => '만료',
|
||||
'fully_depreciated' => '감가상각필',
|
||||
'help_checkout' => '이 자산을 즉시 사용하려면, 위의 상태 목록에서 "사용 준비"를 선택하세요. ',
|
||||
'mac_address' => 'MAC 주소',
|
||||
'manufacturer' => '제조업체',
|
||||
'model' => '모델',
|
||||
'months' => '개월',
|
||||
'name' => '자산 명',
|
||||
'notes' => '비고',
|
||||
'order' => '주문 번호',
|
||||
'qr' => 'QR 코드',
|
||||
'requestable' => '사용자가 이 자산을 요청하실 수 있습니다',
|
||||
'select_statustype' => '상태 유형 선택',
|
||||
'serial' => '일련번호',
|
||||
'status' => '상태',
|
||||
'tag' => '자산 태그',
|
||||
'update' => '자산 갱신',
|
||||
'warranty' => '보증',
|
||||
'warranty_expires' => '보증 만료일',
|
||||
'years' => '년',
|
||||
'asset_location' => 'Update Asset Location',
|
||||
'asset_location_update_default_current' => 'Update default location AND actual location',
|
||||
'asset_location_update_default' => 'Update only default location',
|
||||
'asset_location_update_actual' => 'Update only actual location',
|
||||
'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.',
|
||||
'asset_deployable' => 'That status is deployable. This asset can be checked out.',
|
||||
'processing_spinner' => 'Processing... (This might take a bit of time on large files)',
|
||||
'optional_infos' => 'Optional Information',
|
||||
'order_details' => 'Order Related Information'
|
||||
];
|
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'about_assets_title' => '자산이란',
|
||||
'about_assets_text' => '자산은 일련 번호나 자산 꼬리표로 추적되는 품목들입니다. 특정 품목의 상황을 파악하는 것이 더 높은 가치를 갖는 추세입니다.',
|
||||
'archived' => '보관됨',
|
||||
'asset' => '자산',
|
||||
'bulk_checkout' => '반출 자산',
|
||||
'bulk_checkin' => 'Checkin Assets',
|
||||
'checkin' => '반입 자산',
|
||||
'checkout' => '반출 자산',
|
||||
'clone' => '자산 복제',
|
||||
'deployable' => '사용가능',
|
||||
'deleted' => '자산이 삭제되었습니다.',
|
||||
'delete_confirm' => 'Are you sure you want to delete this asset?',
|
||||
'edit' => '자산 수정',
|
||||
'model_deleted' => '모델이 삭제되었습니다. 자산을 복원하기 전에 모델을 복원해야 합니다.',
|
||||
'model_invalid' => 'The Model of this Asset is invalid.',
|
||||
'model_invalid_fix' => 'The Asset should be edited to correct this before attempting to check it in or out.',
|
||||
'requestable' => '요청가능',
|
||||
'requested' => '요청됨',
|
||||
'not_requestable' => 'Not Requestable',
|
||||
'requestable_status_warning' => 'Do not change requestable status',
|
||||
'restore' => '자산 복원',
|
||||
'pending' => '대기중',
|
||||
'undeployable' => '사용불가',
|
||||
'undeployable_tooltip' => 'This asset has a status label that is undeployable and cannot be checked out at this time.',
|
||||
'view' => '자산 보기',
|
||||
'csv_error' => 'You have an error in your CSV file:',
|
||||
'import_text' => '<p>Upload a CSV that contains asset history. The assets and users MUST already exist in the system, or they will be skipped. Matching assets for history import happens against the asset tag. We will try to find a matching user based on the user\'s name you provide, and the criteria you select below. If you do not select any criteria below, it will simply try to match on the username format you configured in the <code>Admin > General Settings</code>.</p><p>Fields included in the CSV must match the headers: <strong>Asset Tag, Name, Checkout Date, Checkin Date</strong>. Any additional fields will be ignored. </p><p>Checkin Date: blank or future checkin dates will checkout items to associated user. Excluding the Checkin Date column will create a checkin date with todays date.</p>
|
||||
',
|
||||
'csv_import_match_f-l' => 'Try to match users by <strong>firstname.lastname</strong> (<code>jane.smith</code>) format',
|
||||
'csv_import_match_initial_last' => 'Try to match users by <strong>first initial last name</strong> (<code>jsmith</code>) format',
|
||||
'csv_import_match_first' => 'Try to match users by <strong>first name</strong> (<code>jane</code>) format',
|
||||
'csv_import_match_email' => 'Try to match users by <strong>email</strong> as username',
|
||||
'csv_import_match_username' => 'Try to match users by <strong>username</strong>',
|
||||
'error_messages' => 'Error messages:',
|
||||
'success_messages' => 'Success messages:',
|
||||
'alert_details' => 'Please see below for details.',
|
||||
'custom_export' => 'Custom Export',
|
||||
'mfg_warranty_lookup' => ':manufacturer Warranty Status Lookup',
|
||||
'user_department' => 'User Department',
|
||||
];
|
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'undeployable' => '<strong>경고: </strong> 이 자산은 현재 사용불가 상태입니다.
|
||||
이 상태를 변경하시려면, 자산 상태를 갱신하세요.',
|
||||
'does_not_exist' => '자산이 존재하지 않습니다.',
|
||||
'does_not_exist_or_not_requestable' => 'That asset does not exist or is not requestable.',
|
||||
'assoc_users' => '이 자산은 현재 사용자에게 반출 중이어서 삭제 할 수 없습니다. 먼저 자산을 확인해 보고 다시 삭제를 시도해 주세요. ',
|
||||
|
||||
'create' => [
|
||||
'error' => '자산이 생성되지 않았습니다. 다시 시도해 주세요. :(',
|
||||
'success' => '자산이 생성되었습니다. :)',
|
||||
'success_linked' => 'Asset with tag :tag was created successfully. <strong><a href=":link" style="color: white;">Click here to view</a></strong>.',
|
||||
],
|
||||
|
||||
'update' => [
|
||||
'error' => '자산이 갱신되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '자산이 갱신되었습니다.',
|
||||
'nothing_updated' => '선택된 항목이 없어서, 갱신 되지 않습니다.',
|
||||
'no_assets_selected' => 'No assets were selected, so nothing was updated.',
|
||||
'assets_do_not_exist_or_are_invalid' => 'Selected assets cannot be updated.',
|
||||
],
|
||||
|
||||
'restore' => [
|
||||
'error' => '자산이 복원되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '자산이 복원되었습니다.',
|
||||
'bulk_success' => '자산이 복원되었습니다.',
|
||||
'nothing_updated' => 'No assets were selected, so nothing was restored.',
|
||||
],
|
||||
|
||||
'audit' => [
|
||||
'error' => '자산 감사가 실패했습니다. 다시 시도해 주세요.',
|
||||
'success' => '자산 감사가 성공적으로 기록되었습니다.',
|
||||
],
|
||||
|
||||
|
||||
'deletefile' => [
|
||||
'error' => '파일이 삭제되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '파일이 삭제되었습니다.',
|
||||
],
|
||||
|
||||
'upload' => [
|
||||
'error' => '파일(들)이 업로드 되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '파일(들)이 업로드 되었습니다.',
|
||||
'nofiles' => '업로드 하기 위한 파일이 선택되지 않았거나, 업로드 할 파일이 너무 큽니다.',
|
||||
'invalidfiles' => '하나 이상의 파일이 너무 크거나 허용되지 않는 형식입니다. 허용되는 형식은 png, gif, jpg, doc, docx, pdf, txt 입니다.',
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'error' => '몇몇 품목들을 정확하게 읽어오지 못했습니다.',
|
||||
'errorDetail' => '다음 품목들은 오류로 읽어오지 못했습니다.',
|
||||
'success' => '파일에서 읽어오기가 완료되었습니다',
|
||||
'file_delete_success' => '파일 삭제가 완료되었습니다',
|
||||
'file_delete_error' => '파일을 삭제할 수 없습니다',
|
||||
'file_missing' => 'The file selected is missing',
|
||||
'header_row_has_malformed_characters' => 'One or more attributes in the header row contain malformed UTF-8 characters',
|
||||
'content_row_has_malformed_characters' => 'One or more attributes in the first row of content contain malformed UTF-8 characters',
|
||||
],
|
||||
|
||||
|
||||
'delete' => [
|
||||
'confirm' => '이 자산을 삭제하시겠습니까?',
|
||||
'error' => '그룹을 삭제하는 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'nothing_updated' => '선택된 자산이 없기에, 삭제되지 않습니다.',
|
||||
'success' => '자산이 삭제되었습니다.',
|
||||
],
|
||||
|
||||
'checkout' => [
|
||||
'error' => '자산이 반출되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '자산이 반출되었습니다.',
|
||||
'user_does_not_exist' => '잘못된 사용자 입니다. 다시 시도해 주세요.',
|
||||
'not_available' => '그 자산은 반출 할 수 없습니다!',
|
||||
'no_assets_selected' => '목록에서 자산을 하나 이상 선택해야 합니다.',
|
||||
],
|
||||
|
||||
'checkin' => [
|
||||
'error' => '자산이 반입되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '자산이 반입되었습니다.',
|
||||
'user_does_not_exist' => '잘못된 사용자 입니다. 다시 시도해 주세요.',
|
||||
'already_checked_in' => '그 자산은 이미 반입되었습니다.',
|
||||
|
||||
],
|
||||
|
||||
'requests' => [
|
||||
'error' => '자산을 불러오지 못했습니다. 재시도해 주십시오.',
|
||||
'success' => '자산을 불러왔습니다.',
|
||||
'canceled' => '반출 요청이 취소되었습니다',
|
||||
],
|
||||
|
||||
];
|
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'asset_tag' => '자산 태그',
|
||||
'asset_model' => '모델',
|
||||
'assigned_to' => '할당',
|
||||
'book_value' => 'Current Value',
|
||||
'change' => '입/출',
|
||||
'checkout_date' => '반출 일자',
|
||||
'checkoutto' => '반출 확인',
|
||||
'components_cost' => 'Total Components Cost',
|
||||
'current_value' => 'Current Value',
|
||||
'diff' => '차액',
|
||||
'dl_csv' => 'CSV로 내려받기',
|
||||
'eol' => '폐기일',
|
||||
'id' => '아이디',
|
||||
'last_checkin_date' => 'Last Checkin Date',
|
||||
'location' => '위치',
|
||||
'purchase_cost' => '원가',
|
||||
'purchase_date' => '구매',
|
||||
'serial' => '일련번호',
|
||||
'status' => '상태',
|
||||
'title' => '자산 ',
|
||||
'image' => '장비 사진',
|
||||
'days_without_acceptance' => '미 승인 기간',
|
||||
'monthly_depreciation' => '월간 감가상각',
|
||||
'assigned_to' => '할당',
|
||||
'requesting_user' => 'Requesting User',
|
||||
'requested_date' => 'Requested Date',
|
||||
'changed' => '변경됨',
|
||||
'icon' => 'Icon',
|
||||
];
|
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'about_kits_title' => '사전 정의 도구들',
|
||||
'about_kits_text' => '미리 정의된 키트를 사용하여 사용자에게 아이템(자산, 라이센스 등) 컬렉션을 신속하게 체크아웃할 수 있습니다. 이 기능은 온보드 프로세스가 여러 사용자 간에 일관되고 모든 사용자가 동일한 항목을 수신할 때 유용합니다.',
|
||||
'checkout' => '체크 아웃 키트',
|
||||
'create_success' => '키트가 생성되었습니다.',
|
||||
'create' => '사전 정의된 키트 생성',
|
||||
'update' => '사전 정의된 키트 업데이트',
|
||||
'delete_success' => '키트가 삭제되었습니다.',
|
||||
'update_success' => '키트가 생성되었습니다.',
|
||||
'none_models' => ':model 자산을 반출할 수 없습니다 : 수량 부족, :qty 개 가 필요합니다.',
|
||||
'none_licenses' => ':license 라이센스를 반출할 수 없습니다 : 수량 부족, :qty 개 가 필요합니다.',
|
||||
'none_consumables' => ':consumable 소모품을 반출할 수 없습니다 : 수량 부족, :qty 개 가 필요합니다.',
|
||||
'none_accessory' => ':accessory 부속품을 반출할 수 없습니다 : 수량 부족, :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_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_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' => '부속품이 존재하지 않습니다',
|
||||
'checkout_success' => 'Checkout was successful',
|
||||
'checkout_error' => 'Checkout error',
|
||||
'kit_none' => 'Kit does not exist',
|
||||
'kit_created' => '키트가 생성되었습니다',
|
||||
'kit_updated' => '키트가 생성되었습니다',
|
||||
'kit_not_found' => 'Kit not found',
|
||||
'kit_deleted' => '키트가 삭제되었습니다',
|
||||
'kit_model_updated' => 'Model was successfully updated',
|
||||
'kit_model_detached' => 'Model was successfully detached',
|
||||
];
|
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'invalid_return_count' => 'Invalid count returned from :name. Expected :expected, got :actual.',
|
||||
'invalid_return_type' => 'Invalid type returned from :name. Expected :expected, got :actual.',
|
||||
'invalid_return_value' => 'Invalid value returned from :name. Expected :expected, got :actual.',
|
||||
|
||||
'does_not_exist' => 'Label does not exist',
|
||||
|
||||
];
|
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'example_company' => 'Test Company Limited',
|
||||
'example_defaultloc' => 'Building 1',
|
||||
'example_category' => 'Test Category',
|
||||
'example_location' => 'Building 2',
|
||||
'example_manufacturer' => 'Test Manufacturing Inc.',
|
||||
'example_model' => 'Test Model',
|
||||
'example_supplier' => 'Test Company Limited',
|
||||
'labels_per_page' => 'Labels',
|
||||
'support_fields' => 'Fields',
|
||||
'support_asset_tag' => '태그',
|
||||
'support_1d_barcode' => '1D',
|
||||
'support_2d_barcode' => '2D',
|
||||
'support_logo' => '로고',
|
||||
'support_title' => '제목',
|
||||
|
||||
];
|
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'asset' => '자산',
|
||||
'checkin' => '반입',
|
||||
'create' => '라이선스 생성',
|
||||
'expiration' => '만료 날짜',
|
||||
'license_key' => '제품 키',
|
||||
'maintained' => '유지보수',
|
||||
'name' => '소프트웨어 명',
|
||||
'no_depreciation' => '감가 상각하지 않음',
|
||||
'purchase_order' => '구매 주문 번호',
|
||||
'reassignable' => '재배치가능',
|
||||
'remaining_seats' => '잔여 Seats',
|
||||
'seats' => 'Seats',
|
||||
'termination_date' => '종료 일자',
|
||||
'to_email' => '라이선스 메일 주소',
|
||||
'to_name' => '라이선스 발급자',
|
||||
'update' => '라이선스 갱신',
|
||||
'checkout_help' => '하드웨어 자산이나 개인에게서 라이선스를 확인을 해야 합니다. 둘 다 선택할 수 있지만, 자산 반출 시마다 자산의 소유자와 개인이 일치하는지 확인을 해야 합니다.'
|
||||
);
|
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about_licenses_title' => '라이선스 란',
|
||||
'about_licenses' => '라이선스는 소프트웨어를 추적하는데 사용됩니다. 개인에게 반출 할 수 있는 수량이 정의되어 있습니다',
|
||||
'checkin' => '라이선스 Seat 확인',
|
||||
'checkout_history' => '반출 이력',
|
||||
'checkout' => '반출 라이선스 Seat',
|
||||
'edit' => '라이선스 편집',
|
||||
'filetype_info' => '허용되는 형식들은 png, gif, jpeg, doc, docx, pdf, txt, zip, rar 입니다.',
|
||||
'clone' => '라이선스 복제',
|
||||
'history_for' => '이력 ',
|
||||
'in_out' => '입/출',
|
||||
'info' => '라이선스 정보',
|
||||
'license_seats' => '라이선스 Seats',
|
||||
'seat' => 'Seat',
|
||||
'seats' => 'Seats',
|
||||
'software_licenses' => '소프트웨어 라이선스',
|
||||
'user' => '사용자',
|
||||
'view' => '라이선스 보기',
|
||||
'delete_disabled' => 'This license cannot be deleted yet because some seats are still checked out.',
|
||||
'bulk' =>
|
||||
[
|
||||
'checkin_all' => [
|
||||
'button' => 'Checkin All Seats',
|
||||
'modal' => 'This will action checkin one seat. | This action will checkin all :checkedout_seats_count seats for this license.',
|
||||
'enabled_tooltip' => 'Checkin ALL seats for this license from both users and assets',
|
||||
'disabled_tooltip' => 'This is disabled because there are no seats currently checked out',
|
||||
'disabled_tooltip_reassignable' => 'This is disabled because the License is not reassignable',
|
||||
'success' => 'License successfully checked in! | All licenses were successfully checked in!',
|
||||
'log_msg' => 'Checked in via bulk license checkout in license GUI',
|
||||
],
|
||||
|
||||
'checkout_all' => [
|
||||
'button' => 'Checkout All Seats',
|
||||
'modal' => 'This action will checkout one seat to the first available user. | This action will checkout all :available_seats_count seats to the first available users. A user is considered available for this seat if they do not already have this license checked out to them, and the Auto-Assign License property is enabled on their user account.',
|
||||
'enabled_tooltip' => 'Checkout ALL seats (or as many as are available) to ALL users',
|
||||
'disabled_tooltip' => 'This is disabled because there are no seats currently available',
|
||||
'success' => 'License successfully checked out! | :count licenses were successfully checked out!',
|
||||
'error_no_seats' => 'There are no remaining seats left for this license.',
|
||||
'warn_not_enough_seats' => ':count users were assigned this license, but we ran out of available license seats.',
|
||||
'warn_no_avail_users' => 'Nothing to do. There are no users who do not already have this license assigned to them.',
|
||||
'log_msg' => 'Checked out via bulk license checkout in license GUI',
|
||||
|
||||
|
||||
],
|
||||
],
|
||||
|
||||
'below_threshold' => 'There are only :remaining_count seats left for this license with a minimum quantity of :min_amt. You may want to consider purchasing more seats.',
|
||||
'below_threshold_short' => 'This item is below the minimum required quantity.',
|
||||
);
|
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'License does not exist or you do not have permission to view it.',
|
||||
'user_does_not_exist' => '사용자가 존재하지 않습니다.',
|
||||
'asset_does_not_exist' => '이 라이선스와 연결하려는 자산이 존재하지 않습니다.',
|
||||
'owner_doesnt_match_asset' => '이 라이센스와 연결하려고하는 자산은 드롭 다운 목록에서 선택한 사람이 아닌 다른 누군가가 소유하고 있습니다.',
|
||||
'assoc_users' => '이 자산은 현재 사용자에게 반출 중이어서 삭제 할 수 없습니다. 먼저 자산을 확인해 보고 다시 삭제를 시도해 주세요. ',
|
||||
'select_asset_or_person' => '애셋이나 사용자 중 하나만 선택해야하며 둘 다 선택할 수는 없습니다.',
|
||||
'not_found' => '라이센스를 찾을 수 없음',
|
||||
'seats_available' => ':seat_count seats available',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => '라이선스가 생성되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '라이선스가 생성되었습니다.'
|
||||
),
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => '파일이 삭제되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '파일이 삭제되었습니다.',
|
||||
),
|
||||
|
||||
'upload' => array(
|
||||
'error' => '파일(들)이 업로드 되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '파일(들)이 업로드 되었습니다.',
|
||||
'nofiles' => '업로드 하기 위한 파일이 선택되지 않았거나, 업로드 할 파일이 너무 큽니다.',
|
||||
'invalidfiles' => '하나 이상의 파일이 너무 크거나 허용되지 않는 형식입니다. 허용되는 형식은 png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, rar, rtf, xml, lic 입니다.',
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '라이선스가 갱신되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '라이선스가 갱신되었습니다.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 라이선스를 삭제하시겠습니까?',
|
||||
'error' => '라이선스 삭제 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '라이선스가 삭제되었습니다.'
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
'error' => '라이선스 반출 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '라이선스가 반출 되었습니다.',
|
||||
'not_enough_seats' => 'Not enough license seats available for checkout',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => '라이선스 반입 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '라이선스가 반입 되었습니다.'
|
||||
),
|
||||
|
||||
);
|
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'assigned_to' => '사용자',
|
||||
'checkout' => '입/출',
|
||||
'id' => '아이디',
|
||||
'license_email' => '라이선스 메일주소',
|
||||
'license_name' => '인증 대상',
|
||||
'purchase_date' => '구매 일자',
|
||||
'purchased' => '구매',
|
||||
'seats' => 'Seats',
|
||||
'hardware' => '하드웨어',
|
||||
'serial' => '일련번호',
|
||||
'title' => '라이선스',
|
||||
|
||||
);
|
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => '장소가 존재하지 않습니다.',
|
||||
'assoc_users' => '이 장소는 현재 적어도 한명의 사용자와 연결되어 있어서 삭제할 수 없습니다. 사용자가 더 이상 이 장소를 참조하지 않게 갱신하고 다시 시도해주세요. ',
|
||||
'assoc_assets' => '이 장소는 현재 적어도 한명의 사용자와 연결되어 있어서 삭제할 수 없습니다. 사용자가 더 이상 이 장소를 참조하지 않게 갱신하고 다시 시도해주세요. ',
|
||||
'assoc_child_loc' => '이 장소는 현재 하나 이상의 하위 장소를 가지고 있기에 삭제 할 수 없습니다. 이 장소의 참조를 수정하고 다시 시도해 주세요. ',
|
||||
'assigned_assets' => 'Assigned Assets',
|
||||
'current_location' => 'Current Location',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => '장소가 생성되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '장소가 생성되었습니다.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '장소가 갱신되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '장소가 갱신되었습니다.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 장소를 삭제하시겠습니까?',
|
||||
'error' => '장소 삭제 중에 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '장소가 삭제되었습니다.'
|
||||
)
|
||||
|
||||
);
|
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'about_locations_title' => '장소 란',
|
||||
'about_locations' => '장소는 사용자, 자산, 그리고 그외의 품목들에 대한 위치 정보 추적에 사용된다',
|
||||
'assets_rtd' => '자산', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted.
|
||||
'assets_checkedout' => '할당된 자산',
|
||||
'id' => '아이디',
|
||||
'city' => '시',
|
||||
'state' => '주',
|
||||
'country' => '국가명',
|
||||
'create' => '장소 생성',
|
||||
'update' => '장소 갱신',
|
||||
'print_assigned' => '할당된 항목 인쇄',
|
||||
'print_all_assigned' => '할당된 항목 모두 인쇄',
|
||||
'name' => '장소 명',
|
||||
'address' => '주소',
|
||||
'address2' => 'Address Line 2',
|
||||
'zip' => '우편번호',
|
||||
'locations' => '위치',
|
||||
'parent' => '상위',
|
||||
'currency' => '현지 통화',
|
||||
'ldap_ou' => 'LDAP 검색 OU',
|
||||
'user_name' => '사용자 이름',
|
||||
'department' => '부서',
|
||||
'location' => '위치',
|
||||
'asset_tag' => '자산 태그',
|
||||
'asset_name' => '이름',
|
||||
'asset_category' => '항목',
|
||||
'asset_manufacturer' => '제조사',
|
||||
'asset_model' => '모델명',
|
||||
'asset_serial' => '일련번호',
|
||||
'asset_location' => '위치',
|
||||
'asset_checked_out' => '반출 확인',
|
||||
'asset_expected_checkin' => 'Expected Checkin',
|
||||
'date' => '날짜:',
|
||||
'phone' => 'Location Phone',
|
||||
'signed_by_asset_auditor' => 'Signed By (Asset Auditor):',
|
||||
'signed_by_finance_auditor' => 'Signed By (Finance Auditor):',
|
||||
'signed_by_location_manager' => 'Signed By (Location Manager):',
|
||||
'signed_by' => 'Signed Off By:',
|
||||
];
|
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'support_url_help' => 'Variables <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, and <code>{MODEL_NAME}</code> may be used in your URL to have those values auto-populate when viewing assets - for example https://checkcoverage.apple.com/{LOCALE}/{SERIAL}.',
|
||||
'does_not_exist' => '제조업체가 존재하지 않습니다.',
|
||||
'assoc_users' => '이 제조업체는 현재 적어도 하나의 모델에 연결되어 있기에 삭제 할 수 없습니다. 이 제조업체가 모델을 참조 하지 않게 수정하고 다시 시도 해 보세요. ',
|
||||
|
||||
'create' => array(
|
||||
'error' => '제조업체가 생성되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '제조업체가 생성되었습니다.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '제조업체가 갱신되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '제조업체가 갱신되었습니다.'
|
||||
),
|
||||
|
||||
'restore' => array(
|
||||
'error' => '제조업체가 복원되지 않았습니다. 다시 시도해 주세요',
|
||||
'success' => '제조업체가 복원되었습니다.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 제조업체를 삭제하시겠습니까?',
|
||||
'error' => '제조업체를 삭제하는 중에 문제가 생겼습니다. 다시 시도해 주세요.',
|
||||
'success' => '제조업체가 삭제되었습니다.'
|
||||
)
|
||||
|
||||
);
|
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about_manufacturers_title' => '제조업체 란',
|
||||
'about_manufacturers_text' => '생산자는 당신의 자산들을 생산한 회사들입니다. 여기에 자산 상세 페이지에 나타날, 그들에 대한 중요한 지원 연락처 정보를 저장 할 수 있습니다.',
|
||||
'asset_manufacturers' => '자산 제조업체',
|
||||
'create' => '제조업체 생성',
|
||||
'id' => '아이디',
|
||||
'name' => '이름',
|
||||
'support_email' => '지원 이메일',
|
||||
'support_phone' => '지원 전화',
|
||||
'support_url' => '지원 URL',
|
||||
'warranty_lookup_url' => 'Warranty Lookup URL',
|
||||
'update' => '제조업체 갱신',
|
||||
|
||||
);
|
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about_models_title' => '자산 모델이란',
|
||||
'about_models_text' => '자산 모델은 동일한 자산들을 그룹화 하는 방법입니다. "MBP 2013", "IPhone 6들", 등등.',
|
||||
'deleted' => '모델이 삭제되었습니다.',
|
||||
'bulk_delete' => '자산 모델 대량 삭제',
|
||||
'bulk_delete_help' => '선택한 자산 모델의 삭제를 확인하려면 아래 체크박스를 사용하십시오. 자산에 연결된 자산 모델은 자산이 다른 모델과 연결될 때까지 삭제할 수 없습니다.',
|
||||
'bulk_delete_warn' => 'You are about to delete one asset model.|You are about to delete :model_count asset models.',
|
||||
'restore' => '모델 복원',
|
||||
'requestable' => '사용자가 이 모델을 요청하실 수 있습니다',
|
||||
'show_mac_address' => '이 모델의 자산에서 MAC 어드레스 항목 보기',
|
||||
'view_deleted' => '삭제 목록 보기',
|
||||
'view_models' => '모델 보기',
|
||||
'fieldset' => '항목세트',
|
||||
'no_custom_field' => '사용자 정의 항목 없음',
|
||||
'add_default_values' => '기본값 추가',
|
||||
);
|
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'deleted' => 'Deleted asset model',
|
||||
'does_not_exist' => '모델이 존재하지 않습니다.',
|
||||
'no_association' => 'WARNING! The asset model for this item is invalid or missing!',
|
||||
'no_association_fix' => 'This will break things in weird and horrible ways. Edit this asset now to assign it a model.',
|
||||
'assoc_users' => '이 모델은 현재 하나 이상의 자산들과 연결되어 있기에 삭제 할 수 없습니다. 자산들을 삭제하고 다시 삭제하길 시도하세요. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => '모델이 생성되지 않았습니다. 다시 시도하세요.',
|
||||
'success' => '모델이 생성되었습니다.',
|
||||
'duplicate_set' => '이름, 제조사 그리고 모델 번호가 같은 자산 모델이 존재합니다.',
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '모델이 갱신되지 않았습니다. 다시 시도하세요.',
|
||||
'success' => '모델이 갱신되었습니다.',
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 자산 모델을 삭제 하시겠습니까?',
|
||||
'error' => '모델을 삭제하는 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '모델이 삭제되었습니다.'
|
||||
),
|
||||
|
||||
'restore' => array(
|
||||
'error' => '모델이 복원되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '모델이 복원되었습니다.'
|
||||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => '변경된 항목이 없어서, 갱신되지 않습니다.',
|
||||
'success' => 'Model successfully updated. |:model_count models successfully updated.',
|
||||
'warn' => 'You are about to update the properties of the following model:|You are about to edit the properties of the following :model_count models:',
|
||||
|
||||
),
|
||||
|
||||
'bulkdelete' => array(
|
||||
'error' => '선택된 모델이 없기에, 삭제되지 않습니다.',
|
||||
'success' => 'Model deleted!|:success_count models deleted!',
|
||||
'success_partial' => ': success_count개의 모델이 삭제되었지만, fail_count 개는 관련된 자산이 있기에 삭제할 수 없습니다.'
|
||||
),
|
||||
|
||||
);
|
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'create' => '자산 모델 생성',
|
||||
'created_at' => '생성 위치',
|
||||
'eol' => '폐기일',
|
||||
'modelnumber' => '모델 번호.',
|
||||
'name' => '자산 모델 명',
|
||||
'numassets' => '자산',
|
||||
'title' => '자산 모델',
|
||||
'update' => '자산 모델 갱신',
|
||||
'view' => '자산 모델 보기',
|
||||
'update' => '자산 모델 갱신',
|
||||
'clone' => '모델 복제',
|
||||
'edit' => '모델 편집',
|
||||
);
|
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'info' => '자산 보고서의 옵션을 선택해 주세요.',
|
||||
'deleted_user' => 'Deleted user',
|
||||
'send_reminder' => 'Send reminder',
|
||||
'reminder_sent' => 'Reminder sent',
|
||||
'acceptance_deleted' => 'Acceptance request deleted',
|
||||
'acceptance_request' => 'Acceptance request',
|
||||
'custom_export' => [
|
||||
'user_address' => 'User Address',
|
||||
'user_city' => 'User City',
|
||||
'user_state' => 'User State',
|
||||
'user_country' => 'User Country',
|
||||
'user_zip' => 'User Zip'
|
||||
]
|
||||
];
|
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'error' => '적어도 옵션 하나는 선택해 주세요.'
|
||||
);
|
@ -0,0 +1,367 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'ad' => 'Active Directory',
|
||||
'ad_domain' => 'Active Directory 도메인',
|
||||
'ad_domain_help' => '이것은 보통은 당신의 이메일 주소와 같지만, 항상 같지는 않습니다.',
|
||||
'ad_append_domain_label' => '도메인 추가',
|
||||
'ad_append_domain' => 'username 필드에 도메인 추가',
|
||||
'ad_append_domain_help' => '사용자는 "username@domain.local" 꼴로 입력할 필요가 없으며 "username"만 입력하면 됩니다.',
|
||||
'admin_cc_email' => '참조 이메일',
|
||||
'admin_cc_email_help' => '사용자에게 보낸 반입/반출 이메일 사본을 추가 이메일 계정으로 보내려면, 여기에 입력하세요. 그렇지 않으면 이 필드를 비워 두세요.',
|
||||
'admin_settings' => 'Admin Settings',
|
||||
'is_ad' => '이것은 액티브 디렉토리 서버입니다.',
|
||||
'alerts' => 'Alerts',
|
||||
'alert_title' => 'Update Notification Settings',
|
||||
'alert_email' => '알림 전송',
|
||||
'alert_email_help' => 'Email addresses or distribution lists you want alerts to be sent to, comma separated',
|
||||
'alerts_enabled' => '알림 사용',
|
||||
'alert_interval' => '(일자) 최대값 만료 알림',
|
||||
'alert_inv_threshold' => '재고 알림 최대값',
|
||||
'allow_user_skin' => '유저 스킨 허용',
|
||||
'allow_user_skin_help_text' => '이 항목을 선택하면 사용자가 다른 UI 스킨을 다른 스킨으로 변경하는 것을 허용합니다.',
|
||||
'asset_ids' => '자산 ID',
|
||||
'audit_interval' => '감사 간격',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date will be updated.',
|
||||
'audit_warning_days' => '감사 경고 임계값',
|
||||
'audit_warning_days_help' => '자산 회계 감사가 예정되어 있을 때 몇 일 전에 경고할까요?',
|
||||
'auto_increment_assets' => 'Generate auto-incrementing asset tags',
|
||||
'auto_increment_prefix' => '접두사 (부가적)',
|
||||
'auto_incrementing_help' => 'Enable auto-incrementing asset tags first to set this',
|
||||
'backups' => '예비품',
|
||||
'backups_help' => 'Create, download, and restore backups ',
|
||||
'backups_restoring' => 'Restoring from Backup',
|
||||
'backups_upload' => 'Upload Backup',
|
||||
'backups_path' => 'Backups on the server are stored in <code>:path</code>',
|
||||
'backups_restore_warning' => 'Use the restore button <small><span class="btn btn-xs btn-warning"><i class="text-white fas fa-retweet" aria-hidden="true"></i></span></small> to restore from a previous backup. (This does not currently work with S3 file storage or Docker.)<br><br>Your <strong>entire :app_name database and any uploaded files will be completely replaced</strong> by what\'s in the backup file. ',
|
||||
'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.',
|
||||
'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ',
|
||||
'barcode_settings' => '바코드 설정',
|
||||
'confirm_purge' => '삭제 확인',
|
||||
'confirm_purge_help' => '삭제된 레코드를 제거하려면 아래 입력 란에 "DELETE" 텍스트를 입력하십시오. 이 작업은 취소할 수 없으며 일시 삭제된 모든 항목과 사용자를 영구적으로 삭제합니다. (작업 전 백업을 진행하시기 바랍니다.)',
|
||||
'custom_css' => '사용자 지정 CSS',
|
||||
'custom_css_help' => '사용하려는 사용자 CSS를 입력하세요. <style></style> 태그들은 넣지 마세요.',
|
||||
'custom_forgot_pass_url' => '사용자정의 암호 재설정 URL',
|
||||
'custom_forgot_pass_url_help' => '이것은 로그인 화면에 내장된 잊어버린 비밀번호 URL을 변경하여, 내부 또는 호스트 LDAP 암호 재설정 기능으로 사람들을 안내할 때 유용합니다. 로컬 사용자가 잊어버린 비밀번호 기능을 효과적으로 비활성화합니다.',
|
||||
'dashboard_message' => '대시보드 메시지',
|
||||
'dashboard_message_help' => '이 문구는 대시보드 조회 권한이 있는 모든 사용자 대상으로 대시보드에 표시됩니다.',
|
||||
'default_currency' => '기본 통화',
|
||||
'default_eula_text' => '기본 사용권 계약',
|
||||
'default_language' => '기본 언어',
|
||||
'default_eula_help_text' => '또한 특정 자산 분류에는 맞춤형 사용권 계약들과 연결을 해야 합니다.',
|
||||
'display_asset_name' => '자산 명 표시',
|
||||
'display_checkout_date' => '반출 일자 표시',
|
||||
'display_eol' => '테이블 보기에서 폐기일 표시',
|
||||
'display_qr' => 'Qr 코드 표시',
|
||||
'display_alt_barcode' => '1 D 바코드 표시',
|
||||
'email_logo' => '이메일 내 로고',
|
||||
'barcode_type' => '2D 바코드 형식',
|
||||
'alt_barcode_type' => '1D 바코드 형식',
|
||||
'email_logo_size' => '이메일 첨부 시, 사각형 로고가 가장 적합합니다. ',
|
||||
'enabled' => 'Enabled',
|
||||
'eula_settings' => '최종 사용 계약 설정',
|
||||
'eula_markdown' => '이 최종 사용 계약은 <a href="https://help.github.com/articles/github-flavored-markdown/">GFM을 따른다</a>.',
|
||||
'favicon' => '파비콘',
|
||||
'favicon_format' => 'ico, png, gif 확장자만 혀용됩니다. 다른 이미지 포맷의 경우 모든 브라우저에서 작동하지 않을 수 있습니다.',
|
||||
'favicon_size' => '파비콘은 16x16 픽셀을 가지는 사각형 이미지여야 합니다.',
|
||||
'footer_text' => '추가 꼬리말',
|
||||
'footer_text_help' => '이 글은 오른쪽 꼬리말에 보여집니다. 링크는 <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>를 참조하시면 됩니다. 줄 바꿈 머리글, 이미지 등은 보여지지 않습니다.',
|
||||
'general_settings' => '일반 설정',
|
||||
'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, gravatar, tos, dashboard, privacy',
|
||||
'general_settings_help' => 'Default EULA and more',
|
||||
'generate_backup' => '백업 생성',
|
||||
'google_workspaces' => 'Google Workspaces',
|
||||
'header_color' => '머릿말 색상',
|
||||
'info' => '이 설정들은 설치본의 특정 분야를 설정하는 것입니다.',
|
||||
'label_logo' => '라벨 로고',
|
||||
'label_logo_size' => '정사각형 로고가 가장 보기 좋습니다. 로고는 각 자산 레이블의 오른쪽 상단에 표시됩니다. ',
|
||||
'laravel' => 'Laravel 버전',
|
||||
'ldap' => 'LDAP',
|
||||
'ldap_default_group' => 'Default Permissions Group',
|
||||
'ldap_default_group_info' => 'Select a group to assign to newly synced users. Remember that a user takes on the permissions of the group they are assigned.',
|
||||
'no_default_group' => 'No Default Group',
|
||||
'ldap_help' => 'LDAP/Active Directory',
|
||||
'ldap_client_tls_key' => 'LDAP 사용자 키',
|
||||
'ldap_client_tls_cert' => 'LDAP 사용자 인증서',
|
||||
'ldap_enabled' => 'LDAP 활성',
|
||||
'ldap_integration' => 'LDAP 연동',
|
||||
'ldap_settings' => 'LDAP 설정',
|
||||
'ldap_client_tls_cert_help' => '클라이언트 측 TLS 인증서 및 LDAP 연결용 키는 일반적으로 \'보안 LDAP\'가 포함된 Google Workspace 구성에서만 유용합니다.',
|
||||
'ldap_location' => 'LDAP Location',
|
||||
'ldap_location_help' => 'The Ldap Location field should be used if <strong>an OU is not being used in the Base Bind DN.</strong> Leave this blank if an OU search is being used.',
|
||||
'ldap_login_test_help' => '위에서 지정한 기본 DN의 유효한 LDAP 사용자 이름 및 비밀번호를 입력하여 LDAP 로그인이 올바르게 구성되었는지 테스트하십시오. 반드시 업데이트 된 LDAP 설정을 먼저 저장해야합니다.',
|
||||
'ldap_login_sync_help' => '이것은 LDAP가 올바르게 동기화 될 수 있는지 테스트합니다. LDAP 인증 질의어가 올바르지 않으면 사용자가 여전히 로그인하지 못할 수 있습니다. 반드시 업데이트 된 LDAP 설정을 먼저 저장해야합니다.',
|
||||
'ldap_manager' => 'LDAP Manager',
|
||||
'ldap_server' => 'LDAP 서버',
|
||||
'ldap_server_help' => '이것은 (복호화또는 TLS 용) ldap로 시작합니다:// 또는 (SSL용) ldaps://',
|
||||
'ldap_server_cert' => 'LDAP SSL 인증서 확인',
|
||||
'ldap_server_cert_ignore' => '유효하지 않은 SSL 인증서 허용',
|
||||
'ldap_server_cert_help' => '자체 서명한 SSL 인증서를 사용하고, 유효하지 않은 SSL 인증서 사용을 승인하고자 하는 경우, 이 확인 상자를 선택하십시오.',
|
||||
'ldap_tls' => 'TLS 사용',
|
||||
'ldap_tls_help' => '이것은 LDAP 서버에서 STARTTLS를 실행하는 경우에만 검사됩니다. ',
|
||||
'ldap_uname' => 'LDAP 연결용 사용자명',
|
||||
'ldap_dept' => 'LDAP 부서',
|
||||
'ldap_phone' => 'LDAP 전화번호',
|
||||
'ldap_jobtitle' => 'LDAP 직위',
|
||||
'ldap_country' => 'LDAP 국가',
|
||||
'ldap_pword' => 'LDAP 연결용 비밀번호',
|
||||
'ldap_basedn' => 'Base BIND DN',
|
||||
'ldap_filter' => 'LDAP 필터',
|
||||
'ldap_pw_sync' => 'LDAP 암호 동기화',
|
||||
'ldap_pw_sync_help' => '로컬 암호와 PDAP 암호를 동기화 하지 않으려면 이 박스의 체크를 풀어주세요. 이것을 해제하면 당신의 LDAP 서버에 여러 원인으로 접속할 수 없다면 사용자들도 로그인 할 수 없게 됩니다.',
|
||||
'ldap_username_field' => '사용자명 항목',
|
||||
'ldap_lname_field' => '성:',
|
||||
'ldap_fname_field' => 'LDAP 이름',
|
||||
'ldap_auth_filter_query' => 'LDAP 인증 요청',
|
||||
'ldap_version' => 'LDAP 버전',
|
||||
'ldap_active_flag' => 'LDAP 활성 플래그',
|
||||
'ldap_activated_flag_help' => '이 값은 동기화된 사용자가 Snipe-IT에 로그인할 수 있는지 여부를 결정하는 데 사용됩니다. <strong> 항목을 체크인하거나 체크아웃하는 기능에는 영향을 미치지 않으며, AD/LDAP 내에서 값이 아닌 <strong> 속성 이름이어야 합니다. <br><br>이 필드가 AD/LDAP에 없는 필드 이름으로 설정되거나 AD/LDAP 필드의 값이 <code>0/code> 또는 <code>false/code>로 설정된 경우, <strong> 사용자 로그인이 비활성화됩니다. AD/LDAP 필드의 값이 <code>1</code>, <code>true</code> 또는 다른 텍스트<em>로 설정되어 있으면 사용자가 로그인할 수 있습니다. AD에서 필드가 비어 있으면 일반적으로 일시 중단되지 않은 사용자가 로그인할 수 있는 <code>userAccountControl</code> 속성을 사용합니다.',
|
||||
'ldap_emp_num' => 'LDAP 피고용인 번호',
|
||||
'ldap_email' => 'LDAP 이메일',
|
||||
'ldap_test' => 'Test LDAP',
|
||||
'ldap_test_sync' => 'Test LDAP Synchronization',
|
||||
'license' => '소프트웨어 라이센스',
|
||||
'load_remote' => 'Use Gravatar',
|
||||
'load_remote_help_text' => 'Uncheck this box if your install cannot load scripts from the outside internet. This will prevent Snipe-IT from trying load images from Gravatar.',
|
||||
'login' => 'Login Attempts',
|
||||
'login_attempt' => 'Login Attempt',
|
||||
'login_ip' => 'IP Address',
|
||||
'login_success' => '성공?',
|
||||
'login_user_agent' => 'User Agent',
|
||||
'login_help' => 'List of attempted logins',
|
||||
'login_note' => '로그인 참고',
|
||||
'login_note_help' => '선택적으로 분실되거나 도난당한 장치를 찾은 사람들을 돕기 위한, 로그인 화면에 몇 문장을 포함하십시오. 이 항목에는 <a href="https://help.github.com/articles/github-flavored-markdown/"> Github flavored markdown </a>를 사용할 수 있습니다.',
|
||||
'login_remote_user_text' => '원격 사용자 로그인 옵션',
|
||||
'login_remote_user_enabled_text' => '원격 사용자 헤더로 로그인 활성화',
|
||||
'login_remote_user_enabled_help' => '이 옵션은 "공용 게이트웨이 인터페이스 (rfc3875)" 를 따르는 REMOTE_USER 헤더를 통한 인증을 활성화 합니다',
|
||||
'login_common_disabled_text' => '다른 인증 메커니즘 비활성화',
|
||||
'login_common_disabled_help' => '이 옵션은 다른 인증 메커니즘을 비활성화 합니다. REMOTE_USER 로그인이 이미 작동하고 있다면 이 옵션을 활성화 하세요.',
|
||||
'login_remote_user_custom_logout_url_text' => '사용자 정의 로그아웃 URL',
|
||||
'login_remote_user_custom_logout_url_help' => '채워진 사용자는 SnipeIT 세션이 종료된 후에 이 URL로 리디렉션됩니다. 이 기능은 인증 제공자의 사용자 세션을 정확하게 닫는데 유용합니다.',
|
||||
'login_remote_user_header_name_text' => '사용자 정의 사용자 이름 헤더',
|
||||
'login_remote_user_header_name_help' => 'Use the specified header instead of REMOTE_USER',
|
||||
'logo' => '로고',
|
||||
'logo_print_assets' => '인쇄물에 사용',
|
||||
'logo_print_assets_help' => '브랜딩을 자산 목록 인쇄물에 사용합니다.',
|
||||
'full_multiple_companies_support_help_text' => '자신이 속한 공급자 자산에 공급자를 할당하는 것을 제한하는 사용자들 (관리자 포함)',
|
||||
'full_multiple_companies_support_text' => '전체 다중 공급자들 지원',
|
||||
'show_in_model_list' => '모델 드롭다운에 표시',
|
||||
'optional' => '선택 사항',
|
||||
'per_page' => '페이지 당 결과',
|
||||
'php' => 'PHP 버전',
|
||||
'php_info' => 'PHP Info',
|
||||
'php_overview' => 'PHP',
|
||||
'php_overview_keywords' => 'phpinfo, system, info',
|
||||
'php_overview_help' => 'PHP System info',
|
||||
'php_gd_info' => 'QR 코드를 보려면 php-gd를 설치하셔야 합니다. 설치 설명서를 참고하세요.',
|
||||
'php_gd_warning' => 'PHP 이미지 처리 및 GD 플러그인이 설치되어 있지 않습니다.',
|
||||
'pwd_secure_complexity' => '비밀번호 복잡성',
|
||||
'pwd_secure_complexity_help' => '어떤 비밀번호 복잡성 규칙을 적용할지 선택하십시오.',
|
||||
'pwd_secure_complexity_disallow_same_pwd_as_user_fields' => 'Password cannot be the same as first name, last name, email, or username',
|
||||
'pwd_secure_complexity_letters' => 'Require at least one letter',
|
||||
'pwd_secure_complexity_numbers' => 'Require at least one number',
|
||||
'pwd_secure_complexity_symbols' => 'Require at least one symbol',
|
||||
'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase',
|
||||
'pwd_secure_min' => '비밀번호 최소 글자수',
|
||||
'pwd_secure_min_help' => '최소 8자 이상',
|
||||
'pwd_secure_uncommon' => '자주쓰이는 비밀번호 방지',
|
||||
'pwd_secure_uncommon_help' => '이것은 사용자가 위변조로 보고된 상위 10,000 개의 비밀번호를 기반해 일반적으로 사용되는 비밀번호를 허용하지 않게 합니다.',
|
||||
'qr_help' => '이 것을 설정하려면 먼저 QR 코드 사용하기를 하세요',
|
||||
'qr_text' => 'QR 코드 문구',
|
||||
'saml' => 'SAML',
|
||||
'saml_title' => 'Update SAML settings',
|
||||
'saml_help' => 'SAML settings',
|
||||
'saml_enabled' => 'SAML 활성화됨',
|
||||
'saml_integration' => 'SAML 통합',
|
||||
'saml_sp_entityid' => 'Entity ID',
|
||||
'saml_sp_acs_url' => 'Assertion Consumer Service (ACS) URL',
|
||||
'saml_sp_sls_url' => 'Single Logout Service (SLS) URL',
|
||||
'saml_sp_x509cert' => '공인된 인증서',
|
||||
'saml_sp_metadata_url' => '메타데이터 URL',
|
||||
'saml_idp_metadata' => 'SAML IdP 메타데이터',
|
||||
'saml_idp_metadata_help' => 'URL 또는 XML 파일로 IdP 메타데이터를 지정할 수 있습니다.',
|
||||
'saml_attr_mapping_username' => 'Attribute Mapping - Username',
|
||||
'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.',
|
||||
'saml_forcelogin_label' => 'SAML 강제 로그인',
|
||||
'saml_forcelogin' => 'Make SAML the primary login',
|
||||
'saml_forcelogin_help' => 'You can use \'/login?nosaml\' to get to the normal login page.',
|
||||
'saml_slo_label' => 'SAML Single Log Out',
|
||||
'saml_slo' => 'Send a LogoutRequest to IdP on Logout',
|
||||
'saml_slo_help' => 'This will cause the user to be first redirected to the IdP on logout. Leave unchecked if the IdP doesn\'t correctly support SP-initiated SAML SLO.',
|
||||
'saml_custom_settings' => 'SAML Custom Settings',
|
||||
'saml_custom_settings_help' => 'You can specify additional settings to the onelogin/php-saml library. Use at your own risk.',
|
||||
'saml_download' => 'Download Metadata',
|
||||
'setting' => '설정',
|
||||
'settings' => '설정',
|
||||
'show_alerts_in_menu' => '상단 메뉴에 경고 표시',
|
||||
'show_archived_in_list' => '보관된 자산',
|
||||
'show_archived_in_list_text' => '"모든 자산" 목족에 보관된 자산 표시',
|
||||
'show_assigned_assets' => '할당된 자산 보기',
|
||||
'show_assigned_assets_help' => '사용자 보기 -> 자산, 사용자 보기 -> 정보 -> 할당된 모든 항목 인쇄 및 계정 -> 할당된 자산 보기에서 다른 자산에 할당된 자산을 표시합니다.',
|
||||
'show_images_in_email' => '이메일에 이미지 표시',
|
||||
'show_images_in_email_help' => 'Snipe-IT 설치가 VPN 또는 폐쇄 형 네트워크 하에 있고 네트워크 외부 사용자가 이 설치에서 제공된 이미지를 이메일에 불러올수 없는 경우 이 상자의 선택을 해제하세요.',
|
||||
'site_name' => '사이트 명',
|
||||
'integrations' => 'Integrations',
|
||||
'slack' => 'Slack',
|
||||
'general_webhook' => 'General Webhook',
|
||||
'ms_teams' => 'Microsoft Teams',
|
||||
'webhook' => ':app',
|
||||
'webhook_presave' => 'Test to Save',
|
||||
'webhook_title' => 'Update Webhook Settings',
|
||||
'webhook_help' => 'Integration settings',
|
||||
'webhook_botname' => ':app Botname',
|
||||
'webhook_channel' => ':app Channel',
|
||||
'webhook_endpoint' => ':app Endpoint',
|
||||
'webhook_integration' => ':app Settings',
|
||||
'webhook_test' =>'Test :app integration',
|
||||
'webhook_integration_help' => ':app integration is optional, however the endpoint and channel are required if you wish to use it. To configure :app integration, you must first <a href=":webhook_link" target="_new" rel="noopener">create an incoming webhook</a> on your :app account. Click on the <strong>Test :app Integration</strong> button to confirm your settings are correct before saving. ',
|
||||
'webhook_integration_help_button' => 'Once you have saved your :app information, a test button will appear.',
|
||||
'webhook_test_help' => 'Test whether your :app integration is configured correctly. YOU MUST SAVE YOUR UPDATED :app SETTINGS FIRST.',
|
||||
'snipe_version' => 'Snipe-IT 버전',
|
||||
'support_footer' => '꼬리말 링크 지원',
|
||||
'support_footer_help' => 'Snipe-IT 지원 정보 및 사용자 매뉴얼 보기 권한 설정',
|
||||
'version_footer' => '바닥글에 버전 ',
|
||||
'version_footer_help' => 'Snipe-IT 버전과 빌드 번호를 볼 수 있는 사용자를 지정합니다.',
|
||||
'system' => '시스템 정보',
|
||||
'update' => '갱신 설정',
|
||||
'value' => '가치',
|
||||
'brand' => '브랜딩',
|
||||
'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
|
||||
'brand_help' => 'Logo, Site Name',
|
||||
'web_brand' => 'Web Branding Type',
|
||||
'about_settings_title' => '설정에 관해',
|
||||
'about_settings_text' => '이 설정들은 설치본의 특정 분야를 설정하는 것입니다.',
|
||||
'labels_per_page' => '페이지 당 꼬리표',
|
||||
'label_dimensions' => '꼬리표 크기(인치)',
|
||||
'next_auto_tag_base' => '다음 자동 증가',
|
||||
'page_padding' => '페이지 여백 (인치)',
|
||||
'privacy_policy_link' => '개인정보 보호정책 링크',
|
||||
'privacy_policy' => '개인정보 보호정책',
|
||||
'privacy_policy_link_help' => '여기에 url이 포함되어 있으면, GDPR을 준수하는 개인정보 보호정책에 대한 링크가, 어플리케이션 최하단과 시스템에서 발송하는 모든 이메일에 포함됩니다. ',
|
||||
'purge' => '삭제된 기록들 지우기',
|
||||
'purge_deleted' => 'Purge Deleted ',
|
||||
'labels_display_bgutter' => '꼬리표 아래쪽 가운데 여백',
|
||||
'labels_display_sgutter' => '꼬리표 옆쪽 가운데 여백',
|
||||
'labels_fontsize' => '꼬리표 글꼴 크기',
|
||||
'labels_pagewidth' => '꼬리표 지 넓이',
|
||||
'labels_pageheight' => '꼬리표 지 높이',
|
||||
'label_gutters' => '꼬리표 여백(인치)',
|
||||
'page_dimensions' => '꼬리표 면적(인치)',
|
||||
'label_fields' => '꼬리표 가시 항목',
|
||||
'inches' => '인치',
|
||||
'width_w' => '넓이',
|
||||
'height_h' => '높이',
|
||||
'show_url_in_emails' => 'Snipe-IT에 이메일로 링크',
|
||||
'show_url_in_emails_help_text' => '전자 메일 바닥 글에 Snipe-IT 설치를 다시 연결하지 않으려면이 상자를 선택 취소하십시오. 대부분의 사용자가 로그인하지 않는 경우 유용합니다.',
|
||||
'text_pt' => 'pt',
|
||||
'thumbnail_max_h' => '최대 썸네일 높이',
|
||||
'thumbnail_max_h_help' => '섬네일이 목록 보기에 표시될 수있는 최대 높이 (픽셀) 입니다. 최소 25, 최대 500.',
|
||||
'two_factor' => '2단계 인증',
|
||||
'two_factor_secret' => '2단계 코드',
|
||||
'two_factor_enrollment' => '2단계 등록',
|
||||
'two_factor_enabled_text' => '2중 활성화',
|
||||
'two_factor_reset' => '2중 보안 재설정',
|
||||
'two_factor_reset_help' => 'This will force the user to enroll their device with their authenticator app again. This can be useful if their currently enrolled device is lost or stolen. ',
|
||||
'two_factor_reset_success' => '2중 장치 재설정이 되었습니다',
|
||||
'two_factor_reset_error' => '2중 장치 재설정이 실패했습니다',
|
||||
'two_factor_enabled_warning' => '2중 활성화가 현재 활성화되지 않다면 구글 인증으로 등록된 장치를 즉시 강제로 인증하게 할 것입니다. 당신은 하나가 현재 등록되지 않았다면 당신의 장치를 등록할 수 있어야 합니다.',
|
||||
'two_factor_enabled_help' => '이 것은 구글 인증을 사용하는 2중 인증 기능을 동작시킵니다.',
|
||||
'two_factor_optional' => '선택적 (허용 하는 경우 사용자가 활성화 하거나 비활성화할 수 있습니다)',
|
||||
'two_factor_required' => '모든 사용자에게 필수',
|
||||
'two_factor_disabled' => '비활성화',
|
||||
'two_factor_enter_code' => '2중 코드 입력',
|
||||
'two_factor_config_complete' => '코드 제출',
|
||||
'two_factor_enabled_edit_not_allowed' => '관리자가 이 설정의 수정을 허용하지 않았습니다.',
|
||||
'two_factor_enrollment_text' => "2중 인증은 필수입니다만, 당신의 장치는 아직 등록되지 않았습니다. 구글 인증 앱을 실행하고 등록할 장치 아래의 QR 코드를 스캔하세요. 당신의 장치가 등록됐다면, 아래 코드를 입력하세요",
|
||||
'require_accept_signature' => '서명 필수',
|
||||
'require_accept_signature_help_text' => '이 기능을 활성화하면 자산 수락시에 물리적 서명을 필수로 하게 됩니다.',
|
||||
'left' => '왼쪽',
|
||||
'right' => '오른쪽',
|
||||
'top' => '위',
|
||||
'bottom' => '아래',
|
||||
'vertical' => '수직',
|
||||
'horizontal' => '수평',
|
||||
'unique_serial' => '고유 일련번호',
|
||||
'unique_serial_help_text' => '이 상자를 선택하면 자산 일련 번호를 생성하는 제약 조건이 적용됩니다.',
|
||||
'zerofill_count' => '0 채움을 포함한, 자산 태그 길이',
|
||||
'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.',
|
||||
'oauth_title' => 'OAuth API Settings',
|
||||
'oauth' => 'OAuth',
|
||||
'oauth_help' => 'Oauth Endpoint Settings',
|
||||
'asset_tag_title' => 'Update Asset Tag Settings',
|
||||
'barcode_title' => 'Update Barcode Settings',
|
||||
'barcodes' => 'Barcodes',
|
||||
'barcodes_help_overview' => 'Barcode & QR settings',
|
||||
'barcodes_help' => 'This will attempt to delete cached barcodes. This would typically only be used if your barcode settings have changed, or if your Snipe-IT URL has changed. Barcodes will be re-generated when accessed next.',
|
||||
'barcodes_spinner' => 'Attempting to delete files...',
|
||||
'barcode_delete_cache' => 'Delete Barcode Cache',
|
||||
'branding_title' => 'Update Branding Settings',
|
||||
'general_title' => 'Update General Settings',
|
||||
'mail_test' => 'Send Test',
|
||||
'mail_test_help' => 'This will attempt to send a test mail to :replyto.',
|
||||
'filter_by_keyword' => 'Filter by setting keyword',
|
||||
'security' => 'Security',
|
||||
'security_title' => 'Update Security Settings',
|
||||
'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
|
||||
'security_help' => 'Two-factor, Password Restrictions',
|
||||
'groups_keywords' => 'permissions, permission groups, authorization',
|
||||
'groups_help' => 'Account permission groups',
|
||||
'localization' => 'Localization',
|
||||
'localization_title' => 'Update Localization Settings',
|
||||
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
|
||||
'localization_help' => 'Language, date display',
|
||||
'notifications' => 'Notifications',
|
||||
'notifications_help' => 'Email Alerts & Audit Settings',
|
||||
'asset_tags_help' => 'Incrementing and prefixes',
|
||||
'labels' => 'Labels',
|
||||
'labels_title' => 'Update Label Settings',
|
||||
'labels_help' => 'Label sizes & settings',
|
||||
'purge' => 'Purge',
|
||||
'purge_keywords' => 'permanently delete',
|
||||
'purge_help' => '삭제된 기록들 지우기',
|
||||
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
|
||||
'ldap_ad' => 'LDAP/AD',
|
||||
'employee_number' => '사원번호',
|
||||
'create_admin_user' => 'Create a User ::',
|
||||
'create_admin_success' => 'Success! Your admin user has been added!',
|
||||
'create_admin_redirect' => 'Click here to go to your app login!',
|
||||
'setup_migrations' => 'Database Migrations ::',
|
||||
'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!',
|
||||
'setup_successful_migrations' => 'Your database tables have been created',
|
||||
'setup_migration_output' => 'Migration output:',
|
||||
'setup_migration_create_user' => 'Next: Create User',
|
||||
'ldap_settings_link' => 'LDAP Settings Page',
|
||||
'slack_test' => 'Test <i class="fab fa-slack"></i> Integration',
|
||||
'label2_enable' => 'New Label Engine',
|
||||
'label2_enable_help' => 'Switch to the new label engine. <b>Note: You will need to save this setting before setting others.</b>',
|
||||
'label2_template' => 'Template',
|
||||
'label2_template_help' => 'Select which template to use for label generation',
|
||||
'label2_title' => '제목',
|
||||
'label2_title_help' => 'The title to show on labels that support it',
|
||||
'label2_title_help_phold' => 'The placeholder <code>{COMPANY}</code> will be replaced with the asset's company name',
|
||||
'label2_asset_logo' => 'Use Asset Logo',
|
||||
'label2_asset_logo_help' => 'Use the logo of the asset's assigned company, rather than the value at <code>:setting_name</code>',
|
||||
'label2_1d_type' => '1D Barcode Type',
|
||||
'label2_1d_type_help' => 'Format for 1D barcodes',
|
||||
'label2_2d_type' => '2D 바코드 형식',
|
||||
'label2_2d_type_help' => 'Format for 2D barcodes',
|
||||
'label2_2d_target' => '2D Barcode Target',
|
||||
'label2_2d_target_help' => 'The URL the 2D barcode points to when scanned',
|
||||
'label2_fields' => 'Field Definitions',
|
||||
'label2_fields_help' => 'Fields can be added, removed, and reordered in the left column. For each field, multiple options for Label and DataSource can be added, removed, and reordered in the right column.',
|
||||
'help_asterisk_bold' => 'Text entered as <code>**text**</code> will be displayed as bold',
|
||||
'help_blank_to_use' => 'Leave blank to use the value from <code>:setting_name</code>',
|
||||
'help_default_will_use' => '<code>:default</code> will use the value from <code>:setting_name</code>. <br>Note that the value of the barcodes must comply with the respective barcode spec in order to be successfully generated. Please see <a href="https://snipe-it.readme.io/docs/barcodes">the documentation <i class="fa fa-external-link"></i></a> for more details. ',
|
||||
'default' => 'Default',
|
||||
'none' => 'None',
|
||||
'google_callback_help' => 'This should be entered as the callback URL in your Google OAuth app settings in your organization's <strong><a href="https://console.cloud.google.com/" target="_blank">Google developer console <i class="fa fa-external-link" aria-hidden="true"></i></a></strong>.',
|
||||
'google_login' => 'Google Workspace Login Settings',
|
||||
'enable_google_login' => 'Enable users to login with Google Workspace',
|
||||
'enable_google_login_help' => 'Users will not be automatically provisioned. They must have an existing account here AND in Google Workspace, and their username here must match their Google Workspace email address. ',
|
||||
'mail_reply_to' => 'Mail Reply-To Address',
|
||||
'mail_from' => 'Mail From Address',
|
||||
'database_driver' => 'Database Driver',
|
||||
'bs_table_storage' => 'Table Storage',
|
||||
'timezone' => 'Timezone',
|
||||
|
||||
];
|
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'update' => [
|
||||
'error' => '갱신 중 오류가 발생했습니다. ',
|
||||
'success' => '설정이 갱신되었습니다.',
|
||||
],
|
||||
'backup' => [
|
||||
'delete_confirm' => '이 백업 파일을 지우시겠습니까? 이 동작은 되돌리기가 되지 않습니다. ',
|
||||
'file_deleted' => '백업 파일이 삭제 되었습니다. ',
|
||||
'generated' => '새 백업 파일이 생성되었습니다.',
|
||||
'file_not_found' => '지정한 백업 파일을 서버에서 찾을 수 없습니다.',
|
||||
'restore_warning' => 'Yes, restore it. I acknowledge that this will overwrite any existing data currently in the database. This will also log out all of your existing users (including you).',
|
||||
'restore_confirm' => 'Are you sure you wish to restore your database from :filename?'
|
||||
],
|
||||
'purge' => [
|
||||
'error' => '삭제중 오류가 발생하였습니다. ',
|
||||
'validation_failed' => '삭제 확인 절차가 잘못되었습니다. 확인 상자에 "DELETE"를 입력해 주세요.',
|
||||
'success' => '삭제된 기록들이 삭제되었습니다.',
|
||||
],
|
||||
'mail' => [
|
||||
'sending' => 'Sending Test Email...',
|
||||
'success' => 'Mail sent!',
|
||||
'error' => 'Mail could not be sent.',
|
||||
'additional' => 'No additional error message provided. Check your mail settings and your app log.'
|
||||
],
|
||||
'ldap' => [
|
||||
'testing' => 'Testing LDAP Connection, Binding & Query ...',
|
||||
'500' => '500 Server Error. Please check your server logs for more information.',
|
||||
'error' => 'Something went wrong :(',
|
||||
'sync_success' => 'A sample of 10 users returned from the LDAP server based on your settings:',
|
||||
'testing_authentication' => 'Testing LDAP Authentication...',
|
||||
'authentication_success' => 'User authenticated against LDAP successfully!'
|
||||
],
|
||||
'webhook' => [
|
||||
'sending' => 'Sending :app test message...',
|
||||
'success' => 'Your :webhook_name Integration works!',
|
||||
'success_pt1' => 'Success! Check the ',
|
||||
'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.',
|
||||
'500' => '500 Server Error.',
|
||||
'error' => 'Something went wrong. :app responded with: :error_message',
|
||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||
'error_misc' => 'Something went wrong. :( ',
|
||||
]
|
||||
];
|
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'created' => '생성일',
|
||||
'size' => 'Size',
|
||||
);
|
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'does_not_exist' => '상태 꼬리표가 존재하지 않습니다.',
|
||||
'deleted_label' => 'Deleted Status Label',
|
||||
'assoc_assets' => '이 상태 꼬리표는 하나 이상의 자산과 연결되어 있어서 삭제할 수 없습니다. 이 상태를 참조하지 않게 자산을 수정하고 다시 시도해 주세요. ',
|
||||
|
||||
'create' => [
|
||||
'error' => '상태 꼬리표가 생성되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '상태 꼬리표가 생성되었습니다.',
|
||||
],
|
||||
|
||||
'update' => [
|
||||
'error' => '상태 꼬리표가 수정되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '상태 꼬리표가 수정되었습니다.',
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'confirm' => '이 상태 꼬리표를 삭제하시겠습니까?',
|
||||
'error' => '상태 꼬리표 삭제시 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '상태 꼬리표가 삭제되었습니다.',
|
||||
],
|
||||
|
||||
'help' => [
|
||||
'undeployable' => '이러한 자산은 누구에게도 할당 할 수 없습니다.',
|
||||
'deployable' => '이러한 자산은 체크 아웃 할 수 있습니다. 할당되면 <i class="fas fa-circle text-blue"></i> <strong>Deployed</strong>의 메타 상태로 가정합니다.',
|
||||
'archived' => '이러한 애셋은 체크 아웃 할 수 없으며 보관 된보기에만 표시됩니다. 이는 예산 / 역사적 목적을 위해 자산에 대한 정보를 보유하지만 일상적인 자산 목록에서 유지하는 데 유용합니다.',
|
||||
'pending' => '이러한 자산은 아직 수리를 위해 나가는 품목에 자주 사용되지만 누구에게나 할당 될 수는 없지만 유통에 회부 될 것으로 예상됩니다.',
|
||||
],
|
||||
|
||||
];
|
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => '상태 꼬리표란',
|
||||
'archived' => '보관됨',
|
||||
'create' => '상태 꼬리표 생성',
|
||||
'color' => '차트 색',
|
||||
'default_label' => '기본 라벨',
|
||||
'default_label_help' => '이것은 자산을 생성 / 수정 시에 선택 상자의 최상단의 일반적으로 상태 레이블을 표시되는데 사용됩니다.',
|
||||
'deployable' => '사용가능',
|
||||
'info' => '상태 꼬리표는 소유한 자산들의 다양한 상태들을 묘사할 때 사용됩니다. 수리요망, 분실/도난 등이 될 것입니다. 사용 할 수 있거나, 대기중이거나 보관된 자산들 대상으로 새로운 상태 딱지를 생성할 수 있습니다.',
|
||||
'name' => '상태 명',
|
||||
'pending' => '대기중',
|
||||
'status_type' => '상태 유형',
|
||||
'show_in_nav' => '측면 탐색메뉴에 보이기',
|
||||
'title' => '상태 꼬리표',
|
||||
'undeployable' => '사용불가',
|
||||
'update' => '상태 꼬리표 수정',
|
||||
);
|
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'deleted' => 'Deleted supplier',
|
||||
'does_not_exist' => '공급자가 존재하지 않습니다.',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => '공급자가 생성되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '공급자가 생성되었습니다.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => '공급자가 갱신되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '공급자가 갱신 되었습니다.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => '이 공급자를 삭제 하시겠습니까?',
|
||||
'error' => '공급자 삭제 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '공급자가 삭제되었습니다.',
|
||||
'assoc_assets' => '이 공급자는 현재 다음 :asset_count 자산과 연결되어 있기에 삭제할 수 없습니다. 이 공급자를 더 이상 참조하기 않게 자산을 수정하고 다시 시도해 주세요. ',
|
||||
'assoc_licenses' => '이 공급자는 현재 다음 :licenses_count 라이선스와 연결되어 있기에 삭제할 수 없습니다. 이 공급자를 더 이상 참조하기 않게 라이선스을 수정하고 다시 시도해 주세요. ',
|
||||
'assoc_maintenances' => '이 공급자는 현재 다음 :asset_maintenances_count 자산 관리와 연결되어 있기에 삭제할 수 없습니다. 이 공급자를 더 이상 참조하기 않게 자산 관리을 수정하고 다시 시도해 주세요. ',
|
||||
)
|
||||
|
||||
);
|
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about_suppliers_title' => '공급자란',
|
||||
'about_suppliers_text' => '공급자는 품목의 원천을 추적할 때 사용된다',
|
||||
'address' => '공급자 주소',
|
||||
'assets' => '자산',
|
||||
'city' => '시',
|
||||
'contact' => '연락처 명',
|
||||
'country' => '국가명',
|
||||
'create' => '공급자 생성',
|
||||
'email' => '이메일 주소',
|
||||
'fax' => '팩스',
|
||||
'id' => '아이디',
|
||||
'licenses' => '라이선스',
|
||||
'name' => '공급자 명',
|
||||
'notes' => '비고',
|
||||
'phone' => '전화번호',
|
||||
'state' => '주',
|
||||
'suppliers' => '공급자',
|
||||
'update' => '공급자 갱신',
|
||||
'view' => '공급자 보기',
|
||||
'view_assets_for' => '자산 보기',
|
||||
'zip' => '우편번호',
|
||||
|
||||
);
|
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'activated_help_text' => '이 사용자는 로그인 할 수 있음',
|
||||
'activated_disabled_help_text' => '자신의 계정에 대한 활성 상태는 편집 할 수 없습니다.',
|
||||
'assets_user' => '자산 보유자 :name',
|
||||
'bulk_update_warn' => '당신은 :user_count 사용자의 속성을 수정하려고 합니다. 이 양식을 사용하여 자신의 사용자 속성을 변경할 수 없으며 ,사용자 자신의 개인 정보를 개별적으로 수정해야합니다.',
|
||||
'bulk_update_help' => '이 양식을 사용하면 한 번에 여러 사용자를 갱신할 수 있습니다. 변경할 필요가 있는 항목만 채우세요. 아무 것도 입력하지 않으면 변경되지 않습니다.',
|
||||
'current_assets' => '현재 이 사용자에게 반출 된 자산',
|
||||
'clone' => '사용자 복제',
|
||||
'contact_user' => '연락처 :name',
|
||||
'edit' => '사용자 편집',
|
||||
'filetype_info' => '허용되는 형식들은 png, gif, jpeg, doc, docx, pdf, txt, zip, rar 입니다.',
|
||||
'history_user' => '이력 :name',
|
||||
'info' => '정보',
|
||||
'restore_user' => '그것들을 복원하려면 여기를 클릭하세요.',
|
||||
'last_login' => '마지막 로그인',
|
||||
'ldap_config_text' => 'LDAP 구성 설정들은 Admin > Settings 에서 찾을 수 있습니다. (부가적으로) 선택된 장소는 불러온 모든 사용자들에게 설정됩니다.',
|
||||
'print_assigned' => 'Assigned 자산 모두 인쇄',
|
||||
'email_assigned' => 'Email List of All Assigned',
|
||||
'user_notified' => 'User has been emailed a list of their currently assigned items.',
|
||||
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
|
||||
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
|
||||
'software_user' => '소프트웨어 반출 목록 :name',
|
||||
'send_email_help' => '이 사용자에게 자격 증명을 보내려면 이메일 주소를 입력해야 합니다. 자격 증명을 이메일로 보내는 것은 사용자 생성 시에만 수행할 수 있습니다. 암호는 단방향 해시에 저장되며 한 번 저장하면 재열람 할 수 없습니다.',
|
||||
'view_user' => '사용자 보기 :name',
|
||||
'usercsv' => 'CSV 파일',
|
||||
'two_factor_admin_optin_help' => '현재 관리 설정이 두가지 인증방법을 선택적으로 실행하게 되어 있습니다. ',
|
||||
'two_factor_enrolled' => '2FA 장치 등록 ',
|
||||
'two_factor_active' => '2FA 활성화 ',
|
||||
'user_deactivated' => 'User cannot login',
|
||||
'user_activated' => 'User can login',
|
||||
'activation_status_warning' => 'Do not change activation status',
|
||||
'group_memberships_helpblock' => 'Only superadmins may edit group memberships.',
|
||||
'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.',
|
||||
'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.',
|
||||
'remove_group_memberships' => 'Remove Group Memberships',
|
||||
'warning_deletion_information' => 'You are about to checkin ALL items from the :count user(s) listed below. Super admin names are highlighted in red.',
|
||||
'update_user_assets_status' => 'Update all assets for these users to this status',
|
||||
'checkin_user_properties' => 'Check in all properties associated with these users',
|
||||
'remote_label' => 'This is a remote user',
|
||||
'remote' => 'Remote',
|
||||
'remote_help' => 'This can be useful if you need to filter by remote users who never or rarely come into your physical locations.',
|
||||
'not_remote_label' => 'This is not a remote user',
|
||||
'vip_label' => 'VIP user',
|
||||
'vip_help' => 'This can be helpful to mark important people in your org if you would like to handle them in special ways.',
|
||||
'create_user' => 'Create a user',
|
||||
'create_user_page_explanation' => 'This is the account information you will use to access the site for the first time.',
|
||||
'email_credentials' => 'Email credentials',
|
||||
'email_credentials_text' => 'Email my credentials to the email address above',
|
||||
'next_save_user' => 'Next: Save User',
|
||||
'all_assigned_list_generation' => 'Generated on:',
|
||||
'email_user_creds_on_create' => 'Email this user their credentials?',
|
||||
];
|
@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'accepted' => '이 자산이 승인되었습니다.',
|
||||
'declined' => '이 자산이 거부되었습니다.',
|
||||
'bulk_manager_warn' => '사용자가 성공적으로 갱신되었지만, 선택한 관리자가 편집할 사용자 목록에도 있었고, 사용자가 자신의 관리자가 아니 어서 관리자 항목이 저장되지 않았습니다. 관리자를 제외한 사용자를 다시 선택하십시오.',
|
||||
'user_exists' => '사용자가 이미 존재합니다!',
|
||||
'user_not_found' => '사용자가 존재하지 않습니다.',
|
||||
'user_login_required' => '로그인 항목을 입력해 주세요.',
|
||||
'user_has_no_assets_assigned' => 'No assets currently assigned to user.',
|
||||
'user_password_required' => '비밀번호를 입력해 주세요.',
|
||||
'insufficient_permissions' => '승인 불충분.',
|
||||
'user_deleted_warning' => '이 사용자는 삭제되었습니다. 그것들을 수정하려면 이 사용자를 복원하던가 새 자산들을 생성하세요.',
|
||||
'ldap_not_configured' => '이 설치의 LDAP 통합이 구성이 되지 않았습니다.',
|
||||
'password_resets_sent' => 'The selected users who are activated and have a valid email addresses have been sent a password reset link.',
|
||||
'password_reset_sent' => ':email 로 패스워드 재설정 링크가 발송되었습니다.',
|
||||
'user_has_no_email' => 'This user does not have an email address in their profile.',
|
||||
'log_record_not_found' => 'A matching log record for this user could not be found.',
|
||||
|
||||
|
||||
'success' => array(
|
||||
'create' => '사용자가 생성되었습니다.',
|
||||
'update' => '사용자가 갱신 되었습니다.',
|
||||
'update_bulk' => '사용자가 갱신 되었습니다.',
|
||||
'delete' => '사용자가 삭제 되었습니다.',
|
||||
'ban' => '사용자가 금지 처리 되었습니다.',
|
||||
'unban' => '사용자의 금지 처리가 해제 되었습니다.',
|
||||
'suspend' => '사용자를 대기 시켰습니다.',
|
||||
'unsuspend' => '사용자의 대기를 해제하였습니다.',
|
||||
'restored' => '사용자를 복원하였습니다.',
|
||||
'import' => '사용자를 내보냈습니다.',
|
||||
),
|
||||
|
||||
'error' => array(
|
||||
'create' => '사용자를 생성하는 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'update' => '사용자를 갱신하는 중 오류가 발생했습니다. 다시 시도해 주세요.',
|
||||
'delete' => '사용자를 삭제하는 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'delete_has_assets' => '이 사용자에게 품목이 할당되었고 삭제할 수 없습니다.',
|
||||
'unsuspend' => '사용자의 대기 해제 중 문제가 발생했습니다. 다시 시도하세요.',
|
||||
'import' => '사용자를 내보내기 할 때 문제가 발생했습니다. 다시 시도하세요.',
|
||||
'asset_already_accepted' => '이 자산은 이미 수락되었습니다.',
|
||||
'accept_or_decline' => '이 자산을 승인 하거나 거부 하셔야 합니다.',
|
||||
'incorrect_user_accepted' => '승인하려는 자산이 체크아웃되지 않았습니다.',
|
||||
'ldap_could_not_connect' => 'LDAP 서버에 접속 할 수 없습니다. LDAP 설정 파일의 LDAP 서버 구성을 확인해 보세요.<br>LDAP 서버 오류:',
|
||||
'ldap_could_not_bind' => 'LDAP 서버와 동기화 할 수 없습니다. LDAP 설정 파일의 LDAP 서버 구성을 확인해 보세요.<br>LDAP 서버 오류: ',
|
||||
'ldap_could_not_search' => 'LDAP 서버를 찾을 수 없습니다. LDAP 설정 파일의 LDAP 서버 구성을 확인해 보세요.<br>LDAP 서버 오류:',
|
||||
'ldap_could_not_get_entries' => 'LDAP 서버 목록을 가져올 수 없습니다. LDAP 설정 파일의 LDAP 서버 구성을 확인해 보세요.<br>LDAP 서버 오류:',
|
||||
'password_ldap' => '이 계정의 비밀번호는 LDAP/Active 디렉토리에 의해 관리됩니다. 비밀번호를 변경하려면 IT 부서에 문의하세요. ',
|
||||
),
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => '파일이 삭제되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '파일이 삭제되었습니다.',
|
||||
),
|
||||
|
||||
'upload' => array(
|
||||
'error' => '파일(들) 이 업로드 되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '파일(들) 이 업로드 되었습니다.',
|
||||
'nofiles' => '업로드 할 파일을 선택해 주세요',
|
||||
'invalidfiles' => '하나 이상의 파일이 너무 크거나 허용되지 않는 형식입니다. 허용되는 형식은 png, gif, jpg, doc, docx, pdf, txt 입니다.',
|
||||
),
|
||||
|
||||
'inventorynotification' => array(
|
||||
'error' => 'This user has no email set.',
|
||||
'success' => 'The user has been notified about their current inventory.'
|
||||
)
|
||||
);
|
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'activated' => '활성',
|
||||
'allow' => '허용',
|
||||
'checkedout' => '자산',
|
||||
'created_at' => '생성일',
|
||||
'createuser' => '사용자 생성',
|
||||
'deny' => '거부',
|
||||
'email' => '이메일 주소',
|
||||
'employee_num' => '사원 번호.',
|
||||
'first_name' => '이름',
|
||||
'groupnotes' => 'Select a group to assign to the user, remember that a user takes on the permissions of the group they are assigned. Use ctrl+click (or cmd+click on MacOS) to deselect groups.',
|
||||
'id' => '아이디',
|
||||
'inherit' => '상속',
|
||||
'job' => '직위',
|
||||
'last_login' => '마지막 로그인',
|
||||
'last_name' => '성',
|
||||
'location' => '장소',
|
||||
'lock_passwords' => '이 설치본에서는 로그인 상세를 변경 할 수 없습니다.',
|
||||
'manager' => '상사',
|
||||
'managed_locations' => '관리되는 위치',
|
||||
'name' => '이름',
|
||||
'nogroup' => 'No groups have been created yet. To add one, visit: ',
|
||||
'notes' => '비고',
|
||||
'password_confirm' => '비밀번호 확인',
|
||||
'password' => '비밀번호',
|
||||
'phone' => '전화번호',
|
||||
'show_current' => '현재 사용자들 보기',
|
||||
'show_deleted' => '삭제된 사용자들 보기',
|
||||
'title' => '직함',
|
||||
'to_restore_them' => '그것들을 복구하기.',
|
||||
'total_assets_cost' => "Total Assets Cost",
|
||||
'updateuser' => '사용자 갱신',
|
||||
'username' => '사용자명',
|
||||
'user_deleted_text' => '이 사용자는 삭제 된 것으로 표시되어 있습니다.',
|
||||
'username_note' => '(이 것은 로그인이 아닌, 액티브 디렉토리에 연결할 때 사용됩니다.)',
|
||||
'cloneuser' => '사용자 복제',
|
||||
'viewusers' => '사용자 보기',
|
||||
);
|
20
Production/SNIPE-IT/resources/lang/ko-KR/auth.php
Normal file
20
Production/SNIPE-IT/resources/lang/ko-KR/auth.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'password' => 'The provided password is incorrect.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
);
|
19
Production/SNIPE-IT/resources/lang/ko-KR/auth/general.php
Normal file
19
Production/SNIPE-IT/resources/lang/ko-KR/auth/general.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'send_password_link' => '비밀번호 재설정 링크 보내기',
|
||||
'email_reset_password' => '이메일 비밀번호 재설정',
|
||||
'reset_password' => '비밀번호 재설정',
|
||||
'saml_login' => 'Login via SAML',
|
||||
'login' => '로그인',
|
||||
'login_prompt' => '로그인해주십시오',
|
||||
'forgot_password' => '비밀번호 분실했습니다',
|
||||
'ldap_reset_password' => 'Please click here to reset your LDAP password',
|
||||
'remember_me' => '자동 로그인',
|
||||
'username_help_top' => 'Enter your <strong>username</strong> to be emailed a password reset link.',
|
||||
'username_help_bottom' => '사용자 계정과 이메일 주소는 구성에 따라 동일할 수 있지만 동일하지 않을 수 있습니다. 사용자 계정을 기억할 수 없는 경우 관리자에게 문의하십시오. 연결된 이메일 주소가 없는 사용자 계정은 암호 재설정 링크가 이메일로 전송되지 않습니다.',
|
||||
'google_login' => 'Login with Google Workspace',
|
||||
'google_login_failed' => 'Google Login failed, please try again.',
|
||||
|
||||
];
|
||||
|
45
Production/SNIPE-IT/resources/lang/ko-KR/auth/message.php
Normal file
45
Production/SNIPE-IT/resources/lang/ko-KR/auth/message.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'account_already_exists' => '이 메일 주소를 사용하는 계정이 존재합니다.',
|
||||
'account_not_found' => '사용자 명이나 비밀번호가 틀렸습니다.',
|
||||
'account_not_activated' => '이 사용자는 비활성 계정입니다.',
|
||||
'account_suspended' => '이 사용자는 보류 계정입니다.',
|
||||
'account_banned' => '이 사용자는 금지 계정입니다.',
|
||||
'throttle' => 'Too many failed login attempts. Please try again in :minutes minutes.',
|
||||
|
||||
'two_factor' => array(
|
||||
'already_enrolled' => 'Your device is already enrolled.',
|
||||
'success' => '로그인에 성공했습니다.',
|
||||
'code_required' => 'Two-factor code is required.',
|
||||
'invalid_code' => 'Two-factor code is invalid.',
|
||||
),
|
||||
|
||||
'signin' => array(
|
||||
'error' => '로그인 시에 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '로그인에 성공했습니다.',
|
||||
),
|
||||
|
||||
'logout' => array(
|
||||
'error' => 'There was a problem while trying to log you out, please try again.',
|
||||
'success' => 'You have successfully logged out.',
|
||||
),
|
||||
|
||||
'signup' => array(
|
||||
'error' => '계정 생성 중에 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '계정이 생성되었습니다.',
|
||||
),
|
||||
|
||||
'forgot-password' => array(
|
||||
'error' => '비밀번호 초기화 코드를 얻는 중에 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => 'If that email address exists in our system, a password recovery email has been sent.',
|
||||
),
|
||||
|
||||
'forgot-password-confirm' => array(
|
||||
'error' => '비밀번호 초기화 시 오류가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '비밀번호가 초기화 되었습니다.',
|
||||
),
|
||||
|
||||
|
||||
);
|
24
Production/SNIPE-IT/resources/lang/ko-KR/button.php
Normal file
24
Production/SNIPE-IT/resources/lang/ko-KR/button.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'actions' => '기능',
|
||||
'add' => '추가',
|
||||
'cancel' => '취소',
|
||||
'checkin_and_delete' => 'Checkin All / Delete User',
|
||||
'delete' => '삭제',
|
||||
'edit' => '편집',
|
||||
'restore' => '복원',
|
||||
'remove' => '삭제',
|
||||
'request' => '요청',
|
||||
'submit' => '제출',
|
||||
'upload' => '올리기',
|
||||
'select_file' => '파일 선택...',
|
||||
'select_files' => '파일 선택...',
|
||||
'generate_labels' => '{1} 레이블 생성|[2,*] 여러 레이블 생성',
|
||||
'send_password_link' => '패스워드 재설정 메일 전송',
|
||||
'go' => 'Go',
|
||||
'bulk_actions' => 'Bulk Actions',
|
||||
'add_maintenance' => '유지 보수 정보 추가',
|
||||
'append' => 'Append',
|
||||
'new' => '신규',
|
||||
];
|
532
Production/SNIPE-IT/resources/lang/ko-KR/general.php
Normal file
532
Production/SNIPE-IT/resources/lang/ko-KR/general.php
Normal file
@ -0,0 +1,532 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'2FA_reset' => '2FA reset',
|
||||
'accessories' => '부속품들',
|
||||
'activated' => '활성화',
|
||||
'accepted_date' => 'Date Accepted',
|
||||
'accessory' => '부속품',
|
||||
'accessory_report' => '부속품 보고서',
|
||||
'action' => '작업',
|
||||
'activity_report' => '활동 보고서',
|
||||
'address' => '주소',
|
||||
'admin' => '관리자',
|
||||
'administrator' => '관리자',
|
||||
'add_seats' => '추가한 Seat',
|
||||
'age' => "Age",
|
||||
'all_assets' => '모든 자산들',
|
||||
'all' => '전체',
|
||||
'archived' => '보관됨',
|
||||
'asset_models' => '자산 모델',
|
||||
'asset_model' => '모델',
|
||||
'asset' => '자산',
|
||||
'asset_report' => '자산 보고서',
|
||||
'asset_tag' => '자산 태그',
|
||||
'asset_tags' => '자산 태그',
|
||||
'assets_available' => '사용 가능한 자산',
|
||||
'accept_assets' => 'Accept Assets :name',
|
||||
'accept_assets_menu' => '승인된 자산',
|
||||
'audit' => '감사',
|
||||
'audit_report' => '감사 기록',
|
||||
'assets' => '자산',
|
||||
'assets_audited' => '자산 감사',
|
||||
'assets_checked_in_count' => 'assets checked in',
|
||||
'assets_checked_out_count' => 'assets checked out',
|
||||
'asset_deleted_warning' => 'This asset has been deleted. You must restore it before you can assign it to someone.',
|
||||
'assigned_date' => 'Date Assigned',
|
||||
'assigned_to' => 'Assigned to :name',
|
||||
'assignee' => 'Assigned to',
|
||||
'avatar_delete' => '아바타 삭제',
|
||||
'avatar_upload' => '아바타 올리기',
|
||||
'back' => '이전',
|
||||
'bad_data' => '찾을 수 없습니다. 잘못된 데이터 인가요?',
|
||||
'bulkaudit' => '대량 감사',
|
||||
'bulkaudit_status' => '감사 상태',
|
||||
'bulk_checkout' => '대량 반출',
|
||||
'bulk_edit' => 'Bulk Edit',
|
||||
'bulk_delete' => 'Bulk Delete',
|
||||
'bulk_actions' => 'Bulk Actions',
|
||||
'bulk_checkin_delete' => 'Bulk Checkin / Delete Users',
|
||||
'byod' => 'BYOD',
|
||||
'byod_help' => 'This device is owned by the user',
|
||||
'bystatus' => '상태별',
|
||||
'cancel' => '취소',
|
||||
'categories' => '분류',
|
||||
'category' => '분류',
|
||||
'change' => '입/출',
|
||||
'changeemail' => '이메일 주소 변경',
|
||||
'changepassword' => '비밀번호 변경',
|
||||
'checkin' => '반입',
|
||||
'checkin_from' => '반입처',
|
||||
'checkout' => '반출',
|
||||
'checkouts_count' => '반출',
|
||||
'checkins_count' => '반입',
|
||||
'user_requests_count' => '요청',
|
||||
'city' => '시',
|
||||
'click_here' => '여기를 클릭',
|
||||
'clear_selection' => '선택 해제',
|
||||
'companies' => '회사들',
|
||||
'company' => '회사',
|
||||
'component' => '구성 요소',
|
||||
'components' => '구성 요소',
|
||||
'complete' => '완료',
|
||||
'consumable' => '소모품',
|
||||
'consumables' => '소모품',
|
||||
'country' => '국가명',
|
||||
'could_not_restore' => 'Error restoring :item_type: :error',
|
||||
'not_deleted' => 'The :item_type is not deleted so it cannot be restored',
|
||||
'create' => '새로 생성',
|
||||
'created' => '품목 생성됨',
|
||||
'created_asset' => '생성된 자산',
|
||||
'created_at' => 'Created At',
|
||||
'created_by' => 'Created By',
|
||||
'record_created' => '레코드 생성',
|
||||
'updated_at' => '업데이트',
|
||||
'currency' => '원', // this is deprecated
|
||||
'current' => '현재',
|
||||
'current_password' => 'Current Password',
|
||||
'customize_report' => 'Customize Report',
|
||||
'custom_report' => '맞춤형 자산 보고서',
|
||||
'dashboard' => '대시보드',
|
||||
'days' => '일자',
|
||||
'days_to_next_audit' => '다음 감사까지의 일자',
|
||||
'date' => '날짜',
|
||||
'debug_warning' => '경고!',
|
||||
'debug_warning_text' => '이 프로그램은 디버깅이 가능한 제품 모드에서 구동중입니다. 당신의 프로그램이 외부 환경과 접속이 가능하다면 중요한 자료가 유출될 수 있습니다. <code>.env</code> 파일의 <code>APP_DEBUG</code> 값을 <code>false</code> 로 설정하여 디버깅을 비활성화 하세요.',
|
||||
'delete' => '삭제',
|
||||
'delete_confirm' => ':item 을 삭제 하시겠습니까?',
|
||||
'delete_confirm_no_undo' => 'Are you sure you wish to delete :item? This can not be undone.',
|
||||
'deleted' => '삭제됨',
|
||||
'delete_seats' => '삭제한 Seat',
|
||||
'deletion_failed' => '삭제 실패',
|
||||
'departments' => '부서',
|
||||
'department' => '부서',
|
||||
'deployed' => '사용중',
|
||||
'depreciation' => '감가 상각',
|
||||
'depreciations' => 'Depreciations',
|
||||
'depreciation_report' => '감가상각 보고서',
|
||||
'details' => '상세 정보',
|
||||
'download' => '내려받기',
|
||||
'download_all' => '전체 다운로드',
|
||||
'editprofile' => '프로필 수정',
|
||||
'eol' => '폐기일',
|
||||
'email_domain' => '전자 우편 도메인',
|
||||
'email_format' => '전자 우편 형식',
|
||||
'employee_number' => '사원번호',
|
||||
'email_domain_help' => '읽어오기시 전자 우편 주소를 생성하는데 사용됩니다.',
|
||||
'error' => '오류',
|
||||
'exclude_archived' => 'Exclude Archived Assets',
|
||||
'exclude_deleted' => 'Exclude Deleted Assets',
|
||||
'example' => 'Example: ',
|
||||
'filastname_format' => '초기 성명 (jsmith@example.com)',
|
||||
'firstname_lastname_format' => '이름 성 (jane.smith@example.com)',
|
||||
'firstname_lastname_underscore_format' => '이름 성 (jane.smith@example.com)',
|
||||
'lastnamefirstinitial_format' => '성 (姓)의 첫 이니셜 (smithj@example.com)',
|
||||
'firstintial_dot_lastname_format' => 'First Initial Last Name (j.smith@example.com)',
|
||||
'firstname_lastname_display' => 'First Name Last Name (Jane Smith)',
|
||||
'lastname_firstname_display' => 'Last Name First Name (Smith Jane)',
|
||||
'name_display_format' => 'Name Display Format',
|
||||
'first' => '첫번째',
|
||||
'firstnamelastname' => 'First Name Last Name (janesmith@example.com)',
|
||||
'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)',
|
||||
'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)',
|
||||
'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)',
|
||||
'first_name' => '이름',
|
||||
'first_name_format' => '이름 (jane@example.com)',
|
||||
'files' => '파일',
|
||||
'file_name' => '파일',
|
||||
'file_type' => '파일 형식',
|
||||
'filesize' => 'File Size',
|
||||
'file_uploads' => '파일 올리기',
|
||||
'file_upload' => '파일 올리기',
|
||||
'generate' => '생성',
|
||||
'generate_labels' => '라벨 생성',
|
||||
'github_markdown' => '이 항목은 <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>을 채택합니다.',
|
||||
'groups' => '그룹',
|
||||
'gravatar_email' => 'Gravatar 메일 주소',
|
||||
'gravatar_url' => '<a href="http://gravatar.com"><small>Change your avatar at Gravatar.com</small></a>.',
|
||||
'history' => '기록',
|
||||
'history_for' => '이력',
|
||||
'id' => '아이디',
|
||||
'image' => '이미지',
|
||||
'image_delete' => '이미지 삭제',
|
||||
'include_deleted' => 'Include Deleted Assets',
|
||||
'image_upload' => '이미지 올리기',
|
||||
'filetypes_accepted_help' => 'Accepted filetype is :types. Max upload size allowed is :size.|Accepted filetypes are :types. Max upload size allowed is :size.',
|
||||
'filetypes_size_help' => 'Max upload size allowed is :size.',
|
||||
'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.',
|
||||
'unaccepted_image_type' => 'This image file was not readable. Accepted filetypes are jpg, webp, png, gif, and svg. The mimetype of this file is: :mimetype.',
|
||||
'import' => '불러오기',
|
||||
'import_this_file' => 'Map fields and process this file',
|
||||
'importing' => '가져오는 중',
|
||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'import-history' => '가져오기 이력',
|
||||
'asset_maintenance' => '자산 관리',
|
||||
'asset_maintenance_report' => '자산 관리 보고서',
|
||||
'asset_maintenances' => '자산 관리',
|
||||
'item' => '항목',
|
||||
'item_name' => '항목 이름',
|
||||
'import_file' => 'import CSV file',
|
||||
'import_type' => 'CSV import type',
|
||||
'insufficient_permissions' => '권한 없음',
|
||||
'kits' => '사전 정의된 키트',
|
||||
'language' => '언어',
|
||||
'last' => '마지막',
|
||||
'last_login' => '마지막 로그인',
|
||||
'last_name' => '성',
|
||||
'license' => '라이선스',
|
||||
'license_report' => '라이선스 보고서',
|
||||
'licenses_available' => '사용가능 라이선스',
|
||||
'licenses' => '라이선스',
|
||||
'list_all' => '전체 목록보기',
|
||||
'loading' => '로딩 중입니다. 잠시만 기다려 주십시오.',
|
||||
'lock_passwords' => '이 항목은 데모에서 저장이 불가능합니다.',
|
||||
'feature_disabled' => '데모 설치본에서는 이 기능을 사용할 수 없습니다.',
|
||||
'location' => '장소',
|
||||
'location_plural' => 'Location|Locations',
|
||||
'locations' => '위치',
|
||||
'logo_size' => 'Square logos look best with Logo + Text. Logo maximum display size is 50px high x 500px wide. ',
|
||||
'logout' => '로그아웃',
|
||||
'lookup_by_tag' => '자산 태그로 조회',
|
||||
'maintenances' => '유지 관리',
|
||||
'manage_api_keys' => 'API Key 관리',
|
||||
'manufacturer' => '제조업체',
|
||||
'manufacturers' => '제조업체',
|
||||
'markdown' => '이 항목은 <a href="https://help.github.com/articles/github-flavored-markdown/">GFM을 따릅니다</a>.',
|
||||
'min_amt' => '최소 수량',
|
||||
'min_amt_help' => 'Minimum number of items that should be available before an alert gets triggered. Leave Min. QTY blank if you do not want to receive alerts for low inventory.',
|
||||
'model_no' => '모델 번호.',
|
||||
'months' => '개월',
|
||||
'moreinfo' => '추가 정보',
|
||||
'name' => '이름',
|
||||
'new_password' => '새로운 비밀번호',
|
||||
'next' => '다음',
|
||||
'next_audit_date' => '다음 감사 일자',
|
||||
'no_email' => 'No email address associated with this user',
|
||||
'last_audit' => '최근 감사',
|
||||
'new' => '신규!',
|
||||
'no_depreciation' => '감가 상각 없음',
|
||||
'no_results' => '결과 없음.',
|
||||
'no' => '아니오',
|
||||
'notes' => '비고',
|
||||
'order_number' => '주문 번호',
|
||||
'only_deleted' => 'Only Deleted Assets',
|
||||
'page_menu' => 'Showing _MENU_ items',
|
||||
'pagination_info' => 'Showing _START_ to _END_ of _TOTAL_ items',
|
||||
'pending' => '대기중',
|
||||
'people' => '사용자',
|
||||
'per_page' => '페이지 당 결과',
|
||||
'previous' => '이전',
|
||||
'processing' => '처리중',
|
||||
'profile' => '프로필',
|
||||
'purchase_cost' => '구매 원가',
|
||||
'purchase_date' => '구매 일자',
|
||||
'qty' => '수량',
|
||||
'quantity' => '수량',
|
||||
'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels',
|
||||
'quickscan_checkin' => 'Quick Scan Checkin',
|
||||
'quickscan_checkin_status' => 'Checkin Status',
|
||||
'ready_to_deploy' => '사용 준비',
|
||||
'recent_activity' => '최근 활동',
|
||||
'remaining' => '잔여수량',
|
||||
'remove_company' => '공급자 연결 제거',
|
||||
'reports' => '보고서',
|
||||
'restored' => '복원됨',
|
||||
'restore' => '복원',
|
||||
'requestable_models' => 'Requestable Models',
|
||||
'requested' => '요청됨',
|
||||
'requested_date' => 'Requested Date',
|
||||
'requested_assets' => 'Requested Assets',
|
||||
'requested_assets_menu' => 'Requested Assets',
|
||||
'request_canceled' => '요청 취소',
|
||||
'save' => '저장',
|
||||
'select_var' => 'Select :thing... ', // this will eventually replace all of our other selects
|
||||
'select' => '선택',
|
||||
'select_all' => '모두 선택',
|
||||
'search' => '찾기',
|
||||
'select_category' => '분류 선택',
|
||||
'select_department' => '부서 선택',
|
||||
'select_depreciation' => '감가 상각 유형 선택',
|
||||
'select_location' => '장소 선택',
|
||||
'select_manufacturer' => '제조업체 선택',
|
||||
'select_model' => '모델 선택',
|
||||
'select_supplier' => '공급자 선택',
|
||||
'select_user' => '사용자 선택',
|
||||
'select_date' => '날짜 (YYYY-MM-DD) 선택',
|
||||
'select_statuslabel' => '상태 선택',
|
||||
'select_company' => '회사 선택',
|
||||
'select_asset' => '자산 선택',
|
||||
'settings' => '설정',
|
||||
'show_deleted' => '보기 삭제됨',
|
||||
'show_current' => '현재 보기',
|
||||
'sign_in' => '로그인',
|
||||
'signature' => '서명',
|
||||
'signed_off_by' => 'Signed Off By',
|
||||
'skin' => '스킨',
|
||||
'webhook_msg_note' => 'A notification will be sent via webhook',
|
||||
'webhook_test_msg' => 'Oh hai! Looks like your :app integration with Snipe-IT is working!',
|
||||
'some_features_disabled' => '데모 모드: 설치 시 일부 기능은 사용할 수 없습니다.',
|
||||
'site_name' => '사이트 명',
|
||||
'state' => '주',
|
||||
'status_labels' => '상태 딱지',
|
||||
'status' => '상태',
|
||||
'accept_eula' => 'Acceptance Agreement',
|
||||
'supplier' => '공급자',
|
||||
'suppliers' => '공급자',
|
||||
'sure_to_delete' => '정말로 삭제 하시겠습니까',
|
||||
'sure_to_delete_var' => ':item 을 삭제 하시겠습니까?',
|
||||
'delete_what' => 'Delete :item',
|
||||
'submit' => '제출',
|
||||
'target' => '대상',
|
||||
'time_and_date_display' => '시간과 날짜 표시',
|
||||
'total_assets' => '총 자산',
|
||||
'total_licenses' => '총 라이선스',
|
||||
'total_accessories' => '부속품들 합계',
|
||||
'total_consumables' => '소모품들 합계',
|
||||
'type' => '유형',
|
||||
'undeployable' => '사용불가',
|
||||
'unknown_admin' => '알수없는 관리자',
|
||||
'username_format' => '사용자명 형식',
|
||||
'username' => '사용자명',
|
||||
'update' => '갱신',
|
||||
'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.',
|
||||
'uploaded' => '업로드됨',
|
||||
'user' => '사용자',
|
||||
'accepted' => '승인됨',
|
||||
'declined' => '거부됨',
|
||||
'unassigned' => 'Unassigned',
|
||||
'unaccepted_asset_report' => '미승인 자산',
|
||||
'users' => '사용자',
|
||||
'viewall' => '전체 보기',
|
||||
'viewassets' => '사용중인 자산 보기',
|
||||
'viewassetsfor' => 'View Assets for :name',
|
||||
'website' => '웹사이트',
|
||||
'welcome' => '환영합니다, :name',
|
||||
'years' => '년',
|
||||
'yes' => '네',
|
||||
'zip' => 'Zip',
|
||||
'noimage' => '업로드한 사진이 없거나 사진을 찾지 못함',
|
||||
'file_does_not_exist' => 'The requested file does not exist on the server.',
|
||||
'file_upload_success' => 'File upload success!',
|
||||
'no_files_uploaded' => 'File upload success!',
|
||||
'token_expired' => '폼의 세션이 끝났습니다. 다시 시도해 주세요.',
|
||||
'login_enabled' => '로그인 활성화됨',
|
||||
'audit_due' => 'Due for Audit',
|
||||
'audit_overdue' => 'Overdue for Audit',
|
||||
'accept' => '허가됨 :asset',
|
||||
'i_accept' => '동의합니다',
|
||||
'i_decline' => '거부합니다',
|
||||
'accept_decline' => 'Accept/Decline',
|
||||
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
|
||||
'clear_signature' => 'Clear Signature',
|
||||
'show_help' => '도움말 보기',
|
||||
'hide_help' => '도움말 숨기기',
|
||||
'view_all' => '모두 보기',
|
||||
'hide_deleted' => 'Hide Deleted',
|
||||
'email' => '이메일',
|
||||
'do_not_change' => 'Do Not Change',
|
||||
'bug_report' => '오류 보고',
|
||||
'user_manual' => '사용자 설명서',
|
||||
'setup_step_1' => '1 단계',
|
||||
'setup_step_2' => '2 단계',
|
||||
'setup_step_3' => '3 단계',
|
||||
'setup_step_4' => '4 단계',
|
||||
'setup_config_check' => 'Configuration Check',
|
||||
'setup_create_database' => 'Create Database Tables',
|
||||
'setup_create_admin' => '관리자 유저 생성',
|
||||
'setup_done' => '완료됨',
|
||||
'bulk_edit_about_to' => 'You are about to edit the following: ',
|
||||
'checked_out' => '반출 확인',
|
||||
'checked_out_to' => 'Checked out to',
|
||||
'fields' => 'Fields',
|
||||
'last_checkout' => 'Last Checkout',
|
||||
'due_to_checkin' => 'The following :count items are due to be checked in soon:',
|
||||
'expected_checkin' => 'Expected Checkin',
|
||||
'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.',
|
||||
'changed' => '변경됨',
|
||||
'to' => 'To',
|
||||
'report_fields_info' => '<p>Select the fields you would like to include in your custom report, and click Generate. The file (custom-asset-report-YYYY-mm-dd.csv) will download automatically, and you can open it in Excel.</p>
|
||||
<p>If you would like to export only certain assets, use the options below to fine-tune your results.</p>',
|
||||
'range' => '범위',
|
||||
'bom_remark' => 'Add a BOM (byte-order mark) to this CSV',
|
||||
'improvements' => 'Improvements',
|
||||
'information' => '정보',
|
||||
'permissions' => '권한',
|
||||
'managed_ldap' => '(Managed via LDAP)',
|
||||
'export' => '내보내기',
|
||||
'ldap_sync' => 'LDAP 동기화',
|
||||
'ldap_user_sync' => 'LDAP 사용자 동기화',
|
||||
'synchronize' => '동기화',
|
||||
'sync_results' => '동기화 결과',
|
||||
'license_serial' => '제품 번호',
|
||||
'invalid_category' => 'Invalid or missing category',
|
||||
'invalid_item_category_single' => 'Invalid or missing :type category. Please update the category of this :type to include a valid category before checking out.',
|
||||
'dashboard_info' => 'This is your dashboard. There are many like it, but this one is yours.',
|
||||
'60_percent_warning' => '60% 완료(경고)',
|
||||
'dashboard_empty' => 'It looks like you have not added anything yet, so we do not have anything awesome to display. Get started by adding some assets, accessories, consumables, or licenses now!',
|
||||
'new_asset' => '새 자산',
|
||||
'new_license' => '새 라이센스',
|
||||
'new_accessory' => '새 부속품',
|
||||
'new_consumable' => '새 소모품',
|
||||
'collapse' => 'Collapse',
|
||||
'assigned' => 'Assigned',
|
||||
'asset_count' => 'Asset Count',
|
||||
'accessories_count' => 'Accessories Count',
|
||||
'consumables_count' => 'Consumables Count',
|
||||
'components_count' => 'Components Count',
|
||||
'licenses_count' => 'Licenses Count',
|
||||
'notification_error' => '오류',
|
||||
'notification_error_hint' => 'Please check the form below for errors',
|
||||
'notification_bulk_error_hint' => 'The following fields had validation errors and were not edited:',
|
||||
'notification_success' => '성공',
|
||||
'notification_warning' => '경고',
|
||||
'notification_info' => '정보',
|
||||
'asset_information' => '자산 정보',
|
||||
'model_name' => 'Model Name',
|
||||
'asset_name' => '자산명',
|
||||
'consumable_information' => 'Consumable Information:',
|
||||
'consumable_name' => '소모품 명:',
|
||||
'accessory_information' => 'Accessory Information:',
|
||||
'accessory_name' => '액세서리 이름',
|
||||
'clone_item' => 'Clone Item',
|
||||
'checkout_tooltip' => 'Check this item out',
|
||||
'checkin_tooltip' => 'Check this item in',
|
||||
'checkout_user_tooltip' => 'Check this item out to a user',
|
||||
'maintenance_mode' => 'The service is temporarily unavailable for system updates. Please check back later.',
|
||||
'maintenance_mode_title' => 'System Temporarily Unavailable',
|
||||
'ldap_import' => 'User password should not be managed by LDAP. (This allows you to send forgotten password requests.)',
|
||||
'purge_not_allowed' => 'Purging deleted data has been disabled in the .env file. Contact support or your systems administrator.',
|
||||
'backup_delete_not_allowed' => 'Deleting backups has been disabled in the .env file. Contact support or your systems administrator.',
|
||||
'additional_files' => 'Additional Files',
|
||||
'shitty_browser' => 'No signature detected. If you are using an older browser, please use a more modern browser to complete your asset acceptance.',
|
||||
'bulk_soft_delete' =>'Also soft-delete these users. Their asset history will remain intact unless/until you purge deleted records in the Admin Settings.',
|
||||
'bulk_checkin_delete_success' => 'Your selected users have been deleted and their items have been checked in.',
|
||||
'bulk_checkin_success' => 'The items for the selected users have been checked in.',
|
||||
'set_to_null' => 'Delete values for this asset|Delete values for all :asset_count assets ',
|
||||
'set_users_field_to_null' => 'Delete :field values for this user|Delete :field values for all :user_count users ',
|
||||
'na_no_purchase_date' => 'N/A - No purchase date provided',
|
||||
'assets_by_status' => 'Assets by Status',
|
||||
'assets_by_status_type' => 'Assets by Status Type',
|
||||
'pie_chart_type' => 'Dashboard Pie Chart Type',
|
||||
'hello_name' => 'Hello, :name!',
|
||||
'unaccepted_profile_warning' => 'You have :count items requiring acceptance. Click here to accept or decline them',
|
||||
'start_date' => '시작일',
|
||||
'end_date' => 'End Date',
|
||||
'alt_uploaded_image_thumbnail' => 'Uploaded thumbnail',
|
||||
'placeholder_kit' => 'Select a kit',
|
||||
'file_not_found' => 'File not found',
|
||||
'preview_not_available' => '(no preview)',
|
||||
'setup' => 'Setup',
|
||||
'pre_flight' => 'Pre-Flight',
|
||||
'skip_to_main_content' => 'Skip to main content',
|
||||
'toggle_navigation' => 'Toggle navigation',
|
||||
'alerts' => 'Alerts',
|
||||
'tasks_view_all' => 'View all tasks',
|
||||
'true' => 'True',
|
||||
'false' => 'False',
|
||||
'integration_option' => 'Integration Option',
|
||||
'log_does_not_exist' => 'No matching log record exists.',
|
||||
'merge_users' => 'Merge Users',
|
||||
'merge_information' => 'This will merge the :count users into a single user. Select the user you wish to merge the others into below, and the associated assets, licenses, etc will be moved over to the selected user and the other users will be marked as deleted.',
|
||||
'warning_merge_information' => 'This action CANNOT be undone and should ONLY be used when you need to merge users because of a bad import or sync. Be sure to run a backup first.',
|
||||
'no_users_selected' => 'No users selected',
|
||||
'not_enough_users_selected' => 'At least :count users must be selected',
|
||||
'merge_success' => ':count users merged successfully into :into_username!',
|
||||
'merged' => 'merged',
|
||||
'merged_log_this_user_into' => 'Merged this user (ID :to_id - :to_username) into user ID :from_id (:from_username) ',
|
||||
'merged_log_this_user_from' => 'Merged user ID :from_id (:from_username) into this user (ID :to_id - :to_username)',
|
||||
'clear_and_save' => 'Clear & Save',
|
||||
'update_existing_values' => 'Update Existing Values?',
|
||||
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
|
||||
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
|
||||
'send_welcome_email_to_users' => ' Send Welcome Email for new Users?',
|
||||
'send_email' => 'Send Email',
|
||||
'call' => 'Call number',
|
||||
'back_before_importing' => 'Backup before importing?',
|
||||
'csv_header_field' => 'CSV Header Field',
|
||||
'import_field' => 'Import Field',
|
||||
'sample_value' => 'Sample Value',
|
||||
'no_headers' => 'No Columns Found',
|
||||
'error_in_import_file' => 'There was an error reading the CSV file: :error',
|
||||
'errors_importing' => 'Some Errors occurred while importing: ',
|
||||
'warning' => 'WARNING: :warning',
|
||||
'success_redirecting' => '"Success... Redirecting.',
|
||||
'cancel_request' => 'Cancel this item request',
|
||||
'setup_successful_migrations' => 'Your database tables have been created',
|
||||
'setup_migration_output' => 'Migration output:',
|
||||
'setup_migration_create_user' => 'Next: Create User',
|
||||
'importer_generic_error' => 'Your file import is complete, but we did receive an error. This is usually caused by third-party API throttling from a notification webhook (such as Slack) and would not have interfered with the import itself, but you should confirm this.',
|
||||
'confirm' => 'Confirm',
|
||||
'autoassign_licenses' => 'Auto-Assign Licenses',
|
||||
'autoassign_licenses_help' => 'Allow this user to have licenses assigned via the bulk-assign license UI or cli tools.',
|
||||
'autoassign_licenses_help_long' => 'This allows a user to be have licenses assigned via the bulk-assign license UI or cli tools. (For example, you might not want contractors to be auto-assigned a license you would provide to only staff members. You can still individually assign licenses to those users, but they will not be included in the Checkout License to All Users functions.)',
|
||||
'no_autoassign_licenses_help' => 'Do not include user for bulk-assigning through the license UI or cli tools.',
|
||||
'modal_confirm_generic' => 'Are you sure?',
|
||||
'cannot_be_deleted' => 'This item cannot be deleted',
|
||||
'cannot_be_edited' => 'This item cannot be edited.',
|
||||
'undeployable_tooltip' => 'This item cannot be checked out. Check the quantity remaining.',
|
||||
'serial_number' => 'Serial Number',
|
||||
'item_notes' => ':item Notes',
|
||||
'item_name_var' => ':항목 이름',
|
||||
'error_user_company' => 'Checkout target company and asset company do not match',
|
||||
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
|
||||
'importer' => [
|
||||
'checked_out_to_fullname' => 'Checked Out to: Full Name',
|
||||
'checked_out_to_first_name' => 'Checked Out to: First Name',
|
||||
'checked_out_to_last_name' => 'Checked Out to: Last Name',
|
||||
'checked_out_to_username' => 'Checked Out to: Username',
|
||||
'checked_out_to_email' => 'Checked Out to: Email',
|
||||
'checked_out_to_tag' => 'Checked Out to: Asset Tag',
|
||||
'manager_first_name' => 'Manager First Name',
|
||||
'manager_last_name' => 'Manager Last Name',
|
||||
'manager_full_name' => 'Manager Full Name',
|
||||
'manager_username' => 'Manager Username',
|
||||
'checkout_type' => 'Checkout Type',
|
||||
'checkout_location' => 'Checkout to Location',
|
||||
'image_filename' => 'Image Filename',
|
||||
'do_not_import' => 'Do Not Import',
|
||||
'vip' => 'VIP',
|
||||
'avatar' => 'Avatar',
|
||||
'gravatar' => 'Gravatar Email',
|
||||
'currency' => 'Currency',
|
||||
'address2' => 'Address Line 2',
|
||||
'import_note' => 'Imported using csv importer',
|
||||
],
|
||||
'percent_complete' => '% 완료',
|
||||
'uploading' => 'Uploading... ',
|
||||
'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.',
|
||||
'copy_to_clipboard' => 'Copy to Clipboard',
|
||||
'copied' => 'Copied!',
|
||||
'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.',
|
||||
'rtd_location_help' => 'This is the location of the asset when it is not checked out',
|
||||
'item_not_found' => ':item_type ID :id does not exist or has been deleted',
|
||||
'action_permission_denied' => 'You do not have permission to :action :item_type ID :id',
|
||||
'action_permission_generic' => 'You do not have permission to :action this :item_type',
|
||||
'edit' => '편집',
|
||||
'action_source' => 'Action Source',
|
||||
'or' => 'or',
|
||||
'url' => 'URL',
|
||||
'edit_fieldset' => 'Edit fieldset fields and options',
|
||||
'bulk' => [
|
||||
'delete' =>
|
||||
[
|
||||
'header' => 'Bulk Delete :object_type',
|
||||
'warn' => 'You are about to delete one :object_type|You are about to delete :count :object_type',
|
||||
'success' => ':object_type successfully deleted|Successfully deleted :count :object_type',
|
||||
'error' => 'Could not delete :object_type',
|
||||
'nothing_selected' => 'No :object_type selected - nothing to do',
|
||||
'partial' => 'Deleted :success_count :object_type, but :error_count :object_type could not be deleted',
|
||||
],
|
||||
],
|
||||
'no_requestable' => 'There are no requestable assets or asset models.',
|
||||
|
||||
'countable' => [
|
||||
'accessories' => ':count Accessory|:count Accessories',
|
||||
'assets' => ':count Asset|:count Assets',
|
||||
'licenses' => ':count License|:count Licenses',
|
||||
'license_seats' => ':count License Seat|:count License Seats',
|
||||
'consumables' => ':count Consumable|:count Consumables',
|
||||
'components' => ':count Component|:count Components',
|
||||
]
|
||||
|
||||
];
|
35
Production/SNIPE-IT/resources/lang/ko-KR/help.php
Normal file
35
Production/SNIPE-IT/resources/lang/ko-KR/help.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'more_info_title' => '자세한 정보',
|
||||
|
||||
'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.<br><br>Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
|
||||
|
||||
'assets' => '자산은 일련 번호나 자산 꼬리표로 추적되는 품목들입니다. 특정 품목의 상황을 파악하는 것이 더 높은 가치를 갖는 추세입니다.',
|
||||
|
||||
'categories' => '분류는 품목들을 구성할 떄 유용합니다. 몇가지 예시 분류들로는 "데스크탑","랩탑","휴대폰","타블렛" 등이 있지만, 당신이 원하는 대로 분류들을 사용 할 수 있습니다.',
|
||||
|
||||
'accessories' => '부속품들이란 사용자들에게 지급은 하지만 일련 번호가 없는(또는 특별히 추적할 필요가 없는) 것을 뜻합니다. 예를 들면, 컴퓨터의 마우스나 키보드들입니다.',
|
||||
|
||||
'companies' => '회사들은 단순한 식별 항목으로 사용될 수 있고, 전사 지원이 관리 설정에서 활성화 된다면 자산, 사용자, 기타 등의 표시 제한에 사용 될 수 있습니다.',
|
||||
|
||||
'components' => '부품들은 HDD, RAM 같은, 한개의 자산의 일부분입니다.',
|
||||
|
||||
'consumables' => '소모품은 시간이 지남에 따라 소진되어 구매해야 하는 것들 입니다. 예로, 프린터 잉크나 복사 용지가 있습니다.',
|
||||
|
||||
'depreciations' => '가치가 하락하는 자산들을 직선법에 의한 감가상각 설정을 할 수 있습니다.',
|
||||
|
||||
'empty_file' => 'The importer detects that this file is empty.'
|
||||
];
|
321
Production/SNIPE-IT/resources/lang/ko-KR/localizations.php
Normal file
321
Production/SNIPE-IT/resources/lang/ko-KR/localizations.php
Normal file
@ -0,0 +1,321 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'select_language' => 'Select a language',
|
||||
'languages' => [
|
||||
'en-US'=> 'English, US',
|
||||
'en-GB'=> 'English, UK',
|
||||
'am-ET' => 'Amharic',
|
||||
'af-ZA'=> 'Afrikaans',
|
||||
'ar-SA'=> 'Arabic',
|
||||
'bg-BG'=> 'Bulgarian',
|
||||
'zh-CN'=> 'Chinese Simplified',
|
||||
'zh-TW'=> 'Chinese Traditional',
|
||||
'ca-ES' => 'Catalan',
|
||||
'hr-HR'=> 'Croatian',
|
||||
'cs-CZ'=> 'Czech',
|
||||
'da-DK'=> 'Danish',
|
||||
'nl-NL'=> 'Dutch',
|
||||
'en-ID'=> 'English, Indonesia',
|
||||
'et-EE'=> 'Estonian',
|
||||
'fil-PH'=> 'Filipino',
|
||||
'fi-FI'=> 'Finnish',
|
||||
'fr-FR'=> 'French',
|
||||
'de-DE'=> 'German',
|
||||
'de-if'=> 'German (Informal)',
|
||||
'el-GR'=> 'Greek',
|
||||
'he-IL'=> 'Hebrew',
|
||||
'hu-HU'=> 'Hungarian',
|
||||
'is-IS' => 'Icelandic',
|
||||
'id-ID'=> 'Indonesian',
|
||||
'ga-IE'=> 'Irish',
|
||||
'it-IT'=> 'Italian',
|
||||
'ja-JP'=> 'Japanese',
|
||||
'km-KH'=>'Khmer',
|
||||
'ko-KR'=> 'Korean',
|
||||
'lt-LT'=>'Lithuanian',
|
||||
'lv-LV'=> 'Latvian',
|
||||
'mk-MK'=> 'Macedonian',
|
||||
'ms-MY'=> 'Malay',
|
||||
'mi-NZ'=> 'Maori',
|
||||
'mn-MN'=> 'Mongolian',
|
||||
'no-NO'=> 'Norwegian',
|
||||
'fa-IR'=> 'Persian',
|
||||
'pl-PL'=> 'Polish',
|
||||
'pt-PT'=> 'Portuguese',
|
||||
'pt-BR'=> 'Portuguese, Brazilian',
|
||||
'ro-RO'=> 'Romanian',
|
||||
'ru-RU'=> 'Russian',
|
||||
'sr-CS' => 'Serbian (Latin)',
|
||||
'sk-SK'=> 'Slovak',
|
||||
'sl-SI'=> 'Slovenian',
|
||||
'so-SO'=> 'Somali',
|
||||
'es-ES'=> 'Spanish',
|
||||
'es-CO'=> 'Spanish, Colombia',
|
||||
'es-MX'=> 'Spanish, Mexico',
|
||||
'es-VE'=> 'Spanish, Venezuela',
|
||||
'sv-SE'=> 'Swedish',
|
||||
'tl-PH'=> 'Tagalog',
|
||||
'ta-IN'=> 'Tamil',
|
||||
'th-TH'=> 'Thai',
|
||||
'tr-TR'=> 'Turkish',
|
||||
'uk-UA'=> 'Ukranian',
|
||||
'vi-VN'=> 'Vietnamese',
|
||||
'cy-GB'=> 'Welsh',
|
||||
'zu-ZA'=> 'Zulu',
|
||||
],
|
||||
|
||||
'select_country' => 'Select a country',
|
||||
|
||||
'countries' => [
|
||||
'AC'=>'Ascension Island',
|
||||
'AD'=>'Andorra',
|
||||
'AE'=>'United Arab Emirates',
|
||||
'AF'=>'Afghanistan',
|
||||
'AG'=>'Antigua And Barbuda',
|
||||
'AI'=>'Anguilla',
|
||||
'AL'=>'Albania',
|
||||
'AM'=>'Armenia',
|
||||
'AN'=>'Netherlands Antilles',
|
||||
'AO'=>'Angola',
|
||||
'AQ'=>'Antarctica',
|
||||
'AR'=>'Argentina',
|
||||
'AS'=>'American Samoa',
|
||||
'AT'=>'Austria',
|
||||
'AU'=>'Australia',
|
||||
'AW'=>'Aruba',
|
||||
'AX'=>'Ã…land',
|
||||
'AZ'=>'Azerbaijan',
|
||||
'BA'=>'Bosnia And Herzegovina',
|
||||
'BB'=>'Barbados',
|
||||
'BE'=>'Belgium',
|
||||
'BD'=>'Bangladesh',
|
||||
'BF'=>'Burkina Faso',
|
||||
'BG'=>'Bulgaria',
|
||||
'BH'=>'Bahrain',
|
||||
'BI'=>'Burundi',
|
||||
'BJ'=>'Benin',
|
||||
'BM'=>'Bermuda',
|
||||
'BN'=>'Brunei Darussalam',
|
||||
'BO'=>'Bolivia',
|
||||
'BR'=>'Brazil',
|
||||
'BS'=>'Bahamas',
|
||||
'BT'=>'Bhutan',
|
||||
'BV'=>'Bouvet Island',
|
||||
'BW'=>'Botswana',
|
||||
'BY'=>'Belarus',
|
||||
'BZ'=>'Belize',
|
||||
'CA'=>'Canada',
|
||||
'CC'=>'Cocos (Keeling) Islands',
|
||||
'CD'=>'Congo (Democratic Republic)',
|
||||
'CF'=>'Central African Republic',
|
||||
'CG'=>'Congo (Republic)',
|
||||
'CH'=>'Switzerland',
|
||||
'CI'=>'Côte d\'Ivoire',
|
||||
'CK'=>'Cook Islands',
|
||||
'CL'=>'Chile',
|
||||
'CM'=>'Cameroon',
|
||||
'CN'=>'People\'s Republic of China',
|
||||
'CO'=>'Colombia',
|
||||
'CR'=>'Costa Rica',
|
||||
'CU'=>'Cuba',
|
||||
'CV'=>'Cape Verde',
|
||||
'CX'=>'Christmas Island',
|
||||
'CY'=>'Cyprus',
|
||||
'CZ'=>'Czech Republic',
|
||||
'DE'=>'Germany',
|
||||
'DJ'=>'Djibouti',
|
||||
'DK'=>'Denmark',
|
||||
'DM'=>'Dominica',
|
||||
'DO'=>'Dominican Republic',
|
||||
'DZ'=>'Algeria',
|
||||
'EC'=>'Ecuador',
|
||||
'EE'=>'Estonia',
|
||||
'EG'=>'Egypt',
|
||||
'ER'=>'Eritrea',
|
||||
'ES'=>'Spain',
|
||||
'ET'=>'Ethiopia',
|
||||
'EU'=>'European Union',
|
||||
'FI'=>'Finland',
|
||||
'FJ'=>'Fiji',
|
||||
'FK'=>'Falkland Islands (Malvinas)',
|
||||
'FM'=>'Micronesia, Federated States Of',
|
||||
'FO'=>'Faroe Islands',
|
||||
'FR'=>'France',
|
||||
'GA'=>'Gabon',
|
||||
'GD'=>'Grenada',
|
||||
'GE'=>'Georgia',
|
||||
'GF'=>'French Guiana',
|
||||
'GG'=>'Guernsey',
|
||||
'GH'=>'Ghana',
|
||||
'GI'=>'Gibraltar',
|
||||
'GL'=>'Greenland',
|
||||
'GM'=>'Gambia',
|
||||
'GN'=>'Guinea',
|
||||
'GP'=>'Guadeloupe',
|
||||
'GQ'=>'Equatorial Guinea',
|
||||
'GR'=>'Greece',
|
||||
'GS'=>'South Georgia And The South Sandwich Islands',
|
||||
'GT'=>'Guatemala',
|
||||
'GU'=>'Guam',
|
||||
'GW'=>'Guinea-Bissau',
|
||||
'GY'=>'Guyana',
|
||||
'HK'=>'Hong Kong',
|
||||
'HM'=>'Heard And Mc Donald Islands',
|
||||
'HN'=>'Honduras',
|
||||
'HR'=>'Croatia (local name: Hrvatska)',
|
||||
'HT'=>'Haiti',
|
||||
'HU'=>'Hungary',
|
||||
'ID'=>'Indonesia',
|
||||
'IE'=>'Ireland',
|
||||
'IL'=>'Israel',
|
||||
'IM'=>'Isle of Man',
|
||||
'IN'=>'India',
|
||||
'IO'=>'British Indian Ocean Territory',
|
||||
'IQ'=>'Iraq',
|
||||
'IR'=>'Iran, Islamic Republic Of',
|
||||
'IS'=>'Iceland',
|
||||
'IT'=>'Italy',
|
||||
'JE'=>'Jersey',
|
||||
'JM'=>'Jamaica',
|
||||
'JO'=>'Jordan',
|
||||
'JP'=>'Japan',
|
||||
'KE'=>'Kenya',
|
||||
'KG'=>'Kyrgyzstan',
|
||||
'KH'=>'Cambodia',
|
||||
'KI'=>'Kiribati',
|
||||
'KM'=>'Comoros',
|
||||
'KN'=>'Saint Kitts And Nevis',
|
||||
'KR'=>'Korea, Republic Of',
|
||||
'KW'=>'Kuwait',
|
||||
'KY'=>'Cayman Islands',
|
||||
'KZ'=>'Kazakhstan',
|
||||
'LA'=>'Lao People\'s Democratic Republic',
|
||||
'LB'=>'Lebanon',
|
||||
'LC'=>'Saint Lucia',
|
||||
'LI'=>'Liechtenstein',
|
||||
'LK'=>'Sri Lanka',
|
||||
'LR'=>'Liberia',
|
||||
'LS'=>'Lesotho',
|
||||
'LT'=>'Lithuania',
|
||||
'LU'=>'Luxembourg',
|
||||
'LV'=>'Latvia',
|
||||
'LY'=>'Libyan Arab Jamahiriya',
|
||||
'MA'=>'Morocco',
|
||||
'MC'=>'Monaco',
|
||||
'MD'=>'Moldova, Republic Of',
|
||||
'ME'=>'Montenegro',
|
||||
'MG'=>'Madagascar',
|
||||
'MH'=>'Marshall Islands',
|
||||
'MK'=>'Macedonia, The Former Yugoslav Republic Of',
|
||||
'ML'=>'Mali',
|
||||
'MM'=>'Myanmar',
|
||||
'MN'=>'Mongolia',
|
||||
'MO'=>'Macau',
|
||||
'MP'=>'Northern Mariana Islands',
|
||||
'MQ'=>'Martinique',
|
||||
'MR'=>'Mauritania',
|
||||
'MS'=>'Montserrat',
|
||||
'MT'=>'Malta',
|
||||
'MU'=>'Mauritius',
|
||||
'MV'=>'Maldives',
|
||||
'MW'=>'Malawi',
|
||||
'MX'=>'Mexico',
|
||||
'MY'=>'Malaysia',
|
||||
'MZ'=>'Mozambique',
|
||||
'NA'=>'Namibia',
|
||||
'NC'=>'New Caledonia',
|
||||
'NE'=>'Niger',
|
||||
'NF'=>'Norfolk Island',
|
||||
'NG'=>'Nigeria',
|
||||
'NI'=>'Nicaragua',
|
||||
'NL'=>'Netherlands',
|
||||
'NO'=>'Norway',
|
||||
'NP'=>'Nepal',
|
||||
'NR'=>'Nauru',
|
||||
'NU'=>'Niue',
|
||||
'NZ'=>'New Zealand',
|
||||
'OM'=>'Oman',
|
||||
'PA'=>'Panama',
|
||||
'PE'=>'Peru',
|
||||
'PF'=>'French Polynesia',
|
||||
'PG'=>'Papua New Guinea',
|
||||
'PH'=>'Philippines, Republic of the',
|
||||
'PK'=>'Pakistan',
|
||||
'PL'=>'Poland',
|
||||
'PM'=>'St. Pierre And Miquelon',
|
||||
'PN'=>'Pitcairn',
|
||||
'PR'=>'Puerto Rico',
|
||||
'PS'=>'Palestine',
|
||||
'PT'=>'Portugal',
|
||||
'PW'=>'Palau',
|
||||
'PY'=>'Paraguay',
|
||||
'QA'=>'Qatar',
|
||||
'RE'=>'Reunion',
|
||||
'RO'=>'Romania',
|
||||
'RS'=>'Serbia',
|
||||
'RU'=>'Russian Federation',
|
||||
'RW'=>'Rwanda',
|
||||
'SA'=>'Saudi Arabia',
|
||||
'UK'=>'Scotland',
|
||||
'SB'=>'Solomon Islands',
|
||||
'SC'=>'Seychelles',
|
||||
'SS'=>'남수단',
|
||||
'SD'=>'Sudan',
|
||||
'SE'=>'Sweden',
|
||||
'SG'=>'Singapore',
|
||||
'SH'=>'St. Helena',
|
||||
'SI'=>'Slovenia',
|
||||
'SJ'=>'Svalbard And Jan Mayen Islands',
|
||||
'SK'=>'Slovakia (Slovak Republic)',
|
||||
'SL'=>'Sierra Leone',
|
||||
'SM'=>'San Marino',
|
||||
'SN'=>'Senegal',
|
||||
'SO'=>'Somalia',
|
||||
'SR'=>'Suriname',
|
||||
'ST'=>'Sao Tome And Principe',
|
||||
'SU'=>'Soviet Union',
|
||||
'SV'=>'El Salvador',
|
||||
'SY'=>'Syrian Arab Republic',
|
||||
'SZ'=>'Swaziland',
|
||||
'TC'=>'Turks And Caicos Islands',
|
||||
'TD'=>'Chad',
|
||||
'TF'=>'French Southern Territories',
|
||||
'TG'=>'Togo',
|
||||
'TH'=>'Thailand',
|
||||
'TJ'=>'Tajikistan',
|
||||
'TK'=>'Tokelau',
|
||||
'TI'=>'East Timor',
|
||||
'TM'=>'Turkmenistan',
|
||||
'TN'=>'Tunisia',
|
||||
'TO'=>'Tonga',
|
||||
'TP'=>'East Timor (old code)',
|
||||
'TR'=>'Turkey',
|
||||
'TT'=>'Trinidad And Tobago',
|
||||
'TV'=>'Tuvalu',
|
||||
'TW'=>'Taiwan',
|
||||
'TZ'=>'Tanzania, United Republic Of',
|
||||
'UA'=>'Ukraine',
|
||||
'UG'=>'Uganda',
|
||||
'UK'=>'United Kingdom',
|
||||
'US'=>'United States',
|
||||
'UM'=>'United States Minor Outlying Islands',
|
||||
'UY'=>'Uruguay',
|
||||
'UZ'=>'Uzbekistan',
|
||||
'VA'=>'Vatican City State (Holy See)',
|
||||
'VC'=>'Saint Vincent And The Grenadines',
|
||||
'VE'=>'Venezuela',
|
||||
'VG'=>'Virgin Islands (British)',
|
||||
'VI'=>'Virgin Islands (U.S.)',
|
||||
'VN'=>'Viet Nam',
|
||||
'VU'=>'Vanuatu',
|
||||
'WF'=>'Wallis And Futuna Islands',
|
||||
'WS'=>'Samoa',
|
||||
'YE'=>'Yemen',
|
||||
'YT'=>'Mayotte',
|
||||
'ZA'=>'South Africa',
|
||||
'ZM'=>'Zambia',
|
||||
'ZW'=>'Zimbabwe',
|
||||
],
|
||||
];
|
93
Production/SNIPE-IT/resources/lang/ko-KR/mail.php
Normal file
93
Production/SNIPE-IT/resources/lang/ko-KR/mail.php
Normal file
@ -0,0 +1,93 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'Accessory_Checkin_Notification' => '부속품 반입 됨',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out',
|
||||
'Asset_Checkin_Notification' => '자산 반입 됨',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out',
|
||||
'Confirm_Accessory_Checkin' => '부속품 반입 확인',
|
||||
'Confirm_Asset_Checkin' => '자산 반입 확인',
|
||||
'Confirm_accessory_delivery' => '액세서리 지급 확인',
|
||||
'Confirm_asset_delivery' => '자산 지급 확인',
|
||||
'Confirm_consumable_delivery' => 'Consumable delivery confirmation',
|
||||
'Confirm_license_delivery' => '라이센스 전달 확인',
|
||||
'Consumable_checkout_notification' => 'Consumable checked out',
|
||||
'Days' => '일',
|
||||
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
|
||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
||||
'Expiring_Assets_Report' => '만료 자산 보고서.',
|
||||
'Expiring_Licenses_Report' => '만료 라이선스 보고서.',
|
||||
'Item_Request_Canceled' => '품목 요청 취소됨',
|
||||
'Item_Requested' => '품목 요청',
|
||||
'License_Checkin_Notification' => '라이센스 확인 됨.',
|
||||
'License_Checkout_Notification' => 'License checked out',
|
||||
'Low_Inventory_Report' => '재고 부족 보고서',
|
||||
'a_user_canceled' => '사용자가 웹사이트에서 품목 요청을 취소했습니다',
|
||||
'a_user_requested' => '사용자가 웹사이트에서 품목을 요청했습니다',
|
||||
'acceptance_asset_accepted' => 'A user has accepted an item',
|
||||
'acceptance_asset_declined' => 'A user has declined an item',
|
||||
'accessory_name' => '액세서리 이름',
|
||||
'additional_notes' => '추가 참고 사항:',
|
||||
'admin_has_created' => ':web 웹사이트에서 관리자가 당신에게 계정을 생성했습니다.',
|
||||
'asset' => '자산:',
|
||||
'asset_name' => '자산명:',
|
||||
'asset_requested' => '자산 요청',
|
||||
'asset_tag' => '자산 태그',
|
||||
'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
|
||||
'assigned_to' => '할당',
|
||||
'best_regards' => '감사합니다,',
|
||||
'canceled' => '취소됨',
|
||||
'checkin_date' => '반입 날짜',
|
||||
'checkout_date' => '반출 날짜',
|
||||
'checkedout_from' => 'Checked out from',
|
||||
'checkedin_from' => 'Checked in from',
|
||||
'checked_into' => 'Checked into',
|
||||
'click_on_the_link_accessory' => '부속품을 받았다면 아래 링크를 클릭하세요.',
|
||||
'click_on_the_link_asset' => '자산을 받았다면 아래 링크를 클릭하세요.',
|
||||
'click_to_confirm' => ':web 계정을 확인하려면 다음 링크를 클릭하세요:',
|
||||
'current_QTY' => '현재 수량',
|
||||
'days' => '일',
|
||||
'expecting_checkin_date' => '반입 예상 일:',
|
||||
'expires' => '만료',
|
||||
'hello' => '안녕하세요',
|
||||
'hi' => '안녕하세요',
|
||||
'i_have_read' => '사용 조약을 읽고 동의 하며, 이 품목을 수령했습니다.',
|
||||
'inventory_report' => 'Inventory Report',
|
||||
'item' => '품목:',
|
||||
'license_expiring_alert' => '다음 :threshold 일 내에 만료되는 라이선스가 :count 개 있습니다.|다음 :threshold 일 내에 만료되는 라이선스가 :count 개 있습니다.',
|
||||
'link_to_update_password' => ':web 비밀번호를 수정하려면 다음 링크를 클릭하세요:',
|
||||
'login' => '로그인:',
|
||||
'login_first_admin' => '아래의 자격 증명을 사용하여 새 Snipe-IT 설치본에 로그인 하세요:',
|
||||
'low_inventory_alert' => '최소 보유량보다 낮거나 소진될 수 있는 품목이 :count 개 있습니다.|최소 보유량보다 낮거나 소진될 수 있는 품목이 :count 개 있습니다.',
|
||||
'min_QTY' => '최소 수량',
|
||||
'name' => '이름',
|
||||
'new_item_checked' => '당신의 이름으로 새 품목이 반출 되었습니다, 이하는 상세입니다.',
|
||||
'notes' => '주석',
|
||||
'password' => '비밀번호:',
|
||||
'password_reset' => '비밀번호 재설정',
|
||||
'read_the_terms' => '아래의 이용 약관을 읽어 보시기 바랍니다.',
|
||||
'read_the_terms_and_click' => 'Please read the terms of use below, and click on the link at the bottom to confirm that you read and agree to the terms of use, and have received the asset.',
|
||||
'requested' => '요청됨:',
|
||||
'reset_link' => '비밀번호 재설정 링크',
|
||||
'reset_password' => '이곳을 눌러 비밀번호를 재설정:',
|
||||
'rights_reserved' => 'All rights reserved.',
|
||||
'serial' => '시리얼',
|
||||
'snipe_webhook_test' => 'Snipe-IT Integration Test',
|
||||
'snipe_webhook_summary' => 'Snipe-IT Integration Test Summary',
|
||||
'supplier' => '공급자',
|
||||
'tag' => '태그',
|
||||
'test_email' => 'Snipe-IT에서 테스트 이메일',
|
||||
'test_mail_text' => '이것은 Snipe-IT 자산 관리 시스템에서 온 테스트 입니다. 이 것을 받았다면, 메일은 동작중입니다 :)',
|
||||
'the_following_item' => '다음의 품목들이 반입되었습니다: ',
|
||||
'to_reset' => ':web 비밀번호를 재설정 하려면, 이 양식을 작성하세요:',
|
||||
'type' => '유형',
|
||||
'upcoming-audits' => 'There is :count asset that is coming up for audit within :threshold days.|There are :count assets that are coming up for audit within :threshold days.',
|
||||
'user' => '사용자',
|
||||
'username' => '사용자명',
|
||||
'welcome' => '환영합니다 :name',
|
||||
'welcome_to' => '환영합니다 :web!',
|
||||
'your_assets' => '자산 확인',
|
||||
'your_credentials' => '당신의 Snipe-IT 인증들',
|
||||
];
|
20
Production/SNIPE-IT/resources/lang/ko-KR/pagination.php
Normal file
20
Production/SNIPE-IT/resources/lang/ko-KR/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« 이전',
|
||||
|
||||
'next' => '다음 »',
|
||||
|
||||
);
|
9
Production/SNIPE-IT/resources/lang/ko-KR/passwords.php
Normal file
9
Production/SNIPE-IT/resources/lang/ko-KR/passwords.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'sent' => 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.',
|
||||
'user' => 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.',
|
||||
'token' => 'This password reset token is invalid or expired, or does not match the username provided.',
|
||||
'reset' => 'Your password has been reset!',
|
||||
'password_change' => 'Your password has been updated!',
|
||||
];
|
21
Production/SNIPE-IT/resources/lang/ko-KR/reminders.php
Normal file
21
Production/SNIPE-IT/resources/lang/ko-KR/reminders.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "비밀번호는 6글자가 되야 하고 비밀번호 확인과 일치해야 합니다.",
|
||||
"user" => "사용자명이나 메일 주소가 정확하지 않습니다.",
|
||||
"token" => 'This password reset token is invalid or expired, or does not match the username provided.',
|
||||
'sent' => 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.',
|
||||
|
||||
);
|
10
Production/SNIPE-IT/resources/lang/ko-KR/table.php
Normal file
10
Production/SNIPE-IT/resources/lang/ko-KR/table.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'actions' => '기능',
|
||||
'action' => '작업',
|
||||
'by' => '요청자',
|
||||
'item' => '항목',
|
||||
|
||||
);
|
162
Production/SNIPE-IT/resources/lang/ko-KR/validation.php
Normal file
162
Production/SNIPE-IT/resources/lang/ko-KR/validation.php
Normal file
@ -0,0 +1,162 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => ':attribute 가 수락되었습니다.',
|
||||
'active_url' => ':attribute 는 잘못된 URL 입니다.',
|
||||
'after' => ':attribute 는 :date 뒤에 오는 날짜 형식이어야 합니다.',
|
||||
'after_or_equal' => ':attribute 는 :date 이후거나 같아야 합니다.',
|
||||
'alpha' => ':attribute 는 문자만 포함해야 합니다.',
|
||||
'alpha_dash' => ':attribute는 문자, 숫자, 대쉬기호만 포함 할 수 있습니다.',
|
||||
'alpha_num' => ':attribute 는 문자와 숫자만 포함할 수 있습니다.',
|
||||
'array' => ':attribute는 배열이어야 합니다.',
|
||||
'before' => ':attribute 는 :date 앞의 날짜 형식이 되야 합니다.',
|
||||
'before_or_equal' => ':attribute 는 :date 이전이거나 같아야 합니다.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute 는 :min - :max 사이의 값입니다.',
|
||||
'file' => ':attribute 는 :min - :max Kbyte 사이의 값입니다.',
|
||||
'string' => ':attribute 는 :min - :max 자 사이의 문자입니다.',
|
||||
'array' => ':attribute 는 :min - :max 품목 사이여야 합니다.',
|
||||
],
|
||||
'boolean' => ':attribute 는 참 또는 거짓의 속성만 지정 가능합니다.',
|
||||
'confirmed' => ':attribute 확인이 일치 하지 않습니다.',
|
||||
'date' => ':attribute 는 잘못된 날짜 입니다.',
|
||||
'date_format' => ':attribute 는 :format 형식과 일치하지 않습니다.',
|
||||
'different' => ':attribute 와 :other 는 서로 달라야 합니다.',
|
||||
'digits' => ':attribute 는 :digits 자리수여야 합니다.',
|
||||
'digits_between' => ':attribute 는 :min - :max 자릿수 사이여야 합니다.',
|
||||
'dimensions' => ':attribute에 잘못된 이미지 크기가 있습니다.',
|
||||
'distinct' => ':attribute 항목은 중복된 값입니다.',
|
||||
'email' => ':attribute 형식이 부정확 합니다.',
|
||||
'exists' => '선택한 :attribute 가 부정확 합니다.',
|
||||
'file' => ':attribute는 파일이어야 합니다.',
|
||||
'filled' => ':attribute 항목은 값이 있어야 합니다.',
|
||||
'image' => ':attribute 는 이미지 형식만 가능합니다.',
|
||||
'import_field_empty' => 'The value for :fieldname cannot be null.',
|
||||
'in' => '선택한 :attribute 가 부정확 합니다.',
|
||||
'in_array' => ':attribute항목이 :other에 없습니다.',
|
||||
'integer' => ':attribute 는 정수이어야 합니다.',
|
||||
'ip' => ':attribute 는 유효한 IP 주소이어야 합니다.',
|
||||
'ipv4' => ':attribute는 유효한 IPv4 주소여야 합니다.',
|
||||
'ipv6' => ':attribute는 유효한 IPv6 주소여야 합니다.',
|
||||
'is_unique_department' => 'The :attribute must be unique to this Company Location',
|
||||
'json' => ':attribute는 유효한 JSON 문자값이어야 합니다.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute 는 :max 보다 작아야 합니다.',
|
||||
'file' => ':attribute 는 :max Kbyte보다 작아야 합니다.',
|
||||
'string' => ':attribute 는 :max 자보다 작아야 합니다.',
|
||||
'array' => ':attribute는 :max 항목보다 작어야 합니다.',
|
||||
],
|
||||
'mimes' => ':attribute 는 :values 형식의 파일만 가능합니다.',
|
||||
'mimetypes' => ':attribute 는 :values 형식의 파일만 가능합니다.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute 는 최소 :min 이어야 합니다.',
|
||||
'file' => ':attribute 는 최소 :min Kbyte 이어야 합니다.',
|
||||
'string' => ':attribute 는 최소 :min 자 이어야 합니다.',
|
||||
'array' => ':attribute는 최소 :min 항목이어야 합니다.',
|
||||
],
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'ends_with' => 'The :attribute must end with one of the following: :values.',
|
||||
|
||||
'not_in' => '선택한 :attribute 가 부정확 합니다.',
|
||||
'numeric' => ':attribute 는 숫자만 가능합니다.',
|
||||
'present' => ':attribute 항목이 있어야 합니다.',
|
||||
'valid_regex' => '그것은 유효한 정규 표현식이 아닙니다. ',
|
||||
'regex' => ':attribute 형식이 부정확 합니다.',
|
||||
'required' => ':attribute 항목을 입력해 주세요.',
|
||||
'required_if' => ':attribute 항목은 :other가 :value 일때 필요합니다.',
|
||||
'required_unless' => ':values에 :other가 있는 경우 : attribute 항목은 필요하지 않습니다.',
|
||||
'required_with' => ':attribute 항목은 :values 가 존재할 때 필요합니다.',
|
||||
'required_with_all' => ':attribute 항목은 :values가 있을 때 필요합니다.',
|
||||
'required_without' => ':attribute 항목은 :values 가 존재하지 않을 때 필요합니다.',
|
||||
'required_without_all' => ':attribute 항목은 :values 가 전혀 없다면 필수입니다.',
|
||||
'same' => ':attribute 와 :other 는 일치해야 합니다.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute 는 :size 가 되야 합니다.',
|
||||
'file' => ':attribute 는 :size Kbyte 가 되야 합니다.',
|
||||
'string' => ':attribute 는 :size 자가 되야 합니다.',
|
||||
'array' => ':attribute 는 :size 품목에 포함되야 합니다.',
|
||||
],
|
||||
'string' => ':attribute는 글자여야 합니다.',
|
||||
'timezone' => ':attribute는 유효한 지역이어야 합니다.',
|
||||
'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ',
|
||||
'unique' => ':attribute 는 이미 획득하였습니다.',
|
||||
'uploaded' => ':attribute는 업로드 하지 못했습니다.',
|
||||
'url' => ':attribute 형식이 부정확 합니다.',
|
||||
'unique_undeleted' => ':attribute 는 고유의 값만 가져야 합니다.',
|
||||
'non_circular' => 'The :attribute must not create a circular reference.',
|
||||
'not_array' => ':attribute cannot be an array.',
|
||||
'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.',
|
||||
'letters' => 'Password must contain at least one letter.',
|
||||
'numbers' => 'Password must contain at least one number.',
|
||||
'case_diff' => 'Password must use mixed case.',
|
||||
'symbols' => 'Password must contain symbols.',
|
||||
'gte' => [
|
||||
'numeric' => 'Value cannot be negative'
|
||||
],
|
||||
'checkboxes' => ':attribute contains invalid options.',
|
||||
'radio_buttons' => ':attribute is invalid.',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'alpha_space' => ':attribute 항목에는 문자를 입력할 수 없습니다.',
|
||||
'email_array' => '하나 이상의 이메일 주소가 유효하지 않습니다.',
|
||||
'hashed_pass' => '현재 비밀번호가 잘못되었습니다.',
|
||||
'dumbpwd' => '그 비밀번호는 너무 일반적입니다.',
|
||||
'statuslabel_type' => '유효한 상태 라벨 형식을 선택해 주셔야 합니다',
|
||||
|
||||
// date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :(
|
||||
// We use this because the default error message for date_format is reflects php Y-m-d, which non-PHP
|
||||
// people won't know how to format.
|
||||
'purchase_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format',
|
||||
'last_audit_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD hh:mm:ss format',
|
||||
'expiration_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format',
|
||||
'termination_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format',
|
||||
'expected_checkin.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format',
|
||||
'start_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format',
|
||||
'end_date.date_format' => 'The :attribute must be a valid date in YYYY-MM-DD format',
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap attribute place-holders
|
||||
| with something more reader friendly such as E-Mail Address instead
|
||||
| of "email". This simply helps us make messages a little cleaner.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Generic Validation Messages
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
'invalid_value_in_field' => 'Invalid value included in this field',
|
||||
];
|
Reference in New Issue
Block a user