- Timestamp:
- Jan 19, 2016, 11:10:33 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r854 r855 7 7 8 8 $Version = '1.0-alfa'; 9 $Revision = 85 2; // Subversion revision9 $Revision = 855; // Subversion revision 10 10 $DatabaseRevision = 849; // Database structure revision 11 $ReleaseTime = '2016-01-1 7';11 $ReleaseTime = '2016-01-19'; -
trunk/Modules/Translation/TranslationList.php
r847 r855 23 23 24 24 $Output = '<form action="?" method="post">'. 25 26 27 28 29 30 31 32 33 25 '<table class="BaseTable"><tr>'. 26 '<th>'.T('Processing').'</th>'. 27 '<th>'.T('Group').'</th>'. 28 '<th>'.T('Version').'</th>'. 29 '<th>'.T('Language').'</th>'. 30 '<th>'.T('Translator').'</th>'. 31 '<th>'.T('Words').'</th>'. 32 '<th>'.T('Item').'</th>'. 33 '<th></th></tr><tr>'; 34 34 35 35 // State … … 73 73 else $Selected = ''; 74 74 $Output .= '<option value="0"'.$Selected.'>'.T('All').'</option>'; 75 $DbResult = $this->Database->query('SELECT `Id`,`Name` FROM `Group` ORDER BY `Name`');75 $DbResult = $this->Database->query('SELECT `Id`,`Name` FROM `Group`'); 76 76 while($Group = $DbResult->fetch_assoc()) 77 $Groups[T($Group['Name'])] = $Group; 78 ksort($Groups); 79 foreach($Groups as $Group) 77 80 { 78 81 if($Group['Id'] == $Filter['Group']) $Selected = ' selected="selected"'; … … 382 385 $Filter = $this->ShowFilter(); 383 386 if($Filter['Group'] > 0) $Output = $this->ShowTranslationList($Filter); 384 else $Output = $this->ShowGroupList($Filter);387 else $Output = $this->ShowGroupList($Filter); 385 388 } 386 389 return($Output); -
trunk/includes/Global.php
r854 r855 343 343 344 344 $Result = array(); 345 $DbResult = $System->Database->query('SELECT *, UNIX_TIMESTAMP(`LastImport`) AS `LastImportTime` FROM `Group` ORDER BY `Name`'); 345 $Groups = array(); 346 $DbResult = $System->Database->query('SELECT *, UNIX_TIMESTAMP(`LastImport`) AS `LastImportTime` FROM `Group`'); 346 347 while($DbRow = $DbResult->fetch_assoc()) 347 { 348 $DbRow['Items'] = array(); 349 $DbRow['Name'] = T($DbRow['Name']); 350 $Result[$DbRow['Id']] = $DbRow; 348 $Groups[T($DbRow['Name'])] = $DbRow; 349 ksort($Groups); 350 foreach($Groups as $Group) 351 { 352 $Group['Items'] = array(); 353 $Group['Game'] = T($Group['Name']); 354 $Result[$Group['Id']] = $Group; 351 355 } 352 356 $DbResult = $System->Database->query('SELECT * FROM `GroupItem` ORDER BY `Group`, `Sequence`'); -
trunk/includes/Locale.php
r843 r855 147 147 function UpdateToDatabase(Database $Database, $LangCode) 148 148 { 149 $DbResult = $Database->select('Language', '*', ' Code='.$Database->quote($LangCode));149 $DbResult = $Database->select('Language', '*', '`Code`='.$Database->quote($LangCode)); 150 150 if($DbResult->num_rows > 0) 151 151 { … … 153 153 foreach($this->Texts->Data as $Index => $Item) 154 154 { 155 $DbResult = $Database->select('Locale', '*', '(`Original` ='.$Database->quote($Index).') AND (`Language`='.($Language['Id']).')'); 155 $DbResult = $Database->select('Locale', '*', '(`Original` ='.$Database->quote($Index). 156 ') AND (`Language`='.($Language['Id']).')'); 156 157 if($DbResult->num_rows > 0) 157 158 $Database->update('Locale', '(`Language`='.($Language['Id']).') AND '. -
trunk/includes/System.php
r854 r855 452 452 while($Group = $DbResult->fetch_assoc()) 453 453 { 454 $Groups[T($Group['Name'])] = $Group; 455 } 456 ksort($Groups); 457 foreach($Groups as $Group) 458 { 454 459 $Output .= '<div id="menuitem-group'.$Group['Id'].'" onmouseover="show(\'group'.$Group['Id'].'\')" onmouseout="hide(\'group'.$Group['Id'].'\')">'. 455 460 '<a href="'.$this->System->Link('/TranslationList.php?group='.$Group['Id'].
Note:
See TracChangeset
for help on using the changeset viewer.