Changeset 3160
- Timestamp:
- 05/17/2016 07:59:32 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-wordcamp/wordcamp-admin.php
r3159 r3160 889 889 1 => array( 890 890 '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 ), 892 895 ), 893 896 894 897 3 => array( 895 898 '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 ), 897 903 ), 898 904 );
Note: See TracChangeset
for help on using the changeset viewer.