i18n added to templates.
svn path=/plone.app.discussion/trunk/; revision=27648
This commit is contained in:
parent
1008356b30
commit
a7d80a1368
@ -84,7 +84,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="commentBody"
|
<div class="commentBody"
|
||||||
tal:content="structure reply/text">
|
tal:content="structure reply/text"
|
||||||
|
i18n:translate="comment_body_text">
|
||||||
This is the body text of the comment.
|
This is the body text of the comment.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -61,38 +61,35 @@
|
|||||||
|
|
||||||
<ul class="filter">
|
<ul class="filter">
|
||||||
<li class="all">
|
<li class="all">
|
||||||
<a class="current" href="#">All</a>
|
<a class="current" href="#" i18n:translate="title_filter_all">All</a>
|
||||||
|
|
|
|
||||||
</li>
|
</li>
|
||||||
<li class="moderated">
|
<li class="moderated">
|
||||||
<a href="#">
|
<a href="#" i18n:translate="title_filter_pending">Pending</a>
|
||||||
Pending (
|
|
||||||
<span class="pending-count">0</span>
|
|
||||||
)
|
|
||||||
</a>
|
|
||||||
|
|
|
|
||||||
</li>
|
</li>
|
||||||
<li class="approved">
|
<li class="approved">
|
||||||
<a href="#">Approved</a>
|
<a href="#" i18n:translate="title_filter_approved">Approved</a>
|
||||||
|
|
|
|
||||||
</li>
|
</li>
|
||||||
<li class="spam">
|
<li class="spam">
|
||||||
<a href="#">
|
<a href="#" i18n:translate="title_filter_spam">Spam</a>
|
||||||
Spam (
|
|
||||||
<span class="spam-count">0</span>
|
|
||||||
)
|
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<select name="bulkaction">
|
<select name="bulkaction">
|
||||||
<option selected="selected" value="-1">Bulk Actions</option>
|
<option selected="selected" value="-1" i18n:translate="title_bulkactions">Bulk Actions</option>
|
||||||
<option value="unapprove">Unapprove</option>
|
<option value="unapprove" i18n:translate="bulkactions_unapprove">Unapprove</option>
|
||||||
<option value="approve">Approve</option>
|
<option value="approve" i18n:translate="bulkactions_approve">Approve</option>
|
||||||
<option value="markspam">Mark as Spam</option>
|
<option value="markasspam" i18n:translate="bulkactions_markasspam">Mark as Spam</option>
|
||||||
<option value="delete">Delete</option>
|
<option value="delete" i18n:translate="bulkactions_delete">Delete</option>
|
||||||
</select>
|
</select>
|
||||||
<input id="dobulkaction" type="submit" class="standalone" value="Apply" name="bulkdoaction"/>
|
<input id="dobulkaction"
|
||||||
|
type="submit"
|
||||||
|
class="standalone"
|
||||||
|
value="Apply"
|
||||||
|
name="bulkdoaction"
|
||||||
|
i18n:attributes="value label_apply;" />
|
||||||
|
|
||||||
<table id="review-comments" class="listing nosort" style="width: 100%" tal:condition="items">
|
<table id="review-comments" class="listing nosort" style="width: 100%" tal:condition="items">
|
||||||
<thead>
|
<thead>
|
||||||
|
Loading…
Reference in New Issue
Block a user