1<?php
2
3/**
4 * Japanese language for the Config Manager
5 *
6 * If your language is not/only partially translated or you found an error/typo,
7 * have a look at the following files:
8 * - /lib/tpl/monobook/lang/<your lang>/lang.php
9 * - /lib/tpl/monobook/lang/<your lang>/settings.php
10 * If they are not existing, copy and translate the English ones.
11 *
12 * Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
13 * Thanks! :-D
14 *
15 *
16 * LICENSE: This file is open source software (OSS) and may be copied under
17 *          certain conditions. See COPYING file for details or try to contact
18 *          the author(s) of this file in doubt.
19 *
20 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
21 * @author Yoshitaka Kunikane <y.kunikane@gmail.com>
22 * @link https://www.dokuwiki.org/template:monobook
23 * @link https://www.dokuwiki.org/config:lang
24 * @link https://www.dokuwiki.org/devel:configuration
25 */
26
27
28//check if we are running within the DokuWiki environment
29if (!defined("DOKU_INC")){
30    die();
31}
32
33//discussion pages
34$lang["monobook_discuss"]    = "ディスカッションタブを使用する";
35$lang["monobook_discuss_ns"] = "使用する場合、ディスカッションのルート名前空間を指定:";
36
37//site notice
38$lang["monobook_sitenotice"]          = "サイト案内を使用する";
39$lang["monobook_sitenotice_location"] = "使用する場合、サイト案内の名前空間を指定:";
40
41//navigation
42$lang["monobook_navigation"]          = "ナビゲーションを使用する";
43$lang["monobook_navigation_location"] = "使用する場合、ナビゲーションの名前空間を指定:";
44
45//custom copyright notice
46$lang["monobook_copyright"]          = "著作権表示を使用する";
47$lang["monobook_copyright_default"]  = "使用する場合、著作権表示の名前空間を指定:";
48$lang["monobook_copyright_location"] = "デフォルトを使用しない場合、著作権表示を下記のページに指定する:";
49
50//search form
51$lang["monobook_search"] = "検索窓を使用する";
52
53//toolbox
54$lang["monobook_toolbox"]               = "ツールボックスを使用する";
55$lang["monobook_toolbox_default"]       = "使用する場合、デフォルトのツールボックスを使用する";
56$lang["monobook_toolbox_default_print"] = "デフォルトのツールボックスを使う場合、印刷用リンクを表示する。";
57$lang["monobook_toolbox_location"]      = "デフォルトを使用しない場合、ツールボックスを下記のページに指定する:";
58
59//donation link/button
60$lang["monobook_donate"]          = "寄付のリンク/ボタンを表示する";
61$lang["monobook_donate_url"]      = "デフォルトを使用しない場合、下記のURLを指定する。";
62
63//other stuff
64$lang["monobook_breadcrumbs_position"]  = "パンくずの表示位置(利用している場合のみ適用):";
65$lang["monobook_youarehere_position"]   = "現在位置の表示位置(利用している場合のみ適用):";
66$lang["monobook_cite_author"]           = "'項目を引用'に表示する作者の名前:";
67$lang["monobook_loaduserjs"]            = "'monobook/user/user.js'をロードする";
68
69