Making WordPress.org

Changeset 3160


Ignore:
Timestamp:
05/17/2016 07:59:32 PM (10 years ago)
Author:
iandunn
Message:

WordCamp Post Type: Specify which fields are required to move to another status.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-wordcamp/wordcamp-admin.php

    r3159 r3160  
    889889            1 => array(
    890890                'type'   => 'error',
    891                 'notice' => __( 'This WordCamp cannot be moved to Needs Site until all of its required metadata is filled in.', 'wordcamporg' ),
     891                'notice' => sprintf(
     892                    __( 'This WordCamp cannot be moved to Needs Site until all of its required metadata is filled in: %s.', 'wordcamporg' ),
     893                    implode( ', ', $this->get_required_fields( 'needs-site' ) )
     894                ),
    892895            ),
    893896
    894897            3 => array(
    895898                'type'   => 'error',
    896                 'notice' => __( 'This WordCamp cannot be added to the schedule until all of its required metadata is filled in.', 'wordcamporg' ),
     899                'notice' => sprintf(
     900                    __( 'This WordCamp cannot be added to the schedule until all of its required metadata is filled in: %s.', 'wordcamporg' ),
     901                    implode( ', ', $this->get_required_fields( 'scheduled' ) )
     902                ),
    897903            ),
    898904        );
Note: See TracChangeset for help on using the changeset viewer.