WordPress.org

Make WordPress Core

Ticket #22603: 22603.diff

File 22603.diff, 1.2 KB (added by nacin, 7 months ago)
  • wp-includes/js/media-views.js

     
    14661466                                        priority: 60 
    14671467                                }), 
    14681468                                embed: { 
    1469                                         text: l10n.embedFromUrlTitle, 
     1469                                        text: l10n.fromUrlTitle, 
    14701470                                        priority: 80 
    14711471                                } 
    14721472                        }); 
     
    20762076                        var controller = this.options.controller; 
    20772077 
    20782078                        _.defaults( this.options, { 
    2079                                 text: l10n.insertEmbed 
     2079                                text: l10n.insertIntoPost 
    20802080                        }); 
    20812081 
    20822082                        media.view.Toolbar.Select.prototype.initialize.apply( this, arguments ); 
  • wp-includes/media.php

     
    14531453                'insertIntoPost'     => $hier ? __( 'Insert into page' ) : __( 'Insert into post' ), 
    14541454                'uploadedToThisPost' => $hier ? __( 'Uploaded to this page' ) : __( 'Uploaded to this post' ), 
    14551455 
    1456                 // Embed 
    1457                 'embedFromUrlTitle' => __( 'Embed From URL' ), 
    1458                 'insertEmbed'       => __( 'Insert embed' ), 
     1456                // From URL 
     1457                'fromUrlTitle'       => __( 'From URL' ), 
    14591458 
    14601459                // Gallery 
    14611460                'createGalleryTitle' => __( 'Create Gallery' ),