I was investigating the issue for this question, and one option is using the plugin Edit Flow.
It can be configured to display custom post_status
in specific CPT’s, but further tests are necessary to see if it applies to this case.
Other option is using toscho’s Retranslate plugin, where you can define the string to be translated and the post_type
: https://wordpress.stackexchange.com/a/3675/12615
It gets almost all the job done, because, curiously, there’s one string (the very first one of the screenshot) that don’t gets translated and one extra code is necessary:
add_filter( 'views_edit-employee', 'wpse_54330_custom_draft_translation', 10, 1);
function wpse_54330_custom_draft_translation( $views )
{
$views['draft'] = str_replace('Draft', 'Unavailable', $views['draft']);
return $views;
}
One caveat of this method is that just after “quick editing” the post status, the word Draft appears…
Related Posts:
- How to get Custom Post ID by adding filter to child theme’s function
- remove custom post type permalink
- How do I filter the excerpt metabox description in admin?
- How to correctly get post type in a the_title filter
- Make the ‘all’ filter default instead of ‘mine’ in a custom post type
- Error after deleting Custom Post Type with a function (no trash used)
- Remove “Get Shortlink” button in admin of custom post type
- Check Title Unique Or Not and If not error message and dont save
- Add html to cpt main page / admin edit.php
- register_taxonomy and register_post_type does not work [closed]
- Displaying custom taxonomy in the admin list of a custom post type
- WordPress sort search results by custom order
- A method for ordering mixed dates in search result loop (theory only, no actual code)
- Custom post type suppress transition from future to publish
- WooCommerce sort products by the actual product width(not the shipping width)
- Update postmeta Parent when post_status child change
- Filter Posts from the Main Query
- Create new custom post and post category of same name
- Post Click Redirect to Custom URL instead of Single Post Page
- pricefilter without WooCommerce
- Keep br tags from stripping
- Filter wp_dropdown_categories Per Post Type
- Custom post type functions.php if statement on action
- How to export custom post type with ACF to individual file with automation?
- WordPress Count posts within a custom post type
- How to filter url on post submission?
- Add custom columns in custom post type browse page
- Displaying a custom post type using get_template_part into a specific layout
- Displaying a list of Contacts
- Different videos for different posts
- Custom Post Types and Removing Slugs – should we do it?
- Create custom WP_List_Table in post_type
- Modifying WP_Title For Custom Post Type
- Types plugin custom post add_action hooks
- How should I structure complex content hierarchies?
- Filtering the_content, but still need to display the unfiltered content inside filter
- WordPress as a frontend website for iOS app [closed]
- How can I make custom static widgets/areas on my homepage?
- Displaying One Custom Post Type’s Content On Single Post of Another Custom Post Type
- Convert Custom Table Data Based Plugin To Be Searchable
- Add Class according to the order of appearance
- Loading plugin text domain before registering post type
- Need to have an archive widget which organizes and displays a custom post type using a custom date field
- Custom Content Type with No Page View
- Change Custom Post Type singular_name through function/filter
- How can I get some of a posts meta data whilst it is still inserting?
- add_action ‘init’ from inside a class for custom post types
- Modify a plugin function output from another plugin
- How to hide a custom field from admin?
- Get terms for a specfic post from multiple taxonomies in custom post type
- Custom post type tags not showing in search
- Problems making shortcode with custom post types and taxonomy
- custom comment fields on CPT
- Custom Taxonomy Filter Issues
- CMB select with data from CPT
- Add Class After 4th Post
- $wpdb is queried but results don’t show
- cannot achieve this structure (custom posts VS categories VS ??)
- Post visibility option to theme front-end for author to select?
- Catch and display error on save_post action
- How to list posts by term (custom taxonomy)
- Query Multiple Custom Post Types & Exclude a Taxonomy Term
- How to keep a record of changes to a custom field?
- Function to add custom HTML into head in custom post-type list page
- Is it possible to have hierarchical taxonomy and hierarchical custom post types in one permalink?
- Custom taxonomy not saving correctly
- show most viewed posts of last days by link?
- What is the best way to manage small blocks of content on my home page?
- How to create Custom image post?
- One post auto attached to many another items
- How set template for “custom post type” individual post
- Filter search posts by post meta?
- Modifying search results based on post_type
- how to use custom post types collectively integrated with each other
- Use Gravity Forms and a Shopping Cart for output to Freshbooks for an Estimate [closed]
- Custom Post Type Implementation
- Related “custom post type” using “custom taxonomy”
- Why doesnt my tag page populate with this custom post type?
- Remove filter and view options from custom post type edit screen
- How do I “trash” a custom post type post while logged in as Admin
- How to recover the post ID earlier in the WP admin hook action “firing” sequence?
- Is there a (preferable built-in) way to check what custom queries are used in a theme?
- WP 3.1 custom post type permlinks
- Home page is getting current-menu-item even if it’s not home
- Placing Admin Post Metaboxes in Tabs
- Can I get an auto-populated dropdown list of other custom posts in a custom post edit page?
- Edit post image attributes on fly?
- How do I ensure that post_type and Taxonomy use the same slug?
- Manually adding or updating CPT automatically sets post_status of future
- Is possible register two archive pages for single custom post type?
- Problem with customize page cached in WordPress.com [closed]
- Change user role when user’s first post gets published
- Display custom post front end filter by ACF equals current user
- How do I disable the built-in editor and automatically configure the properties of new pages?
- Multiple categories assigned to a single product breaking the breadcrumb
- Setting Parent Page to Post
- How to have multiple search result pages in wordpress with taxonomy terms listed
- conditional filter
- custom filtering admin columns
- Question about link two types of data in wordpress