i18n some InOutBoard template labels
This commit is contained in:
parent
1905eb1c2e
commit
c3eaa14741
6 changed files with 123 additions and 0 deletions
|
|
@ -13,6 +13,7 @@
|
|||
Added tests for File and Image assets to verify that this happens correctly.
|
||||
- fix - Unable to add EventsCalendar
|
||||
- fix - Wiki Page not added to config
|
||||
- fix - Some functions in InOutBoard not internationalized
|
||||
|
||||
|
||||
7.3.0
|
||||
|
|
|
|||
33
docs/upgrades/templates-7.3.1/inOutReportTemplate.tmpl
Normal file
33
docs/upgrades/templates-7.3.1/inOutReportTemplate.tmpl
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#IOB0000000000000000002
|
||||
#namespace:InOutBoard/Report
|
||||
<h2><tmpl_var reportTitle></h2>
|
||||
<div class="iob">
|
||||
<tmpl_var form><br />
|
||||
<tmpl_if showReport>
|
||||
<table width="100%" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<th><tmpl_var username.label></th>
|
||||
<th><tmpl_var status.label></th>
|
||||
<th><tmpl_var date.label></th>
|
||||
<th><tmpl_var message.label></th>
|
||||
<th><tmpl_var updatedBy.label></th>
|
||||
</tr>
|
||||
<tmpl_loop rows_loop>
|
||||
<tmpl_if deptHasChanged>
|
||||
<tr><td colspan="5"><b><tmpl_var department></b></td></tr>
|
||||
</tmpl_if>
|
||||
<tr>
|
||||
<td><tmpl_var username></td>
|
||||
<td><tmpl_var status></td>
|
||||
<td><tmpl_var dateStamp></td>
|
||||
<td><tmpl_var message></td>
|
||||
<td><tmpl_var createdBy></td>
|
||||
</tr>
|
||||
</tmpl_loop>
|
||||
<tr><td colspan="5"><tmpl_var paginateBar></td></tr>
|
||||
</table>
|
||||
</tmpl_if>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
51
docs/upgrades/templates-7.3.1/inOutTemplate.tmpl
Normal file
51
docs/upgrades/templates-7.3.1/inOutTemplate.tmpl
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
#IOB0000000000000000001
|
||||
#namespace:InOutBoard
|
||||
<a name="id<tmpl_var assetId>" id="id<tmpl_var assetId>"></a>
|
||||
<tmpl_if session.var.adminOn>
|
||||
<p><tmpl_var controls></p>
|
||||
</tmpl_if>
|
||||
|
||||
<tmpl_if displayTitle>
|
||||
<h2><tmpl_var title></h2>
|
||||
</tmpl_if>
|
||||
|
||||
<div class="fontSettings">
|
||||
<tmpl_var description>
|
||||
<br /><br />
|
||||
</div>
|
||||
|
||||
<div class="pagination">
|
||||
<tmpl_if selectDelegatesURL>
|
||||
<a href="<tmpl_var selectDelegatesURL>"><tmpl_var selectDelegatesLabel></a>
|
||||
</tmpl_if>
|
||||
<tmpl_if canViewReport>
|
||||
<tmpl_if selectDelegatesURL>
|
||||
·
|
||||
</tmpl_if>
|
||||
<a href="<tmpl_var viewReportURL>"><tmpl_var reportTitleLabel></a>
|
||||
</tmpl_if>
|
||||
</div>
|
||||
|
||||
<tmpl_if displayForm>
|
||||
<div class="fontSettings">
|
||||
<tmpl_var form>
|
||||
</div>
|
||||
</tmpl_if>
|
||||
|
||||
<table width="100%" cellpadding="3" cellspacing="0" class="iob">
|
||||
<tmpl_loop rows_loop>
|
||||
<tmpl_if deptHasChanged>
|
||||
<tr><td colspan="4" class="noBorder"><br /><b><tmpl_var department></b></td></tr>
|
||||
</tmpl_if>
|
||||
<tr>
|
||||
<td<tmpl_if __ODD__> class="odd"</tmpl_if>><tmpl_var username></td>
|
||||
<td<tmpl_if __ODD__> class="odd"</tmpl_if>><tmpl_var status></td>
|
||||
<td<tmpl_if __ODD__> class="odd"</tmpl_if>><tmpl_var dateStamp></td>
|
||||
<td<tmpl_if __ODD__> class="odd"</tmpl_if>><tmpl_var message></td>
|
||||
</tr>
|
||||
</tmpl_loop>
|
||||
<tr><td colspan="4"><tmpl_var paginateBar></td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue