git-svn-id: http://xe-core.googlecode.com/svn/trunk@1865 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-07-04 08:54:56 +00:00
parent b376053c1c
commit 74374604a0
27 changed files with 730 additions and 46 deletions

View file

@ -1,8 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<module version="0.1">
<title xml:lang="ko">문서</title>
<title xml:lang="en">Document</title>
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<name xml:lang="en">Zero</name>
<description xml:lang="ko">게시판, 블로그등의 모듈에서 사용되는 문서를 관리하는 모듈입니다. </description>
<description xml:lang="en">Module for managing documents used in board, blog, etc.</description>
</author>
</module>

View file

@ -0,0 +1,37 @@
<?php
/**
* @file modules/document/lang/en.lang.php
* @author zero <zero@nzeo.com>
* @brief Document module's basic language pack
**/
$lang->cmd_delete_checked_document = 'Delete selected';
$lang->msg_cart_is_null = 'Select the articles you wish to delete';
$lang->msg_category_not_moved = 'Unabled to move';
$lang->msg_is_secret = 'This article is secret';
$lang->msg_checked_document_is_deleted = 'Total of %d articles has been deleted';
// Search targets in admin page
$lang->search_target_list = array(
'title' => 'Subject',
'content' => 'Content',
'user_id' => 'User ID',
'member_srl' => 'Member No.',
'user_name' => 'Content',
'nick_name' => 'Content',
'email_address' => 'Email',
'homepage' => 'Homepage',
'is_notice' => 'Notice',
'is_secret' => 'Secret',
'tags' => 'Tag',
'readed_count' => 'Number of Views (Above)',
'voted_count' => 'Number of Votes (Above)',
'comment_count ' => 'Number of Comments (Above)',
'trackback_count ' => 'Number of trackbacks (Above)',
'uploaded_count ' => 'Number of Attachments (Above)',
'regdate' => 'Date',
'last_update' => 'Last Revised',
'ipaddress' => 'IP Address',
);
?>