diff --git a/src/wp-admin/css/dashboard.css b/src/wp-admin/css/dashboard.css
index e341c61bbc..7a0c3a4219 100644
a
|
b
|
|
348 | 348 | border-left: 4px solid #00a0d2; |
349 | 349 | } |
350 | 350 | |
| 351 | #dashboard-widgets .community-events li.event-none a { |
| 352 | text-decoration: underline; |
| 353 | } |
| 354 | |
351 | 355 | .community-events-form label { |
352 | 356 | display: inline-block; |
353 | 357 | vertical-align: top; |
diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php
index 7435ec7988..28859aae0b 100644
a
|
b
|
function wp_print_community_events_templates() { |
1391 | 1391 | <?php |
1392 | 1392 | printf( |
1393 | 1393 | /* translators: 1: The city the user searched for, 2: Meetup organization documentation URL. */ |
1394 | | __( 'There aren’t any events scheduled near %1$s at the moment. Would you like to <a href="%2$s">organize one</a>?' ), |
| 1394 | __( 'There aren’t any events scheduled near %1$s at the moment. Would you like to <a href="%2$s">organize a WordPress event</a>?' ), |
1395 | 1395 | '{{ data.location.description }}', |
1396 | 1396 | __( 'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/' ) |
1397 | 1397 | ); |
… |
… |
function wp_print_community_events_templates() { |
1401 | 1401 | <?php |
1402 | 1402 | printf( |
1403 | 1403 | /* translators: %s: Meetup organization documentation URL. */ |
1404 | | __( 'There aren’t any events scheduled near you at the moment. Would you like to <a href="%s">organize one</a>?' ), |
| 1404 | __( 'There aren’t any events scheduled near you at the moment. Would you like to <a href="%s">organize a WordPress event</a>?' ), |
1405 | 1405 | __( 'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/' ) |
1406 | 1406 | ); |
1407 | 1407 | ?> |