xref: /plugin/discussion/lang/ja/lang.php (revision d55cb44c57557be27b7906e6635835491c946d19)
1<?php
2/**
3 * Japanese language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Ikuo Obataya <I.Obataya@gmail.com>
7 * @author     Yusuke Ishida <yusuke.ishida.gnl@gmail.com>
8 */
9
10// settings must be present and set appropriately for the language
11$lang['encoding']   = 'utf-8';
12$lang['direction']  = 'ltr';
13
14// for admin plugins, the menu prompt to be displayed in the admin menu
15// if set here, the plugin doesn't need to override the getMenuText() method
16$lang['menu']            = 'すべてのコメントを見る...';
17
18$lang['discussion']      = 'コメント';
19$lang['comment']         = 'コメント';
20$lang['comments']        = 'コメント';
21$lang['nocomments']      = 'コメント';
22$lang['url']             = 'ウェブサイト';
23$lang['address']         = '住所';
24$lang['date']            = '日付';
25$lang['entercomment']    = 'コメントを入力';
26$lang['wikisyntax']      = 'Wiki文法が有効です';
27$lang['older']           = '古いコメント';
28$lang['newer']           = '新しいコメント';
29$lang['btn_reply']       = '返事';
30$lang['btn_hide']        = '隠す';
31$lang['btn_show']        = '表示';
32$lang['btn_change']      = '変更';
33$lang['statuschanged']   = '状態が変更されました';
34$lang['wordblock']       = 'コメントはスパムとしてブロックされました。';
35$lang['moderation']      = 'コメントを受け付けました。管理者の確認待ちです。';
36$lang['mail_newcomment'] = '新しいコメント';
37$lang['subscribe']       = 'コメントの購読';
38$lang['noguests']        = 'ログインするとコメントできます。';
39
40$lang['status']          = '状態';
41$lang['off']             = '非表示';
42$lang['open']            = 'オープン';
43$lang['closed']          = 'クローズ';
44
45$lang['reply']           = '返事';
46$lang['replies']         = '返事';
47$lang['newthread']       = '新しいスレッド';
48$lang['threads']         = 'スレッド';
49
50//Setup VIM: ex: et ts=2 enc=utf-8 :
51