Index: trunk/extensions/SemanticDrilldown/specials/SD_BrowseData.php |
— | — | @@ -680,7 +680,8 @@ |
681 | 681 | wfMsgForContent( 'february' ), |
682 | 682 | wfMsgForContent( 'march' ), |
683 | 683 | wfMsgForContent( 'april' ), |
684 | | - wfMsgForContent( 'may' ), |
| 684 | + // Needed to avoid using 3-letter abbreviation |
| 685 | + wfMsgForContent( 'may_long' ), |
685 | 686 | wfMsgForContent( 'june' ), |
686 | 687 | wfMsgForContent( 'july' ), |
687 | 688 | wfMsgForContent( 'august' ), |
Index: trunk/extensions/SemanticDrilldown/includes/SD_Utils.php |
— | — | @@ -202,7 +202,8 @@ |
203 | 203 | } elseif ( $month == 4 ) { |
204 | 204 | return wfMsg( 'april' ); |
205 | 205 | } elseif ( $month == 5 ) { |
206 | | - return wfMsg( 'may' ); |
| 206 | + // Needed to avoid using 3-letter abbreviation |
| 207 | + return wfMsg( 'may_long' ); |
207 | 208 | } elseif ( $month == 6 ) { |
208 | 209 | return wfMsg( 'june' ); |
209 | 210 | } elseif ( $month == 7 ) { |
— | — | @@ -229,7 +230,7 @@ |
230 | 231 | return 3; |
231 | 232 | } elseif ( $str == wfMsg( 'april' ) ) { |
232 | 233 | return 4; |
233 | | - } elseif ( $str == wfMsg( 'may' ) ) { |
| 234 | + } elseif ( $str == wfMsg( 'may_long' ) ) { |
234 | 235 | return 5; |
235 | 236 | } elseif ( $str == wfMsg( 'june' ) ) { |
236 | 237 | return 6; |