OSDN Git Service

初回コミット(v2.6.17.1)
[magic3/magic3.git] / widgets / admin_main / include / help / help_templist.php
1 <?php
2 /**
3  * ヘルプリソースファイル
4  * index.php
5  *
6  * PHP versions 5
7  *
8  * LICENSE: This source file is licensed under the terms of the GNU General Public License.
9  *
10  * @package    Magic3 Framework
11  * @author     平田直毅(Naoki Hirata) <naoki@aplo.co.jp>
12  * @copyright  Copyright 2006-2012 Magic3 Project.
13  * @license    http://www.gnu.org/copyleft/gpl.html  GPL License
14  * @version    SVN: $Id: help_templist.php 4834 2012-04-10 23:42:43Z fishbone $
15  * @link       http://www.magic3.org
16  */
17 require_once($gEnvManager->getCommonPath()                              . '/helpConv.php' );
18
19 class help_templist extends HelpConv
20 {
21         /**
22          * ヘルプ用データを設定
23          *
24          * @return array                                ヘルプ用データ
25          */
26         function _setData()
27         {
28                 // ########## テンプレート一覧 ##########
29                 $helpData = array(
30                         'templist' => array(    
31                                 'title' =>      $this->_('Template List'),                      // テンプレート一覧
32                                 'body' =>       $this->_('The list is available templates in this system. Use bottom area of Template Install if you install template.')                // システムで利用可能なテンプレートの一覧です。テンプレートのインストールはこの画面の最下部の「テンプレートアップロード」から行います。
33                         ),
34                         'templist_type' => array(       
35                                 'title' =>      $this->_('Template Type'),                      // テンプレートタイプ
36                                 'body' =>       $this->_('Select template type for pc or mobile, smartphone.')          // PC用テンプレートか携帯用、スマートフォン用のテンプレートを選択します。
37                         ),
38                         'templist_install_dir' => array(        
39                                 'title' =>      $this->_('Template Install Directory'),                 // テンプレートインストールディレクトリ
40                                 'body' =>       $this->_('Templates installed in the directory by name of template ID.')                // テンプレートのインストールディレクトリです。この配下に「テンプレートID」のディレクトリ名で個々のテンプレートが格納されます。
41                         ),
42                         'templist_id' => array( 
43                                 'title' =>      $this->_('Template ID'),                        // テンプレートID
44                                 'body' =>       $this->_('Template is identified with Template ID. Template ID is same as directory name.')             // テンプレートのIDです。テンプレートのディレクトリ名と同一です。
45                         ),
46                         'templist_name' => array(       
47                                 'title' =>      $this->_('Template Name'),                      // テンプレート名前
48                                 'body' =>       $this->_('The name of template.')               // テンプレートの名前です。
49                         ),
50                         'templist_format' => array(     
51                                 'title' =>      $this->_('Template Format'),                    // テンプレート形式
52                                 'body' =>       $this->_('Available formats are below. System default is J15.<br /><strong>J10</strong> - Joomla! v1.0 format.<br /><strong>J15</strong> - Joomla! v1.5 format.<br /><strong>J25</strong> - Joomla! v1.7-v2.5 format.')         // テンプレートの形式です。<br />利用可能な形式は以下の通りです。Magic3では現在J15を標準としています。<br />●J10<br />Joomla! v1.0用テンプレート<br />●J15<br />Joomla! v1.5用テンプレート<br />●J25<br />Joomla! v1.7-v2.5用テンプレート
53                         ),
54                         'templist_default' => array(    
55                                 'title' =>      $this->_('Default Template'),                   // デフォルト
56                                 'body' =>       $this->_('The current selected template.')              // 現在システムで選択されているデフォルトのテンプレートを示します。
57                         ),
58                         'templist_act' => array(        
59                                 'title' =>      $this->_('Operation'),                  // 操作
60                                 'body' =>       $this->_('You can operate below.<br /><strong>Preview</strong> - Preview template with no widgets.<br /><strong>Update</strong> - Update line.<br /><strong>Delete</strong> - Delete template.<br /><strong>Download</strong> - Download template with zip format compressed. The compressed file can be upload by Template Upload area.')              // 各種操作を行います。<br />●プレビュー<br />テンプレートがプレビューできます。<br />●更新<br />この一覧で変更した値を保存します。<br />●削除<br />テンプレートをシステムから削除します。<br />●ダウンロード<br />テンプレートをZIP圧縮形式でダウンロードします。このファイルはそのまま「テンプレートアップロード」からシステムへインストールできる形式です。
61                         ),
62                         'templist_upload' => array(     
63                                 'title' =>      $this->_('Template Upload'),                    // テンプレートアップロード
64                                 'body' =>       $this->_('Upload template file compressed with zip format, install in the system. Error is occured if there is the same template ID.')          // ZIP形式のテンプレートファイルをアップロードし、システムにテンプレートをインストールします。同じIDのテンプレートがすでに存在する場合はエラーになります。
65                         ),
66                         'templist_detail_check' => array(       
67                                 'title' =>      $this->_('Show detail'),                        // 詳細表示
68                                 'body' =>       $this->_('Show detail list if checked.')                // チェックを入れると一覧が詳細表示できます。
69                         ),
70                         'templist_reload_dir_btn' => array(     
71                                 'title' =>      $this->_('Reload directory'),                   // ディレクトリ再読み込み
72                                 'body' =>       $this->_('Reload the directory and automatically install unlisted template.')           // テンプレートディレクトリを再読み込みして、一覧に表示されていないテンプレートを自動的にインストールします。
73                         )
74                 );
75                 return $helpData;
76         }
77 }
78 ?>