WP Review - Version 5.3.0

Version Description

Download this release

Release Info

Developer MyThemeShop
Plugin Icon 128x128 WP Review
Version 5.3.0
Comparing to
See all releases

Code changes from version 5.2.9 to 5.3.0

admin/assets/js/admin.js CHANGED
@@ -148,6 +148,34 @@
148
  $( '#wpr-review-items-app' ).fadeIn();
149
  });
150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  // User reviews.
152
  $( '#wp-review-userReview-disable' ).on( 'change', function() {
153
  var $postbox = $( this ).closest( '.postbox' );
@@ -222,7 +250,7 @@
222
  $( this ).next( 'input[name="wp_review_type"]' ).val( selected_val );
223
  }
224
  }).change();
225
-
226
  };
227
 
228
  wpreview.linkChoices = function( options ) {
148
  $( '#wpr-review-items-app' ).fadeIn();
149
  });
150
 
151
+ $( document ).on( 'change', 'select#wp_review_schema', function() {
152
+ var $this = $( this ),
153
+ value = $this.val(),
154
+ targetSelector = '#wp_review_schema_type_' + value,
155
+ notice = $( '#wpr-deprecated-schema-notice' );
156
+
157
+ $( '.wp_review_schema_type_options' ).hide();
158
+ $( '#wp_review_schema_type_options_wrap' ).hide();
159
+
160
+ if ( value ) {
161
+ $( targetSelector ).show();
162
+ if ( 'none' !== value ) {
163
+ $( '#wp_review_schema_type_options_wrap' ).show();
164
+ }
165
+ }
166
+
167
+ notice.toggle( -1 !== [ 'Thing', 'Article', 'Painting', 'Place', 'WebSite' ].indexOf( value ) );
168
+ });
169
+
170
+ $( document ).on( 'change', '#wp_review_rating_schema', function() {
171
+ var value = $( this ).val();
172
+ if ( 'author' === value ) {
173
+ $( '#wp_review_schema_author_wrapper' ).show();
174
+ } else {
175
+ $( '#wp_review_schema_author_wrapper' ).hide();
176
+ }
177
+ });
178
+
179
  // User reviews.
180
  $( '#wp-review-userReview-disable' ).on( 'change', function() {
181
  var $postbox = $( this ).closest( '.postbox' );
250
  $( this ).next( 'input[name="wp_review_type"]' ).val( selected_val );
251
  }
252
  }).change();
253
+
254
  };
255
 
256
  wpreview.linkChoices = function( options ) {
admin/options/review.php CHANGED
@@ -86,7 +86,7 @@ foreach ( $default_criteria as $item ) {
86
  'wp_review_item_star' => '',
87
  );
88
  }
89
- $default_schema = $default_options['default_schema_type'];
90
  $default_user_review_type = empty( $options['default_user_review_type'] ) ? WP_REVIEW_REVIEW_DISABLED : $options['default_user_review_type'];
91
 
92
  $options['colors'] = apply_filters( 'wp_review_colors', $options['colors'], 0 );
@@ -752,15 +752,14 @@ $form_field = new WP_Review_Form_Field();
752
  </div>
753
 
754
  <div class="wp-review-field">
755
- <div class="wp-review-disabled wp-review-field-label">
756
  <label for="wp_review_schema"><?php esc_html_e( 'Review Schema', 'wp-review' ); ?></label>
757
- <?php wp_review_print_pro_text(); ?>
758
  </div>
759
 
760
  <div class="wp-review-field-option">
761
  <select name="wp_review_options[default_schema_type]" id="wp_review_schema">
762
  <?php foreach ( $schemas as $key => $arr ) : ?>
763
- <option value="<?php echo esc_attr( $key ); ?>" <?php selected( $key, $default_schema ); ?> disabled><?php echo esc_html( $arr['label'] ); ?></option>
764
  <?php endforeach; ?>
765
  </select>
766
  </div>
86
  'wp_review_item_star' => '',
87
  );
88
  }
89
+ $default_schema = wp_review_option( 'default_schema_type' ) ? wp_review_option( 'default_schema_type' ) : $default_options['default_schema_type'];
90
  $default_user_review_type = empty( $options['default_user_review_type'] ) ? WP_REVIEW_REVIEW_DISABLED : $options['default_user_review_type'];
91
 
92
  $options['colors'] = apply_filters( 'wp_review_colors', $options['colors'], 0 );
752
  </div>
753
 
754
  <div class="wp-review-field">
755
+ <div class="wp-review-field-label">
756
  <label for="wp_review_schema"><?php esc_html_e( 'Review Schema', 'wp-review' ); ?></label>
 
757
  </div>
758
 
759
  <div class="wp-review-field-option">
760
  <select name="wp_review_options[default_schema_type]" id="wp_review_schema">
761
  <?php foreach ( $schemas as $key => $arr ) : ?>
762
+ <option value="<?php echo esc_attr( $key ); ?>" <?php selected( $key, $default_schema ); ?>><?php echo esc_html( $arr['label'] ); ?></option>
763
  <?php endforeach; ?>
764
  </select>
765
  </div>
admin/review-options-meta-box.php CHANGED
@@ -26,6 +26,9 @@ function wp_review_render_meta_box_review_options( $post ) {
26
  }
27
  $type = $type_post_value;
28
 
 
 
 
29
  $heading = get_post_meta( $post->ID, 'wp_review_heading', true );
30
  // $available_types = apply_filters('wp_review_metabox_types', wp_review_get_review_types() );
31
  $available_types = wp_review_get_rating_types();
@@ -97,38 +100,54 @@ function wp_review_render_meta_box_review_options( $post ) {
97
  <div id="wp_review_schema_options_wrapper">
98
 
99
  <div class="wp-review-field" id="wp_review_schema_group">
100
- <div class="wp-review-disabled wp-review-field-label">
101
  <label for="wp_review_schema"><?php esc_html_e( 'Reviewed Item Schema', 'wp-review' ); ?></label>
102
- <?php wp_review_print_pro_text(); ?>
103
  </div>
104
 
105
  <div class="wp-review-field-option">
106
  <select name="wp_review_schema" id="wp_review_schema">
107
  <?php foreach ( $schemas as $key => $arr ) : ?>
108
- <option value="<?php echo esc_attr( $key ); ?>" <?php selected( $key, 'Thing' ); ?> disabled><?php echo esc_html( $arr['label'] ); ?></option>
109
  <?php endforeach; ?>
110
  </select>
111
  </div>
112
  </div>
113
 
114
- <div id="wp_review_schema_type_options_wrap">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  <div class="wp-review-field" id="wp_review_schema_rating_group">
116
  <div class="wp-review-field-label">
117
  <label for="wp_review_rating_schema"><?php esc_html_e( 'Rating Schema', 'wp-review' ); ?></label>
118
  </div>
 
119
  <div class="wp-review-field-option">
120
  <select name="wp_review_rating_schema" id="wp_review_rating_schema">
121
  <option value="author" <?php selected( 'author', $rating_schema ); ?>><?php esc_html_e( 'Author Review Rating', 'wp-review' ); ?></option>
122
  <option value="visitors" <?php selected( 'visitors', $rating_schema ); ?>><?php esc_html_e( 'Visitors Aggregate Rating (if enabled)', 'wp-review' ); ?></option>
123
- <option value="comments" class="disabled"><?php esc_html_e( 'Comments Reviews Aggregate Rating (if enabled)', 'wp-review' ); ?></option>
124
  </select>
125
  </div>
126
  </div>
 
127
  <div id="wp_review_schema_author_wrapper"<?php if ( 'author' !== $rating_schema ) echo ' style="display: none;"'; // phpcs:ignore ?>>
128
  <div class="wp-review-field">
129
  <div class="wp-review-field-label">
130
  <label><?php esc_html_e( 'Custom Author', 'wp-review' ); ?></label>
131
  </div>
 
132
  <div class="wp-review-field-option">
133
  <?php
134
  $form_field->render_switch(
@@ -147,6 +166,7 @@ function wp_review_render_meta_box_review_options( $post ) {
147
  <div class="wp-review-field-label">
148
  <label for="wp_review_author"><?php esc_html_e( 'Review Author', 'wp-review' ); ?></label>
149
  </div>
 
150
  <div class="wp-review-field-option">
151
  <input type="text" name="wp_review_author" id="wp_review_author" value="<?php echo esc_attr( $author ); ?>">
152
  </div>
26
  }
27
  $type = $type_post_value;
28
 
29
+ $schema = wp_review_get_review_schema( $post->ID );
30
+ $schema_data = get_post_meta( $post->ID, 'wp_review_schema_options', true );
31
+
32
  $heading = get_post_meta( $post->ID, 'wp_review_heading', true );
33
  // $available_types = apply_filters('wp_review_metabox_types', wp_review_get_review_types() );
34
  $available_types = wp_review_get_rating_types();
100
  <div id="wp_review_schema_options_wrapper">
101
 
102
  <div class="wp-review-field" id="wp_review_schema_group">
103
+ <div class="wp-review-field-label">
104
  <label for="wp_review_schema"><?php esc_html_e( 'Reviewed Item Schema', 'wp-review' ); ?></label>
 
105
  </div>
106
 
107
  <div class="wp-review-field-option">
108
  <select name="wp_review_schema" id="wp_review_schema">
109
  <?php foreach ( $schemas as $key => $arr ) : ?>
110
+ <option value="<?php echo esc_attr( $key ); ?>" <?php selected( $key, $schema ); ?>><?php echo esc_html( $arr['label'] ); ?></option>
111
  <?php endforeach; ?>
112
  </select>
113
  </div>
114
  </div>
115
 
116
+ <div id="wp_review_schema_type_options_wrap"<?php if ( '' === $schema || 'none' === $schema ) echo ' style="display:none;"'; // phpcs:ignore ?>>
117
+
118
+ <?php foreach ( $schemas as $type => $arr ) : ?>
119
+ <div class="wp_review_schema_type_options" id="wp_review_schema_type_<?php echo esc_attr( $type ); ?>" <?php if ( $type !== $schema ) echo 'style="display:none;"'; // phpcs:ignore ?>>
120
+ <?php if ( isset( $arr['fields'] ) ) : ?>
121
+ <?php foreach ( $arr['fields'] as $data ) : ?>
122
+ <div class="wp-review-field">
123
+ <?php $values = isset( $schema_data[ $type ] ) ? $schema_data[ $type ] : array(); ?>
124
+ <?php wp_review_schema_field( $data, $values, $type ); ?>
125
+ </div>
126
+ <?php endforeach; ?>
127
+ <?php endif; ?>
128
+ </div>
129
+ <?php endforeach; ?>
130
+
131
  <div class="wp-review-field" id="wp_review_schema_rating_group">
132
  <div class="wp-review-field-label">
133
  <label for="wp_review_rating_schema"><?php esc_html_e( 'Rating Schema', 'wp-review' ); ?></label>
134
  </div>
135
+
136
  <div class="wp-review-field-option">
137
  <select name="wp_review_rating_schema" id="wp_review_rating_schema">
138
  <option value="author" <?php selected( 'author', $rating_schema ); ?>><?php esc_html_e( 'Author Review Rating', 'wp-review' ); ?></option>
139
  <option value="visitors" <?php selected( 'visitors', $rating_schema ); ?>><?php esc_html_e( 'Visitors Aggregate Rating (if enabled)', 'wp-review' ); ?></option>
140
+ <option value="comments" disabled><?php esc_html_e( 'Comments Reviews Aggregate Rating (if enabled)', 'wp-review' ); ?></option>
141
  </select>
142
  </div>
143
  </div>
144
+
145
  <div id="wp_review_schema_author_wrapper"<?php if ( 'author' !== $rating_schema ) echo ' style="display: none;"'; // phpcs:ignore ?>>
146
  <div class="wp-review-field">
147
  <div class="wp-review-field-label">
148
  <label><?php esc_html_e( 'Custom Author', 'wp-review' ); ?></label>
149
  </div>
150
+
151
  <div class="wp-review-field-option">
152
  <?php
153
  $form_field->render_switch(
166
  <div class="wp-review-field-label">
167
  <label for="wp_review_author"><?php esc_html_e( 'Review Author', 'wp-review' ); ?></label>
168
  </div>
169
+
170
  <div class="wp-review-field-option">
171
  <input type="text" name="wp_review_author" id="wp_review_author" value="<?php echo esc_attr( $author ); ?>">
172
  </div>
includes/functions.php CHANGED
@@ -925,7 +925,10 @@ function wp_review_get_review_schema( $post_id ) {
925
  $schemas = wp_review_schema_types();
926
 
927
  if ( empty( $schema ) || ! isset( $schemas[ $schema ] ) ) {
928
- $schema = 'Thing';
 
 
 
929
  }
930
 
931
  return $schema;
@@ -2096,28 +2099,24 @@ function wp_review_get_schema( $review ) {
2096
  return '';
2097
  }
2098
 
2099
- /*if ( empty( $review['total'] ) || ! floatval( $review['total'] ) ) {
2100
- return '';
2101
- }*/
2102
-
2103
  $output = '';
2104
 
2105
- $nesting_mode = apply_filters( 'wp_review_schema_nesting_mode', 'type' ); // type, rating, none.
2106
 
2107
  // Force rating nesting in certain types ( weird results in testing tool otherwise ).
2108
- if ( in_array( $review['schema'], apply_filters( 'wp_review_schema_force_nested_rating_types', array( 'Movie', 'Book' ) ) ) ) {
2109
  $nesting_mode = 'rating';
2110
  }
2111
 
2112
  // If type requires nested aggregateRating don't nest it in aggregateRating.
2113
- if ( in_array( $review['schema'], apply_filters( 'wp_review_schema_force_nested_user_rating_types', array( 'SoftwareApplication', 'Recipe' ) ) ) && in_array( $review['rating_schema'], array( 'visitors' ) ) ) {
2114
  $nesting_mode = 'rating';
2115
  }
2116
 
2117
  switch ( $nesting_mode ) {
2118
 
2119
  case 'type': // schema.org typed element ( Movie, Recipe, etc) nested in review/aggregateRating type.
2120
- if ( in_array( $review['rating_schema'], array( 'visitors' ) ) ) {
2121
  $output .= wp_review_get_schema_user_rating( $review, true );
2122
  } else {
2123
  $output .= wp_review_get_schema_review_rating( $review, true );
@@ -2130,7 +2129,7 @@ function wp_review_get_schema( $review ) {
2130
 
2131
  case 'none': // separated reviewed item type ( Movie, Recipe, etc) and review/aggregateRating.
2132
  $output .= wp_review_get_schema_type( $review );
2133
- if ( in_array( $review['rating_schema'], array( 'visitors' ) ) ) {
2134
  $output .= wp_review_get_schema_user_rating( $review );
2135
  } else {
2136
  $output .= wp_review_get_schema_review_rating( $review );
@@ -2143,11 +2142,11 @@ function wp_review_get_schema( $review ) {
2143
  }
2144
 
2145
  /**
2146
- * Gets schema type.
2147
  *
2148
- * @param array $review Review data.
2149
  * @param bool $nested_rating Is nested rating or not.
2150
- * @return array
2151
  */
2152
  function wp_review_get_schema_type( $review, $nested_rating = false ) {
2153
 
@@ -2171,26 +2170,28 @@ function wp_review_get_schema_type( $review, $nested_rating = false ) {
2171
  if ( ! empty( $data['omit'] ) ) {
2172
  continue;
2173
  }
2174
- if ( isset( $review['schema_data'][ $review['schema'] ][ $data['name'] ] ) && ! empty( $review['schema_data'][ $review['schema'] ][ $data['name'] ] ) ) {
 
 
2175
  if ( isset( $data['multiline'] ) && $data['multiline'] ) {
2176
- $review['schema_data'][ $review['schema'] ][ $data['name'] ] = preg_split( '/\r\n|[\r\n]/', $review['schema_data'][ $review['schema'] ][ $data['name'] ] );
2177
  }
2178
  if ( isset( $data['part_of'] ) ) {
2179
  $args[ $data['part_of'] ]['@type'] = $data['@type'];
2180
  if ( 'image' === $data['type'] ) {
2181
- $args[ $data['part_of'] ][ $data['name'] ] = $review['schema_data'][ $review['schema'] ][ $data['name'] ]['url'];
2182
- } elseif ( in_array( $data['name'], apply_filters( 'wp_reviev_schema_ISO_8601_duration_items', array( 'prepTime', 'cookTime', 'totalTime', 'duration' ) ) ) ) { // phpcs:ignore
2183
- $args[ $data['part_of'] ][ $data['name'] ] = 'PT' . $review['schema_data'][ $review['schema'] ][ $data['name'] ];
2184
  } else {
2185
- $args[ $data['part_of'] ][ $data['name'] ] = $review['schema_data'][ $review['schema'] ][ $data['name'] ];
2186
  }
2187
  } else {
2188
  if ( 'image' === $data['type'] ) {
2189
- $args[ $data['name'] ] = $review['schema_data'][ $review['schema'] ][ $data['name'] ]['url'];
2190
- } elseif ( in_array( $data['name'], apply_filters( 'wp_reviev_schema_ISO_8601_duration_items', array( 'prepTime', 'cookTime', 'totalTime', 'duration' ) ) ) ) { // phpcs:ignore
2191
- $args[ $data['name'] ] = 'PT' . $review['schema_data'][ $review['schema'] ][ $data['name'] ];
2192
  } else {
2193
- $args[ $data['name'] ] = $review['schema_data'][ $review['schema'] ][ $data['name'] ];
2194
  }
2195
  }
2196
  }
@@ -2198,7 +2199,7 @@ function wp_review_get_schema_type( $review, $nested_rating = false ) {
2198
  }
2199
 
2200
  // Nested aggregateRating is required in some types ( SoftwareApplication, Recipe ).
2201
- $force_user_rating = in_array( $review['schema'], apply_filters( 'wp_review_schema_force_nested_user_rating_types', array( 'SoftwareApplication', 'Recipe' ) ) );
2202
  if ( $force_user_rating ) {
2203
  if ( $review['user_review'] || $review['comments_review'] ) {
2204
  $aggregate_rating = wp_review_get_schema_nested_user_rating_args( $review );
@@ -2207,10 +2208,13 @@ function wp_review_get_schema_type( $review, $nested_rating = false ) {
2207
  }
2208
  }
2209
  if ( 'author' === $review['rating_schema'] ) {
2210
- $args['review'] = wp_review_get_schema_nested_review_args( $review );
 
 
 
2211
  }
2212
  } elseif ( $nested_rating ) {
2213
- if ( in_array( $review['rating_schema'], array( 'visitors' ) ) ) {
2214
  if ( $review['user_review'] || $review['comments_review'] ) {
2215
  $aggregate_rating = wp_review_get_schema_nested_user_rating_args( $review );
2216
  if ( ! empty( $aggregate_rating ) ) {
@@ -2218,7 +2222,26 @@ function wp_review_get_schema_type( $review, $nested_rating = false ) {
2218
  }
2219
  }
2220
  } else {
2221
- $args['review'] = wp_review_get_schema_nested_review_args( $review );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2222
  }
2223
  }
2224
 
@@ -2232,11 +2255,11 @@ function wp_review_get_schema_type( $review, $nested_rating = false ) {
2232
  }
2233
 
2234
  /**
2235
- * Gets schema review rating.
2236
  *
2237
- * @param array $review Review data.
2238
  * @param bool $nested_item Is nested item or not.
2239
- * @return mixed|void
2240
  */
2241
  function wp_review_get_schema_review_rating( $review, $nested_item = false ) {
2242
 
@@ -2261,8 +2284,9 @@ function wp_review_get_schema_review_rating( $review, $nested_item = false ) {
2261
  'itemReviewed' => $item_reviewed,
2262
  'reviewRating' => array(
2263
  '@type' => 'Rating',
2264
- 'ratingValue' => (string) wp_review_normalize_rating_value( $review['total'], $review['type'] ),
2265
  'bestRating' => $wp_review_rating_types[ $review['type'] ]['max'],
 
2266
  ),
2267
  'author' => array(
2268
  '@type' => 'Person',
@@ -2281,11 +2305,11 @@ function wp_review_get_schema_review_rating( $review, $nested_item = false ) {
2281
  }
2282
 
2283
  /**
2284
- * Gets schema user rating.
2285
  *
2286
- * @param array $review Review data.
2287
  * @param bool $nested_item Is nested item or not.
2288
- * @return mixed|void
2289
  */
2290
  function wp_review_get_schema_user_rating( $review, $nested_item = false ) {
2291
 
@@ -2304,8 +2328,14 @@ function wp_review_get_schema_user_rating( $review, $nested_item = false ) {
2304
  );
2305
  }
2306
 
2307
- $total = $review['user_review_total'];
2308
- $count = $review['user_review_count'];
 
 
 
 
 
 
2309
 
2310
  $args = array();
2311
  if ( 0 < (int) $count ) {
@@ -2313,9 +2343,10 @@ function wp_review_get_schema_user_rating( $review, $nested_item = false ) {
2313
  '@context' => 'http://schema.org',
2314
  '@type' => 'aggregateRating',
2315
  'itemReviewed' => $item_reviewed,
2316
- 'ratingValue' => (string) wp_review_normalize_rating_value( $total, $review['type'] ),
2317
  'bestRating' => $wp_review_rating_types[ $review['user_review_type'] ]['max'],
2318
  'ratingCount' => $count,
 
2319
  );
2320
  }
2321
 
@@ -2335,7 +2366,7 @@ function wp_review_get_schema_user_rating( $review, $nested_item = false ) {
2335
  * Gets reviewed item name.
2336
  *
2337
  * @param array $review Review data.
2338
- * @return mixed|void
2339
  */
2340
  function wp_review_get_reviewed_item_name( $review ) {
2341
 
@@ -2361,13 +2392,29 @@ function wp_review_get_schema_nested_user_rating_args( $review ) {
2361
 
2362
  global $wp_review_rating_types;
2363
  $args = array();
2364
- if ( 0 < (int) $review['user_review_count'] ) {
2365
- $args = array(
2366
- '@type' => 'aggregateRating',
2367
- 'ratingValue' => (string) wp_review_normalize_rating_value( $review['user_review_total'], $review['type'] ),
2368
- 'bestRating' => $wp_review_rating_types[ $review['user_review_type'] ]['max'],
2369
- 'ratingCount' => $review['user_review_count'],
2370
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2371
  }
2372
 
2373
  return apply_filters( 'wp_review_get_schema_nested_user_rating_args', $args, $review );
@@ -2380,14 +2427,20 @@ function wp_review_get_schema_nested_user_rating_args( $review ) {
2380
  * @return array
2381
  */
2382
  function wp_review_get_schema_nested_review_args( $review ) {
 
 
 
 
 
2383
  global $wp_review_rating_types;
2384
 
2385
  $args = array(
2386
  '@type' => 'Review',
2387
  'reviewRating' => array(
2388
  '@type' => 'Rating',
2389
- 'ratingValue' => (string) wp_review_normalize_rating_value( $review['total'], $review['type'] ),
2390
  'bestRating' => $wp_review_rating_types[ $review['type'] ]['max'],
 
2391
  ),
2392
  'author' => array(
2393
  '@type' => 'Person',
@@ -2423,26 +2476,31 @@ function wp_review_get_schema_nested_item_args( $review ) {
2423
  if ( ! empty( $data['omit'] ) ) {
2424
  continue;
2425
  }
 
2426
  if ( isset( $schema_data[ $data['name'] ] ) && ! empty( $schema_data[ $data['name'] ] ) ) {
 
 
 
2427
  if ( isset( $data['multiline'] ) && $data['multiline'] ) {
2428
- $schema_data[ $data['name'] ] = preg_split( '/\r\n|[\r\n]/', $schema_data[ $data['name'] ] );
2429
  }
 
2430
  if ( isset( $data['part_of'] ) ) {
2431
  $args[ $data['part_of'] ]['@type'] = $data['@type'];
2432
  if ( 'image' === $data['type'] ) {
2433
- $args[ $data['part_of'] ][ $data['name'] ] = $schema_data[ $data['name'] ]['url'];
2434
- } elseif ( in_array( $data['name'], apply_filters( 'wp_reviev_schema_ISO_8601_duration_items', array( 'prepTime', 'cookTime', 'totalTime', 'duration' ) ) ) ) { // phpcs:ignore
2435
- $args[ $data['part_of'] ][ $data['name'] ] = 'PT' . $schema_data[ $data['name'] ];
2436
  } else {
2437
- $args[ $data['part_of'] ][ $data['name'] ] = $schema_data[ $data['name'] ];
2438
  }
2439
  } else {
2440
  if ( 'image' === $data['type'] ) {
2441
- $args[ $data['name'] ] = $schema_data[ $data['name'] ]['url'];
2442
- } elseif ( in_array( $data['name'], apply_filters( 'wp_reviev_schema_ISO_8601_duration_items', array( 'prepTime', 'cookTime', 'totalTime', 'duration' ) ) ) ) { // phpcs:ignore
2443
- $args[ $data['name'] ] = 'PT' . $schema_data[ $data['name'] ];
2444
  } else {
2445
- $args[ $data['name'] ] = $schema_data[ $data['name'] ];
2446
  }
2447
  }
2448
  }
@@ -2450,6 +2508,27 @@ function wp_review_get_schema_nested_item_args( $review ) {
2450
  }
2451
  }
2452
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2453
  // Nested aggregateRating is recommended in some types ( SoftwareApplication, Recipe ).
2454
  if ( in_array( $review['schema'], apply_filters( 'wp_review_schema_force_nested_user_rating_types', array( 'SoftwareApplication', 'Recipe' ) ) ) && ( $review['user_review'] || $review['comments_review'] ) ) {
2455
  $aggregate_rating = wp_review_get_schema_nested_user_rating_args( $review );
@@ -2477,12 +2556,19 @@ function wp_review_get_ldjson_data( $type, $data, $review ) {
2477
 
2478
  switch ( $type ) {
2479
  case 'Article':
 
 
 
 
 
 
 
2480
  $ldjson_data = array(
2481
  'mainEntityOfPage' => array(
2482
  '@type' => 'Webpage',
2483
  '@id' => get_permalink( $post_id ),
2484
  ),
2485
- 'headline' => ! empty( $data['headline'] ) ? $data['headline'] : '',
2486
  'image' => array(
2487
  '@type' => 'ImageObject',
2488
  'url' => ! empty( $data['image']['url'] ) ? esc_url( $data['image']['url'] ) : '',
@@ -3172,6 +3258,86 @@ function wp_review_schema_types() {
3172
  }
3173
 
3174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3175
  /**
3176
  * Gets schema type data.
3177
  *
@@ -3182,7 +3348,7 @@ function wp_review_schema_types() {
3182
  */
3183
  function wp_review_get_schema_type_data( $type ) {
3184
  $types = wp_review_schema_types();
3185
- if ( ! isset( $types[ $type ] ) ) {
3186
  return false;
3187
  }
3188
  return $types[ $type ];
@@ -3218,6 +3384,227 @@ function wp_review_nl2list( $str ) {
3218
  return '<li>' . implode( '</li><li>', $lines ) . '</li>';
3219
  }
3220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3221
 
3222
  /**
3223
  * Normalizes the rating value base on rating type.
925
  $schemas = wp_review_schema_types();
926
 
927
  if ( empty( $schema ) || ! isset( $schemas[ $schema ] ) ) {
928
+ $schema = wp_review_option( 'default_schema_type', 'none' );
929
+ if ( in_array( $schema, array_keys( wp_review_get_deprecated_schema_types() ) ) ) {
930
+ $schema = 'none';
931
+ }
932
  }
933
 
934
  return $schema;
2099
  return '';
2100
  }
2101
 
 
 
 
 
2102
  $output = '';
2103
 
2104
+ $nesting_mode = apply_filters( 'wp_review_schema_nesting_mode', 'type' );// type, rating, none.
2105
 
2106
  // Force rating nesting in certain types ( weird results in testing tool otherwise ).
2107
+ if ( in_array( $review['schema'], apply_filters( 'wp_review_schema_force_nested_rating_types', array( 'Movie', 'Book' ) ), true ) ) {
2108
  $nesting_mode = 'rating';
2109
  }
2110
 
2111
  // If type requires nested aggregateRating don't nest it in aggregateRating.
2112
+ if ( in_array( $review['schema'], apply_filters( 'wp_review_schema_force_nested_user_rating_types', array( 'SoftwareApplication', 'Recipe' ) ), true ) && in_array( $review['rating_schema'], array( 'visitors', 'comments' ), true ) ) {
2113
  $nesting_mode = 'rating';
2114
  }
2115
 
2116
  switch ( $nesting_mode ) {
2117
 
2118
  case 'type': // schema.org typed element ( Movie, Recipe, etc) nested in review/aggregateRating type.
2119
+ if ( in_array( $review['rating_schema'], array( 'visitors', 'comments' ), true ) ) {
2120
  $output .= wp_review_get_schema_user_rating( $review, true );
2121
  } else {
2122
  $output .= wp_review_get_schema_review_rating( $review, true );
2129
 
2130
  case 'none': // separated reviewed item type ( Movie, Recipe, etc) and review/aggregateRating.
2131
  $output .= wp_review_get_schema_type( $review );
2132
+ if ( in_array( $review['rating_schema'], array( 'visitors', 'comments' ), true ) ) {
2133
  $output .= wp_review_get_schema_user_rating( $review );
2134
  } else {
2135
  $output .= wp_review_get_schema_review_rating( $review );
2142
  }
2143
 
2144
  /**
2145
+ * Gets review schema.
2146
  *
2147
+ * @param array $review Review data.
2148
  * @param bool $nested_rating Is nested rating or not.
2149
+ * @return string
2150
  */
2151
  function wp_review_get_schema_type( $review, $nested_rating = false ) {
2152
 
2170
  if ( ! empty( $data['omit'] ) ) {
2171
  continue;
2172
  }
2173
+ $name = ! empty( $data['custom_name'] ) ? strip_tags( $data['custom_name'] ) : $data['name'];
2174
+
2175
+ if ( isset( $review['schema_data'][ $review['schema'] ][ $name ] ) && ! empty( $review['schema_data'][ $review['schema'] ][ $name ] ) ) {
2176
  if ( isset( $data['multiline'] ) && $data['multiline'] ) {
2177
+ $review['schema_data'][ $review['schema'] ][ $name ] = preg_split( '/\r\n|[\r\n]/', $review['schema_data'][ $review['schema'] ][ $name ] );
2178
  }
2179
  if ( isset( $data['part_of'] ) ) {
2180
  $args[ $data['part_of'] ]['@type'] = $data['@type'];
2181
  if ( 'image' === $data['type'] ) {
2182
+ $args[ $data['part_of'] ][ $name ] = $review['schema_data'][ $review['schema'] ][ $name ]['url'];
2183
+ } elseif ( in_array( $name, apply_filters( 'wp_reviev_schema_ISO_8601_duration_items', array( 'prepTime', 'cookTime', 'totalTime', 'duration' ) ) ) ) { // phpcs:ignore
2184
+ $args[ $data['part_of'] ][ $name ] = 'PT' . $review['schema_data'][ $review['schema'] ][ $name ];
2185
  } else {
2186
+ $args[ $data['part_of'] ][ $name ] = $review['schema_data'][ $review['schema'] ][ $name ];
2187
  }
2188
  } else {
2189
  if ( 'image' === $data['type'] ) {
2190
+ $args[ $name ] = $review['schema_data'][ $review['schema'] ][ $name ]['url'];
2191
+ } elseif ( in_array( $name, apply_filters( 'wp_reviev_schema_ISO_8601_duration_items', array( 'prepTime', 'cookTime', 'totalTime', 'duration' ) ) ) ) { // phpcs:ignore
2192
+ $args[ $name ] = 'PT' . $review['schema_data'][ $review['schema'] ][ $name ];
2193
  } else {
2194
+ $args[ $name ] = $review['schema_data'][ $review['schema'] ][ $name ];
2195
  }
2196
  }
2197
  }
2199
  }
2200
 
2201
  // Nested aggregateRating is required in some types ( SoftwareApplication, Recipe ).
2202
+ $force_user_rating = in_array( $review['schema'], apply_filters( 'wp_review_schema_force_nested_user_rating_types', array( 'SoftwareApplication', 'Recipe' ) ), true );
2203
  if ( $force_user_rating ) {
2204
  if ( $review['user_review'] || $review['comments_review'] ) {
2205
  $aggregate_rating = wp_review_get_schema_nested_user_rating_args( $review );
2208
  }
2209
  }
2210
  if ( 'author' === $review['rating_schema'] ) {
2211
+ $review_rating = wp_review_get_schema_nested_review_args( $review );
2212
+ if ( ! empty( $review_rating ) ) {
2213
+ $args['review'] = $review_rating;
2214
+ }
2215
  }
2216
  } elseif ( $nested_rating ) {
2217
+ if ( in_array( $review['rating_schema'], array( 'visitors', 'comments' ), true ) ) {
2218
  if ( $review['user_review'] || $review['comments_review'] ) {
2219
  $aggregate_rating = wp_review_get_schema_nested_user_rating_args( $review );
2220
  if ( ! empty( $aggregate_rating ) ) {
2222
  }
2223
  }
2224
  } else {
2225
+ $review_rating = wp_review_get_schema_nested_review_args( $review );
2226
+ if ( ! empty( $review_rating ) ) {
2227
+ $args['review'] = $review_rating;
2228
+ }
2229
+ }
2230
+ }
2231
+
2232
+ if ( 'Product' === $review['schema'] ) {
2233
+ // Product type recommends both review and aggregateRating.
2234
+ if ( empty( $args['review'] ) ) {
2235
+ $review_rating = wp_review_get_schema_nested_review_args( $review );
2236
+ if ( ! empty( $review_rating ) ) {
2237
+ $args['review'] = $review_rating;
2238
+ }
2239
+ }
2240
+ if ( empty( $args['aggregateRating'] ) ) {
2241
+ $aggregate_rating = wp_review_get_schema_nested_user_rating_args( $review );
2242
+ if ( ! empty( $aggregate_rating ) ) {
2243
+ $args['aggregateRating'] = $aggregate_rating;
2244
+ }
2245
  }
2246
  }
2247
 
2255
  }
2256
 
2257
  /**
2258
+ * Gets schema for review rating.
2259
  *
2260
+ * @param array $review Review data.
2261
  * @param bool $nested_item Is nested item or not.
2262
+ * @return string
2263
  */
2264
  function wp_review_get_schema_review_rating( $review, $nested_item = false ) {
2265
 
2284
  'itemReviewed' => $item_reviewed,
2285
  'reviewRating' => array(
2286
  '@type' => 'Rating',
2287
+ 'ratingValue' => $review['total'],
2288
  'bestRating' => $wp_review_rating_types[ $review['type'] ]['max'],
2289
+ 'worstRating' => 0,
2290
  ),
2291
  'author' => array(
2292
  '@type' => 'Person',
2305
  }
2306
 
2307
  /**
2308
+ * Gets schema for user rating.
2309
  *
2310
+ * @param array $review Review data.
2311
  * @param bool $nested_item Is nested item or not.
2312
+ * @return string
2313
  */
2314
  function wp_review_get_schema_user_rating( $review, $nested_item = false ) {
2315
 
2328
  );
2329
  }
2330
 
2331
+ if ( 'comments' === $review['rating_schema'] ) {
2332
+ $comment_reviews = mts_get_post_comments_reviews( $review['post_id'] );
2333
+ $total = $comment_reviews['rating'];
2334
+ $count = $comment_reviews['count'];
2335
+ } else {
2336
+ $total = $review['user_review_total'];
2337
+ $count = $review['user_review_count'];
2338
+ }
2339
 
2340
  $args = array();
2341
  if ( 0 < (int) $count ) {
2343
  '@context' => 'http://schema.org',
2344
  '@type' => 'aggregateRating',
2345
  'itemReviewed' => $item_reviewed,
2346
+ 'ratingValue' => $total,
2347
  'bestRating' => $wp_review_rating_types[ $review['user_review_type'] ]['max'],
2348
  'ratingCount' => $count,
2349
+ 'worstRating' => 0,
2350
  );
2351
  }
2352
 
2366
  * Gets reviewed item name.
2367
  *
2368
  * @param array $review Review data.
2369
+ * @return string
2370
  */
2371
  function wp_review_get_reviewed_item_name( $review ) {
2372
 
2392
 
2393
  global $wp_review_rating_types;
2394
  $args = array();
2395
+ if ( 'comments' === $review['rating_schema'] ) {
2396
+ $comment_reviews = mts_get_post_comments_reviews( $review['post_id'] );
2397
+ $comments_review_total = $comment_reviews['rating'];
2398
+ $comments_review_count = $comment_reviews['count'];
2399
+ if ( 0 < (int) $comments_review_count ) {
2400
+ $args = array(
2401
+ '@type' => 'aggregateRating',
2402
+ 'ratingValue' => $comments_review_total,
2403
+ 'bestRating' => $wp_review_rating_types[ $review['user_review_type'] ]['max'],
2404
+ 'ratingCount' => $comments_review_count,
2405
+ 'worstRating' => 0,
2406
+ );
2407
+ }
2408
+ } else {
2409
+ if ( 0 < (int) $review['user_review_count'] ) {
2410
+ $args = array(
2411
+ '@type' => 'aggregateRating',
2412
+ 'ratingValue' => $review['user_review_total'],
2413
+ 'bestRating' => $wp_review_rating_types[ $review['user_review_type'] ]['max'],
2414
+ 'ratingCount' => $review['user_review_count'],
2415
+ 'worstRating' => 0,
2416
+ );
2417
+ }
2418
  }
2419
 
2420
  return apply_filters( 'wp_review_get_schema_nested_user_rating_args', $args, $review );
2427
  * @return array
2428
  */
2429
  function wp_review_get_schema_nested_review_args( $review ) {
2430
+
2431
+ if ( ! boolval( $review['total'] ) ) {
2432
+ return apply_filters( 'wp_review_get_schema_nested_review_args', array(), $review );
2433
+ }
2434
+
2435
  global $wp_review_rating_types;
2436
 
2437
  $args = array(
2438
  '@type' => 'Review',
2439
  'reviewRating' => array(
2440
  '@type' => 'Rating',
2441
+ 'ratingValue' => $review['total'],
2442
  'bestRating' => $wp_review_rating_types[ $review['type'] ]['max'],
2443
+ 'worstRating' => 0,
2444
  ),
2445
  'author' => array(
2446
  '@type' => 'Person',
2476
  if ( ! empty( $data['omit'] ) ) {
2477
  continue;
2478
  }
2479
+
2480
  if ( isset( $schema_data[ $data['name'] ] ) && ! empty( $schema_data[ $data['name'] ] ) ) {
2481
+ $value = $schema_data[ $data['name'] ];
2482
+ $name = ! empty( $data['custom_name'] ) ? strip_tags( $data['custom_name'] ) : $data['name'];
2483
+
2484
  if ( isset( $data['multiline'] ) && $data['multiline'] ) {
2485
+ $value = preg_split( '/\r\n|[\r\n]/', $value );
2486
  }
2487
+
2488
  if ( isset( $data['part_of'] ) ) {
2489
  $args[ $data['part_of'] ]['@type'] = $data['@type'];
2490
  if ( 'image' === $data['type'] ) {
2491
+ $args[ $data['part_of'] ][ $name ] = $value['url'];
2492
+ } elseif ( in_array( $name, apply_filters( 'wp_reviev_schema_ISO_8601_duration_items', array( 'prepTime', 'cookTime', 'totalTime', 'duration' ) ) ) ) { // phpcs:ignore
2493
+ $args[ $data['part_of'] ][ $name ] = 'PT' . $value;
2494
  } else {
2495
+ $args[ $data['part_of'] ][ $name ] = $value;
2496
  }
2497
  } else {
2498
  if ( 'image' === $data['type'] ) {
2499
+ $args[ $name ] = $value['url'];
2500
+ } elseif ( in_array( $name, apply_filters( 'wp_reviev_schema_ISO_8601_duration_items', array( 'prepTime', 'cookTime', 'totalTime', 'duration' ) ) ) ) { // phpcs:ignore
2501
+ $args[ $name ] = 'PT' . $value;
2502
  } else {
2503
+ $args[ $name ] = $value;
2504
  }
2505
  }
2506
  }
2508
  }
2509
  }
2510
 
2511
+ // Add aggregateRating to Recipe.
2512
+ if ( 'Recipe' === $review['schema'] ) {
2513
+ $args['aggregateRating'] = $review['total'];
2514
+ }
2515
+
2516
+ if ( 'Product' === $review['schema'] ) {
2517
+ // Product type recommends both review and aggregateRating.
2518
+ if ( empty( $args['review'] ) ) {
2519
+ $review_rating = wp_review_get_schema_nested_review_args( $review );
2520
+ if ( ! empty( $review_rating ) ) {
2521
+ $args['review'] = $review_rating;
2522
+ }
2523
+ }
2524
+ if ( empty( $args['aggregateRating'] ) ) {
2525
+ $aggregate_rating = wp_review_get_schema_nested_user_rating_args( $review );
2526
+ if ( ! empty( $aggregate_rating ) ) {
2527
+ $args['aggregateRating'] = $aggregate_rating;
2528
+ }
2529
+ }
2530
+ }
2531
+
2532
  // Nested aggregateRating is recommended in some types ( SoftwareApplication, Recipe ).
2533
  if ( in_array( $review['schema'], apply_filters( 'wp_review_schema_force_nested_user_rating_types', array( 'SoftwareApplication', 'Recipe' ) ) ) && ( $review['user_review'] || $review['comments_review'] ) ) {
2534
  $aggregate_rating = wp_review_get_schema_nested_user_rating_args( $review );
2556
 
2557
  switch ( $type ) {
2558
  case 'Article':
2559
+ $headline = ! empty( $data['headline'] ) ? $data['headline'] : '';
2560
+
2561
+ // Limit headline length to 110 characters.
2562
+ if ( strlen( $headline ) > 110 ) {
2563
+ $headline = substr( $headline, 0, 109 ) . '&hellip;';
2564
+ }
2565
+
2566
  $ldjson_data = array(
2567
  'mainEntityOfPage' => array(
2568
  '@type' => 'Webpage',
2569
  '@id' => get_permalink( $post_id ),
2570
  ),
2571
+ 'headline' => $headline,
2572
  'image' => array(
2573
  '@type' => 'ImageObject',
2574
  'url' => ! empty( $data['image']['url'] ) ? esc_url( $data['image']['url'] ) : '',
3258
  }
3259
 
3260
 
3261
+ /**
3262
+ * Gets supported schema types.
3263
+ *
3264
+ * @return array
3265
+ */
3266
+ function wp_review_get_supported_schema_types() {
3267
+ static $result = null;
3268
+ if ( is_null( $result ) ) {
3269
+ $schemas = wp_review_schema_types();
3270
+ $supported = array();
3271
+ foreach ( $schemas as $key => $value ) {
3272
+ if ( empty( $value['deprecated'] ) ) {
3273
+ $supported[ $key ] = $value;
3274
+ }
3275
+ }
3276
+ $result = $supported;
3277
+ }
3278
+ return $result;
3279
+ }
3280
+
3281
+
3282
+ /**
3283
+ * Gets deprecated schema types.
3284
+ *
3285
+ * @return array
3286
+ */
3287
+ function wp_review_get_deprecated_schema_types() {
3288
+ static $result = null;
3289
+ if ( is_null( $result ) ) {
3290
+ $schemas = wp_review_schema_types();
3291
+ $result = wp_list_filter( $schemas, array( 'deprecated' => true ) );
3292
+ }
3293
+ return $result;
3294
+ }
3295
+
3296
+
3297
+ /**
3298
+ * Checks if there are any posts use deprecated schema type.
3299
+ *
3300
+ * @return bool
3301
+ */
3302
+ function wp_review_has_deprecated_schema_posts() {
3303
+ $query = new WP_Query(
3304
+ array(
3305
+ 'post_type' => 'any',
3306
+ 'posts_per_page' => 1,
3307
+ 'update_post_term_cache' => false,
3308
+ 'fields' => 'ids',
3309
+ 'ignore_sticky_posts' => true,
3310
+ 'cache_results' => false,
3311
+ 'meta_query' => array(
3312
+ 'relation' => 'OR',
3313
+ array(
3314
+ 'key' => 'wp_review_schema',
3315
+ 'value' => array( 'Article', 'Painting', 'Place', 'Thing', 'WebSite' ),
3316
+ 'compare' => 'IN',
3317
+ ),
3318
+ array(
3319
+ 'key' => 'wp_review_schema',
3320
+ 'compare' => 'NOT EXISTS',
3321
+ ),
3322
+ ),
3323
+ )
3324
+ );
3325
+ return $query->have_posts();
3326
+ }
3327
+
3328
+
3329
+ /**
3330
+ * Checks if a schema type is deprecated or not.
3331
+ *
3332
+ * @param string $type Schema type.
3333
+ * @return bool
3334
+ */
3335
+ function wp_review_schema_is_deprecated( $type ) {
3336
+ $deprecated = wp_review_get_deprecated_schema_types();
3337
+ return ! empty( $deprecated[ $type ] );
3338
+ }
3339
+
3340
+
3341
  /**
3342
  * Gets schema type data.
3343
  *
3348
  */
3349
  function wp_review_get_schema_type_data( $type ) {
3350
  $types = wp_review_schema_types();
3351
+ if ( ! isset( $types ) ) {
3352
  return false;
3353
  }
3354
  return $types[ $type ];
3384
  return '<li>' . implode( '</li><li>', $lines ) . '</li>';
3385
  }
3386
 
3387
+ /**
3388
+ * Shows Google Place Review schema.
3389
+ *
3390
+ * @since 3.0.4
3391
+ *
3392
+ * @param array $review Review data.
3393
+ * @param array $place Place data.
3394
+ */
3395
+ function wp_review_google_place_review_schema( $review, $place ) {
3396
+ $markup = array(
3397
+ '@context' => 'http://schema.org',
3398
+ '@type' => 'Review',
3399
+ 'reviewBody' => $review['text'],
3400
+ 'author' => array(
3401
+ '@type' => 'Person',
3402
+ 'name' => $review['author_name'],
3403
+ 'url' => $review['author_url'],
3404
+ 'image' => $review['profile_photo_url'],
3405
+ ),
3406
+ 'itemReviewed' => array(
3407
+ '@type' => 'LocalBusiness',
3408
+ 'name' => $place['name'],
3409
+ 'url' => $place['url'],
3410
+ ),
3411
+ 'reviewRating' => array(
3412
+ '@type' => 'Rating',
3413
+ 'ratingValue' => $review['rating'],
3414
+ 'bestRating' => 5,
3415
+ 'worstRating' => 0,
3416
+ ),
3417
+ );
3418
+
3419
+ /**
3420
+ * Allow changing schema markup for Google place review.
3421
+ *
3422
+ * @since 3.0.4
3423
+ *
3424
+ * @param array $markup Schema markup.
3425
+ * @param array $review Review data.
3426
+ * @param array $place Place data.
3427
+ */
3428
+ $markup = apply_filters( 'wp_review_google_place_review_schema_markup', $markup, $review, $place );
3429
+
3430
+ printf( '<script type="application/ld+json">%s</script>', wp_json_encode( $markup ) );
3431
+ }
3432
+
3433
+
3434
+ /**
3435
+ * Shows Yelp schema.
3436
+ *
3437
+ * @since 3.0.4
3438
+ *
3439
+ * @param array $business Business data.
3440
+ */
3441
+ function wp_review_yelp_schema( $business ) {
3442
+ $markup = array(
3443
+ '@context' => 'http://schema.org',
3444
+ '@type' => 'LocalBusiness',
3445
+ 'name' => $business['name'],
3446
+ 'url' => $business['url'],
3447
+ 'image' => $business['image_url'],
3448
+ 'address' => implode( ', ', $business['location']['display_address'] ),
3449
+ 'priceRange' => $business['price'],
3450
+ 'telephone' => $business['phone'],
3451
+ 'aggregateRating' => array(
3452
+ '@type' => 'AggregateRating',
3453
+ 'ratingValue' => $business['rating'],
3454
+ 'ratingCount' => $business['review_count'],
3455
+ 'bestRating' => 5,
3456
+ 'worstRating' => 0,
3457
+ ),
3458
+ );
3459
+
3460
+ /**
3461
+ * Allow changing schema markup for Yelp.
3462
+ *
3463
+ * @since 3.0.4
3464
+ *
3465
+ * @param array $markup Schema markup.
3466
+ * @param array $business Business data.
3467
+ */
3468
+ $markup = apply_filters( 'wp_review_yelp_schema_markup', $markup, $business );
3469
+
3470
+ printf( '<script type="application/ld+json">%s</script>', wp_json_encode( $markup ) );
3471
+ }
3472
+
3473
+
3474
+ /**
3475
+ * Shows Yelp review schema.
3476
+ *
3477
+ * @since 3.0.4
3478
+ *
3479
+ * @param array $review Review data.
3480
+ * @param array $business Business data.
3481
+ */
3482
+ function wp_review_yelp_review_schema( $review, $business ) {
3483
+ $markup = array(
3484
+ '@context' => 'http://schema.org',
3485
+ '@type' => 'Review',
3486
+ 'reviewBody' => $review['text'],
3487
+ 'author' => array(
3488
+ '@type' => 'Person',
3489
+ 'name' => $review['user']['name'],
3490
+ 'image' => $review['user']['image_url'],
3491
+ ),
3492
+ 'itemReviewed' => array(
3493
+ '@type' => 'LocalBusiness',
3494
+ 'name' => $business['name'],
3495
+ 'url' => $business['url'],
3496
+ 'image' => $business['image_url'],
3497
+ 'address' => implode( ', ', $business['location']['display_address'] ),
3498
+ 'priceRange' => $business['price'],
3499
+ 'telephone' => $business['phone'],
3500
+ ),
3501
+ 'reviewRating' => array(
3502
+ '@type' => 'Rating',
3503
+ 'ratingValue' => $review['rating'],
3504
+ 'bestRating' => 5,
3505
+ 'worstRating' => 0,
3506
+ ),
3507
+ );
3508
+
3509
+ /**
3510
+ * Allow changing schema markup for Yelp review.
3511
+ *
3512
+ * @since 3.0.4
3513
+ *
3514
+ * @param array $markup Schema markup.
3515
+ * @param array $review Review data.
3516
+ * @param array $business Business data.
3517
+ */
3518
+ $markup = apply_filters( 'wp_review_yelp_review_schema_markup', $markup, $review, $business );
3519
+
3520
+ printf( '<script type="application/ld+json">%s</script>', wp_json_encode( $markup ) );
3521
+ }
3522
+
3523
+
3524
+ /**
3525
+ * Shows Facebook page schema.
3526
+ *
3527
+ * @since 3.0.4
3528
+ *
3529
+ * @param array $page Page data.
3530
+ */
3531
+ function wp_review_facebook_page_schema( $page ) {
3532
+ if ( empty( $page->overall_star_rating ) ) {
3533
+ return;
3534
+ }
3535
+ $markup = array(
3536
+ '@context' => 'http://schema.org',
3537
+ '@type' => 'LocalBusiness',
3538
+ 'name' => $page->name,
3539
+ 'url' => "https://facebook.com/{$page->id}",
3540
+ 'aggregateRating' => array(
3541
+ '@type' => 'AggregateRating',
3542
+ 'ratingValue' => $page->overall_star_rating,
3543
+ 'ratingCount' => $page->rating_count,
3544
+ 'bestRating' => 5,
3545
+ 'worstRating' => 0,
3546
+ ),
3547
+ );
3548
+
3549
+ /**
3550
+ * Allow changing schema markup for Facebook page.
3551
+ *
3552
+ * @since 3.0.4
3553
+ *
3554
+ * @param array $markup Schema markup.
3555
+ * @param array $page Page data.
3556
+ */
3557
+ $markup = apply_filters( 'wp_review_facebook_page_schema_markup', $markup, $page );
3558
+
3559
+ printf( '<script type="application/ld+json">%s</script>', wp_json_encode( $markup ) );
3560
+ }
3561
+
3562
+
3563
+ /**
3564
+ * Shows Facebook page review schema.
3565
+ *
3566
+ * @since 3.0.4
3567
+ *
3568
+ * @param object $review Review data.
3569
+ * @param array $page Page data.
3570
+ */
3571
+ function wp_review_facebook_page_review_schema( $review, $page ) {
3572
+ $markup = array(
3573
+ '@context' => 'http://schema.org',
3574
+ '@type' => 'Review',
3575
+ 'reviewBody' => $review->review_text,
3576
+ 'author' => array(
3577
+ '@type' => 'Person',
3578
+ 'name' => ! empty( $review->reviewer ) ? $review->reviewer->name : '',
3579
+ 'image' => ! empty( $review->reviewer ) ? wp_review_fb_user_avatar_url( $review->reviewer->id ) : '',
3580
+ ),
3581
+ 'itemReviewed' => array(
3582
+ '@type' => 'LocalBusiness',
3583
+ 'name' => $page->name,
3584
+ 'url' => "https://facebook.com/{$page->id}",
3585
+ ),
3586
+ 'reviewRating' => array(
3587
+ '@type' => 'Rating',
3588
+ 'ratingValue' => $review->rating,
3589
+ 'bestRating' => 5,
3590
+ 'worstRating' => 0,
3591
+ ),
3592
+ );
3593
+
3594
+ /**
3595
+ * Allow changing schema markup for Facebook page review.
3596
+ *
3597
+ * @since 3.0.4
3598
+ *
3599
+ * @param array $markup Schema markup.
3600
+ * @param array $review Review data.
3601
+ * @param array $page Page data.
3602
+ */
3603
+ $markup = apply_filters( 'wp_review_facebook_page_review_schema_markup', $markup, $review, $page );
3604
+
3605
+ printf( '<script type="application/ld+json">%s</script>', wp_json_encode( $markup ) );
3606
+ }
3607
+
3608
 
3609
  /**
3610
  * Normalizes the rating value base on rating type.
includes/schemas.php CHANGED
@@ -3,56 +3,1605 @@
3
  * Schemas list
4
  *
5
  * @package WP_Review
6
- * @since 3.0.0
7
  */
8
 
9
  return array(
10
  'none' => array(
11
  'label' => __( 'None', 'wp-review' ),
12
  ),
13
- 'Article' => array(
14
- 'label' => __( 'Article', 'wp-review' ),
15
- ),
16
  'Book' => array(
17
- 'label' => __( 'Book', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  ),
19
  'Game' => array(
20
- 'label' => __( 'Game', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ),
22
  'Movie' => array(
23
- 'label' => __( 'Movie', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  ),
25
- 'MusicRecording' => array(
26
- 'label' => __( 'MusicRecording', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ),
28
- 'Painting' => array(
29
- 'label' => __( 'Painting', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  ),
31
- 'Place' => array(
32
- 'label' => __( 'Place', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  ),
34
  'Product' => array(
35
- 'label' => __( 'Product', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ),
37
  'Recipe' => array(
38
- 'label' => __( 'Recipe', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  ),
40
  'Restaurant' => array(
41
- 'label' => __( 'Restaurant', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  ),
43
  'SoftwareApplication' => array(
44
- 'label' => __( 'SoftwareApplication', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  ),
46
  'Store' => array(
47
- 'label' => __( 'Store', 'wp-review' ),
48
- ),
49
- 'Thing' => array(
50
- 'label' => __( 'Thing (Default)', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  ),
52
  'TVSeries' => array(
53
- 'label' => __( 'TVSeries', 'wp-review' ),
54
- ),
55
- 'WebSite' => array(
56
- 'label' => __( 'WebSite', 'wp-review' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  ),
58
  );
3
  * Schemas list
4
  *
5
  * @package WP_Review
6
+ * @since 5.3.0
7
  */
8
 
9
  return array(
10
  'none' => array(
11
  'label' => __( 'None', 'wp-review' ),
12
  ),
 
 
 
13
  'Book' => array(
14
+ 'label' => __( 'Book', 'wp-review' ),
15
+ 'fields' => array(
16
+ array(
17
+ 'name' => 'name',
18
+ 'label' => __( 'Book Title', 'wp-review' ),
19
+ 'type' => 'text',
20
+ 'default' => '',
21
+ ),
22
+ array(
23
+ 'name' => 'description',
24
+ 'label' => __( 'Book Description', 'wp-review' ),
25
+ 'type' => 'textarea',
26
+ 'default' => '',
27
+ ),
28
+ array(
29
+ 'name' => 'image',
30
+ 'label' => __( 'Book Image', 'wp-review' ),
31
+ 'type' => 'image',
32
+ 'default' => '',
33
+ ),
34
+ array(
35
+ 'name' => 'more_text',
36
+ 'label' => __( 'More link text', 'wp-review' ),
37
+ 'type' => 'text',
38
+ 'default' => __( '[ More ]', 'wp-review' ),
39
+ 'omit' => true,
40
+ ),
41
+ array(
42
+ 'name' => 'url',
43
+ 'label' => __( 'More link URL', 'wp-review' ),
44
+ 'type' => 'text',
45
+ 'default' => '',
46
+ ),
47
+ array(
48
+ 'name' => 'use_button_style',
49
+ 'label' => __( 'Use button style', 'wp-review' ),
50
+ 'type' => 'switch',
51
+ 'default' => false,
52
+ 'omit' => true,
53
+ 'on_label' => __( 'Button', 'wp-review' ),
54
+ 'off_label' => __( 'Link', 'wp-review' ),
55
+ ),
56
+ array(
57
+ 'name' => 'author',
58
+ 'label' => __( 'Book Author', 'wp-review' ),
59
+ 'type' => 'text',
60
+ 'default' => '',
61
+ ),
62
+ array(
63
+ 'name' => 'bookEdition',
64
+ 'label' => __( 'Book Edition', 'wp-review' ),
65
+ 'type' => 'text',
66
+ 'default' => '',
67
+ ),
68
+ array(
69
+ 'name' => 'bookFormat',
70
+ 'label' => __( 'Book Format', 'wp-review' ),
71
+ 'type' => 'select',
72
+ 'default' => '',
73
+ 'options' => array(
74
+ '' => '---',
75
+ 'AudiobookFormat' => 'AudiobookFormat',
76
+ 'EBook' => 'EBook',
77
+ 'Hardcover' => 'Hardcover',
78
+ 'Paperback' => 'Paperback',
79
+ ),
80
+ ),
81
+ array(
82
+ 'name' => 'publisher',
83
+ 'label' => __( 'Publisher - Orgnization', 'wp-review' ),
84
+ 'type' => 'text',
85
+ 'default' => '',
86
+ 'part_of' => 'publisher',
87
+ '@type' => 'Organization',
88
+ ),
89
+ array(
90
+ 'name' => 'publisher_logo',
91
+ 'label' => __( 'Publisher Logo', 'wp-review' ),
92
+ 'type' => 'image',
93
+ 'default' => '',
94
+ 'part_of' => 'publisher',
95
+ 'custom_name' => 'logo',
96
+ '@type' => 'Organization',
97
+ ),
98
+ array(
99
+ 'name' => 'datePublished',
100
+ 'label' => __( 'Date published', 'wp-review' ),
101
+ 'type' => 'date',
102
+ 'default' => '',
103
+ ),
104
+ array(
105
+ 'name' => 'illustrator',
106
+ 'label' => __( 'Illustrator', 'wp-review' ),
107
+ 'type' => 'text',
108
+ 'default' => '',
109
+ ),
110
+ array(
111
+ 'name' => 'isbn',
112
+ 'label' => __( 'ISBN', 'wp-review' ),
113
+ 'type' => 'text',
114
+ 'default' => '',
115
+ ),
116
+ array(
117
+ 'name' => 'numberOfPages',
118
+ 'label' => __( 'Number Of Pages', 'wp-review' ),
119
+ 'type' => 'number',
120
+ 'default' => '',
121
+ ),
122
+ ),
123
+ ),
124
+ 'Course' => array(
125
+ 'label' => __( 'Course', 'wp-review' ),
126
+ 'fields' => array(
127
+ array(
128
+ 'name' => 'name',
129
+ 'label' => __( 'Name', 'wp-review' ),
130
+ 'type' => 'text',
131
+ 'default' => '',
132
+ ),
133
+ array(
134
+ 'name' => 'description',
135
+ 'label' => __( 'Description', 'wp-review' ),
136
+ 'type' => 'textarea',
137
+ 'default' => '',
138
+ ),
139
+ array(
140
+ 'name' => 'more_text',
141
+ 'label' => __( 'More link text', 'wp-review' ),
142
+ 'type' => 'text',
143
+ 'default' => __( '[ More ]', 'wp-review' ),
144
+ 'omit' => true,
145
+ ),
146
+ array(
147
+ 'name' => 'url',
148
+ 'label' => __( 'More link URL', 'wp-review' ),
149
+ 'type' => 'text',
150
+ 'default' => '',
151
+ ),
152
+ array(
153
+ 'name' => 'use_button_style',
154
+ 'label' => __( 'Use button style', 'wp-review' ),
155
+ 'type' => 'switch',
156
+ 'default' => false,
157
+ 'omit' => true,
158
+ 'on_label' => __( 'Button', 'wp-review' ),
159
+ 'off_label' => __( 'Link', 'wp-review' ),
160
+ ),
161
+ array(
162
+ 'name' => 'author',
163
+ 'label' => __( 'Author', 'wp-review' ),
164
+ 'type' => 'text',
165
+ 'default' => '',
166
+ ),
167
+ array(
168
+ 'name' => 'provider',
169
+ 'label' => __( 'Provider', 'wp-review' ),
170
+ 'type' => 'text',
171
+ 'default' => '',
172
+ 'part_of' => 'provider',
173
+ 'custom_name' => 'name',
174
+ '@type' => 'Organization',
175
+ ),
176
+ array(
177
+ 'name' => 'provider_logo',
178
+ 'label' => __( 'Provider Logo', 'wp-review' ),
179
+ 'type' => 'image',
180
+ 'default' => '',
181
+ 'part_of' => 'provider',
182
+ 'custom_name' => 'logo',
183
+ '@type' => 'Organization',
184
+ ),
185
+ ),
186
+ ),
187
+ 'CreativeWorkSeason' => array(
188
+ 'label' => __( 'CreativeWorkSeason', 'wp-review' ),
189
+ 'fields' => array(
190
+ array(
191
+ 'name' => 'name',
192
+ 'label' => __( 'Title', 'wp-review' ),
193
+ 'type' => 'text',
194
+ 'default' => '',
195
+ ),
196
+ array(
197
+ 'name' => 'description',
198
+ 'label' => __( 'Description', 'wp-review' ),
199
+ 'type' => 'textarea',
200
+ 'default' => '',
201
+ ),
202
+ array(
203
+ 'name' => 'image',
204
+ 'label' => __( 'Movie Image', 'wp-review' ),
205
+ 'type' => 'image',
206
+ 'default' => '',
207
+ ),
208
+ array(
209
+ 'name' => 'more_text',
210
+ 'label' => __( 'More link text', 'wp-review' ),
211
+ 'type' => 'text',
212
+ 'default' => __( '[ More ]', 'wp-review' ),
213
+ 'omit' => true,
214
+ ),
215
+ array(
216
+ 'name' => 'url',
217
+ 'label' => __( 'More link URL', 'wp-review' ),
218
+ 'type' => 'text',
219
+ 'default' => '',
220
+ ),
221
+ array(
222
+ 'name' => 'use_button_style',
223
+ 'label' => __( 'Use button style', 'wp-review' ),
224
+ 'type' => 'switch',
225
+ 'default' => false,
226
+ 'omit' => true,
227
+ 'on_label' => __( 'Button', 'wp-review' ),
228
+ 'off_label' => __( 'Link', 'wp-review' ),
229
+ ),
230
+ array(
231
+ 'name' => 'startDate',
232
+ 'label' => __( 'Start date', 'wp-review' ),
233
+ 'type' => 'date',
234
+ 'default' => '',
235
+ ),
236
+ array(
237
+ 'name' => 'endDate',
238
+ 'label' => __( 'End date', 'wp-review' ),
239
+ 'type' => 'date',
240
+ 'default' => '',
241
+ ),
242
+ array(
243
+ 'name' => 'numberOfEpisodes',
244
+ 'label' => __( 'Number of episodes', 'wp-review' ),
245
+ 'type' => 'text',
246
+ 'default' => '',
247
+ ),
248
+ array(
249
+ 'name' => 'seasonNumber',
250
+ 'label' => __( 'Season number', 'wp-review' ),
251
+ 'type' => 'text',
252
+ 'default' => '',
253
+ ),
254
+ array(
255
+ 'name' => 'episode',
256
+ 'label' => __( 'Episode', 'wp-review' ),
257
+ 'type' => 'text',
258
+ 'default' => '',
259
+ ),
260
+ array(
261
+ 'name' => 'partOfSeries',
262
+ 'label' => __( 'Part of series', 'wp-review' ),
263
+ 'type' => 'text',
264
+ 'default' => '',
265
+ ),
266
+ array(
267
+ 'name' => 'author',
268
+ 'label' => __( 'Author', 'wp-review' ),
269
+ 'type' => 'text',
270
+ 'default' => '',
271
+ ),
272
+ array(
273
+ 'name' => 'productionCompany',
274
+ 'label' => __( 'Production company', 'wp-review' ),
275
+ 'type' => 'text',
276
+ 'default' => '',
277
+ ),
278
+ array(
279
+ 'name' => 'director',
280
+ 'label' => __( 'Director(s)', 'wp-review' ),
281
+ 'type' => 'textarea',
282
+ 'multiline' => true,
283
+ 'default' => '',
284
+ 'info' => __( 'Add one director per line', 'wp-review' ),
285
+ ),
286
+ array(
287
+ 'name' => 'actor',
288
+ 'label' => __( 'Actor(s)', 'wp-review' ),
289
+ 'type' => 'textarea',
290
+ 'multiline' => true,
291
+ 'default' => '',
292
+ 'info' => __( 'Add one actor per line', 'wp-review' ),
293
+ ),
294
+ ),
295
+ ),
296
+ 'CreativeWorkSeries' => array(
297
+ 'label' => __( 'CreativeWorkSeries', 'wp-review' ),
298
+ 'fields' => array(
299
+ array(
300
+ 'name' => 'name',
301
+ 'label' => __( 'Title', 'wp-review' ),
302
+ 'type' => 'text',
303
+ 'default' => '',
304
+ ),
305
+ array(
306
+ 'name' => 'description',
307
+ 'label' => __( 'Description', 'wp-review' ),
308
+ 'type' => 'textarea',
309
+ 'default' => '',
310
+ ),
311
+ array(
312
+ 'name' => 'image',
313
+ 'label' => __( 'Movie Image', 'wp-review' ),
314
+ 'type' => 'image',
315
+ 'default' => '',
316
+ ),
317
+ array(
318
+ 'name' => 'more_text',
319
+ 'label' => __( 'More link text', 'wp-review' ),
320
+ 'type' => 'text',
321
+ 'default' => __( '[ More ]', 'wp-review' ),
322
+ 'omit' => true,
323
+ ),
324
+ array(
325
+ 'name' => 'url',
326
+ 'label' => __( 'More link URL', 'wp-review' ),
327
+ 'type' => 'text',
328
+ 'default' => '',
329
+ ),
330
+ array(
331
+ 'name' => 'use_button_style',
332
+ 'label' => __( 'Use button style', 'wp-review' ),
333
+ 'type' => 'switch',
334
+ 'default' => false,
335
+ 'omit' => true,
336
+ 'on_label' => __( 'Button', 'wp-review' ),
337
+ 'off_label' => __( 'Link', 'wp-review' ),
338
+ ),
339
+ array(
340
+ 'name' => 'startDate',
341
+ 'label' => __( 'Start date', 'wp-review' ),
342
+ 'type' => 'date',
343
+ 'default' => '',
344
+ ),
345
+ array(
346
+ 'name' => 'endDate',
347
+ 'label' => __( 'End date', 'wp-review' ),
348
+ 'type' => 'date',
349
+ 'default' => '',
350
+ ),
351
+ array(
352
+ 'name' => 'issn',
353
+ 'label' => __( 'International Standard Serial Number (ISSN)', 'wp-review' ),
354
+ 'type' => 'text',
355
+ 'default' => '',
356
+ ),
357
+ array(
358
+ 'name' => 'author',
359
+ 'label' => __( 'Author', 'wp-review' ),
360
+ 'type' => 'text',
361
+ 'default' => '',
362
+ ),
363
+ ),
364
+ ),
365
+ 'Episode' => array(
366
+ 'label' => __( 'Episode', 'wp-review' ),
367
+ 'fields' => array(
368
+ array(
369
+ 'name' => 'name',
370
+ 'label' => __( 'Title', 'wp-review' ),
371
+ 'type' => 'text',
372
+ 'default' => '',
373
+ ),
374
+ array(
375
+ 'name' => 'description',
376
+ 'label' => __( 'Description', 'wp-review' ),
377
+ 'type' => 'textarea',
378
+ 'default' => '',
379
+ ),
380
+ array(
381
+ 'name' => 'image',
382
+ 'label' => __( 'Movie Image', 'wp-review' ),
383
+ 'type' => 'image',
384
+ 'default' => '',
385
+ ),
386
+ array(
387
+ 'name' => 'more_text',
388
+ 'label' => __( 'More link text', 'wp-review' ),
389
+ 'type' => 'text',
390
+ 'default' => __( '[ More ]', 'wp-review' ),
391
+ 'omit' => true,
392
+ ),
393
+ array(
394
+ 'name' => 'url',
395
+ 'label' => __( 'More link URL', 'wp-review' ),
396
+ 'type' => 'text',
397
+ 'default' => '',
398
+ ),
399
+ array(
400
+ 'name' => 'use_button_style',
401
+ 'label' => __( 'Use button style', 'wp-review' ),
402
+ 'type' => 'switch',
403
+ 'default' => false,
404
+ 'omit' => true,
405
+ 'on_label' => __( 'Button', 'wp-review' ),
406
+ 'off_label' => __( 'Link', 'wp-review' ),
407
+ ),
408
+ array(
409
+ 'name' => 'dateCreated',
410
+ 'label' => __( 'Date published', 'wp-review' ),
411
+ 'type' => 'date',
412
+ 'default' => '',
413
+ ),
414
+ array(
415
+ 'name' => 'episodeNumber',
416
+ 'label' => __( 'Episode number', 'wp-review' ),
417
+ 'type' => 'text',
418
+ 'default' => '',
419
+ ),
420
+ array(
421
+ 'name' => 'partOfSeason',
422
+ 'label' => __( 'Part of season', 'wp-review' ),
423
+ 'type' => 'text',
424
+ 'default' => '',
425
+ ),
426
+ array(
427
+ 'name' => 'partOfSeries',
428
+ 'label' => __( 'Part of series', 'wp-review' ),
429
+ 'type' => 'text',
430
+ 'default' => '',
431
+ ),
432
+ array(
433
+ 'name' => 'author',
434
+ 'label' => __( 'Author', 'wp-review' ),
435
+ 'type' => 'text',
436
+ 'default' => '',
437
+ ),
438
+ array(
439
+ 'name' => 'productionCompany',
440
+ 'label' => __( 'Production company', 'wp-review' ),
441
+ 'type' => 'text',
442
+ 'default' => '',
443
+ ),
444
+ array(
445
+ 'name' => 'director',
446
+ 'label' => __( 'Director(s)', 'wp-review' ),
447
+ 'type' => 'textarea',
448
+ 'multiline' => true,
449
+ 'default' => '',
450
+ 'info' => __( 'Add one director per line', 'wp-review' ),
451
+ ),
452
+ array(
453
+ 'name' => 'actor',
454
+ 'label' => __( 'Actor(s)', 'wp-review' ),
455
+ 'type' => 'textarea',
456
+ 'multiline' => true,
457
+ 'default' => '',
458
+ 'info' => __( 'Add one actor per line', 'wp-review' ),
459
+ ),
460
+ array(
461
+ 'name' => 'genre',
462
+ 'label' => __( 'Genre', 'wp-review' ),
463
+ 'type' => 'textarea',
464
+ 'multiline' => true,
465
+ 'default' => '',
466
+ 'info' => __( 'Add one item per line', 'wp-review' ),
467
+ ),
468
+ ),
469
+ ),
470
+ 'Event' => array(
471
+ 'label' => __( 'Event', 'wp-review' ),
472
+ 'fields' => array(
473
+ array(
474
+ 'name' => 'name',
475
+ 'label' => __( 'Event Title', 'wp-review' ),
476
+ 'type' => 'text',
477
+ 'default' => '',
478
+ ),
479
+ array(
480
+ 'name' => 'description',
481
+ 'label' => __( 'Event Description', 'wp-review' ),
482
+ 'type' => 'textarea',
483
+ 'default' => '',
484
+ ),
485
+ array(
486
+ 'name' => 'image',
487
+ 'label' => __( 'Event Image', 'wp-review' ),
488
+ 'type' => 'image',
489
+ 'default' => '',
490
+ ),
491
+ array(
492
+ 'name' => 'more_text',
493
+ 'label' => __( 'More link text', 'wp-review' ),
494
+ 'type' => 'text',
495
+ 'default' => __( '[ More ]', 'wp-review' ),
496
+ 'omit' => true,
497
+ ),
498
+ array(
499
+ 'name' => 'url',
500
+ 'label' => __( 'More link URL', 'wp-review' ),
501
+ 'type' => 'text',
502
+ 'default' => '',
503
+ ),
504
+ array(
505
+ 'name' => 'use_button_style',
506
+ 'label' => __( 'Use button style', 'wp-review' ),
507
+ 'type' => 'switch',
508
+ 'default' => false,
509
+ 'omit' => true,
510
+ 'on_label' => __( 'Button', 'wp-review' ),
511
+ 'off_label' => __( 'Link', 'wp-review' ),
512
+ ),
513
+ array(
514
+ 'name' => 'startDate',
515
+ 'label' => __( 'Start date', 'wp-review' ),
516
+ 'type' => 'date',
517
+ 'default' => '',
518
+ ),
519
+ array(
520
+ 'name' => 'endDate',
521
+ 'label' => __( 'End date', 'wp-review' ),
522
+ 'type' => 'date',
523
+ 'default' => '',
524
+ ),
525
+ array(
526
+ 'name' => 'location_name',
527
+ 'label' => __( 'Location name', 'wp-review' ),
528
+ 'type' => 'text',
529
+ 'default' => '',
530
+ 'part_of' => 'location',
531
+ 'custom_name' => 'name',
532
+ '@type' => 'Place',
533
+ ),
534
+ array(
535
+ 'name' => 'address',
536
+ 'label' => __( 'Address', 'wp-review' ),
537
+ 'type' => 'text',
538
+ 'default' => '',
539
+ 'part_of' => 'location',
540
+ '@type' => 'Place',
541
+ ),
542
+ array(
543
+ 'name' => 'performer',
544
+ 'label' => __( 'Performer', 'wp-review' ),
545
+ 'type' => 'text',
546
+ 'default' => '',
547
+ 'part_of' => 'performer',
548
+ 'custom_name' => 'name',
549
+ '@type' => 'Organization',
550
+ ),
551
+ array(
552
+ 'name' => 'price',
553
+ 'label' => __( 'Offer price', 'wp-review' ),
554
+ 'info' => __( 'Fill "0.0" to show the free price', 'wp-review' ),
555
+ 'type' => 'text',
556
+ 'default' => '',
557
+ 'part_of' => 'offers',
558
+ '@type' => 'Offer',
559
+ ),
560
+ array(
561
+ 'name' => 'priceCurrency',
562
+ 'label' => __( 'Currency', 'wp-review' ),
563
+ 'type' => 'text',
564
+ 'default' => '',
565
+ 'part_of' => 'offers',
566
+ '@type' => 'Offer',
567
+ ),
568
+ array(
569
+ 'name' => 'offer_url',
570
+ 'label' => __( 'Offer URL', 'wp-review' ),
571
+ 'type' => 'text',
572
+ 'default' => '',
573
+ 'part_of' => 'offers',
574
+ 'custom_name' => 'url',
575
+ '@type' => 'Offer',
576
+ ),
577
+ array(
578
+ 'name' => 'validFrom',
579
+ 'label' => __( 'Offer valid from', 'wp-review' ),
580
+ 'type' => 'date',
581
+ 'default' => '',
582
+ 'part_of' => 'offers',
583
+ '@type' => 'Offer',
584
+ ),
585
+ array(
586
+ 'name' => 'availability',
587
+ 'label' => __( 'Availability', 'wp-review' ),
588
+ 'type' => 'select',
589
+ 'default' => '',
590
+ 'options' => array(
591
+ '' => '---',
592
+ 'Discontinued' => 'Discontinued',
593
+ 'InStock' => 'In Stock',
594
+ 'InStoreOnly' => 'In Store Only',
595
+ 'LimitedAvailability' => 'Limited',
596
+ 'OnlineOnly' => 'Online Only',
597
+ 'OutOfStock' => 'Out Of Stock',
598
+ 'PreOrder' => 'Pre Order',
599
+ 'PreSale' => 'Pre Sale',
600
+ 'SoldOut' => 'Sold Out',
601
+ ),
602
+ 'part_of' => 'offers',
603
+ '@type' => 'Offer',
604
+ ),
605
+ ),
606
  ),
607
  'Game' => array(
608
+ 'label' => __( 'Game', 'wp-review' ),
609
+ 'fields' => array(
610
+ array(
611
+ 'name' => 'name',
612
+ 'label' => __( 'Game title', 'wp-review' ),
613
+ 'type' => 'text',
614
+ 'default' => '',
615
+ ),
616
+ array(
617
+ 'name' => 'description',
618
+ 'label' => __( 'Game description', 'wp-review' ),
619
+ 'type' => 'textarea',
620
+ 'default' => '',
621
+ ),
622
+ array(
623
+ 'name' => 'image',
624
+ 'label' => __( 'Game Image', 'wp-review' ),
625
+ 'type' => 'image',
626
+ 'default' => '',
627
+ ),
628
+ array(
629
+ 'name' => 'more_text',
630
+ 'label' => __( 'More link text', 'wp-review' ),
631
+ 'type' => 'text',
632
+ 'default' => __( '[ More ]', 'wp-review' ),
633
+ 'omit' => true,
634
+ ),
635
+ array(
636
+ 'name' => 'url',
637
+ 'label' => __( 'More link URL', 'wp-review' ),
638
+ 'type' => 'text',
639
+ 'default' => '',
640
+ ),
641
+ array(
642
+ 'name' => 'use_button_style',
643
+ 'label' => __( 'Use button style', 'wp-review' ),
644
+ 'type' => 'switch',
645
+ 'default' => false,
646
+ 'omit' => true,
647
+ 'on_label' => __( 'Button', 'wp-review' ),
648
+ 'off_label' => __( 'Link', 'wp-review' ),
649
+ ),
650
+ array(
651
+ 'name' => 'author',
652
+ 'label' => __( 'Author', 'wp-review' ),
653
+ 'type' => 'text',
654
+ 'default' => '',
655
+ ),
656
+ ),
657
+ ),
658
+ 'Hotel' => array(
659
+ 'label' => __( 'Hotel', 'wp-review' ),
660
+ 'fields' => array(
661
+ array(
662
+ 'name' => 'name',
663
+ 'label' => __( 'Name', 'wp-review' ),
664
+ 'type' => 'text',
665
+ 'default' => '',
666
+ ),
667
+ array(
668
+ 'name' => 'description',
669
+ 'label' => __( 'Description', 'wp-review' ),
670
+ 'type' => 'textarea',
671
+ 'default' => '',
672
+ ),
673
+ array(
674
+ 'name' => 'image',
675
+ 'label' => __( 'Image', 'wp-review' ),
676
+ 'type' => 'image',
677
+ 'default' => '',
678
+ ),
679
+ array(
680
+ 'name' => 'more_text',
681
+ 'label' => __( 'More link text', 'wp-review' ),
682
+ 'type' => 'text',
683
+ 'default' => __( '[ More ]', 'wp-review' ),
684
+ 'omit' => true,
685
+ ),
686
+ array(
687
+ 'name' => 'url',
688
+ 'label' => __( 'More link URL', 'wp-review' ),
689
+ 'type' => 'text',
690
+ 'default' => '',
691
+ ),
692
+ array(
693
+ 'name' => 'use_button_style',
694
+ 'label' => __( 'Use button style', 'wp-review' ),
695
+ 'type' => 'switch',
696
+ 'default' => false,
697
+ 'omit' => true,
698
+ 'on_label' => __( 'Button', 'wp-review' ),
699
+ 'off_label' => __( 'Link', 'wp-review' ),
700
+ ),
701
+ array(
702
+ 'name' => 'priceRange',
703
+ 'label' => __( 'Price range', 'wp-review' ),
704
+ 'type' => 'text',
705
+ 'default' => '$10 - $30',
706
+ ),
707
+ array(
708
+ 'name' => 'paymentAccepted',
709
+ 'label' => __( 'Payment accepted', 'wp-review' ),
710
+ 'type' => 'text',
711
+ 'default' => 'Credit Card',
712
+ ),
713
+ array(
714
+ 'name' => 'currenciesAccepted',
715
+ 'label' => __( 'Currencies accepted', 'wp-review' ),
716
+ 'type' => 'text',
717
+ 'default' => 'USD',
718
+ ),
719
+ array(
720
+ 'name' => 'address',
721
+ 'label' => __( 'Address', 'wp-review' ),
722
+ 'type' => 'text',
723
+ ),
724
+ array(
725
+ 'name' => 'telephone',
726
+ 'label' => __( 'Telephone', 'wp-review' ),
727
+ 'type' => 'text',
728
+ ),
729
+ ),
730
+ ),
731
+ 'LocalBusiness' => array(
732
+ 'label' => __( 'LocalBusiness', 'wp-review' ),
733
+ 'fields' => array(
734
+ array(
735
+ 'name' => 'name',
736
+ 'label' => __( 'Name', 'wp-review' ),
737
+ 'type' => 'text',
738
+ 'default' => '',
739
+ ),
740
+ array(
741
+ 'name' => 'description',
742
+ 'label' => __( 'Description', 'wp-review' ),
743
+ 'type' => 'textarea',
744
+ 'default' => '',
745
+ ),
746
+ array(
747
+ 'name' => 'image',
748
+ 'label' => __( 'Business Image', 'wp-review' ),
749
+ 'type' => 'image',
750
+ 'default' => '',
751
+ ),
752
+ array(
753
+ 'name' => 'more_text',
754
+ 'label' => __( 'More link text', 'wp-review' ),
755
+ 'type' => 'text',
756
+ 'default' => __( '[ More ]', 'wp-review' ),
757
+ 'omit' => true,
758
+ ),
759
+ array(
760
+ 'name' => 'url',
761
+ 'label' => __( 'More link URL', 'wp-review' ),
762
+ 'type' => 'text',
763
+ 'default' => '',
764
+ ),
765
+ array(
766
+ 'name' => 'use_button_style',
767
+ 'label' => __( 'Use button style', 'wp-review' ),
768
+ 'type' => 'switch',
769
+ 'default' => false,
770
+ 'omit' => true,
771
+ 'on_label' => __( 'Button', 'wp-review' ),
772
+ 'off_label' => __( 'Link', 'wp-review' ),
773
+ ),
774
+ array(
775
+ 'name' => 'priceRange',
776
+ 'label' => __( 'Price range', 'wp-review' ),
777
+ 'type' => 'text',
778
+ 'default' => '$10 - $30',
779
+ ),
780
+ array(
781
+ 'name' => 'paymentAccepted',
782
+ 'label' => __( 'Payment accepted', 'wp-review' ),
783
+ 'type' => 'text',
784
+ 'default' => 'Credit Card',
785
+ ),
786
+ array(
787
+ 'name' => 'currenciesAccepted',
788
+ 'label' => __( 'Currencies accepted', 'wp-review' ),
789
+ 'type' => 'text',
790
+ 'default' => 'USD',
791
+ ),
792
+ array(
793
+ 'name' => 'address',
794
+ 'label' => __( 'Address', 'wp-review' ),
795
+ 'type' => 'text',
796
+ ),
797
+ array(
798
+ 'name' => 'telephone',
799
+ 'label' => __( 'Telephone', 'wp-review' ),
800
+ 'type' => 'text',
801
+ ),
802
+ ),
803
  ),
804
  'Movie' => array(
805
+ 'label' => __( 'Movie', 'wp-review' ),
806
+ 'fields' => array(
807
+ array(
808
+ 'name' => 'name',
809
+ 'label' => __( 'Movie title', 'wp-review' ),
810
+ 'type' => 'text',
811
+ 'default' => '',
812
+ ),
813
+ array(
814
+ 'name' => 'description',
815
+ 'label' => __( 'Movie description', 'wp-review' ),
816
+ 'type' => 'textarea',
817
+ 'default' => '',
818
+ ),
819
+ array(
820
+ 'name' => 'image',
821
+ 'label' => __( 'Movie Image', 'wp-review' ),
822
+ 'type' => 'image',
823
+ 'default' => '',
824
+ ),
825
+ array(
826
+ 'name' => 'more_text',
827
+ 'label' => __( 'More link text', 'wp-review' ),
828
+ 'type' => 'text',
829
+ 'default' => __( '[ More ]', 'wp-review' ),
830
+ 'omit' => true,
831
+ ),
832
+ array(
833
+ 'name' => 'url',
834
+ 'label' => __( 'More link URL', 'wp-review' ),
835
+ 'type' => 'text',
836
+ 'default' => '',
837
+ ),
838
+ array(
839
+ 'name' => 'use_button_style',
840
+ 'label' => __( 'Use button style', 'wp-review' ),
841
+ 'type' => 'switch',
842
+ 'default' => false,
843
+ 'omit' => true,
844
+ 'on_label' => __( 'Button', 'wp-review' ),
845
+ 'off_label' => __( 'Link', 'wp-review' ),
846
+ ),
847
+ array(
848
+ 'name' => 'dateCreated',
849
+ 'label' => __( 'Date published', 'wp-review' ),
850
+ 'type' => 'date',
851
+ 'default' => '',
852
+ ),
853
+ array(
854
+ 'name' => 'countryOfOrigin',
855
+ 'label' => __( 'Country', 'wp-review' ),
856
+ 'type' => 'text',
857
+ 'default' => '',
858
+ ),
859
+ array(
860
+ 'name' => 'duration',
861
+ 'label' => __( 'Duration', 'wp-review' ),
862
+ 'type' => 'text',
863
+ 'default' => '',
864
+ ),
865
+ array(
866
+ 'name' => 'author',
867
+ 'label' => __( 'Author', 'wp-review' ),
868
+ 'type' => 'text',
869
+ 'default' => '',
870
+ ),
871
+ array(
872
+ 'name' => 'director',
873
+ 'label' => __( 'Director(s)', 'wp-review' ),
874
+ 'type' => 'textarea',
875
+ 'multiline' => true,
876
+ 'default' => '',
877
+ 'info' => __( 'Add one director per line', 'wp-review' ),
878
+ ),
879
+ array(
880
+ 'name' => 'actor',
881
+ 'label' => __( 'Actor(s)', 'wp-review' ),
882
+ 'type' => 'textarea',
883
+ 'multiline' => true,
884
+ 'default' => '',
885
+ 'info' => __( 'Add one actor per line', 'wp-review' ),
886
+ ),
887
+ array(
888
+ 'name' => 'genre',
889
+ 'label' => __( 'Genre', 'wp-review' ),
890
+ 'type' => 'textarea',
891
+ 'multiline' => true,
892
+ 'default' => '',
893
+ 'info' => __( 'Add one item per line', 'wp-review' ),
894
+ ),
895
+ ),
896
  ),
897
+ 'MusicPlaylist' => array(
898
+ 'label' => __( 'MusicPlaylist', 'wp-review' ),
899
+ 'fields' => array(
900
+ array(
901
+ 'name' => 'name',
902
+ 'label' => __( 'Name', 'wp-review' ),
903
+ 'type' => 'text',
904
+ 'default' => '',
905
+ ),
906
+ array(
907
+ 'name' => 'description',
908
+ 'label' => __( 'Description', 'wp-review' ),
909
+ 'type' => 'textarea',
910
+ 'default' => '',
911
+ ),
912
+ array(
913
+ 'name' => 'more_text',
914
+ 'label' => __( 'More link text', 'wp-review' ),
915
+ 'type' => 'text',
916
+ 'default' => __( '[ More ]', 'wp-review' ),
917
+ 'omit' => true,
918
+ ),
919
+ array(
920
+ 'name' => 'url',
921
+ 'label' => __( 'More link URL', 'wp-review' ),
922
+ 'type' => 'text',
923
+ 'default' => '',
924
+ ),
925
+ array(
926
+ 'name' => 'use_button_style',
927
+ 'label' => __( 'Use button style', 'wp-review' ),
928
+ 'type' => 'switch',
929
+ 'default' => false,
930
+ 'omit' => true,
931
+ 'on_label' => __( 'Button', 'wp-review' ),
932
+ 'off_label' => __( 'Link', 'wp-review' ),
933
+ ),
934
+ array(
935
+ 'name' => 'numTracks',
936
+ 'label' => __( 'Number of tracks', 'wp-review' ),
937
+ 'type' => 'text',
938
+ 'default' => '',
939
+ ),
940
+ array(
941
+ 'name' => 'genre',
942
+ 'label' => __( 'Genre', 'wp-review' ),
943
+ 'type' => 'textarea',
944
+ 'multiline' => true,
945
+ 'default' => '',
946
+ 'info' => __( 'Add one item per line', 'wp-review' ),
947
+ ),
948
+ array(
949
+ 'name' => 'author',
950
+ 'label' => __( 'Author', 'wp-review' ),
951
+ 'type' => 'text',
952
+ 'default' => '',
953
+ ),
954
+ ),
955
  ),
956
+ 'MusicRecording' => array(
957
+ 'label' => __( 'MusicRecording', 'wp-review' ),
958
+ 'fields' => array(
959
+ array(
960
+ 'name' => 'name',
961
+ 'label' => __( 'Track name', 'wp-review' ),
962
+ 'type' => 'text',
963
+ 'default' => '',
964
+ ),
965
+ array(
966
+ 'name' => 'description',
967
+ 'label' => __( 'Description', 'wp-review' ),
968
+ 'type' => 'textarea',
969
+ 'default' => '',
970
+ ),
971
+ array(
972
+ 'name' => 'more_text',
973
+ 'label' => __( 'More link text', 'wp-review' ),
974
+ 'type' => 'text',
975
+ 'default' => __( '[ More ]', 'wp-review' ),
976
+ 'omit' => true,
977
+ ),
978
+ array(
979
+ 'name' => 'url',
980
+ 'label' => __( 'More link URL', 'wp-review' ),
981
+ 'type' => 'text',
982
+ 'default' => '',
983
+ ),
984
+ array(
985
+ 'name' => 'use_button_style',
986
+ 'label' => __( 'Use button style', 'wp-review' ),
987
+ 'type' => 'switch',
988
+ 'default' => false,
989
+ 'omit' => true,
990
+ 'on_label' => __( 'Button', 'wp-review' ),
991
+ 'off_label' => __( 'Link', 'wp-review' ),
992
+ ),
993
+ array(
994
+ 'name' => 'byArtist',
995
+ 'label' => __( 'Author', 'wp-review' ),
996
+ 'type' => 'text',
997
+ 'default' => '',
998
+ ),
999
+ array(
1000
+ 'name' => 'duration',
1001
+ 'label' => __( 'Track Duration', 'wp-review' ),
1002
+ 'type' => 'text',
1003
+ 'default' => '',
1004
+ ),
1005
+ array(
1006
+ 'name' => 'inAlbum',
1007
+ 'label' => __( 'Album name', 'wp-review' ),
1008
+ 'type' => 'text',
1009
+ 'default' => '',
1010
+ ),
1011
+ array(
1012
+ 'name' => 'inPlaylist',
1013
+ 'label' => __( 'Playlist name', 'wp-review' ),
1014
+ 'type' => 'text',
1015
+ 'default' => '',
1016
+ ),
1017
+ array(
1018
+ 'name' => 'isrcCode',
1019
+ 'label' => __( 'International Standard Recording Code', 'wp-review' ),
1020
+ 'type' => 'text',
1021
+ 'default' => '',
1022
+ ),
1023
+ array(
1024
+ 'name' => 'recordingOf',
1025
+ 'label' => __( 'Recording of', 'wp-review' ),
1026
+ 'type' => 'text',
1027
+ 'default' => '',
1028
+ ),
1029
+ array(
1030
+ 'name' => 'genre',
1031
+ 'label' => __( 'Genre', 'wp-review' ),
1032
+ 'type' => 'textarea',
1033
+ 'multiline' => true,
1034
+ 'default' => '',
1035
+ 'info' => __( 'Add one item per line', 'wp-review' ),
1036
+ ),
1037
+ array(
1038
+ 'name' => 'author',
1039
+ 'label' => __( 'Author', 'wp-review' ),
1040
+ 'type' => 'text',
1041
+ 'default' => '',
1042
+ ),
1043
+ ),
1044
  ),
1045
+ 'Organization' => array(
1046
+ 'label' => __( 'Organization', 'wp-review' ),
1047
+ 'fields' => array(
1048
+ array(
1049
+ 'name' => 'name',
1050
+ 'label' => __( 'Name', 'wp-review' ),
1051
+ 'type' => 'text',
1052
+ 'default' => '',
1053
+ ),
1054
+ array(
1055
+ 'name' => 'description',
1056
+ 'label' => __( 'Description', 'wp-review' ),
1057
+ 'type' => 'textarea',
1058
+ 'default' => '',
1059
+ ),
1060
+ array(
1061
+ 'name' => 'image',
1062
+ 'label' => __( 'Image', 'wp-review' ),
1063
+ 'type' => 'image',
1064
+ 'default' => '',
1065
+ ),
1066
+ array(
1067
+ 'name' => 'more_text',
1068
+ 'label' => __( 'More link text', 'wp-review' ),
1069
+ 'type' => 'text',
1070
+ 'default' => __( '[ More ]', 'wp-review' ),
1071
+ 'omit' => true,
1072
+ ),
1073
+ array(
1074
+ 'name' => 'url',
1075
+ 'label' => __( 'More link URL', 'wp-review' ),
1076
+ 'type' => 'text',
1077
+ 'default' => '',
1078
+ ),
1079
+ array(
1080
+ 'name' => 'use_button_style',
1081
+ 'label' => __( 'Use button style', 'wp-review' ),
1082
+ 'type' => 'switch',
1083
+ 'default' => false,
1084
+ 'omit' => true,
1085
+ 'on_label' => __( 'Button', 'wp-review' ),
1086
+ 'off_label' => __( 'Link', 'wp-review' ),
1087
+ ),
1088
+ ),
1089
  ),
1090
  'Product' => array(
1091
+ 'label' => __( 'Product', 'wp-review' ),
1092
+ 'fields' => array(
1093
+ array(
1094
+ 'name' => 'name',
1095
+ 'label' => __( 'Product Name', 'wp-review' ),
1096
+ 'type' => 'text',
1097
+ 'default' => '',
1098
+ ),
1099
+ array(
1100
+ 'name' => 'description',
1101
+ 'label' => __( 'Product Description', 'wp-review' ),
1102
+ 'type' => 'textarea',
1103
+ 'default' => '',
1104
+ ),
1105
+ array(
1106
+ 'name' => 'image',
1107
+ 'label' => __( 'Product Image', 'wp-review' ),
1108
+ 'type' => 'image',
1109
+ 'default' => '',
1110
+ ),
1111
+ array(
1112
+ 'name' => 'brand',
1113
+ 'label' => __( 'Brand', 'wp-review' ),
1114
+ 'type' => 'text',
1115
+ 'default' => '',
1116
+ ),
1117
+ array(
1118
+ 'name' => 'sku',
1119
+ 'label' => __( 'SKU', 'wp-review' ),
1120
+ 'type' => 'text',
1121
+ 'default' => '',
1122
+ ),
1123
+ array(
1124
+ 'name' => 'mpn',
1125
+ 'label' => __( 'MPN', 'wp-review' ),
1126
+ 'type' => 'text',
1127
+ 'default' => '',
1128
+ ),
1129
+ array(
1130
+ 'name' => 'gtin8',
1131
+ 'label' => __( 'GTIN-8', 'wp-review' ),
1132
+ 'type' => 'text',
1133
+ 'default' => '',
1134
+ ),
1135
+ array(
1136
+ 'name' => 'more_text',
1137
+ 'label' => __( 'More link text', 'wp-review' ),
1138
+ 'type' => 'text',
1139
+ 'default' => __( '[ More ]', 'wp-review' ),
1140
+ 'omit' => true,
1141
+ ),
1142
+ array(
1143
+ 'name' => 'url',
1144
+ 'label' => __( 'More link URL', 'wp-review' ),
1145
+ 'type' => 'text',
1146
+ 'default' => '',
1147
+ ),
1148
+ array(
1149
+ 'name' => 'use_button_style',
1150
+ 'label' => __( 'Use button style', 'wp-review' ),
1151
+ 'type' => 'switch',
1152
+ 'default' => false,
1153
+ 'omit' => true,
1154
+ 'on_label' => __( 'Button', 'wp-review' ),
1155
+ 'off_label' => __( 'Link', 'wp-review' ),
1156
+ ),
1157
+ array(
1158
+ 'name' => 'price',
1159
+ 'label' => __( 'Offer price', 'wp-review' ),
1160
+ 'info' => __( 'Fill "0.0" to show the free price', 'wp-review' ),
1161
+ 'type' => 'text',
1162
+ 'default' => '',
1163
+ 'part_of' => 'offers',
1164
+ '@type' => 'Offer',
1165
+ ),
1166
+ array(
1167
+ 'name' => 'priceCurrency',
1168
+ 'label' => __( 'Currency', 'wp-review' ),
1169
+ 'type' => 'text',
1170
+ 'default' => '',
1171
+ 'part_of' => 'offers',
1172
+ '@type' => 'Offer',
1173
+ ),
1174
+ array(
1175
+ 'name' => 'availability',
1176
+ 'label' => __( 'Availability', 'wp-review' ),
1177
+ 'type' => 'select',
1178
+ 'default' => '',
1179
+ 'options' => array(
1180
+ '' => '---',
1181
+ 'Discontinued' => 'Discontinued',
1182
+ 'InStock' => 'In Stock',
1183
+ 'InStoreOnly' => 'In Store Only',
1184
+ 'LimitedAvailability' => 'Limited',
1185
+ 'OnlineOnly' => 'Online Only',
1186
+ 'OutOfStock' => 'Out Of Stock',
1187
+ 'PreOrder' => 'Pre Order',
1188
+ 'PreSale' => 'Pre Sale',
1189
+ 'SoldOut' => 'Sold Out',
1190
+ ),
1191
+ 'part_of' => 'offers',
1192
+ '@type' => 'Offer',
1193
+ ),
1194
+ array(
1195
+ 'name' => 'offer_url',
1196
+ 'label' => __( 'Offer URL', 'wp-review' ),
1197
+ 'type' => 'text',
1198
+ 'default' => '',
1199
+ 'part_of' => 'offers',
1200
+ 'custom_name' => 'url',
1201
+ '@type' => 'Offer',
1202
+ ),
1203
+ array(
1204
+ 'name' => 'priceValidUntil',
1205
+ 'label' => __( 'Valid until', 'wp-review' ),
1206
+ 'type' => 'date',
1207
+ 'default' => '',
1208
+ 'part_of' => 'offers',
1209
+ '@type' => 'Offer',
1210
+ ),
1211
+ ),
1212
  ),
1213
  'Recipe' => array(
1214
+ 'label' => __( 'Recipe', 'wp-review' ),
1215
+ 'fields' => array(
1216
+ array(
1217
+ 'name' => 'name',
1218
+ 'label' => __( 'Recipe Name', 'wp-review' ),
1219
+ 'type' => 'text',
1220
+ 'default' => '',
1221
+ ),
1222
+ array(
1223
+ 'name' => 'author',
1224
+ 'label' => __( 'Author', 'wp-review' ),
1225
+ 'type' => 'text',
1226
+ 'default' => '',
1227
+ ),
1228
+ array(
1229
+ 'name' => 'description',
1230
+ 'label' => __( 'Description', 'wp-review' ),
1231
+ 'type' => 'textarea',
1232
+ 'default' => '',
1233
+ ),
1234
+ array(
1235
+ 'name' => 'image',
1236
+ 'label' => __( 'Image', 'wp-review' ),
1237
+ 'type' => 'image',
1238
+ 'default' => '',
1239
+ ),
1240
+ array(
1241
+ 'name' => 'prepTime',
1242
+ 'label' => __( 'Preperation time', 'wp-review' ),
1243
+ 'type' => 'text',
1244
+ 'default' => '',
1245
+ 'info' => __( 'Format: 1H30M. H - Hours, M - Minutes', 'wp-review' ),
1246
+ ),
1247
+ array(
1248
+ 'name' => 'cookTime',
1249
+ 'label' => __( 'Cook Time', 'wp-review' ),
1250
+ 'type' => 'text',
1251
+ 'default' => '',
1252
+ 'info' => __( 'Format: 1H30M. H - Hours, M - Minutes', 'wp-review' ),
1253
+ ),
1254
+ array(
1255
+ 'name' => 'totalTime',
1256
+ 'label' => __( 'Total Time', 'wp-review' ),
1257
+ 'type' => 'text',
1258
+ 'default' => '',
1259
+ 'info' => __( 'Format: 1H30M. H - Hours, M - Minutes', 'wp-review' ),
1260
+ ),
1261
+ array(
1262
+ 'name' => 'recipeCategory',
1263
+ 'label' => __( 'Type', 'wp-review' ),
1264
+ 'type' => 'text',
1265
+ 'default' => '',
1266
+ 'info' => __( 'Type of dish, for example "appetizer", "entree", or "dessert"', 'wp-review' ),
1267
+ ),
1268
+ array(
1269
+ 'name' => 'recipeYield',
1270
+ 'label' => __( 'Recipe Yield', 'wp-review' ),
1271
+ 'type' => 'text',
1272
+ 'default' => '',
1273
+ 'info' => __( 'Quantity produced by the recipe, for example "4 servings"', 'wp-review' ),
1274
+ ),
1275
+ array(
1276
+ 'name' => 'recipeIngredient',
1277
+ 'label' => __( 'Recipe Ingredients', 'wp-review' ),
1278
+ 'type' => 'textarea',
1279
+ 'multiline' => true,
1280
+ 'default' => '',
1281
+ 'info' => __( 'Recipe ingredients, add one item per line', 'wp-review' ),
1282
+ ),
1283
+ array(
1284
+ 'name' => 'recipeInstructions',
1285
+ 'label' => __( 'Recipe Instructions', 'wp-review' ),
1286
+ 'type' => 'textarea',
1287
+ 'default' => '',
1288
+ 'info' => __( 'Steps to take', 'wp-review' ),
1289
+ ),
1290
+ array(
1291
+ 'name' => 'recipeCuisine',
1292
+ 'label' => __( 'Recipe Cuisine', 'wp-review' ),
1293
+ 'type' => 'text',
1294
+ 'default' => '',
1295
+ ),
1296
+ array(
1297
+ 'name' => 'keywords',
1298
+ 'label' => __( 'Keywords', 'wp-review' ),
1299
+ 'type' => 'text',
1300
+ 'default' => '',
1301
+ 'info' => __( 'Separate by commas', 'wp-review' ),
1302
+ ),
1303
+ array(
1304
+ 'name' => 'calories',
1305
+ 'label' => __( 'Calories', 'wp-review' ),
1306
+ 'type' => 'text',
1307
+ 'default' => '',
1308
+ 'info' => __( 'The number of calories', 'wp-review' ),
1309
+ 'part_of' => 'nutrition',
1310
+ '@type' => 'NutritionInformation',
1311
+ ),
1312
+ array(
1313
+ 'name' => 'video_name',
1314
+ 'label' => __( 'Video name', 'wp-review' ),
1315
+ 'type' => 'text',
1316
+ 'default' => '',
1317
+ 'part_of' => 'video',
1318
+ '@type' => 'VideoObject',
1319
+ ),
1320
+ array(
1321
+ 'name' => 'video_description',
1322
+ 'label' => __( 'Video description', 'wp-review' ),
1323
+ 'type' => 'textarea',
1324
+ 'default' => '',
1325
+ 'part_of' => 'video',
1326
+ '@type' => 'VideoObject',
1327
+ ),
1328
+ array(
1329
+ 'name' => 'thumbnailUrl',
1330
+ 'label' => __( 'Video thumbnail URL', 'wp-review' ),
1331
+ 'type' => 'image',
1332
+ 'default' => '',
1333
+ 'part_of' => 'video',
1334
+ '@type' => 'VideoObject',
1335
+ ),
1336
+ array(
1337
+ 'name' => 'uploadDate',
1338
+ 'label' => __( 'Video upload date', 'wp-review' ),
1339
+ 'type' => 'text',
1340
+ 'default' => '',
1341
+ 'info' => __( 'Y-m-d format', 'wp-review' ),
1342
+ 'part_of' => 'video',
1343
+ '@type' => 'VideoObject',
1344
+ ),
1345
+ ),
1346
  ),
1347
  'Restaurant' => array(
1348
+ 'label' => __( 'Restaurant', 'wp-review' ),
1349
+ 'fields' => array(
1350
+ array(
1351
+ 'name' => 'name',
1352
+ 'label' => __( 'Restaurant Name', 'wp-review' ),
1353
+ 'type' => 'text',
1354
+ 'default' => '',
1355
+ ),
1356
+ array(
1357
+ 'name' => 'description',
1358
+ 'label' => __( 'Restaurant Description', 'wp-review' ),
1359
+ 'type' => 'textarea',
1360
+ 'default' => '',
1361
+ ),
1362
+ array(
1363
+ 'name' => 'image',
1364
+ 'label' => __( 'Restaurant Image', 'wp-review' ),
1365
+ 'type' => 'image',
1366
+ 'default' => '',
1367
+ ),
1368
+ array(
1369
+ 'name' => 'more_text',
1370
+ 'label' => __( 'More link text', 'wp-review' ),
1371
+ 'type' => 'text',
1372
+ 'default' => __( '[ More ]', 'wp-review' ),
1373
+ 'omit' => true,
1374
+ ),
1375
+ array(
1376
+ 'name' => 'url',
1377
+ 'label' => __( 'More link URL', 'wp-review' ),
1378
+ 'type' => 'text',
1379
+ 'default' => '',
1380
+ ),
1381
+ array(
1382
+ 'name' => 'use_button_style',
1383
+ 'label' => __( 'Use button style', 'wp-review' ),
1384
+ 'type' => 'switch',
1385
+ 'default' => false,
1386
+ 'omit' => true,
1387
+ 'on_label' => __( 'Button', 'wp-review' ),
1388
+ 'off_label' => __( 'Link', 'wp-review' ),
1389
+ ),
1390
+ array(
1391
+ 'name' => 'priceRange',
1392
+ 'label' => __( 'Price range', 'wp-review' ),
1393
+ 'type' => 'text',
1394
+ 'default' => '$10 - $30',
1395
+ ),
1396
+ array(
1397
+ 'name' => 'address',
1398
+ 'label' => __( 'Address', 'wp-review' ),
1399
+ 'type' => 'text',
1400
+ ),
1401
+ array(
1402
+ 'name' => 'servesCuisine',
1403
+ 'label' => __( 'Cuisine', 'wp-review' ),
1404
+ 'type' => 'text',
1405
+ ),
1406
+ array(
1407
+ 'name' => 'telephone',
1408
+ 'label' => __( 'Telephone', 'wp-review' ),
1409
+ 'type' => 'text',
1410
+ ),
1411
+ ),
1412
  ),
1413
  'SoftwareApplication' => array(
1414
+ 'label' => __( 'SoftwareApplication', 'wp-review' ),
1415
+ 'fields' => array(
1416
+ array(
1417
+ 'name' => 'name',
1418
+ 'label' => __( 'Name', 'wp-review' ),
1419
+ 'type' => 'text',
1420
+ 'default' => '',
1421
+ ),
1422
+ array(
1423
+ 'name' => 'description',
1424
+ 'label' => __( 'Description', 'wp-review' ),
1425
+ 'type' => 'textarea',
1426
+ 'default' => '',
1427
+ ),
1428
+ array(
1429
+ 'name' => 'image',
1430
+ 'label' => __( 'Image', 'wp-review' ),
1431
+ 'type' => 'image',
1432
+ 'default' => '',
1433
+ ),
1434
+ array(
1435
+ 'name' => 'more_text',
1436
+ 'label' => __( 'More link text', 'wp-review' ),
1437
+ 'type' => 'text',
1438
+ 'default' => __( '[ More ]', 'wp-review' ),
1439
+ 'omit' => true,
1440
+ ),
1441
+ array(
1442
+ 'name' => 'url',
1443
+ 'label' => __( 'More link URL', 'wp-review' ),
1444
+ 'type' => 'text',
1445
+ 'default' => '',
1446
+ ),
1447
+ array(
1448
+ 'name' => 'use_button_style',
1449
+ 'label' => __( 'Use button style', 'wp-review' ),
1450
+ 'type' => 'switch',
1451
+ 'default' => false,
1452
+ 'omit' => true,
1453
+ 'on_label' => __( 'Button', 'wp-review' ),
1454
+ 'off_label' => __( 'Link', 'wp-review' ),
1455
+ ),
1456
+ array(
1457
+ 'name' => 'price',
1458
+ 'label' => __( 'Offer price', 'wp-review' ),
1459
+ 'info' => __( 'Fill "0.0" to show the free price', 'wp-review' ),
1460
+ 'type' => 'text',
1461
+ 'default' => '',
1462
+ 'part_of' => 'offers',
1463
+ '@type' => 'Offer',
1464
+ ),
1465
+ array(
1466
+ 'name' => 'priceCurrency',
1467
+ 'label' => __( 'Currency', 'wp-review' ),
1468
+ 'type' => 'text',
1469
+ 'default' => '',
1470
+ 'part_of' => 'offers',
1471
+ '@type' => 'Offer',
1472
+ ),
1473
+ array(
1474
+ 'name' => 'operatingSystem',
1475
+ 'label' => __( 'Operating System', 'wp-review' ),
1476
+ 'type' => 'text',
1477
+ 'default' => '',
1478
+ 'info' => __( 'For example, "Windows 7", "OSX 10.6", "Android 1.6"', 'wp-review' ),
1479
+ ),
1480
+ array(
1481
+ 'name' => 'applicationCategory',
1482
+ 'label' => __( 'Application Category', 'wp-review' ),
1483
+ 'type' => 'text',
1484
+ 'default' => '',
1485
+ 'info' => __( 'For example, "Game", "Multimedia"', 'wp-review' ),
1486
+ ),
1487
+ array(
1488
+ 'name' => 'author',
1489
+ 'label' => __( 'Author', 'wp-review' ),
1490
+ 'type' => 'text',
1491
+ 'default' => '',
1492
+ ),
1493
+ ),
1494
  ),
1495
  'Store' => array(
1496
+ 'label' => __( 'Store', 'wp-review' ),
1497
+ 'fields' => array(
1498
+ array(
1499
+ 'name' => 'name',
1500
+ 'label' => __( 'Store Name', 'wp-review' ),
1501
+ 'type' => 'text',
1502
+ 'default' => '',
1503
+ ),
1504
+ array(
1505
+ 'name' => 'description',
1506
+ 'label' => __( 'Store Description', 'wp-review' ),
1507
+ 'type' => 'textarea',
1508
+ 'default' => '',
1509
+ ),
1510
+ array(
1511
+ 'name' => 'image',
1512
+ 'label' => __( 'Store Image', 'wp-review' ),
1513
+ 'type' => 'image',
1514
+ 'default' => '',
1515
+ ),
1516
+ array(
1517
+ 'name' => 'more_text',
1518
+ 'label' => __( 'More link text', 'wp-review' ),
1519
+ 'type' => 'text',
1520
+ 'default' => __( '[ More ]', 'wp-review' ),
1521
+ 'omit' => true,
1522
+ ),
1523
+ array(
1524
+ 'name' => 'url',
1525
+ 'label' => __( 'More link URL', 'wp-review' ),
1526
+ 'type' => 'text',
1527
+ 'default' => '',
1528
+ ),
1529
+ array(
1530
+ 'name' => 'use_button_style',
1531
+ 'label' => __( 'Use button style', 'wp-review' ),
1532
+ 'type' => 'switch',
1533
+ 'default' => false,
1534
+ 'omit' => true,
1535
+ 'on_label' => __( 'Button', 'wp-review' ),
1536
+ 'off_label' => __( 'Link', 'wp-review' ),
1537
+ ),
1538
+ array(
1539
+ 'name' => 'priceRange',
1540
+ 'label' => __( 'Price range', 'wp-review' ),
1541
+ 'type' => 'text',
1542
+ 'default' => '$10 - $30',
1543
+ ),
1544
+ array(
1545
+ 'name' => 'address',
1546
+ 'label' => __( 'Address', 'wp-review' ),
1547
+ 'type' => 'text',
1548
+ ),
1549
+ array(
1550
+ 'name' => 'telephone',
1551
+ 'label' => __( 'Telephone', 'wp-review' ),
1552
+ 'type' => 'text',
1553
+ ),
1554
+ ),
1555
  ),
1556
  'TVSeries' => array(
1557
+ 'label' => __( 'TVSeries', 'wp-review' ),
1558
+ 'fields' => array(
1559
+ array(
1560
+ 'name' => 'name',
1561
+ 'label' => __( 'Name', 'wp-review' ),
1562
+ 'type' => 'text',
1563
+ 'default' => '',
1564
+ ),
1565
+ array(
1566
+ 'name' => 'description',
1567
+ 'label' => __( 'Description', 'wp-review' ),
1568
+ 'type' => 'textarea',
1569
+ 'default' => '',
1570
+ ),
1571
+ array(
1572
+ 'name' => 'image',
1573
+ 'label' => __( 'Image', 'wp-review' ),
1574
+ 'type' => 'image',
1575
+ 'default' => '',
1576
+ ),
1577
+ array(
1578
+ 'name' => 'more_text',
1579
+ 'label' => __( 'More link text', 'wp-review' ),
1580
+ 'type' => 'text',
1581
+ 'default' => __( '[ More ]', 'wp-review' ),
1582
+ 'omit' => true,
1583
+ ),
1584
+ array(
1585
+ 'name' => 'url',
1586
+ 'label' => __( 'More link URL', 'wp-review' ),
1587
+ 'type' => 'text',
1588
+ 'default' => '',
1589
+ ),
1590
+ array(
1591
+ 'name' => 'use_button_style',
1592
+ 'label' => __( 'Use button style', 'wp-review' ),
1593
+ 'type' => 'switch',
1594
+ 'default' => false,
1595
+ 'omit' => true,
1596
+ 'on_label' => __( 'Button', 'wp-review' ),
1597
+ 'off_label' => __( 'Link', 'wp-review' ),
1598
+ ),
1599
+ array(
1600
+ 'name' => 'author',
1601
+ 'label' => __( 'Author', 'wp-review' ),
1602
+ 'type' => 'text',
1603
+ 'default' => '',
1604
+ ),
1605
+ ),
1606
  ),
1607
  );
languages/wp-review.pot CHANGED
@@ -10,502 +10,475 @@ msgstr ""
10
  "Language-Team: MyThemeShop\n"
11
  "Last-Translator: MyThemeShop\n"
12
  "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:"
14
- "1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;"
15
- "esc_html_x:1,2c\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
- "POT-Creation-Date: 2019-09-05 20:21+0000\n"
19
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
20
- "X-Generator: Loco https://localise.biz/\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
- "Language: "
24
 
25
- #. translators: PHP version.
26
- #: wp-review.php:37
27
  #, php-format
28
- msgid ""
29
- "<strong>WP Review</strong> requires PHP version 5.6 or above. You are "
30
- "running version %s. Please update PHP to run this plugin."
31
  msgstr ""
32
 
33
- #: template-list.php:17 admin/metaboxes.php:366 admin/options/review.php:520
34
- msgid "Default"
35
  msgstr ""
36
 
37
- #: template-list.php:37
38
- msgid "Amazon"
 
39
  msgstr ""
40
 
41
- #: template-list.php:47
42
- msgid "Aqua"
43
  msgstr ""
44
 
45
- #: template-list.php:57
46
- msgid "Blue"
47
  msgstr ""
48
 
49
- #: template-list.php:67
50
- msgid "Darkside"
51
  msgstr ""
52
 
53
- #: template-list.php:78
54
- msgid "Dash"
 
55
  msgstr ""
56
 
57
- #: template-list.php:88
58
- msgid "Edge"
59
  msgstr ""
60
 
61
- #: template-list.php:98
62
- msgid "Enterprise"
63
  msgstr ""
64
 
65
- #: template-list.php:108
66
- msgid "Facebook"
67
  msgstr ""
68
 
69
- #: template-list.php:118
70
- msgid "Fizzy"
71
  msgstr ""
72
 
73
- #: template-list.php:128
74
- msgid "Gamer"
75
  msgstr ""
76
 
77
- #: template-list.php:138
78
- msgid "Gravity"
79
  msgstr ""
80
 
81
- #: template-list.php:149
82
- msgid "Shell"
83
  msgstr ""
84
 
85
- #: template-list.php:159
86
- msgid "Tabbed layout"
87
  msgstr ""
88
 
89
- #: template-list.php:169
90
- msgid "Tabbed layout 2"
91
  msgstr ""
92
 
93
- #: template-list.php:179
94
- msgid "Xiaomi"
95
  msgstr ""
96
 
97
- #: template-list.php:189
98
- msgid "Zine"
99
  msgstr ""
100
 
101
- #: filter-list.php:422
102
- msgid "10 Stars"
103
  msgstr ""
104
 
105
- #: filter-list.php:425 includes/ajax.php:146
106
- #, php-format
107
- msgid "%s Stars"
108
  msgstr ""
109
 
110
- #: filter-list.php:426
111
- #, php-format
112
- msgid "%s Star"
113
  msgstr ""
114
 
115
- #: filter-list.php:441
116
- msgid "Custom template"
117
  msgstr ""
118
 
119
- #: rating-types/circle-input.php:9 rating-types/thumbs-input.php:9
120
- #: rating-types/thumbs-output.php:9 rating-types/circle-output.php:9
121
- msgid "This rating type is not supported in the WP Review Free version"
122
  msgstr ""
123
 
124
- #: rating-types/point-input.php:19 rating-types/star-input.php:19
125
- #: rating-types/percentage-input.php:19
126
- msgid "Add rating"
127
  msgstr ""
128
 
129
- #: rating-types/point-input.php:40 rating-types/star-input.php:40
130
- #: rating-types/percentage-input.php:43
131
- msgid "Sending"
132
  msgstr ""
133
 
134
- #: rating-types/point-input.php:50 rating-types/percentage-input.php:53
135
- #, php-format
136
- msgid "%s"
137
  msgstr ""
138
 
139
- #: admin/class-wp-review-options.php:38 admin/class-wp-review-options.php:39
140
- #: admin/options/review.php:326
141
- msgid "WP Review"
142
  msgstr ""
143
 
144
- #: admin/class-wp-review-options.php:83
145
- msgid "Global"
146
  msgstr ""
147
 
148
- #: admin/class-wp-review-options.php:89 admin/review-options-meta-box.php:45
149
- msgid "Popup"
150
  msgstr ""
151
 
152
- #: admin/class-wp-review-options.php:95 admin/review-options-meta-box.php:48
153
- msgid "Notification Bar"
154
  msgstr ""
155
 
156
- #: admin/class-wp-review-options.php:101
157
- msgid "Yelp Reviews"
158
  msgstr ""
159
 
160
- #: admin/class-wp-review-options.php:107
161
- msgid "Google Reviews"
162
  msgstr ""
163
 
164
- #: admin/class-wp-review-options.php:113
165
- msgid "Facebook Reviews"
166
  msgstr ""
167
 
168
- #: admin/class-wp-review-options.php:119
169
- msgid "Role Manager"
170
  msgstr ""
171
 
172
- #: admin/class-wp-review-options.php:125
173
- msgid "Import Reviews"
174
  msgstr ""
175
 
176
- #: admin/class-wp-review-options.php:131
177
- msgid "Help"
178
  msgstr ""
179
 
180
- #: admin/class-wp-review-options.php:155
181
- msgid "Multisite Settings"
182
  msgstr ""
183
 
184
- #: admin/class-wp-review-options.php:170
185
- msgid "WP Review Settings"
186
  msgstr ""
187
 
188
- #: admin/review-options-meta-box.php:43
189
- msgid "Review Box"
190
  msgstr ""
191
 
192
- #: admin/review-options-meta-box.php:55
193
- msgid "Review Type"
194
  msgstr ""
195
 
196
- #: admin/review-options-meta-box.php:60
197
- msgid "No review"
198
  msgstr ""
199
 
200
- #: admin/review-options-meta-box.php:81
201
- #, php-format
202
- msgid "Review ID: %s"
203
  msgstr ""
204
 
205
- #: admin/review-options-meta-box.php:89
206
- msgid "Review Heading"
207
  msgstr ""
208
 
209
- #: admin/review-options-meta-box.php:101
210
- msgid "Reviewed Item Schema"
211
  msgstr ""
212
 
213
- #: admin/review-options-meta-box.php:117
214
- msgid "Rating Schema"
215
  msgstr ""
216
 
217
- #: admin/review-options-meta-box.php:121
218
- msgid "Author Review Rating"
219
  msgstr ""
220
 
221
- #: admin/review-options-meta-box.php:122
222
- msgid "Visitors Aggregate Rating (if enabled)"
223
  msgstr ""
224
 
225
- #: admin/review-options-meta-box.php:123
226
- msgid "Comments Reviews Aggregate Rating (if enabled)"
227
  msgstr ""
228
 
229
- #: admin/review-options-meta-box.php:130
230
- msgid "Custom Author"
231
  msgstr ""
232
 
233
- #: admin/review-options-meta-box.php:148
234
- msgid "Review Author"
235
  msgstr ""
236
 
237
- #: admin/review-options-meta-box.php:161
238
- msgid "Display Schema Data in the Box (if available)"
239
  msgstr ""
240
 
241
- #: admin/review-options-meta-box.php:181
242
- msgid "Show Embed Code"
243
  msgstr ""
244
 
245
- #: admin/review-options-meta-box.php:204 admin/review-options-meta-box.php:225
246
- msgid "Enable"
247
  msgstr ""
248
 
249
- #: admin/review-options-meta-box.php:211 admin/review-options-meta-box.php:232
250
- #: admin/metaboxes.php:881
251
- msgid "Use global options"
252
  msgstr ""
253
 
254
- #: admin/review-options-meta-box.php:212 admin/review-options-meta-box.php:233
255
- msgid "Use custom options"
256
  msgstr ""
257
 
258
- #: admin/review-options-meta-box.php:213 admin/review-options-meta-box.php:234
259
- #: includes/schemas.php:11 includes/widgets/class-wp-review-tab-widget.php:216
260
- msgid "None"
261
  msgstr ""
262
 
263
- #: admin/metaboxes.php:40
264
- msgid "Review"
265
  msgstr ""
266
 
267
- #: admin/metaboxes.php:50
268
- msgid "Review Item"
269
  msgstr ""
270
 
271
- #: admin/metaboxes.php:61
272
- msgid "Review Links"
273
  msgstr ""
274
 
275
- #: admin/metaboxes.php:71
276
- msgid "Review Description"
277
  msgstr ""
278
 
279
- #: admin/metaboxes.php:82
280
- msgid "User Reviews"
281
  msgstr ""
282
 
283
- #: admin/metaboxes.php:208
284
- msgid "Add item"
285
  msgstr ""
286
 
287
- #: admin/metaboxes.php:214
288
- msgid "Total"
289
  msgstr ""
290
 
291
- #: admin/metaboxes.php:233 admin/metaboxes.php:702 admin/metaboxes.php:714
292
- #: admin/metaboxes.php:724 admin/options/review.php:783
293
- #: admin/options/review.php:796 admin/options/review.php:806
294
- #: admin/options/review.php:832 admin/options/review.php:842
295
- msgid "Delete"
296
  msgstr ""
297
 
298
- #: admin/metaboxes.php:239
299
- msgid "Feature Name"
300
  msgstr ""
301
 
302
- #: admin/metaboxes.php:250
303
- msgid "Feature Color"
304
  msgstr ""
305
 
306
- #: admin/metaboxes.php:264
307
- msgid "Inactive Color"
308
  msgstr ""
309
 
310
- #: admin/metaboxes.php:278
311
- msgid "Feature Score"
312
  msgstr ""
313
 
314
- #: admin/metaboxes.php:289 admin/options/multisite.php:267
315
- msgid "Hide Features"
316
  msgstr ""
317
 
318
- #: admin/metaboxes.php:307
319
- msgid "Custom Location"
320
  msgstr ""
321
 
322
- #: admin/metaboxes.php:326 admin/options/review.php:737
323
- msgid "Review Location"
324
  msgstr ""
325
 
326
- #: admin/metaboxes.php:331 admin/options/review.php:742
327
- msgid "After Content"
328
  msgstr ""
329
 
330
- #: admin/metaboxes.php:332 admin/options/review.php:743
331
- msgid "Before Content"
332
  msgstr ""
333
 
334
- #: admin/metaboxes.php:333 admin/options/review.php:744
335
- msgid "Custom (use shortcode)"
336
  msgstr ""
337
 
338
- #: admin/metaboxes.php:339
339
- msgid "Copy &amp; paste this shortcode in the content."
340
  msgstr ""
341
 
342
- #: admin/metaboxes.php:347
343
- msgid "Custom Layout"
344
  msgstr ""
345
 
346
- #: admin/metaboxes.php:399 admin/options/review.php:560
347
- msgid "Review Color"
348
  msgstr ""
349
 
350
- #: admin/metaboxes.php:409 admin/options/review.php:570
351
- msgid "Inactive Review Color"
352
  msgstr ""
353
 
354
- #: admin/metaboxes.php:419 admin/options/review.php:580
355
- msgid "Font Color"
356
  msgstr ""
357
 
358
- #: admin/metaboxes.php:429 admin/options/review.php:590
359
- msgid "Heading Background Color"
360
  msgstr ""
361
 
362
- #: admin/metaboxes.php:439 admin/options/review.php:600
363
- msgid "Background Color"
364
  msgstr ""
365
 
366
- #: admin/metaboxes.php:449 admin/options/review.php:610
367
- msgid "Border Color"
368
  msgstr ""
369
 
370
- #: admin/metaboxes.php:459 admin/options/review.php:634
371
- msgid "Google Font"
372
  msgstr ""
373
 
374
- #: admin/metaboxes.php:479
375
- msgid "Custom Width"
376
  msgstr ""
377
 
378
- #: admin/metaboxes.php:513
379
- msgid "Summary"
380
  msgstr ""
381
 
382
- #: admin/metaboxes.php:521
383
- msgid "Description title"
384
  msgstr ""
385
 
386
- #: admin/metaboxes.php:531
387
- msgid "Description content"
388
  msgstr ""
389
 
390
- #: admin/metaboxes.php:558
391
- msgid "Pros"
392
  msgstr ""
393
 
394
- #: admin/metaboxes.php:585
395
- msgid "Cons"
396
  msgstr ""
397
 
398
- #: admin/metaboxes.php:614
399
- msgid "Hide Description, Pros/Cons & Total Rating"
400
  msgstr ""
401
 
402
- #: admin/metaboxes.php:680 admin/options/hello-bar.php:41
403
- msgid "Text"
404
  msgstr ""
405
 
406
- #: admin/metaboxes.php:681
407
- msgid "URL"
408
  msgstr ""
409
 
410
- #: admin/metaboxes.php:731
411
- msgid "Add another"
412
  msgstr ""
413
 
414
- #: admin/metaboxes.php:760 admin/options/review.php:858
415
- msgid "Disabled"
416
  msgstr ""
417
 
418
- #: admin/metaboxes.php:767 admin/options/review.php:863
419
- msgid "Visitor Rating Only"
420
  msgstr ""
421
 
422
- #: admin/metaboxes.php:774 admin/options/review.php:868
423
- msgid "Comment Rating Only"
424
  msgstr ""
425
 
426
- #: admin/metaboxes.php:782 admin/options/review.php:874
427
- msgid "Both"
428
  msgstr ""
429
 
430
- #: admin/metaboxes.php:790
431
- msgid ""
432
- "If you are changing User Rating Type & post already have user ratings, "
433
- "please edit or remove existing ratings."
434
  msgstr ""
435
 
436
- #: admin/metaboxes.php:794
437
- msgid "User Rating Type"
438
  msgstr ""
439
 
440
- #: admin/metaboxes.php:825 admin/options/review.php:882
441
- msgid "User can:"
442
  msgstr ""
443
 
444
- #: admin/metaboxes.php:832 admin/options/review.php:888
445
- msgid "Give Overall Rating"
446
  msgstr ""
447
 
448
- #: admin/metaboxes.php:833 admin/options/review.php:889
449
- msgid "Rate Each Feature"
450
  msgstr ""
451
 
452
- #: admin/metaboxes.php:844
453
- msgid "Hide Visitors Rating in Review Box"
454
  msgstr ""
455
 
456
- #: admin/metaboxes.php:864
457
- msgid "Product Price"
458
  msgstr ""
459
 
460
- #: admin/metaboxes.php:874
461
- msgid "Comment Feedback (helpful/unhelpful)"
462
  msgstr ""
463
 
464
- #: admin/metaboxes.php:882 includes/comments.php:122
465
- msgid "Yes"
466
  msgstr ""
467
 
468
- #: admin/metaboxes.php:883 includes/comments.php:123
469
- msgid "No"
470
  msgstr ""
471
 
472
- #: admin/metaboxes.php:898 admin/options/review.php:507
473
- msgid "Processing..."
474
  msgstr ""
475
 
476
- #: admin/metaboxes.php:900 admin/options/review.php:508
477
- msgid "Purge visitor ratings"
478
  msgstr ""
479
 
480
- #: admin/metaboxes.php:901
481
- msgid "Click to remove all visitor ratings of this post."
482
  msgstr ""
483
 
484
- #: admin/metaboxes.php:1244 admin/admin.php:106 admin/options/hello-bar.php:173
485
- msgid "Select Image"
486
  msgstr ""
487
 
488
- #: admin/metaboxes.php:1247 admin/admin.php:108
489
- msgid "Remove Image"
490
  msgstr ""
491
 
492
- #: admin/class-wpr-review-notice.php:54
493
  msgid ""
494
- "Hey, we noticed you have created over 10 reviews from WP Review - that’s "
495
- "awesome! Could you please do us a BIG favor and give it a 5-star rating on "
496
- "WordPress to help us spread the word and boost our motivation?"
497
- msgstr ""
498
-
499
- #: admin/class-wpr-review-notice.php:57
500
- msgid "Ok, you deserve it"
501
- msgstr ""
502
-
503
- #: admin/class-wpr-review-notice.php:61
504
- msgid "Nope, maybe later"
505
- msgstr ""
506
-
507
- #: admin/class-wpr-review-notice.php:65
508
- msgid "I already did"
509
  msgstr ""
510
 
511
  #: admin/class-wp-review-form-field.php:27
@@ -518,538 +491,1387 @@ msgctxt "switch label"
518
  msgid "No"
519
  msgstr ""
520
 
521
- #: admin/demo-importer.php:32 admin/demo-importer.php:37
522
- msgid "Processing, please wait&hellip;"
 
523
  msgstr ""
524
 
525
- #: admin/demo-importer.php:38
526
- msgid "Ok"
527
  msgstr ""
528
 
529
- #: admin/admin.php:41
530
- #, php-format
531
- msgid "Are you sure you want to import from %s?"
532
  msgstr ""
533
 
534
- #: admin/admin.php:42
535
- msgid "The server responded with an error. Try again."
536
  msgstr ""
537
 
538
- #: admin/admin.php:43
539
- msgid ""
540
- "Are you sure you want to import options? All current options will be lost."
541
  msgstr ""
542
 
543
- #: admin/admin.php:107
544
- msgid "Insert Image"
545
  msgstr ""
546
 
547
- #: admin/admin.php:109
548
- msgid "Title"
549
  msgstr ""
550
 
551
- #: admin/admin.php:110
552
- msgid "Review box"
553
  msgstr ""
554
 
555
- #: admin/admin.php:111 includes/comments.php:78
556
- msgid "Review total"
557
  msgstr ""
558
 
559
- #: admin/admin.php:112
560
- msgid "Visitor rating"
561
  msgstr ""
562
 
563
- #: admin/admin.php:113
564
- msgid "Review ID"
565
  msgstr ""
566
 
567
- #: admin/admin.php:114
568
- msgid "Leave empty to use current review ID"
569
  msgstr ""
570
 
571
- #: admin/admin.php:115
572
- msgid "Insert"
 
 
 
573
  msgstr ""
574
 
575
- #: admin/admin.php:116
576
- msgid "Cancel"
577
  msgstr ""
578
 
579
- #: admin/admin.php:122
580
- msgid "Are you sure you want to do this?"
581
  msgstr ""
582
 
583
- #: admin/admin.php:123
584
- msgid "Are you sure you want to import demo?"
585
  msgstr ""
586
 
587
- #: admin/admin.php:124
588
- msgid "Importing proccess finished!"
589
  msgstr ""
590
 
591
- #: admin/admin.php:163 admin/admin.php:242
592
- msgid "Attention Seekers"
593
  msgstr ""
594
 
595
- #: admin/admin.php:164 admin/admin.php:243
596
- msgid "bounce"
 
 
 
 
597
  msgstr ""
598
 
599
- #: admin/admin.php:165 admin/admin.php:244
600
- msgid "flash"
601
  msgstr ""
602
 
603
- #: admin/admin.php:166 admin/admin.php:245
604
- msgid "pulse"
605
  msgstr ""
606
 
607
- #: admin/admin.php:167 admin/admin.php:246
608
- msgid "rubberBand"
609
  msgstr ""
610
 
611
- #: admin/admin.php:168 admin/admin.php:247
612
- msgid "shake"
613
  msgstr ""
614
 
615
- #: admin/admin.php:169 admin/admin.php:248
616
- msgid "swing"
 
 
 
617
  msgstr ""
618
 
619
- #: admin/admin.php:170 admin/admin.php:249
620
- msgid "tada"
 
 
 
621
  msgstr ""
622
 
623
- #: admin/admin.php:171 admin/admin.php:250
624
- msgid "wobble"
 
 
 
625
  msgstr ""
626
 
627
- #: admin/admin.php:172 admin/admin.php:251
628
- msgid "jello"
629
  msgstr ""
630
 
631
- #: admin/admin.php:174
632
- msgid "Bouncing Entrances"
 
 
 
 
633
  msgstr ""
634
 
635
- #: admin/admin.php:175
636
- msgid "bounceIn"
 
 
 
 
637
  msgstr ""
638
 
639
- #: admin/admin.php:176
640
- msgid "bounceInDown"
641
  msgstr ""
642
 
643
- #: admin/admin.php:177
644
- msgid "bounceInLeft"
645
  msgstr ""
646
 
647
- #: admin/admin.php:178
648
- msgid "bounceInRight"
649
  msgstr ""
650
 
651
- #: admin/admin.php:179
652
- msgid "bounceInUp"
653
  msgstr ""
654
 
655
- #: admin/admin.php:181
656
- msgid "Fading Entrances"
657
  msgstr ""
658
 
659
- #: admin/admin.php:182
660
- msgid "fadeIn"
661
  msgstr ""
662
 
663
- #: admin/admin.php:183
664
- msgid "fadeInDown"
665
  msgstr ""
666
 
667
- #: admin/admin.php:184
668
- msgid "fadeInDownBig"
669
  msgstr ""
670
 
671
- #: admin/admin.php:185
672
- msgid "fadeInLeft"
673
  msgstr ""
674
 
675
- #: admin/admin.php:186
676
- msgid "fadeInLeftBig"
 
 
 
677
  msgstr ""
678
 
679
- #: admin/admin.php:187
680
- msgid "fadeInRight"
 
681
  msgstr ""
682
 
683
- #: admin/admin.php:188
684
- msgid "fadeInRightBig"
 
685
  msgstr ""
686
 
687
- #: admin/admin.php:189
688
- msgid "fadeInUp"
 
 
689
  msgstr ""
690
 
691
- #: admin/admin.php:190
692
- msgid "fadeInUpBig"
 
693
  msgstr ""
694
 
695
- #: admin/admin.php:192 admin/admin.php:271
696
- msgid "Flippers"
 
697
  msgstr ""
698
 
699
- #: admin/admin.php:193 admin/admin.php:272
700
- msgid "flip"
 
701
  msgstr ""
702
 
703
- #: admin/admin.php:194 admin/admin.php:273
704
- msgid "flipInX"
705
  msgstr ""
706
 
707
- #: admin/admin.php:195 admin/admin.php:274
708
- msgid "flipInY"
 
709
  msgstr ""
710
 
711
- #: admin/admin.php:196 admin/admin.php:275
712
- msgid "flipOutX"
713
  msgstr ""
714
 
715
- #: admin/admin.php:197 admin/admin.php:276
716
- msgid "flipOutY"
717
  msgstr ""
718
 
719
- #: admin/admin.php:199 admin/admin.php:278
720
- msgid "Lightspeed"
721
  msgstr ""
722
 
723
- #: admin/admin.php:200 admin/admin.php:279
724
- msgid "lightSpeedIn"
 
725
  msgstr ""
726
 
727
- #: admin/admin.php:201 admin/admin.php:280
728
- msgid "lightSpeedOut"
729
  msgstr ""
730
 
731
- #: admin/admin.php:203
732
- msgid "Rotating Entrances"
733
  msgstr ""
734
 
735
- #: admin/admin.php:204
736
- msgid "rotateIn"
 
737
  msgstr ""
738
 
739
- #: admin/admin.php:205
740
- msgid "rotateInDownLeft"
741
  msgstr ""
742
 
743
- #: admin/admin.php:206
744
- msgid "rotateInDownRight"
 
 
 
745
  msgstr ""
746
 
747
- #: admin/admin.php:207
748
- msgid "rotateInUpLeft"
 
 
 
749
  msgstr ""
750
 
751
- #: admin/admin.php:208
752
- msgid "rotateInUpRight"
753
  msgstr ""
754
 
755
- #: admin/admin.php:210
756
- msgid "Sliding Entrances"
 
757
  msgstr ""
758
 
759
- #: admin/admin.php:211
760
- msgid "slideInUp"
 
 
761
  msgstr ""
762
 
763
- #: admin/admin.php:212
764
- msgid "slideInDown"
 
 
765
  msgstr ""
766
 
767
- #: admin/admin.php:213
768
- msgid "slideInLeft"
769
  msgstr ""
770
 
771
- #: admin/admin.php:214
772
- msgid "slideInRight"
773
  msgstr ""
774
 
775
- #: admin/admin.php:216
776
- msgid "Zoom Entrances"
777
  msgstr ""
778
 
779
- #: admin/admin.php:217
780
- msgid "zoomIn"
781
  msgstr ""
782
 
783
- #: admin/admin.php:218
784
- msgid "zoomInDown"
785
  msgstr ""
786
 
787
- #: admin/admin.php:219
788
- msgid "zoomInLeft"
789
  msgstr ""
790
 
791
- #: admin/admin.php:220
792
- msgid "zoomInRight"
793
  msgstr ""
794
 
795
- #: admin/admin.php:221
796
- msgid "zoomInUp"
 
 
 
797
  msgstr ""
798
 
799
- #: admin/admin.php:223 admin/admin.php:302
800
- msgid "Specials"
801
  msgstr ""
802
 
803
- #: admin/admin.php:224 admin/admin.php:303
804
- msgid "hinge"
805
  msgstr ""
806
 
807
- #: admin/admin.php:225 admin/admin.php:304
808
- msgid "jackInTheBox"
809
  msgstr ""
810
 
811
- #: admin/admin.php:226 admin/admin.php:305
812
- msgid "rollIn"
813
  msgstr ""
814
 
815
- #: admin/admin.php:227 admin/admin.php:306
816
- msgid "rollOut"
817
  msgstr ""
818
 
819
- #: admin/admin.php:253
820
- msgid "Bouncing Exits"
821
  msgstr ""
822
 
823
- #: admin/admin.php:254
824
- msgid "bounceOut"
825
  msgstr ""
826
 
827
- #: admin/admin.php:255
828
- msgid "bounceOutDown"
829
  msgstr ""
830
 
831
- #: admin/admin.php:256
832
- msgid "bounceOutLeft"
833
  msgstr ""
834
 
835
- #: admin/admin.php:257
836
- msgid "bounceOutRight"
837
  msgstr ""
838
 
839
- #: admin/admin.php:258
840
- msgid "bounceOutUp"
841
  msgstr ""
842
 
843
- #: admin/admin.php:260
844
- msgid "Fading Exits"
845
  msgstr ""
846
 
847
- #: admin/admin.php:261
848
- msgid "fadeOut"
849
  msgstr ""
850
 
851
- #: admin/admin.php:262
852
- msgid "fadeOutDown"
853
  msgstr ""
854
 
855
- #: admin/admin.php:263
856
- msgid "fadeOutDownBig"
857
  msgstr ""
858
 
859
- #: admin/admin.php:264
860
- msgid "fadeOutLeft"
861
  msgstr ""
862
 
863
- #: admin/admin.php:265
864
- msgid "fadeOutLeftBig"
865
  msgstr ""
866
 
867
- #: admin/admin.php:266
868
- msgid "fadeOutRight"
869
  msgstr ""
870
 
871
- #: admin/admin.php:267
872
- msgid "fadeOutRightBig"
873
  msgstr ""
874
 
875
- #: admin/admin.php:268
876
- msgid "fadeOutUp"
877
  msgstr ""
878
 
879
- #: admin/admin.php:269
880
- msgid "fadeOutUpBig"
881
  msgstr ""
882
 
883
- #: admin/admin.php:282
884
- msgid "Rotating Exits"
885
  msgstr ""
886
 
887
- #: admin/admin.php:283
888
- msgid "rotateOut"
889
  msgstr ""
890
 
891
- #: admin/admin.php:284
892
- msgid "rotateOutDownLeft"
893
  msgstr ""
894
 
895
- #: admin/admin.php:285
896
- msgid "rotateOutDownRight"
897
  msgstr ""
898
 
899
- #: admin/admin.php:286
900
- msgid "rotateOutUpLeft"
901
  msgstr ""
902
 
903
- #: admin/admin.php:287
904
- msgid "rotateOutUpRight"
905
  msgstr ""
906
 
907
- #: admin/admin.php:289
908
- msgid "Sliding Exits"
909
  msgstr ""
910
 
911
- #: admin/admin.php:290
912
- msgid "slideOutUp"
913
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
914
 
915
- #: admin/admin.php:291
916
- msgid "slideOutDown"
917
  msgstr ""
918
 
919
- #: admin/admin.php:292
920
- msgid "slideOutLeft"
921
  msgstr ""
922
 
923
- #: admin/admin.php:293
924
- msgid "slideOutRight"
925
  msgstr ""
926
 
927
- #: admin/admin.php:295
928
- msgid "Zoom Exits"
929
  msgstr ""
930
 
931
- #: admin/admin.php:296
932
- msgid "zoomOut"
933
  msgstr ""
934
 
935
- #: admin/admin.php:297
936
- msgid "zoomOutDown"
937
  msgstr ""
938
 
939
- #: admin/admin.php:298
940
- msgid "zoomOutLeft"
941
  msgstr ""
942
 
943
- #: admin/admin.php:299
944
- msgid "zoomOutRight"
945
  msgstr ""
946
 
947
- #: admin/admin.php:300
948
- msgid "zoomOutUp"
949
  msgstr ""
950
 
951
- #: admin/admin.php:323
952
- msgid "No Animation"
953
  msgstr ""
954
 
955
- #: admin/admin.php:372
956
- msgid "Settings"
957
  msgstr ""
958
 
959
- #: admin/admin.php:466
960
- msgid "Pro feature"
961
  msgstr ""
962
 
963
- #: admin/admin.php:477 admin/admin.php:482
964
- msgid "Buy WP Review Pro"
965
  msgstr ""
966
 
967
- #: admin/admin.php:480
968
- msgid "Like WP Review Plugin? You will LOVE WP Review Pro!"
 
 
969
  msgstr ""
970
 
971
- #: admin/admin.php:481
 
 
 
 
972
  msgid ""
973
- "15 new review box templates, 15 new Schema types, commment reviews, user can "
974
- "rate each feature, review popups, review notification bars, custom width, 9 "
975
- "new custom widgets, Google reviews, Facebook reviews, Yelp reviews and much "
976
- "more..."
977
  msgstr ""
978
 
979
- #: includes/shortcodes.php:106
980
- msgid "User Rating"
981
  msgstr ""
982
 
983
- #: includes/shortcodes.php:113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
984
  #, php-format
985
- msgid "(%s vote)"
986
  msgstr ""
987
 
988
- #: includes/schemas.php:14
989
- msgid "Article"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
990
  msgstr ""
991
 
992
- #: includes/schemas.php:17
993
- msgid "Book"
994
  msgstr ""
995
 
996
- #: includes/schemas.php:20
997
- msgid "Game"
998
  msgstr ""
999
 
1000
- #: includes/schemas.php:23
1001
- msgid "Movie"
1002
  msgstr ""
1003
 
1004
- #: includes/schemas.php:26
1005
- msgid "MusicRecording"
1006
  msgstr ""
1007
 
1008
- #: includes/schemas.php:29
1009
- msgid "Painting"
1010
  msgstr ""
1011
 
1012
- #: includes/schemas.php:32
1013
- msgid "Place"
 
1014
  msgstr ""
1015
 
1016
- #: includes/schemas.php:35
1017
- msgid "Product"
1018
  msgstr ""
1019
 
1020
- #: includes/schemas.php:38
1021
- msgid "Recipe"
1022
  msgstr ""
1023
 
1024
- #: includes/schemas.php:41
1025
- msgid "Restaurant"
1026
  msgstr ""
1027
 
1028
- #: includes/schemas.php:44
1029
- msgid "SoftwareApplication"
1030
  msgstr ""
1031
 
1032
- #: includes/schemas.php:47
1033
- msgid "Store"
1034
  msgstr ""
1035
 
1036
- #: includes/schemas.php:50
1037
- msgid "Thing (Default)"
 
 
1038
  msgstr ""
1039
 
1040
- #: includes/schemas.php:53
1041
- msgid "TVSeries"
 
1042
  msgstr ""
1043
 
1044
- #: includes/schemas.php:56
1045
- msgid "WebSite"
1046
  msgstr ""
1047
 
1048
- #: includes/ajax.php:67 includes/ajax.php:143
 
 
1049
  #, php-format
1050
  msgid "Visitor Rating: %s"
1051
  msgstr ""
1052
 
 
1053
  #: includes/ajax.php:326 includes/ajax.php:329
1054
  #, php-format
1055
  msgid "%s review"
@@ -1073,6 +1895,7 @@ msgstr ""
1073
  msgid "Completed!"
1074
  msgstr ""
1075
 
 
1076
  #: includes/comments.php:51
1077
  #, php-format
1078
  msgid "WP Review Rating (%s)"
@@ -1106,727 +1929,751 @@ msgstr ""
1106
  msgid "Visitor reviews"
1107
  msgstr ""
1108
 
1109
- #: box-templates/aqua.php:64
1110
- msgid "Overall"
1111
- msgstr ""
1112
-
1113
- #: box-templates/aqua.php:111 box-templates/default.php:117
1114
- msgid "User Review"
1115
  msgstr ""
1116
 
1117
- #: box-templates/aqua.php:120 box-templates/default.php:126
1118
- msgid "vote"
1119
- msgid_plural "votes"
1120
- msgstr[0] ""
1121
- msgstr[1] ""
1122
-
1123
- #: comments/comments.php:12
1124
- msgid "Please do not load this page directly. Thanks!"
1125
  msgstr ""
1126
 
1127
- #: comments/comments.php:16
1128
- msgid "This post is password protected. Enter the password to view comments."
1129
  msgstr ""
1130
 
1131
- #: comments/comments.php:28
1132
- msgid "One Response"
1133
  msgstr ""
1134
 
1135
- #. number of comments
1136
- #: comments/comments.php:32
1137
  #, php-format
1138
- msgctxt "comments title"
1139
- msgid "%1$s Comment"
1140
- msgid_plural "%1$s Comments"
1141
- msgstr[0] ""
1142
- msgstr[1] ""
1143
-
1144
- #: comments/comments.php:75
1145
- msgid "Leave a Reply"
1146
  msgstr ""
1147
 
1148
- #: comments/comments.php:78
1149
- msgid "Post Comment"
 
 
 
1150
  msgstr ""
1151
 
1152
- #: comments/comments.php:79
1153
- msgid "Comment*"
 
 
 
1154
  msgstr ""
1155
 
1156
- #: comments/comments.php:83
1157
- msgid "Name*"
 
 
 
1158
  msgstr ""
1159
 
1160
- #: comments/comments.php:84
1161
- msgid "Email*"
 
 
 
1162
  msgstr ""
1163
 
1164
- #: comments/comments.php:85
1165
- msgid "Website"
 
 
 
1166
  msgstr ""
1167
 
1168
- #. translators: Facebook App link.
1169
- #: admin/options/facebook.php:13
1170
  #, php-format
1171
- msgid "%s to create Facebook App. Remember to add your domain to app."
 
1172
  msgstr ""
1173
 
1174
- #: admin/options/facebook.php:14 admin/options/yelp.php:27
1175
- #: admin/options/google.php:26
1176
- msgid "Click here"
 
 
1177
  msgstr ""
1178
 
1179
- #: admin/options/facebook.php:21
1180
- msgid "App ID"
 
 
 
1181
  msgstr ""
1182
 
1183
- #: admin/options/facebook.php:34
1184
- msgid "App secret"
 
 
 
1185
  msgstr ""
1186
 
1187
- #: admin/options/facebook.php:45
1188
- msgid ""
1189
- "Please re-generate access token in shortcodes and widgets each time you "
1190
- "change App ID or App secret."
1191
  msgstr ""
1192
 
1193
- #: admin/options/yelp.php:12 admin/options/google.php:11
1194
- msgid "API Key"
1195
  msgstr ""
1196
 
1197
- #. translators: Yelp App link.
1198
- #: admin/options/yelp.php:26
1199
  #, php-format
1200
- msgid "%s to get Yelp API Key."
1201
- msgstr ""
1202
-
1203
- #: admin/options/help.php:13
1204
  msgid ""
1205
- "All support for this plugin is provided through our forums. If you have not "
1206
- "registered yet, you can do so here for ​<strong>FREE​</strong>: "
1207
  msgstr ""
1208
 
1209
- #: admin/options/help.php:17
1210
- msgid "Check our free WordPress video tutorials here: "
1211
  msgstr ""
1212
 
1213
- #: admin/options/help.php:19
1214
- msgid "(no registration required)"
 
1215
  msgstr ""
1216
 
1217
- #: admin/options/help.php:22
1218
- msgid "Thank you for using our plugin."
 
1219
  msgstr ""
1220
 
1221
- #: admin/options/popup.php:11
1222
- msgid "Enable Popup"
1223
  msgstr ""
1224
 
1225
- #: admin/options/popup.php:32
1226
- msgid "Popup width"
1227
  msgstr ""
1228
 
1229
- #: admin/options/popup.php:45
1230
- msgid "Popup animation in"
1231
  msgstr ""
1232
 
1233
- #: admin/options/popup.php:63
1234
- msgid "Popup animation out"
1235
  msgstr ""
1236
 
1237
- #: admin/options/popup.php:82
1238
- msgid "Popup overlay color"
 
 
1239
  msgstr ""
1240
 
1241
- #: admin/options/popup.php:95
1242
- msgid "Popup overlay opacity"
1243
  msgstr ""
1244
 
1245
- #: admin/options/popup.php:110
1246
- msgid "Post type"
1247
  msgstr ""
1248
 
1249
- #: admin/options/popup.php:117
1250
- msgid "Any"
1251
  msgstr ""
1252
 
1253
- #: admin/options/popup.php:128
1254
- msgid "Popup content"
1255
  msgstr ""
1256
 
1257
- #: admin/options/popup.php:135
1258
- msgid "From category"
1259
  msgstr ""
1260
 
1261
- #: admin/options/popup.php:136
1262
- msgid "From tag"
1263
  msgstr ""
1264
 
1265
- #: admin/options/popup.php:137
1266
- msgid "From review type"
1267
  msgstr ""
1268
 
1269
- #: admin/options/popup.php:138
1270
- msgid "Latest reviews"
1271
  msgstr ""
1272
 
1273
- #: admin/options/popup.php:146
1274
- msgid "Choose category"
1275
  msgstr ""
1276
 
1277
- #: admin/options/popup.php:155
1278
- msgid "All categories"
1279
  msgstr ""
1280
 
1281
- #: admin/options/popup.php:169
1282
- msgid "Number of Reviews"
1283
  msgstr ""
1284
 
1285
- #: admin/options/popup.php:182
1286
- msgid "Popup content order"
 
 
 
 
 
 
1287
  msgstr ""
1288
 
1289
- #: admin/options/popup.php:189
1290
- msgid "Random"
 
 
 
 
 
 
1291
  msgstr ""
1292
 
1293
- #: admin/options/popup.php:190
1294
- msgid "Most popular"
 
 
 
 
 
 
1295
  msgstr ""
1296
 
1297
- #: admin/options/popup.php:191
1298
- msgid "Most rated"
 
 
 
 
 
 
1299
  msgstr ""
1300
 
1301
- #: admin/options/popup.php:192
1302
- msgid "Latest"
 
 
 
 
 
 
1303
  msgstr ""
1304
 
1305
- #: admin/options/popup.php:201
1306
- msgid "Hide popup for"
1307
  msgstr ""
1308
 
1309
- #: admin/options/popup.php:208
1310
- msgid "day(s)."
1311
  msgstr ""
1312
 
1313
- #: admin/options/popup.php:212
1314
- msgid "Set to 0 if you want to show popup on each page load."
1315
  msgstr ""
1316
 
1317
- #. translators: number input.
1318
- #: admin/options/popup.php:222
1319
- #, php-format
1320
- msgid "Show popup after %s second(s)"
1321
  msgstr ""
1322
 
1323
- #: admin/options/popup.php:231
1324
- msgid "Set to 0 if you want to show popup instantly."
1325
  msgstr ""
1326
 
1327
- #: admin/options/popup.php:238
1328
- msgid ""
1329
- "Show popup when visitor reaches the end of the content (only on single posts "
1330
- "or pages)"
1331
  msgstr ""
1332
 
1333
- #: admin/options/popup.php:248
1334
- msgid "Show popup when visitor is about to leave (exit intent)"
1335
  msgstr ""
1336
 
1337
- #. translators: width input.
1338
- #: admin/options/popup.php:261
1339
- #, php-format
1340
- msgid "Show popup on screens larger than %s pixels"
1341
  msgstr ""
1342
 
1343
- #: admin/options/popup.php:271
1344
- msgid "Generate new cookie"
1345
  msgstr ""
1346
 
1347
- #: admin/options/popup.php:272
1348
- msgid "Use this option to override old cookie."
1349
  msgstr ""
1350
 
1351
- #. translators: Google API link.
1352
- #: admin/options/google.php:25
1353
- #, php-format
1354
- msgid "%s to get Google API key."
1355
  msgstr ""
1356
 
1357
- #: admin/options/hello-bar.php:11
1358
- msgid "Content"
 
 
 
 
1359
  msgstr ""
1360
 
1361
- #: admin/options/hello-bar.php:12 admin/options/review.php:178
1362
- #: admin/options/review.php:516
1363
- msgid "Styling"
 
 
 
1364
  msgstr ""
1365
 
1366
- #: admin/options/hello-bar.php:16
1367
- msgid "Content Settings"
1368
  msgstr ""
1369
 
1370
- #: admin/options/hello-bar.php:20
1371
- msgid "Enable Global Notification Bar"
1372
  msgstr ""
1373
 
1374
- #: admin/options/hello-bar.php:53
1375
- msgid "Star Rating"
1376
  msgstr ""
1377
 
1378
- #: admin/options/hello-bar.php:65
1379
- msgid "Price"
 
1380
  msgstr ""
1381
 
1382
- #: admin/options/hello-bar.php:77
1383
- msgid "Button label"
1384
  msgstr ""
1385
 
1386
- #: admin/options/hello-bar.php:82
1387
- msgid "Buy Now"
1388
  msgstr ""
1389
 
1390
- #: admin/options/hello-bar.php:89
1391
- msgid "Button URL"
1392
  msgstr ""
1393
 
1394
- #: admin/options/hello-bar.php:101
1395
- msgid "Open link in new tab"
1396
  msgstr ""
1397
 
1398
- #: admin/options/hello-bar.php:120
1399
- msgid "Styling Settings"
1400
  msgstr ""
1401
 
1402
- #: admin/options/hello-bar.php:124
1403
- msgid "Location"
1404
  msgstr ""
1405
 
1406
- #: admin/options/hello-bar.php:131
1407
- msgid "Top"
1408
  msgstr ""
1409
 
1410
- #: admin/options/hello-bar.php:132
1411
- msgid "Bottom"
1412
  msgstr ""
1413
 
1414
- #: admin/options/hello-bar.php:140
1415
- msgid "Max container(px/%)"
1416
  msgstr ""
1417
 
1418
- #: admin/options/hello-bar.php:153
1419
- msgid "Background color"
1420
  msgstr ""
1421
 
1422
- #: admin/options/hello-bar.php:166
1423
- msgid "Background image"
1424
  msgstr ""
1425
 
1426
- #: admin/options/hello-bar.php:181
1427
- msgid "Text color"
1428
  msgstr ""
1429
 
1430
- #: admin/options/hello-bar.php:194
1431
- msgid "Star color"
1432
  msgstr ""
1433
 
1434
- #: admin/options/hello-bar.php:207
1435
- msgid "Button background color"
1436
  msgstr ""
1437
 
1438
- #: admin/options/hello-bar.php:220
1439
- msgid "Button text color"
1440
  msgstr ""
1441
 
1442
- #: admin/options/import.php:12
1443
- msgid "Demo data import"
 
1444
  msgstr ""
1445
 
1446
- #: admin/options/import.php:16 admin/options/import.php:38
1447
- #: admin/options/import.php:65
1448
- msgid "Import"
1449
  msgstr ""
1450
 
1451
- #: admin/options/import.php:17
1452
- msgid ""
1453
- "Click above button to import demo data, imported data will be saved as new "
1454
- "draft posts."
1455
  msgstr ""
1456
 
1457
- #: admin/options/import.php:23
1458
- msgid "Select plugin"
1459
  msgstr ""
1460
 
1461
- #: admin/options/import.php:45
1462
- msgid "Warning"
1463
  msgstr ""
1464
 
1465
- #: admin/options/import.php:46
1466
- msgid ""
1467
- "This action is IRREVERSIBLE! Take a backup of your database before "
1468
- "proceeding."
1469
  msgstr ""
1470
 
1471
- #: admin/options/import.php:57
1472
- msgid "Import settings"
1473
  msgstr ""
1474
 
1475
- #: admin/options/import.php:61
1476
- msgid "Import code"
 
1477
  msgstr ""
1478
 
1479
- #: admin/options/import.php:63
1480
- msgid ""
1481
- "Insert your backup code below and hit Import to restore your plugin options "
1482
- "from a backup."
1483
  msgstr ""
1484
 
1485
- #: admin/options/import.php:72
1486
- msgid "Export settings"
1487
  msgstr ""
1488
 
1489
- #: admin/options/import.php:76
1490
- msgid "Show export code"
1491
  msgstr ""
1492
 
1493
- #: admin/options/multisite.php:12
1494
- msgid "Site: "
1495
  msgstr ""
1496
 
1497
- #: admin/options/multisite.php:17
1498
- msgid "Select site"
1499
  msgstr ""
1500
 
1501
- #: admin/options/multisite.php:43 admin/options/review.php:187
1502
- msgid "General Settings"
1503
  msgstr ""
1504
 
1505
- #: admin/options/multisite.php:46
1506
- msgid "Hide global options panel"
1507
  msgstr ""
1508
 
1509
- #: admin/options/multisite.php:66
1510
- msgid "Hide Popup"
1511
  msgstr ""
1512
 
1513
- #: admin/options/multisite.php:85 admin/options/multisite.php:248
1514
- msgid "Hide Notification Bar"
1515
  msgstr ""
1516
 
1517
- #: admin/options/multisite.php:104
1518
- msgid "Hide Yelp Reviews"
1519
  msgstr ""
1520
 
1521
- #: admin/options/multisite.php:123
1522
- msgid "Hide Facebook Reviews"
1523
  msgstr ""
1524
 
1525
- #: admin/options/multisite.php:142
1526
- msgid "Hide Google Reviews"
1527
  msgstr ""
1528
 
1529
- #: admin/options/multisite.php:161
1530
- msgid "Hide Role Manager"
 
1531
  msgstr ""
1532
 
1533
- #: admin/options/multisite.php:179
1534
- msgid "Hide Import"
 
1535
  msgstr ""
1536
 
1537
- #: admin/options/multisite.php:197
1538
- msgid "Post Settings"
1539
  msgstr ""
1540
 
1541
- #: admin/options/multisite.php:207
1542
- msgid "Hide reviews in single editor"
1543
  msgstr ""
1544
 
1545
- #: admin/options/multisite.php:229
1546
- msgid "Hide Popup Box"
 
1547
  msgstr ""
1548
 
1549
- #: admin/options/multisite.php:286
1550
- msgid "Hide Review Links"
1551
  msgstr ""
1552
 
1553
- #: admin/options/multisite.php:304
1554
- msgid "Hide Review Description, Pros/Cons & Total Rating"
1555
  msgstr ""
1556
 
1557
- #: admin/options/multisite.php:323
1558
- msgid "Hide User Reviews"
1559
  msgstr ""
1560
 
1561
- #: admin/options/review.php:165
1562
- msgid "Star"
1563
  msgstr ""
1564
 
1565
- #: admin/options/review.php:166
1566
- msgid "Point"
1567
  msgstr ""
1568
 
1569
- #: admin/options/review.php:167
1570
- msgid "Percentage"
1571
  msgstr ""
1572
 
1573
- #: admin/options/review.php:168
1574
- msgid "Circle"
1575
  msgstr ""
1576
 
1577
- #: admin/options/review.php:169
1578
- msgid "Thumbs"
1579
  msgstr ""
1580
 
1581
- #: admin/options/review.php:177
1582
- msgid "General"
1583
  msgstr ""
1584
 
1585
- #: admin/options/review.php:179 admin/options/review.php:702
1586
- msgid "Defaults"
1587
  msgstr ""
1588
 
1589
- #: admin/options/review.php:180 admin/options/review.php:896
1590
- msgid "Embed"
1591
  msgstr ""
1592
 
1593
- #: admin/options/review.php:182
1594
- msgid "Migrate Ratings"
1595
  msgstr ""
1596
 
1597
- #: admin/options/review.php:191
1598
- msgid ""
1599
- "There is a filter set for the review location that may modify the options "
1600
- "below."
1601
  msgstr ""
1602
 
1603
- #: admin/options/review.php:198
1604
- msgid "The current theme provides default settings for the plugin."
1605
  msgstr ""
1606
 
1607
- #: admin/options/review.php:200
1608
- msgid "Set to theme defaults"
1609
  msgstr ""
1610
 
1611
- #: admin/options/review.php:207
1612
- msgid "Restrict rating to registered users only"
1613
  msgstr ""
1614
 
1615
- #: admin/options/review.php:225
1616
- msgid "Add total rating to thumbnails"
1617
  msgstr ""
1618
 
1619
- #: admin/options/review.php:244
1620
- msgid "Enable User rating in old posts"
1621
  msgstr ""
1622
 
1623
- #: admin/options/review.php:264
1624
- msgid "Replace WooCommerce rating"
1625
  msgstr ""
1626
 
1627
- #: admin/options/review.php:284
1628
- msgid "Disable Map Script in the Backend"
1629
  msgstr ""
1630
 
1631
- #: admin/options/review.php:300
1632
- msgid ""
1633
- "If map script is conflicting with other plugin in the single post editor, "
1634
- "please enable this option."
1635
  msgstr ""
1636
 
1637
- #: admin/options/review.php:305
1638
- msgid "Comments template"
1639
  msgstr ""
1640
 
1641
- #: admin/options/review.php:315
1642
- msgid "Theme"
1643
  msgstr ""
1644
 
1645
- #: admin/options/review.php:319
1646
- msgid "Use theme comments template. Might need customization of comments.php"
1647
  msgstr ""
1648
 
1649
- #: admin/options/review.php:330
1650
- msgid ""
1651
- "Use WP Review comments template. Better chances for out of the box "
1652
- "integration."
1653
  msgstr ""
1654
 
1655
- #: admin/options/review.php:338
1656
- msgid "Comment form integration"
1657
  msgstr ""
1658
 
1659
- #: admin/options/review.php:348
1660
- msgid "Replace"
1661
  msgstr ""
1662
 
1663
- #: admin/options/review.php:352
1664
- msgid "Replace form fields."
1665
  msgstr ""
1666
 
1667
- #: admin/options/review.php:359
1668
- msgid "Extend"
1669
  msgstr ""
1670
 
1671
- #: admin/options/review.php:363
1672
- msgid "Add new fields without modifying the default fields."
 
1673
  msgstr ""
1674
 
1675
- #: admin/options/review.php:371
1676
- msgid "Require a rating when commenting"
1677
  msgstr ""
1678
 
1679
- #: admin/options/review.php:390
1680
- msgid "Allow comment feedback (helpful/unhelpful)"
1681
  msgstr ""
1682
 
1683
- #: admin/options/review.php:409
1684
- msgid "Record User Ratings"
1685
  msgstr ""
1686
 
1687
- #: admin/options/review.php:416
1688
- msgid "Based on IP address"
1689
  msgstr ""
1690
 
1691
- #: admin/options/review.php:417
1692
- msgid "Based on browser cookie"
1693
  msgstr ""
1694
 
1695
- #: admin/options/review.php:445
1696
- msgid "Allow multiple reviews per account"
1697
  msgstr ""
1698
 
1699
- #: admin/options/review.php:463
1700
- msgid "Include Pros/Cons in comment reviews"
1701
  msgstr ""
1702
 
1703
- #: admin/options/review.php:482
1704
- msgid "Approve Comment Reviews without Moderation"
1705
  msgstr ""
1706
 
1707
- #: admin/options/review.php:509
1708
- msgid "Click to remove all visitor ratings of all posts."
1709
  msgstr ""
1710
 
1711
- #: admin/options/review.php:552
1712
- msgid ""
1713
- "There is a filter set for the review colors that may modify the options "
1714
- "below."
1715
  msgstr ""
1716
 
1717
- #: admin/options/review.php:622
1718
- msgid "Review Box Width"
1719
  msgstr ""
1720
 
1721
- #: admin/options/review.php:636
1722
- msgid ""
1723
- "Many templates use Google Font, select <code>No</code> to use default theme "
1724
- "font."
1725
  msgstr ""
1726
 
1727
- #: admin/options/review.php:656
1728
- msgid "Comment Rating Color"
1729
  msgstr ""
1730
 
1731
- #: admin/options/review.php:658
1732
- msgid "Use different color for ratings in comments"
1733
  msgstr ""
1734
 
1735
- #: admin/options/review.php:678
1736
- msgid "Rating icon"
1737
  msgstr ""
1738
 
1739
- #: admin/options/review.php:697
1740
- msgid "Use Image"
1741
  msgstr ""
1742
 
1743
- #: admin/options/review.php:709
1744
- msgid "Review type"
1745
  msgstr ""
1746
 
1747
- #: admin/options/review.php:714
1748
- msgid "No Review"
1749
  msgstr ""
1750
 
1751
- #: admin/options/review.php:749
1752
- msgid "Copy & paste this shortcode in the post content."
1753
  msgstr ""
1754
 
1755
- #: admin/options/review.php:756
1756
- msgid "Review Schema"
1757
  msgstr ""
1758
 
1759
- #: admin/options/review.php:771
1760
- msgid "Features"
1761
  msgstr ""
1762
 
1763
- #: admin/options/review.php:811
1764
- msgid "Default features are set by a filter function. Remove it to change."
1765
  msgstr ""
1766
 
1767
- #: admin/options/review.php:813
1768
- msgid "Add default feature"
1769
  msgstr ""
1770
 
1771
- #: admin/options/review.php:820
1772
- msgid "Links"
1773
  msgstr ""
1774
 
1775
- #: admin/options/review.php:846
1776
- msgid "Add default link"
1777
  msgstr ""
1778
 
1779
- #: admin/options/review.php:852
1780
- msgid "User Ratings"
1781
  msgstr ""
1782
 
1783
- #: admin/options/review.php:897
1784
- msgid ""
1785
- "From here you can enable embed feature, which will show embed code in the "
1786
- "frontend which site visitors can use to embed review on their site."
1787
  msgstr ""
1788
 
1789
- #: admin/options/review.php:901
1790
- msgid "Enable Embed"
1791
  msgstr ""
1792
 
1793
- #: admin/options/review.php:920
1794
- msgid "Show Title"
1795
  msgstr ""
1796
 
1797
- #: admin/options/review.php:939
1798
- msgid "Show Thumbnail"
1799
  msgstr ""
1800
 
1801
- #: admin/options/review.php:958
1802
- msgid "Show Excerpt"
1803
  msgstr ""
1804
 
1805
- #: admin/options/review.php:977
1806
- msgid "Show Rating Box"
1807
  msgstr ""
1808
 
1809
- #: admin/options/review.php:996
1810
- msgid "Show Credit"
1811
  msgstr ""
1812
 
1813
- #: admin/options/review.php:1017
1814
- msgid ""
1815
- "Here you can import your existing user ratings from WP Review 1.x and WP "
1816
- "Review Pro 1.x."
1817
  msgstr ""
1818
 
1819
- #: admin/options/review.php:1021
1820
- #, php-format
1821
- msgid "%s ratings left to import."
1822
  msgstr ""
1823
 
1824
- #: admin/options/review.php:1024
1825
- msgid "Start import"
1826
  msgstr ""
1827
 
1828
- #: admin/options/review.php:1027
1829
- msgid "Ratings have already been migrated."
 
1830
  msgstr ""
1831
 
1832
  #: includes/widgets/class-wp-review-tab-widget.php:28
@@ -1865,11 +2712,6 @@ msgstr ""
1865
  msgid "Editor's choice"
1866
  msgstr ""
1867
 
1868
- #: includes/widgets/class-wp-review-tab-widget.php:113
1869
- #: includes/widgets/class-wp-review-tab-widget.php:158
1870
- msgid "Comments"
1871
- msgstr ""
1872
-
1873
  #: includes/widgets/class-wp-review-tab-widget.php:118
1874
  msgid "Select Tabs"
1875
  msgstr ""
@@ -1908,6 +2750,10 @@ msgstr ""
1908
  msgid "Number of reviews to show:"
1909
  msgstr ""
1910
 
 
 
 
 
1911
  #: includes/widgets/class-wp-review-tab-widget.php:206
1912
  msgid "Thumbnail size:"
1913
  msgstr ""
@@ -1949,32 +2795,94 @@ msgstr ""
1949
  msgid "Recent Ratings"
1950
  msgstr ""
1951
 
1952
- #: includes/widgets/class-wp-review-tab-widget.php:549
1953
- msgid "&laquo; Previous"
 
1954
  msgstr ""
1955
 
1956
- #: includes/widgets/class-wp-review-tab-widget.php:552
1957
- msgid "Next &raquo;"
 
1958
  msgstr ""
1959
 
1960
- #: box-templates/global/partials/review-schema.php:49
1961
- msgid "[ More ]"
 
1962
  msgstr ""
1963
 
1964
- #. Description of the plugin
1965
- msgid ""
1966
- "Create reviews! Choose from stars, percentages or points for review scores. "
1967
- "Supports Retina Display, WPMU and Unlimited Color Schemes."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1968
  msgstr ""
1969
 
1970
- #. URI of the plugin
1971
- msgid "http://mythemeshop.com/plugins/wp-review/"
1972
  msgstr ""
1973
 
1974
- #. Author of the plugin
1975
- msgid "MyThemeShop"
1976
  msgstr ""
1977
 
1978
- #. Author URI of the plugin
1979
- msgid "http://mythemeshop.com/"
 
 
 
 
1980
  msgstr ""
10
  "Language-Team: MyThemeShop\n"
11
  "Last-Translator: MyThemeShop\n"
12
  "X-Poedit-Basepath: ..\n"
13
+ "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;"
14
+ "_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;"
15
+ "esc_html_e;esc_html_x:1,2c\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
+ "POT-Creation-Date: 2020-01-20 13:57+0530\n"
19
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
20
+ "X-Generator: Poedit 2.2.4\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
 
23
 
24
+ #. translators: import source.
25
+ #: admin/admin.php:41
26
  #, php-format
27
+ msgid "Are you sure you want to import from %s?"
 
 
28
  msgstr ""
29
 
30
+ #: admin/admin.php:42
31
+ msgid "The server responded with an error. Try again."
32
  msgstr ""
33
 
34
+ #: admin/admin.php:43
35
+ msgid ""
36
+ "Are you sure you want to import options? All current options will be lost."
37
  msgstr ""
38
 
39
+ #: admin/admin.php:106 admin/metaboxes.php:1244 admin/options/hello-bar.php:173
40
+ msgid "Select Image"
41
  msgstr ""
42
 
43
+ #: admin/admin.php:107
44
+ msgid "Insert Image"
45
  msgstr ""
46
 
47
+ #: admin/admin.php:108 admin/metaboxes.php:1247
48
+ msgid "Remove Image"
49
  msgstr ""
50
 
51
+ #: admin/admin.php:109 includes/schemas.php:192 includes/schemas.php:301
52
+ #: includes/schemas.php:370
53
+ msgid "Title"
54
  msgstr ""
55
 
56
+ #: admin/admin.php:110
57
+ msgid "Review box"
58
  msgstr ""
59
 
60
+ #: admin/admin.php:111 includes/comments.php:78
61
+ msgid "Review total"
62
  msgstr ""
63
 
64
+ #: admin/admin.php:112
65
+ msgid "Visitor rating"
66
  msgstr ""
67
 
68
+ #: admin/admin.php:113
69
+ msgid "Review ID"
70
  msgstr ""
71
 
72
+ #: admin/admin.php:114
73
+ msgid "Leave empty to use current review ID"
74
  msgstr ""
75
 
76
+ #: admin/admin.php:115
77
+ msgid "Insert"
78
  msgstr ""
79
 
80
+ #: admin/admin.php:116
81
+ msgid "Cancel"
82
  msgstr ""
83
 
84
+ #: admin/admin.php:122
85
+ msgid "Are you sure you want to do this?"
86
  msgstr ""
87
 
88
+ #: admin/admin.php:123
89
+ msgid "Are you sure you want to import demo?"
90
  msgstr ""
91
 
92
+ #: admin/admin.php:124
93
+ msgid "Importing proccess finished!"
94
  msgstr ""
95
 
96
+ #: admin/admin.php:163 admin/admin.php:242
97
+ msgid "Attention Seekers"
98
  msgstr ""
99
 
100
+ #: admin/admin.php:164 admin/admin.php:243
101
+ msgid "bounce"
102
  msgstr ""
103
 
104
+ #: admin/admin.php:165 admin/admin.php:244
105
+ msgid "flash"
 
106
  msgstr ""
107
 
108
+ #: admin/admin.php:166 admin/admin.php:245
109
+ msgid "pulse"
 
110
  msgstr ""
111
 
112
+ #: admin/admin.php:167 admin/admin.php:246
113
+ msgid "rubberBand"
114
  msgstr ""
115
 
116
+ #: admin/admin.php:168 admin/admin.php:247
117
+ msgid "shake"
 
118
  msgstr ""
119
 
120
+ #: admin/admin.php:169 admin/admin.php:248
121
+ msgid "swing"
 
122
  msgstr ""
123
 
124
+ #: admin/admin.php:170 admin/admin.php:249
125
+ msgid "tada"
 
126
  msgstr ""
127
 
128
+ #: admin/admin.php:171 admin/admin.php:250
129
+ msgid "wobble"
 
130
  msgstr ""
131
 
132
+ #: admin/admin.php:172 admin/admin.php:251
133
+ msgid "jello"
 
134
  msgstr ""
135
 
136
+ #: admin/admin.php:174
137
+ msgid "Bouncing Entrances"
138
  msgstr ""
139
 
140
+ #: admin/admin.php:175
141
+ msgid "bounceIn"
142
  msgstr ""
143
 
144
+ #: admin/admin.php:176
145
+ msgid "bounceInDown"
146
  msgstr ""
147
 
148
+ #: admin/admin.php:177
149
+ msgid "bounceInLeft"
150
  msgstr ""
151
 
152
+ #: admin/admin.php:178
153
+ msgid "bounceInRight"
154
  msgstr ""
155
 
156
+ #: admin/admin.php:179
157
+ msgid "bounceInUp"
158
  msgstr ""
159
 
160
+ #: admin/admin.php:181
161
+ msgid "Fading Entrances"
162
  msgstr ""
163
 
164
+ #: admin/admin.php:182
165
+ msgid "fadeIn"
166
  msgstr ""
167
 
168
+ #: admin/admin.php:183
169
+ msgid "fadeInDown"
170
  msgstr ""
171
 
172
+ #: admin/admin.php:184
173
+ msgid "fadeInDownBig"
174
  msgstr ""
175
 
176
+ #: admin/admin.php:185
177
+ msgid "fadeInLeft"
178
  msgstr ""
179
 
180
+ #: admin/admin.php:186
181
+ msgid "fadeInLeftBig"
182
  msgstr ""
183
 
184
+ #: admin/admin.php:187
185
+ msgid "fadeInRight"
186
  msgstr ""
187
 
188
+ #: admin/admin.php:188
189
+ msgid "fadeInRightBig"
190
  msgstr ""
191
 
192
+ #: admin/admin.php:189
193
+ msgid "fadeInUp"
 
194
  msgstr ""
195
 
196
+ #: admin/admin.php:190
197
+ msgid "fadeInUpBig"
198
  msgstr ""
199
 
200
+ #: admin/admin.php:192 admin/admin.php:271
201
+ msgid "Flippers"
202
  msgstr ""
203
 
204
+ #: admin/admin.php:193 admin/admin.php:272
205
+ msgid "flip"
206
  msgstr ""
207
 
208
+ #: admin/admin.php:194 admin/admin.php:273
209
+ msgid "flipInX"
210
  msgstr ""
211
 
212
+ #: admin/admin.php:195 admin/admin.php:274
213
+ msgid "flipInY"
214
  msgstr ""
215
 
216
+ #: admin/admin.php:196 admin/admin.php:275
217
+ msgid "flipOutX"
218
  msgstr ""
219
 
220
+ #: admin/admin.php:197 admin/admin.php:276
221
+ msgid "flipOutY"
222
  msgstr ""
223
 
224
+ #: admin/admin.php:199 admin/admin.php:278
225
+ msgid "Lightspeed"
226
  msgstr ""
227
 
228
+ #: admin/admin.php:200 admin/admin.php:279
229
+ msgid "lightSpeedIn"
230
  msgstr ""
231
 
232
+ #: admin/admin.php:201 admin/admin.php:280
233
+ msgid "lightSpeedOut"
234
  msgstr ""
235
 
236
+ #: admin/admin.php:203
237
+ msgid "Rotating Entrances"
238
  msgstr ""
239
 
240
+ #: admin/admin.php:204
241
+ msgid "rotateIn"
 
242
  msgstr ""
243
 
244
+ #: admin/admin.php:205
245
+ msgid "rotateInDownLeft"
246
  msgstr ""
247
 
248
+ #: admin/admin.php:206
249
+ msgid "rotateInDownRight"
 
250
  msgstr ""
251
 
252
+ #: admin/admin.php:207
253
+ msgid "rotateInUpLeft"
254
  msgstr ""
255
 
256
+ #: admin/admin.php:208
257
+ msgid "rotateInUpRight"
258
  msgstr ""
259
 
260
+ #: admin/admin.php:210
261
+ msgid "Sliding Entrances"
262
  msgstr ""
263
 
264
+ #: admin/admin.php:211
265
+ msgid "slideInUp"
266
  msgstr ""
267
 
268
+ #: admin/admin.php:212
269
+ msgid "slideInDown"
270
  msgstr ""
271
 
272
+ #: admin/admin.php:213
273
+ msgid "slideInLeft"
274
  msgstr ""
275
 
276
+ #: admin/admin.php:214
277
+ msgid "slideInRight"
278
  msgstr ""
279
 
280
+ #: admin/admin.php:216
281
+ msgid "Zoom Entrances"
 
 
 
282
  msgstr ""
283
 
284
+ #: admin/admin.php:217
285
+ msgid "zoomIn"
286
  msgstr ""
287
 
288
+ #: admin/admin.php:218
289
+ msgid "zoomInDown"
290
  msgstr ""
291
 
292
+ #: admin/admin.php:219
293
+ msgid "zoomInLeft"
294
  msgstr ""
295
 
296
+ #: admin/admin.php:220
297
+ msgid "zoomInRight"
298
  msgstr ""
299
 
300
+ #: admin/admin.php:221
301
+ msgid "zoomInUp"
302
  msgstr ""
303
 
304
+ #: admin/admin.php:223 admin/admin.php:302
305
+ msgid "Specials"
306
  msgstr ""
307
 
308
+ #: admin/admin.php:224 admin/admin.php:303
309
+ msgid "hinge"
310
  msgstr ""
311
 
312
+ #: admin/admin.php:225 admin/admin.php:304
313
+ msgid "jackInTheBox"
314
  msgstr ""
315
 
316
+ #: admin/admin.php:226 admin/admin.php:305
317
+ msgid "rollIn"
318
  msgstr ""
319
 
320
+ #: admin/admin.php:227 admin/admin.php:306
321
+ msgid "rollOut"
322
  msgstr ""
323
 
324
+ #: admin/admin.php:253
325
+ msgid "Bouncing Exits"
326
  msgstr ""
327
 
328
+ #: admin/admin.php:254
329
+ msgid "bounceOut"
330
  msgstr ""
331
 
332
+ #: admin/admin.php:255
333
+ msgid "bounceOutDown"
334
  msgstr ""
335
 
336
+ #: admin/admin.php:256
337
+ msgid "bounceOutLeft"
338
  msgstr ""
339
 
340
+ #: admin/admin.php:257
341
+ msgid "bounceOutRight"
342
  msgstr ""
343
 
344
+ #: admin/admin.php:258
345
+ msgid "bounceOutUp"
346
  msgstr ""
347
 
348
+ #: admin/admin.php:260
349
+ msgid "Fading Exits"
350
  msgstr ""
351
 
352
+ #: admin/admin.php:261
353
+ msgid "fadeOut"
354
  msgstr ""
355
 
356
+ #: admin/admin.php:262
357
+ msgid "fadeOutDown"
358
  msgstr ""
359
 
360
+ #: admin/admin.php:263
361
+ msgid "fadeOutDownBig"
362
  msgstr ""
363
 
364
+ #: admin/admin.php:264
365
+ msgid "fadeOutLeft"
366
  msgstr ""
367
 
368
+ #: admin/admin.php:265
369
+ msgid "fadeOutLeftBig"
370
  msgstr ""
371
 
372
+ #: admin/admin.php:266
373
+ msgid "fadeOutRight"
374
  msgstr ""
375
 
376
+ #: admin/admin.php:267
377
+ msgid "fadeOutRightBig"
378
  msgstr ""
379
 
380
+ #: admin/admin.php:268
381
+ msgid "fadeOutUp"
382
  msgstr ""
383
 
384
+ #: admin/admin.php:269
385
+ msgid "fadeOutUpBig"
386
  msgstr ""
387
 
388
+ #: admin/admin.php:282
389
+ msgid "Rotating Exits"
390
  msgstr ""
391
 
392
+ #: admin/admin.php:283
393
+ msgid "rotateOut"
394
  msgstr ""
395
 
396
+ #: admin/admin.php:284
397
+ msgid "rotateOutDownLeft"
398
  msgstr ""
399
 
400
+ #: admin/admin.php:285
401
+ msgid "rotateOutDownRight"
402
  msgstr ""
403
 
404
+ #: admin/admin.php:286
405
+ msgid "rotateOutUpLeft"
406
  msgstr ""
407
 
408
+ #: admin/admin.php:287
409
+ msgid "rotateOutUpRight"
410
  msgstr ""
411
 
412
+ #: admin/admin.php:289
413
+ msgid "Sliding Exits"
414
  msgstr ""
415
 
416
+ #: admin/admin.php:290
417
+ msgid "slideOutUp"
 
 
418
  msgstr ""
419
 
420
+ #: admin/admin.php:291
421
+ msgid "slideOutDown"
422
  msgstr ""
423
 
424
+ #: admin/admin.php:292
425
+ msgid "slideOutLeft"
426
  msgstr ""
427
 
428
+ #: admin/admin.php:293
429
+ msgid "slideOutRight"
430
  msgstr ""
431
 
432
+ #: admin/admin.php:295
433
+ msgid "Zoom Exits"
434
  msgstr ""
435
 
436
+ #: admin/admin.php:296
437
+ msgid "zoomOut"
438
  msgstr ""
439
 
440
+ #: admin/admin.php:297
441
+ msgid "zoomOutDown"
442
  msgstr ""
443
 
444
+ #: admin/admin.php:298
445
+ msgid "zoomOutLeft"
446
  msgstr ""
447
 
448
+ #: admin/admin.php:299
449
+ msgid "zoomOutRight"
450
  msgstr ""
451
 
452
+ #: admin/admin.php:300
453
+ msgid "zoomOutUp"
454
  msgstr ""
455
 
456
+ #: admin/admin.php:323
457
+ msgid "No Animation"
458
  msgstr ""
459
 
460
+ #: admin/admin.php:372
461
+ msgid "Settings"
462
  msgstr ""
463
 
464
+ #: admin/admin.php:466
465
+ msgid "Pro feature"
466
  msgstr ""
467
 
468
+ #: admin/admin.php:477 admin/admin.php:482
469
+ msgid "Buy WP Review Pro"
470
  msgstr ""
471
 
472
+ #: admin/admin.php:480
473
+ msgid "Like WP Review Plugin? You will LOVE WP Review Pro!"
474
  msgstr ""
475
 
476
+ #: admin/admin.php:481
477
  msgid ""
478
+ "15 new review box templates, 15 new Schema types, commment reviews, user can "
479
+ "rate each feature, review popups, review notification bars, custom width, 9 "
480
+ "new custom widgets, Google reviews, Facebook reviews, Yelp reviews and much "
481
+ "more..."
 
 
 
 
 
 
 
 
 
 
 
482
  msgstr ""
483
 
484
  #: admin/class-wp-review-form-field.php:27
491
  msgid "No"
492
  msgstr ""
493
 
494
+ #: admin/class-wp-review-options.php:38 admin/class-wp-review-options.php:39
495
+ #: admin/options/review.php:326 includes/functions.php:3827
496
+ msgid "WP Review"
497
  msgstr ""
498
 
499
+ #: admin/class-wp-review-options.php:83
500
+ msgid "Global"
501
  msgstr ""
502
 
503
+ #: admin/class-wp-review-options.php:89 admin/review-options-meta-box.php:48
504
+ msgid "Popup"
 
505
  msgstr ""
506
 
507
+ #: admin/class-wp-review-options.php:95 admin/review-options-meta-box.php:51
508
+ msgid "Notification Bar"
509
  msgstr ""
510
 
511
+ #: admin/class-wp-review-options.php:101
512
+ msgid "Yelp Reviews"
 
513
  msgstr ""
514
 
515
+ #: admin/class-wp-review-options.php:107
516
+ msgid "Google Reviews"
517
  msgstr ""
518
 
519
+ #: admin/class-wp-review-options.php:113
520
+ msgid "Facebook Reviews"
521
  msgstr ""
522
 
523
+ #: admin/class-wp-review-options.php:119
524
+ msgid "Role Manager"
525
  msgstr ""
526
 
527
+ #: admin/class-wp-review-options.php:125 includes/functions.php:3803
528
+ msgid "Import Reviews"
529
  msgstr ""
530
 
531
+ #: admin/class-wp-review-options.php:131
532
+ msgid "Help"
533
  msgstr ""
534
 
535
+ #: admin/class-wp-review-options.php:155
536
+ msgid "Multisite Settings"
537
  msgstr ""
538
 
539
+ #: admin/class-wp-review-options.php:170
540
+ msgid "WP Review Settings"
541
  msgstr ""
542
 
543
+ #: admin/class-wpr-review-notice.php:54
544
+ msgid ""
545
+ "Hey, we noticed you have created over 10 reviews from WP Review - that’s "
546
+ "awesome! Could you please do us a BIG favor and give it a 5-star rating on "
547
+ "WordPress to help us spread the word and boost our motivation?"
548
  msgstr ""
549
 
550
+ #: admin/class-wpr-review-notice.php:57
551
+ msgid "Ok, you deserve it"
552
  msgstr ""
553
 
554
+ #: admin/class-wpr-review-notice.php:61
555
+ msgid "Nope, maybe later"
556
  msgstr ""
557
 
558
+ #: admin/class-wpr-review-notice.php:65
559
+ msgid "I already did"
560
  msgstr ""
561
 
562
+ #: admin/demo-importer.php:32 admin/demo-importer.php:37
563
+ msgid "Processing, please wait&hellip;"
564
  msgstr ""
565
 
566
+ #: admin/demo-importer.php:38
567
+ msgid "Ok"
568
  msgstr ""
569
 
570
+ #: admin/demo-importer/class-wp-import.php:115
571
+ #: admin/demo-importer/class-wp-import.php:124
572
+ #: admin/demo-importer/class-wp-import.php:175
573
+ #: admin/demo-importer/class-wp-import.php:179
574
+ #: admin/demo-importer/class-wp-import.php:188
575
+ msgid "Sorry, there has been an error."
576
  msgstr ""
577
 
578
+ #: admin/demo-importer/class-wp-import.php:116
579
+ msgid "The file does not exist, please try again."
580
  msgstr ""
581
 
582
+ #: admin/demo-importer/class-wp-import.php:159
583
+ msgid "All done."
584
  msgstr ""
585
 
586
+ #: admin/demo-importer/class-wp-import.php:159
587
+ msgid "Have fun!"
588
  msgstr ""
589
 
590
+ #: admin/demo-importer/class-wp-import.php:160
591
+ msgid "Remember to update the passwords and roles of imported users."
592
  msgstr ""
593
 
594
+ #: admin/demo-importer/class-wp-import.php:180
595
+ #, php-format
596
+ msgid ""
597
+ "The export file could not be found at <code>%s</code>. It is likely that "
598
+ "this was caused by a permissions problem."
599
  msgstr ""
600
 
601
+ #: admin/demo-importer/class-wp-import.php:196
602
+ #, php-format
603
+ msgid ""
604
+ "This WXR file (version %s) may not be supported by this version of the "
605
+ "importer. Please consider updating."
606
  msgstr ""
607
 
608
+ #: admin/demo-importer/class-wp-import.php:221
609
+ #, php-format
610
+ msgid ""
611
+ "Failed to import author %s. Their posts will be attributed to the current "
612
+ "user."
613
  msgstr ""
614
 
615
+ #: admin/demo-importer/class-wp-import.php:247
616
+ msgid "Assign Authors"
617
  msgstr ""
618
 
619
+ #: admin/demo-importer/class-wp-import.php:248
620
+ msgid ""
621
+ "To make it easier for you to edit and save the imported content, you may "
622
+ "want to reassign the author of the imported item to an existing user of this "
623
+ "site. For example, you may want to import all the entries as <code>admin</"
624
+ "code>s entries."
625
  msgstr ""
626
 
627
+ #: admin/demo-importer/class-wp-import.php:250
628
+ #, php-format
629
+ msgid ""
630
+ "If a new user is created by WordPress, a new password will be randomly "
631
+ "generated and the new user&#8217;s role will be set as %s. Manually changing "
632
+ "the new user&#8217;s details will be necessary."
633
  msgstr ""
634
 
635
+ #: admin/demo-importer/class-wp-import.php:260
636
+ msgid "Import Attachments"
637
  msgstr ""
638
 
639
+ #: admin/demo-importer/class-wp-import.php:263
640
+ msgid "Download and import file attachments"
641
  msgstr ""
642
 
643
+ #: admin/demo-importer/class-wp-import.php:267 includes/functions.php:1576
644
+ msgid "Submit"
645
  msgstr ""
646
 
647
+ #: admin/demo-importer/class-wp-import.php:280
648
+ msgid "Import author:"
649
  msgstr ""
650
 
651
+ #: admin/demo-importer/class-wp-import.php:291
652
+ msgid "or create new user with login name:"
653
  msgstr ""
654
 
655
+ #: admin/demo-importer/class-wp-import.php:294
656
+ msgid "as a new user:"
657
  msgstr ""
658
 
659
+ #: admin/demo-importer/class-wp-import.php:302
660
+ msgid "assign posts to an existing user:"
661
  msgstr ""
662
 
663
+ #: admin/demo-importer/class-wp-import.php:304
664
+ msgid "or assign posts to an existing user:"
665
  msgstr ""
666
 
667
+ #: admin/demo-importer/class-wp-import.php:305
668
+ msgid "- Select -"
669
  msgstr ""
670
 
671
+ #: admin/demo-importer/class-wp-import.php:355
672
+ #, php-format
673
+ msgid ""
674
+ "Failed to create new user for %s. Their posts will be attributed to the "
675
+ "current user."
676
  msgstr ""
677
 
678
+ #: admin/demo-importer/class-wp-import.php:407
679
+ #, php-format
680
+ msgid "Failed to import category %s"
681
  msgstr ""
682
 
683
+ #: admin/demo-importer/class-wp-import.php:450
684
+ #, php-format
685
+ msgid "Failed to import post tag %s"
686
  msgstr ""
687
 
688
+ #: admin/demo-importer/class-wp-import.php:499
689
+ #: admin/demo-importer/class-wp-import.php:721
690
+ #, php-format
691
+ msgid "Failed to import %s %s"
692
  msgstr ""
693
 
694
+ #: admin/demo-importer/class-wp-import.php:588
695
+ #, php-format
696
+ msgid "Failed to import &#8220;%s&#8221;: Invalid post type %s"
697
  msgstr ""
698
 
699
+ #: admin/demo-importer/class-wp-import.php:625
700
+ #, php-format
701
+ msgid "%s &#8220;%s&#8221; already exists."
702
  msgstr ""
703
 
704
+ #: admin/demo-importer/class-wp-import.php:687
705
+ #, php-format
706
+ msgid "Failed to import %s &#8220;%s&#8221;"
707
  msgstr ""
708
 
709
+ #: admin/demo-importer/class-wp-import.php:853
710
+ msgid "Menu item skipped due to missing menu slug"
711
  msgstr ""
712
 
713
+ #: admin/demo-importer/class-wp-import.php:860
714
+ #, php-format
715
+ msgid "Menu item skipped due to invalid menu slug: %s"
716
  msgstr ""
717
 
718
+ #: admin/demo-importer/class-wp-import.php:923
719
+ msgid "Fetching attachments is not enabled"
720
  msgstr ""
721
 
722
+ #: admin/demo-importer/class-wp-import.php:936
723
+ msgid "Invalid file type"
724
  msgstr ""
725
 
726
+ #: admin/demo-importer/class-wp-import.php:986
727
+ msgid "Remote server did not respond"
728
  msgstr ""
729
 
730
+ #: admin/demo-importer/class-wp-import.php:994
731
+ #, php-format
732
+ msgid "Remote server returned error response %1$d %2$s"
733
  msgstr ""
734
 
735
+ #: admin/demo-importer/class-wp-import.php:1001
736
+ msgid "Remote file is incorrect size"
737
  msgstr ""
738
 
739
+ #: admin/demo-importer/class-wp-import.php:1006
740
+ msgid "Zero size file downloaded"
741
  msgstr ""
742
 
743
+ #: admin/demo-importer/class-wp-import.php:1012
744
+ #, php-format
745
+ msgid "Remote file is too large, limit is %s"
746
  msgstr ""
747
 
748
+ #: admin/demo-importer/class-wp-import.php:1112
749
+ msgid "Import WordPress"
750
  msgstr ""
751
 
752
+ #: admin/demo-importer/class-wp-import.php:1119
753
+ #, php-format
754
+ msgid ""
755
+ "A new version of this importer is available. Please update to version %s to "
756
+ "ensure compatibility with newer export files."
757
  msgstr ""
758
 
759
+ #: admin/demo-importer/class-wp-import.php:1134
760
+ msgid ""
761
+ "Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import "
762
+ "the posts, pages, comments, custom fields, categories, and tags into this "
763
+ "site."
764
  msgstr ""
765
 
766
+ #: admin/demo-importer/class-wp-import.php:1135
767
+ msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
768
  msgstr ""
769
 
770
+ #: admin/demo-importer/parsers.php:42 admin/demo-importer/parsers.php:72
771
+ #: admin/demo-importer/parsers.php:80
772
+ msgid "There was an error when reading this WXR file"
773
  msgstr ""
774
 
775
+ #: admin/demo-importer/parsers.php:43
776
+ msgid ""
777
+ "Details are shown above. The importer will now try again with a different "
778
+ "parser..."
779
  msgstr ""
780
 
781
+ #: admin/demo-importer/parsers.php:84 admin/demo-importer/parsers.php:89
782
+ #: admin/demo-importer/parsers.php:306 admin/demo-importer/parsers.php:502
783
+ msgid ""
784
+ "This does not appear to be a WXR file, missing/invalid WXR version number"
785
  msgstr ""
786
 
787
+ #: admin/metaboxes.php:40
788
+ msgid "Review"
789
  msgstr ""
790
 
791
+ #: admin/metaboxes.php:50
792
+ msgid "Review Item"
793
  msgstr ""
794
 
795
+ #: admin/metaboxes.php:61 includes/functions.php:3806
796
+ msgid "Review Links"
797
  msgstr ""
798
 
799
+ #: admin/metaboxes.php:71
800
+ msgid "Review Description"
801
  msgstr ""
802
 
803
+ #: admin/metaboxes.php:82 includes/functions.php:3808
804
+ msgid "User Reviews"
805
  msgstr ""
806
 
807
+ #: admin/metaboxes.php:208
808
+ msgid "Add item"
809
  msgstr ""
810
 
811
+ #: admin/metaboxes.php:214
812
+ msgid "Total"
813
  msgstr ""
814
 
815
+ #: admin/metaboxes.php:233 admin/metaboxes.php:702 admin/metaboxes.php:714
816
+ #: admin/metaboxes.php:724 admin/options/review.php:782
817
+ #: admin/options/review.php:795 admin/options/review.php:805
818
+ #: admin/options/review.php:831 admin/options/review.php:841
819
+ msgid "Delete"
820
  msgstr ""
821
 
822
+ #: admin/metaboxes.php:239
823
+ msgid "Feature Name"
824
  msgstr ""
825
 
826
+ #: admin/metaboxes.php:250
827
+ msgid "Feature Color"
828
  msgstr ""
829
 
830
+ #: admin/metaboxes.php:264
831
+ msgid "Inactive Color"
832
  msgstr ""
833
 
834
+ #: admin/metaboxes.php:278
835
+ msgid "Feature Score"
836
  msgstr ""
837
 
838
+ #: admin/metaboxes.php:289 admin/options/multisite.php:267
839
+ msgid "Hide Features"
840
  msgstr ""
841
 
842
+ #: admin/metaboxes.php:307
843
+ msgid "Custom Location"
844
  msgstr ""
845
 
846
+ #: admin/metaboxes.php:326 admin/options/review.php:737
847
+ msgid "Review Location"
848
  msgstr ""
849
 
850
+ #: admin/metaboxes.php:331 admin/options/review.php:742
851
+ msgid "After Content"
852
  msgstr ""
853
 
854
+ #: admin/metaboxes.php:332 admin/options/review.php:743
855
+ msgid "Before Content"
856
  msgstr ""
857
 
858
+ #: admin/metaboxes.php:333 admin/options/review.php:744
859
+ msgid "Custom (use shortcode)"
860
  msgstr ""
861
 
862
+ #: admin/metaboxes.php:339
863
+ msgid "Copy &amp; paste this shortcode in the content."
864
  msgstr ""
865
 
866
+ #: admin/metaboxes.php:347
867
+ msgid "Custom Layout"
868
  msgstr ""
869
 
870
+ #: admin/metaboxes.php:366 admin/options/review.php:520 template-list.php:17
871
+ msgid "Default"
872
  msgstr ""
873
 
874
+ #: admin/metaboxes.php:399 admin/options/review.php:560
875
+ msgid "Review Color"
876
  msgstr ""
877
 
878
+ #: admin/metaboxes.php:409 admin/options/review.php:570
879
+ msgid "Inactive Review Color"
880
  msgstr ""
881
 
882
+ #: admin/metaboxes.php:419 admin/options/review.php:580
883
+ msgid "Font Color"
884
  msgstr ""
885
 
886
+ #: admin/metaboxes.php:429 admin/options/review.php:590
887
+ msgid "Heading Background Color"
888
  msgstr ""
889
 
890
+ #: admin/metaboxes.php:439 admin/options/review.php:600
891
+ msgid "Background Color"
892
  msgstr ""
893
 
894
+ #: admin/metaboxes.php:449 admin/options/review.php:610
895
+ msgid "Border Color"
896
  msgstr ""
897
 
898
+ #: admin/metaboxes.php:459 admin/options/review.php:634
899
+ msgid "Google Font"
900
  msgstr ""
901
 
902
+ #: admin/metaboxes.php:479
903
+ msgid "Custom Width"
904
  msgstr ""
905
 
906
+ #: admin/metaboxes.php:513 includes/functions.php:1643
907
+ msgid "Summary"
908
  msgstr ""
909
 
910
+ #: admin/metaboxes.php:521
911
+ msgid "Description title"
912
  msgstr ""
913
 
914
+ #: admin/metaboxes.php:531
915
+ msgid "Description content"
916
  msgstr ""
917
 
918
+ #: admin/metaboxes.php:558
919
+ msgid "Pros"
920
  msgstr ""
921
 
922
+ #: admin/metaboxes.php:585
923
+ msgid "Cons"
924
  msgstr ""
925
 
926
+ #: admin/metaboxes.php:614
927
+ msgid "Hide Description, Pros/Cons & Total Rating"
928
  msgstr ""
929
 
930
+ #: admin/metaboxes.php:680 admin/options/hello-bar.php:41
931
+ msgid "Text"
932
  msgstr ""
933
 
934
+ #: admin/metaboxes.php:681
935
+ msgid "URL"
936
+ msgstr ""
937
+
938
+ #: admin/metaboxes.php:731
939
+ msgid "Add another"
940
+ msgstr ""
941
+
942
+ #: admin/metaboxes.php:760 admin/options/review.php:857
943
+ msgid "Disabled"
944
+ msgstr ""
945
+
946
+ #: admin/metaboxes.php:767 admin/options/review.php:862
947
+ msgid "Visitor Rating Only"
948
+ msgstr ""
949
+
950
+ #: admin/metaboxes.php:774 admin/options/review.php:867
951
+ msgid "Comment Rating Only"
952
+ msgstr ""
953
+
954
+ #: admin/metaboxes.php:782 admin/options/review.php:873
955
+ msgid "Both"
956
+ msgstr ""
957
+
958
+ #: admin/metaboxes.php:790
959
+ msgid ""
960
+ "If you are changing User Rating Type & post already have user ratings, "
961
+ "please edit or remove existing ratings."
962
+ msgstr ""
963
+
964
+ #: admin/metaboxes.php:794
965
+ msgid "User Rating Type"
966
+ msgstr ""
967
+
968
+ #: admin/metaboxes.php:825 admin/options/review.php:881
969
+ msgid "User can:"
970
+ msgstr ""
971
+
972
+ #: admin/metaboxes.php:832 admin/options/review.php:887
973
+ msgid "Give Overall Rating"
974
+ msgstr ""
975
+
976
+ #: admin/metaboxes.php:833 admin/options/review.php:888
977
+ msgid "Rate Each Feature"
978
+ msgstr ""
979
+
980
+ #: admin/metaboxes.php:844
981
+ msgid "Hide Visitors Rating in Review Box"
982
+ msgstr ""
983
+
984
+ #: admin/metaboxes.php:864
985
+ msgid "Product Price"
986
+ msgstr ""
987
+
988
+ #: admin/metaboxes.php:874
989
+ msgid "Comment Feedback (helpful/unhelpful)"
990
+ msgstr ""
991
+
992
+ #: admin/metaboxes.php:881 admin/review-options-meta-box.php:231
993
+ #: admin/review-options-meta-box.php:252
994
+ msgid "Use global options"
995
+ msgstr ""
996
+
997
+ #: admin/metaboxes.php:882 includes/comments.php:122
998
+ msgid "Yes"
999
+ msgstr ""
1000
+
1001
+ #: admin/metaboxes.php:883 includes/comments.php:123
1002
+ msgid "No"
1003
+ msgstr ""
1004
+
1005
+ #: admin/metaboxes.php:898 admin/options/review.php:507
1006
+ msgid "Processing..."
1007
+ msgstr ""
1008
+
1009
+ #: admin/metaboxes.php:900 admin/options/review.php:508
1010
+ msgid "Purge visitor ratings"
1011
+ msgstr ""
1012
+
1013
+ #: admin/metaboxes.php:901
1014
+ msgid "Click to remove all visitor ratings of this post."
1015
+ msgstr ""
1016
+
1017
+ #. translators: Facebook App link.
1018
+ #: admin/options/facebook.php:13
1019
+ #, php-format
1020
+ msgid "%s to create Facebook App. Remember to add your domain to app."
1021
+ msgstr ""
1022
+
1023
+ #: admin/options/facebook.php:14 admin/options/google.php:26
1024
+ #: admin/options/yelp.php:27
1025
+ msgid "Click here"
1026
+ msgstr ""
1027
+
1028
+ #: admin/options/facebook.php:21
1029
+ msgid "App ID"
1030
+ msgstr ""
1031
+
1032
+ #: admin/options/facebook.php:34
1033
+ msgid "App secret"
1034
+ msgstr ""
1035
+
1036
+ #: admin/options/facebook.php:45
1037
+ msgid ""
1038
+ "Please re-generate access token in shortcodes and widgets each time you "
1039
+ "change App ID or App secret."
1040
+ msgstr ""
1041
+
1042
+ #: admin/options/google.php:11 admin/options/yelp.php:12
1043
+ msgid "API Key"
1044
+ msgstr ""
1045
+
1046
+ #. translators: Google API link.
1047
+ #: admin/options/google.php:25
1048
+ #, php-format
1049
+ msgid "%s to get Google API key."
1050
+ msgstr ""
1051
+
1052
+ #: admin/options/hello-bar.php:11
1053
+ msgid "Content"
1054
+ msgstr ""
1055
+
1056
+ #: admin/options/hello-bar.php:12 admin/options/review.php:178
1057
+ #: admin/options/review.php:516
1058
+ msgid "Styling"
1059
+ msgstr ""
1060
+
1061
+ #: admin/options/hello-bar.php:16
1062
+ msgid "Content Settings"
1063
+ msgstr ""
1064
+
1065
+ #: admin/options/hello-bar.php:20
1066
+ msgid "Enable Global Notification Bar"
1067
+ msgstr ""
1068
+
1069
+ #: admin/options/hello-bar.php:53
1070
+ msgid "Star Rating"
1071
+ msgstr ""
1072
+
1073
+ #: admin/options/hello-bar.php:65 filter-list.php:225
1074
+ msgid "Price"
1075
+ msgstr ""
1076
+
1077
+ #: admin/options/hello-bar.php:77
1078
+ msgid "Button label"
1079
+ msgstr ""
1080
+
1081
+ #: admin/options/hello-bar.php:82
1082
+ msgid "Buy Now"
1083
+ msgstr ""
1084
+
1085
+ #: admin/options/hello-bar.php:89
1086
+ msgid "Button URL"
1087
+ msgstr ""
1088
+
1089
+ #: admin/options/hello-bar.php:101
1090
+ msgid "Open link in new tab"
1091
+ msgstr ""
1092
+
1093
+ #: admin/options/hello-bar.php:120
1094
+ msgid "Styling Settings"
1095
+ msgstr ""
1096
+
1097
+ #: admin/options/hello-bar.php:124
1098
+ msgid "Location"
1099
+ msgstr ""
1100
+
1101
+ #: admin/options/hello-bar.php:131
1102
+ msgid "Top"
1103
+ msgstr ""
1104
+
1105
+ #: admin/options/hello-bar.php:132
1106
+ msgid "Bottom"
1107
+ msgstr ""
1108
+
1109
+ #: admin/options/hello-bar.php:140
1110
+ msgid "Max container(px/%)"
1111
+ msgstr ""
1112
+
1113
+ #: admin/options/hello-bar.php:153
1114
+ msgid "Background color"
1115
+ msgstr ""
1116
+
1117
+ #: admin/options/hello-bar.php:166
1118
+ msgid "Background image"
1119
+ msgstr ""
1120
+
1121
+ #: admin/options/hello-bar.php:181
1122
+ msgid "Text color"
1123
+ msgstr ""
1124
+
1125
+ #: admin/options/hello-bar.php:194
1126
+ msgid "Star color"
1127
+ msgstr ""
1128
+
1129
+ #: admin/options/hello-bar.php:207
1130
+ msgid "Button background color"
1131
+ msgstr ""
1132
+
1133
+ #: admin/options/hello-bar.php:220
1134
+ msgid "Button text color"
1135
+ msgstr ""
1136
+
1137
+ #: admin/options/help.php:13
1138
+ msgid ""
1139
+ "All support for this plugin is provided through our forums. If you have not "
1140
+ "registered yet, you can do so here for ​<strong>FREE​</strong>: "
1141
+ msgstr ""
1142
+
1143
+ #: admin/options/help.php:17
1144
+ msgid "Check our free WordPress video tutorials here: "
1145
+ msgstr ""
1146
+
1147
+ #: admin/options/help.php:19
1148
+ msgid "(no registration required)"
1149
+ msgstr ""
1150
+
1151
+ #: admin/options/help.php:22
1152
+ msgid "Thank you for using our plugin."
1153
+ msgstr ""
1154
+
1155
+ #: admin/options/help.php:26
1156
+ msgid "Get Support"
1157
+ msgstr ""
1158
+
1159
+ #: admin/options/import.php:12
1160
+ msgid "Demo data import"
1161
+ msgstr ""
1162
+
1163
+ #: admin/options/import.php:16 admin/options/import.php:38
1164
+ #: admin/options/import.php:65
1165
+ msgid "Import"
1166
+ msgstr ""
1167
+
1168
+ #: admin/options/import.php:17
1169
+ msgid ""
1170
+ "Click above button to import demo data, imported data will be saved as new "
1171
+ "draft posts."
1172
+ msgstr ""
1173
+
1174
+ #: admin/options/import.php:23
1175
+ msgid "Select plugin"
1176
+ msgstr ""
1177
+
1178
+ #: admin/options/import.php:45
1179
+ msgid "Warning"
1180
+ msgstr ""
1181
+
1182
+ #: admin/options/import.php:46
1183
+ msgid ""
1184
+ "This action is IRREVERSIBLE! Take a backup of your database before "
1185
+ "proceeding."
1186
+ msgstr ""
1187
+
1188
+ #: admin/options/import.php:57
1189
+ msgid "Import settings"
1190
+ msgstr ""
1191
+
1192
+ #: admin/options/import.php:61
1193
+ msgid "Import code"
1194
+ msgstr ""
1195
+
1196
+ #: admin/options/import.php:63
1197
+ msgid ""
1198
+ "Insert your backup code below and hit Import to restore your plugin options "
1199
+ "from a backup."
1200
+ msgstr ""
1201
+
1202
+ #: admin/options/import.php:72
1203
+ msgid "Export settings"
1204
+ msgstr ""
1205
+
1206
+ #: admin/options/import.php:76
1207
+ msgid "Show export code"
1208
+ msgstr ""
1209
+
1210
+ #: admin/options/multisite.php:12
1211
+ msgid "Site: "
1212
+ msgstr ""
1213
+
1214
+ #: admin/options/multisite.php:17
1215
+ msgid "Select site"
1216
+ msgstr ""
1217
+
1218
+ #: admin/options/multisite.php:43 admin/options/review.php:187
1219
+ msgid "General Settings"
1220
+ msgstr ""
1221
+
1222
+ #: admin/options/multisite.php:46
1223
+ msgid "Hide global options panel"
1224
+ msgstr ""
1225
+
1226
+ #: admin/options/multisite.php:66
1227
+ msgid "Hide Popup"
1228
+ msgstr ""
1229
+
1230
+ #: admin/options/multisite.php:85 admin/options/multisite.php:248
1231
+ msgid "Hide Notification Bar"
1232
+ msgstr ""
1233
+
1234
+ #: admin/options/multisite.php:104
1235
+ msgid "Hide Yelp Reviews"
1236
+ msgstr ""
1237
+
1238
+ #: admin/options/multisite.php:123
1239
+ msgid "Hide Facebook Reviews"
1240
+ msgstr ""
1241
+
1242
+ #: admin/options/multisite.php:142
1243
+ msgid "Hide Google Reviews"
1244
+ msgstr ""
1245
+
1246
+ #: admin/options/multisite.php:161
1247
+ msgid "Hide Role Manager"
1248
+ msgstr ""
1249
+
1250
+ #: admin/options/multisite.php:179
1251
+ msgid "Hide Import"
1252
+ msgstr ""
1253
+
1254
+ #: admin/options/multisite.php:197
1255
+ msgid "Post Settings"
1256
+ msgstr ""
1257
+
1258
+ #: admin/options/multisite.php:207
1259
+ msgid "Hide reviews in single editor"
1260
+ msgstr ""
1261
+
1262
+ #: admin/options/multisite.php:229
1263
+ msgid "Hide Popup Box"
1264
+ msgstr ""
1265
+
1266
+ #: admin/options/multisite.php:286
1267
+ msgid "Hide Review Links"
1268
+ msgstr ""
1269
+
1270
+ #: admin/options/multisite.php:304
1271
+ msgid "Hide Review Description, Pros/Cons & Total Rating"
1272
+ msgstr ""
1273
+
1274
+ #: admin/options/multisite.php:323
1275
+ msgid "Hide User Reviews"
1276
+ msgstr ""
1277
+
1278
+ #: admin/options/popup.php:11
1279
+ msgid "Enable Popup"
1280
+ msgstr ""
1281
+
1282
+ #: admin/options/popup.php:32
1283
+ msgid "Popup width"
1284
+ msgstr ""
1285
+
1286
+ #: admin/options/popup.php:45
1287
+ msgid "Popup animation in"
1288
+ msgstr ""
1289
+
1290
+ #: admin/options/popup.php:63
1291
+ msgid "Popup animation out"
1292
+ msgstr ""
1293
+
1294
+ #: admin/options/popup.php:82
1295
+ msgid "Popup overlay color"
1296
+ msgstr ""
1297
+
1298
+ #: admin/options/popup.php:95
1299
+ msgid "Popup overlay opacity"
1300
+ msgstr ""
1301
+
1302
+ #: admin/options/popup.php:110
1303
+ msgid "Post type"
1304
+ msgstr ""
1305
+
1306
+ #: admin/options/popup.php:117
1307
+ msgid "Any"
1308
+ msgstr ""
1309
+
1310
+ #: admin/options/popup.php:128
1311
+ msgid "Popup content"
1312
+ msgstr ""
1313
+
1314
+ #: admin/options/popup.php:135
1315
+ msgid "From category"
1316
+ msgstr ""
1317
+
1318
+ #: admin/options/popup.php:136
1319
+ msgid "From tag"
1320
+ msgstr ""
1321
+
1322
+ #: admin/options/popup.php:137
1323
+ msgid "From review type"
1324
+ msgstr ""
1325
+
1326
+ #: admin/options/popup.php:138
1327
+ msgid "Latest reviews"
1328
+ msgstr ""
1329
+
1330
+ #: admin/options/popup.php:146
1331
+ msgid "Choose category"
1332
+ msgstr ""
1333
+
1334
+ #: admin/options/popup.php:155
1335
+ msgid "All categories"
1336
+ msgstr ""
1337
+
1338
+ #: admin/options/popup.php:169
1339
+ msgid "Number of Reviews"
1340
+ msgstr ""
1341
+
1342
+ #: admin/options/popup.php:182
1343
+ msgid "Popup content order"
1344
+ msgstr ""
1345
+
1346
+ #: admin/options/popup.php:189
1347
+ msgid "Random"
1348
+ msgstr ""
1349
+
1350
+ #: admin/options/popup.php:190
1351
+ msgid "Most popular"
1352
+ msgstr ""
1353
+
1354
+ #: admin/options/popup.php:191
1355
+ msgid "Most rated"
1356
+ msgstr ""
1357
+
1358
+ #: admin/options/popup.php:192
1359
+ msgid "Latest"
1360
+ msgstr ""
1361
+
1362
+ #: admin/options/popup.php:201
1363
+ msgid "Hide popup for"
1364
+ msgstr ""
1365
+
1366
+ #: admin/options/popup.php:208
1367
+ msgid "day(s)."
1368
+ msgstr ""
1369
+
1370
+ #: admin/options/popup.php:212
1371
+ msgid "Set to 0 if you want to show popup on each page load."
1372
+ msgstr ""
1373
+
1374
+ #. translators: number input.
1375
+ #: admin/options/popup.php:222
1376
+ #, php-format
1377
+ msgid "Show popup after %s second(s)"
1378
+ msgstr ""
1379
+
1380
+ #: admin/options/popup.php:231
1381
+ msgid "Set to 0 if you want to show popup instantly."
1382
+ msgstr ""
1383
+
1384
+ #: admin/options/popup.php:238
1385
+ msgid ""
1386
+ "Show popup when visitor reaches the end of the content (only on single posts "
1387
+ "or pages)"
1388
+ msgstr ""
1389
+
1390
+ #: admin/options/popup.php:248
1391
+ msgid "Show popup when visitor is about to leave (exit intent)"
1392
+ msgstr ""
1393
+
1394
+ #. translators: width input.
1395
+ #: admin/options/popup.php:261
1396
+ #, php-format
1397
+ msgid "Show popup on screens larger than %s pixels"
1398
+ msgstr ""
1399
+
1400
+ #: admin/options/popup.php:271
1401
+ msgid "Generate new cookie"
1402
+ msgstr ""
1403
+
1404
+ #: admin/options/popup.php:272
1405
+ msgid "Use this option to override old cookie."
1406
+ msgstr ""
1407
+
1408
+ #: admin/options/review.php:165 includes/functions.php:1081
1409
+ msgid "Star"
1410
+ msgstr ""
1411
+
1412
+ #: admin/options/review.php:166 includes/functions.php:1096
1413
+ msgid "Point"
1414
+ msgstr ""
1415
+
1416
+ #: admin/options/review.php:167 includes/functions.php:1111
1417
+ msgid "Percentage"
1418
+ msgstr ""
1419
+
1420
+ #: admin/options/review.php:168 includes/functions.php:1126
1421
+ msgid "Circle"
1422
+ msgstr ""
1423
+
1424
+ #: admin/options/review.php:169 includes/functions.php:1141
1425
+ msgid "Thumbs"
1426
+ msgstr ""
1427
+
1428
+ #: admin/options/review.php:177
1429
+ msgid "General"
1430
+ msgstr ""
1431
+
1432
+ #: admin/options/review.php:179 admin/options/review.php:702
1433
+ msgid "Defaults"
1434
+ msgstr ""
1435
+
1436
+ #: admin/options/review.php:180 admin/options/review.php:895
1437
+ msgid "Embed"
1438
+ msgstr ""
1439
+
1440
+ #: admin/options/review.php:182
1441
+ msgid "Migrate Ratings"
1442
+ msgstr ""
1443
+
1444
+ #: admin/options/review.php:191
1445
+ msgid ""
1446
+ "There is a filter set for the review location that may modify the options "
1447
+ "below."
1448
+ msgstr ""
1449
+
1450
+ #: admin/options/review.php:198
1451
+ msgid "The current theme provides default settings for the plugin."
1452
+ msgstr ""
1453
+
1454
+ #: admin/options/review.php:200
1455
+ msgid "Set to theme defaults"
1456
+ msgstr ""
1457
+
1458
+ #: admin/options/review.php:207
1459
+ msgid "Restrict rating to registered users only"
1460
+ msgstr ""
1461
+
1462
+ #: admin/options/review.php:225
1463
+ msgid "Add total rating to thumbnails"
1464
+ msgstr ""
1465
+
1466
+ #: admin/options/review.php:244
1467
+ msgid "Enable User rating in old posts"
1468
+ msgstr ""
1469
+
1470
+ #: admin/options/review.php:264
1471
+ msgid "Replace WooCommerce rating"
1472
+ msgstr ""
1473
+
1474
+ #: admin/options/review.php:284
1475
+ msgid "Disable Map Script in the Backend"
1476
+ msgstr ""
1477
+
1478
+ #: admin/options/review.php:300
1479
+ msgid ""
1480
+ "If map script is conflicting with other plugin in the single post editor, "
1481
+ "please enable this option."
1482
+ msgstr ""
1483
+
1484
+ #: admin/options/review.php:305
1485
+ msgid "Comments template"
1486
+ msgstr ""
1487
+
1488
+ #: admin/options/review.php:315
1489
+ msgid "Theme"
1490
+ msgstr ""
1491
+
1492
+ #: admin/options/review.php:319
1493
+ msgid "Use theme comments template. Might need customization of comments.php"
1494
+ msgstr ""
1495
+
1496
+ #: admin/options/review.php:330
1497
+ msgid ""
1498
+ "Use WP Review comments template. Better chances for out of the box "
1499
+ "integration."
1500
+ msgstr ""
1501
+
1502
+ #: admin/options/review.php:338
1503
+ msgid "Comment form integration"
1504
+ msgstr ""
1505
 
1506
+ #: admin/options/review.php:348
1507
+ msgid "Replace"
1508
  msgstr ""
1509
 
1510
+ #: admin/options/review.php:352
1511
+ msgid "Replace form fields."
1512
  msgstr ""
1513
 
1514
+ #: admin/options/review.php:359
1515
+ msgid "Extend"
1516
  msgstr ""
1517
 
1518
+ #: admin/options/review.php:363
1519
+ msgid "Add new fields without modifying the default fields."
1520
  msgstr ""
1521
 
1522
+ #: admin/options/review.php:371
1523
+ msgid "Require a rating when commenting"
1524
  msgstr ""
1525
 
1526
+ #: admin/options/review.php:390
1527
+ msgid "Allow comment feedback (helpful/unhelpful)"
1528
  msgstr ""
1529
 
1530
+ #: admin/options/review.php:409
1531
+ msgid "Record User Ratings"
1532
  msgstr ""
1533
 
1534
+ #: admin/options/review.php:416
1535
+ msgid "Based on IP address"
1536
  msgstr ""
1537
 
1538
+ #: admin/options/review.php:417
1539
+ msgid "Based on browser cookie"
1540
  msgstr ""
1541
 
1542
+ #: admin/options/review.php:445
1543
+ msgid "Allow multiple reviews per account"
1544
  msgstr ""
1545
 
1546
+ #: admin/options/review.php:463
1547
+ msgid "Include Pros/Cons in comment reviews"
1548
  msgstr ""
1549
 
1550
+ #: admin/options/review.php:482
1551
+ msgid "Approve Comment Reviews without Moderation"
1552
  msgstr ""
1553
 
1554
+ #: admin/options/review.php:509
1555
+ msgid "Click to remove all visitor ratings of all posts."
1556
  msgstr ""
1557
 
1558
+ #: admin/options/review.php:552
1559
+ msgid ""
1560
+ "There is a filter set for the review colors that may modify the options "
1561
+ "below."
1562
  msgstr ""
1563
 
1564
+ #: admin/options/review.php:622
1565
+ msgid "Review Box Width"
1566
+ msgstr ""
1567
+
1568
+ #: admin/options/review.php:636
1569
  msgid ""
1570
+ "Many templates use Google Font, select <code>No</code> to use default theme "
1571
+ "font."
 
 
1572
  msgstr ""
1573
 
1574
+ #: admin/options/review.php:656
1575
+ msgid "Comment Rating Color"
1576
  msgstr ""
1577
 
1578
+ #: admin/options/review.php:658
1579
+ msgid "Use different color for ratings in comments"
1580
+ msgstr ""
1581
+
1582
+ #: admin/options/review.php:678
1583
+ msgid "Rating icon"
1584
+ msgstr ""
1585
+
1586
+ #: admin/options/review.php:697
1587
+ msgid "Use Image"
1588
+ msgstr ""
1589
+
1590
+ #: admin/options/review.php:709
1591
+ msgid "Review type"
1592
+ msgstr ""
1593
+
1594
+ #: admin/options/review.php:714
1595
+ msgid "No Review"
1596
+ msgstr ""
1597
+
1598
+ #: admin/options/review.php:749
1599
+ msgid "Copy & paste this shortcode in the post content."
1600
+ msgstr ""
1601
+
1602
+ #: admin/options/review.php:756
1603
+ msgid "Review Schema"
1604
+ msgstr ""
1605
+
1606
+ #: admin/options/review.php:770
1607
+ msgid "Features"
1608
+ msgstr ""
1609
+
1610
+ #: admin/options/review.php:810
1611
+ msgid "Default features are set by a filter function. Remove it to change."
1612
+ msgstr ""
1613
+
1614
+ #: admin/options/review.php:812
1615
+ msgid "Add default feature"
1616
+ msgstr ""
1617
+
1618
+ #: admin/options/review.php:819
1619
+ msgid "Links"
1620
+ msgstr ""
1621
+
1622
+ #: admin/options/review.php:845
1623
+ msgid "Add default link"
1624
+ msgstr ""
1625
+
1626
+ #: admin/options/review.php:851
1627
+ msgid "User Ratings"
1628
+ msgstr ""
1629
+
1630
+ #: admin/options/review.php:896
1631
+ msgid ""
1632
+ "From here you can enable embed feature, which will show embed code in the "
1633
+ "frontend which site visitors can use to embed review on their site."
1634
+ msgstr ""
1635
+
1636
+ #: admin/options/review.php:900
1637
+ msgid "Enable Embed"
1638
+ msgstr ""
1639
+
1640
+ #: admin/options/review.php:919
1641
+ msgid "Show Title"
1642
+ msgstr ""
1643
+
1644
+ #: admin/options/review.php:938
1645
+ msgid "Show Thumbnail"
1646
+ msgstr ""
1647
+
1648
+ #: admin/options/review.php:957
1649
+ msgid "Show Excerpt"
1650
+ msgstr ""
1651
+
1652
+ #: admin/options/review.php:976
1653
+ msgid "Show Rating Box"
1654
+ msgstr ""
1655
+
1656
+ #: admin/options/review.php:995
1657
+ msgid "Show Credit"
1658
+ msgstr ""
1659
+
1660
+ #: admin/options/review.php:1016
1661
+ msgid ""
1662
+ "Here you can import your existing user ratings from WP Review 1.x and WP "
1663
+ "Review Pro 1.x."
1664
+ msgstr ""
1665
+
1666
+ #. translators: number of rows left.
1667
+ #: admin/options/review.php:1020
1668
  #, php-format
1669
+ msgid "%s ratings left to import."
1670
  msgstr ""
1671
 
1672
+ #: admin/options/review.php:1023
1673
+ msgid "Start import"
1674
+ msgstr ""
1675
+
1676
+ #: admin/options/review.php:1026
1677
+ msgid "Ratings have already been migrated."
1678
+ msgstr ""
1679
+
1680
+ #. translators: Yelp App link.
1681
+ #: admin/options/yelp.php:26
1682
+ #, php-format
1683
+ msgid "%s to get Yelp API Key."
1684
+ msgstr ""
1685
+
1686
+ #: admin/review-options-meta-box.php:46
1687
+ msgid "Review Box"
1688
+ msgstr ""
1689
+
1690
+ #: admin/review-options-meta-box.php:58
1691
+ msgid "Review Type"
1692
+ msgstr ""
1693
+
1694
+ #: admin/review-options-meta-box.php:63
1695
+ msgid "No review"
1696
+ msgstr ""
1697
+
1698
+ #. translators: review ID.
1699
+ #: admin/review-options-meta-box.php:84
1700
+ #, php-format
1701
+ msgid "Review ID: %s"
1702
+ msgstr ""
1703
+
1704
+ #: admin/review-options-meta-box.php:92
1705
+ msgid "Review Heading"
1706
+ msgstr ""
1707
+
1708
+ #: admin/review-options-meta-box.php:104
1709
+ msgid "Reviewed Item Schema"
1710
+ msgstr ""
1711
+
1712
+ #: admin/review-options-meta-box.php:133
1713
+ msgid "Rating Schema"
1714
+ msgstr ""
1715
+
1716
+ #: admin/review-options-meta-box.php:138
1717
+ msgid "Author Review Rating"
1718
+ msgstr ""
1719
+
1720
+ #: admin/review-options-meta-box.php:139
1721
+ msgid "Visitors Aggregate Rating (if enabled)"
1722
+ msgstr ""
1723
+
1724
+ #: admin/review-options-meta-box.php:140
1725
+ msgid "Comments Reviews Aggregate Rating (if enabled)"
1726
+ msgstr ""
1727
+
1728
+ #: admin/review-options-meta-box.php:148
1729
+ msgid "Custom Author"
1730
+ msgstr ""
1731
+
1732
+ #: admin/review-options-meta-box.php:167
1733
+ msgid "Review Author"
1734
+ msgstr ""
1735
+
1736
+ #: admin/review-options-meta-box.php:181
1737
+ msgid "Display Schema Data in the Box (if available)"
1738
+ msgstr ""
1739
+
1740
+ #: admin/review-options-meta-box.php:201
1741
+ msgid "Show Embed Code"
1742
+ msgstr ""
1743
+
1744
+ #: admin/review-options-meta-box.php:224 admin/review-options-meta-box.php:245
1745
+ msgid "Enable"
1746
+ msgstr ""
1747
+
1748
+ #: admin/review-options-meta-box.php:232 admin/review-options-meta-box.php:253
1749
+ msgid "Use custom options"
1750
+ msgstr ""
1751
+
1752
+ #: admin/review-options-meta-box.php:233 admin/review-options-meta-box.php:254
1753
+ #: includes/schemas.php:11 includes/widgets/class-wp-review-tab-widget.php:216
1754
+ msgid "None"
1755
+ msgstr ""
1756
+
1757
+ #: box-templates/aqua.php:64
1758
+ msgid "Overall"
1759
+ msgstr ""
1760
+
1761
+ #: box-templates/aqua.php:111 box-templates/default.php:117
1762
+ #: includes/functions.php:1496
1763
+ msgid "User Review"
1764
+ msgstr ""
1765
+
1766
+ #: box-templates/aqua.php:120 box-templates/default.php:126
1767
+ msgid "vote"
1768
+ msgid_plural "votes"
1769
+ msgstr[0] ""
1770
+ msgstr[1] ""
1771
+
1772
+ #: box-templates/global/partials/review-schema.php:49 includes/schemas.php:38
1773
+ #: includes/schemas.php:143 includes/schemas.php:212 includes/schemas.php:321
1774
+ #: includes/schemas.php:390 includes/schemas.php:495 includes/schemas.php:632
1775
+ #: includes/schemas.php:683 includes/schemas.php:756 includes/schemas.php:829
1776
+ #: includes/schemas.php:916 includes/schemas.php:975 includes/schemas.php:1070
1777
+ #: includes/schemas.php:1139 includes/schemas.php:1372
1778
+ #: includes/schemas.php:1438 includes/schemas.php:1520
1779
+ #: includes/schemas.php:1581
1780
+ msgid "[ More ]"
1781
+ msgstr ""
1782
+
1783
+ #: comments/comments.php:12
1784
+ msgid "Please do not load this page directly. Thanks!"
1785
+ msgstr ""
1786
+
1787
+ #: comments/comments.php:16
1788
+ msgid "This post is password protected. Enter the password to view comments."
1789
+ msgstr ""
1790
+
1791
+ #: comments/comments.php:28
1792
+ msgid "One Response"
1793
+ msgstr ""
1794
+
1795
+ #: comments/comments.php:33
1796
+ #, php-format
1797
+ msgctxt "comments title"
1798
+ msgid "%1$s Comment"
1799
+ msgid_plural "%1$s Comments"
1800
+ msgstr[0] ""
1801
+ msgstr[1] ""
1802
+
1803
+ #: comments/comments.php:75
1804
+ msgid "Leave a Reply"
1805
  msgstr ""
1806
 
1807
+ #: comments/comments.php:78
1808
+ msgid "Post Comment"
1809
  msgstr ""
1810
 
1811
+ #: comments/comments.php:79
1812
+ msgid "Comment*"
1813
  msgstr ""
1814
 
1815
+ #: comments/comments.php:83
1816
+ msgid "Name*"
1817
  msgstr ""
1818
 
1819
+ #: comments/comments.php:84
1820
+ msgid "Email*"
1821
  msgstr ""
1822
 
1823
+ #: comments/comments.php:85
1824
+ msgid "Website"
1825
  msgstr ""
1826
 
1827
+ #: comments/comments.php:86
1828
+ msgid ""
1829
+ "Save my name, email, and website in this browser for the next time I comment."
1830
  msgstr ""
1831
 
1832
+ #: filter-list.php:222
1833
+ msgid "Audio"
1834
  msgstr ""
1835
 
1836
+ #: filter-list.php:223
1837
+ msgid "Visual"
1838
  msgstr ""
1839
 
1840
+ #: filter-list.php:224
1841
+ msgid "UX"
1842
  msgstr ""
1843
 
1844
+ #: filter-list.php:407
1845
+ msgid "Enable Reviews"
1846
  msgstr ""
1847
 
1848
+ #: filter-list.php:422
1849
+ msgid "10 Stars"
1850
  msgstr ""
1851
 
1852
+ #. translators: review rate.
1853
+ #: filter-list.php:425 includes/ajax.php:146
1854
+ #, php-format
1855
+ msgid "%s Stars"
1856
  msgstr ""
1857
 
1858
+ #: filter-list.php:426
1859
+ #, php-format
1860
+ msgid "%s Star"
1861
  msgstr ""
1862
 
1863
+ #: filter-list.php:441
1864
+ msgid "Custom template"
1865
  msgstr ""
1866
 
1867
+ #. translators: review text.
1868
+ #. translators: visitors rating.
1869
+ #: includes/ajax.php:67 includes/ajax.php:143 includes/functions.php:3175
1870
  #, php-format
1871
  msgid "Visitor Rating: %s"
1872
  msgstr ""
1873
 
1874
+ #. translators: number of reviews.
1875
  #: includes/ajax.php:326 includes/ajax.php:329
1876
  #, php-format
1877
  msgid "%s review"
1895
  msgid "Completed!"
1896
  msgstr ""
1897
 
1898
+ #. translators: rating label.
1899
  #: includes/comments.php:51
1900
  #, php-format
1901
  msgid "WP Review Rating (%s)"
1929
  msgid "Visitor reviews"
1930
  msgstr ""
1931
 
1932
+ #: includes/functions.php:141
1933
+ msgid "WP Review Small"
 
 
 
 
1934
  msgstr ""
1935
 
1936
+ #: includes/functions.php:142
1937
+ msgid "WP Review Large"
 
 
 
 
 
 
1938
  msgstr ""
1939
 
1940
+ #: includes/functions.php:842
1941
+ msgid "Comment Reviews"
1942
  msgstr ""
1943
 
1944
+ #: includes/functions.php:843
1945
+ msgid "Visitor Reviews"
1946
  msgstr ""
1947
 
1948
+ #. translators: rating value text.
1949
+ #: includes/functions.php:1085
1950
  #, php-format
1951
+ msgctxt "star rating value text"
1952
+ msgid "%s Stars"
 
 
 
 
 
 
1953
  msgstr ""
1954
 
1955
+ #. translators: rating value singular text.
1956
+ #: includes/functions.php:1087
1957
+ #, php-format
1958
+ msgctxt "star rating value text singular"
1959
+ msgid "%s Star"
1960
  msgstr ""
1961
 
1962
+ #. translators: rating value text.
1963
+ #: includes/functions.php:1100
1964
+ #, php-format
1965
+ msgctxt "point rating value text"
1966
+ msgid "%s/10"
1967
  msgstr ""
1968
 
1969
+ #. translators: rating value singular text.
1970
+ #: includes/functions.php:1102
1971
+ #, php-format
1972
+ msgctxt "point rating value text singular"
1973
+ msgid "%s/10"
1974
  msgstr ""
1975
 
1976
+ #. translators: rating value text.
1977
+ #: includes/functions.php:1115
1978
+ #, php-format
1979
+ msgctxt "percentage rating value text"
1980
+ msgid "%s%%"
1981
  msgstr ""
1982
 
1983
+ #. translators: rating value singular text.
1984
+ #: includes/functions.php:1117
1985
+ #, php-format
1986
+ msgctxt "percentage rating value text singular"
1987
+ msgid "%s%%"
1988
  msgstr ""
1989
 
1990
+ #. translators: rating value text.
1991
+ #: includes/functions.php:1130
1992
  #, php-format
1993
+ msgctxt "circle rating value text"
1994
+ msgid "%s"
1995
  msgstr ""
1996
 
1997
+ #. translators: rating value singular text.
1998
+ #: includes/functions.php:1132
1999
+ #, php-format
2000
+ msgctxt "circle rating value text singular"
2001
+ msgid "%s"
2002
  msgstr ""
2003
 
2004
+ #. translators: rating value text.
2005
+ #: includes/functions.php:1145
2006
+ #, php-format
2007
+ msgctxt "thumbs rating value text"
2008
+ msgid "%s/100"
2009
  msgstr ""
2010
 
2011
+ #. translators: rating value singular text.
2012
+ #: includes/functions.php:1147
2013
+ #, php-format
2014
+ msgctxt "thumbs rating value text singular"
2015
+ msgid "%s/100"
2016
  msgstr ""
2017
 
2018
+ #: includes/functions.php:2011
2019
+ msgid "Rating"
 
 
2020
  msgstr ""
2021
 
2022
+ #: includes/functions.php:2030
2023
+ msgid "No Rating"
2024
  msgstr ""
2025
 
2026
+ #. translators: settings link.
2027
+ #: includes/functions.php:2082
2028
  #, php-format
 
 
 
 
2029
  msgid ""
2030
+ "Thank you for updating WP Review Pro. Your existing user ratings will show "
2031
+ "up after importing them in %s."
2032
  msgstr ""
2033
 
2034
+ #: includes/functions.php:2082
2035
+ msgid "Settings &gt; WP Review Pro &gt; Migrate Ratings"
2036
  msgstr ""
2037
 
2038
+ #: includes/functions.php:3041
2039
+ #: includes/widgets/class-wp-review-tab-widget.php:549
2040
+ msgid "&laquo; Previous"
2041
  msgstr ""
2042
 
2043
+ #: includes/functions.php:3045
2044
+ #: includes/widgets/class-wp-review-tab-widget.php:552
2045
+ msgid "Next &raquo;"
2046
  msgstr ""
2047
 
2048
+ #: includes/functions.php:3229
2049
+ msgid "Your rating is awaiting moderation."
2050
  msgstr ""
2051
 
2052
+ #: includes/functions.php:3673
2053
+ msgid "Comment Rating"
2054
  msgstr ""
2055
 
2056
+ #: includes/functions.php:3674
2057
+ msgid "Features Ratings"
2058
  msgstr ""
2059
 
2060
+ #: includes/functions.php:3675
2061
+ msgid "Comment Title"
2062
  msgstr ""
2063
 
2064
+ #: includes/functions.php:3715
2065
+ #: includes/widgets/class-wp-review-tab-widget.php:113
2066
+ #: includes/widgets/class-wp-review-tab-widget.php:158
2067
+ msgid "Comments"
2068
  msgstr ""
2069
 
2070
+ #: includes/functions.php:3738
2071
+ msgid "WordPress Comments"
2072
  msgstr ""
2073
 
2074
+ #: includes/functions.php:3802
2075
+ msgid "Global Options"
2076
  msgstr ""
2077
 
2078
+ #: includes/functions.php:3804
2079
+ msgid "Single Page Settings"
2080
  msgstr ""
2081
 
2082
+ #: includes/functions.php:3805
2083
+ msgid "Review Features"
2084
  msgstr ""
2085
 
2086
+ #: includes/functions.php:3807
2087
+ msgid "Review Description, Pros/Cons and Total Rating"
2088
  msgstr ""
2089
 
2090
+ #: includes/functions.php:3809
2091
+ msgid "Purge Visitor Ratings"
2092
  msgstr ""
2093
 
2094
+ #: includes/functions.php:3810
2095
+ msgid "Purge Comment Ratings"
2096
  msgstr ""
2097
 
2098
+ #: includes/schemas.php:14
2099
+ msgid "Book"
2100
  msgstr ""
2101
 
2102
+ #: includes/schemas.php:18
2103
+ msgid "Book Title"
2104
  msgstr ""
2105
 
2106
+ #: includes/schemas.php:24
2107
+ msgid "Book Description"
2108
  msgstr ""
2109
 
2110
+ #: includes/schemas.php:30
2111
+ msgid "Book Image"
2112
  msgstr ""
2113
 
2114
+ #: includes/schemas.php:36 includes/schemas.php:141 includes/schemas.php:210
2115
+ #: includes/schemas.php:319 includes/schemas.php:388 includes/schemas.php:493
2116
+ #: includes/schemas.php:630 includes/schemas.php:681 includes/schemas.php:754
2117
+ #: includes/schemas.php:827 includes/schemas.php:914 includes/schemas.php:973
2118
+ #: includes/schemas.php:1068 includes/schemas.php:1137
2119
+ #: includes/schemas.php:1370 includes/schemas.php:1436
2120
+ #: includes/schemas.php:1518 includes/schemas.php:1579
2121
+ msgid "More link text"
2122
  msgstr ""
2123
 
2124
+ #: includes/schemas.php:43 includes/schemas.php:148 includes/schemas.php:217
2125
+ #: includes/schemas.php:326 includes/schemas.php:395 includes/schemas.php:500
2126
+ #: includes/schemas.php:637 includes/schemas.php:688 includes/schemas.php:761
2127
+ #: includes/schemas.php:834 includes/schemas.php:921 includes/schemas.php:980
2128
+ #: includes/schemas.php:1075 includes/schemas.php:1144
2129
+ #: includes/schemas.php:1377 includes/schemas.php:1443
2130
+ #: includes/schemas.php:1525 includes/schemas.php:1586
2131
+ msgid "More link URL"
2132
  msgstr ""
2133
 
2134
+ #: includes/schemas.php:49 includes/schemas.php:154 includes/schemas.php:223
2135
+ #: includes/schemas.php:332 includes/schemas.php:401 includes/schemas.php:506
2136
+ #: includes/schemas.php:643 includes/schemas.php:694 includes/schemas.php:767
2137
+ #: includes/schemas.php:840 includes/schemas.php:927 includes/schemas.php:986
2138
+ #: includes/schemas.php:1081 includes/schemas.php:1150
2139
+ #: includes/schemas.php:1383 includes/schemas.php:1449
2140
+ #: includes/schemas.php:1531 includes/schemas.php:1592
2141
+ msgid "Use button style"
2142
  msgstr ""
2143
 
2144
+ #: includes/schemas.php:53 includes/schemas.php:158 includes/schemas.php:227
2145
+ #: includes/schemas.php:336 includes/schemas.php:405 includes/schemas.php:510
2146
+ #: includes/schemas.php:647 includes/schemas.php:698 includes/schemas.php:771
2147
+ #: includes/schemas.php:844 includes/schemas.php:931 includes/schemas.php:990
2148
+ #: includes/schemas.php:1085 includes/schemas.php:1154
2149
+ #: includes/schemas.php:1387 includes/schemas.php:1453
2150
+ #: includes/schemas.php:1535 includes/schemas.php:1596
2151
+ msgid "Button"
2152
  msgstr ""
2153
 
2154
+ #: includes/schemas.php:54 includes/schemas.php:159 includes/schemas.php:228
2155
+ #: includes/schemas.php:337 includes/schemas.php:406 includes/schemas.php:511
2156
+ #: includes/schemas.php:648 includes/schemas.php:699 includes/schemas.php:772
2157
+ #: includes/schemas.php:845 includes/schemas.php:932 includes/schemas.php:991
2158
+ #: includes/schemas.php:1086 includes/schemas.php:1155
2159
+ #: includes/schemas.php:1388 includes/schemas.php:1454
2160
+ #: includes/schemas.php:1536 includes/schemas.php:1597
2161
+ msgid "Link"
2162
  msgstr ""
2163
 
2164
+ #: includes/schemas.php:58
2165
+ msgid "Book Author"
2166
  msgstr ""
2167
 
2168
+ #: includes/schemas.php:64
2169
+ msgid "Book Edition"
2170
  msgstr ""
2171
 
2172
+ #: includes/schemas.php:70
2173
+ msgid "Book Format"
2174
  msgstr ""
2175
 
2176
+ #: includes/schemas.php:83
2177
+ msgid "Publisher - Orgnization"
 
 
2178
  msgstr ""
2179
 
2180
+ #: includes/schemas.php:91
2181
+ msgid "Publisher Logo"
2182
  msgstr ""
2183
 
2184
+ #: includes/schemas.php:100 includes/schemas.php:410 includes/schemas.php:849
2185
+ msgid "Date published"
 
 
2186
  msgstr ""
2187
 
2188
+ #: includes/schemas.php:106
2189
+ msgid "Illustrator"
2190
  msgstr ""
2191
 
2192
+ #: includes/schemas.php:112
2193
+ msgid "ISBN"
 
 
2194
  msgstr ""
2195
 
2196
+ #: includes/schemas.php:118
2197
+ msgid "Number Of Pages"
2198
  msgstr ""
2199
 
2200
+ #: includes/schemas.php:125
2201
+ msgid "Course"
2202
  msgstr ""
2203
 
2204
+ #: includes/schemas.php:129 includes/schemas.php:663 includes/schemas.php:736
2205
+ #: includes/schemas.php:902 includes/schemas.php:1050 includes/schemas.php:1418
2206
+ #: includes/schemas.php:1561
2207
+ msgid "Name"
2208
  msgstr ""
2209
 
2210
+ #: includes/schemas.php:135 includes/schemas.php:198 includes/schemas.php:307
2211
+ #: includes/schemas.php:376 includes/schemas.php:669 includes/schemas.php:742
2212
+ #: includes/schemas.php:908 includes/schemas.php:967 includes/schemas.php:1056
2213
+ #: includes/schemas.php:1230 includes/schemas.php:1424
2214
+ #: includes/schemas.php:1567
2215
+ msgid "Description"
2216
  msgstr ""
2217
 
2218
+ #: includes/schemas.php:163 includes/schemas.php:268 includes/schemas.php:359
2219
+ #: includes/schemas.php:434 includes/schemas.php:652 includes/schemas.php:867
2220
+ #: includes/schemas.php:950 includes/schemas.php:995 includes/schemas.php:1039
2221
+ #: includes/schemas.php:1224 includes/schemas.php:1489
2222
+ #: includes/schemas.php:1601
2223
+ msgid "Author"
2224
  msgstr ""
2225
 
2226
+ #: includes/schemas.php:169
2227
+ msgid "Provider"
2228
  msgstr ""
2229
 
2230
+ #: includes/schemas.php:178
2231
+ msgid "Provider Logo"
2232
  msgstr ""
2233
 
2234
+ #: includes/schemas.php:188
2235
+ msgid "CreativeWorkSeason"
2236
  msgstr ""
2237
 
2238
+ #: includes/schemas.php:204 includes/schemas.php:313 includes/schemas.php:382
2239
+ #: includes/schemas.php:821
2240
+ msgid "Movie Image"
2241
  msgstr ""
2242
 
2243
+ #: includes/schemas.php:232 includes/schemas.php:341 includes/schemas.php:515
2244
+ msgid "Start date"
2245
  msgstr ""
2246
 
2247
+ #: includes/schemas.php:238 includes/schemas.php:347 includes/schemas.php:521
2248
+ msgid "End date"
2249
  msgstr ""
2250
 
2251
+ #: includes/schemas.php:244
2252
+ msgid "Number of episodes"
2253
  msgstr ""
2254
 
2255
+ #: includes/schemas.php:250
2256
+ msgid "Season number"
2257
  msgstr ""
2258
 
2259
+ #: includes/schemas.php:256 includes/schemas.php:366
2260
+ msgid "Episode"
2261
  msgstr ""
2262
 
2263
+ #: includes/schemas.php:262 includes/schemas.php:428
2264
+ msgid "Part of series"
2265
  msgstr ""
2266
 
2267
+ #: includes/schemas.php:274 includes/schemas.php:440
2268
+ msgid "Production company"
2269
  msgstr ""
2270
 
2271
+ #: includes/schemas.php:280 includes/schemas.php:446 includes/schemas.php:873
2272
+ msgid "Director(s)"
2273
  msgstr ""
2274
 
2275
+ #: includes/schemas.php:284 includes/schemas.php:450 includes/schemas.php:877
2276
+ msgid "Add one director per line"
2277
  msgstr ""
2278
 
2279
+ #: includes/schemas.php:288 includes/schemas.php:454 includes/schemas.php:881
2280
+ msgid "Actor(s)"
2281
  msgstr ""
2282
 
2283
+ #: includes/schemas.php:292 includes/schemas.php:458 includes/schemas.php:885
2284
+ msgid "Add one actor per line"
2285
  msgstr ""
2286
 
2287
+ #: includes/schemas.php:297
2288
+ msgid "CreativeWorkSeries"
2289
  msgstr ""
2290
 
2291
+ #: includes/schemas.php:353
2292
+ msgid "International Standard Serial Number (ISSN)"
2293
  msgstr ""
2294
 
2295
+ #: includes/schemas.php:416
2296
+ msgid "Episode number"
2297
  msgstr ""
2298
 
2299
+ #: includes/schemas.php:422
2300
+ msgid "Part of season"
2301
  msgstr ""
2302
 
2303
+ #: includes/schemas.php:462 includes/schemas.php:889 includes/schemas.php:942
2304
+ #: includes/schemas.php:1031
2305
+ msgid "Genre"
2306
  msgstr ""
2307
 
2308
+ #: includes/schemas.php:466 includes/schemas.php:893 includes/schemas.php:946
2309
+ #: includes/schemas.php:1035
2310
+ msgid "Add one item per line"
2311
  msgstr ""
2312
 
2313
+ #: includes/schemas.php:471
2314
+ msgid "Event"
 
 
2315
  msgstr ""
2316
 
2317
+ #: includes/schemas.php:475
2318
+ msgid "Event Title"
2319
  msgstr ""
2320
 
2321
+ #: includes/schemas.php:481
2322
+ msgid "Event Description"
2323
  msgstr ""
2324
 
2325
+ #: includes/schemas.php:487
2326
+ msgid "Event Image"
 
 
2327
  msgstr ""
2328
 
2329
+ #: includes/schemas.php:527
2330
+ msgid "Location name"
2331
  msgstr ""
2332
 
2333
+ #: includes/schemas.php:536 includes/schemas.php:721 includes/schemas.php:794
2334
+ #: includes/schemas.php:1398 includes/schemas.php:1546
2335
+ msgid "Address"
2336
  msgstr ""
2337
 
2338
+ #: includes/schemas.php:544
2339
+ msgid "Performer"
 
 
2340
  msgstr ""
2341
 
2342
+ #: includes/schemas.php:553 includes/schemas.php:1159 includes/schemas.php:1458
2343
+ msgid "Offer price"
2344
  msgstr ""
2345
 
2346
+ #: includes/schemas.php:554 includes/schemas.php:1160 includes/schemas.php:1459
2347
+ msgid "Fill \"0.0\" to show the free price"
2348
  msgstr ""
2349
 
2350
+ #: includes/schemas.php:562 includes/schemas.php:1168 includes/schemas.php:1467
2351
+ msgid "Currency"
2352
  msgstr ""
2353
 
2354
+ #: includes/schemas.php:570 includes/schemas.php:1196
2355
+ msgid "Offer URL"
2356
  msgstr ""
2357
 
2358
+ #: includes/schemas.php:579
2359
+ msgid "Offer valid from"
2360
  msgstr ""
2361
 
2362
+ #: includes/schemas.php:587 includes/schemas.php:1176
2363
+ msgid "Availability"
2364
  msgstr ""
2365
 
2366
+ #: includes/schemas.php:608
2367
+ msgid "Game"
2368
  msgstr ""
2369
 
2370
+ #: includes/schemas.php:612
2371
+ msgid "Game title"
2372
  msgstr ""
2373
 
2374
+ #: includes/schemas.php:618
2375
+ msgid "Game description"
2376
  msgstr ""
2377
 
2378
+ #: includes/schemas.php:624
2379
+ msgid "Game Image"
2380
  msgstr ""
2381
 
2382
+ #: includes/schemas.php:659
2383
+ msgid "Hotel"
2384
  msgstr ""
2385
 
2386
+ #: includes/schemas.php:675 includes/schemas.php:1062 includes/schemas.php:1236
2387
+ #: includes/schemas.php:1430 includes/schemas.php:1573
2388
+ msgid "Image"
2389
  msgstr ""
2390
 
2391
+ #: includes/schemas.php:703 includes/schemas.php:776 includes/schemas.php:1392
2392
+ #: includes/schemas.php:1540
2393
+ msgid "Price range"
2394
  msgstr ""
2395
 
2396
+ #: includes/schemas.php:709 includes/schemas.php:782
2397
+ msgid "Payment accepted"
2398
  msgstr ""
2399
 
2400
+ #: includes/schemas.php:715 includes/schemas.php:788
2401
+ msgid "Currencies accepted"
2402
  msgstr ""
2403
 
2404
+ #: includes/schemas.php:726 includes/schemas.php:799 includes/schemas.php:1408
2405
+ #: includes/schemas.php:1551
2406
+ msgid "Telephone"
2407
  msgstr ""
2408
 
2409
+ #: includes/schemas.php:732
2410
+ msgid "LocalBusiness"
2411
  msgstr ""
2412
 
2413
+ #: includes/schemas.php:748
2414
+ msgid "Business Image"
2415
  msgstr ""
2416
 
2417
+ #: includes/schemas.php:805
2418
+ msgid "Movie"
2419
  msgstr ""
2420
 
2421
+ #: includes/schemas.php:809
2422
+ msgid "Movie title"
2423
  msgstr ""
2424
 
2425
+ #: includes/schemas.php:815
2426
+ msgid "Movie description"
2427
  msgstr ""
2428
 
2429
+ #: includes/schemas.php:855
2430
+ msgid "Country"
2431
  msgstr ""
2432
 
2433
+ #: includes/schemas.php:861
2434
+ msgid "Duration"
2435
  msgstr ""
2436
 
2437
+ #: includes/schemas.php:898
2438
+ msgid "MusicPlaylist"
2439
  msgstr ""
2440
 
2441
+ #: includes/schemas.php:936
2442
+ msgid "Number of tracks"
2443
  msgstr ""
2444
 
2445
+ #: includes/schemas.php:957
2446
+ msgid "MusicRecording"
2447
  msgstr ""
2448
 
2449
+ #: includes/schemas.php:961
2450
+ msgid "Track name"
2451
  msgstr ""
2452
 
2453
+ #: includes/schemas.php:1001
2454
+ msgid "Track Duration"
2455
  msgstr ""
2456
 
2457
+ #: includes/schemas.php:1007
2458
+ msgid "Album name"
 
 
2459
  msgstr ""
2460
 
2461
+ #: includes/schemas.php:1013
2462
+ msgid "Playlist name"
2463
  msgstr ""
2464
 
2465
+ #: includes/schemas.php:1019
2466
+ msgid "International Standard Recording Code"
2467
  msgstr ""
2468
 
2469
+ #: includes/schemas.php:1025
2470
+ msgid "Recording of"
2471
  msgstr ""
2472
 
2473
+ #: includes/schemas.php:1046
2474
+ msgid "Organization"
2475
  msgstr ""
2476
 
2477
+ #: includes/schemas.php:1091
2478
+ msgid "Product"
2479
  msgstr ""
2480
 
2481
+ #: includes/schemas.php:1095
2482
+ msgid "Product Name"
2483
  msgstr ""
2484
 
2485
+ #: includes/schemas.php:1101
2486
+ msgid "Product Description"
2487
  msgstr ""
2488
 
2489
+ #: includes/schemas.php:1107
2490
+ msgid "Product Image"
 
 
2491
  msgstr ""
2492
 
2493
+ #: includes/schemas.php:1113
2494
+ msgid "Brand"
2495
  msgstr ""
2496
 
2497
+ #: includes/schemas.php:1119
2498
+ msgid "SKU"
2499
  msgstr ""
2500
 
2501
+ #: includes/schemas.php:1125
2502
+ msgid "MPN"
2503
  msgstr ""
2504
 
2505
+ #: includes/schemas.php:1131
2506
+ msgid "GTIN-8"
 
 
2507
  msgstr ""
2508
 
2509
+ #: includes/schemas.php:1205
2510
+ msgid "Valid until"
2511
  msgstr ""
2512
 
2513
+ #: includes/schemas.php:1214
2514
+ msgid "Recipe"
2515
  msgstr ""
2516
 
2517
+ #: includes/schemas.php:1218
2518
+ msgid "Recipe Name"
2519
  msgstr ""
2520
 
2521
+ #: includes/schemas.php:1242
2522
+ msgid "Preperation time"
2523
  msgstr ""
2524
 
2525
+ #: includes/schemas.php:1245 includes/schemas.php:1252
2526
+ #: includes/schemas.php:1259
2527
+ msgid "Format: 1H30M. H - Hours, M - Minutes"
2528
  msgstr ""
2529
 
2530
+ #: includes/schemas.php:1249
2531
+ msgid "Cook Time"
2532
  msgstr ""
2533
 
2534
+ #: includes/schemas.php:1256
2535
+ msgid "Total Time"
2536
  msgstr ""
2537
 
2538
+ #: includes/schemas.php:1263
2539
+ msgid "Type"
2540
  msgstr ""
2541
 
2542
+ #: includes/schemas.php:1266
2543
+ msgid "Type of dish, for example \"appetizer\", \"entree\", or \"dessert\""
2544
  msgstr ""
2545
 
2546
+ #: includes/schemas.php:1270
2547
+ msgid "Recipe Yield"
2548
  msgstr ""
2549
 
2550
+ #: includes/schemas.php:1273
2551
+ msgid "Quantity produced by the recipe, for example \"4 servings\""
2552
  msgstr ""
2553
 
2554
+ #: includes/schemas.php:1277
2555
+ msgid "Recipe Ingredients"
2556
  msgstr ""
2557
 
2558
+ #: includes/schemas.php:1281
2559
+ msgid "Recipe ingredients, add one item per line"
2560
  msgstr ""
2561
 
2562
+ #: includes/schemas.php:1285
2563
+ msgid "Recipe Instructions"
2564
  msgstr ""
2565
 
2566
+ #: includes/schemas.php:1288
2567
+ msgid "Steps to take"
 
 
2568
  msgstr ""
2569
 
2570
+ #: includes/schemas.php:1292
2571
+ msgid "Recipe Cuisine"
2572
  msgstr ""
2573
 
2574
+ #: includes/schemas.php:1298
2575
+ msgid "Keywords"
 
 
2576
  msgstr ""
2577
 
2578
+ #: includes/schemas.php:1301
2579
+ msgid "Separate by commas"
2580
  msgstr ""
2581
 
2582
+ #: includes/schemas.php:1305
2583
+ msgid "Calories"
2584
  msgstr ""
2585
 
2586
+ #: includes/schemas.php:1308
2587
+ msgid "The number of calories"
2588
  msgstr ""
2589
 
2590
+ #: includes/schemas.php:1314
2591
+ msgid "Video name"
2592
  msgstr ""
2593
 
2594
+ #: includes/schemas.php:1322
2595
+ msgid "Video description"
2596
  msgstr ""
2597
 
2598
+ #: includes/schemas.php:1330
2599
+ msgid "Video thumbnail URL"
2600
  msgstr ""
2601
 
2602
+ #: includes/schemas.php:1338
2603
+ msgid "Video upload date"
2604
  msgstr ""
2605
 
2606
+ #: includes/schemas.php:1341
2607
+ msgid "Y-m-d format"
2608
  msgstr ""
2609
 
2610
+ #: includes/schemas.php:1348
2611
+ msgid "Restaurant"
2612
  msgstr ""
2613
 
2614
+ #: includes/schemas.php:1352
2615
+ msgid "Restaurant Name"
2616
  msgstr ""
2617
 
2618
+ #: includes/schemas.php:1358
2619
+ msgid "Restaurant Description"
2620
  msgstr ""
2621
 
2622
+ #: includes/schemas.php:1364
2623
+ msgid "Restaurant Image"
2624
  msgstr ""
2625
 
2626
+ #: includes/schemas.php:1403
2627
+ msgid "Cuisine"
2628
  msgstr ""
2629
 
2630
+ #: includes/schemas.php:1414
2631
+ msgid "SoftwareApplication"
2632
  msgstr ""
2633
 
2634
+ #: includes/schemas.php:1475
2635
+ msgid "Operating System"
 
 
2636
  msgstr ""
2637
 
2638
+ #: includes/schemas.php:1478
2639
+ msgid "For example, \"Windows 7\", \"OSX 10.6\", \"Android 1.6\""
2640
  msgstr ""
2641
 
2642
+ #: includes/schemas.php:1482
2643
+ msgid "Application Category"
2644
  msgstr ""
2645
 
2646
+ #: includes/schemas.php:1485
2647
+ msgid "For example, \"Game\", \"Multimedia\""
2648
  msgstr ""
2649
 
2650
+ #: includes/schemas.php:1496
2651
+ msgid "Store"
2652
  msgstr ""
2653
 
2654
+ #: includes/schemas.php:1500
2655
+ msgid "Store Name"
2656
  msgstr ""
2657
 
2658
+ #: includes/schemas.php:1506
2659
+ msgid "Store Description"
2660
  msgstr ""
2661
 
2662
+ #: includes/schemas.php:1512
2663
+ msgid "Store Image"
 
 
2664
  msgstr ""
2665
 
2666
+ #: includes/schemas.php:1557
2667
+ msgid "TVSeries"
 
2668
  msgstr ""
2669
 
2670
+ #: includes/shortcodes.php:106
2671
+ msgid "User Rating"
2672
  msgstr ""
2673
 
2674
+ #: includes/shortcodes.php:113
2675
+ #, php-format
2676
+ msgid "(%s vote)"
2677
  msgstr ""
2678
 
2679
  #: includes/widgets/class-wp-review-tab-widget.php:28
2712
  msgid "Editor's choice"
2713
  msgstr ""
2714
 
 
 
 
 
 
2715
  #: includes/widgets/class-wp-review-tab-widget.php:118
2716
  msgid "Select Tabs"
2717
  msgstr ""
2750
  msgid "Number of reviews to show:"
2751
  msgstr ""
2752
 
2753
+ #: includes/widgets/class-wp-review-tab-widget.php:197
2754
+ msgid "Title length (words):"
2755
+ msgstr ""
2756
+
2757
  #: includes/widgets/class-wp-review-tab-widget.php:206
2758
  msgid "Thumbnail size:"
2759
  msgstr ""
2795
  msgid "Recent Ratings"
2796
  msgstr ""
2797
 
2798
+ #: rating-types/circle-input.php:9 rating-types/circle-output.php:9
2799
+ #: rating-types/thumbs-input.php:9 rating-types/thumbs-output.php:9
2800
+ msgid "This rating type is not supported in the WP Review Free version"
2801
  msgstr ""
2802
 
2803
+ #: rating-types/percentage-input.php:19 rating-types/point-input.php:19
2804
+ #: rating-types/star-input.php:19
2805
+ msgid "Add rating"
2806
  msgstr ""
2807
 
2808
+ #: rating-types/percentage-input.php:43 rating-types/point-input.php:40
2809
+ #: rating-types/star-input.php:40
2810
+ msgid "Sending"
2811
  msgstr ""
2812
 
2813
+ #: rating-types/percentage-input.php:53 rating-types/point-input.php:50
2814
+ #, php-format
2815
+ msgid "%s"
2816
+ msgstr ""
2817
+
2818
+ #: template-list.php:37
2819
+ msgid "Amazon"
2820
+ msgstr ""
2821
+
2822
+ #: template-list.php:47
2823
+ msgid "Aqua"
2824
+ msgstr ""
2825
+
2826
+ #: template-list.php:57
2827
+ msgid "Blue"
2828
+ msgstr ""
2829
+
2830
+ #: template-list.php:67
2831
+ msgid "Darkside"
2832
+ msgstr ""
2833
+
2834
+ #: template-list.php:78
2835
+ msgid "Dash"
2836
+ msgstr ""
2837
+
2838
+ #: template-list.php:88
2839
+ msgid "Edge"
2840
+ msgstr ""
2841
+
2842
+ #: template-list.php:98
2843
+ msgid "Enterprise"
2844
+ msgstr ""
2845
+
2846
+ #: template-list.php:108
2847
+ msgid "Facebook"
2848
+ msgstr ""
2849
+
2850
+ #: template-list.php:118
2851
+ msgid "Fizzy"
2852
+ msgstr ""
2853
+
2854
+ #: template-list.php:128
2855
+ msgid "Gamer"
2856
+ msgstr ""
2857
+
2858
+ #: template-list.php:138
2859
+ msgid "Gravity"
2860
+ msgstr ""
2861
+
2862
+ #: template-list.php:149
2863
+ msgid "Shell"
2864
+ msgstr ""
2865
+
2866
+ #: template-list.php:159
2867
+ msgid "Tabbed layout"
2868
+ msgstr ""
2869
+
2870
+ #: template-list.php:169
2871
+ msgid "Tabbed layout 2"
2872
  msgstr ""
2873
 
2874
+ #: template-list.php:179
2875
+ msgid "Xiaomi"
2876
  msgstr ""
2877
 
2878
+ #: template-list.php:189
2879
+ msgid "Zine"
2880
  msgstr ""
2881
 
2882
+ #. translators: PHP version.
2883
+ #: wp-review.php:37
2884
+ #, php-format
2885
+ msgid ""
2886
+ "<strong>WP Review</strong> requires PHP version 5.6 or above. You are "
2887
+ "running version %s. Please update PHP to run this plugin."
2888
  msgstr ""
readme.txt CHANGED
@@ -1,80 +1,100 @@
1
- === WP Review ===
2
  Contributors: mythemeshop
3
  Creator's website link: http://mythemeshop.com/plugins/wp-review/
4
  Tags: review, schema.org, rating, schema, user rating, google rating, star rating, product review
5
- Requires at least: 4.0
6
- Tested up to: 5.3.1
7
- Stable tag: 5.2.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Create reviews! Choose from Stars, Percentages or Points for review scores. Supports Retina Display, WPMU & Unlimited Color Schemes.
12
 
13
  == Description ==
14
- [youtube https://www.youtube.com/watch?v=IvJUHKNYAMc]
15
 
16
- = Complete Setup Tutorial =
17
- [youtube https://www.youtube.com/watch?v=NzMe-QY_WZY]
18
 
19
- Did you always want to increase the user interaction on your website by rating products/services/anything? We at <a rel="nofollow" href="http://mythemeshop.com/">MyThemeShop</a> understand your need, & created a premium Review plugin. We are now distributing it for FREE to give back to the WordPress community. We have been given so much by the WordPress community, it's time to give back.
20
 
21
- **WP Review plugin** is an easy yet powerful way to review content easily, without affecting the speed of your site. If you're a blogger, you probably occasionally review or rank products, services, tools, recipes, or other content on your site. <a rel="nofollow" href="https://mythemeshop.com/plugins/wp-review/">WP Review plugin</a> is a customizable and lightweight way to create reviews, using stars, percentage or point rating, and it includes support for translation, WPMU, Google rich snippets and unlimited colors. Just install it and follow the simple configuration instructions to place it in your desired location.
 
 
 
22
 
23
- Check the live demos of different Review types offered
24
- * <a rel="nofollow" href="http://demo.mythemeshop.com/point/fatebuntur-stoici-haec-omnia-dicta-esse-praeclare/"><strong>Star Review</strong></a>
25
- * <a rel="nofollow" href="http://demo.mythemeshop.com/point/modo-etiam-paulum-ad-dexteram-de-via-declinavi/"><strong>Point Review</strong></a>
26
- * <a rel="nofollow" href="http://demo.mythemeshop.com/point/sed-nonne-merninisti-licere-mihi-ista-probare/"><strong>Percentage Review</strong></a>
27
 
28
- You can also check <a rel="nofollow" href="https://mythemeshop.com/plugins/wp-review-pro/">WP Review Pro</a> which is one of the best <a rel="nofollow" href="https://mythemeshop.com/plugins/">Premium WordPress Plugins</a> for creating extraordinary reviews on your <a rel="nofollow" href="https://mythemeshop.com/blog/">WordPress blog</a> and website.
29
 
30
- = Why WP Review from <a rel="nofollow" href="http://mythemeshop.com/">MyThemeShop</a>: =
31
- * Fastest review plugin.
32
- * Stars, percentage and point rating system.
33
- * Supports Google Rich Snippets(schema.org)
34
- * 100% Fluid Responsive.
35
- * 2 Review box templates
36
- * Option to set Global Position.
37
- * Option to change Global Colors.
38
- * Option to change individual review Colors and Positions.
39
- * Included tabbed widget to show recent reviews and popular reviews.
40
- * WP Multisite and Multiuser (WPMU / WPMS / WordPress MU) compatible.
41
- * Design it as you want, unlimited color options.
42
- * Easily use it in both Free and <a rel="nofollow" href="https://mythemeshop.com/themes/">Premium WordPress Themes.
43
- * Translation Ready.
44
- * Reviews are displayed to visitors in a friendly format.
45
- * Completely customizable, including which fields to ask for, require, and show.
46
- * Minimal design but could be instantly made modern.
47
- * Works with caching plugins and all majority of themes.
48
- * Easy to modify the CSS to better fit your theme style.
49
- * Support for adding your own custom fields.
50
- * Minimalist, lightweight, and efficient code means that your users won't notice any hiccups.
51
- * Position it above or below the content with ease and no coding.
52
- * Supports Shortcode `[wp-review]` to show review anywhere in post.
53
- * Developer friendly - Useful filters are included! So you can use it in your themes.
54
 
55
- = Support =
56
- All support for this plugin is provided through our forums. If you have not registered yet, you can do so for FREE by <a rel="nofollow" href="https://mythemeshop.com/#signup">**signing up**</a> on our website.
57
 
58
- You can also check our <a rel="nofollow" href="https://mythemeshop.com/wordpress-101/">WordPress Training videos</a>
59
 
60
- If you still feel stuck, please feel free to open a new thread on our <a rel="nofollow" href="https://community.mythemeshop.com/forum/11-free-plugin-support/">Support Forum</a>. A member of our support team will be happy to help.
61
 
62
- = Developer Zone =
63
- Yes, this plugin is so developer friendly, so you could use it with any theme you develop. Define default CSS, custom position, one line integration in your theme's code.
64
 
65
- Show average review in your theme using below function:
66
- `<?php if (function_exists('wp_review_show_total')) wp_review_show_total(); ?>`
67
 
68
- You can find full list of the available filters here https://github.com/MyThemeShopTeam/WP-Review/blob/master/filter-list.php
69
 
70
- GitHub link: https://github.com/MyThemeShopTeam/WP-Review/
71
 
72
- You can also use the WP Review plugin for creating product reviews and pair it up with a <a rel="nofollow" href="https://mythemeshop.com/theme-category/wordpress-ecommerce-themes/">WordPress Ecommerce Theme</a> to increase the trust of new users on your website.
73
 
 
74
 
75
- = Feedback =
76
- If you like this plugin, then please consider leaving us a good rating and a review feedback</a>.
77
- If would like, you can follow us on <a rel="nofollow" href="https://plus.google.com/+Mythemeshop/">Google+</a>, <a rel="nofollow" href="https://twitter.com/MyThemeShopTeam">Twitter</a>, and <a rel="nofollow" href="https://www.facebook.com/MyThemeShop">Facebook</a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
  == Installation ==
80
 
@@ -87,9 +107,37 @@ This section describes how to install the plugin and get it working.
87
 
88
  == Frequently Asked Questions ==
89
 
90
- = User rating not working =
 
 
 
 
 
 
 
 
 
 
 
 
91
 
92
- Please disable all plugins and check if rating is working properly. Then you can enable all plugins one by one to find out which plugin is conflicting with WP Rating plugin.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
 
94
  == Screenshots ==
95
 
@@ -103,6 +151,28 @@ Please disable all plugins and check if rating is working properly. Then you can
103
 
104
  == Changelog ==
105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  = v5.2.9 (Dec 14, 2019) =
107
  * Improved comments number translation
108
  * Fixed an issue where widget tab titles are not saving
1
+ === WordPress Review Plugin: The Ultimate Solution for Building a Review Website ===
2
  Contributors: mythemeshop
3
  Creator's website link: http://mythemeshop.com/plugins/wp-review/
4
  Tags: review, schema.org, rating, schema, user rating, google rating, star rating, product review
5
+ Requires at least: 4.9
6
+ Tested up to: 5.4
7
+ Stable tag: 5.3.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Create reviews! Choose from Stars, Percentages or Points for review scores. Supports Retina Display, WPMU & Unlimited Color Schemes.
12
 
13
  == Description ==
14
+ Does your website run on WordPress? Does it feature reviews of products, services, or anything else for that matter? At MyThemeShop, we know how important it is to have interactive smart reviews on your website with ratings, structured data, shortcodes, user comments, and affiliate buttons.
15
 
16
+ In this regard, we have created a [WordPress Review plugin](https://mythemeshop.com/plugins/wordpress-review/) with all the premium features, You would require to run a full-fledged review website.
 
17
 
18
+ ## What Can WP Review Plugin Do for You
19
 
20
+ * WP Review plugin offers an all-inclusive solution for you to create a full-blown review website in any niche without any design or technical skills.
21
+ * It helps you create high-converting information-packed reviews that help potential customers make purchasing decisions.
22
+ * It boosts your SEO efforts by adding [19 different schema types](https://demo.mythemeshop.com/wp-review-pro/rich-snippets/). Schema makes it easy for search engines to parse and interpret web pages more effectively so they can return informative results to users.
23
+ * The interactive reviews would help boost conversions on your website hence increasing your overall revenue.
24
 
25
+ ## Why Use Reviews On Your Website?
 
 
 
26
 
27
+ **Improved CTR**
28
 
29
+ Using reviews, especially star ratings would help you increase your website CTR. Google and other search engines pick the star ratings and show them in the search results. This would increase the chances of your website getting more clicks from the search engines.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
+ **Improves Conversion Rate**
 
32
 
33
+ Reviews help the users skim through the content and make an informed decision while making an online purchase. For eg: while reading the comparison of two mobile phones of the same price range, you would prefer to buy one with better reviews and more star ratings.
34
 
35
+ **Better Content Presentation**
36
 
37
+ By using a review box, you are improving the overall design and content structure. The content looks both appealing and better structured for grasping the important details without reading the whole article or post.
 
38
 
39
+ **Improved search engine results**
 
40
 
41
+ Gone are the days when optimized alt-tags and stuffing keywords would boost your keyword rankings. Google is constantly updating its algorithms and online reviews are quickly becoming a core part of SEO.
42
 
43
+ Using [rich snippets](https://mythemeshop.com/blog/google-rich-snippets/), Google has developed a way to understand reviews just as customers would. Reviews or star ratings immensely help in **improving the CTR** . This would help in increasing the traffic on your website.
44
 
45
+ **Great Styling in One-Click**
46
 
47
+ Customize the look and feel of your review section to make it look professional. You can choose different styling options. With **unlimited color choices**, you can choose and create combinations that would perfectly blend with your [WordPress theme](https://mythemeshop.com/themes/schema/) design.
48
 
49
+ You can also choose from the two available templates and customize them to blend with your reviews and most importantly with your website’s design.
50
+
51
+ These templates are created with a **mobile-first approach**to load on all mobile devices. Not only that, the plugins work fine with the caching plugins and all majority WordPress themes.
52
+
53
+ **Easy and Fast to Add Reviews**
54
+
55
+ All you have to do is fill the information you need to display and select a method to display the reviews in any custom post type or page.
56
+
57
+ By default, WP Review plugin can be configured in global settings to either insert your review box at the start or at the end of your post.
58
+
59
+ However, with the **custom location-enabled**, the review box can be inserted in a location different from the one defined in the global settings. You can choose to insert the review box after content, before content, or use the custom shortcode option. The shortcode option allows you to insert the review box anywhere on the page.
60
+
61
+ **Schema Support for Search Engines**
62
+
63
+ The WP Review supports 19 different Schema types so that the search engines can easily understand the content on your website.
64
+
65
+ This increases the probability of your website to get more visibility on the SERPs which would directly have a positive impact on the overall organic traffic of your website.
66
+
67
+ **Visitor Ratings**
68
+
69
+ Visitor ratings can help you improvise your content during a span of time. For eg: you have originally rated a product 4.5 stars but during the course of time, you see that the average visitor ratings are just 3.5. In such a case, you have got a clear indication to change the original product ratings.
70
+
71
+
72
+ ## Multiple Review Rating Types
73
+
74
+ The WP review plugin is amazingly easy to use and allows you to deliver professional looking reviews. You have the option to choose different types of review systems. You can use stars, percentage, and point ratings.
75
+
76
+ * **_[Star rating](https://demo.mythemeshop.com/point/fatebuntur-stoici-haec-omnia-dicta-esse-praeclare/)_:** The most common rating system. You can use it for rating any product or service. It follows a 5 point system where you can rate a product out of five.
77
+ * **_[Point rating](https://demo.mythemeshop.com/point/modo-etiam-paulum-ad-dexteram-de-via-declinavi/):_**Useful system for creating in-depth reviews or when rating feature-rich products. Using this, you can rate a product out of 10.
78
+ * **_[Percentage rating](https://demo.mythemeshop.com/point/sed-nonne-merninisti-licere-mihi-ista-probare/):_** The best rating system for granular analysis of a product’s features. __ Ideal for products with numerous features. Using this, you can assign a percentage out of 100 to a specific product.
79
+
80
+
81
+ ## All the Right Perks Included
82
+
83
+ **No coding required**
84
+
85
+ Just copy and paste the shortcode shown by WP Review and insert it where you want the review box to appear on the page.
86
+
87
+ **Regular updates**
88
+
89
+ Get new features regularly installed on your website. Just one click and your plugin is as good as new.
90
+
91
+ **High-quality code**
92
+
93
+ The plugin’s architecture together with the code has been uncompromisingly optimized to guarantee a fantastic user experience for you and your users. No slow load times and no single security vulnerability.
94
+
95
+ **Premium support**
96
+
97
+ Get your questions answered and issues solved by a dedicated team of WordPress experts. Support is available every day throughout the year.
98
 
99
  == Installation ==
100
 
107
 
108
  == Frequently Asked Questions ==
109
 
110
+ = Is WP Review compatible with my WordPress Theme? =
111
+
112
+ Yes. WP Review is created by following WordPress's standard plugin code guidelines. That means that WP Review is compatible with all WordPress themes that are coded in a standard way.
113
+
114
+ = What are Rich Snippets? =
115
+
116
+ Also referred to as rich results, these are normal search results with a bit of more information. Rich Results include reviews, events, and recipes.
117
+
118
+ = How does a rich result help? =
119
+
120
+ People love rich results because they stand out from other search results. They have a higher click-through rate (CTR). This means more traffic from that search result.
121
+
122
+ = Which content types are supported? =
123
 
124
+ WP Review plugin supports 19 types of Schema Markups. Ranging from books, recipes, software application, music, and literally everything else.
125
+
126
+ = How does schema help with SEO? =
127
+
128
+ To be clear, schema markup is not a ranking factor with regards to SEO. It is a code you add to your HTML to improve how Google and other search engines understand and represent your content/page in SERPs. In short, it increases the probability of your site getting ranked better on the SERPs.
129
+
130
+ = Won’t the plugin slow down my website? =
131
+
132
+ Absolutely not! The [MyThemeShop](https://mythemeshop.com/) team is well known for developing cleanly coded and superfast themes and plugins. We follow WordPress best practices, the major reason why our plugin is listed on the WordPress repository.
133
+
134
+ = Will I get any support? =
135
+
136
+ We provide support to our premium members. You’d have to purchase the license to use the[ paid version](https://mythemeshop.com/plugins/wordpress-review/) of WP Review after which, you can raise a ticket from our[ support forum](https://community.mythemeshop.com/).
137
+
138
+ = How do I update the plugin? =
139
+
140
+ There are two ways you can do this. You can update the plugin by downloading a fresh copy from the WordPress repository or, you can also update from your WordPress dashboard by going to Plugins -> Installed Plugins -> WP Review and clicking on “_update now_”. Please note that you would get the “_update now_” option only when there is any new update available for the plugin.
141
 
142
  == Screenshots ==
143
 
151
 
152
  == Changelog ==
153
 
154
+ = v5.3.0 (Jan 20, 2020) =
155
+ * Added support for 19 different schema types, this update will fix the [Google SERP rating issue](https://webmasters.googleblog.com/2019/09/making-review-rich-results-more-helpful.html). Please make sure to edit old posts and change the default Schema Type.
156
+ -- Book
157
+ -- Course
158
+ -- CreativeWorkSeason
159
+ -- CreativeWorkSeries
160
+ -- Episode
161
+ -- Event
162
+ -- Game
163
+ -- Hotel
164
+ -- LocalBusiness
165
+ -- Movie
166
+ -- MusicPlaylist
167
+ -- MusicRecording
168
+ -- Organization
169
+ -- Product
170
+ -- Recipe
171
+ -- Restaurant
172
+ -- SoftwareApplication
173
+ -- Store
174
+ -- TVSeries
175
+
176
  = v5.2.9 (Dec 14, 2019) =
177
  * Improved comments number translation
178
  * Fixed an issue where widget tab titles are not saving
wp-review.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WP Review
4
  * Plugin URI: http://mythemeshop.com/plugins/wp-review/
5
  * Description: Create reviews! Choose from stars, percentages or points for review scores. Supports Retina Display, WPMU and Unlimited Color Schemes.
6
- * Version: 5.2.9
7
  * Author: MyThemeShop
8
  * Author URI: http://mythemeshop.com/
9
  * Text Domain: wp-review
@@ -45,7 +45,7 @@ if ( version_compare( phpversion(), '5.6', '<' ) ) {
45
  }
46
 
47
  /* Plugin version */
48
- define( 'WP_REVIEW_PLUGIN_VERSION', '5.2.9' );
49
 
50
  /* Sets the custom db table name. */
51
  define( 'MTS_WP_REVIEW_DB_TABLE', 'mts_wp_reviews' );
3
  * Plugin Name: WP Review
4
  * Plugin URI: http://mythemeshop.com/plugins/wp-review/
5
  * Description: Create reviews! Choose from stars, percentages or points for review scores. Supports Retina Display, WPMU and Unlimited Color Schemes.
6
+ * Version: 5.3.0
7
  * Author: MyThemeShop
8
  * Author URI: http://mythemeshop.com/
9
  * Text Domain: wp-review
45
  }
46
 
47
  /* Plugin version */
48
+ define( 'WP_REVIEW_PLUGIN_VERSION', '5.3.0' );
49
 
50
  /* Sets the custom db table name. */
51
  define( 'MTS_WP_REVIEW_DB_TABLE', 'mts_wp_reviews' );