Index: trunk/extensions/SemanticWatchlist/SemanticWatchlist.i18n.alias.php |
— | — | @@ -0,0 +1,21 @@ |
| 2 | +<?php |
| 3 | + |
| 4 | +/** |
| 5 | + * Aliases for the special pages of the Semantic Watchlist extension. |
| 6 | + * |
| 7 | + * @file SemanticWatchlist.i18n.alias.php |
| 8 | + * @ingroup SemanticWatchlist |
| 9 | + * |
| 10 | + * @licence GNU GPL v3+ |
| 11 | + * @author Jeroen De Dauw < jeroendedauw@gmail.com > |
| 12 | + */ |
| 13 | + |
| 14 | +$specialPageAliases = array(); |
| 15 | + |
| 16 | +/** English |
| 17 | + * @author Jeroen De Dauw |
| 18 | + */ |
| 19 | +$specialPageAliases['en'] = array( |
| 20 | + 'SemanticWatchlist' => array( 'SemanticWatchlist' ), |
| 21 | + 'WatchlistConditions' => array( 'WatchlistConditions' ), |
| 22 | +); |
Property changes on: trunk/extensions/SemanticWatchlist/SemanticWatchlist.i18n.alias.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 23 | + native |
Index: trunk/extensions/SemanticWatchlist/SemanticWatchlist.i18n.php |
— | — | @@ -23,8 +23,8 @@ |
24 | 24 | 'right-semanticwatch' => 'Use semantic watchlist', |
25 | 25 | 'right-semanticwatchgroups' => '[[Special:WatchlistConditions|Modify]] the semantic watchlist groups', |
26 | 26 | |
27 | | - 'special-semanticwatchlist' => 'Semantic watchlist page listing changes to watched properties.', |
28 | | - 'special-watchlistconditions' => 'Interface to modify the semantic watchlist groups.', |
| 27 | + 'special-semanticwatchlist' => 'Semantic Watchlist', |
| 28 | + 'special-watchlistconditions' => 'Semantic watchlist conditions', |
29 | 29 | ); |
30 | 30 | |
31 | 31 | /** Message documentation (Message documentation) |
Index: trunk/extensions/SemanticWatchlist/SemanticWatchlist.php |
— | — | @@ -53,6 +53,7 @@ |
54 | 54 | $egSWLScriptPath = $wgExtensionAssetsPath === false ? $wgScriptPath . '/extensions/SemanticWatchlist' : $wgExtensionAssetsPath . '/SemanticWatchlist'; |
55 | 55 | |
56 | 56 | $wgExtensionMessagesFiles['SemanticWatchlist'] = dirname( __FILE__ ) . '/SemanticWatchlist.i18n.php'; |
| 57 | +$wgExtensionAliasesFiles['SemanticWatchlist'] = dirname( __FILE__ ) . '/SemanticWatchlist.i18n.alias.php'; |
57 | 58 | |
58 | 59 | $wgAutoloadClasses['SWLHooks'] = dirname( __FILE__ ) . '/SemanticWatchlist.hooks.php'; |
59 | 60 | |
— | — | @@ -63,10 +64,10 @@ |
64 | 65 | $wgAutoloadClasses['SpecialWatchlistConditions'] = dirname( __FILE__ ) . '/specials/SpecialWatchlistConditions.php'; |
65 | 66 | |
66 | 67 | $wgSpecialPages['SemanticWatchlist'] = 'SpecialSemanticWatchlist'; |
67 | | -$wgSpecialPageGroups['SemanticWatchlist'] = 'pagetools'; // TODO |
| 68 | +$wgSpecialPageGroups['SemanticWatchlist'] = 'changes'; |
68 | 69 | |
69 | 70 | $wgSpecialPages['WatchlistConditions'] = 'SpecialWatchlistConditions'; |
70 | | -$wgSpecialPageGroups['WatchlistConditions'] = 'pagetools'; // TODO |
| 71 | +$wgSpecialPageGroups['WatchlistConditions'] = 'changes'; |
71 | 72 | |
72 | 73 | $wgAPIModules['semanticwatchlist'] = 'ApiSemanticWatchlist'; |
73 | 74 | $wgAPIListModules['semanticwatchlist'] = 'ApiQuerySemanticWatchlist'; |