Changeset 299 for trunk/TranslationList.php
- Timestamp:
- Dec 28, 2009, 5:29:36 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/TranslationList.php
r288 r299 255 255 $Total = 0; 256 256 foreach($TranslationTree as $Group) 257 257 if($Group['TablePrefix'] != '') 258 258 { 259 259 $Export = 'XML'; … … 261 261 if($Group['MangosTable'] != '') 262 262 { 263 $Export .= ', SQL';264 $Import = 'SQL '.$Group['MangosDatabase'].'.'.$Group['MangosTable'];263 $Export .= ', SQL'; 264 $Import = 'SQL '.$Group['MangosDatabase'].'.'.$Group['MangosTable']; 265 265 } 266 266 if($Group['DBCFileName'] != '') 267 267 { 268 $Export .= ', DBC';269 $Import = $Group['DBCFileName'].'.dbc';268 $Export .= ', DBC'; 269 $Import = $Group['DBCFileName'].'.dbc'; 270 270 } 271 271 if($Group['LuaFileName'] != '') 272 272 { 273 $Export .= ', Lua';274 $Import = $Group['LuaMPQFolder'].'/'.$Group['LuaFileName'].'.lua';273 $Export .= ', Lua'; 274 $Import = $Group['LuaMPQFolder'].'/'.$Group['LuaFileName'].'.lua'; 275 275 } 276 276 foreach($Group['Items'] as $Item) 277 277 if(($Item['AddonFileName'] != '') and (substr($Export, -5) != 'Addon')) 278 {279 $Export .= ', Addon';278 { 279 $Export .= ', Addon'; 280 280 } 281 281 echo('<tr><td><a href="?group='.$Group['Id'].'&action=filter">'.$Group['Name'].'</a></td><td>'.$Import.'</td><td>'.$Export.'</td><td><a title="Změny po posledním importu u vybrané překladové skupiny" href="log.php?group='.$Group['Id'].'&type=11">'.HumanDate($Group['LastImport']).'</a></td><td>'.GetVersionWOW($Group['LastVersion']).'</td></tr>');
Note:
See TracChangeset
for help on using the changeset viewer.