Changeset 7012 for sites/trunk/wp15.wordpress.net/public_html/content/plugins/wp15-meetup-events/wp15-meetup-events.php
- Timestamp:
- 04/03/2018 08:46:49 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wp15.wordpress.net/public_html/content/plugins/wp15-meetup-events/wp15-meetup-events.php
r7011 r7012 203 203 'wp15-meetup-events', 204 204 plugins_url( 'wp15-meetup-events.js', __FILE__ ), 205 array( 'jquery', 'underscore', ' google-maps', 'marker-clusterer' ),205 array( 'jquery', 'underscore', 'wp-a11y', 'google-maps', 'marker-clusterer' ), 206 206 filemtime( __DIR__ . '/wp15-meetup-events.js' ), 207 207 true … … 212 212 'wp15MeetupEventsData', 213 213 array( 214 'strings' => get_js_strings(), 214 215 'map_options' => get_map_options(), 215 216 'events' => get_formatted_events(), … … 218 219 } 219 220 221 /** 222 * Internationalize strings that will be displayed via JavaScript. 223 * 224 * @return array 225 */ 226 function get_js_strings() { 227 return array( 228 'search_cleared' => __( 'Search cleared, showing all events.', 'wp15' ), 229 'search_match' => __( 'Showing events that match %s.', 'wp15' ), 230 ); 231 } 220 232 221 233 /**
Note: See TracChangeset
for help on using the changeset viewer.