Show
Ignore:
Timestamp:
04/02/08 06:38:21 (20 months ago)
Author:
fumiakiy
Message:

Merged the latest checkins to release-32 branch to the current dev branch. svn merge -r1669:1708 http://code.sixapart.com/svn/movabletype/branches/release-32 .

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-33/default_templates/comment_response.mtml

    r1463 r1709  
     1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
     2    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
     3<html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard"> 
     4<head> 
     5 
     6 
    17<MTIf name="body_class" eq="mt-comment-confirmation"> 
     8<mt:ignore><!-- Success message when comment has been submitted --></mt:ignore> 
    29    <MTSetVar name="page_title" value="<__trans phrase="Confirmation...">"> 
    310    <MTSetVar name="message" value="<__trans phrase="Your comment has been submitted!">"> 
    411<MTElse name="body_class" eq="mt-comment-pending"> 
     12<mt:ignore><!-- Pending message when comment is being held for review --></mt:ignore> 
    513    <MTSetVar name="page_title" value="<__trans phrase="Thank you for commenting.">"> 
    614    <MTSetVar name="message" value="<__trans phrase="Your comment has been received and held for approval by the blog owner.">"> 
    715<MTElse name="body_class" eq="mt-comment-error"> 
     16<mt:ignore><!-- Error message when comment submission fails --></mt:ignore> 
    817    <MTSetVar name="page_title" value="<__trans phrase="Comment Submission Error">"> 
    918    <MTSetVarBlock name="message"><__trans phrase="Your comment submission failed for the following reasons: [_1]" params="<$MTErrorMessage$>"></MTSetVarBlock> 
    1019</MTIf> 
    11 <MTSetVarBlock name="title"><$MTBlogName encode_html="1"$>: <$MTVar name="page_title"$></MTSetVarBlock> 
    1220 
    13 <$MTInclude module="<__trans phrase="Header">"$> 
    1421 
    15 <h1 id="page-title"><$MTVar name="page_title"$></h1> 
    16 <$MTVar name="message"$> 
    17 <p><__trans phrase="Return to the <a href="[_1]">original entry</a>." params="<$MTEntryLink$>"></p> 
     22    <title><$MTBlogName encode_html="1"$>: <$MTVar name="page_title"$></title> 
     23    <$mt:include module="<__trans phrase="HTML Head">"$> 
     24</head> 
     25<body class="<$mt:var name="body_class"$> <$MTVar name="page_layout"$>"> 
     26    <div id="container"> 
     27        <div id="container-inner"> 
    1828 
    19 <$MTInclude module="<__trans phrase="Footer">"$> 
     29 
     30            <$mt:include module="<__trans phrase="Banner Header">"$> 
     31 
     32 
     33            <div id="content"> 
     34                <div id="content-inner"> 
     35 
     36 
     37                    <div id="alpha"> 
     38                        <div id="alpha-inner"> 
     39                            <h1 id="page-title"><$MTVar name="page_title"$></h1> 
     40                            <$MTVar name="message"$> 
     41                        </div> 
     42                    </div> 
     43 
     44 
     45                    <$MTInclude module="<__trans phrase="Sidebar">"$> 
     46 
     47 
     48                </div> 
     49            </div> 
     50 
     51 
     52            <$mt:include module="<__trans phrase="Banner Footer">"$> 
     53 
     54 
     55        </div> 
     56    </div> 
     57</body> 
     58</html>