Merge pull request #2032 from brayanpereyra/master

Arreglo de label harcodeado
This commit is contained in:
julceslauhub
2013-09-05 08:43:23 -07:00
2 changed files with 3 additions and 3 deletions

View File

@@ -950,8 +950,8 @@ class processMap
$aRow['DYN_TITLE'] = Content::Load("DYN_TITLE", "", $aRow['DYN_UID'], SYS_LANG);
}
$aBB[] = array('STEP_UID' => $aRow['DYN_UID'], 'STEP_TITLE' => $aRow['DYN_TITLE'], 'STEP_TYPE_OBJ' => 'DYNAFORM', 'STEP_MODE' => '<select id="STEP_MODE_' . $aRow['DYN_UID'] . '">
<option value="EDIT">Edit</option>
<option value="VIEW">View</option>
<option value="EDIT">' . G::LoadTranslation('ID_EDIT') . '</option>
<option value="VIEW">' . G::LoadTranslation('ID_VIEW') . '</option>
</select>'
);
$oDataset->next();

View File

@@ -135,7 +135,7 @@ Ext.onReady(function(){
pageSize: pageSize,
store: storeA,
displayInfo: true,
displayMsg: '{0} - {1} of {2}',
displayMsg: '{0} - {1} ' + _('ID_DISPLAY_OF') + ' {2}',
emptyMsg: _('ID_NO_RECORDS')/*,
items: ['-',_('ID_PAGE_SIZE')+':',comboPageSize]*/
});