Changeset 3190785
- Timestamp:
- 11/17/2024 08:57:35 PM (17 months ago)
- Location:
- user-post-collections
- Files:
-
- 34 edited
- 1 copied
-
tags/0.9.1 (copied) (copied from user-post-collections/trunk)
-
tags/0.9.1/alt-models/mg-list-items-model.php (modified) (1 diff)
-
tags/0.9.1/alt-models/mg-list-model.php (modified) (5 diffs)
-
tags/0.9.1/classes/mg-list-page-alt-settings.php (modified) (2 diffs)
-
tags/0.9.1/classes/mg-upc-list-types-register.php (modified) (2 diffs)
-
tags/0.9.1/classes/user-post-collections.php (modified) (1 diff)
-
tags/0.9.1/controllers/mg-upc-woocommerce.php (modified) (1 diff)
-
tags/0.9.1/includes/admin-notice-helper/admin-notice.php (modified) (1 diff)
-
tags/0.9.1/includes/list-types.php (modified) (1 diff)
-
tags/0.9.1/includes/mg-upc-settings-api.php (modified) (3 diffs)
-
tags/0.9.1/readme.txt (modified) (3 diffs)
-
tags/0.9.1/templates/archive-404.php (modified) (1 diff)
-
tags/0.9.1/templates/content-single-mg-upc.php (modified) (1 diff)
-
tags/0.9.1/templates/loop/empty.php (modified) (1 diff)
-
tags/0.9.1/templates/requirements-error.php (modified) (1 diff)
-
tags/0.9.1/templates/shortcode-404.php (modified) (1 diff)
-
tags/0.9.1/templates/single-mg-upc/empty-items.php (modified) (1 diff)
-
tags/0.9.1/user-post-collections.php (modified) (1 diff)
-
trunk/alt-models/mg-list-items-model.php (modified) (1 diff)
-
trunk/alt-models/mg-list-model.php (modified) (5 diffs)
-
trunk/classes/mg-list-page-alt-settings.php (modified) (2 diffs)
-
trunk/classes/mg-upc-list-types-register.php (modified) (2 diffs)
-
trunk/classes/user-post-collections.php (modified) (1 diff)
-
trunk/controllers/mg-upc-woocommerce.php (modified) (1 diff)
-
trunk/includes/admin-notice-helper/admin-notice.php (modified) (1 diff)
-
trunk/includes/list-types.php (modified) (1 diff)
-
trunk/includes/mg-upc-settings-api.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/templates/archive-404.php (modified) (1 diff)
-
trunk/templates/content-single-mg-upc.php (modified) (1 diff)
-
trunk/templates/loop/empty.php (modified) (1 diff)
-
trunk/templates/requirements-error.php (modified) (1 diff)
-
trunk/templates/shortcode-404.php (modified) (1 diff)
-
trunk/templates/single-mg-upc/empty-items.php (modified) (1 diff)
-
trunk/user-post-collections.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
user-post-collections/tags/0.9.1/alt-models/mg-list-items-model.php
r3190768 r3190785 495 495 if ( ! $mg_upc->model->support( $list, 'max_items_rotate' ) ) { 496 496 throw new Exception( 497 sprintf( 498 // translators: digit is the max number of items 499 __( 'Sorry, you can not have more than %d items.', 'user-post-collections' ), 500 $limit 497 esc_html( 498 sprintf( 499 // translators: digit is the max number of items 500 __( 'Sorry, you can not have more than %d items.', 'user-post-collections' ), 501 $limit 502 ) 501 503 ) 502 504 ); -
user-post-collections/tags/0.9.1/alt-models/mg-list-model.php
r3190768 r3190785 321 321 if ( ! is_array( $args[ $prop ] ) ) { 322 322 throw new MG_UPC_Invalid_Field_Exception( 323 'Invalid field ' . $prop . '.',323 esc_html( 'Invalid field ' . $prop . '.' ), 324 324 0, 325 325 null, 326 $prop326 esc_html( $prop ) 327 327 ); 328 328 } … … 342 342 ) { 343 343 throw new MG_UPC_Invalid_Field_Exception( 344 'Invalid field ' . $prop . '.',344 esc_html( 'Invalid field ' . $prop . '.' ), 345 345 0, 346 346 null, 347 $prop347 esc_html( $prop ) 348 348 ); 349 349 } … … 353 353 if ( ! empty( $filter['valid'] ) && ! in_array( $value, $filter['valid'], true ) ) { 354 354 throw new MG_UPC_Invalid_Field_Exception( 355 'Invalid field ' . $prop . '.',355 esc_html( 'Invalid field ' . $prop . '.' ), 356 356 0, 357 357 null, 358 $prop358 esc_html( $prop ) 359 359 ); 360 360 } … … 365 365 if ( false === $datetime ) { 366 366 throw new MG_UPC_Invalid_Field_Exception( 367 'Invalid field ' . $prop . '.',367 esc_html( 'Invalid field ' . $prop . '.' ), 368 368 0, 369 369 null, 370 $prop370 esc_html( $prop ) 371 371 ); 372 372 } … … 414 414 if ( false === $datetime ) { 415 415 throw new MG_UPC_Invalid_Field_Exception( 416 'Invalid field ' . $prop . '.',416 esc_html( 'Invalid field ' . $prop . '.' ), 417 417 0, 418 418 null, 419 $prop419 esc_html( $prop ) 420 420 ); 421 421 } -
user-post-collections/tags/0.9.1/classes/mg-list-page-alt-settings.php
r3190768 r3190785 227 227 ); 228 228 229 // phpcs:disable WordPress.WP.I18n.UnorderedPlaceholdersText 229 230 $archive_options[] = array( 230 231 'name' => 'mg_upc_archive_document_title', … … 232 233 // translators: not change %upctitle%, %sitename% 233 234 'desc' => __( 'You can use %upctitle% and %sitename%.', 'user-post-collections' ), 235 // translators: not change %upctitle%, %sitename% 234 236 'default' => __( '%upctitle% | %sitename%', 'user-post-collections' ), 235 237 'type' => 'text', 236 238 ); 239 // phpcs:enable WordPress.WP.I18n.UnorderedPlaceholdersText 237 240 238 241 $archive_options[] = array( -
user-post-collections/tags/0.9.1/classes/mg-upc-list-types-register.php
r3190768 r3190785 22 22 'label_count' => _n_noop( 23 23 'Published <span class="count">(%s)</span>', 24 'Published <span class="count">(%s)</span>' 24 'Published <span class="count">(%s)</span>', 25 'user-post-collections' 25 26 ), 26 27 ) … … 35 36 'label_count' => _n_noop( 36 37 'Private <span class="count">(%s)</span>', 37 'Private <span class="count">(%s)</span>' 38 'Private <span class="count">(%s)</span>', 39 'user-post-collections' 38 40 ), 39 41 ) -
user-post-collections/tags/0.9.1/classes/user-post-collections.php
r3190768 r3190785 16 16 public $model; 17 17 18 const VERSION = '0. 8.32';18 const VERSION = '0.9.1'; 19 19 20 20 /** -
user-post-collections/tags/0.9.1/controllers/mg-upc-woocommerce.php
r3190768 r3190785 711 711 '%s have been added to your cart.', 712 712 $count, 713 ' woocommerce'713 'user-post-collections' 714 714 ), 715 715 wc_format_list_of_items( $titles ) -
user-post-collections/tags/0.9.1/includes/admin-notice-helper/admin-notice.php
r2768965 r3190785 1 <div class="anh_message <?php esc_attr_e( $class ); ?>"> 1 <div class="anh_message <?php 2 // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText 3 esc_attr_e( $class, 'user-post-collections' ); 4 ?>"> 2 5 <?php foreach ( $this->notices[ $type ] as $notice ) : ?> 3 6 <p><?php echo wp_kses( $notice, wp_kses_allowed_html( 'post' ) ); ?></p> -
user-post-collections/tags/0.9.1/includes/list-types.php
r3190768 r3190785 156 156 157 157 if ( false === $args->label_count ) { 158 // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteral Plural159 $args->label_count = _n_noop( $args->label, $args->label );158 // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteralSingular,WordPress.WP.I18n.NonSingularStringLiteralPlural 159 $args->label_count = _n_noop( $args->label, $args->label, 'user-post-collections' ); 160 160 } 161 161 -
user-post-collections/tags/0.9.1/includes/mg-upc-settings-api.php
r3190768 r3190785 879 879 $value = $args['value'] ?? $this->get_option( $args['id'], $args['section'], $args['std'] ); 880 880 $size = isset( $args['size'] ) && is_scalar( $args['size'] ) ? $args['size'] : 'regular'; 881 $label = $args['options']['button_label'] ?? __( 'Choose File' );881 $label = $args['options']['button_label'] ?? __( 'Choose File', 'user-post-collections' ); 882 882 883 883 printf( … … 1090 1090 sprintf( 1091 1091 // translators: %s is array config label 1092 __( 'Error on %s: The setting cannot be empty.' ),1092 __( 'Error on %s: The setting cannot be empty.', 'user-post-collections' ), 1093 1093 $option_array_config['label'] 1094 1094 ) … … 1178 1178 sprintf( 1179 1179 // translators: %1$s is array config label, %2$s is field of an item 1180 __( 'Error on %1$s: The %2$s property must be unique.' ),1180 __( 'Error on %1$s: The %2$s property must be unique.', 'user-post-collections' ), 1181 1181 $option_array_config['label'], 1182 1182 $field['label'] -
user-post-collections/tags/0.9.1/readme.txt
r3190768 r3190785 1 1 === User Post Collections === 2 Contributors: Mauricio Galetto2 Contributors: @tauri77 3 3 Donate link: https://www.paypal.com/donate/?hosted_button_id=XNASRT5UB7KBN 4 4 License: GPLv3 5 5 License URI: https://www.gnu.org/licenses/gpl.txt 6 6 Tags: User lists, Post Collections, Woocommerce Wishlist 7 Tested up to: 6. 5.48 Stable tag: 0. 8.327 Tested up to: 6.7 8 Stable tag: 0.9.1 9 9 Requires PHP: 7.0 10 10 Requires at least: 4.9.6 11 12 Create & share lists with post types like posts, pages, products, etc. Build classic lists (Favorites, Bookmarks) and polls and cart lists and more. 13 14 == Description == 11 15 12 16 This plugin allows users to create lists of different types (simple, numbered, cart and poll) and share them. … … 14 18 Create classic lists like Favorites, Bookmarks, Wish List. Or poll lists like "Which one should I buy?", or shopping cart lists of every month, etc. 15 19 It is flexible and extensible. 16 17 == Description ==18 19 20 The plugin adds custom endpoints to the wordpress REST API and includes a client that will display operations on user lists in a modal. 20 21 … … 107 108 == Changelog == 108 109 110 = 0.9.1 = 111 * Fixes in translations 112 109 113 = 0.9.0 = 110 114 * Added archive option -
user-post-collections/tags/0.9.1/templates/archive-404.php
r3190768 r3190785 9 9 ?> 10 10 <h2> 11 <?php echo esc_html__( 'Not found.', 'user-post-collection ' ); ?>11 <?php echo esc_html__( 'Not found.', 'user-post-collections' ); ?> 12 12 </h2> 13 13 <?php -
user-post-collections/tags/0.9.1/templates/content-single-mg-upc.php
r3190768 r3190785 22 22 23 23 if ( post_password_required() ) { 24 echo get_the_password_form(); // phpcs:ignore XSS ok. 24 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 25 echo get_the_password_form(); 25 26 return; 26 27 } -
user-post-collections/tags/0.9.1/templates/loop/empty.php
r3190768 r3190785 16 16 ?> 17 17 <h2> 18 <?php echo esc_html__( 'There are no collections to show.', 'user-post-collection ' ); ?>18 <?php echo esc_html__( 'There are no collections to show.', 'user-post-collections' ); ?> 19 19 </h2> 20 20 <?php -
user-post-collections/tags/0.9.1/templates/requirements-error.php
r2768965 r3190785 3 3 ?> 4 4 <div class="error"> 5 <p><?php echo MG_UPC_NAME; ?> error: Your environment doesn't meet all of the system requirements listed below.</p>5 <p><?php echo esc_html( MG_UPC_NAME ); ?> error: Your environment doesn't meet all of the system requirements listed below.</p> 6 6 7 7 <ul class="ul-disc"> 8 8 <li> 9 <strong>PHP <?php echo MG_UPC_REQUIRED_PHP_VERSION; ?>+</strong>9 <strong>PHP <?php echo esc_html( MG_UPC_REQUIRED_PHP_VERSION ); ?>+</strong> 10 10 <em>(You're running version <?php echo PHP_VERSION; ?>)</em> 11 11 </li> 12 12 13 13 <li> 14 <strong>WordPress <?php echo MG_UPC_REQUIRED_WP_VERSION; ?>+</strong>14 <strong>WordPress <?php echo esc_html( MG_UPC_REQUIRED_WP_VERSION ); ?>+</strong> 15 15 <em>(You're running version <?php echo esc_html( $wp_version ); ?>)</em> 16 16 </li> -
user-post-collections/tags/0.9.1/templates/shortcode-404.php
r2768965 r3190785 9 9 ?> 10 10 <h2> 11 <?php echo esc_html__( 'List not found.', 'user-post-collection ' ); ?>11 <?php echo esc_html__( 'List not found.', 'user-post-collections' ); ?> 12 12 </h2> 13 13 <?php -
user-post-collections/tags/0.9.1/templates/single-mg-upc/empty-items.php
r3190768 r3190785 15 15 ?> 16 16 <h2 class="mg-upc-empty-items-text"> 17 <?php echo esc_html__( 'There are no items to show', 'user-post-collection ' ); ?>17 <?php echo esc_html__( 'There are no items to show', 'user-post-collections' ); ?> 18 18 </h2> 19 19 <?php -
user-post-collections/tags/0.9.1/user-post-collections.php
r3190768 r3190785 4 4 Plugin URI: https://galetto.info/user-post-collections 5 5 Description: Allows users to create their post collections. 6 Version: 0.9. 06 Version: 0.9.1 7 7 Author: Mauricio Galetto 8 8 Author URI: https://galetto.info/ -
user-post-collections/trunk/alt-models/mg-list-items-model.php
r3190768 r3190785 495 495 if ( ! $mg_upc->model->support( $list, 'max_items_rotate' ) ) { 496 496 throw new Exception( 497 sprintf( 498 // translators: digit is the max number of items 499 __( 'Sorry, you can not have more than %d items.', 'user-post-collections' ), 500 $limit 497 esc_html( 498 sprintf( 499 // translators: digit is the max number of items 500 __( 'Sorry, you can not have more than %d items.', 'user-post-collections' ), 501 $limit 502 ) 501 503 ) 502 504 ); -
user-post-collections/trunk/alt-models/mg-list-model.php
r3190768 r3190785 321 321 if ( ! is_array( $args[ $prop ] ) ) { 322 322 throw new MG_UPC_Invalid_Field_Exception( 323 'Invalid field ' . $prop . '.',323 esc_html( 'Invalid field ' . $prop . '.' ), 324 324 0, 325 325 null, 326 $prop326 esc_html( $prop ) 327 327 ); 328 328 } … … 342 342 ) { 343 343 throw new MG_UPC_Invalid_Field_Exception( 344 'Invalid field ' . $prop . '.',344 esc_html( 'Invalid field ' . $prop . '.' ), 345 345 0, 346 346 null, 347 $prop347 esc_html( $prop ) 348 348 ); 349 349 } … … 353 353 if ( ! empty( $filter['valid'] ) && ! in_array( $value, $filter['valid'], true ) ) { 354 354 throw new MG_UPC_Invalid_Field_Exception( 355 'Invalid field ' . $prop . '.',355 esc_html( 'Invalid field ' . $prop . '.' ), 356 356 0, 357 357 null, 358 $prop358 esc_html( $prop ) 359 359 ); 360 360 } … … 365 365 if ( false === $datetime ) { 366 366 throw new MG_UPC_Invalid_Field_Exception( 367 'Invalid field ' . $prop . '.',367 esc_html( 'Invalid field ' . $prop . '.' ), 368 368 0, 369 369 null, 370 $prop370 esc_html( $prop ) 371 371 ); 372 372 } … … 414 414 if ( false === $datetime ) { 415 415 throw new MG_UPC_Invalid_Field_Exception( 416 'Invalid field ' . $prop . '.',416 esc_html( 'Invalid field ' . $prop . '.' ), 417 417 0, 418 418 null, 419 $prop419 esc_html( $prop ) 420 420 ); 421 421 } -
user-post-collections/trunk/classes/mg-list-page-alt-settings.php
r3190768 r3190785 227 227 ); 228 228 229 // phpcs:disable WordPress.WP.I18n.UnorderedPlaceholdersText 229 230 $archive_options[] = array( 230 231 'name' => 'mg_upc_archive_document_title', … … 232 233 // translators: not change %upctitle%, %sitename% 233 234 'desc' => __( 'You can use %upctitle% and %sitename%.', 'user-post-collections' ), 235 // translators: not change %upctitle%, %sitename% 234 236 'default' => __( '%upctitle% | %sitename%', 'user-post-collections' ), 235 237 'type' => 'text', 236 238 ); 239 // phpcs:enable WordPress.WP.I18n.UnorderedPlaceholdersText 237 240 238 241 $archive_options[] = array( -
user-post-collections/trunk/classes/mg-upc-list-types-register.php
r3190768 r3190785 22 22 'label_count' => _n_noop( 23 23 'Published <span class="count">(%s)</span>', 24 'Published <span class="count">(%s)</span>' 24 'Published <span class="count">(%s)</span>', 25 'user-post-collections' 25 26 ), 26 27 ) … … 35 36 'label_count' => _n_noop( 36 37 'Private <span class="count">(%s)</span>', 37 'Private <span class="count">(%s)</span>' 38 'Private <span class="count">(%s)</span>', 39 'user-post-collections' 38 40 ), 39 41 ) -
user-post-collections/trunk/classes/user-post-collections.php
r3190768 r3190785 16 16 public $model; 17 17 18 const VERSION = '0. 8.32';18 const VERSION = '0.9.1'; 19 19 20 20 /** -
user-post-collections/trunk/controllers/mg-upc-woocommerce.php
r3190768 r3190785 711 711 '%s have been added to your cart.', 712 712 $count, 713 ' woocommerce'713 'user-post-collections' 714 714 ), 715 715 wc_format_list_of_items( $titles ) -
user-post-collections/trunk/includes/admin-notice-helper/admin-notice.php
r2768965 r3190785 1 <div class="anh_message <?php esc_attr_e( $class ); ?>"> 1 <div class="anh_message <?php 2 // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText 3 esc_attr_e( $class, 'user-post-collections' ); 4 ?>"> 2 5 <?php foreach ( $this->notices[ $type ] as $notice ) : ?> 3 6 <p><?php echo wp_kses( $notice, wp_kses_allowed_html( 'post' ) ); ?></p> -
user-post-collections/trunk/includes/list-types.php
r3190768 r3190785 156 156 157 157 if ( false === $args->label_count ) { 158 // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteral Plural159 $args->label_count = _n_noop( $args->label, $args->label );158 // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteralSingular,WordPress.WP.I18n.NonSingularStringLiteralPlural 159 $args->label_count = _n_noop( $args->label, $args->label, 'user-post-collections' ); 160 160 } 161 161 -
user-post-collections/trunk/includes/mg-upc-settings-api.php
r3190768 r3190785 879 879 $value = $args['value'] ?? $this->get_option( $args['id'], $args['section'], $args['std'] ); 880 880 $size = isset( $args['size'] ) && is_scalar( $args['size'] ) ? $args['size'] : 'regular'; 881 $label = $args['options']['button_label'] ?? __( 'Choose File' );881 $label = $args['options']['button_label'] ?? __( 'Choose File', 'user-post-collections' ); 882 882 883 883 printf( … … 1090 1090 sprintf( 1091 1091 // translators: %s is array config label 1092 __( 'Error on %s: The setting cannot be empty.' ),1092 __( 'Error on %s: The setting cannot be empty.', 'user-post-collections' ), 1093 1093 $option_array_config['label'] 1094 1094 ) … … 1178 1178 sprintf( 1179 1179 // translators: %1$s is array config label, %2$s is field of an item 1180 __( 'Error on %1$s: The %2$s property must be unique.' ),1180 __( 'Error on %1$s: The %2$s property must be unique.', 'user-post-collections' ), 1181 1181 $option_array_config['label'], 1182 1182 $field['label'] -
user-post-collections/trunk/readme.txt
r3190768 r3190785 1 1 === User Post Collections === 2 Contributors: Mauricio Galetto2 Contributors: @tauri77 3 3 Donate link: https://www.paypal.com/donate/?hosted_button_id=XNASRT5UB7KBN 4 4 License: GPLv3 5 5 License URI: https://www.gnu.org/licenses/gpl.txt 6 6 Tags: User lists, Post Collections, Woocommerce Wishlist 7 Tested up to: 6. 5.48 Stable tag: 0. 8.327 Tested up to: 6.7 8 Stable tag: 0.9.1 9 9 Requires PHP: 7.0 10 10 Requires at least: 4.9.6 11 12 Create & share lists with post types like posts, pages, products, etc. Build classic lists (Favorites, Bookmarks) and polls and cart lists and more. 13 14 == Description == 11 15 12 16 This plugin allows users to create lists of different types (simple, numbered, cart and poll) and share them. … … 14 18 Create classic lists like Favorites, Bookmarks, Wish List. Or poll lists like "Which one should I buy?", or shopping cart lists of every month, etc. 15 19 It is flexible and extensible. 16 17 == Description ==18 19 20 The plugin adds custom endpoints to the wordpress REST API and includes a client that will display operations on user lists in a modal. 20 21 … … 107 108 == Changelog == 108 109 110 = 0.9.1 = 111 * Fixes in translations 112 109 113 = 0.9.0 = 110 114 * Added archive option -
user-post-collections/trunk/templates/archive-404.php
r3190768 r3190785 9 9 ?> 10 10 <h2> 11 <?php echo esc_html__( 'Not found.', 'user-post-collection ' ); ?>11 <?php echo esc_html__( 'Not found.', 'user-post-collections' ); ?> 12 12 </h2> 13 13 <?php -
user-post-collections/trunk/templates/content-single-mg-upc.php
r3190768 r3190785 22 22 23 23 if ( post_password_required() ) { 24 echo get_the_password_form(); // phpcs:ignore XSS ok. 24 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 25 echo get_the_password_form(); 25 26 return; 26 27 } -
user-post-collections/trunk/templates/loop/empty.php
r3190768 r3190785 16 16 ?> 17 17 <h2> 18 <?php echo esc_html__( 'There are no collections to show.', 'user-post-collection ' ); ?>18 <?php echo esc_html__( 'There are no collections to show.', 'user-post-collections' ); ?> 19 19 </h2> 20 20 <?php -
user-post-collections/trunk/templates/requirements-error.php
r2768965 r3190785 3 3 ?> 4 4 <div class="error"> 5 <p><?php echo MG_UPC_NAME; ?> error: Your environment doesn't meet all of the system requirements listed below.</p>5 <p><?php echo esc_html( MG_UPC_NAME ); ?> error: Your environment doesn't meet all of the system requirements listed below.</p> 6 6 7 7 <ul class="ul-disc"> 8 8 <li> 9 <strong>PHP <?php echo MG_UPC_REQUIRED_PHP_VERSION; ?>+</strong>9 <strong>PHP <?php echo esc_html( MG_UPC_REQUIRED_PHP_VERSION ); ?>+</strong> 10 10 <em>(You're running version <?php echo PHP_VERSION; ?>)</em> 11 11 </li> 12 12 13 13 <li> 14 <strong>WordPress <?php echo MG_UPC_REQUIRED_WP_VERSION; ?>+</strong>14 <strong>WordPress <?php echo esc_html( MG_UPC_REQUIRED_WP_VERSION ); ?>+</strong> 15 15 <em>(You're running version <?php echo esc_html( $wp_version ); ?>)</em> 16 16 </li> -
user-post-collections/trunk/templates/shortcode-404.php
r2768965 r3190785 9 9 ?> 10 10 <h2> 11 <?php echo esc_html__( 'List not found.', 'user-post-collection ' ); ?>11 <?php echo esc_html__( 'List not found.', 'user-post-collections' ); ?> 12 12 </h2> 13 13 <?php -
user-post-collections/trunk/templates/single-mg-upc/empty-items.php
r3190768 r3190785 15 15 ?> 16 16 <h2 class="mg-upc-empty-items-text"> 17 <?php echo esc_html__( 'There are no items to show', 'user-post-collection ' ); ?>17 <?php echo esc_html__( 'There are no items to show', 'user-post-collections' ); ?> 18 18 </h2> 19 19 <?php -
user-post-collections/trunk/user-post-collections.php
r3190768 r3190785 4 4 Plugin URI: https://galetto.info/user-post-collections 5 5 Description: Allows users to create their post collections. 6 Version: 0.9. 06 Version: 0.9.1 7 7 Author: Mauricio Galetto 8 8 Author URI: https://galetto.info/
Note: See TracChangeset
for help on using the changeset viewer.