Changeset 851 for trunk/Modules/Export/Page.php
- Timestamp:
- Jan 17, 2016, 10:07:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/Page.php
r848 r851 70 70 $Output .= '<tr><td>'.HumanDate($Export['TimeCreate']).'</td>'. 71 71 '<td><a href="'.$this->System->Link('/user/?user='.$Export['User']).'">'.$Export['UserName'].'</a></td>'. 72 '<td>'. $Export['Title'].'</td>'.72 '<td>'.htmlspecialchars($Export['Title']).'</td>'. 73 73 '<td>'.$Export['OutputType'].'</td>'. 74 74 '<td><a href="'.$this->System->Link('/client-version/?action=item&id='.$Export['ClientVersionId']).'">'.$Export['ClientVersion'].'</a></td>'. … … 304 304 $Output .= '<input type="hidden" name="Operation" value="Save"/>'. 305 305 '<tr><td colspan="2">'; 306 if($Editable) $Output .= ' <input type="submit" value=" Uložit" '.$DisabledInput[$Editable].'/>';306 if($Editable) $Output .= ' <input type="submit" value="'.T('Save').'" '.$DisabledInput[$Editable].'/>'; 307 307 $Output .= ' <a href="?Action=Clone&ExportId='.$Export['Id'].'" onclick="return confirmAction(\''.T('Realy clone item?').'\');">'.T('Clone').'</a> '; 308 308 if($this->System->User->Licence(LICENCE_ADMIN)) … … 310 310 $Output .= '</td></tr>'; 311 311 } 312 $Output .= '<tr><td>'.T('Identification').':</td><td><input type="text" style="width: 400px" name="Title" value="'. $Export['Title'].'"'.$DisabledInput[$Editable].'/></td></tr>'.313 '<tr><td> Popis:</td><td><textarea name="Description" cols="54" rows="10"'.$DisabledTextArea[$Editable].'>'.$Export['Description'].'</textarea></td></tr>'.312 $Output .= '<tr><td>'.T('Identification').':</td><td><input type="text" style="width: 400px" name="Title" value="'.htmlspecialchars($Export['Title']).'"'.$DisabledInput[$Editable].'/></td></tr>'. 313 '<tr><td>'.T('Description').':</td><td><textarea name="Description" cols="54" rows="10"'.$DisabledTextArea[$Editable].'>'.htmlspecialchars($Export['Description']).'</textarea></td></tr>'. 314 314 '<tr><td>'.T('With diacritics').'</td><td><input type="checkbox" name="WithDiacritic" '.$WithDiacritic.''.$DisabledInput[$Editable].'/></td></tr>'. 315 315 '</table></form>'; … … 752 752 $DbResult = $this->System->Database->query('SELECT * FROM `User` WHERE `ID`='.$Export['User']); 753 753 $UserLine = $DbResult->fetch_assoc(); 754 $Output .= 'Export <strong><a href="?Action=View&Tab=6&ExportId='.$Export['Id'].'">'.$_GET['ExportId'].'</a></strong> překladatele <strong>'.$UserLine['Name'].'</strong> s označením <strong>'.$Export['Title'].'</strong>'; 755 $Output .= ShowTabs(array(T('General'), T('Translators'), T('Translations'), T('Languages'), T('Format'), T('Version'), T('Statistic'), T('Output'))); 754 $Output .= sprintf(T('Export %s of translator %s'), 755 '<strong><a href="?Action=View&Tab=6&ExportId='.$Export['Id'].'">'.htmlspecialchars($Export['Title']).'</a></strong>', 756 '<strong>'.$UserLine['Name'].'</strong>'); 757 $Output .= ShowTabs(array(T('General'), T('Translators'), 758 T('Translations'), T('Languages'), T('Format'), T('Version'), 759 T('Statistic'), T('Output'))); 756 760 $Output .= '<div id="content">'; 757 761 if($_SESSION['Tab'] == TAB_GENERAL) $Output .= $this->ExportViewGeneral();
Note:
See TracChangeset
for help on using the changeset viewer.