flatpress/fp-interface/lang/ja-jp/lang.admin.maintain.php
Fraenkiman 84640c6965 Output of support data
- FlatPress provides the admin with all relevant data that could contribute to solving the problem.
- In the event that templates are faulty or a plugin is disrupting FlatPress, the support data can be retrieved via the URL http(s)://your-domain.ltd/admin/support.php.
2024-02-25 20:06:33 +01:00

40 lines
1.7 KiB
PHP

<?php
$lang ['admin'] ['panel'] ['maintain'] = 'Maintainance';
$lang ['admin'] ['maintain'] ['default'] = array(
'head' => 'メンテナンス',
'descr' => '動作が何かおかしいとき、このページに来てください。解決策を見つけられるかもしれません。でもうまく働かないかもしれませんが。',
'opt0' => '&laquo; メインメニューに戻ります',
'opt1' => 'インデックスを再構成します',
'opt2' => 'テーマとテンプレートのキャッシュをクリアします',
'opt3' => 'ファイルパーミッションの回復',
'opt4' => 'PHP情報を表示します',
'opt5' => 'アップデートをチェックします',
'opt6' => 'サポートデータの表示',
'chmod_info' => 'ファイルのパーミッションを' . decoct(FILE_PERMISSIONS) . 'にリセットできなかった場合、ファイルの所有者がウェブサーバーの所有者と同じでない可能性があります。<br>' . //
'でも通常、この通知を無視することができます。'
);
$lang ['admin'] ['maintain'] ['default'] ['msgs'] = array(
1 => '作業を完了しました。',
-1 => '操作が正常に完了しなかった。'
);
$lang ['admin'] ['maintain'] ['updates'] = array(
'head' => 'アップデート',
'list' => '<ul>
<li>現在のFlatPressのヴァージョン <big>%s</big></li>
<li>Last stable version は、<big><a href="%s">%s</a></big>です。</li>
<li>Last unstable version は、<big><a href="%s">%s</a></big>です。</li>
</ul>',
'notice' => 'Notice:'
);
$lang ['admin'] ['maintain'] ['updates'] ['msgs'] = array(
1 => 'アップデートがあります!',
2 => '最新版をご利用中です。',
-1 => '最新版の検索ができませんでした。'
);
?>