mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
20 lines
911 B
PHP
20 lines
911 B
PHP
<?php
|
|
/**
|
|
* @file modules/editor/lang/ko.lang.php
|
|
* @author zero <zero@nzeo.com>
|
|
* @brief 위지윅에디터(editor) 모듈의 기본 언어팩
|
|
**/
|
|
|
|
$lang->component_name = "컴포넌트";
|
|
$lang->component_version = "버전";
|
|
$lang->component_author = "제작자 ";
|
|
$lang->component_link = "링크";
|
|
$lang->component_date = "제작일";
|
|
$lang->component_description = "설명";
|
|
$lang->component_extra_vars = "설정 변수";
|
|
|
|
$lang->msg_component_is_not_founded = '%s 에디터 컴포넌트를 찾을 수 없습니다';
|
|
$lang->msg_component_is_inserted = '선택하신 컴포넌트는 이미 입력되어 있습니다';
|
|
$lang->msg_component_is_first_order = '선택하신 컴포넌트는 첫번째에 위치하고 있습니다';
|
|
$lang->msg_component_is_last_order = '선택하신 컴포넌트는 마지막에 위치하고 있습니다';
|
|
?>
|