flatpress/fp-interface/lang/ja-jp/lang.admin.plugin.php
Fraenkiman 0746ed0c41 Fixed broken links
- Fixed broken links in different places and added to the wiki where necessary.
- A new tab is now opened for external links.
2023-11-26 21:33:24 +01:00

41 lines
1.5 KiB
PHP

<?php
$lang['admin']['plugin']['submenu'] = array (
'default' => 'プラグインの管理'
);
/* main plugin panel */
$lang['admin']['plugin']['default'] = array(
'head' => 'プラグインの管理',
'enable' => '有効にする',
'disable' => '無効にする',
'descr' => '<a class="hint" '.
'href="https://wiki.flatpress.org/doc:techfaq#plugins" target="_blank" title="What is a plugin?">'.
'プラグイン</a>は、FlatPressに機能を追加・変更するような部品です。</p>'.
'<p>新たにプラグインをインストールするには、<code>fp-plugins/</code> '.
'ディレクトリにアップロードしてください。</p>'.
'<p>このパネルでは、プラグインの有効/無効を切り替えることができます。',
'name' => 'プラグイン名',
'description'=>'説明',
'author' => '作者',
'version' => 'ヴァージョン',
'action' => '切替設定',
);
$lang['admin']['plugin']['default']['msgs'] = array(
1 => '設定は変更されました。',
-1 => '設定の変更ができませんでした。考えられる理由: プラグインに文法エラーがある。',
);
/* system errors */
$lang['admin']['plugin']['errors'] = array(
'head' => 'The following errors were encountered while loading plugins:',
'notfound' => 'プラグインが見つかりません。スキップされました。',
'generic' => 'エラーナンバー %d',
);
?>