Index: trunk/extensions/Translate/SpecialTranslationStats.php |
— | — | @@ -243,8 +243,8 @@ |
244 | 244 | |
245 | 245 | return |
246 | 246 | '<tr><td>' . $this->eLabel( $name ) . '</td><td>' . |
| 247 | + $select->getHtmlAndPrepareJs() . '<br />' . |
247 | 248 | Xml::input( $name, 20, $value, array( 'id' => $name ) ) . |
248 | | - $select->getHtmlAndPrepareJs() . |
249 | 249 | '</td></tr>' . "\n"; |
250 | 250 | } |
251 | 251 | |
— | — | @@ -289,8 +289,8 @@ |
290 | 290 | |
291 | 291 | return |
292 | 292 | '<tr><td>' . $this->eLabel( $name ) . '</td><td>' . |
| 293 | + $select->getHtmlAndPrepareJs() . '<br />' . |
293 | 294 | Xml::input( $name, 20, $value, array( 'id' => $name ) ) . |
294 | | - $select->getHtmlAndPrepareJs() . |
295 | 295 | '</td></tr>' . "\n"; |
296 | 296 | } |
297 | 297 | |
Index: trunk/extensions/Translate/utils/JsSelectToInput.php |
— | — | @@ -82,8 +82,8 @@ |
83 | 83 | } |
84 | 84 | |
85 | 85 | self::injectJs(); |
86 | | - $html = $this->getButton( $this->msg, $this->sourceId, $this->targetId ); |
87 | | - $html .= $this->select->getHtml(); |
| 86 | + $html = $this->select->getHtml(); |
| 87 | + $html .= $this->getButton( $this->msg, $this->sourceId, $this->targetId ); |
88 | 88 | |
89 | 89 | return $html; |
90 | 90 | } |
Index: trunk/extensions/Translate/utils/HTMLJsSelectToInputField.php |
— | — | @@ -15,7 +15,7 @@ |
16 | 16 | $input = parent::getInputHTML( $value ); |
17 | 17 | |
18 | 18 | if ( isset( $this->mParams['select'] ) ) { |
19 | | - $input .= ' ' . $this->mParams['select']->getHtmlAndPrepareJs(); |
| 19 | + $input = $this->mParams['select']->getHtmlAndPrepareJs() . '<br />' . $input; |
20 | 20 | } |
21 | 21 | |
22 | 22 | return $input; |