Index: trunk/extensions/SoundManager2Button/SoundManager2Button.i18n.php |
— | — | @@ -11,11 +11,12 @@ |
12 | 12 | |
13 | 13 | $messages['en'] = array( |
14 | 14 | 'soundmanager2button-desc' => 'Embeds a SoundManager 2 MP3 player into a wiki page', |
15 | | - 'play' => 'Play.', |
| 15 | + 'play' => 'Play', |
16 | 16 | ); |
17 | 17 | |
18 | 18 | # Message documentation (Message documentation) |
19 | 19 | $messages['qqq'] = array( |
20 | 20 | 'soundmanager2button-desc' => '{{desc}}', |
21 | | - 'play' => 'Play button text, primarily for screenreaders.', |
| 21 | + 'soundmanager2button-play' => 'Play button text, primarily for screenreaders.', |
22 | 22 | ); |
| 23 | + |
Index: trunk/extensions/SoundManager2Button/SoundManager2Button.php |
— | — | @@ -99,7 +99,7 @@ |
100 | 100 | $output = ''; |
101 | 101 | if( $file ) { |
102 | 102 | $url = $file->getFullURL(); |
103 | | - $output='<a href="'.$url.'" title="'.wfMsgForContent('play').'" class="sm2_button">'.wfMsgForContent('play').'</a>'; |
| 103 | + $output='<a href="'.$url.'" title="'.wfMsgForContent('soundmanager2button-play').'" class="sm2_button">'.wfMsgForContent('soundmanager2button-play').'</a>'; |
104 | 104 | } |
105 | 105 | |
106 | 106 | return $output; |