Index: trunk/extensions/ShortUrl/ShortUrl.i18n.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | $messages['en'] = array( |
19 | 19 | 'shorturl' => 'Short Url', |
20 | 20 | 'shorturl-desc' => '[[Special:ShortUrl|Short Url for redirects]]', |
21 | | - 'shorturl-not-found' => 'Sorry, the URL you are looking for is not found (No article with ID $1 exists)', |
| 21 | + 'shorturl-not-found' => 'Sorry, the URL you are looking for is not found (No Short URL with ID $1 exists)', |
22 | 22 | 'shorturl-toolbox-title' => 'Copy this short link for sharing', |
23 | 23 | 'shorturl-toolbox-text' => 'Short URL' |
24 | 24 | ); |
Index: trunk/extensions/ShortUrl/SpecialShortUrl.php |
— | — | @@ -44,7 +44,7 @@ |
45 | 45 | return; |
46 | 46 | } |
47 | 47 | // Wrong ID |
48 | | - $notfound = Html::element( 'p', array(), wfMsg ( 'shorturl-not-found', $id ) ); |
| 48 | + $notfound = Html::element( 'p', array(), wfMsg ( 'shorturl-not-found', $par ) ); |
49 | 49 | $wgOut->addHTML( $notfound ); |
50 | 50 | } |
51 | 51 | } |