source: branches/version-2_12-multilang/html/install/templates/agreement.tpl @ 22382

Revision 22382, 3.7 KB checked in by kim, 11 years ago (diff)

メッセージIDをを置き換え
"SC_CheckError_001"
"tpl_001"
"tpl_736"
"tpl_799"

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2012 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 *}-->
22<script type="text/javascript">
23<!--
24// ラジオボタンによる表示・非表示
25function fnChangeVisible(check_id, mod_id){
26
27    if (document.getElementById(check_id).checked){
28        document.getElementById(mod_id).onclick = false;
29        document.getElementById(mod_id).src = '../img/install/next.jpg';
30    } else {
31        document.getElementById(mod_id).disabled = true;
32        document.getElementById(mod_id).src = '../img/install/next_off.jpg';
33    }
34}
35//-->
36</script>
37
38<table width="502" border="0" cellspacing="1" cellpadding="0" summary=" ">
39<form name="form1" id="form1" method="post" action="?">
40<input type="hidden" name="mode" value="<!--{$tpl_mode}-->" />
41<input type="hidden" name="step" value="0" />
42
43<!--{foreach key=key item=item from=$arrHidden}-->
44    <input type="hidden" name="<!--{$key}-->" value="<!--{$item|h}-->" />
45<!--{/foreach}-->
46
47<tr><td height="30"></td></tr>
48<tr><td align="left" class="fs12st"><!--{t string="tpl_731"}--></td></tr>
49<tr><td align="left" class="fs12"><!--{t string="tpl_732" escape="none"}--></td></tr>
50<tr><td height="10"></td></tr>
51<tr>
52    <td bgcolor="#cccccc" class="fs12">
53    <table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">
54        <tr>
55            <td bgcolor="#ffffff" class="fs12">
56            <div id="agreement">
57                <!--{t string="tpl_733" escape="none"}-->
58            </div>
59            </td>
60        </tr>
61    </table>
62    </td>
63</tr>
64<tr><td height="10"></td></tr>
65<!--{assign var=key value="agreement"}-->
66<tr><td align="left" class="fs12"><input type="radio" id="agreement_yes" name="<!--{$key}-->" value=true onclick="fnChangeVisible('agreement_yes', 'next');" <!--{if $arrHidden[$key]}-->checked<!--{/if}-->><label for="agreement_yes"><!--{t string="tpl_734"}--></label> <input type="radio" id="agreement_no" name="<!--{$key}-->" value=false onclick="fnChangeVisible('agreement_yes', 'next');" <!--{if !$arrHidden[$key]|h}-->checked<!--{/if}-->><label for="agreement_no"><!--{t string="tpl_735"}--></label></td></tr>
67</table>
68
69<table width="500" border="0" cellspacing="1" cellpadding="8" summary=" ">
70    <tr><td height="20"></td></tr>
71    <tr>
72        <td align="center">
73        <a href="#" onmouseover="chgImg('../img/install/back_on.jpg','back')" onmouseout="chgImg('../img/install/back.jpg','back')" onclick="document.form1['mode'].value='return_welcome';document.form1.submit();" /><img  width="105" src="../img/install/back.jpg"  height="24" alt="<!--{t string="tpl_610"}-->" border="0" name="back"></a>
74        <a href="#" onclick="document.form1.submit();"><input type='image' onMouseover="chgImgImageSubmit('../img/install/next_on.jpg',this)" onMouseout="chgImgImageSubmit('../img/install/next.jpg',this)" src="../img/install/next.jpg" width="105" height="24" alt="<!--{t string="t_Next_01"}-->" border="0" name="next" id="next"></a>
75        </td>
76    </tr>
77    <tr><td height="30"></td></tr>
78</form>
79</table>
Note: See TracBrowser for help on using the repository browser.