Index: trunk/phase3/includes/SpecialUpload.php |
— | — | @@ -530,7 +530,7 @@ |
531 | 531 | $sourcefilename = wfMsgHtml( 'sourcefilename' ); |
532 | 532 | $destfilename = wfMsgHtml( 'destfilename' ); |
533 | 533 | |
534 | | - $fd = wfMsgHtml( 'filedesc' ); |
| 534 | + $summary = wfMsgWikiHtml( 'fileuploadsummary' ); |
535 | 535 | $ulb = wfMsgHtml( 'uploadbtn' ); |
536 | 536 | |
537 | 537 | |
— | — | @@ -565,7 +565,7 @@ |
566 | 566 | <input tabindex='1' type='text' name='wpDestFile' id='wpDestFile' size='40' value=\"$encDestFile\" /> |
567 | 567 | </td></tr><tr> |
568 | 568 | |
569 | | - <td align='right'>{$fd}:</td><td align='left'> |
| 569 | + <td align='right'>{$summary}</td><td align='left'> |
570 | 570 | <textarea tabindex='2' name='wpUploadDescription' rows='6' cols='{$cols}'{$ew}>" |
571 | 571 | . htmlspecialchars( $this->mUploadDescription ) . |
572 | 572 | "</textarea> |
Index: trunk/phase3/languages/Language.php |
— | — | @@ -1012,6 +1012,7 @@ |
1013 | 1013 | 'uploadlogpagetext' => 'Below is a list of the most recent file uploads.', |
1014 | 1014 | 'filename' => 'Filename', |
1015 | 1015 | 'filedesc' => 'Summary', |
| 1016 | +'fileuploadsummary' => 'Summary:', |
1016 | 1017 | 'filestatus' => 'Copyright status', |
1017 | 1018 | 'filesource' => 'Source', |
1018 | 1019 | 'copyrightpage' => "Project:Copyrights", |