Index: trunk/extensions/GoogleNewsSitemap/GoogleNewsSitemap.i18n.php |
— | — | @@ -14,13 +14,13 @@ |
15 | 15 | */ |
16 | 16 | |
17 | 17 | $messages['en'] = array( |
18 | | - 'gnsm' => 'Google News Sitemap', |
19 | | - 'gnsm-desc' => 'Outputs an Atom/RSS feed as a Google News Sitemap', |
20 | | - 'gnsm_categorymap' => '', # Default empty. List of categories to map to keywords. Do not translate. |
21 | | - 'gnsm_toomanycats' => 'Error: Too many categories!', |
22 | | - 'gnsm_toofewcats' => 'Error: Too few categories!', |
23 | | - 'gnsm_noresults' => 'Error: No results!', |
24 | | - 'gnsm_noincludecats' => 'Error: You need to include at least one category, or specify a namespace!', |
| 18 | + 'gnsm' => 'Google News Sitemap', |
| 19 | + 'gnsm-desc' => 'Outputs an Atom/RSS feed as a Google News Sitemap', |
| 20 | + 'gnsm_categorymap' => '', # Default empty. List of categories to map to keywords. Do not translate. |
| 21 | + 'gnsm_toomanycats' => 'Error: Too many categories!', |
| 22 | + 'gnsm_toofewcats' => 'Error: Too few categories!', |
| 23 | + 'gnsm_noresults' => 'Error: No results!', |
| 24 | + 'gnsm_noincludecats' => 'Error: You need to include at least one category, or specify a namespace!', |
25 | 25 | ); |
26 | 26 | |
27 | 27 | /** Message documentation (Message documentation) |
Index: trunk/extensions/GoogleNewsSitemap/GoogleNewsSitemap.php |
— | — | @@ -1,10 +1,10 @@ |
2 | 2 | <?php |
3 | 3 | if ( !defined( 'MEDIAWIKI' ) ) { |
4 | | - echo <<<EOT |
| 4 | + echo <<<EOT |
5 | 5 | To install GoogleNewsSitemap extension, an extension special page, put the following line in LocalSettings.php: |
6 | 6 | require_once( dirname(__FILE__) . '/extensions/GoogleNewsSitemap/GoogleNewsSitemap.php' ); |
7 | 7 | EOT; |
8 | | - exit( 1 ); |
| 8 | + exit( 1 ); |
9 | 9 | } |
10 | 10 | |
11 | 11 | /** |