2012-05-27 Junichi Satoh <junichi@rworks.jp>
* general/pandora_help.php: Fixed i18n translation does not work in the help window. * include/help/ja/help_main_help.php: Added new general introduction help file. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6348 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
28f0284bc3
commit
fcfab78247
|
@ -1,3 +1,11 @@
|
|||
2012-05-27 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* general/pandora_help.php: Fixed i18n translation does not work
|
||||
in the help window.
|
||||
|
||||
* include/help/ja/help_main_help.php: Added new general
|
||||
introduction help file.
|
||||
|
||||
2012-05-24 Santiago Munin <burning1@gmail.com>
|
||||
|
||||
* include/functions_api.php: Added "group id" and "tag" to the current get_events filters.
|
||||
|
|
|
@ -38,6 +38,10 @@ if (! isset($_SESSION['id_usuario'])) {
|
|||
}
|
||||
|
||||
$user_language = get_user_language ($_SESSION['id_usuario']);
|
||||
if (file_exists ('../include/languages/'.$user_language.'.mo')) {
|
||||
$l10n = new gettext_reader (new CachedFileReader ('../include/languages/'.$user_language.'.mo'));
|
||||
$l10n->load_tables();
|
||||
}
|
||||
|
||||
/* Possible file locations */
|
||||
$safe_language = safe_url_extraclean ($user_language, "en");
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
/**
|
||||
* @package Include/help/ja
|
||||
*/
|
||||
?>
|
||||
<h1>Pandora FMS - ヘルプ</h1>
|
||||
<h3>概要</h3>
|
||||
<p>
|
||||
これは、Pandora FMS コンソールのオンラインヘルプです。このヘルプは簡単に説明することを目的としたもので、Pandora FMS の使い方を教えることを意図しているわけではありません。Pandora FMS の公式ドキュメントは約 900ページにも及びます。全体を読む必要はありませんが、参照できるようにダウンロードしておくことをお勧めします。
|
||||
|
||||
<br><br>
|
||||
<a href="http://pandorafms.com/pandora/doc/"><b>公式ドキュメントのダウンロード</b></a>
|
||||
|
||||
</p>
|
Loading…
Reference in New Issue