Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author finnj

    (@finnj)

    I will check and fix it, please let me know the exact phrases.

    Thread Starter att

    (@att)

    One example: “Create New Article”.

    Plugin Author finnj

    (@finnj)

    Hi,

    If you are referring to the Create new ??? on the list in My Posts, it is a combination of “Create New” and the singular name of the post type.

    In other words “Create New” is in the .pot file the singular name is retrieved from the post type – If the names of the post type isn’t translated it will look strange.

    This is the function I use:

    function fp_get_posttype_label_singular($tmp_pt_name)
    	{
    	$tmp_pt = get_post_type_object($tmp_pt_name);
    	return $tmp_pt->labels->singular_name;
    	}

    I cant find this anywhere else.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Some terms and phrases seem cannot be translated.’ is closed to new replies.