Changeset 790 for trunk/Modules/Dictionary/Dictionary.php
- Timestamp:
- Feb 10, 2014, 7:11:06 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Dictionary/Dictionary.php
r785 r790 20 20 'Name' => 'Dictionary', 21 21 'Title' => T('Dictionary'), 22 'Hint' => 'Slovník WoW výrazů',22 'Hint' => T('Dictionary words from WoW'), 23 23 'Link' => $this->System->Link('/dictionary/'), 24 24 'Permission' => LICENCE_ANONYMOUS, … … 38 38 { 39 39 $Output = ''; 40 if ($mode == 0) $Output .= '.. Nalezené názvy jmen věcí, míst, postav';41 if ($mode == 1) $Output .= '.. Všechny přeložené';42 if ($mode == 2) $Output .= '.. Nepřeložené';40 if ($mode == 0) $Output .= '..'.T('Found names of items, places and NPC'); 41 if ($mode == 1) $Output .= '..'.T('All untranslated'); 42 if ($mode == 2) $Output .= '..'.T('Untranslated'); 43 43 $Output .= '<table class="BaseTable">'; 44 $Output .= '<tr><th> Originál</th>'.'<th>Překlad</th></tr>';44 $Output .= '<tr><th>'.T('Original').'</th>'.'<th>'.T('Translation').'</th></tr>'; 45 45 46 46 $TablesColumn = array … … 93 93 '<table><tr><td>'. 94 94 'Původní anglické slovo:</td><td><input type="text" name="Original" /></td></tr>'. 95 '<tr><td> Přeložené:</td><td><input type="text" name="Translated" /></td></tr>'.96 '<tr><td> Jazyk:</td><td>'.WriteLanguages($_SESSION['language']).'</td></tr>'.97 '<tr><td> Volitelný popis:</td><td><input type="text" name="Description" /></td></tr>'.98 '<tr><td colspan="2"><input type="submit" value=" Uložit" /></td></tr>'.95 '<tr><td>'.T('Translated').':</td><td><input type="text" name="Translated" /></td></tr>'. 96 '<tr><td>'.T('Language').':</td><td>'.WriteLanguages($_SESSION['language']).'</td></tr>'. 97 '<tr><td>'.T('Selectable description').':</td><td><input type="text" name="Description" /></td></tr>'. 98 '<tr><td colspan="2"><input type="submit" value="'.T('Save').'" /></td></tr>'. 99 99 '</td></tr></table>'. 100 100 '</fieldset>'. … … 138 138 $_POST['Description'].'", '.$this->System->User->Id.', '.$_POST['Language'].')'); 139 139 $Output = ShowMessage('Záznam byl uložen!'); 140 } else $Output = ShowMessage( 'Nebyly zaslány všechny položky formuláře.', MESSAGE_CRITICAL);140 } else $Output = ShowMessage(T('You have to fill all column of form.'), MESSAGE_CRITICAL); 141 141 } else $Output = ShowMessage(T('Access denied'), MESSAGE_CRITICAL); 142 142 return($Output); … … 170 170 'Původní anglické slovo:</td><td><input type="text" name="Original" value="'.$DbRow2['Text'].'" /></td></tr>'. 171 171 '<tr><td>Přeložené:</td><td><input type="text" name="Translated" value="'.$DbRow['Text'].'" /></td></tr>'. 172 '<tr><td> Jazyk:</td><td>'.WriteLanguages($DbRow['Language']).'</td></tr>'.173 '<tr><td> Popis:</td><td><input type="text" name="Description" value="'.$DbRow['Description'].'" /></td></tr>'.174 '<tr><td colspan="2"><input type="submit" value=" Uložit" /></td></tr>'.172 '<tr><td>'.T('Language').':</td><td>'.WriteLanguages($DbRow['Language']).'</td></tr>'. 173 '<tr><td>'.T('Description').':</td><td><input type="text" name="Description" value="'.$DbRow['Description'].'" /></td></tr>'. 174 '<tr><td colspan="2"><input type="submit" value="'.T('Save').'" /></td></tr>'. 175 175 '</td></tr></table>'. 176 176 '</fieldset>'. … … 194 194 { 195 195 $TextID = $_GET['ID']; 196 $Output .= 'Přeložené názvy vztahující se k překladu: <a target="_NEW" href="'.$this->System->Link('/form.php?group='.$GroupId.'&ID='.$TextID).'">'.$TextID.'</a><br />'.197 '<a href="?action=group&mode=1&group='.$GroupId.'&ID='.$TextID.'" title=" Zobrazit všechny podobné výsledky">Všechny</a> '.198 '<a href="?action=group&mode=0&group='.$GroupId.'&ID='.$TextID.'" title=" Zobrazit pouze přesné výsledky">Přesné</a> '.199 '<a href="?action=group&mode=2&group='.$GroupId.'&ID='.$TextID.'" title=" Zobrazit všechny nepřeložené">Nepřeložené</a> ';196 $Output .= T('Translated names related to translation text').': <a target="_NEW" href="'.$this->System->Link('/form.php?group='.$GroupId.'&ID='.$TextID).'">'.$TextID.'</a><br />'. 197 '<a href="?action=group&mode=1&group='.$GroupId.'&ID='.$TextID.'" title="'.T('Show all similar results').'">'.T('All').'</a> '. 198 '<a href="?action=group&mode=0&group='.$GroupId.'&ID='.$TextID.'" title="'.T('Show all exact results').'">'.T('Exact').'</a> '. 199 '<a href="?action=group&mode=2&group='.$GroupId.'&ID='.$TextID.'" title="'.T('Show all untranslated').'">'.T('Untranslated').'</a> '; 200 200 $DbResult = $this->Database->query('SELECT * FROM '.$Table.' WHERE ID = '.$TextID); 201 201 $Line = $DbResult->fetch_assoc(); 202 if(!$Line) $Output .= ShowMessage( 'Překlad nenalezen.', MESSAGE_CRITICAL);202 if(!$Line) $Output .= ShowMessage(T('Translation not found'), MESSAGE_CRITICAL); 203 203 else 204 204 {
Note:
See TracChangeset
for help on using the changeset viewer.