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,13 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<module version="0.1">
<title xml:lang="ko">댓글</title>
<title xml:lang="jp">コメント</title>
<title xml:lang="zh-CN">评论</title>
<title xml:lang="en">Comment</title>
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<name xml:lang="jp">ゼロ</name>
<name xml:lang="zh-CN">zero</name>
<name xml:lang="en">zero</name>
<description xml:lang="ko">게시판이나 블로그등의 댓글을 관리하는 모듈입니다.</description>
<description xml:lang="jp">掲示板やブログなどのコメントを管理するモジュールです</description>
<description xml:lang="zh-CN">管理Board或博客评论的模块。</description>
<description xml:lang="en">Module for managing board/blog''s comments</description>
</author>

View file

@ -0,0 +1,23 @@
<?php
/**
* @file modules/comment/lang/ko.lang.php
* @author zero <zero@nzeo.com> 翻訳keinicht
* @brief コメント(comment) モジュールの基本言語パッケージ
**/
$lang->cmd_delete_checked_comment = '選択項目削除';
$lang->msg_cart_is_null = '削除するものを選択して下さい';
$lang->msg_checked_comment_is_deleted = '%d個のコメントが削除されました';
$lang->search_target_list = array(
'content' => '内容',
'user_id' => 'ID',
'user_name' => '名前',
'nick_name' => 'ニック',
'email_address' => 'メールアドレス',
'homepage' => 'ホームページ',
'regdate' => '登録日',
'last_update' => '最終更新日 ',
'ipaddress' => 'IP アドレス',
);
?>