Changeset 603
- Timestamp:
- Nov 26, 2013, 12:22:41 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FrontPage/FrontPage.php
r578 r603 138 138 if(isset($_COOKIE['HideWelcome']) and ($_COOKIE['HideWelcome'] == 1)) 139 139 { 140 $Action = '<a href="?Action=UnHideWelcome"> Odkrýt úvod</a>';140 $Action = '<a href="?Action=UnHideWelcome">'.T('Show welcome').'</a>'; 141 141 $HideWelcome = 'display: none'; 142 142 } else 143 143 { 144 $Action = '<a href="?Action=HideWelcome"> Skrýt úvod</a>';144 $Action = '<a href="?Action=HideWelcome">'.T('Hide welcome').'</a>'; 145 145 $HideWelcome = ''; 146 146 } -
trunk/Modules/Team/Team.php
r597 r603 106 106 $Output .= $this->ShowTeamList(); 107 107 } else $Output = ShowMessage('Nutno zadat id týmu.', MESSAGE_CRITICAL); 108 } else $Output = ShowMessage( 'Nemáte oprávnění', MESSAGE_CRITICAL);108 } else $Output = ShowMessage(T('Access denied'), MESSAGE_CRITICAL); 109 109 return($Output); 110 110 } … … 133 133 } else $Output .= ShowMessage('Již existuje tým se stejným jménem', MESSAGE_CRITICAL); 134 134 } else $Output .= ShowMessage('Chybí údaje formuláře', MESSAGE_CRITICAL); 135 } else $Output .= ShowMessage( 'Nemáte oprávnění', MESSAGE_CRITICAL);135 } else $Output .= ShowMessage(T('Access denied'), MESSAGE_CRITICAL); 136 136 $Output .= $this->ShowTeamList(); 137 137 return($Output); … … 157 157 } else $Output = ShowMesage('Tým nenalezen.', MESSAGE_CRITICAL); 158 158 } else $Output = ShowMessage('Nezadáno id týmu', MESSAGE_CRITICAL); 159 } else $Output = ShowMessage( 'Nemáte oprávnění', MESSAGE_CRITICAL);159 } else $Output = ShowMessage(T('Access denied'), MESSAGE_CRITICAL); 160 160 return($Output); 161 161 } … … 183 183 } else $Output .= ShowMessage('Tým nenalezen nebo nemáte oprávnění.', MESSAGE_CRITICAL); 184 184 } else $Output .= ShowMessage('Nezadáno id týmu nebo některé položky formuláře.', MESSAGE_CRITICAL); 185 } else $Output .= ShowMessage( 'Nemáte oprávnění.', MESSAGE_CRITICAL);185 } else $Output .= ShowMessage(T('Access denied'), MESSAGE_CRITICAL); 186 186 $Output .= $this->ShowTeamList(); 187 187 return($Output); … … 199 199 '<tr><td colspan="2"><input type="submit" value="Vytvořit a vstoupit" /></td></tr>'. 200 200 '</table></fieldset></form>'; 201 } else $Output = ShowMessage( 'Nemáte oprávnění', MESSAGE_CRITICAL);201 } else $Output = ShowMessage(T('Access denied'), MESSAGE_CRITICAL); 202 202 return($Output); 203 203 } … … 311 311 312 312 $Output .= $this->ShowTeamList(); 313 } else $Output = ShowMessage( 'Nemáte oprávnění.', MESSAGE_CRITICAL);313 } else $Output = ShowMessage(T('Access denied'), MESSAGE_CRITICAL); 314 314 return($Output); 315 315 } -
trunk/admin/DefaultConfig.php
r571 r603 36 36 'WebCounter' => '', 37 37 'Advertisement' => '', 38 'Locale' => 'cs', 38 39 ), 39 40 'ForbiddedUserNames' => array('addon', 'admin', 'administrator'), -
trunk/admin/install.php
r602 r603 121 121 'Timezone' => 'Europe/Prague', 122 122 'Advertisement' => '', 123 'Locale' => 'cs', 123 124 ), 124 125 'ForbiddedUserNames' => array('addon', 'admin', 'administrator'), -
trunk/includes/Version.php
r602 r603 6 6 // and system will need database update. 7 7 8 $Revision = 60 2; // Subversion revision8 $Revision = 603; // Subversion revision 9 9 $DatabaseRevision = 600; // Database structure revision 10 10 $ReleaseTime = '2013-11-25'; -
trunk/includes/global.php
r596 r603 10 10 include_once(dirname(__FILE__).'/Version.php'); 11 11 include_once(dirname(__FILE__).'/AppModule.php'); 12 include_once(dirname(__FILE__).'/Locale.php'); 13 $Locale = new Locale(); 14 $Locale->Dir = dirname(__FILE__).'/../locale'; 15 $Locale->Load($Config['Web']['Locale']); 12 16 13 17 // Include application modules -
trunk/includes/system.php
r602 r603 253 253 'Heslo: <td><input type="password" name="LoginPass" size="8" /> '. 254 254 '<input type="submit" value="Přihlásit" /></form> '. 255 '<a href="'.$this->System->Link('/registrace.php').'"> Registrace</a></span>';255 '<a href="'.$this->System->Link('/registrace.php').'">'.T('Registration').'</a></span>'; 256 256 } 257 257 $Output .= '</div>'; … … 303 303 function ShowMainMenu() 304 304 { 305 $Output = '<strong> Nabídka:</strong>'.305 $Output = '<strong>'.T('Menu').':</strong>'. 306 306 '<div class="verticalmenu"><ul>'; 307 307 foreach($this->System->Menu as $MenuItem)
Note:
See TracChangeset
for help on using the changeset viewer.