xref: /dokuwiki/lib/plugins/revert/lang/ja/lang.php (revision 1220bbe21f82866d1eb7013bb644836b9b5af5eb)
1*1220bbe2SAndreas Gohr<?php
2*1220bbe2SAndreas Gohr/**
3*1220bbe2SAndreas Gohr * japanese language file
4*1220bbe2SAndreas Gohr */
5*1220bbe2SAndreas Gohr
6*1220bbe2SAndreas Gohr// settings must be present and set appropriately for the language
7*1220bbe2SAndreas Gohr$lang['encoding']   = 'utf-8';
8*1220bbe2SAndreas Gohr$lang['direction']  = 'ltr';
9*1220bbe2SAndreas Gohr
10*1220bbe2SAndreas Gohr// for admin plugins, the menu prompt to be displayed in the admin menu
11*1220bbe2SAndreas Gohr// if set here, the plugin doesn't need to override the getMenuText() method
12*1220bbe2SAndreas Gohr$lang['menu'] = '復元管理';
13*1220bbe2SAndreas Gohr
14*1220bbe2SAndreas Gohr// custom language strings for the plugin
15*1220bbe2SAndreas Gohr
16*1220bbe2SAndreas Gohr$lang['filter']   = 'スパムを受けたページを検索';
17*1220bbe2SAndreas Gohr$lang['revert']   = '選択したページを検索';
18*1220bbe2SAndreas Gohr$lang['reverted'] = '%s はリビジョン %s へ復元されました';
19*1220bbe2SAndreas Gohr$lang['removed']  = '%s は削除されました';
20*1220bbe2SAndreas Gohr$lang['revstart'] = '復元処理中です。時間が掛かる可能性がありますが、もしタイムアウトした場合は、復元を複数回に分けて行ってください。';
21*1220bbe2SAndreas Gohr
22*1220bbe2SAndreas Gohr
23*1220bbe2SAndreas Gohr$lang['revstop']  = '復元処理が正しく完了しました。';
24*1220bbe2SAndreas Gohr$lang['note1']    = '注意:検索語句は大文字・小文字を区別します';
25*1220bbe2SAndreas Gohr$lang['note2']    = '注意:最新の内容に検索したスパムキーワード <i>%s</i> が含まれていないページが復元されます。';
26*1220bbe2SAndreas Gohr
27*1220bbe2SAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 :
28