Changeset 603 for trunk/Modules/Team/Team.php
- Timestamp:
- Nov 26, 2013, 12:22:41 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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 }
Note:
See TracChangeset
for help on using the changeset viewer.