Changeset 23075
- Timestamp:
- 12/05/2012 07:03:38 PM (12 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/js/media-views.js
r23072 r23075 3732 3732 this.$el.toggleClass( 'editing', editing ); 3733 3733 3734 this.$('.count').text( collection.length + ' ' + l10n.selected);3734 this.$('.count').text( l10n.selected.replace('%d', collection.length) ); 3735 3735 }, 3736 3736 -
trunk/wp-includes/media.php
r23072 r23075 1462 1462 'select' => __( 'Select' ), 1463 1463 'cancel' => __( 'Cancel' ), 1464 'selected' => __( 'selected' ), 1464 /* translators: This is a would-be plural string used in the media manager. 1465 If there is not a word you can use in your language to avoid issues with the 1466 lack of plural support here, turn it into "selected: %d" then translate it. 1467 */ 1468 'selected' => __( '%d selected' ), 1465 1469 'dragInfo' => __( 'Drag and drop to reorder images.' ), 1466 1470
Note: See TracChangeset
for help on using the changeset viewer.