xref: /dokuwiki/lib/plugins/config/lang/ja/lang.php (revision ccf5ab4be633f1da1ed602acaf3f1dc0ae27d388)
1*ccf5ab4bSYuji Takenaka<?php
2*ccf5ab4bSYuji Takenaka/**
3*ccf5ab4bSYuji Takenaka * japanese language file
4*ccf5ab4bSYuji Takenaka *
5*ccf5ab4bSYuji Takenaka * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6*ccf5ab4bSYuji Takenaka * @author     Yuji Takenaka <webmaster@davilin.com>
7*ccf5ab4bSYuji Takenaka * @author     Christopher Smith <chris@jalakai.co.uk>
8*ccf5ab4bSYuji Takenaka */
9*ccf5ab4bSYuji Takenaka
10*ccf5ab4bSYuji Takenaka// for admin plugins, the menu prompt to be displayed in the admin menu
11*ccf5ab4bSYuji Takenaka// if set here, the plugin doesn't need to override the getMenuText() method
12*ccf5ab4bSYuji Takenaka$lang['menu']       = 'サイト設定';
13*ccf5ab4bSYuji Takenaka
14*ccf5ab4bSYuji Takenaka$lang['error']      = '不正な値が存在するため、設定は更新されませんでした。入力値を確認してから、再度更新してください。
15*ccf5ab4bSYuji Takenaka                       <br />不正な値が入力されている項目は赤い線で囲まれています。';
16*ccf5ab4bSYuji Takenaka$lang['updated']    = '設定は正しく更新されました。';
17*ccf5ab4bSYuji Takenaka$lang['nochoice']   = '(他の選択肢はありません)';
18*ccf5ab4bSYuji Takenaka$lang['locked']     = '設定用ファイルを更新できません。もし意図して変更不可にしているのでなければ、<br />
19*ccf5ab4bSYuji Takenaka                       ローカル設定ファイルの名前と権限を確認して下さい。';
20*ccf5ab4bSYuji Takenaka
21*ccf5ab4bSYuji Takenaka// settings prompts
22*ccf5ab4bSYuji Takenaka$lang['umask']       = 'グローバル権限マスク';     //set the umask for new files
23*ccf5ab4bSYuji Takenaka$lang['fmode']       = 'ファイル作成マスク';         //directory mask accordingly
24*ccf5ab4bSYuji Takenaka$lang['dmode']       = 'フォルダ作成マスク';    //directory mask accordingly
25*ccf5ab4bSYuji Takenaka$lang['lang']        = '使用言語';           //your language
26*ccf5ab4bSYuji Takenaka$lang['basedir']     = 'ベースディレクトリ';     //absolute dir from serveroot - blank for autodetection
27*ccf5ab4bSYuji Takenaka$lang['baseurl']     = 'ベースURL';           //URL to server including protocol - blank for autodetect
28*ccf5ab4bSYuji Takenaka$lang['savedir']     = '保存ディレクトリ';     //where to store all the files
29*ccf5ab4bSYuji Takenaka$lang['start']       = 'スタートページ名';    //name of start page
30*ccf5ab4bSYuji Takenaka$lang['title']       = 'WIKIタイトル';         //what to show in the title
31*ccf5ab4bSYuji Takenaka$lang['template']    = 'テンプレート';           //see tpl directory
32*ccf5ab4bSYuji Takenaka$lang['fullpath']    = 'パス指定(絶対/相対)';      //show full path of the document or relative to datadir only? 0|1
33*ccf5ab4bSYuji Takenaka$lang['recent']      = '最近の変更表示数';     //how many entries to show in recent
34*ccf5ab4bSYuji Takenaka$lang['breadcrumbs'] = 'トレース表示数';        //how many recent visited pages to show
35*ccf5ab4bSYuji Takenaka$lang['typography']  = 'タイポグラフィー';         //convert quotes, dashes and stuff to typographic equivalents? 0|1
36*ccf5ab4bSYuji Takenaka$lang['htmlok']      = 'HTML埋め込み許可';//may raw HTML be embedded? This may break layout and XHTML validity 0|1
37*ccf5ab4bSYuji Takenaka$lang['phpok']       = 'PHP埋め込み許可'; //may PHP code be embedded? Never do this on the internet! 0|1
38*ccf5ab4bSYuji Takenaka$lang['dformat']     = '日付フォーマット';        //dateformat accepted by PHPs date() function
39*ccf5ab4bSYuji Takenaka$lang['signature']   = '署名';          //signature see wiki:langig for details
40*ccf5ab4bSYuji Takenaka$lang['toptoclevel'] = '目次 トップレベル見出し';      //Level starting with and below to include in AutoTOC (max. 5)
41*ccf5ab4bSYuji Takenaka$lang['maxtoclevel'] = '目次 表示限度見出し';      //Up to which level include into AutoTOC (max. 5)
42*ccf5ab4bSYuji Takenaka$lang['maxseclevel'] = '編集可能見出し';   //Up to which level create editable sections (max. 5)
43*ccf5ab4bSYuji Takenaka$lang['camelcase']   = 'キャメルケースリンク';  //Use CamelCase for linking? (I don't like it) 0|1
44*ccf5ab4bSYuji Takenaka$lang['deaccent']    = 'ページ名アクセント除去';    //convert accented chars to unaccented ones in pagenames?
45*ccf5ab4bSYuji Takenaka$lang['useheading']  = '最初の見出しをページ名';        //use the first heading in a page as its name
46*ccf5ab4bSYuji Takenaka$lang['refcheck']    = 'メディア参照元チェック';    //check for references before deleting media files
47*ccf5ab4bSYuji Takenaka$lang['refshow']     = 'メディア参照元表示数'; //how many references should be shown, 5 is a good value
48*ccf5ab4bSYuji Takenaka$lang['allowdebug']  = 'デバッグモード(無効)';   //make debug possible, disable after install! 0|1
49*ccf5ab4bSYuji Takenaka
50*ccf5ab4bSYuji Takenaka$lang['usewordblock']= '単語によるスパムブロック';  //block spam based on words? 0|1
51*ccf5ab4bSYuji Takenaka$lang['indexdelay']  = 'インデックスを許可(何秒後)'; //allow indexing after this time (seconds) default is 5 days
52*ccf5ab4bSYuji Takenaka$lang['relnofollow'] = 'rel="nofollow" を付加';         //use rel="nofollow" for external links?
53*ccf5ab4bSYuji Takenaka$lang['mailguard']   = 'メールアドレス保護';  //obfuscate email addresses against spam harvesters?
54*ccf5ab4bSYuji Takenaka
55*ccf5ab4bSYuji Takenaka/* Authentication Options - read http://www.splitbrain.org/dokuwiki/wiki:acl */
56*ccf5ab4bSYuji Takenaka$lang['useacl']      = 'アクセス管理';                //Use Access Control Lists to restrict access?
57*ccf5ab4bSYuji Takenaka$lang['openregister']= 'ユーザー登録を許可';          //Should users to be allowed to register?
58*ccf5ab4bSYuji Takenaka$lang['autopasswd']  = 'パスワードの自動生成'; //autogenerate passwords and email them to user
59*ccf5ab4bSYuji Takenaka$lang['resendpasswd']= 'パスワードの再発行';  //allow resend password function?
60*ccf5ab4bSYuji Takenaka$lang['authtype']    = '認証方法'; //which authentication backend should be used
61*ccf5ab4bSYuji Takenaka$lang['passcrypt']   = '暗号化方法';    //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411)
62*ccf5ab4bSYuji Takenaka$lang['defaultgroup']= '初期グループ';          //Default groups new Users are added to
63*ccf5ab4bSYuji Takenaka$lang['superuser']   = 'スーパーユーザー';              //The admin can be user or @group
64*ccf5ab4bSYuji Takenaka$lang['profileconfirm'] = '現在のパスワードを要求';     //Require current password to confirm changes to user profile
65*ccf5ab4bSYuji Takenaka
66*ccf5ab4bSYuji Takenaka/* Advanced Options */
67*ccf5ab4bSYuji Takenaka$lang['userewrite']  = 'URLの書き換え';             //this makes nice URLs: 0: off 1: .htaccess 2: internal
68*ccf5ab4bSYuji Takenaka$lang['useslash']    = 'スラッシュを使用';                 //use slash instead of colon? only when rewrite is on
69*ccf5ab4bSYuji Takenaka$lang['sepchar']     = '単語区切り文字';  //word separator character in page names; may be a
70*ccf5ab4bSYuji Takenaka$lang['canonical']   = '標準的なURLを使用';  //Should all URLs use full canonical http://... style?
71*ccf5ab4bSYuji Takenaka$lang['autoplural']  = '自動複数形処理';               //try (non)plural form of nonexisting files?
72*ccf5ab4bSYuji Takenaka$lang['usegzip']     = '古い文書にgzipを使用';      //gzip old revisions?
73*ccf5ab4bSYuji Takenaka$lang['cachetime']   = 'キャッシュ保持時間(秒)';  //maximum age for cachefile in seconds (defaults to a day)
74*ccf5ab4bSYuji Takenaka$lang['purgeonadd']  = 'ファイル追加時にキャッシュを破棄';        //purge cache when a new file is added (needed for up to date links)
75*ccf5ab4bSYuji Takenaka$lang['locktime']    = 'ファイルロック期限(秒)';  //maximum age for lockfiles (defaults to 15 minutes)
76*ccf5ab4bSYuji Takenaka$lang['notify']      = '変更を通知するメールアドレス';      //send change info to this email (leave blank for nobody)
77*ccf5ab4bSYuji Takenaka$lang['mailfrom']    = 'メール送信時のアドレス';            //use this email when sending mails
78*ccf5ab4bSYuji Takenaka$lang['gdlib']       = 'GDlibバージョン';              //the GDlib version (0, 1 or 2) 2 tries to autodetect
79*ccf5ab4bSYuji Takenaka$lang['im_convert']  = 'ImageMagicksパス';            //path to ImageMagicks convert (will be used instead of GD)
80*ccf5ab4bSYuji Takenaka$lang['spellchecker']= 'スペルチェック';         //enable Spellchecker (needs PHP >= 4.3.0 and aspell installed)
81*ccf5ab4bSYuji Takenaka$lang['subscribers'] = '更新通知機能'; //enable change notice subscription support
82*ccf5ab4bSYuji Takenaka$lang['compress']    = 'CSSとJavaScriptによる圧縮';  //Strip whitespaces and comments from Styles and JavaScript? 1|0
83*ccf5ab4bSYuji Takenaka$lang['hidepages']   = '非公開ページ(Regex)';      //Regexp for pages to be skipped from RSS, Search and Recent Changes
84*ccf5ab4bSYuji Takenaka$lang['send404']     = '"HTTP404/Page Not Found"を使用';    //Send a HTTP 404 status for non existing pages?
85*ccf5ab4bSYuji Takenaka$lang['sitemap']     = 'Googleサイトマップ作成頻度(日数)';   //Create a google sitemap? How often? In days.
86*ccf5ab4bSYuji Takenaka
87*ccf5ab4bSYuji Takenaka$lang['rss_type']    = 'RSSフィード';             //type of RSS feed to provide, by default:
88*ccf5ab4bSYuji Takenaka$lang['rss_linkto']  = 'RSS内リンク先';              //what page RSS entries link to:
89*ccf5ab4bSYuji Takenaka
90*ccf5ab4bSYuji Takenaka//Set target to use when creating links - leave empty for same window
91*ccf5ab4bSYuji Takenaka$lang['target____wiki']      = '内部リンクの表示先';
92*ccf5ab4bSYuji Takenaka$lang['target____interwiki'] = '内部wikiの表示先';
93*ccf5ab4bSYuji Takenaka$lang['target____extern']    = '外部リンクの表示先';
94*ccf5ab4bSYuji Takenaka$lang['target____media']     = 'メディアリンクの表示先';
95*ccf5ab4bSYuji Takenaka$lang['target____windows']   = 'Windowsリンクの表示先';
96*ccf5ab4bSYuji Takenaka
97*ccf5ab4bSYuji Takenaka//Proxy setup - if your Server needs a proxy to access the web set these
98*ccf5ab4bSYuji Takenaka$lang['proxy____host'] = 'プロキシ - ホスト';
99*ccf5ab4bSYuji Takenaka$lang['proxy____port'] = 'プロキシ - ポート';
100*ccf5ab4bSYuji Takenaka$lang['proxy____user'] = 'プロキシ - ユーザー名';
101*ccf5ab4bSYuji Takenaka$lang['proxy____pass'] = 'プロキシ - パスワード';
102*ccf5ab4bSYuji Takenaka$lang['proxy____ssl']  = 'プロキシ - ssl';
103*ccf5ab4bSYuji Takenaka
104*ccf5ab4bSYuji Takenaka/* Safemode Hack */
105*ccf5ab4bSYuji Takenaka$lang['safemodehack'] = 'セーフモード対策';  //read http://wiki.splitbrain.org/wiki:safemodehack !
106*ccf5ab4bSYuji Takenaka$lang['ftp____host'] = 'ftp - ホスト';
107*ccf5ab4bSYuji Takenaka$lang['ftp____port'] = 'ftp - ポート';
108*ccf5ab4bSYuji Takenaka$lang['ftp____user'] = 'ftp - ユーザー名';
109*ccf5ab4bSYuji Takenaka$lang['ftp____pass'] = 'ftp - パスワード';
110*ccf5ab4bSYuji Takenaka$lang['ftp____root'] = 'ftp - ルートディレクトリ';
111*ccf5ab4bSYuji Takenaka
112*ccf5ab4bSYuji Takenaka/* userewrite options */
113*ccf5ab4bSYuji Takenaka$lang['userewrite_o_0'] = '使用しない';
114*ccf5ab4bSYuji Takenaka$lang['userewrite_o_1'] = 'htaccess';
115*ccf5ab4bSYuji Takenaka$lang['userewrite_o_2'] = 'dokuwiki';
116*ccf5ab4bSYuji Takenaka
117*ccf5ab4bSYuji Takenaka/* gdlib options */
118*ccf5ab4bSYuji Takenaka$lang['gdlib_o_0'] = 'GDlibを使用しない';
119*ccf5ab4bSYuji Takenaka$lang['gdlib_o_1'] = 'バージョン 1.x';
120*ccf5ab4bSYuji Takenaka$lang['gdlib_o_2'] = '自動検出';
121*ccf5ab4bSYuji Takenaka
122*ccf5ab4bSYuji Takenaka/* rss_type options */
123*ccf5ab4bSYuji Takenaka$lang['rss_type_o_rss']  = 'RSS 0.91';
124*ccf5ab4bSYuji Takenaka$lang['rss_type_o_rss1'] = 'RSS 1.0';
125*ccf5ab4bSYuji Takenaka$lang['rss_type_o_rss2'] = 'RSS 2.0';
126*ccf5ab4bSYuji Takenaka$lang['rss_type_o_atom'] = 'Atom 0.3';
127*ccf5ab4bSYuji Takenaka
128*ccf5ab4bSYuji Takenaka/* rss_linkto options */
129*ccf5ab4bSYuji Takenaka$lang['rss_linkto_o_diff']    = '変更点のリスト';
130*ccf5ab4bSYuji Takenaka$lang['rss_linkto_o_page']    = '変更されたページ';
131*ccf5ab4bSYuji Takenaka$lang['rss_linkto_o_rev']     = 'リビジョンのリスト';
132*ccf5ab4bSYuji Takenaka$lang['rss_linkto_o_current'] = '現在のページ';
133*ccf5ab4bSYuji Takenaka
134