Changeset 847 for trunk/Modules/Translation/Form.php
- Timestamp:
- Jan 15, 2016, 10:41:25 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Translation/Form.php
r844 r847 102 102 103 103 $Output .= T('Original text').': <strong>'. 104 ' ID <a href=" form.php?group='.$GroupId.'&ID='.$Line['Take'].'">'.$Line['Take'].'</a></strong>'.105 ' ('. $Lang['Name'].')'.104 ' ID <a href="'.$this->System->Link('/form.php?group='.$GroupId.'&ID='.$Line['Take']).'">'.$Line['Take'].'</a></strong>'. 105 ' ('.T($Lang['Name']).')'. 106 106 ' <br />'; 107 107 } … … 124 124 if($Version > 0) 125 125 { 126 $Output .= '<form action="comparison.php" method="get"><a href=" TranslationList.php?group='.127 $GroupId.'&user=0&state=2&entry='.$Line['Entry'].'&text= ">'.T('Number of versions').': <strong>'.$Version.'</strong></a>126 $Output .= '<form action="comparison.php" method="get"><a href="'.$this->System->Link('/TranslationList.php?group='. 127 $GroupId.'&user=0&state=2&entry='.$Line['Entry'].'&text=').'">'.T('Number of versions').': <strong>'.$Version.'</strong></a> 128 128 <input type="hidden" name="group" value="'.$GroupId.'" /> 129 129 <input type="hidden" name="entry" value="'.$Line['Entry'].'" /> … … 152 152 } else 153 153 { 154 $Output .= '<a href=" TranslationList.php?group='.$GroupId.'&user=0&state=2&entry='.155 $Line['Entry'].'&text= ">'.T('Number of versions').': <strong>'.$Version.'</strong></a>';154 $Output .= '<a href="'.$this->System->Link('/TranslationList.php?group='.$GroupId.'&user=0&state=2&entry='. 155 $Line['Entry'].'&text=').'">'.T('Number of versions').': <strong>'.$Version.'</strong></a>'; 156 156 } 157 157 … … 200 200 { 201 201 $Language = $DbResult3->fetch_assoc(); 202 $Output .= $Language['Name'];202 $Output .= T($Language['Name']); 203 203 } 204 204 }
Note:
See TracChangeset
for help on using the changeset viewer.