Ticket #29065: 29065.diff
| File 29065.diff, 1.9 KB (added by , 11 years ago) |
|---|
-
src/wp-includes/js/media-views.js
5606 5606 order: 'ASC' 5607 5607 }, 5608 5608 priority: 20 5609 }, 5610 5611 unattached: { 5612 text: l10n.unattached, 5613 props: { 5614 uploadedTo: 0, 5615 type: null, 5616 orderby: 'menuOrder', 5617 order: 'ASC' 5618 }, 5619 priority: 20 5609 5620 } 5610 5621 }; 5611 5622 } … … 5656 5667 order: 'ASC' 5657 5668 }, 5658 5669 priority: 20 5670 }, 5671 5672 filters.unattached = { 5673 text: l10n.unattached, 5674 props: { 5675 uploadedTo: 0, 5676 type: null, 5677 orderby: 'menuOrder', 5678 order: 'ASC' 5679 }, 5680 priority: 20 5659 5681 }; 5660 5682 5661 5683 this.filters = filters; … … 5695 5717 order: 'DESC' 5696 5718 }, 5697 5719 priority: 10 5720 }, 5721 5722 filters.unattached = { 5723 text: l10n.unattached, 5724 props: { 5725 uploadedTo: 0, 5726 type: null, 5727 orderby: 'menuOrder', 5728 order: 'ASC' 5729 }, 5730 priority: 20 5698 5731 }; 5699 5732 5700 5733 this.filters = filters; -
src/wp-includes/media.php
2923 2923 'allDates' => __( 'All dates' ), 2924 2924 'noItemsFound' => __( 'No items found.' ), 2925 2925 'insertIntoPost' => $hier ? __( 'Insert into page' ) : __( 'Insert into post' ), 2926 'unattached' => __( 'Unattached' ), 2926 2927 'uploadedToThisPost' => $hier ? __( 'Uploaded to this page' ) : __( 'Uploaded to this post' ), 2927 2928 'warnDelete' => __( "You are about to permanently delete this item.\n 'Cancel' to stop, 'OK' to delete." ), 2928 2929 'warnBulkDelete' => __( "You are about to permanently delete these items.\n 'Cancel' to stop, 'OK' to delete." ),