chriscct1

EDD Translate options

Jan 3rd, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.90 KB | None | 0 0
  1. define('EDD_SLUG', 'download');
  2. function set_download_labels($labels) {
  3.     $labels = array(
  4.         'name' => _x('Downloads', 'post type general name', 'your-domain'),
  5.         'singular_name' => _x('Download', 'post type singular name', 'your-domain'),
  6.         'add_new' => __('Download', 'your-domain'),
  7.         'add_new_item' => __('Add New Download', 'your-domain'),
  8.         'edit_item' => __('Edit Download', 'your-domain'),
  9.         'new_item' => __('New Download', 'your-domain'),
  10.         'all_items' => __('All Download', 'your-domain'),
  11.         'view_item' => __('View Download', 'your-domain'),
  12.         'search_items' => __('Search Download', 'your-domain'),
  13.         'not_found' =>  __('No Downloads found', 'your-domain'),
  14.         'not_found_in_trash' => __('No Downloads found in Trash', 'your-domain'),
  15.         'parent_item_colon' => '',
  16.         'menu_name' => __('Downloads', 'your-domain')
  17.     );
  18.     return $labels;
  19. }
  20. add_filter('edd_download_labels', 'set_download_labels');
Advertisement
Add Comment
Please, Sign In to add comment