Skip to content
Snippets Groups Projects
Commit 5d7a2c6e authored by Prasad's avatar Prasad
Browse files

Reverted translation imposed on data-value (changeset 87882242)

parent 87882242
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@
{assign var=LISTVIEW_HEADERNAME value=$LISTVIEW_HEADER->get('name')}
{assign var=LAST_COLUMN value=$LISTVIEW_HEADER@last}
<td class="listViewEntryValue {$WIDTHTYPE}" width="{$WIDTH}%" nowrap>
&nbsp;{vtranslate($LISTVIEW_ENTRY->getDisplayValue($LISTVIEW_HEADERNAME),$QUALIFIED_MODULE)}
&nbsp;{$LISTVIEW_ENTRY->getDisplayValue($LISTVIEW_HEADERNAME)}
{if $LAST_COLUMN && $LISTVIEW_ENTRY->getRecordLinks()}
</td><td nowrap class="{$WIDTHTYPE}">
<div class="pull-right actions">
......@@ -94,4 +94,4 @@
</table>
{/if}
</div>
{/strip}
\ No newline at end of file
{/strip}
......@@ -100,7 +100,7 @@
</div>
</td>
{elseif $LISTVIEW_HEADER->getName() neq 'last_name' and $LISTVIEW_HEADER->getName() neq 'email1'}
<td class="{$WIDTHTYPE}" nowrap>{vtranslate($LISTVIEW_ENTRY->get($LISTVIEW_HEADERNAME), $MODULE)}
<td class="{$WIDTHTYPE}" nowrap>{$LISTVIEW_ENTRY->get($LISTVIEW_HEADERNAME)}
{if !$LISTVIEW_HEADER@last}</td>{/if}
{/if}
{if $LISTVIEW_HEADER@last}
......@@ -139,4 +139,4 @@
{/if}
</div>
{/strip}
\ No newline at end of file
{/strip}
......@@ -16,7 +16,7 @@
<ul class="nav nav-list">
{foreach item=recordsModel from=$RECORDS}
<li>
<a data-id={$recordsModel->getId()} href="{$recordsModel->getDetailViewUrl()}" title="{decode_html($recordsModel->getName())}">{vtranslate(decode_html($recordsModel->getName()), $MODULE)}</a>
<a data-id={$recordsModel->getId()} href="{$recordsModel->getDetailViewUrl()}" title="{decode_html($recordsModel->getName())}">{decode_html($recordsModel->getName())}</a>
</li>
{foreachelse}
<li style="text-align:center">{vtranslate('LBL_NO_RECORDS', $MODULE)}
......@@ -27,4 +27,4 @@
</div>
</div>
</div>
{/strip}
\ No newline at end of file
{/strip}
......@@ -59,7 +59,7 @@
{foreach from=$ALLFILTERS item=FILTERS key=FILTERGROUP}
<optgroup label="{vtranslate($FILTERGROUP)}">
{foreach from=$FILTERS item=FILTER key=FILTERNAME}
<option value="{$FILTER->getId()}">{vtranslate($FILTER->get('viewname'))}</option>
<option value="{$FILTER->getId()}">{$FILTER->get('viewname')}</option>
{/foreach}
</optgroup>
{/foreach}
......@@ -69,4 +69,4 @@
<option value="{$FIELD_NAME}">{vtranslate($FIELD->getFieldLabelKey(),$SELECTED_MODULE)}</option>
{/foreach}
{/if}
{/strip}
\ No newline at end of file
{/strip}
......@@ -12,4 +12,4 @@
{* TODO: Review the order of parameters - good to eliminate $RECORD->getId, $RECORD should be used *}
{vtranslate($FIELD_MODEL->getDisplayValue($FIELD_MODEL->get('fieldvalue'), $RECORD->getId(), $RECORD), $MODULE_NAME)}
\ No newline at end of file
{$FIELD_MODEL->getDisplayValue($FIELD_MODEL->get('fieldvalue'), $RECORD->getId(), $RECORD)}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment