Changeset 9
- Timestamp:
- Jun 6, 2008, 7:47:22 AM (16 years ago)
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
lang/cs.php
r8 r9 49 49 'th_version' => 'Verze', 50 50 'th_rating' => 'Známka', 51 'th_created' => 'Přidáno', 51 52 'info_servers' =>'Servery', 52 53 'info_num_of_servers' => 'Počet serverů', -
lang/en.php
r8 r9 49 49 'th_version' => 'Version', 50 50 'th_rating' => 'Rating', 51 'th_created' => 'Added', 51 52 'info_servers' => 'Servers', 52 53 'info_num_of_servers' => 'Number of servers', -
pages/a_servers.php
r8 r9 11 11 $tpl->output['th_rating'] = $text['th_rating']; 12 12 $tpl->output['th_recommend'] = $text['th_recommend']; 13 $tpl->output['th_created'] = $text['th_created']; 13 14 $tpl->output['order_by'] = $text['order_by']; 14 15 $tpl->output['place'] = $text['info_place']; … … 25 26 case 5: $order = ' order by `players` desc '; break; 26 27 case 6: $order = ' order by `online` desc '; break; 27 case 7: $order = ' order by `online` desc,`latency`'; break; 28 case 7: $order = ' order by ceil(`online` / 100) desc, `latency`'; break; 29 case 8: $order = ' order by `created` desc'; break; 28 30 } 29 31 $tpl->output['s0'] = ''; … … 35 37 $tpl->output['s6'] = ''; 36 38 $tpl->output['s7'] = ''; 39 $tpl->output['s8'] = ''; 37 40 if (empty($order_index)) 38 41 { -
pages/servers.php
r8 r9 9 9 $tpl->output['th_rating'] = $text['th_rating']; 10 10 $tpl->output['th_recommend'] = $text['th_recommend']; 11 $tpl->output['th_created'] = $text['th_created']; 11 12 $tpl->output['order_by'] = $text['order_by']; 12 13 $tpl->output['place'] = $text['info_place']; … … 23 24 case 5: $order = ' order by `players` desc '; break; 24 25 case 6: $order = ' order by `online` desc '; break; 25 case 7: $order = ' order by `online` desc,`latency`'; break; 26 case 7: $order = ' order by ceil(`online` / 100) desc, `latency`'; break; 27 case 8: $order = ' order by `created` desc'; break; 26 28 } 27 29 $tpl->output['s0'] = ''; … … 33 35 $tpl->output['s6'] = ''; 34 36 $tpl->output['s7'] = ''; 37 $tpl->output['s8'] = ''; 35 38 if (empty($order_index)) 36 39 { -
pages/wss_partners.php
r8 r9 9 9 $tpl->output['th_rating'] = $text['th_rating']; 10 10 $tpl->output['th_recommend'] = $text['th_recommend']; 11 $tpl->output['th_created'] = $text['th_created']; 11 12 $tpl->output['order_by'] = $text['order_by']; 12 13 $tpl->output['place'] = $text['info_place']; … … 24 25 case 5: $order = ' order by `players` desc '; break; 25 26 case 6: $order = ' order by `online` desc '; break; 26 case 7: $order = ' order by `online` desc,`latency`'; break; 27 case 7: $order = ' order by ceil(`online` / 100) desc, `latency`'; break; 28 case 8: $order = ' order by `created` desc'; break; 27 29 } 28 30 $tpl->output['s0'] = ''; … … 34 36 $tpl->output['s6'] = ''; 35 37 $tpl->output['s7'] = ''; 38 $tpl->output['s8'] = ''; 36 39 if (empty($order_index)) 37 40 { -
templates/a_servers.html
r8 r9 10 10 <option {s6}>{th_online_state}</option> 11 11 <option {s7}>{th_latency}</option> 12 <option {s8}>{th_created}</option> 12 13 </select> 13 14 </div> -
templates/index.html
r1 r9 4 4 <base href="{url}"> 5 5 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 6 <meta name="generator" content="PSPad editor, www.pspad.com">7 <meta name="author" content="illi (Jakub Sochor)">8 6 <meta http-equiv="Content-Language" content="{lang}" > 9 7 <script type="text/javascript" src="./includes/global.js"></script> -
templates/servers.html
r8 r9 10 10 <option {s6}>{th_online_state}</option> 11 11 <option {s7}>{th_latency}</option> 12 <option {s8}>{th_created}</option> 12 13 </select> 13 14 </div> -
templates/wss_partners.html
r8 r9 10 10 <option {s6}>{th_online_state}</option> 11 11 <option {s7}>{th_latency}</option> 12 <option {s8}>{th_created}</option> 12 13 </select> 13 14 </div>
Note:
See TracChangeset
for help on using the changeset viewer.