mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2892 201d5d3c-b55e-5fd7-737f-ddc643e51545
25 lines
926 B
PHP
25 lines
926 B
PHP
<?php
|
|
/**
|
|
* @file modules/rss/lang/ko.lang.php
|
|
* @author zero <zero@nzeo.com>
|
|
* @brief 한국어 언어팩 (기본적인 내용만 수록)
|
|
**/
|
|
|
|
// 일반 단어들
|
|
$lang->rss_disable = "RSS 끄기";
|
|
$lang->rss_type = "출력할 RSS 형식";
|
|
$lang->open_rss = 'RSS 공개';
|
|
$lang->open_rss_types = array(
|
|
'Y' => '전문 공개 ',
|
|
'H' => '요약 공개',
|
|
'N' => '공개하지 않음',
|
|
);
|
|
|
|
// 설명문
|
|
$lang->about_rss_disable = "체크하시면 RSS 출력을 하지 않습니다";
|
|
$lang->about_rss_type = "출력하실 RSS 형식을 지정하실 수 있습니다";
|
|
$lang->about_open_rss = '현재 모듈에 대한 RSS 공개를 선택하실 수 있습니다. 글 보는 권한과 상관없이 옵션에 따라 RSS가 공개됩니다';
|
|
|
|
// 에러 메세지들
|
|
$lang->msg_rss_is_disabled = "RSS 기능이 잠겨 있습니다";
|
|
?>
|