Make WordPress Core

Changeset 52368


Ignore:
Timestamp:
12/14/2021 09:07:17 AM (3 years ago)
Author:
audrasjb
Message:

Posts, Post Types: Add missing translation context on FSE related post types labels.

This makes it easier for translators to identify the context of each label. This change also brings consistency with other built-in post types.

Follow-up to [52145], [52069], [52062], [52041], [51003].

Props audrasjb, hellofromTonya.
Fixes #54611.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/post.php

    r52364 r52368  
    334334        array(
    335335            'labels'                => array(
    336                 'name'                  => __( 'Templates' ),
    337                 'singular_name'         => __( 'Template' ),
     336                'name'                  => _x( 'Templates', 'post type general name' ),
     337                'singular_name'         => _x( 'Template', 'post type singular name' ),
    338338                'add_new'               => _x( 'Add New', 'Template' ),
    339339                'add_new_item'          => __( 'Add New Template' ),
     
    394394        array(
    395395            'labels'                => array(
    396                 'name'                  => __( 'Template Parts' ),
    397                 'singular_name'         => __( 'Template Part' ),
     396                'name'                  => _x( 'Template Parts', 'post type general name' ),
     397                'singular_name'         => _x( 'Template Part', 'post type singular name' ),
    398398                'add_new'               => _x( 'Add New', 'Template Part' ),
    399399                'add_new_item'          => __( 'Add New Template Part' ),
     
    481481        array(
    482482            'labels'                => array(
    483                 'name'                  => __( 'Navigation Menus' ),
    484                 'singular_name'         => __( 'Navigation Menu' ),
     483                'name'                  => _x( 'Navigation Menus', 'post type general name' ),
     484                'singular_name'         => _x( 'Navigation Menu', 'post type singular name' ),
    485485                'add_new'               => _x( 'Add New', 'Navigation Menu' ),
    486486                'add_new_item'          => __( 'Add New Navigation Menu' ),
Note: See TracChangeset for help on using the changeset viewer.