Index: branches/wmf/1.18wmf1/languages/messages/MessagesStq.php |
— | — | @@ -36,6 +36,11 @@ |
37 | 37 | NS_CATEGORY_TALK => 'Kategorie_Diskussion', |
38 | 38 | ); |
39 | 39 | |
| 40 | +$namespaceGenderAliases = array( |
| 41 | + NS_USER => array( 'male' => 'Benutser', 'female' => 'Benutserske' ), |
| 42 | + NS_USER_TALK => array( 'male' => 'Benutser_Diskussion', 'female' => 'Benutserske_Diskussion' ), |
| 43 | +); |
| 44 | + |
40 | 45 | $messages = array( |
41 | 46 | # User preference toggles |
42 | 47 | 'tog-underline' => 'Ferwiese unnerstriekje:', |
Index: branches/wmf/1.18wmf1/extensions/AbuseFilter/AbuseFilter.i18n.php |
— | — | @@ -176,7 +176,7 @@ |
177 | 177 | [[Special:AbuseFilter/history/$2|Return to this filter's history]].", |
178 | 178 | 'abusefilter-edit-status-label' => 'Statistics:', |
179 | 179 | 'abusefilter-edit-status' => 'Of the last $1 {{PLURAL:$1|action|actions}}, this filter has matched $2 ($3%). |
180 | | -On average, its run time is $4ms, and it consumes $5 {{PLURAL:$5|condition|conditions}} of the condition limit.', |
| 180 | +On average, its run time is $4 ms, and it consumes $5 {{PLURAL:$5|condition|conditions}} of the condition limit.', |
181 | 181 | 'abusefilter-edit-throttled' => "'''Warning''': This filter was automatically disabled as a safety measure. |
182 | 182 | It reached the limit of matching more than $1% of actions.", |
183 | 183 | 'abusefilter-edit-new' => 'New filter', |
Index: branches/wmf/1.18wmf1/extensions/Narayam/Narayam.hooks.php |
— | — | @@ -48,6 +48,7 @@ |
49 | 49 | |
50 | 50 | $vars['wgNarayamAvailableSchemes'] = self::getSchemes(); // Note: scheme names must be keys, not values |
51 | 51 | |
| 52 | + $vars['wgNarayamHelpPage'] = wfMsgForContent( 'narayam-help-page' ); |
52 | 53 | return true; |
53 | 54 | } |
54 | 55 | |
Index: branches/wmf/1.18wmf1/extensions/Narayam/js/ext.narayam.core.js |
— | — | @@ -501,7 +501,7 @@ |
502 | 502 | .prepend( $checkbox ) |
503 | 503 | .attr( 'title', mw.msg( 'narayam-checkbox-tooltip' ) ); |
504 | 504 | |
505 | | - var helppage = mw.msg( 'narayam-help-page' ); |
| 505 | + var helppage = mw.config.get( 'wgNarayamHelpPage' ); |
506 | 506 | if ( helppage ) { |
507 | 507 | $narayamMenuItems.append( $( '<li class="narayam-help-link" />') |
508 | 508 | .append( |
— | — | @@ -509,7 +509,7 @@ |
510 | 510 | .text( mw.msg( 'narayam-help' ) ) |
511 | 511 | .attr( |
512 | 512 | 'href', |
513 | | - mw.util.wikiGetlink( mw.msg( 'narayam-help-page' ) ) |
| 513 | + mw.util.wikiGetlink( helppage ) |
514 | 514 | ) |
515 | 515 | ) |
516 | 516 | ); |
Index: branches/wmf/1.18wmf1/extensions/Narayam/Narayam.php |
— | — | @@ -141,7 +141,6 @@ |
142 | 142 | 'narayam-menu', |
143 | 143 | 'narayam-menu-tooltip', |
144 | 144 | 'narayam-help', |
145 | | - 'narayam-help-page', |
146 | 145 | 'narayam-toggle-ime', |
147 | 146 | ), |
148 | 147 | 'dependencies' => array( 'mediawiki.util', 'jquery.textSelection' ), |