Index: trunk/extensions/Maps/OpenStreetMap/Maps_OSMDispMap.php |
— | — | @@ -123,7 +123,7 @@ |
124 | 124 | $static = new $staticType($this->centre_lat, $this->centre_lon, $this->zoom, $this->width, $this->height, $this->lang, $staticOptions); |
125 | 125 | $rendering_url = $static->getUrl(); |
126 | 126 | |
127 | | - $alt = wfMsg('maps_centred_on') . " $this->centre_lat, $this->centre_lon."; |
| 127 | + $alt = wfMsg( 'maps_centred_on', $this->centre_lat, $this->centre_lon ); |
128 | 128 | |
129 | 129 | if ($this->activatable != 'no') { |
130 | 130 | $title = wfMsg('maps_click_to_activate'); |
Index: trunk/extensions/Maps/Maps.i18n.php |
— | — | @@ -39,7 +39,7 @@ |
40 | 40 | |
41 | 41 | // Static maps |
42 | 42 | 'maps_click_to_activate' => 'Click to activate map', |
43 | | - 'maps_centred_on' => 'Map centred on', |
| 43 | + 'maps_centred_on' => 'Map centered on $1, $2.', |
44 | 44 | |
45 | 45 | // Google Maps overlays |
46 | 46 | 'maps_overlays' => 'Overlays', |