fix for vivo-127
This commit is contained in:
parent
f267df494d
commit
3ce6a224a3
4 changed files with 7 additions and 5 deletions
|
@ -250,6 +250,8 @@ display_has_element_error = There was an error in the system. The display:hasEle
|
|||
|
||||
return_to = return to {0}
|
||||
|
||||
other = other
|
||||
|
||||
#
|
||||
# admin templates ( /templates/freemarker/body/admin )
|
||||
#
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
</section> <!-- individual-intro -->
|
||||
</#if>
|
||||
|
||||
<#assign nameForOtherGroup = "other"> <#-- used by both individual-propertyGroupMenu.ftl and individual-properties.ftl -->
|
||||
<#assign nameForOtherGroup = "${i18n().other}">
|
||||
|
||||
<!-- Property group menu or tabs -->
|
||||
<#--
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
|
||||
<section id="pageList">
|
||||
<div class="tab">
|
||||
<h2>Page Management</h2>
|
||||
<h2>${i18n().page_management}</h2>
|
||||
</div>
|
||||
|
||||
|
||||
<#if pages?has_content >
|
||||
<table id="pageList" style="margin-bottom:2px"> <caption>Page Management</caption>
|
||||
<table id="pageList" style="margin-bottom:2px"> <caption>${i18n().page_management}</caption>
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||
|
||||
<#-- Template for property group menu on individual profile page -->
|
||||
<#-- Template for property group menu on individual profile page nameForOtherGroup! -->
|
||||
|
||||
<#assign nameForOtherGroup = nameForOtherGroup!"other">
|
||||
<#assign nameForOtherGroup = "${i18n().other}">
|
||||
|
||||
<#if (propertyGroups.all)??>
|
||||
<#assign groups = propertyGroups.all>
|
||||
|
|
Loading…
Add table
Reference in a new issue