Changeset 837 for trunk/Modules/User/Registration.php
- Timestamp:
- Dec 27, 2015, 5:47:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/User/Registration.php
r829 r837 19 19 <fieldset><legend>'.T('New user registration').'</legend> 20 20 <table> 21 <tr><td colspan="2"> Pozorně si přečtěte <a href="info.php">pokyny k překladu</a> a řiďte se jimi. Překládat je nutno včetně háčků a čárek!<br/><br/></td></tr>21 <tr><td colspan="2">'.T('Please read carefully <a href="info.php">translation guidelines</a> and follow them. Translate with diacritics!').'<br/><br/></td></tr> 22 22 <tr> 23 <th class="Left"> Jsi člověk?</th>';23 <th class="Left">'.T('Are you human?').'</th>'; 24 24 if($Human) $Checked = ' checked="checked"'; 25 25 else $Checked = ''; … … 27 27 </tr> 28 28 <tr> 29 <th class="Left"> Jméno:</th>29 <th class="Left">'.T('Name:').'</th> 30 30 <td><input type="text" name="user" value="'.$UserName.'"/></td> 31 31 </tr> 32 32 <tr> 33 <th class="Left"> Heslo:</th>33 <th class="Left">'.T('Password:').'</th> 34 34 <td><input type="password" name="pass" /></td> 35 35 </tr> 36 36 <tr> 37 <th class="Left"> Potvrzení Hesla:</th>37 <th class="Left">'.T('Password confirmation:').'</th> 38 38 <td><input type="password" name="pass2" /></td> 39 39 </tr> 40 40 <tr> 41 <th class="Left"> Email:</th>41 <th class="Left">'.T('E-mail:').'</th> 42 42 <td><input type="text" name="Email" value="'.$Email.'"/></td> 43 43 </tr> 44 44 <tr> 45 <th class="Left"> Normálně budu překládat do:</th>45 <th class="Left">'.T('I will translate normally to:').'</th> 46 46 <td>'.WriteLanguages($Language).'</td> 47 47 </tr> 48 48 <tr> 49 <th class="Left"> Patřím do týmu:</th>';49 <th class="Left">'.T('I belong to team:').'</th>'; 50 50 if($Team == '') $Selected = ' selected="selected"'; 51 51 else $Selected = ''; 52 $Output .= '<td><select name="Team"><option value="0"'.$Selected.'> Žádného</option>';52 $Output .= '<td><select name="Team"><option value="0"'.$Selected.'>'.T('none').'</option>'; 53 53 $DbResult = $this->Database->query('SELECT `Name`, `Id` FROM `Team`'); 54 54 while($Line = $DbResult->fetch_assoc()) … … 60 60 $Output .= '</select>'; 61 61 $Output .= '</td></tr>'. 62 '<tr><th class="Left"> Upřednostněná verze klienta:</th><td>'.ClientVersionSelection('').'</td></tr>';62 '<tr><th class="Left">'.T('Preferred client version:').'</th><td>'.ClientVersionSelection('').'</td></tr>'; 63 63 64 64 $Query = 'SELECT * FROM UserTagType'; 65 65 $DbResult = $this->Database->query($Query); 66 66 $Output .= '<tr><th class="Left">'. 67 'Vyberte pravidla, kterými se při překladu chcete řídit:</th><td>';67 T('Select rules which you will apply during translation:').'</th><td>'; 68 68 while ($UserTag = $DbResult->fetch_array()) 69 69 { … … 76 76 77 77 $Output .= '<tr> 78 <th colspan="2" class="Center"><input type="submit" value=" Registrovat" /></th>78 <th colspan="2" class="Center"><input type="submit" value="'.T('Register').'" /></th> 79 79 </tr> 80 80 </table></fieldset></form>';
Note:
See TracChangeset
for help on using the changeset viewer.