+2006-07-17 Dmitry Dulepov <typo3@accio.lv>
+
+ * t3lib_tceforms: now using "labels.new" from locallang instead of hard-coded "NEW"
+
2006-07-17 Michael Stucki <michael@typo3.org>
* Fix bug #3308: Check for deleted records when displaying language overlays
$opt=array();
$opt[]='<option value=""></option>';
foreach($value['el'] as $kk => $vv) {
- $opt[]='<option value="'.$kk.'">'.htmlspecialchars('NEW "'.$this->sL($value['el'][$kk]['tx_templavoila']['title']).'"').'</option>';
+ $opt[]='<option value="'.$kk.'">'.htmlspecialchars($this->getLL('l_new') . ' "'.$this->sL($value['el'][$kk]['tx_templavoila']['title']).'"').'</option>';
}
$rowCells['formEl']='<select name="flexFormsCmdData'.$formPrefix.'['.$key.'][value]">'.implode('',$opt).'</select>';
}