I think, this is not so easy possible, on the media-page in Admin-area is it not possible to check the post_type of your CPT. Normaly you can change strings with the follow small source, an example.
if ( is_admin() )
add_filter( 'gettext', array( 'fb_string_translate', 'gettext_filter' ), 10, 1 );
class fb_string_translate {
static function gettext_filter( $str ) {
$from_to = array();
$post_type = get_post_type();
if ( 'my_post_type' === $post_type )
$from_to = array( 'Insert into Post' => 'Insert into Test' );
return strtr($str, $from_to);
}
}
But it is important, that you check, on wich page is the author in admin and on the iframe of the media page it is not possible to read the post_type; maybe you find this var and then it is possible with the example source.
Related Posts:
- Submit post and upload image from front-end
- How to disable generation of default image sizes for some custom post types?
- How can I bulk upload images and automatically create posts for each one at the same time?
- Use a separate upload folder for custom post attachment upload
- Handling front-end file uploads, considering safety and ease of use
- Hide “Add media”, HTML editor from TinyMCE
- Creating a metabox to upload multiple images, Ignoring The Featured Image
- Set custom upload path for custom post type only?
- How to hide CPT files from media library programmatically
- Add metabox with media uploader in a custom post type [duplicate]
- Remove tabs from media uploader for a CPT
- Removing Image Sizes for Custom Post Type
- How to Removing fields from the Media Uploader/Gallery on a Custom Post Type Edit Page
- Image size filtering in Media uploader according to custom post type
- Change upload_dir folder at a certain cpt but cant change back
- Limit upload by file type only for certain custom post type
- wp is not defined error using wp.media to create a custom image uploader
- Upload Image from Front End and Resize
- MP3 Manager for WordPress
- How to rename image at uploading on specific plugin or post-type in WordPress
- Cannot attach media when capabilities added to custom post type
- window.send_to_editor and jQuery .attr() conflicts with multiple custom upload image meta boxes
- Remove fields on media uploader for custom page type – not working for “From Computer” or “From Url” tabs?
- Duplicate Custom Header Functionality into the post edit screen
- Force documents to appear in Featured Image dialogue
- how to get URL of media uploaded to WordPress via media_handle_sideload()
- Display users uploaded files as posts
- Get image post ID in media upload
- WordPress 3.5 Media Uploader – Only allow 1 upload and certain file types
- Add a button or image button that calls wp functions in the wp-admin
- How to Create an Image Upload Box for Custom Posts?
- How to get the upcoming post ID from front end?
- Custom Post Type Video – Online/Offline
- How to update post meta on uploaded image from a custom form?
- frontend image post uploader
- Checking if $_FILE isset for an array of file upload metaboxes
- How to: wordpress job listing and candidates details
- How to add multiple images to a custom post type without plugin [closed]
- Why won’t this jQuery code work?
- Create a custom post type for a photo post
- File sharing platform for user contributions? [closed]
- Cannot upload featured image to a custom post type
- Invalid file type when using wp_upload_bits to upload PDF to a custom post type
- Insert into post button missing on custom post type
- Why this didn’t work if i use get_the_ID(), but works if i pass the numeric id
- Make it impossible to save a custom post type with both video and image selected?
- Multi Photo Upload with Caption on Front End for Custom Post Type
- Create Custom Post Type PDF File (Like Media) Then Add Searchable Custom Fields
- Custom Upload Directory for Custom Post Types
- Custom post type media upload error with custom user role
- adding a shortcode into a custom post type
- Custom Post Type to Upload Images
- Allow authors to create article image
- Changing upload directory and migrating old attachments
- upload featured image using custom post type
- WordPress custom taxonomy template not working
- dropdowboxes with pre-selected custom fields optios that filters the results according seach needs
- Custom post type pagination – always return first page
- Listing custom terms in custom post meta
- Show fields based on taxonomy selection in editor
- Manage Columns : order by post_parent’s title
- Display related custom taxonomy posts in sidebar
- Rewrite rule for Custom post type Monthly and Yearly archive
- Some posts from custom post type to subdomains
- WordPress subpages to custom post types
- filter search custom field query
- Different rewrite rules for taxonomies and cp in multisite?
- Grid Filter Dropdown from Custom Post Type goes blank on Submit
- Permalinks: custom structure for taxonomy – tags?
- Organize WordPress site, so it can maintain with huge database
- How do you create a custom template to display a category with an image and related posts below?
- count results in search page based on custom category
- Different results between permalink and query var search
- How can I list Custom Post Types created with the Types plugin under categories?
- Show child custom post types on single-{parent}.php?
- List Taxonomies: Don’t list taxonomy if it has no post – depending on custom post-meta?
- Custom Post Type & Meta Box – Displaying meta box information on front end?
- Target post type edit page to change view post button, how do I?
- cutsom posts 404ing
- Best structure / rewrite rules to achieve the following url
- Order by custom field meta_key date and then by custom file meta_key number
- Remove Post Custom Meta Box
- How to let users choose where to search for posts?
- menu link to custom post_type?
- How can I move (or create another) publish button?
- Custom permalink with child taxonomy terms
- Assign Custom post to Custom Taxonomy
- How do I set a custom page template for a custom post type?
- Wrap meta boxes & data handling for specific post types in classes?
- Associating two custom post types
- WordPress Custom Search by post_type
- Custom post type Permalinks with hierarchical Taxonomies
- Advice on using Custom Post Types
- Display Registered Taxonomies
- Custom bulk_action
- Review site custom post type structure
- don’t publish custom post type post if a meta data field isn’t valid
- How can I get this request to use the Custom Post Type page template instead?
- Include custom taxonomy term in search
- Authenticating user for custom post type [closed]