Changeset 11966 for sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-learn/inc/taxonomy.php
- Timestamp:
- 07/15/2022 12:25:33 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-learn/inc/taxonomy.php
r11413 r11966 345 345 function register_workshop_series() { 346 346 $labels = array( 347 'name' => _x( ' WorkshopSeries', 'taxonomy general name', 'wporg-learn' ),348 'singular_name' => _x( ' WorkshopSeries', 'taxonomy singular name', 'wporg-learn' ),347 'name' => _x( 'Tutorial Series', 'taxonomy general name', 'wporg-learn' ), 348 'singular_name' => _x( 'Tutorial Series', 'taxonomy singular name', 'wporg-learn' ), 349 349 'menu_name' => __( 'Series', 'wporg-learn' ), 350 350 'all_items' => __( 'All Series', 'wporg-learn' ), … … 371 371 'public' => true, 372 372 'rewrite' => array( 373 'slug' => ' workshops',373 'slug' => 'tutorials', 374 374 ), 375 375 'show_ui' => true, … … 391 391 function register_workshop_topic() { 392 392 $labels = array( 393 'name' => _x( 'Topics', 'Topic Plans associated to workshop.', 'wporg-learn' ),393 'name' => _x( 'Topics', 'Topic Plans associated to tutorial.', 'wporg-learn' ), 394 394 'singular_name' => _x( 'Topic', 'Taxonomy Singular Name', 'wporg-learn' ), 395 395 'menu_name' => __( 'Topics', 'wporg-learn' ),
Note: See TracChangeset
for help on using the changeset viewer.