Ticket #40865: 40865.diff
File 40865.diff, 2.4 KB (added by , 7 years ago) |
---|
-
wp-admin/includes/dashboard.php
1169 1169 <label for="community-events-location"> 1170 1170 <?php _e( 'City:' ); ?> 1171 1171 </label> 1172 <?php /* translators: Replace with the name of a city in your locale that shows events. Use only the city name itself, without any region or country. Use the endonym instead of the English name. */ ?>1173 <input id="community-events-location" class="regular-text" type="text" name="community-events-location" placeholder="<?php e sc_attr_e( 'Cincinnati' ); ?>" />1172 <?php /* translators: Replace with the name of a city related to your locale that shows events (test that it matches the expected location before including it). Use only the city name itself, without any region or country. Use the endonym (native locale name) instead of the English name if possible. */ ?> 1173 <input id="community-events-location" class="regular-text" type="text" name="community-events-location" placeholder="<?php echo esc_attr_x( 'Cincinnati', 'community events location input field placeholder' ); ?>" /> 1174 1174 1175 1175 <?php submit_button( __( 'Submit' ), 'secondary', 'community-events-submit', false ); ?> 1176 1176 -
wp-includes/script-loader.php
1046 1046 * It would be too cumbersome to include that in the instructions 1047 1047 * to the user, so it's left as an implication. 1048 1048 */ 1049 /* translators: %s is the name of the city we couldn't locate. Replace the examples with cities inyour locale, but test that they match the expected location before including them. Use endonyms (native locale names) whenever possible. */1049 /* translators: %s is the name of the city we couldn't locate. Replace the examples with cities related to your locale, but test that they match the expected location before including them. Use endonyms (native locale names) whenever possible. */ 1050 1050 'could_not_locate_city' => __( 'We couldn’t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.' ), 1051 1051 1052 1052 // This one is only used with wp.a11y.speak(), so it can/should be more brief.