Ticket #11651: 11651.remove-periods.diff
File 11651.remove-periods.diff, 2.3 KB (added by , 12 years ago) |
---|
-
wp-admin/includes/dashboard.php
1288 1288 <ul> 1289 1289 <li> 1290 1290 <?php echo sprintf( 1291 __( '<a href="%s">Fill in your profile</a> .' ),1291 __( '<a href="%s">Fill in your profile</a>' ), 1292 1292 esc_url( admin_url('profile.php') ) 1293 1293 ); ?> 1294 1294 </li> 1295 1295 <li> 1296 1296 <?php echo sprintf( 1297 __( '<a href="%s">Choose comment settings</a> .' ),1297 __( '<a href="%s">Choose comment settings</a>' ), 1298 1298 esc_url( admin_url('options-discussion.php') ) 1299 1299 ); ?> 1300 1300 </li> 1301 1301 <li> 1302 1302 <?php echo sprintf( 1303 __( '<a href="%s">Set your time zone</a> .' ),1303 __( '<a href="%s">Set your time zone</a>' ), 1304 1304 esc_url( admin_url('options-general.php') ) 1305 1305 ); ?> 1306 1306 </li> … … 1310 1310 <ul> 1311 1311 <li> 1312 1312 <?php echo sprintf( 1313 __( '<a href="%s">Edit your site tagline</a> .' ),1313 __( '<a href="%s">Edit your site tagline</a>' ), 1314 1314 esc_url( admin_url('options-general.php') ) 1315 1315 ); ?> 1316 1316 </li> 1317 1317 <li> 1318 1318 <?php echo sprintf( 1319 __( '<a href="%s">Choose a theme</a> .' ),1319 __( '<a href="%s">Choose a theme</a>' ), 1320 1320 esc_url( admin_url('themes.php') ) 1321 1321 ); ?> 1322 1322 </li> 1323 1323 <li> 1324 1324 <?php echo sprintf( 1325 __( '<a href="%s">Add some widgets</a> .' ),1325 __( '<a href="%s">Add some widgets</a>' ), 1326 1326 esc_url( admin_url('widgets.php') ) 1327 1327 ); ?> 1328 1328 </li> … … 1332 1332 <ul> 1333 1333 <li> 1334 1334 <?php echo sprintf( 1335 __( 'Delete the default <a href="%1$s">post</a> and <a href="%2$s">comment</a> .' ),1335 __( 'Delete the default <a href="%1$s">post</a> and <a href="%2$s">comment</a>' ), 1336 1336 esc_url( admin_url('edit.php') ), 1337 1337 esc_url( admin_url('edit-comments.php') ) 1338 1338 ); ?> 1339 1339 </li> 1340 1340 <li> 1341 1341 <?php echo sprintf( 1342 __( '<a href="%s">Create your first post</a> .' ),1342 __( '<a href="%s">Create your first post</a>' ), 1343 1343 esc_url( admin_url('post-new.php') ) 1344 1344 ); ?> 1345 1345 </li> 1346 1346 <li> 1347 1347 <?php echo sprintf( 1348 __( '<a href="%s">Edit the sample page</a> to be about you .' ),1348 __( '<a href="%s">Edit the sample page</a> to be about you' ), 1349 1349 esc_url( admin_url('edit.php?post_type=page') ) 1350 1350 ); ?> 1351 1351 </li>