mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
23 lines
934 B
PHP
23 lines
934 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
|
|
'update' => array(
|
|
'error' => '갱신 중 오류가 발생했습니다. ',
|
|
'success' => '설정이 갱신되었습니다.'
|
|
),
|
|
'backup' => array(
|
|
'delete_confirm' => '이 백업 파일을 지우시겠습니까? 이 동작은 되돌리기가 되지 않습니다. ',
|
|
'file_deleted' => '백업 파일이 삭제 되었습니다. ',
|
|
'generated' => '새 백업 파일이 생성되었습니다.',
|
|
'file_not_found' => '지정한 백업 파일을 서버에서 찾을 수 없습니다.',
|
|
),
|
|
'purge' => array(
|
|
'error' => 'An error has occurred while purging. ',
|
|
'validation_failed' => 'Your purge confirmation is incorrect. Please type the word "DELETE" in the confirmation box.',
|
|
'success' => 'Deleted records successfully purged.'
|
|
),
|
|
|
|
);
|