Changeset 636 for trunk/info.php
- Timestamp:
- Dec 11, 2013, 12:15:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/info.php
r577 r636 4 4 include('includes/global.php'); 5 5 6 $Output = '<h2>Informace a pokyny pro překladatele:</h2>'. 6 class PageInfo extends Page 7 { 8 function Show() 9 { 10 $this->Title = T('Information for translators'); 11 $Output = '<h2>Informace a pokyny pro překladatele:</h2>'. 7 12 '<ul>'. 8 13 '<li>Texty překládejte <strong>včetně diakritiky</strong> (háčků a čárek). Ta bude v případě potřeby odstraněna při exportování. </li>'. … … 33 38 '</ul><br />'. 34 39 '<br />'; 35 36 ShowPage($Output); 40 return($Output); 41 } 42 } 43 $Page = new PageInfo($System); 44 ShowPageClass($Page);
Note:
See TracChangeset
for help on using the changeset viewer.