WP Review - Version 5.3.4

Version Description

Download this release

Release Info

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

Code changes from version 5.3.3 to 5.3.4

admin/assets/js/admin.js CHANGED
@@ -583,7 +583,7 @@
583
  }
584
  });
585
 
586
- $( window ).load( function() {
587
  // WYSIWYG saving issue when using Gutenberg.
588
  if ( $( 'body.block-editor-page' ).length ) {
589
  window.tinyMCE.editors.forEach( function( editor ) {
583
  }
584
  });
585
 
586
+ $( window ).on( 'load', function() {
587
  // WYSIWYG saving issue when using Gutenberg.
588
  if ( $( 'body.block-editor-page' ).length ) {
589
  window.tinyMCE.editors.forEach( function( editor ) {
includes/comments.php CHANGED
@@ -40,15 +40,17 @@ function wp_review_comment_count( $count ) {
40
  * Add the title to our admin area, for editing, etc
41
  */
42
  function wp_review_comment_add_meta_box() {
43
- global $wp_review_rating_types, $comment;
44
- $type = wp_review_get_post_user_review_type( $comment->comment_post_ID );
 
 
45
  if ( ! $type ) {
46
  $type = 'star';
47
  }
48
  add_meta_box(
49
  'wp-review-comment-rating',
50
  // translators: rating label.
51
- sprintf( __( 'WP Review Rating (%s)', 'wp-review' ), $wp_review_rating_types[ $type ]['label'] ),
52
  'wp_review_comment_meta_box_fields',
53
  'comment',
54
  'normal',
40
  * Add the title to our admin area, for editing, etc
41
  */
42
  function wp_review_comment_add_meta_box() {
43
+ global $comment;
44
+
45
+ $rating_types = wp_review_get_rating_types();
46
+ $type = wp_review_get_post_user_review_type( $comment->comment_post_ID );
47
  if ( ! $type ) {
48
  $type = 'star';
49
  }
50
  add_meta_box(
51
  'wp-review-comment-rating',
52
  // translators: rating label.
53
+ sprintf( __( 'WP Review Rating (%s)', 'wp-review' ), $rating_types[ $type ]['label'] ),
54
  'wp_review_comment_meta_box_fields',
55
  'comment',
56
  'normal',
includes/enqueue.php CHANGED
@@ -30,7 +30,8 @@ function wp_review_enqueue() {
30
  'wp_review-js',
31
  'wpreview',
32
  array(
33
- 'ajaxurl' => admin_url( 'admin-ajax.php' ),
 
34
  )
35
  );
36
 
30
  'wp_review-js',
31
  'wpreview',
32
  array(
33
+ 'ajaxurl' => admin_url( 'admin-ajax.php' ),
34
+ 'loginRequiredMessage' => __( 'You must log in to add your review', 'wp-review' ),
35
  )
36
  );
37
 
includes/functions.php CHANGED
@@ -224,14 +224,13 @@ add_filter( 'the_content', 'wp_review_inject_data' );
224
  * @param array $args Custom arguments. Use for filter.
225
  */
226
  function wp_review_show_total( $echo = true, $class = 'review-total-only', $post_id = null, $args = array() ) {
227
- global $wp_review_rating_types;
228
-
229
  if ( empty( $post_id ) ) {
230
  $post_id = get_the_ID();
231
  }
232
 
233
- $type = wp_review_get_post_review_type( $post_id );
234
- $user_type = wp_review_get_post_user_review_type( $post_id );
 
235
  if ( ! $type && ! $user_type ) {
236
  return '';
237
  }
@@ -259,7 +258,7 @@ function wp_review_show_total( $echo = true, $class = 'review-total-only', $post
259
  $total = get_post_meta( $post_id, 'wp_review_total', true );
260
 
261
  if ( in_array( $type, array( 'point', 'percentage' ) ) ) {
262
- $rating = sprintf( $wp_review_rating_types[ $type ]['value_text'], $total );
263
  } else {
264
  $rating = wp_review_rating( $total, $post_id, $args );
265
  }
@@ -269,7 +268,7 @@ function wp_review_show_total( $echo = true, $class = 'review-total-only', $post
269
  $total = get_post_meta( $post_id, 'wp_review_user_reviews', true );
270
 
271
  if ( 'point' == $user_type || 'percentage' == $user_type ) {
272
- $rating = sprintf( $wp_review_rating_types[ $user_type ]['value_text'], $total );
273
  } else {
274
  $rating = wp_review_rating( $total, $post_id, array( 'user_rating' => true ) ); // Return just output template.
275
  }
@@ -1426,7 +1425,18 @@ function wp_review_user_rating( $post_id = null, $args = array() ) {
1426
  $user_id = get_current_user_id();
1427
  }
1428
 
1429
- if ( wp_review_has_reviewed( $post_id, $user_id, wp_review_get_user_ip(), WP_REVIEW_COMMENT_TYPE_VISITOR ) || ( ! is_user_logged_in() && ! empty( $options['registered_only'] ) ) ) {
 
 
 
 
 
 
 
 
 
 
 
1430
  $output = wp_review_rating(
1431
  $value,
1432
  $post_id,
@@ -1434,6 +1444,7 @@ function wp_review_user_rating( $post_id = null, $args = array() ) {
1434
  'user_rating' => true,
1435
  'positive_count' => $args['positive_count'],
1436
  'negative_count' => $args['negative_count'],
 
1437
  )
1438
  ); // Return just output template.
1439
  return $output;
@@ -2245,6 +2256,12 @@ function wp_review_get_schema_type( $review, $nested_rating = false ) {
2245
  }
2246
  }
2247
 
 
 
 
 
 
 
2248
  $args = apply_filters( 'wp_review_get_schema_type_args', $args, $review, $nested_rating );
2249
 
2250
  $output = '<script type="application/ld+json">' . PHP_EOL;
@@ -2267,7 +2284,7 @@ function wp_review_get_schema_review_rating( $review, $nested_item = false ) {
2267
  return; // Requires nested aggregateRating.
2268
  }
2269
 
2270
- global $wp_review_rating_types;
2271
 
2272
  if ( $nested_item ) {
2273
  $item_reviewed = wp_review_get_schema_nested_item_args( $review );
@@ -2285,7 +2302,7 @@ function wp_review_get_schema_review_rating( $review, $nested_item = false ) {
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(
@@ -2317,7 +2334,7 @@ function wp_review_get_schema_user_rating( $review, $nested_item = false ) {
2317
  return; // Requires nested aggregateRating.
2318
  }
2319
 
2320
- global $wp_review_rating_types;
2321
 
2322
  if ( $nested_item ) {
2323
  $item_reviewed = wp_review_get_schema_nested_item_args( $review );
@@ -2344,7 +2361,7 @@ function wp_review_get_schema_user_rating( $review, $nested_item = false ) {
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
  );
@@ -2389,8 +2406,8 @@ function wp_review_get_reviewed_item_name( $review ) {
2389
  * @return array
2390
  */
2391
  function wp_review_get_schema_nested_user_rating_args( $review ) {
 
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'] );
@@ -2400,7 +2417,7 @@ function wp_review_get_schema_nested_user_rating_args( $review ) {
2400
  $args = array(
2401
  '@type' => 'aggregateRating',
2402
  'ratingValue' => wp_review_normalize_rating_value( $comments_review_total ),
2403
- 'bestRating' => $wp_review_rating_types[ $review['user_review_type'] ]['max'],
2404
  'ratingCount' => $comments_review_count,
2405
  'worstRating' => 0,
2406
  );
@@ -2410,7 +2427,7 @@ function wp_review_get_schema_nested_user_rating_args( $review ) {
2410
  $args = array(
2411
  '@type' => 'aggregateRating',
2412
  'ratingValue' => wp_review_normalize_rating_value( $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
  );
@@ -2432,14 +2449,14 @@ function wp_review_get_schema_nested_review_args( $review ) {
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' => wp_review_normalize_rating_value( $review['total'] ),
2442
- 'bestRating' => $wp_review_rating_types[ $review['type'] ]['max'],
2443
  'worstRating' => 0,
2444
  ),
2445
  'author' => array(
@@ -2511,6 +2528,9 @@ function wp_review_get_schema_nested_item_args( $review ) {
2511
  // Add aggregateRating to Recipe.
2512
  if ( 'Recipe' === $review['schema'] ) {
2513
  $args['aggregateRating'] = wp_review_normalize_rating_value( $review['total'] );
 
 
 
2514
  }
2515
 
2516
  if ( 'Product' === $review['schema'] ) {
224
  * @param array $args Custom arguments. Use for filter.
225
  */
226
  function wp_review_show_total( $echo = true, $class = 'review-total-only', $post_id = null, $args = array() ) {
 
 
227
  if ( empty( $post_id ) ) {
228
  $post_id = get_the_ID();
229
  }
230
 
231
+ $rating_types = wp_review_get_rating_types();
232
+ $type = wp_review_get_post_review_type( $post_id );
233
+ $user_type = wp_review_get_post_user_review_type( $post_id );
234
  if ( ! $type && ! $user_type ) {
235
  return '';
236
  }
258
  $total = get_post_meta( $post_id, 'wp_review_total', true );
259
 
260
  if ( in_array( $type, array( 'point', 'percentage' ) ) ) {
261
+ $rating = sprintf( $rating_types[ $type ]['value_text'], $total );
262
  } else {
263
  $rating = wp_review_rating( $total, $post_id, $args );
264
  }
268
  $total = get_post_meta( $post_id, 'wp_review_user_reviews', true );
269
 
270
  if ( 'point' == $user_type || 'percentage' == $user_type ) {
271
+ $rating = sprintf( $rating_types[ $user_type ]['value_text'], $total );
272
  } else {
273
  $rating = wp_review_rating( $total, $post_id, array( 'user_rating' => true ) ); // Return just output template.
274
  }
1425
  $user_id = get_current_user_id();
1426
  }
1427
 
1428
+ $user_reviewed = wp_review_has_reviewed( $post_id, $user_id, wp_review_get_user_ip(), WP_REVIEW_COMMENT_TYPE_VISITOR );
1429
+ $login_required = ! is_user_logged_in() && ! empty( $options['registered_only'] );
1430
+
1431
+ if ( $user_reviewed || $login_required ) {
1432
+ $class_name = '';
1433
+ if ( $user_reviewed ) {
1434
+ $class_name .= ' wpr-user-reviewed';
1435
+ }
1436
+ if ( $login_required ) {
1437
+ $class_name .= ' wpr-login-required';
1438
+ }
1439
+
1440
  $output = wp_review_rating(
1441
  $value,
1442
  $post_id,
1444
  'user_rating' => true,
1445
  'positive_count' => $args['positive_count'],
1446
  'negative_count' => $args['negative_count'],
1447
+ 'class' => $class_name,
1448
  )
1449
  ); // Return just output template.
1450
  return $output;
2256
  }
2257
  }
2258
 
2259
+ if ( 'Recipe' === $review['schema'] ) {
2260
+ if ( isset( $args['video'] ) && ( empty( $args['video']['name'] ) || empty( $args['video']['description'] ) || empty( $args['video']['thumbnailUrl'] ) || empty( $args['video']['uploadDate'] ) ) ) {
2261
+ unset( $args['video'] );
2262
+ }
2263
+ }
2264
+
2265
  $args = apply_filters( 'wp_review_get_schema_type_args', $args, $review, $nested_rating );
2266
 
2267
  $output = '<script type="application/ld+json">' . PHP_EOL;
2284
  return; // Requires nested aggregateRating.
2285
  }
2286
 
2287
+ $rating_types = wp_review_get_rating_types();
2288
 
2289
  if ( $nested_item ) {
2290
  $item_reviewed = wp_review_get_schema_nested_item_args( $review );
2302
  'reviewRating' => array(
2303
  '@type' => 'Rating',
2304
  'ratingValue' => $review['total'],
2305
+ 'bestRating' => $rating_types[ $review['type'] ]['max'],
2306
  'worstRating' => 0,
2307
  ),
2308
  'author' => array(
2334
  return; // Requires nested aggregateRating.
2335
  }
2336
 
2337
+ $rating_types = wp_review_get_rating_types();
2338
 
2339
  if ( $nested_item ) {
2340
  $item_reviewed = wp_review_get_schema_nested_item_args( $review );
2361
  '@type' => 'aggregateRating',
2362
  'itemReviewed' => $item_reviewed,
2363
  'ratingValue' => $total,
2364
+ 'bestRating' => $rating_types[ $review['user_review_type'] ]['max'],
2365
  'ratingCount' => $count,
2366
  'worstRating' => 0,
2367
  );
2406
  * @return array
2407
  */
2408
  function wp_review_get_schema_nested_user_rating_args( $review ) {
2409
+ $rating_types = wp_review_get_rating_types();
2410
 
 
2411
  $args = array();
2412
  if ( 'comments' === $review['rating_schema'] ) {
2413
  $comment_reviews = mts_get_post_comments_reviews( $review['post_id'] );
2417
  $args = array(
2418
  '@type' => 'aggregateRating',
2419
  'ratingValue' => wp_review_normalize_rating_value( $comments_review_total ),
2420
+ 'bestRating' => $rating_types[ $review['user_review_type'] ]['max'],
2421
  'ratingCount' => $comments_review_count,
2422
  'worstRating' => 0,
2423
  );
2427
  $args = array(
2428
  '@type' => 'aggregateRating',
2429
  'ratingValue' => wp_review_normalize_rating_value( $review['user_review_total'] ),
2430
+ 'bestRating' => $rating_types[ $review['user_review_type'] ]['max'],
2431
  'ratingCount' => $review['user_review_count'],
2432
  'worstRating' => 0,
2433
  );
2449
  return apply_filters( 'wp_review_get_schema_nested_review_args', array(), $review );
2450
  }
2451
 
2452
+ $rating_types = wp_review_get_rating_types();
2453
 
2454
  $args = array(
2455
  '@type' => 'Review',
2456
  'reviewRating' => array(
2457
  '@type' => 'Rating',
2458
  'ratingValue' => wp_review_normalize_rating_value( $review['total'] ),
2459
+ 'bestRating' => $rating_types[ $review['type'] ]['max'],
2460
  'worstRating' => 0,
2461
  ),
2462
  'author' => array(
2528
  // Add aggregateRating to Recipe.
2529
  if ( 'Recipe' === $review['schema'] ) {
2530
  $args['aggregateRating'] = wp_review_normalize_rating_value( $review['total'] );
2531
+ if ( isset( $args['video'] ) && ( empty( $args['video']['name'] ) || empty( $args['video']['description'] ) || empty( $args['video']['thumbnailUrl'] ) || empty( $args['video']['uploadDate'] ) ) ) {
2532
+ unset( $args['video'] );
2533
+ }
2534
  }
2535
 
2536
  if ( 'Product' === $review['schema'] ) {
includes/schemas.php CHANGED
@@ -1310,20 +1310,22 @@ return array(
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',
1310
  '@type' => 'NutritionInformation',
1311
  ),
1312
  array(
1313
+ 'name' => 'video_name',
1314
+ 'custom_name' => 'name',
1315
+ 'label' => __( 'Video name', 'wp-review' ),
1316
+ 'type' => 'text',
1317
+ 'default' => '',
1318
+ 'part_of' => 'video',
1319
+ '@type' => 'VideoObject',
1320
  ),
1321
  array(
1322
+ 'name' => 'video_description',
1323
+ 'custom_name' => 'description',
1324
+ 'label' => __( 'Video description', 'wp-review' ),
1325
+ 'type' => 'textarea',
1326
+ 'default' => '',
1327
+ 'part_of' => 'video',
1328
+ '@type' => 'VideoObject',
1329
  ),
1330
  array(
1331
  'name' => 'thumbnailUrl',
languages/wp-review.pot CHANGED
@@ -10,2588 +10,2972 @@ 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: 2020-04-07 17:11+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
- #: template-list.php:17 admin/metaboxes.php:366 admin/options/review.php:520
26
- msgid "Default"
 
 
27
  msgstr ""
28
 
29
- #: template-list.php:37
30
- msgid "Amazon"
31
  msgstr ""
32
 
33
- #: template-list.php:47
34
- msgid "Aqua"
 
35
  msgstr ""
36
 
37
- #: template-list.php:57
38
- msgid "Blue"
39
  msgstr ""
40
 
41
- #: template-list.php:67
42
- msgid "Darkside"
43
  msgstr ""
44
 
45
- #: template-list.php:78
46
- msgid "Dash"
47
  msgstr ""
48
 
49
- #: template-list.php:88
50
- msgid "Edge"
51
  msgstr ""
52
 
53
- #: template-list.php:98
54
- msgid "Enterprise"
55
  msgstr ""
56
 
57
- #: template-list.php:108
58
- msgid "Facebook"
59
  msgstr ""
60
 
61
- #: template-list.php:118
62
- msgid "Fizzy"
63
  msgstr ""
64
 
65
- #: template-list.php:128
66
- msgid "Gamer"
67
  msgstr ""
68
 
69
- #: template-list.php:138
70
- msgid "Gravity"
71
  msgstr ""
72
 
73
- #: template-list.php:149
74
- msgid "Shell"
75
  msgstr ""
76
 
77
- #: template-list.php:159
78
- msgid "Tabbed layout"
79
  msgstr ""
80
 
81
- #: template-list.php:169
82
- msgid "Tabbed layout 2"
83
  msgstr ""
84
 
85
- #: template-list.php:179
86
- msgid "Xiaomi"
87
  msgstr ""
88
 
89
- #: template-list.php:189
90
- msgid "Zine"
91
  msgstr ""
92
 
93
- #. translators: PHP version.
94
- #: wp-review.php:38
95
- #, php-format
96
- msgid ""
97
- "<strong>WP Review</strong> requires PHP version 5.6 or above. You are "
98
- "running version %s. Please update PHP to run this plugin."
99
  msgstr ""
100
 
101
- #: filter-list.php:422
102
- msgid "10 Stars"
103
  msgstr ""
104
 
105
- #. translators: review rate.
106
- #: filter-list.php:425 includes/ajax.php:146
107
- #, php-format
108
- msgid "%s Stars"
109
  msgstr ""
110
 
111
- #: filter-list.php:426
112
- #, php-format
113
- msgid "%s Star"
114
  msgstr ""
115
 
116
- #: filter-list.php:441
117
- msgid "Custom template"
118
  msgstr ""
119
 
120
- #: rating-types/point-input.php:19 rating-types/star-input.php:19
121
- #: rating-types/percentage-input.php:19
122
- msgid "Add rating"
123
  msgstr ""
124
 
125
- #: rating-types/point-input.php:40 rating-types/star-input.php:40
126
- #: rating-types/percentage-input.php:43
127
- msgid "Sending"
128
  msgstr ""
129
 
130
- #: rating-types/point-input.php:50 rating-types/percentage-input.php:53
131
- #, php-format
132
- msgid "%s"
133
  msgstr ""
134
 
135
- #: rating-types/thumbs-output.php:9 rating-types/thumbs-input.php:9
136
- #: rating-types/circle-output.php:9 rating-types/circle-input.php:9
137
- msgid "This rating type is not supported in the WP Review Free version"
138
  msgstr ""
139
 
140
- #: comments/comments.php:12
141
- msgid "Please do not load this page directly. Thanks!"
142
  msgstr ""
143
 
144
- #: comments/comments.php:16
145
- msgid "This post is password protected. Enter the password to view comments."
146
  msgstr ""
147
 
148
- #: comments/comments.php:28
149
- msgid "One Response"
150
  msgstr ""
151
 
152
- #: comments/comments.php:32
153
- #, php-format
154
- msgctxt "comments title"
155
- msgid "%1$s Comment"
156
- msgid_plural "%1$s Comments"
157
- msgstr[0] ""
158
- msgstr[1] ""
159
-
160
- #: comments/comments.php:75
161
- msgid "Leave a Reply"
162
  msgstr ""
163
 
164
- #: comments/comments.php:78
165
- msgid "Post Comment"
166
  msgstr ""
167
 
168
- #: comments/comments.php:79
169
- msgid "Comment*"
170
  msgstr ""
171
 
172
- #: comments/comments.php:83
173
- msgid "Name*"
174
  msgstr ""
175
 
176
- #: comments/comments.php:84
177
- msgid "Email*"
178
  msgstr ""
179
 
180
- #: comments/comments.php:85
181
- msgid "Website"
182
  msgstr ""
183
 
184
- #: includes/shortcodes.php:106
185
- msgid "User Rating"
186
  msgstr ""
187
 
188
- #: includes/shortcodes.php:113
189
- #, php-format
190
- msgid "(%s vote)"
191
  msgstr ""
192
 
193
- #. translators: review text.
194
- #. translators: visitors rating.
195
- #: includes/ajax.php:67 includes/ajax.php:143
196
- #, php-format
197
- msgid "Visitor Rating: %s"
198
  msgstr ""
199
 
200
- #. translators: number of reviews.
201
- #: includes/ajax.php:326 includes/ajax.php:329
202
- #, php-format
203
- msgid "%s review"
204
- msgid_plural "%s reviews"
205
- msgstr[0] ""
206
- msgstr[1] ""
207
-
208
- #: includes/ajax.php:345
209
- msgid "Empty post ID"
210
  msgstr ""
211
 
212
- #: includes/ajax.php:348
213
- msgid "Empty rating data"
214
  msgstr ""
215
 
216
- #: includes/ajax.php:351
217
- msgid "Empty type data"
218
  msgstr ""
219
 
220
- #: includes/ajax.php:391 includes/ajax.php:403
221
- msgid "Completed!"
222
  msgstr ""
223
 
224
- #. translators: rating label.
225
- #: includes/comments.php:51
226
- #, php-format
227
- msgid "WP Review Rating (%s)"
228
  msgstr ""
229
 
230
- #: includes/comments.php:78 admin/admin.php:111
231
- msgid "Review total"
232
  msgstr ""
233
 
234
- #: includes/comments.php:117
235
- msgid "Does Product Matches the Description?"
236
  msgstr ""
237
 
238
- #: includes/comments.php:121
239
- msgid "Select"
240
  msgstr ""
241
 
242
- #: includes/comments.php:122 admin/metaboxes.php:882
243
- msgid "Yes"
244
  msgstr ""
245
 
246
- #: includes/comments.php:123 admin/metaboxes.php:883
247
- msgid "No"
248
  msgstr ""
249
 
250
- #: includes/comments.php:137
251
- msgid "Comment Image"
252
  msgstr ""
253
 
254
- #: includes/comments.php:208
255
- msgid "Review Total"
256
  msgstr ""
257
 
258
- #: includes/comments.php:269
259
- msgid "Edit this item inline"
260
  msgstr ""
261
 
262
- #: includes/comments.php:270
263
- msgid "Quick Edit"
264
  msgstr ""
265
 
266
- #: includes/comments.php:370
267
- msgid "Visitor reviews"
268
  msgstr ""
269
 
270
- #: includes/schemas.php:11 admin/review-options-meta-box.php:233
271
- #: admin/review-options-meta-box.php:254
272
- #: includes/widgets/class-wp-review-tab-widget.php:216
273
- msgid "None"
274
  msgstr ""
275
 
276
- #: includes/schemas.php:14
277
- msgid "Book"
278
  msgstr ""
279
 
280
- #: includes/schemas.php:18
281
- msgid "Book Title"
282
  msgstr ""
283
 
284
- #: includes/schemas.php:24
285
- msgid "Book Description"
286
  msgstr ""
287
 
288
- #: includes/schemas.php:30
289
- msgid "Book Image"
290
  msgstr ""
291
 
292
- #: includes/schemas.php:36 includes/schemas.php:141 includes/schemas.php:210
293
- #: includes/schemas.php:319 includes/schemas.php:388 includes/schemas.php:493
294
- #: includes/schemas.php:630 includes/schemas.php:681 includes/schemas.php:754
295
- #: includes/schemas.php:827 includes/schemas.php:914 includes/schemas.php:973
296
- #: includes/schemas.php:1068 includes/schemas.php:1137
297
- #: includes/schemas.php:1370 includes/schemas.php:1436
298
- #: includes/schemas.php:1518 includes/schemas.php:1579
299
- msgid "More link text"
300
  msgstr ""
301
 
302
- #: includes/schemas.php:38 includes/schemas.php:143 includes/schemas.php:212
303
- #: includes/schemas.php:321 includes/schemas.php:390 includes/schemas.php:495
304
- #: includes/schemas.php:632 includes/schemas.php:683 includes/schemas.php:756
305
- #: includes/schemas.php:829 includes/schemas.php:916 includes/schemas.php:975
306
- #: includes/schemas.php:1070 includes/schemas.php:1139
307
- #: includes/schemas.php:1372 includes/schemas.php:1438
308
- #: includes/schemas.php:1520 includes/schemas.php:1581
309
- #: box-templates/global/partials/review-schema.php:49
310
- msgid "[ More ]"
311
  msgstr ""
312
 
313
- #: includes/schemas.php:43 includes/schemas.php:148 includes/schemas.php:217
314
- #: includes/schemas.php:326 includes/schemas.php:395 includes/schemas.php:500
315
- #: includes/schemas.php:637 includes/schemas.php:688 includes/schemas.php:761
316
- #: includes/schemas.php:834 includes/schemas.php:921 includes/schemas.php:980
317
- #: includes/schemas.php:1075 includes/schemas.php:1144
318
- #: includes/schemas.php:1377 includes/schemas.php:1443
319
- #: includes/schemas.php:1525 includes/schemas.php:1586
320
- msgid "More link URL"
321
  msgstr ""
322
 
323
- #: includes/schemas.php:49 includes/schemas.php:154 includes/schemas.php:223
324
- #: includes/schemas.php:332 includes/schemas.php:401 includes/schemas.php:506
325
- #: includes/schemas.php:643 includes/schemas.php:694 includes/schemas.php:767
326
- #: includes/schemas.php:840 includes/schemas.php:927 includes/schemas.php:986
327
- #: includes/schemas.php:1081 includes/schemas.php:1150
328
- #: includes/schemas.php:1383 includes/schemas.php:1449
329
- #: includes/schemas.php:1531 includes/schemas.php:1592
330
- msgid "Use button style"
331
  msgstr ""
332
 
333
- #: includes/schemas.php:53 includes/schemas.php:158 includes/schemas.php:227
334
- #: includes/schemas.php:336 includes/schemas.php:405 includes/schemas.php:510
335
- #: includes/schemas.php:647 includes/schemas.php:698 includes/schemas.php:771
336
- #: includes/schemas.php:844 includes/schemas.php:931 includes/schemas.php:990
337
- #: includes/schemas.php:1085 includes/schemas.php:1154
338
- #: includes/schemas.php:1387 includes/schemas.php:1453
339
- #: includes/schemas.php:1535 includes/schemas.php:1596
340
- msgid "Button"
341
  msgstr ""
342
 
343
- #: includes/schemas.php:54 includes/schemas.php:159 includes/schemas.php:228
344
- #: includes/schemas.php:337 includes/schemas.php:406 includes/schemas.php:511
345
- #: includes/schemas.php:648 includes/schemas.php:699 includes/schemas.php:772
346
- #: includes/schemas.php:845 includes/schemas.php:932 includes/schemas.php:991
347
- #: includes/schemas.php:1086 includes/schemas.php:1155
348
- #: includes/schemas.php:1388 includes/schemas.php:1454
349
- #: includes/schemas.php:1536 includes/schemas.php:1597
350
- msgid "Link"
351
  msgstr ""
352
 
353
- #: includes/schemas.php:58
354
- msgid "Book Author"
355
  msgstr ""
356
 
357
- #: includes/schemas.php:64
358
- msgid "Book Edition"
359
  msgstr ""
360
 
361
- #: includes/schemas.php:70
362
- msgid "Book Format"
363
  msgstr ""
364
 
365
- #: includes/schemas.php:83
366
- msgid "Publisher"
367
  msgstr ""
368
 
369
- #: includes/schemas.php:91
370
- msgid "Publisher Logo"
371
  msgstr ""
372
 
373
- #: includes/schemas.php:100 includes/schemas.php:410 includes/schemas.php:849
374
- msgid "Date published"
375
  msgstr ""
376
 
377
- #: includes/schemas.php:106
378
- msgid "Illustrator"
379
  msgstr ""
380
 
381
- #: includes/schemas.php:112
382
- msgid "ISBN"
383
  msgstr ""
384
 
385
- #: includes/schemas.php:118
386
- msgid "Number Of Pages"
387
  msgstr ""
388
 
389
- #: includes/schemas.php:125
390
- msgid "Course"
391
  msgstr ""
392
 
393
- #: includes/schemas.php:129
394
- msgid "Course Name"
395
  msgstr ""
396
 
397
- #: includes/schemas.php:135
398
- msgid "Course Description"
399
  msgstr ""
400
 
401
- #: includes/schemas.php:163
402
- msgid "Course Author"
403
  msgstr ""
404
 
405
- #: includes/schemas.php:169
406
- msgid "Course Provider"
407
  msgstr ""
408
 
409
- #: includes/schemas.php:178
410
- msgid "Provider Logo"
411
  msgstr ""
412
 
413
- #: includes/schemas.php:188
414
- msgid "CreativeWorkSeason"
415
  msgstr ""
416
 
417
- #: includes/schemas.php:192 includes/schemas.php:301 admin/admin.php:109
418
- msgid "Title"
419
  msgstr ""
420
 
421
- #: includes/schemas.php:198 includes/schemas.php:307 includes/schemas.php:908
422
- #: includes/schemas.php:967 includes/schemas.php:1424 includes/schemas.php:1567
423
- msgid "Description"
424
  msgstr ""
425
 
426
- #: includes/schemas.php:204 includes/schemas.php:313 includes/schemas.php:1430
427
- #: includes/schemas.php:1573
428
- msgid "Image"
429
  msgstr ""
430
 
431
- #: includes/schemas.php:232 includes/schemas.php:341 includes/schemas.php:515
432
- msgid "Start date"
433
  msgstr ""
434
 
435
- #: includes/schemas.php:238 includes/schemas.php:347 includes/schemas.php:521
436
- msgid "End date"
437
  msgstr ""
438
 
439
- #: includes/schemas.php:244
440
- msgid "Number of episodes"
441
  msgstr ""
442
 
443
- #: includes/schemas.php:250
444
- msgid "Season number"
445
  msgstr ""
446
 
447
- #: includes/schemas.php:256 includes/schemas.php:366
448
- msgid "Episode"
449
  msgstr ""
450
 
451
- #: includes/schemas.php:262 includes/schemas.php:428
452
- msgid "Part of series"
453
  msgstr ""
454
 
455
- #: includes/schemas.php:268 includes/schemas.php:359 includes/schemas.php:867
456
- #: includes/schemas.php:950 includes/schemas.php:995 includes/schemas.php:1039
457
- #: includes/schemas.php:1489 includes/schemas.php:1601
458
- msgid "Author"
459
  msgstr ""
460
 
461
- #: includes/schemas.php:274 includes/schemas.php:440
462
- msgid "Production company"
463
  msgstr ""
464
 
465
- #: includes/schemas.php:280 includes/schemas.php:446 includes/schemas.php:873
466
- msgid "Director(s)"
467
  msgstr ""
468
 
469
- #: includes/schemas.php:284 includes/schemas.php:450 includes/schemas.php:877
470
- msgid "Add one director per line"
471
  msgstr ""
472
 
473
- #: includes/schemas.php:288 includes/schemas.php:454 includes/schemas.php:881
474
- msgid "Actor(s)"
475
  msgstr ""
476
 
477
- #: includes/schemas.php:292 includes/schemas.php:458 includes/schemas.php:885
478
- msgid "Add one actor per line"
479
  msgstr ""
480
 
481
- #: includes/schemas.php:297
482
- msgid "CreativeWorkSeries"
483
  msgstr ""
484
 
485
- #: includes/schemas.php:353
486
- msgid "International Standard Serial Number (ISSN)"
487
  msgstr ""
488
 
489
- #: includes/schemas.php:370
490
- msgid "Episode Title"
491
  msgstr ""
492
 
493
- #: includes/schemas.php:376
494
- msgid "Episode Description"
495
  msgstr ""
496
 
497
- #: includes/schemas.php:382
498
- msgid "Episode Image"
499
  msgstr ""
500
 
501
- #: includes/schemas.php:416
502
- msgid "Episode number"
503
  msgstr ""
504
 
505
- #: includes/schemas.php:422
506
- msgid "Part of season"
507
  msgstr ""
508
 
509
- #: includes/schemas.php:434
510
- msgid "Episode Author"
511
  msgstr ""
512
 
513
- #: includes/schemas.php:462 includes/schemas.php:889 includes/schemas.php:942
514
- #: includes/schemas.php:1031
515
- msgid "Genre"
516
  msgstr ""
517
 
518
- #: includes/schemas.php:466 includes/schemas.php:893 includes/schemas.php:946
519
- #: includes/schemas.php:1035
520
- msgid "Add one item per line"
521
  msgstr ""
522
 
523
- #: includes/schemas.php:471
524
- msgid "Event"
525
  msgstr ""
526
 
527
- #: includes/schemas.php:475
528
- msgid "Event Title"
529
  msgstr ""
530
 
531
- #: includes/schemas.php:481
532
- msgid "Event Description"
533
  msgstr ""
534
 
535
- #: includes/schemas.php:487
536
- msgid "Event Image"
537
  msgstr ""
538
 
539
- #: includes/schemas.php:527
540
- msgid "Location name"
541
  msgstr ""
542
 
543
- #: includes/schemas.php:536 includes/schemas.php:1398
544
- msgid "Address"
545
  msgstr ""
546
 
547
- #: includes/schemas.php:544
548
- msgid "Performer"
549
  msgstr ""
550
 
551
- #: includes/schemas.php:553 includes/schemas.php:1159 includes/schemas.php:1458
552
- msgid "Offer price"
 
 
 
 
553
  msgstr ""
554
 
555
- #: includes/schemas.php:554 includes/schemas.php:1160 includes/schemas.php:1459
556
- msgid "Fill \"0.0\" to show the free price"
 
557
  msgstr ""
558
 
559
- #: includes/schemas.php:562 includes/schemas.php:1168 includes/schemas.php:1467
560
- msgid "Currency"
 
561
  msgstr ""
562
 
563
- #: includes/schemas.php:570 includes/schemas.php:1196
564
- msgid "Offer URL"
 
565
  msgstr ""
566
 
567
- #: includes/schemas.php:579
568
- msgid "Offer valid from"
569
  msgstr ""
570
 
571
- #: includes/schemas.php:587 includes/schemas.php:1176
572
- msgid "Availability"
573
  msgstr ""
574
 
575
- #: includes/schemas.php:608
576
- msgid "Game"
577
  msgstr ""
578
 
579
- #: includes/schemas.php:612
580
- msgid "Game Title"
581
  msgstr ""
582
 
583
- #: includes/schemas.php:618
584
- msgid "Game Description"
585
  msgstr ""
586
 
587
- #: includes/schemas.php:624
588
- msgid "Game Image"
589
  msgstr ""
590
 
591
- #: includes/schemas.php:652
592
- msgid "Game Author"
593
  msgstr ""
594
 
595
- #: includes/schemas.php:659
596
- msgid "Hotel"
597
  msgstr ""
598
 
599
- #: includes/schemas.php:663
600
- msgid "Hotel Name"
601
  msgstr ""
602
 
603
- #: includes/schemas.php:669
604
- msgid "Hotel Description"
605
  msgstr ""
606
 
607
- #: includes/schemas.php:675
608
- msgid "Hotel Image"
609
  msgstr ""
610
 
611
- #: includes/schemas.php:703 includes/schemas.php:776 includes/schemas.php:1392
612
- #: includes/schemas.php:1540
613
- msgid "Price range"
 
 
614
  msgstr ""
615
 
616
- #: includes/schemas.php:709 includes/schemas.php:782
617
- msgid "Payment accepted"
618
  msgstr ""
619
 
620
- #: includes/schemas.php:715 includes/schemas.php:788
621
- msgid "Currencies accepted"
622
  msgstr ""
623
 
624
- #: includes/schemas.php:721
625
- msgid "Hotel Address"
626
  msgstr ""
627
 
628
- #: includes/schemas.php:726
629
- msgid "Hotel Telephone"
630
  msgstr ""
631
 
632
- #: includes/schemas.php:732
633
- msgid "LocalBusiness"
634
  msgstr ""
635
 
636
- #: includes/schemas.php:736
637
- msgid "Business Name"
 
 
 
 
638
  msgstr ""
639
 
640
- #: includes/schemas.php:742
641
- msgid "Business Description"
642
  msgstr ""
643
 
644
- #: includes/schemas.php:748
645
- msgid "Business Image"
646
  msgstr ""
647
 
648
- #: includes/schemas.php:794
649
- msgid "Business Address"
650
  msgstr ""
651
 
652
- #: includes/schemas.php:799
653
- msgid "Business Telephone"
654
  msgstr ""
655
 
656
- #: includes/schemas.php:805
657
- msgid "Movie"
 
 
 
658
  msgstr ""
659
 
660
- #: includes/schemas.php:809
661
- msgid "Movie title"
 
 
 
662
  msgstr ""
663
 
664
- #: includes/schemas.php:815
665
- msgid "Movie description"
 
 
 
666
  msgstr ""
667
 
668
- #: includes/schemas.php:821
669
- msgid "Movie Image"
670
  msgstr ""
671
 
672
- #: includes/schemas.php:855
673
- msgid "Country"
 
 
 
 
674
  msgstr ""
675
 
676
- #: includes/schemas.php:861
677
- msgid "Duration"
 
 
 
 
678
  msgstr ""
679
 
680
- #: includes/schemas.php:898
681
- msgid "MusicPlaylist"
682
  msgstr ""
683
 
684
- #: includes/schemas.php:902 includes/schemas.php:1418 includes/schemas.php:1561
685
- msgid "Name"
686
  msgstr ""
687
 
688
- #: includes/schemas.php:936
689
- msgid "Number of tracks"
690
  msgstr ""
691
 
692
- #: includes/schemas.php:957
693
- msgid "MusicRecording"
694
  msgstr ""
695
 
696
- #: includes/schemas.php:961
697
- msgid "Track name"
698
  msgstr ""
699
 
700
- #: includes/schemas.php:1001
701
- msgid "Track Duration"
702
  msgstr ""
703
 
704
- #: includes/schemas.php:1007
705
- msgid "Album name"
706
  msgstr ""
707
 
708
- #: includes/schemas.php:1013
709
- msgid "Playlist name"
710
  msgstr ""
711
 
712
- #: includes/schemas.php:1019
713
- msgid "International Standard Recording Code"
714
  msgstr ""
715
 
716
- #: includes/schemas.php:1025
717
- msgid "Recording of"
 
 
 
718
  msgstr ""
719
 
720
- #: includes/schemas.php:1046
721
- msgid "Organization"
 
722
  msgstr ""
723
 
724
- #: includes/schemas.php:1050
725
- msgid "Organization Name"
 
726
  msgstr ""
727
 
728
- #: includes/schemas.php:1056
729
- msgid "Organization Description"
 
 
730
  msgstr ""
731
 
732
- #: includes/schemas.php:1062
733
- msgid "Organization Image"
 
734
  msgstr ""
735
 
736
- #: includes/schemas.php:1091
737
- msgid "Product"
 
738
  msgstr ""
739
 
740
- #: includes/schemas.php:1095
741
- msgid "Product Name"
 
742
  msgstr ""
743
 
744
- #: includes/schemas.php:1101
745
- msgid "Product Description"
746
  msgstr ""
747
 
748
- #: includes/schemas.php:1107
749
- msgid "Product Image"
 
750
  msgstr ""
751
 
752
- #: includes/schemas.php:1113
753
- msgid "Brand"
754
  msgstr ""
755
 
756
- #: includes/schemas.php:1119
757
- msgid "SKU"
758
  msgstr ""
759
 
760
- #: includes/schemas.php:1125
761
- msgid "MPN"
762
  msgstr ""
763
 
764
- #: includes/schemas.php:1131
765
- msgid "GTIN-8"
 
766
  msgstr ""
767
 
768
- #: includes/schemas.php:1205
769
- msgid "Valid until"
770
  msgstr ""
771
 
772
- #: includes/schemas.php:1214
773
- msgid "Recipe"
774
  msgstr ""
775
 
776
- #: includes/schemas.php:1218
777
- msgid "Recipe Name"
 
778
  msgstr ""
779
 
780
- #: includes/schemas.php:1224
781
- msgid "Recipe Author"
782
  msgstr ""
783
 
784
- #: includes/schemas.php:1230
785
- msgid "Recipe Description"
 
 
 
786
  msgstr ""
787
 
788
- #: includes/schemas.php:1236
789
- msgid "Recipe Image"
 
 
 
790
  msgstr ""
791
 
792
- #: includes/schemas.php:1242
793
- msgid "Preperation time"
794
  msgstr ""
795
 
796
- #: includes/schemas.php:1245 includes/schemas.php:1252
797
- #: includes/schemas.php:1259
798
- msgid "Format: 1H30M. H - Hours, M - Minutes"
799
  msgstr ""
800
 
801
- #: includes/schemas.php:1249
802
- msgid "Cook Time"
 
 
803
  msgstr ""
804
 
805
- #: includes/schemas.php:1256
806
- msgid "Total Time"
 
 
807
  msgstr ""
808
 
809
- #: includes/schemas.php:1263
810
- msgid "Recipe Type"
811
  msgstr ""
812
 
813
- #: includes/schemas.php:1266
814
- msgid "Type of dish, for example \"appetizer\", \"entree\", or \"dessert\""
815
  msgstr ""
816
 
817
- #: includes/schemas.php:1270
818
- msgid "Recipe Yield"
819
  msgstr ""
820
 
821
- #: includes/schemas.php:1273
822
- msgid "Quantity produced by the recipe, for example \"4 servings\""
823
  msgstr ""
824
 
825
- #: includes/schemas.php:1277
826
- msgid "Recipe Ingredients"
827
  msgstr ""
828
 
829
- #: includes/schemas.php:1281
830
- msgid "Recipe ingredients, add one item per line"
831
  msgstr ""
832
 
833
- #: includes/schemas.php:1285
834
- msgid "Recipe Instructions"
835
  msgstr ""
836
 
837
- #: includes/schemas.php:1288
838
- msgid "Steps to take"
 
 
 
839
  msgstr ""
840
 
841
- #: includes/schemas.php:1292
842
- msgid "Recipe Cuisine"
843
  msgstr ""
844
 
845
- #: includes/schemas.php:1298
846
- msgid "Keywords"
847
  msgstr ""
848
 
849
- #: includes/schemas.php:1301
850
- msgid "Separate by commas"
851
  msgstr ""
852
 
853
- #: includes/schemas.php:1305
854
- msgid "Calories"
855
  msgstr ""
856
 
857
- #: includes/schemas.php:1308
858
- msgid "The number of calories"
859
  msgstr ""
860
 
861
- #: includes/schemas.php:1314
862
- msgid "Video name"
863
  msgstr ""
864
 
865
- #: includes/schemas.php:1322
866
- msgid "Video description"
867
  msgstr ""
868
 
869
- #: includes/schemas.php:1330
870
- msgid "Video thumbnail URL"
871
  msgstr ""
872
 
873
- #: includes/schemas.php:1338
874
- msgid "Video upload date"
875
  msgstr ""
876
 
877
- #: includes/schemas.php:1341
878
- msgid "Y-m-d format"
879
  msgstr ""
880
 
881
- #: includes/schemas.php:1348
882
- msgid "Restaurant"
883
  msgstr ""
884
 
885
- #: includes/schemas.php:1352
886
- msgid "Restaurant Name"
887
  msgstr ""
888
 
889
- #: includes/schemas.php:1358
890
- msgid "Restaurant Description"
891
  msgstr ""
892
 
893
- #: includes/schemas.php:1364
894
- msgid "Restaurant Image"
895
  msgstr ""
896
 
897
- #: includes/schemas.php:1403
898
- msgid "Cuisine"
899
  msgstr ""
900
 
901
- #: includes/schemas.php:1408
902
- msgid "Telephone"
903
  msgstr ""
904
 
905
- #: includes/schemas.php:1414
906
- msgid "SoftwareApplication"
907
  msgstr ""
908
 
909
- #: includes/schemas.php:1475
910
- msgid "Operating System"
911
  msgstr ""
912
 
913
- #: includes/schemas.php:1478
914
- msgid "For example, \"Windows 7\", \"OSX 10.6\", \"Android 1.6\""
915
  msgstr ""
916
 
917
- #: includes/schemas.php:1482
918
- msgid "Application Category"
919
  msgstr ""
920
 
921
- #: includes/schemas.php:1485
922
- msgid "For example, \"Game\", \"Multimedia\""
923
  msgstr ""
924
 
925
- #: includes/schemas.php:1496
926
- msgid "Store"
927
  msgstr ""
928
 
929
- #: includes/schemas.php:1500
930
- msgid "Store Name"
931
  msgstr ""
932
 
933
- #: includes/schemas.php:1506
934
- msgid "Store Description"
935
  msgstr ""
936
 
937
- #: includes/schemas.php:1512
938
- msgid "Store Image"
939
  msgstr ""
940
 
941
- #: includes/schemas.php:1546
942
- msgid "Store Address"
943
  msgstr ""
944
 
945
- #: includes/schemas.php:1551
946
- msgid "Store Telephone"
947
  msgstr ""
948
 
949
- #: includes/schemas.php:1557
950
- msgid "TVSeries"
951
  msgstr ""
952
 
953
- #: admin/review-options-meta-box.php:46
954
- msgid "Review Box"
955
  msgstr ""
956
 
957
- #: admin/review-options-meta-box.php:48 admin/class-wp-review-options.php:89
958
- msgid "Popup"
959
  msgstr ""
960
 
961
- #: admin/review-options-meta-box.php:51 admin/class-wp-review-options.php:95
962
- msgid "Notification Bar"
963
  msgstr ""
964
 
965
- #: admin/review-options-meta-box.php:58
966
- msgid "Review Type"
967
  msgstr ""
968
 
969
- #: admin/review-options-meta-box.php:63
970
- msgid "No review"
971
  msgstr ""
972
 
973
- #. translators: review ID.
974
- #: admin/review-options-meta-box.php:84
975
- #, php-format
976
- msgid "Review ID: %s"
977
  msgstr ""
978
 
979
- #: admin/review-options-meta-box.php:92
980
- msgid "Review Heading"
 
 
981
  msgstr ""
982
 
983
- #: admin/review-options-meta-box.php:104
984
- msgid "Reviewed Item Schema"
985
  msgstr ""
986
 
987
- #: admin/review-options-meta-box.php:133
988
- msgid "Rating Schema"
989
  msgstr ""
990
 
991
- #: admin/review-options-meta-box.php:138
992
- msgid "Author Review Rating"
993
  msgstr ""
994
 
995
- #: admin/review-options-meta-box.php:139
996
- msgid "Visitors Aggregate Rating (if enabled)"
997
  msgstr ""
998
 
999
- #: admin/review-options-meta-box.php:140
1000
- msgid "Comments Reviews Aggregate Rating (if enabled)"
1001
  msgstr ""
1002
 
1003
- #: admin/review-options-meta-box.php:148
1004
- msgid "Custom Author"
1005
  msgstr ""
1006
 
1007
- #: admin/review-options-meta-box.php:167
1008
- msgid "Review Author"
1009
  msgstr ""
1010
 
1011
- #: admin/review-options-meta-box.php:181
1012
- msgid "Display Schema Data in the Box (if available)"
 
1013
  msgstr ""
1014
 
1015
- #: admin/review-options-meta-box.php:201
1016
- msgid "Show Embed Code"
1017
  msgstr ""
1018
 
1019
- #: admin/review-options-meta-box.php:224 admin/review-options-meta-box.php:245
1020
- msgid "Enable"
1021
  msgstr ""
1022
 
1023
- #: admin/review-options-meta-box.php:231 admin/review-options-meta-box.php:252
1024
- #: admin/metaboxes.php:881
1025
- msgid "Use global options"
1026
  msgstr ""
1027
 
1028
- #: admin/review-options-meta-box.php:232 admin/review-options-meta-box.php:253
1029
- msgid "Use custom options"
1030
  msgstr ""
1031
 
1032
- #: admin/class-wp-review-options.php:38 admin/class-wp-review-options.php:39
1033
- #: admin/options/review.php:326
1034
- msgid "WP Review"
1035
  msgstr ""
1036
 
1037
- #: admin/class-wp-review-options.php:83
1038
- msgid "Global"
 
 
1039
  msgstr ""
1040
 
1041
- #: admin/class-wp-review-options.php:101
1042
- msgid "Yelp Reviews"
 
1043
  msgstr ""
1044
 
1045
- #: admin/class-wp-review-options.php:107
1046
- msgid "Google Reviews"
1047
  msgstr ""
1048
 
1049
- #: admin/class-wp-review-options.php:113
1050
- msgid "Facebook Reviews"
1051
  msgstr ""
1052
 
1053
- #: admin/class-wp-review-options.php:119
1054
- msgid "Role Manager"
 
 
1055
  msgstr ""
1056
 
1057
- #: admin/class-wp-review-options.php:125
1058
- msgid "Import Reviews"
1059
  msgstr ""
1060
 
1061
- #: admin/class-wp-review-options.php:131
1062
- msgid "Help"
 
 
1063
  msgstr ""
1064
 
1065
- #: admin/class-wp-review-options.php:155
1066
- msgid "Multisite Settings"
1067
  msgstr ""
1068
 
1069
- #: admin/class-wp-review-options.php:170
1070
- msgid "WP Review Settings"
 
1071
  msgstr ""
1072
 
1073
- #: admin/metaboxes.php:40
1074
- msgid "Review"
1075
  msgstr ""
1076
 
1077
- #: admin/metaboxes.php:50
1078
- msgid "Review Item"
1079
  msgstr ""
1080
 
1081
- #: admin/metaboxes.php:61
1082
- msgid "Review Links"
1083
  msgstr ""
1084
 
1085
- #: admin/metaboxes.php:71
1086
- msgid "Review Description"
1087
  msgstr ""
1088
 
1089
- #: admin/metaboxes.php:82
1090
- msgid "User Reviews"
1091
  msgstr ""
1092
 
1093
- #: admin/metaboxes.php:208
1094
- msgid "Add item"
1095
  msgstr ""
1096
 
1097
- #: admin/metaboxes.php:214
1098
- msgid "Total"
1099
  msgstr ""
1100
 
1101
- #: admin/metaboxes.php:233 admin/metaboxes.php:702 admin/metaboxes.php:714
1102
- #: admin/metaboxes.php:724 admin/options/review.php:782
1103
- #: admin/options/review.php:795 admin/options/review.php:805
1104
- #: admin/options/review.php:831 admin/options/review.php:841
1105
- msgid "Delete"
1106
  msgstr ""
1107
 
1108
- #: admin/metaboxes.php:239
1109
- msgid "Feature Name"
1110
  msgstr ""
1111
 
1112
- #: admin/metaboxes.php:250
1113
- msgid "Feature Color"
1114
  msgstr ""
1115
 
1116
- #: admin/metaboxes.php:264
1117
- msgid "Inactive Color"
1118
  msgstr ""
1119
 
1120
- #: admin/metaboxes.php:278
1121
- msgid "Feature Score"
1122
  msgstr ""
1123
 
1124
- #: admin/metaboxes.php:289 admin/options/multisite.php:267
1125
- msgid "Hide Features"
1126
  msgstr ""
1127
 
1128
- #: admin/metaboxes.php:307
1129
- msgid "Custom Location"
1130
  msgstr ""
1131
 
1132
- #: admin/metaboxes.php:326 admin/options/review.php:737
1133
- msgid "Review Location"
1134
  msgstr ""
1135
 
1136
- #: admin/metaboxes.php:331 admin/options/review.php:742
1137
- msgid "After Content"
1138
  msgstr ""
1139
 
1140
- #: admin/metaboxes.php:332 admin/options/review.php:743
1141
- msgid "Before Content"
1142
  msgstr ""
1143
 
1144
- #: admin/metaboxes.php:333 admin/options/review.php:744
1145
- msgid "Custom (use shortcode)"
1146
  msgstr ""
1147
 
1148
- #: admin/metaboxes.php:339
1149
- msgid "Copy &amp; paste this shortcode in the content."
1150
  msgstr ""
1151
 
1152
- #: admin/metaboxes.php:347
1153
- msgid "Custom Layout"
 
 
1154
  msgstr ""
1155
 
1156
- #: admin/metaboxes.php:399 admin/options/review.php:560
1157
- msgid "Review Color"
1158
  msgstr ""
1159
 
1160
- #: admin/metaboxes.php:409 admin/options/review.php:570
1161
- msgid "Inactive Review Color"
1162
  msgstr ""
1163
 
1164
- #: admin/metaboxes.php:419 admin/options/review.php:580
1165
- msgid "Font Color"
1166
  msgstr ""
1167
 
1168
- #: admin/metaboxes.php:429 admin/options/review.php:590
1169
- msgid "Heading Background Color"
1170
  msgstr ""
1171
 
1172
- #: admin/metaboxes.php:439 admin/options/review.php:600
1173
- msgid "Background Color"
1174
  msgstr ""
1175
 
1176
- #: admin/metaboxes.php:449 admin/options/review.php:610
1177
- msgid "Border Color"
 
1178
  msgstr ""
1179
 
1180
- #: admin/metaboxes.php:459 admin/options/review.php:634
1181
- msgid "Google Font"
 
 
1182
  msgstr ""
1183
 
1184
- #: admin/metaboxes.php:479
1185
- msgid "Custom Width"
1186
  msgstr ""
1187
 
1188
- #: admin/metaboxes.php:513
1189
- msgid "Summary"
1190
  msgstr ""
1191
 
1192
- #: admin/metaboxes.php:521
1193
- msgid "Description title"
 
 
1194
  msgstr ""
1195
 
1196
- #: admin/metaboxes.php:531
1197
- msgid "Description content"
1198
  msgstr ""
1199
 
1200
- #: admin/metaboxes.php:558
1201
- msgid "Pros"
1202
  msgstr ""
1203
 
1204
- #: admin/metaboxes.php:585
1205
- msgid "Cons"
 
 
1206
  msgstr ""
1207
 
1208
- #: admin/metaboxes.php:614
1209
- msgid "Hide Description, Pros/Cons & Total Rating"
1210
  msgstr ""
1211
 
1212
- #: admin/metaboxes.php:680 admin/options/hello-bar.php:41
1213
- msgid "Text"
1214
  msgstr ""
1215
 
1216
- #: admin/metaboxes.php:681
1217
- msgid "URL"
1218
  msgstr ""
1219
 
1220
- #: admin/metaboxes.php:731
1221
- msgid "Add another"
1222
  msgstr ""
1223
 
1224
- #: admin/metaboxes.php:760 admin/options/review.php:857
1225
- msgid "Disabled"
1226
  msgstr ""
1227
 
1228
- #: admin/metaboxes.php:767 admin/options/review.php:862
1229
- msgid "Visitor Rating Only"
1230
  msgstr ""
1231
 
1232
- #: admin/metaboxes.php:774 admin/options/review.php:867
1233
- msgid "Comment Rating Only"
1234
  msgstr ""
1235
 
1236
- #: admin/metaboxes.php:782 admin/options/review.php:873
1237
- msgid "Both"
1238
  msgstr ""
1239
 
1240
- #: admin/metaboxes.php:790
1241
- msgid ""
1242
- "If you are changing User Rating Type & post already have user ratings, "
1243
- "please edit or remove existing ratings."
1244
  msgstr ""
1245
 
1246
- #: admin/metaboxes.php:794
1247
- msgid "User Rating Type"
1248
  msgstr ""
1249
 
1250
- #: admin/metaboxes.php:825 admin/options/review.php:881
1251
- msgid "User can:"
1252
  msgstr ""
1253
 
1254
- #: admin/metaboxes.php:832 admin/options/review.php:887
1255
- msgid "Give Overall Rating"
1256
  msgstr ""
1257
 
1258
- #: admin/metaboxes.php:833 admin/options/review.php:888
1259
- msgid "Rate Each Feature"
1260
  msgstr ""
1261
 
1262
- #: admin/metaboxes.php:844
1263
- msgid "Hide Visitors Rating in Review Box"
1264
  msgstr ""
1265
 
1266
- #: admin/metaboxes.php:864
1267
- msgid "Product Price"
1268
  msgstr ""
1269
 
1270
- #: admin/metaboxes.php:874
1271
- msgid "Comment Feedback (helpful/unhelpful)"
1272
  msgstr ""
1273
 
1274
- #: admin/metaboxes.php:898 admin/options/review.php:507
1275
- msgid "Processing..."
1276
  msgstr ""
1277
 
1278
- #: admin/metaboxes.php:900 admin/options/review.php:508
1279
- msgid "Purge visitor ratings"
1280
  msgstr ""
1281
 
1282
- #: admin/metaboxes.php:901
1283
- msgid "Click to remove all visitor ratings of this post."
1284
  msgstr ""
1285
 
1286
- #: admin/metaboxes.php:1244 admin/admin.php:106 admin/options/hello-bar.php:173
1287
- msgid "Select Image"
1288
  msgstr ""
1289
 
1290
- #: admin/metaboxes.php:1247 admin/admin.php:108
1291
- msgid "Remove Image"
1292
  msgstr ""
1293
 
1294
- #: admin/class-wp-review-form-field.php:27
1295
- msgctxt "switch label"
1296
- msgid "Yes"
1297
  msgstr ""
1298
 
1299
- #: admin/class-wp-review-form-field.php:28
1300
- msgctxt "switch label"
1301
- msgid "No"
1302
  msgstr ""
1303
 
1304
- #: admin/class-wpr-review-notice.php:54
1305
- msgid ""
1306
- "Hey, we noticed you have created over 10 reviews from WP Review - that’s "
1307
- "awesome! Could you please do us a BIG favor and give it a 5-star rating on "
1308
- "WordPress to help us spread the word and boost our motivation?"
1309
  msgstr ""
1310
 
1311
- #: admin/class-wpr-review-notice.php:57
1312
- msgid "Ok, you deserve it"
1313
  msgstr ""
1314
 
1315
- #: admin/class-wpr-review-notice.php:61
1316
- msgid "Nope, maybe later"
1317
  msgstr ""
1318
 
1319
- #: admin/class-wpr-review-notice.php:65
1320
- msgid "I already did"
1321
  msgstr ""
1322
 
1323
- #. translators: import source.
1324
- #: admin/admin.php:41
1325
- #, php-format
1326
- msgid "Are you sure you want to import from %s?"
1327
  msgstr ""
1328
 
1329
- #: admin/admin.php:42
1330
- msgid "The server responded with an error. Try again."
1331
  msgstr ""
1332
 
1333
- #: admin/admin.php:43
1334
- msgid ""
1335
- "Are you sure you want to import options? All current options will be lost."
1336
  msgstr ""
1337
 
1338
- #: admin/admin.php:107
1339
- msgid "Insert Image"
1340
  msgstr ""
1341
 
1342
- #: admin/admin.php:110
1343
- msgid "Review box"
1344
  msgstr ""
1345
 
1346
- #: admin/admin.php:112
1347
- msgid "Visitor rating"
1348
  msgstr ""
1349
 
1350
- #: admin/admin.php:113
1351
- msgid "Review ID"
1352
  msgstr ""
1353
 
1354
- #: admin/admin.php:114
1355
- msgid "Leave empty to use current review ID"
1356
  msgstr ""
1357
 
1358
- #: admin/admin.php:115
1359
- msgid "Insert"
1360
  msgstr ""
1361
 
1362
- #: admin/admin.php:116
1363
- msgid "Cancel"
1364
  msgstr ""
1365
 
1366
- #: admin/admin.php:122
1367
- msgid "Are you sure you want to do this?"
1368
  msgstr ""
1369
 
1370
- #: admin/admin.php:123
1371
- msgid "Are you sure you want to import demo?"
1372
  msgstr ""
1373
 
1374
- #: admin/admin.php:124
1375
- msgid "Importing proccess finished!"
1376
  msgstr ""
1377
 
1378
- #: admin/admin.php:163 admin/admin.php:242
1379
- msgid "Attention Seekers"
1380
  msgstr ""
1381
 
1382
- #: admin/admin.php:164 admin/admin.php:243
1383
- msgid "bounce"
1384
  msgstr ""
1385
 
1386
- #: admin/admin.php:165 admin/admin.php:244
1387
- msgid "flash"
1388
  msgstr ""
1389
 
1390
- #: admin/admin.php:166 admin/admin.php:245
1391
- msgid "pulse"
 
 
1392
  msgstr ""
1393
 
1394
- #: admin/admin.php:167 admin/admin.php:246
1395
- msgid "rubberBand"
1396
  msgstr ""
1397
 
1398
- #: admin/admin.php:168 admin/admin.php:247
1399
- msgid "shake"
 
 
1400
  msgstr ""
1401
 
1402
- #: admin/admin.php:169 admin/admin.php:248
1403
- msgid "swing"
1404
  msgstr ""
1405
 
1406
- #: admin/admin.php:170 admin/admin.php:249
1407
- msgid "tada"
 
 
1408
  msgstr ""
1409
 
1410
- #: admin/admin.php:171 admin/admin.php:250
1411
- msgid "wobble"
1412
  msgstr ""
1413
 
1414
- #: admin/admin.php:172 admin/admin.php:251
1415
- msgid "jello"
1416
  msgstr ""
1417
 
1418
- #: admin/admin.php:174
1419
- msgid "Bouncing Entrances"
1420
  msgstr ""
1421
 
1422
- #: admin/admin.php:175
1423
- msgid "bounceIn"
1424
  msgstr ""
1425
 
1426
- #: admin/admin.php:176
1427
- msgid "bounceInDown"
1428
  msgstr ""
1429
 
1430
- #: admin/admin.php:177
1431
- msgid "bounceInLeft"
1432
  msgstr ""
1433
 
1434
- #: admin/admin.php:178
1435
- msgid "bounceInRight"
1436
  msgstr ""
1437
 
1438
- #: admin/admin.php:179
1439
- msgid "bounceInUp"
1440
  msgstr ""
1441
 
1442
- #: admin/admin.php:181
1443
- msgid "Fading Entrances"
1444
  msgstr ""
1445
 
1446
- #: admin/admin.php:182
1447
- msgid "fadeIn"
1448
  msgstr ""
1449
 
1450
- #: admin/admin.php:183
1451
- msgid "fadeInDown"
1452
  msgstr ""
1453
 
1454
- #: admin/admin.php:184
1455
- msgid "fadeInDownBig"
 
 
1456
  msgstr ""
1457
 
1458
- #: admin/admin.php:185
1459
- msgid "fadeInLeft"
1460
  msgstr ""
1461
 
1462
- #: admin/admin.php:186
1463
- msgid "fadeInLeftBig"
1464
  msgstr ""
1465
 
1466
- #: admin/admin.php:187
1467
- msgid "fadeInRight"
1468
  msgstr ""
1469
 
1470
- #: admin/admin.php:188
1471
- msgid "fadeInRightBig"
1472
  msgstr ""
1473
 
1474
- #: admin/admin.php:189
1475
- msgid "fadeInUp"
1476
  msgstr ""
1477
 
1478
- #: admin/admin.php:190
1479
- msgid "fadeInUpBig"
1480
  msgstr ""
1481
 
1482
- #: admin/admin.php:192 admin/admin.php:271
1483
- msgid "Flippers"
1484
  msgstr ""
1485
 
1486
- #: admin/admin.php:193 admin/admin.php:272
1487
- msgid "flip"
 
 
1488
  msgstr ""
1489
 
1490
- #: admin/admin.php:194 admin/admin.php:273
1491
- msgid "flipInX"
1492
  msgstr ""
1493
 
1494
- #: admin/admin.php:195 admin/admin.php:274
1495
- msgid "flipInY"
1496
  msgstr ""
1497
 
1498
- #: admin/admin.php:196 admin/admin.php:275
1499
- msgid "flipOutX"
1500
  msgstr ""
1501
 
1502
- #: admin/admin.php:197 admin/admin.php:276
1503
- msgid "flipOutY"
 
 
1504
  msgstr ""
1505
 
1506
- #: admin/admin.php:199 admin/admin.php:278
1507
- msgid "Lightspeed"
1508
  msgstr ""
1509
 
1510
- #: admin/admin.php:200 admin/admin.php:279
1511
- msgid "lightSpeedIn"
1512
  msgstr ""
1513
 
1514
- #: admin/admin.php:201 admin/admin.php:280
1515
- msgid "lightSpeedOut"
1516
  msgstr ""
1517
 
1518
- #: admin/admin.php:203
1519
- msgid "Rotating Entrances"
1520
  msgstr ""
1521
 
1522
- #: admin/admin.php:204
1523
- msgid "rotateIn"
1524
  msgstr ""
1525
 
1526
- #: admin/admin.php:205
1527
- msgid "rotateInDownLeft"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1528
  msgstr ""
1529
 
1530
- #: admin/admin.php:206
1531
- msgid "rotateInDownRight"
 
 
 
1532
  msgstr ""
1533
 
1534
- #: admin/admin.php:207
1535
- msgid "rotateInUpLeft"
1536
- msgstr ""
 
 
 
 
1537
 
1538
- #: admin/admin.php:208
1539
- msgid "rotateInUpRight"
1540
  msgstr ""
1541
 
1542
- #: admin/admin.php:210
1543
- msgid "Sliding Entrances"
1544
  msgstr ""
1545
 
1546
- #: admin/admin.php:211
1547
- msgid "slideInUp"
1548
  msgstr ""
1549
 
1550
- #: admin/admin.php:212
1551
- msgid "slideInDown"
1552
  msgstr ""
1553
 
1554
- #: admin/admin.php:213
1555
- msgid "slideInLeft"
 
 
1556
  msgstr ""
1557
 
1558
- #: admin/admin.php:214
1559
- msgid "slideInRight"
1560
  msgstr ""
1561
 
1562
- #: admin/admin.php:216
1563
- msgid "Zoom Entrances"
1564
  msgstr ""
1565
 
1566
- #: admin/admin.php:217
1567
- msgid "zoomIn"
1568
  msgstr ""
1569
 
1570
- #: admin/admin.php:218
1571
- msgid "zoomInDown"
1572
  msgstr ""
1573
 
1574
- #: admin/admin.php:219
1575
- msgid "zoomInLeft"
1576
  msgstr ""
1577
 
1578
- #: admin/admin.php:220
1579
- msgid "zoomInRight"
1580
  msgstr ""
1581
 
1582
- #: admin/admin.php:221
1583
- msgid "zoomInUp"
1584
  msgstr ""
1585
 
1586
- #: admin/admin.php:223 admin/admin.php:302
1587
- msgid "Specials"
1588
  msgstr ""
1589
 
1590
- #: admin/admin.php:224 admin/admin.php:303
1591
- msgid "hinge"
1592
  msgstr ""
1593
 
1594
- #: admin/admin.php:225 admin/admin.php:304
1595
- msgid "jackInTheBox"
1596
  msgstr ""
1597
 
1598
- #: admin/admin.php:226 admin/admin.php:305
1599
- msgid "rollIn"
1600
  msgstr ""
1601
 
1602
- #: admin/admin.php:227 admin/admin.php:306
1603
- msgid "rollOut"
1604
  msgstr ""
1605
 
1606
- #: admin/admin.php:253
1607
- msgid "Bouncing Exits"
 
 
 
1608
  msgstr ""
1609
 
1610
- #: admin/admin.php:254
1611
- msgid "bounceOut"
 
 
 
1612
  msgstr ""
1613
 
1614
- #: admin/admin.php:255
1615
- msgid "bounceOutDown"
 
 
 
1616
  msgstr ""
1617
 
1618
- #: admin/admin.php:256
1619
- msgid "bounceOutLeft"
 
 
 
1620
  msgstr ""
1621
 
1622
- #: admin/admin.php:257
1623
- msgid "bounceOutRight"
 
 
 
1624
  msgstr ""
1625
 
1626
- #: admin/admin.php:258
1627
- msgid "bounceOutUp"
 
 
 
1628
  msgstr ""
1629
 
1630
- #: admin/admin.php:260
1631
- msgid "Fading Exits"
 
 
 
1632
  msgstr ""
1633
 
1634
- #: admin/admin.php:261
1635
- msgid "fadeOut"
 
 
 
1636
  msgstr ""
1637
 
1638
- #: admin/admin.php:262
1639
- msgid "fadeOutDown"
 
 
 
1640
  msgstr ""
1641
 
1642
- #: admin/admin.php:263
1643
- msgid "fadeOutDownBig"
 
 
 
1644
  msgstr ""
1645
 
1646
- #: admin/admin.php:264
1647
- msgid "fadeOutLeft"
1648
  msgstr ""
1649
 
1650
- #: admin/admin.php:265
1651
- msgid "fadeOutLeftBig"
1652
  msgstr ""
1653
 
1654
- #: admin/admin.php:266
1655
- msgid "fadeOutRight"
 
 
 
 
1656
  msgstr ""
1657
 
1658
- #: admin/admin.php:267
1659
- msgid "fadeOutRightBig"
1660
  msgstr ""
1661
 
1662
- #: admin/admin.php:268
1663
- msgid "fadeOutUp"
 
1664
  msgstr ""
1665
 
1666
- #: admin/admin.php:269
1667
- msgid "fadeOutUpBig"
 
1668
  msgstr ""
1669
 
1670
- #: admin/admin.php:282
1671
- msgid "Rotating Exits"
1672
  msgstr ""
1673
 
1674
- #: admin/admin.php:283
1675
- msgid "rotateOut"
1676
  msgstr ""
1677
 
1678
- #: admin/admin.php:284
1679
- msgid "rotateOutDownLeft"
1680
  msgstr ""
1681
 
1682
- #: admin/admin.php:285
1683
- msgid "rotateOutDownRight"
1684
  msgstr ""
1685
 
1686
- #: admin/admin.php:286
1687
- msgid "rotateOutUpLeft"
 
 
1688
  msgstr ""
1689
 
1690
- #: admin/admin.php:287
1691
- msgid "rotateOutUpRight"
1692
  msgstr ""
1693
 
1694
- #: admin/admin.php:289
1695
- msgid "Sliding Exits"
1696
  msgstr ""
1697
 
1698
- #: admin/admin.php:290
1699
- msgid "slideOutUp"
1700
  msgstr ""
1701
 
1702
- #: admin/admin.php:291
1703
- msgid "slideOutDown"
1704
  msgstr ""
1705
 
1706
- #: admin/admin.php:292
1707
- msgid "slideOutLeft"
1708
  msgstr ""
1709
 
1710
- #: admin/admin.php:293
1711
- msgid "slideOutRight"
1712
  msgstr ""
1713
 
1714
- #: admin/admin.php:295
1715
- msgid "Zoom Exits"
1716
  msgstr ""
1717
 
1718
- #: admin/admin.php:296
1719
- msgid "zoomOut"
1720
  msgstr ""
1721
 
1722
- #: admin/admin.php:297
1723
- msgid "zoomOutDown"
1724
  msgstr ""
1725
 
1726
- #: admin/admin.php:298
1727
- msgid "zoomOutLeft"
1728
  msgstr ""
1729
 
1730
- #: admin/admin.php:299
1731
- msgid "zoomOutRight"
1732
  msgstr ""
1733
 
1734
- #: admin/admin.php:300
1735
- msgid "zoomOutUp"
 
 
 
 
 
 
1736
  msgstr ""
1737
 
1738
- #: admin/admin.php:323
1739
- msgid "No Animation"
 
 
 
 
 
 
1740
  msgstr ""
1741
 
1742
- #: admin/admin.php:372
1743
- msgid "Settings"
 
 
 
 
 
 
1744
  msgstr ""
1745
 
1746
- #: admin/admin.php:466
1747
- msgid "Pro feature"
 
 
 
 
 
 
1748
  msgstr ""
1749
 
1750
- #: admin/admin.php:477 admin/admin.php:482
1751
- msgid "Buy WP Review Pro"
 
 
 
 
 
 
1752
  msgstr ""
1753
 
1754
- #: admin/admin.php:480
1755
- msgid "Like WP Review Plugin? You will LOVE WP Review Pro!"
1756
  msgstr ""
1757
 
1758
- #: admin/admin.php:481
1759
- msgid ""
1760
- "15 new review box templates, 15 new Schema types, commment reviews, user can "
1761
- "rate each feature, review popups, review notification bars, custom width, 9 "
1762
- "new custom widgets, Google reviews, Facebook reviews, Yelp reviews and much "
1763
- "more..."
1764
  msgstr ""
1765
 
1766
- #: admin/demo-importer.php:32 admin/demo-importer.php:37
1767
- msgid "Processing, please wait&hellip;"
1768
  msgstr ""
1769
 
1770
- #: admin/demo-importer.php:38
1771
- msgid "Ok"
1772
  msgstr ""
1773
 
1774
- #: box-templates/default.php:117 box-templates/aqua.php:111
1775
- msgid "User Review"
1776
  msgstr ""
1777
 
1778
- #: box-templates/default.php:126 box-templates/aqua.php:120
1779
- msgid "vote"
1780
- msgid_plural "votes"
1781
- msgstr[0] ""
1782
- msgstr[1] ""
1783
 
1784
- #: box-templates/aqua.php:64
1785
- msgid "Overall"
1786
  msgstr ""
1787
 
1788
- #: includes/widgets/class-wp-review-tab-widget.php:28
1789
- msgid "Display Reviews in tabbed format."
1790
  msgstr ""
1791
 
1792
- #: includes/widgets/class-wp-review-tab-widget.php:34
1793
- msgid "WP Review Widget"
1794
  msgstr ""
1795
 
1796
- #: includes/widgets/class-wp-review-tab-widget.php:87
1797
- #: includes/widgets/class-wp-review-tab-widget.php:123
1798
- #: includes/widgets/class-wp-review-tab-widget.php:239
1799
- #: includes/widgets/class-wp-review-tab-widget.php:263
1800
- #: includes/widgets/class-wp-review-tab-widget.php:345
1801
- msgid "Top Rated"
1802
  msgstr ""
1803
 
1804
- #: includes/widgets/class-wp-review-tab-widget.php:88
1805
- #: includes/widgets/class-wp-review-tab-widget.php:243
1806
- #: includes/widgets/class-wp-review-tab-widget.php:267
1807
- #: includes/widgets/class-wp-review-tab-widget.php:346
1808
- msgid "Recent"
1809
  msgstr ""
1810
 
1811
- #: includes/widgets/class-wp-review-tab-widget.php:89
1812
- #: includes/widgets/class-wp-review-tab-widget.php:131
1813
- #: includes/widgets/class-wp-review-tab-widget.php:247
1814
- #: includes/widgets/class-wp-review-tab-widget.php:271
1815
- #: includes/widgets/class-wp-review-tab-widget.php:347
1816
- msgid "Most Voted"
1817
  msgstr ""
1818
 
1819
- #: includes/widgets/class-wp-review-tab-widget.php:90
1820
- #: includes/widgets/class-wp-review-tab-widget.php:348
1821
- msgid "Editor's choice"
1822
  msgstr ""
1823
 
1824
- #: includes/widgets/class-wp-review-tab-widget.php:113
1825
- #: includes/widgets/class-wp-review-tab-widget.php:158
1826
- msgid "Comments"
1827
  msgstr ""
1828
 
1829
- #: includes/widgets/class-wp-review-tab-widget.php:118
1830
- msgid "Select Tabs"
1831
  msgstr ""
1832
 
1833
- #: includes/widgets/class-wp-review-tab-widget.php:127
1834
- msgid "Recent Reviews"
1835
  msgstr ""
1836
 
1837
- #: includes/widgets/class-wp-review-tab-widget.php:135
1838
- #: includes/widgets/class-wp-review-tab-widget.php:255
1839
- #: includes/widgets/class-wp-review-tab-widget.php:279
1840
- msgid "Custom"
1841
  msgstr ""
1842
 
1843
- #: includes/widgets/class-wp-review-tab-widget.php:146
1844
- msgid "Restrict recent reviews to current post"
 
1845
  msgstr ""
1846
 
1847
- #: includes/widgets/class-wp-review-tab-widget.php:152
1848
- msgid "Top Rated Posts By:"
1849
  msgstr ""
1850
 
1851
- #: includes/widgets/class-wp-review-tab-widget.php:157
1852
- msgid "Visitors"
1853
  msgstr ""
1854
 
1855
- #: includes/widgets/class-wp-review-tab-widget.php:164
1856
- msgid "Review type:"
1857
  msgstr ""
1858
 
1859
- #: includes/widgets/class-wp-review-tab-widget.php:185
1860
- msgid "Allow pagination"
1861
  msgstr ""
1862
 
1863
- #: includes/widgets/class-wp-review-tab-widget.php:190
1864
- msgid "Number of reviews to show:"
1865
  msgstr ""
1866
 
1867
- #: includes/widgets/class-wp-review-tab-widget.php:206
1868
- msgid "Thumbnail size:"
1869
  msgstr ""
1870
 
1871
- #: includes/widgets/class-wp-review-tab-widget.php:208
1872
- msgid "Small"
 
 
1873
  msgstr ""
1874
 
1875
- #: includes/widgets/class-wp-review-tab-widget.php:209
1876
- msgid "Large"
1877
  msgstr ""
1878
 
1879
- #: includes/widgets/class-wp-review-tab-widget.php:214
1880
- msgid "Extra information"
1881
  msgstr ""
1882
 
1883
- #: includes/widgets/class-wp-review-tab-widget.php:217
1884
- msgid "Post date"
1885
  msgstr ""
1886
 
1887
- #: includes/widgets/class-wp-review-tab-widget.php:218
1888
- msgid "Number of reviews"
1889
  msgstr ""
1890
 
1891
- #: includes/widgets/class-wp-review-tab-widget.php:223
1892
- msgid "Reviews on Custom tab:"
1893
  msgstr ""
1894
 
1895
- #: includes/widgets/class-wp-review-tab-widget.php:233
1896
- msgid "Tab Titles"
1897
  msgstr ""
1898
 
1899
- #: includes/widgets/class-wp-review-tab-widget.php:233
1900
- msgid "Tab Order"
1901
  msgstr ""
1902
 
1903
- #: includes/widgets/class-wp-review-tab-widget.php:251
1904
- #: includes/widgets/class-wp-review-tab-widget.php:275
1905
- msgid "Recent Ratings"
1906
  msgstr ""
1907
 
1908
- #: includes/widgets/class-wp-review-tab-widget.php:549
1909
- msgid "&laquo; Previous"
1910
  msgstr ""
1911
 
1912
- #: includes/widgets/class-wp-review-tab-widget.php:552
1913
- msgid "Next &raquo;"
1914
  msgstr ""
1915
 
1916
- #: admin/options/multisite.php:12
1917
- msgid "Site: "
1918
  msgstr ""
1919
 
1920
- #: admin/options/multisite.php:17
1921
- msgid "Select site"
1922
  msgstr ""
1923
 
1924
- #: admin/options/multisite.php:43 admin/options/review.php:187
1925
- msgid "General Settings"
1926
  msgstr ""
1927
 
1928
- #: admin/options/multisite.php:46
1929
- msgid "Hide global options panel"
 
1930
  msgstr ""
1931
 
1932
- #: admin/options/multisite.php:66
1933
- msgid "Hide Popup"
 
1934
  msgstr ""
1935
 
1936
- #: admin/options/multisite.php:85 admin/options/multisite.php:248
1937
- msgid "Hide Notification Bar"
1938
  msgstr ""
1939
 
1940
- #: admin/options/multisite.php:104
1941
- msgid "Hide Yelp Reviews"
1942
  msgstr ""
1943
 
1944
- #: admin/options/multisite.php:123
1945
- msgid "Hide Facebook Reviews"
1946
  msgstr ""
1947
 
1948
- #: admin/options/multisite.php:142
1949
- msgid "Hide Google Reviews"
1950
  msgstr ""
1951
 
1952
- #: admin/options/multisite.php:161
1953
- msgid "Hide Role Manager"
1954
  msgstr ""
1955
 
1956
- #: admin/options/multisite.php:179
1957
- msgid "Hide Import"
1958
  msgstr ""
1959
 
1960
- #: admin/options/multisite.php:197
1961
- msgid "Post Settings"
1962
  msgstr ""
1963
 
1964
- #: admin/options/multisite.php:207
1965
- msgid "Hide reviews in single editor"
1966
  msgstr ""
1967
 
1968
- #: admin/options/multisite.php:229
1969
- msgid "Hide Popup Box"
1970
  msgstr ""
1971
 
1972
- #: admin/options/multisite.php:286
1973
- msgid "Hide Review Links"
1974
  msgstr ""
1975
 
1976
- #: admin/options/multisite.php:304
1977
- msgid "Hide Review Description, Pros/Cons & Total Rating"
1978
  msgstr ""
1979
 
1980
- #: admin/options/multisite.php:323
1981
- msgid "Hide User Reviews"
1982
  msgstr ""
1983
 
1984
- #: admin/options/import.php:12
1985
- msgid "Demo data import"
1986
  msgstr ""
1987
 
1988
- #: admin/options/import.php:16 admin/options/import.php:38
1989
- #: admin/options/import.php:65
1990
- msgid "Import"
1991
  msgstr ""
1992
 
1993
- #: admin/options/import.php:17
1994
- msgid ""
1995
- "Click above button to import demo data, imported data will be saved as new "
1996
- "draft posts."
1997
  msgstr ""
1998
 
1999
- #: admin/options/import.php:23
2000
- msgid "Select plugin"
2001
  msgstr ""
2002
 
2003
- #: admin/options/import.php:45
2004
- msgid "Warning"
2005
  msgstr ""
2006
 
2007
- #: admin/options/import.php:46
2008
- msgid ""
2009
- "This action is IRREVERSIBLE! Take a backup of your database before "
2010
- "proceeding."
2011
  msgstr ""
2012
 
2013
- #: admin/options/import.php:57
2014
- msgid "Import settings"
2015
  msgstr ""
2016
 
2017
- #: admin/options/import.php:61
2018
- msgid "Import code"
2019
  msgstr ""
2020
 
2021
- #: admin/options/import.php:63
2022
- msgid ""
2023
- "Insert your backup code below and hit Import to restore your plugin options "
2024
- "from a backup."
2025
  msgstr ""
2026
 
2027
- #: admin/options/import.php:72
2028
- msgid "Export settings"
2029
  msgstr ""
2030
 
2031
- #: admin/options/import.php:76
2032
- msgid "Show export code"
 
2033
  msgstr ""
2034
 
2035
- #: admin/options/review.php:165
2036
- msgid "Star"
2037
  msgstr ""
2038
 
2039
- #: admin/options/review.php:166
2040
- msgid "Point"
2041
  msgstr ""
2042
 
2043
- #: admin/options/review.php:167
2044
- msgid "Percentage"
2045
  msgstr ""
2046
 
2047
- #: admin/options/review.php:168
2048
- msgid "Circle"
2049
  msgstr ""
2050
 
2051
- #: admin/options/review.php:169
2052
- msgid "Thumbs"
2053
  msgstr ""
2054
 
2055
- #: admin/options/review.php:177
2056
- msgid "General"
2057
  msgstr ""
2058
 
2059
- #: admin/options/review.php:178 admin/options/review.php:516
2060
- #: admin/options/hello-bar.php:12
2061
- msgid "Styling"
2062
  msgstr ""
2063
 
2064
- #: admin/options/review.php:179 admin/options/review.php:702
2065
- msgid "Defaults"
 
 
 
 
2066
  msgstr ""
2067
 
2068
- #: admin/options/review.php:180 admin/options/review.php:895
2069
- msgid "Embed"
2070
  msgstr ""
2071
 
2072
- #: admin/options/review.php:182
2073
- msgid "Migrate Ratings"
2074
  msgstr ""
2075
 
2076
- #: admin/options/review.php:191
2077
- msgid ""
2078
- "There is a filter set for the review location that may modify the options "
2079
- "below."
2080
  msgstr ""
2081
 
2082
- #: admin/options/review.php:198
2083
- msgid "The current theme provides default settings for the plugin."
2084
  msgstr ""
2085
 
2086
- #: admin/options/review.php:200
2087
- msgid "Set to theme defaults"
2088
  msgstr ""
2089
 
2090
- #: admin/options/review.php:207
2091
- msgid "Restrict rating to registered users only"
2092
  msgstr ""
2093
 
2094
- #: admin/options/review.php:225
2095
- msgid "Add total rating to thumbnails"
2096
  msgstr ""
2097
 
2098
- #: admin/options/review.php:244
2099
- msgid "Enable User rating in old posts"
2100
  msgstr ""
2101
 
2102
- #: admin/options/review.php:264
2103
- msgid "Replace WooCommerce rating"
2104
  msgstr ""
2105
 
2106
- #: admin/options/review.php:284
2107
- msgid "Disable Map Script in the Backend"
2108
  msgstr ""
2109
 
2110
- #: admin/options/review.php:300
2111
- msgid ""
2112
- "If map script is conflicting with other plugin in the single post editor, "
2113
- "please enable this option."
2114
  msgstr ""
2115
 
2116
- #: admin/options/review.php:305
2117
- msgid "Comments template"
2118
  msgstr ""
2119
 
2120
- #: admin/options/review.php:315
2121
- msgid "Theme"
2122
  msgstr ""
2123
 
2124
- #: admin/options/review.php:319
2125
- msgid "Use theme comments template. Might need customization of comments.php"
2126
  msgstr ""
2127
 
2128
- #: admin/options/review.php:330
2129
- msgid ""
2130
- "Use WP Review comments template. Better chances for out of the box "
2131
- "integration."
2132
  msgstr ""
2133
 
2134
- #: admin/options/review.php:338
2135
- msgid "Comment form integration"
2136
  msgstr ""
2137
 
2138
- #: admin/options/review.php:348
2139
- msgid "Replace"
2140
  msgstr ""
2141
 
2142
- #: admin/options/review.php:352
2143
- msgid "Replace form fields."
2144
  msgstr ""
2145
 
2146
- #: admin/options/review.php:359
2147
- msgid "Extend"
2148
  msgstr ""
2149
 
2150
- #: admin/options/review.php:363
2151
- msgid "Add new fields without modifying the default fields."
2152
  msgstr ""
2153
 
2154
- #: admin/options/review.php:371
2155
- msgid "Require a rating when commenting"
2156
  msgstr ""
2157
 
2158
- #: admin/options/review.php:390
2159
- msgid "Allow comment feedback (helpful/unhelpful)"
2160
  msgstr ""
2161
 
2162
- #: admin/options/review.php:409
2163
- msgid "Record User Ratings"
2164
  msgstr ""
2165
 
2166
- #: admin/options/review.php:416
2167
- msgid "Based on IP address"
2168
  msgstr ""
2169
 
2170
- #: admin/options/review.php:417
2171
- msgid "Based on browser cookie"
2172
  msgstr ""
2173
 
2174
- #: admin/options/review.php:445
2175
- msgid "Allow multiple reviews per account"
2176
  msgstr ""
2177
 
2178
- #: admin/options/review.php:463
2179
- msgid "Include Pros/Cons in comment reviews"
2180
  msgstr ""
2181
 
2182
- #: admin/options/review.php:482
2183
- msgid "Approve Comment Reviews without Moderation"
2184
  msgstr ""
2185
 
2186
- #: admin/options/review.php:509
2187
- msgid "Click to remove all visitor ratings of all posts."
2188
  msgstr ""
2189
 
2190
- #: admin/options/review.php:552
2191
- msgid ""
2192
- "There is a filter set for the review colors that may modify the options "
2193
- "below."
2194
  msgstr ""
2195
 
2196
- #: admin/options/review.php:622
2197
- msgid "Review Box Width"
2198
  msgstr ""
2199
 
2200
- #: admin/options/review.php:636
2201
- msgid ""
2202
- "Many templates use Google Font, select <code>No</code> to use default theme "
2203
- "font."
2204
  msgstr ""
2205
 
2206
- #: admin/options/review.php:656
2207
- msgid "Comment Rating Color"
2208
  msgstr ""
2209
 
2210
- #: admin/options/review.php:658
2211
- msgid "Use different color for ratings in comments"
2212
  msgstr ""
2213
 
2214
- #: admin/options/review.php:678
2215
- msgid "Rating icon"
2216
  msgstr ""
2217
 
2218
- #: admin/options/review.php:697
2219
- msgid "Use Image"
2220
  msgstr ""
2221
 
2222
- #: admin/options/review.php:709
2223
- msgid "Review type"
 
2224
  msgstr ""
2225
 
2226
- #: admin/options/review.php:714
2227
- msgid "No Review"
2228
  msgstr ""
2229
 
2230
- #: admin/options/review.php:749
2231
- msgid "Copy & paste this shortcode in the post content."
2232
  msgstr ""
2233
 
2234
- #: admin/options/review.php:756
2235
- msgid "Review Schema"
2236
  msgstr ""
2237
 
2238
- #: admin/options/review.php:770
2239
- msgid "Features"
2240
  msgstr ""
2241
 
2242
- #: admin/options/review.php:810
2243
- msgid "Default features are set by a filter function. Remove it to change."
2244
  msgstr ""
2245
 
2246
- #: admin/options/review.php:812
2247
- msgid "Add default feature"
2248
  msgstr ""
2249
 
2250
- #: admin/options/review.php:819
2251
- msgid "Links"
2252
  msgstr ""
2253
 
2254
- #: admin/options/review.php:845
2255
- msgid "Add default link"
2256
  msgstr ""
2257
 
2258
- #: admin/options/review.php:851
2259
- msgid "User Ratings"
2260
  msgstr ""
2261
 
2262
- #: admin/options/review.php:896
2263
- msgid ""
2264
- "From here you can enable embed feature, which will show embed code in the "
2265
- "frontend which site visitors can use to embed review on their site."
2266
  msgstr ""
2267
 
2268
- #: admin/options/review.php:900
2269
- msgid "Enable Embed"
2270
  msgstr ""
2271
 
2272
- #: admin/options/review.php:919
2273
- msgid "Show Title"
2274
  msgstr ""
2275
 
2276
- #: admin/options/review.php:938
2277
- msgid "Show Thumbnail"
2278
  msgstr ""
2279
 
2280
- #: admin/options/review.php:957
2281
- msgid "Show Excerpt"
2282
  msgstr ""
2283
 
2284
- #: admin/options/review.php:976
2285
- msgid "Show Rating Box"
2286
  msgstr ""
2287
 
2288
- #: admin/options/review.php:995
2289
- msgid "Show Credit"
2290
  msgstr ""
2291
 
2292
- #: admin/options/review.php:1016
2293
- msgid ""
2294
- "Here you can import your existing user ratings from WP Review 1.x and WP "
2295
- "Review Pro 1.x."
2296
  msgstr ""
2297
 
2298
- #. translators: number of rows left.
2299
- #: admin/options/review.php:1020
2300
- #, php-format
2301
- msgid "%s ratings left to import."
2302
  msgstr ""
2303
 
2304
- #: admin/options/review.php:1023
2305
- msgid "Start import"
2306
  msgstr ""
2307
 
2308
- #: admin/options/review.php:1026
2309
- msgid "Ratings have already been migrated."
2310
  msgstr ""
2311
 
2312
- #: admin/options/yelp.php:12 admin/options/google.php:11
2313
- msgid "API Key"
2314
  msgstr ""
2315
 
2316
- #. translators: Yelp App link.
2317
- #: admin/options/yelp.php:26
2318
- #, php-format
2319
- msgid "%s to get Yelp API Key."
2320
  msgstr ""
2321
 
2322
- #: admin/options/yelp.php:27 admin/options/google.php:26
2323
- #: admin/options/facebook.php:14
2324
- msgid "Click here"
2325
  msgstr ""
2326
 
2327
- #: admin/options/popup.php:11
2328
- msgid "Enable Popup"
2329
  msgstr ""
2330
 
2331
- #: admin/options/popup.php:32
2332
- msgid "Popup width"
2333
  msgstr ""
2334
 
2335
- #: admin/options/popup.php:45
2336
- msgid "Popup animation in"
2337
  msgstr ""
2338
 
2339
- #: admin/options/popup.php:63
2340
- msgid "Popup animation out"
2341
  msgstr ""
2342
 
2343
- #: admin/options/popup.php:82
2344
- msgid "Popup overlay color"
2345
  msgstr ""
2346
 
2347
- #: admin/options/popup.php:95
2348
- msgid "Popup overlay opacity"
2349
  msgstr ""
2350
 
2351
- #: admin/options/popup.php:110
2352
- msgid "Post type"
2353
  msgstr ""
2354
 
2355
- #: admin/options/popup.php:117
2356
- msgid "Any"
2357
  msgstr ""
2358
 
2359
- #: admin/options/popup.php:128
2360
- msgid "Popup content"
2361
  msgstr ""
2362
 
2363
- #: admin/options/popup.php:135
2364
- msgid "From category"
2365
  msgstr ""
2366
 
2367
- #: admin/options/popup.php:136
2368
- msgid "From tag"
2369
  msgstr ""
2370
 
2371
- #: admin/options/popup.php:137
2372
- msgid "From review type"
2373
  msgstr ""
2374
 
2375
- #: admin/options/popup.php:138
2376
- msgid "Latest reviews"
2377
  msgstr ""
2378
 
2379
- #: admin/options/popup.php:146
2380
- msgid "Choose category"
2381
  msgstr ""
2382
 
2383
- #: admin/options/popup.php:155
2384
- msgid "All categories"
2385
  msgstr ""
2386
 
2387
- #: admin/options/popup.php:169
2388
- msgid "Number of Reviews"
2389
  msgstr ""
2390
 
2391
- #: admin/options/popup.php:182
2392
- msgid "Popup content order"
 
2393
  msgstr ""
2394
 
2395
- #: admin/options/popup.php:189
2396
- msgid "Random"
2397
  msgstr ""
2398
 
2399
- #: admin/options/popup.php:190
2400
- msgid "Most popular"
2401
  msgstr ""
2402
 
2403
- #: admin/options/popup.php:191
2404
- msgid "Most rated"
 
 
 
 
2405
  msgstr ""
2406
 
2407
- #: admin/options/popup.php:192
2408
- msgid "Latest"
 
 
 
2409
  msgstr ""
2410
 
2411
- #: admin/options/popup.php:201
2412
- msgid "Hide popup for"
 
 
 
 
2413
  msgstr ""
2414
 
2415
- #: admin/options/popup.php:208
2416
- msgid "day(s)."
 
2417
  msgstr ""
2418
 
2419
- #: admin/options/popup.php:212
2420
- msgid "Set to 0 if you want to show popup on each page load."
2421
  msgstr ""
2422
 
2423
- #. translators: number input.
2424
- #: admin/options/popup.php:222
2425
- #, php-format
2426
- msgid "Show popup after %s second(s)"
2427
  msgstr ""
2428
 
2429
- #: admin/options/popup.php:231
2430
- msgid "Set to 0 if you want to show popup instantly."
 
 
2431
  msgstr ""
2432
 
2433
- #: admin/options/popup.php:238
2434
- msgid ""
2435
- "Show popup when visitor reaches the end of the content (only on single posts "
2436
- "or pages)"
2437
  msgstr ""
2438
 
2439
- #: admin/options/popup.php:248
2440
- msgid "Show popup when visitor is about to leave (exit intent)"
2441
  msgstr ""
2442
 
2443
- #. translators: width input.
2444
- #: admin/options/popup.php:261
2445
- #, php-format
2446
- msgid "Show popup on screens larger than %s pixels"
2447
  msgstr ""
2448
 
2449
- #: admin/options/popup.php:271
2450
- msgid "Generate new cookie"
2451
  msgstr ""
2452
 
2453
- #: admin/options/popup.php:272
2454
- msgid "Use this option to override old cookie."
2455
  msgstr ""
2456
 
2457
- #: admin/options/help.php:13
2458
- msgid ""
2459
- "All support for this plugin is provided through our forums. If you have not "
2460
- "registered yet, you can do so here for ​<strong>FREE​</strong>: "
2461
  msgstr ""
2462
 
2463
- #: admin/options/help.php:17
2464
- msgid "Check our free WordPress video tutorials here: "
2465
  msgstr ""
2466
 
2467
- #: admin/options/help.php:19
2468
- msgid "(no registration required)"
2469
  msgstr ""
2470
 
2471
- #: admin/options/help.php:22
2472
- msgid "Thank you for using our plugin."
2473
  msgstr ""
2474
 
2475
- #: admin/options/hello-bar.php:11
2476
- msgid "Content"
2477
  msgstr ""
2478
 
2479
- #: admin/options/hello-bar.php:16
2480
- msgid "Content Settings"
2481
  msgstr ""
2482
 
2483
- #: admin/options/hello-bar.php:20
2484
- msgid "Enable Global Notification Bar"
2485
  msgstr ""
2486
 
2487
- #: admin/options/hello-bar.php:53
2488
- msgid "Star Rating"
2489
  msgstr ""
2490
 
2491
- #: admin/options/hello-bar.php:65
2492
- msgid "Price"
2493
  msgstr ""
2494
 
2495
- #: admin/options/hello-bar.php:77
2496
- msgid "Button label"
2497
  msgstr ""
2498
 
2499
- #: admin/options/hello-bar.php:82
2500
- msgid "Buy Now"
2501
  msgstr ""
2502
 
2503
- #: admin/options/hello-bar.php:89
2504
- msgid "Button URL"
 
2505
  msgstr ""
2506
 
2507
- #: admin/options/hello-bar.php:101
2508
- msgid "Open link in new tab"
 
2509
  msgstr ""
2510
 
2511
- #: admin/options/hello-bar.php:120
2512
- msgid "Styling Settings"
 
2513
  msgstr ""
2514
 
2515
- #: admin/options/hello-bar.php:124
2516
- msgid "Location"
 
2517
  msgstr ""
2518
 
2519
- #: admin/options/hello-bar.php:131
2520
- msgid "Top"
 
2521
  msgstr ""
2522
 
2523
- #: admin/options/hello-bar.php:132
2524
- msgid "Bottom"
2525
  msgstr ""
2526
 
2527
- #: admin/options/hello-bar.php:140
2528
- msgid "Max container(px/%)"
2529
  msgstr ""
2530
 
2531
- #: admin/options/hello-bar.php:153
2532
- msgid "Background color"
2533
  msgstr ""
2534
 
2535
- #: admin/options/hello-bar.php:166
2536
- msgid "Background image"
2537
  msgstr ""
2538
 
2539
- #: admin/options/hello-bar.php:181
2540
- msgid "Text color"
2541
  msgstr ""
2542
 
2543
- #: admin/options/hello-bar.php:194
2544
- msgid "Star color"
2545
  msgstr ""
2546
 
2547
- #: admin/options/hello-bar.php:207
2548
- msgid "Button background color"
2549
  msgstr ""
2550
 
2551
- #: admin/options/hello-bar.php:220
2552
- msgid "Button text color"
2553
  msgstr ""
2554
 
2555
- #. translators: Google API link.
2556
- #: admin/options/google.php:25
2557
- #, php-format
2558
- msgid "%s to get Google API key."
2559
  msgstr ""
2560
 
2561
- #. translators: Facebook App link.
2562
- #: admin/options/facebook.php:13
2563
- #, php-format
2564
- msgid "%s to create Facebook App. Remember to add your domain to app."
2565
  msgstr ""
2566
 
2567
- #: admin/options/facebook.php:21
2568
- msgid "App ID"
2569
  msgstr ""
2570
 
2571
- #: admin/options/facebook.php:34
2572
- msgid "App secret"
2573
  msgstr ""
2574
 
2575
- #: admin/options/facebook.php:45
2576
- msgid ""
2577
- "Please re-generate access token in shortcodes and widgets each time you "
2578
- "change App ID or App secret."
2579
  msgstr ""
2580
 
2581
- #. Description of the plugin
2582
- msgid ""
2583
- "Create reviews! Choose from stars, percentages or points for review scores. "
2584
- "Supports Retina Display, WPMU and Unlimited Color Schemes."
2585
  msgstr ""
2586
 
2587
- #. URI of the plugin
2588
- msgid "http://mythemeshop.com/plugins/wp-review/"
2589
  msgstr ""
2590
 
2591
- #. Author of the plugin
2592
- msgid "MyThemeShop"
2593
  msgstr ""
2594
 
2595
- #. Author URI of the plugin
2596
- msgid "http://mythemeshop.com/"
 
 
 
 
2597
  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-09-12 18:25+0530\n"
19
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
20
+ "X-Generator: Poedit 2.3.1\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
+ msgid "Title"
53
  msgstr ""
54
 
55
+ #: admin/admin.php:110
56
+ msgid "Review box"
57
  msgstr ""
58
 
59
+ #: admin/admin.php:111 includes/comments.php:80
60
+ msgid "Review total"
61
  msgstr ""
62
 
63
+ #: admin/admin.php:112
64
+ msgid "Visitor rating"
65
  msgstr ""
66
 
67
+ #: admin/admin.php:113
68
+ msgid "Review ID"
69
  msgstr ""
70
 
71
+ #: admin/admin.php:114
72
+ msgid "Leave empty to use current review ID"
73
  msgstr ""
74
 
75
+ #: admin/admin.php:115
76
+ msgid "Insert"
77
  msgstr ""
78
 
79
+ #: admin/admin.php:116
80
+ msgid "Cancel"
81
  msgstr ""
82
 
83
+ #: admin/admin.php:122
84
+ msgid "Are you sure you want to do this?"
85
  msgstr ""
86
 
87
+ #: admin/admin.php:123
88
+ msgid "Are you sure you want to import demo?"
89
  msgstr ""
90
 
91
+ #: admin/admin.php:124
92
+ msgid "Importing proccess finished!"
93
  msgstr ""
94
 
95
+ #: admin/admin.php:163 admin/admin.php:242
96
+ msgid "Attention Seekers"
 
 
 
 
97
  msgstr ""
98
 
99
+ #: admin/admin.php:164 admin/admin.php:243
100
+ msgid "bounce"
101
  msgstr ""
102
 
103
+ #: admin/admin.php:165 admin/admin.php:244
104
+ msgid "flash"
 
 
105
  msgstr ""
106
 
107
+ #: admin/admin.php:166 admin/admin.php:245
108
+ msgid "pulse"
 
109
  msgstr ""
110
 
111
+ #: admin/admin.php:167 admin/admin.php:246
112
+ msgid "rubberBand"
113
  msgstr ""
114
 
115
+ #: admin/admin.php:168 admin/admin.php:247
116
+ msgid "shake"
 
117
  msgstr ""
118
 
119
+ #: admin/admin.php:169 admin/admin.php:248
120
+ msgid "swing"
 
121
  msgstr ""
122
 
123
+ #: admin/admin.php:170 admin/admin.php:249
124
+ msgid "tada"
 
125
  msgstr ""
126
 
127
+ #: admin/admin.php:171 admin/admin.php:250
128
+ msgid "wobble"
 
129
  msgstr ""
130
 
131
+ #: admin/admin.php:172 admin/admin.php:251
132
+ msgid "jello"
133
  msgstr ""
134
 
135
+ #: admin/admin.php:174
136
+ msgid "Bouncing Entrances"
137
  msgstr ""
138
 
139
+ #: admin/admin.php:175
140
+ msgid "bounceIn"
141
  msgstr ""
142
 
143
+ #: admin/admin.php:176
144
+ msgid "bounceInDown"
 
 
 
 
 
 
 
 
145
  msgstr ""
146
 
147
+ #: admin/admin.php:177
148
+ msgid "bounceInLeft"
149
  msgstr ""
150
 
151
+ #: admin/admin.php:178
152
+ msgid "bounceInRight"
153
  msgstr ""
154
 
155
+ #: admin/admin.php:179
156
+ msgid "bounceInUp"
157
  msgstr ""
158
 
159
+ #: admin/admin.php:181
160
+ msgid "Fading Entrances"
161
  msgstr ""
162
 
163
+ #: admin/admin.php:182
164
+ msgid "fadeIn"
165
  msgstr ""
166
 
167
+ #: admin/admin.php:183
168
+ msgid "fadeInDown"
169
  msgstr ""
170
 
171
+ #: admin/admin.php:184
172
+ msgid "fadeInDownBig"
 
173
  msgstr ""
174
 
175
+ #: admin/admin.php:185
176
+ msgid "fadeInLeft"
 
 
 
177
  msgstr ""
178
 
179
+ #: admin/admin.php:186
180
+ msgid "fadeInLeftBig"
 
 
 
 
 
 
 
 
181
  msgstr ""
182
 
183
+ #: admin/admin.php:187
184
+ msgid "fadeInRight"
185
  msgstr ""
186
 
187
+ #: admin/admin.php:188
188
+ msgid "fadeInRightBig"
189
  msgstr ""
190
 
191
+ #: admin/admin.php:189
192
+ msgid "fadeInUp"
193
  msgstr ""
194
 
195
+ #: admin/admin.php:190
196
+ msgid "fadeInUpBig"
 
 
197
  msgstr ""
198
 
199
+ #: admin/admin.php:192 admin/admin.php:271
200
+ msgid "Flippers"
201
  msgstr ""
202
 
203
+ #: admin/admin.php:193 admin/admin.php:272
204
+ msgid "flip"
205
  msgstr ""
206
 
207
+ #: admin/admin.php:194 admin/admin.php:273
208
+ msgid "flipInX"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:195 admin/admin.php:274
212
+ msgid "flipInY"
213
  msgstr ""
214
 
215
+ #: admin/admin.php:196 admin/admin.php:275
216
+ msgid "flipOutX"
217
  msgstr ""
218
 
219
+ #: admin/admin.php:197 admin/admin.php:276
220
+ msgid "flipOutY"
221
  msgstr ""
222
 
223
+ #: admin/admin.php:199 admin/admin.php:278
224
+ msgid "Lightspeed"
225
  msgstr ""
226
 
227
+ #: admin/admin.php:200 admin/admin.php:279
228
+ msgid "lightSpeedIn"
229
  msgstr ""
230
 
231
+ #: admin/admin.php:201 admin/admin.php:280
232
+ msgid "lightSpeedOut"
233
  msgstr ""
234
 
235
+ #: admin/admin.php:203
236
+ msgid "Rotating Entrances"
237
  msgstr ""
238
 
239
+ #: admin/admin.php:204
240
+ msgid "rotateIn"
 
 
241
  msgstr ""
242
 
243
+ #: admin/admin.php:205
244
+ msgid "rotateInDownLeft"
245
  msgstr ""
246
 
247
+ #: admin/admin.php:206
248
+ msgid "rotateInDownRight"
249
  msgstr ""
250
 
251
+ #: admin/admin.php:207
252
+ msgid "rotateInUpLeft"
253
  msgstr ""
254
 
255
+ #: admin/admin.php:208
256
+ msgid "rotateInUpRight"
257
  msgstr ""
258
 
259
+ #: admin/admin.php:210
260
+ msgid "Sliding Entrances"
 
 
 
 
 
 
261
  msgstr ""
262
 
263
+ #: admin/admin.php:211
264
+ msgid "slideInUp"
 
 
 
 
 
 
 
265
  msgstr ""
266
 
267
+ #: admin/admin.php:212
268
+ msgid "slideInDown"
 
 
 
 
 
 
269
  msgstr ""
270
 
271
+ #: admin/admin.php:213
272
+ msgid "slideInLeft"
 
 
 
 
 
 
273
  msgstr ""
274
 
275
+ #: admin/admin.php:214
276
+ msgid "slideInRight"
 
 
 
 
 
 
277
  msgstr ""
278
 
279
+ #: admin/admin.php:216
280
+ msgid "Zoom Entrances"
 
 
 
 
 
 
281
  msgstr ""
282
 
283
+ #: admin/admin.php:217
284
+ msgid "zoomIn"
285
  msgstr ""
286
 
287
+ #: admin/admin.php:218
288
+ msgid "zoomInDown"
289
  msgstr ""
290
 
291
+ #: admin/admin.php:219
292
+ msgid "zoomInLeft"
293
  msgstr ""
294
 
295
+ #: admin/admin.php:220
296
+ msgid "zoomInRight"
297
  msgstr ""
298
 
299
+ #: admin/admin.php:221
300
+ msgid "zoomInUp"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:223 admin/admin.php:302
304
+ msgid "Specials"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:224 admin/admin.php:303
308
+ msgid "hinge"
309
  msgstr ""
310
 
311
+ #: admin/admin.php:225 admin/admin.php:304
312
+ msgid "jackInTheBox"
313
  msgstr ""
314
 
315
+ #: admin/admin.php:226 admin/admin.php:305
316
+ msgid "rollIn"
317
  msgstr ""
318
 
319
+ #: admin/admin.php:227 admin/admin.php:306
320
+ msgid "rollOut"
321
  msgstr ""
322
 
323
+ #: admin/admin.php:253
324
+ msgid "Bouncing Exits"
325
  msgstr ""
326
 
327
+ #: admin/admin.php:254
328
+ msgid "bounceOut"
329
  msgstr ""
330
 
331
+ #: admin/admin.php:255
332
+ msgid "bounceOutDown"
333
  msgstr ""
334
 
335
+ #: admin/admin.php:256
336
+ msgid "bounceOutLeft"
337
  msgstr ""
338
 
339
+ #: admin/admin.php:257
340
+ msgid "bounceOutRight"
341
  msgstr ""
342
 
343
+ #: admin/admin.php:258
344
+ msgid "bounceOutUp"
345
  msgstr ""
346
 
347
+ #: admin/admin.php:260
348
+ msgid "Fading Exits"
349
  msgstr ""
350
 
351
+ #: admin/admin.php:261
352
+ msgid "fadeOut"
 
353
  msgstr ""
354
 
355
+ #: admin/admin.php:262
356
+ msgid "fadeOutDown"
 
357
  msgstr ""
358
 
359
+ #: admin/admin.php:263
360
+ msgid "fadeOutDownBig"
361
  msgstr ""
362
 
363
+ #: admin/admin.php:264
364
+ msgid "fadeOutLeft"
365
  msgstr ""
366
 
367
+ #: admin/admin.php:265
368
+ msgid "fadeOutLeftBig"
369
  msgstr ""
370
 
371
+ #: admin/admin.php:266
372
+ msgid "fadeOutRight"
373
  msgstr ""
374
 
375
+ #: admin/admin.php:267
376
+ msgid "fadeOutRightBig"
377
  msgstr ""
378
 
379
+ #: admin/admin.php:268
380
+ msgid "fadeOutUp"
381
  msgstr ""
382
 
383
+ #: admin/admin.php:269
384
+ msgid "fadeOutUpBig"
 
 
385
  msgstr ""
386
 
387
+ #: admin/admin.php:282
388
+ msgid "Rotating Exits"
389
  msgstr ""
390
 
391
+ #: admin/admin.php:283
392
+ msgid "rotateOut"
393
  msgstr ""
394
 
395
+ #: admin/admin.php:284
396
+ msgid "rotateOutDownLeft"
397
  msgstr ""
398
 
399
+ #: admin/admin.php:285
400
+ msgid "rotateOutDownRight"
401
  msgstr ""
402
 
403
+ #: admin/admin.php:286
404
+ msgid "rotateOutUpLeft"
405
  msgstr ""
406
 
407
+ #: admin/admin.php:287
408
+ msgid "rotateOutUpRight"
409
  msgstr ""
410
 
411
+ #: admin/admin.php:289
412
+ msgid "Sliding Exits"
413
  msgstr ""
414
 
415
+ #: admin/admin.php:290
416
+ msgid "slideOutUp"
417
  msgstr ""
418
 
419
+ #: admin/admin.php:291
420
+ msgid "slideOutDown"
421
  msgstr ""
422
 
423
+ #: admin/admin.php:292
424
+ msgid "slideOutLeft"
425
  msgstr ""
426
 
427
+ #: admin/admin.php:293
428
+ msgid "slideOutRight"
429
  msgstr ""
430
 
431
+ #: admin/admin.php:295
432
+ msgid "Zoom Exits"
433
  msgstr ""
434
 
435
+ #: admin/admin.php:296
436
+ msgid "zoomOut"
437
  msgstr ""
438
 
439
+ #: admin/admin.php:297
440
+ msgid "zoomOutDown"
 
441
  msgstr ""
442
 
443
+ #: admin/admin.php:298
444
+ msgid "zoomOutLeft"
 
445
  msgstr ""
446
 
447
+ #: admin/admin.php:299
448
+ msgid "zoomOutRight"
449
  msgstr ""
450
 
451
+ #: admin/admin.php:300
452
+ msgid "zoomOutUp"
453
  msgstr ""
454
 
455
+ #: admin/admin.php:323
456
+ msgid "No Animation"
457
  msgstr ""
458
 
459
+ #: admin/admin.php:372
460
+ msgid "Settings"
461
  msgstr ""
462
 
463
+ #: admin/admin.php:466
464
+ msgid "Pro feature"
465
  msgstr ""
466
 
467
+ #: admin/admin.php:477 admin/admin.php:482
468
+ msgid "Buy WP Review Pro"
469
  msgstr ""
470
 
471
+ #: admin/admin.php:480
472
+ msgid "Like WP Review Plugin? You will LOVE WP Review Pro!"
473
  msgstr ""
474
 
475
+ #: admin/admin.php:481
476
+ msgid ""
477
+ "15 new review box templates, 15 new Schema types, commment reviews, user can "
478
+ "rate each feature, review popups, review notification bars, custom width, 9 "
479
+ "new custom widgets, Google reviews, Facebook reviews, Yelp reviews and much "
480
+ "more..."
481
  msgstr ""
482
 
483
+ #: admin/class-wp-review-form-field.php:27
484
+ msgctxt "switch label"
485
+ msgid "Yes"
486
  msgstr ""
487
 
488
+ #: admin/class-wp-review-form-field.php:28
489
+ msgctxt "switch label"
490
+ msgid "No"
491
  msgstr ""
492
 
493
+ #: admin/class-wp-review-options.php:38 admin/class-wp-review-options.php:39
494
+ #: admin/options/review.php:326 includes/functions.php:3847
495
+ msgid "WP Review"
496
  msgstr ""
497
 
498
+ #: admin/class-wp-review-options.php:83
499
+ msgid "Global"
500
  msgstr ""
501
 
502
+ #: admin/class-wp-review-options.php:89 admin/review-options-meta-box.php:48
503
+ msgid "Popup"
504
  msgstr ""
505
 
506
+ #: admin/class-wp-review-options.php:95 admin/review-options-meta-box.php:51
507
+ msgid "Notification Bar"
508
  msgstr ""
509
 
510
+ #: admin/class-wp-review-options.php:101
511
+ msgid "Yelp Reviews"
512
  msgstr ""
513
 
514
+ #: admin/class-wp-review-options.php:107
515
+ msgid "Google Reviews"
516
  msgstr ""
517
 
518
+ #: admin/class-wp-review-options.php:113
519
+ msgid "Facebook Reviews"
520
  msgstr ""
521
 
522
+ #: admin/class-wp-review-options.php:119
523
+ msgid "Role Manager"
524
  msgstr ""
525
 
526
+ #: admin/class-wp-review-options.php:125 includes/functions.php:3823
527
+ msgid "Import Reviews"
528
  msgstr ""
529
 
530
+ #: admin/class-wp-review-options.php:131
531
+ msgid "Help"
532
  msgstr ""
533
 
534
+ #: admin/class-wp-review-options.php:155
535
+ msgid "Multisite Settings"
536
  msgstr ""
537
 
538
+ #: admin/class-wp-review-options.php:170
539
+ msgid "WP Review Settings"
540
  msgstr ""
541
 
542
+ #: admin/class-wpr-review-notice.php:54
543
+ msgid ""
544
+ "Hey, we noticed you have created over 10 reviews from WP Review - that’s "
545
+ "awesome! Could you please do us a BIG favor and give it a 5-star rating on "
546
+ "WordPress to help us spread the word and boost our motivation?"
547
  msgstr ""
548
 
549
+ #: admin/class-wpr-review-notice.php:57
550
+ msgid "Ok, you deserve it"
551
  msgstr ""
552
 
553
+ #: admin/class-wpr-review-notice.php:61
554
+ msgid "Nope, maybe later"
555
  msgstr ""
556
 
557
+ #: admin/class-wpr-review-notice.php:65
558
+ msgid "I already did"
559
  msgstr ""
560
 
561
+ #: admin/demo-importer.php:32 admin/demo-importer.php:37
562
+ msgid "Processing, please wait&hellip;"
563
  msgstr ""
564
 
565
+ #: admin/demo-importer.php:38
566
+ msgid "Ok"
567
  msgstr ""
568
 
569
+ #: admin/demo-importer/class-wp-import.php:115
570
+ #: admin/demo-importer/class-wp-import.php:124
571
+ #: admin/demo-importer/class-wp-import.php:175
572
+ #: admin/demo-importer/class-wp-import.php:179
573
+ #: admin/demo-importer/class-wp-import.php:188
574
+ msgid "Sorry, there has been an error."
575
  msgstr ""
576
 
577
+ #: admin/demo-importer/class-wp-import.php:116
578
+ msgid "The file does not exist, please try again."
579
  msgstr ""
580
 
581
+ #: admin/demo-importer/class-wp-import.php:159
582
+ msgid "All done."
583
  msgstr ""
584
 
585
+ #: admin/demo-importer/class-wp-import.php:159
586
+ msgid "Have fun!"
587
  msgstr ""
588
 
589
+ #: admin/demo-importer/class-wp-import.php:160
590
+ msgid "Remember to update the passwords and roles of imported users."
591
  msgstr ""
592
 
593
+ #: admin/demo-importer/class-wp-import.php:180
594
+ #, php-format
595
+ msgid ""
596
+ "The export file could not be found at <code>%s</code>. It is likely that "
597
+ "this was caused by a permissions problem."
598
  msgstr ""
599
 
600
+ #: admin/demo-importer/class-wp-import.php:196
601
+ #, php-format
602
+ msgid ""
603
+ "This WXR file (version %s) may not be supported by this version of the "
604
+ "importer. Please consider updating."
605
  msgstr ""
606
 
607
+ #: admin/demo-importer/class-wp-import.php:221
608
+ #, php-format
609
+ msgid ""
610
+ "Failed to import author %s. Their posts will be attributed to the current "
611
+ "user."
612
  msgstr ""
613
 
614
+ #: admin/demo-importer/class-wp-import.php:247
615
+ msgid "Assign Authors"
616
  msgstr ""
617
 
618
+ #: admin/demo-importer/class-wp-import.php:248
619
+ msgid ""
620
+ "To make it easier for you to edit and save the imported content, you may "
621
+ "want to reassign the author of the imported item to an existing user of this "
622
+ "site. For example, you may want to import all the entries as <code>admin</"
623
+ "code>s entries."
624
  msgstr ""
625
 
626
+ #: admin/demo-importer/class-wp-import.php:250
627
+ #, php-format
628
+ msgid ""
629
+ "If a new user is created by WordPress, a new password will be randomly "
630
+ "generated and the new user&#8217;s role will be set as %s. Manually changing "
631
+ "the new user&#8217;s details will be necessary."
632
  msgstr ""
633
 
634
+ #: admin/demo-importer/class-wp-import.php:260
635
+ msgid "Import Attachments"
636
  msgstr ""
637
 
638
+ #: admin/demo-importer/class-wp-import.php:263
639
+ msgid "Download and import file attachments"
640
  msgstr ""
641
 
642
+ #: admin/demo-importer/class-wp-import.php:267 includes/functions.php:1587
643
+ msgid "Submit"
644
  msgstr ""
645
 
646
+ #: admin/demo-importer/class-wp-import.php:280
647
+ msgid "Import author:"
648
  msgstr ""
649
 
650
+ #: admin/demo-importer/class-wp-import.php:291
651
+ msgid "or create new user with login name:"
652
  msgstr ""
653
 
654
+ #: admin/demo-importer/class-wp-import.php:294
655
+ msgid "as a new user:"
656
  msgstr ""
657
 
658
+ #: admin/demo-importer/class-wp-import.php:302
659
+ msgid "assign posts to an existing user:"
660
  msgstr ""
661
 
662
+ #: admin/demo-importer/class-wp-import.php:304
663
+ msgid "or assign posts to an existing user:"
664
  msgstr ""
665
 
666
+ #: admin/demo-importer/class-wp-import.php:305
667
+ msgid "- Select -"
668
  msgstr ""
669
 
670
+ #: admin/demo-importer/class-wp-import.php:355
671
+ #, php-format
672
+ msgid ""
673
+ "Failed to create new user for %s. Their posts will be attributed to the "
674
+ "current user."
675
  msgstr ""
676
 
677
+ #: admin/demo-importer/class-wp-import.php:407
678
+ #, php-format
679
+ msgid "Failed to import category %s"
680
  msgstr ""
681
 
682
+ #: admin/demo-importer/class-wp-import.php:450
683
+ #, php-format
684
+ msgid "Failed to import post tag %s"
685
  msgstr ""
686
 
687
+ #: admin/demo-importer/class-wp-import.php:499
688
+ #: admin/demo-importer/class-wp-import.php:721
689
+ #, php-format
690
+ msgid "Failed to import %s %s"
691
  msgstr ""
692
 
693
+ #: admin/demo-importer/class-wp-import.php:588
694
+ #, php-format
695
+ msgid "Failed to import &#8220;%s&#8221;: Invalid post type %s"
696
  msgstr ""
697
 
698
+ #: admin/demo-importer/class-wp-import.php:625
699
+ #, php-format
700
+ msgid "%s &#8220;%s&#8221; already exists."
701
  msgstr ""
702
 
703
+ #: admin/demo-importer/class-wp-import.php:687
704
+ #, php-format
705
+ msgid "Failed to import %s &#8220;%s&#8221;"
706
  msgstr ""
707
 
708
+ #: admin/demo-importer/class-wp-import.php:853
709
+ msgid "Menu item skipped due to missing menu slug"
710
  msgstr ""
711
 
712
+ #: admin/demo-importer/class-wp-import.php:860
713
+ #, php-format
714
+ msgid "Menu item skipped due to invalid menu slug: %s"
715
  msgstr ""
716
 
717
+ #: admin/demo-importer/class-wp-import.php:923
718
+ msgid "Fetching attachments is not enabled"
719
  msgstr ""
720
 
721
+ #: admin/demo-importer/class-wp-import.php:936
722
+ msgid "Invalid file type"
723
  msgstr ""
724
 
725
+ #: admin/demo-importer/class-wp-import.php:986
726
+ msgid "Remote server did not respond"
727
  msgstr ""
728
 
729
+ #: admin/demo-importer/class-wp-import.php:994
730
+ #, php-format
731
+ msgid "Remote server returned error response %1$d %2$s"
732
  msgstr ""
733
 
734
+ #: admin/demo-importer/class-wp-import.php:1001
735
+ msgid "Remote file is incorrect size"
736
  msgstr ""
737
 
738
+ #: admin/demo-importer/class-wp-import.php:1006
739
+ msgid "Zero size file downloaded"
740
  msgstr ""
741
 
742
+ #: admin/demo-importer/class-wp-import.php:1012
743
+ #, php-format
744
+ msgid "Remote file is too large, limit is %s"
745
  msgstr ""
746
 
747
+ #: admin/demo-importer/class-wp-import.php:1112
748
+ msgid "Import WordPress"
749
  msgstr ""
750
 
751
+ #: admin/demo-importer/class-wp-import.php:1119
752
+ #, php-format
753
+ msgid ""
754
+ "A new version of this importer is available. Please update to version %s to "
755
+ "ensure compatibility with newer export files."
756
  msgstr ""
757
 
758
+ #: admin/demo-importer/class-wp-import.php:1134
759
+ msgid ""
760
+ "Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import "
761
+ "the posts, pages, comments, custom fields, categories, and tags into this "
762
+ "site."
763
  msgstr ""
764
 
765
+ #: admin/demo-importer/class-wp-import.php:1135
766
+ msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
767
  msgstr ""
768
 
769
+ #: admin/demo-importer/parsers.php:42 admin/demo-importer/parsers.php:72
770
+ #: admin/demo-importer/parsers.php:80
771
+ msgid "There was an error when reading this WXR file"
772
  msgstr ""
773
 
774
+ #: admin/demo-importer/parsers.php:43
775
+ msgid ""
776
+ "Details are shown above. The importer will now try again with a different "
777
+ "parser..."
778
  msgstr ""
779
 
780
+ #: admin/demo-importer/parsers.php:84 admin/demo-importer/parsers.php:89
781
+ #: admin/demo-importer/parsers.php:306 admin/demo-importer/parsers.php:502
782
+ msgid ""
783
+ "This does not appear to be a WXR file, missing/invalid WXR version number"
784
  msgstr ""
785
 
786
+ #: admin/metaboxes.php:40
787
+ msgid "Review"
788
  msgstr ""
789
 
790
+ #: admin/metaboxes.php:50
791
+ msgid "Review Item"
792
  msgstr ""
793
 
794
+ #: admin/metaboxes.php:61 includes/functions.php:3826
795
+ msgid "Review Links"
796
  msgstr ""
797
 
798
+ #: admin/metaboxes.php:71
799
+ msgid "Review Description"
800
  msgstr ""
801
 
802
+ #: admin/metaboxes.php:82 includes/functions.php:3828
803
+ msgid "User Reviews"
804
  msgstr ""
805
 
806
+ #: admin/metaboxes.php:208
807
+ msgid "Add item"
808
  msgstr ""
809
 
810
+ #: admin/metaboxes.php:214
811
+ msgid "Total"
812
  msgstr ""
813
 
814
+ #: admin/metaboxes.php:233 admin/metaboxes.php:702 admin/metaboxes.php:714
815
+ #: admin/metaboxes.php:724 admin/options/review.php:782
816
+ #: admin/options/review.php:795 admin/options/review.php:805
817
+ #: admin/options/review.php:831 admin/options/review.php:841
818
+ msgid "Delete"
819
  msgstr ""
820
 
821
+ #: admin/metaboxes.php:239
822
+ msgid "Feature Name"
823
  msgstr ""
824
 
825
+ #: admin/metaboxes.php:250
826
+ msgid "Feature Color"
827
  msgstr ""
828
 
829
+ #: admin/metaboxes.php:264
830
+ msgid "Inactive Color"
831
  msgstr ""
832
 
833
+ #: admin/metaboxes.php:278
834
+ msgid "Feature Score"
835
  msgstr ""
836
 
837
+ #: admin/metaboxes.php:289 admin/options/multisite.php:267
838
+ msgid "Hide Features"
839
  msgstr ""
840
 
841
+ #: admin/metaboxes.php:307
842
+ msgid "Custom Location"
843
  msgstr ""
844
 
845
+ #: admin/metaboxes.php:326 admin/options/review.php:737
846
+ msgid "Review Location"
847
  msgstr ""
848
 
849
+ #: admin/metaboxes.php:331 admin/options/review.php:742
850
+ msgid "After Content"
851
  msgstr ""
852
 
853
+ #: admin/metaboxes.php:332 admin/options/review.php:743
854
+ msgid "Before Content"
855
  msgstr ""
856
 
857
+ #: admin/metaboxes.php:333 admin/options/review.php:744
858
+ msgid "Custom (use shortcode)"
859
  msgstr ""
860
 
861
+ #: admin/metaboxes.php:339
862
+ msgid "Copy &amp; paste this shortcode in the content."
863
  msgstr ""
864
 
865
+ #: admin/metaboxes.php:347
866
+ msgid "Custom Layout"
867
  msgstr ""
868
 
869
+ #: admin/metaboxes.php:366 admin/options/review.php:520 template-list.php:17
870
+ msgid "Default"
871
  msgstr ""
872
 
873
+ #: admin/metaboxes.php:399 admin/options/review.php:560
874
+ msgid "Review Color"
875
  msgstr ""
876
 
877
+ #: admin/metaboxes.php:409 admin/options/review.php:570
878
+ msgid "Inactive Review Color"
879
  msgstr ""
880
 
881
+ #: admin/metaboxes.php:419 admin/options/review.php:580
882
+ msgid "Font Color"
883
  msgstr ""
884
 
885
+ #: admin/metaboxes.php:429 admin/options/review.php:590
886
+ msgid "Heading Background Color"
887
  msgstr ""
888
 
889
+ #: admin/metaboxes.php:439 admin/options/review.php:600
890
+ msgid "Background Color"
891
  msgstr ""
892
 
893
+ #: admin/metaboxes.php:449 admin/options/review.php:610
894
+ msgid "Border Color"
895
  msgstr ""
896
 
897
+ #: admin/metaboxes.php:459 admin/options/review.php:634
898
+ msgid "Google Font"
899
  msgstr ""
900
 
901
+ #: admin/metaboxes.php:479
902
+ msgid "Custom Width"
903
  msgstr ""
904
 
905
+ #: admin/metaboxes.php:513 includes/functions.php:1654
906
+ msgid "Summary"
907
  msgstr ""
908
 
909
+ #: admin/metaboxes.php:521
910
+ msgid "Description title"
911
  msgstr ""
912
 
913
+ #: admin/metaboxes.php:531
914
+ msgid "Description content"
915
  msgstr ""
916
 
917
+ #: admin/metaboxes.php:558
918
+ msgid "Pros"
919
  msgstr ""
920
 
921
+ #: admin/metaboxes.php:585
922
+ msgid "Cons"
923
  msgstr ""
924
 
925
+ #: admin/metaboxes.php:614
926
+ msgid "Hide Description, Pros/Cons & Total Rating"
927
  msgstr ""
928
 
929
+ #: admin/metaboxes.php:680 admin/options/hello-bar.php:41
930
+ msgid "Text"
931
  msgstr ""
932
 
933
+ #: admin/metaboxes.php:681
934
+ msgid "URL"
935
  msgstr ""
936
 
937
+ #: admin/metaboxes.php:731
938
+ msgid "Add another"
939
  msgstr ""
940
 
941
+ #: admin/metaboxes.php:760 admin/options/review.php:857
942
+ msgid "Disabled"
943
  msgstr ""
944
 
945
+ #: admin/metaboxes.php:767 admin/options/review.php:862
946
+ msgid "Visitor Rating Only"
947
  msgstr ""
948
 
949
+ #: admin/metaboxes.php:774 admin/options/review.php:867
950
+ msgid "Comment Rating Only"
951
  msgstr ""
952
 
953
+ #: admin/metaboxes.php:782 admin/options/review.php:873
954
+ msgid "Both"
 
 
955
  msgstr ""
956
 
957
+ #: admin/metaboxes.php:790
958
+ msgid ""
959
+ "If you are changing User Rating Type & post already have user ratings, "
960
+ "please edit or remove existing ratings."
961
  msgstr ""
962
 
963
+ #: admin/metaboxes.php:794
964
+ msgid "User Rating Type"
965
  msgstr ""
966
 
967
+ #: admin/metaboxes.php:825 admin/options/review.php:881
968
+ msgid "User can:"
969
  msgstr ""
970
 
971
+ #: admin/metaboxes.php:832 admin/options/review.php:887
972
+ msgid "Give Overall Rating"
973
  msgstr ""
974
 
975
+ #: admin/metaboxes.php:833 admin/options/review.php:888
976
+ msgid "Rate Each Feature"
977
  msgstr ""
978
 
979
+ #: admin/metaboxes.php:844
980
+ msgid "Hide Visitors Rating in Review Box"
981
  msgstr ""
982
 
983
+ #: admin/metaboxes.php:864
984
+ msgid "Product Price"
985
  msgstr ""
986
 
987
+ #: admin/metaboxes.php:874
988
+ msgid "Comment Feedback (helpful/unhelpful)"
989
  msgstr ""
990
 
991
+ #: admin/metaboxes.php:881 admin/review-options-meta-box.php:231
992
+ #: admin/review-options-meta-box.php:252
993
+ msgid "Use global options"
994
  msgstr ""
995
 
996
+ #: admin/metaboxes.php:882 includes/comments.php:124
997
+ msgid "Yes"
998
  msgstr ""
999
 
1000
+ #: admin/metaboxes.php:883 includes/comments.php:125
1001
+ msgid "No"
1002
  msgstr ""
1003
 
1004
+ #: admin/metaboxes.php:898 admin/options/review.php:507
1005
+ msgid "Processing..."
 
1006
  msgstr ""
1007
 
1008
+ #: admin/metaboxes.php:900 admin/options/review.php:508
1009
+ msgid "Purge visitor ratings"
1010
  msgstr ""
1011
 
1012
+ #: admin/metaboxes.php:901
1013
+ msgid "Click to remove all visitor ratings of this post."
 
1014
  msgstr ""
1015
 
1016
+ #. translators: Facebook App link.
1017
+ #: admin/options/facebook.php:13
1018
+ #, php-format
1019
+ msgid "%s to create Facebook App. Remember to add your domain to app."
1020
  msgstr ""
1021
 
1022
+ #: admin/options/facebook.php:14 admin/options/google.php:26
1023
+ #: admin/options/yelp.php:27
1024
+ msgid "Click here"
1025
  msgstr ""
1026
 
1027
+ #: admin/options/facebook.php:21
1028
+ msgid "App ID"
1029
  msgstr ""
1030
 
1031
+ #: admin/options/facebook.php:34
1032
+ msgid "App secret"
1033
  msgstr ""
1034
 
1035
+ #: admin/options/facebook.php:45
1036
+ msgid ""
1037
+ "Please re-generate access token in shortcodes and widgets each time you "
1038
+ "change App ID or App secret."
1039
  msgstr ""
1040
 
1041
+ #: admin/options/google.php:11 admin/options/yelp.php:12
1042
+ msgid "API Key"
1043
  msgstr ""
1044
 
1045
+ #. translators: Google API link.
1046
+ #: admin/options/google.php:25
1047
+ #, php-format
1048
+ msgid "%s to get Google API key."
1049
  msgstr ""
1050
 
1051
+ #: admin/options/hello-bar.php:11
1052
+ msgid "Content"
1053
  msgstr ""
1054
 
1055
+ #: admin/options/hello-bar.php:12 admin/options/review.php:178
1056
+ #: admin/options/review.php:516
1057
+ msgid "Styling"
1058
  msgstr ""
1059
 
1060
+ #: admin/options/hello-bar.php:16
1061
+ msgid "Content Settings"
1062
  msgstr ""
1063
 
1064
+ #: admin/options/hello-bar.php:20
1065
+ msgid "Enable Global Notification Bar"
1066
  msgstr ""
1067
 
1068
+ #: admin/options/hello-bar.php:53
1069
+ msgid "Star Rating"
1070
  msgstr ""
1071
 
1072
+ #: admin/options/hello-bar.php:65 filter-list.php:225
1073
+ msgid "Price"
1074
  msgstr ""
1075
 
1076
+ #: admin/options/hello-bar.php:77
1077
+ msgid "Button label"
1078
  msgstr ""
1079
 
1080
+ #: admin/options/hello-bar.php:82
1081
+ msgid "Buy Now"
1082
  msgstr ""
1083
 
1084
+ #: admin/options/hello-bar.php:89
1085
+ msgid "Button URL"
1086
  msgstr ""
1087
 
1088
+ #: admin/options/hello-bar.php:101
1089
+ msgid "Open link in new tab"
 
 
 
1090
  msgstr ""
1091
 
1092
+ #: admin/options/hello-bar.php:120
1093
+ msgid "Styling Settings"
1094
  msgstr ""
1095
 
1096
+ #: admin/options/hello-bar.php:124
1097
+ msgid "Location"
1098
  msgstr ""
1099
 
1100
+ #: admin/options/hello-bar.php:131
1101
+ msgid "Top"
1102
  msgstr ""
1103
 
1104
+ #: admin/options/hello-bar.php:132
1105
+ msgid "Bottom"
1106
  msgstr ""
1107
 
1108
+ #: admin/options/hello-bar.php:140
1109
+ msgid "Max container(px/%)"
1110
  msgstr ""
1111
 
1112
+ #: admin/options/hello-bar.php:153
1113
+ msgid "Background color"
1114
  msgstr ""
1115
 
1116
+ #: admin/options/hello-bar.php:166
1117
+ msgid "Background image"
1118
  msgstr ""
1119
 
1120
+ #: admin/options/hello-bar.php:181
1121
+ msgid "Text color"
1122
  msgstr ""
1123
 
1124
+ #: admin/options/hello-bar.php:194
1125
+ msgid "Star color"
1126
  msgstr ""
1127
 
1128
+ #: admin/options/hello-bar.php:207
1129
+ msgid "Button background color"
1130
  msgstr ""
1131
 
1132
+ #: admin/options/hello-bar.php:220
1133
+ msgid "Button text color"
1134
  msgstr ""
1135
 
1136
+ #: admin/options/help.php:13
1137
+ msgid ""
1138
+ "All support for this plugin is provided through our forums. If you have not "
1139
+ "registered yet, you can do so here for ​<strong>FREE​</strong>: "
1140
  msgstr ""
1141
 
1142
+ #: admin/options/help.php:17
1143
+ msgid "Check our free WordPress video tutorials here: "
1144
  msgstr ""
1145
 
1146
+ #: admin/options/help.php:19
1147
+ msgid "(no registration required)"
1148
  msgstr ""
1149
 
1150
+ #: admin/options/help.php:22
1151
+ msgid "Thank you for using our plugin."
1152
  msgstr ""
1153
 
1154
+ #: admin/options/help.php:26
1155
+ msgid "Get Support"
1156
  msgstr ""
1157
 
1158
+ #: admin/options/import.php:12
1159
+ msgid "Demo data import"
1160
  msgstr ""
1161
 
1162
+ #: admin/options/import.php:16 admin/options/import.php:38
1163
+ #: admin/options/import.php:65
1164
+ msgid "Import"
1165
  msgstr ""
1166
 
1167
+ #: admin/options/import.php:17
1168
+ msgid ""
1169
+ "Click above button to import demo data, imported data will be saved as new "
1170
+ "draft posts."
1171
  msgstr ""
1172
 
1173
+ #: admin/options/import.php:23
1174
+ msgid "Select plugin"
1175
  msgstr ""
1176
 
1177
+ #: admin/options/import.php:45
1178
+ msgid "Warning"
1179
  msgstr ""
1180
 
1181
+ #: admin/options/import.php:46
1182
+ msgid ""
1183
+ "This action is IRREVERSIBLE! Take a backup of your database before "
1184
+ "proceeding."
1185
  msgstr ""
1186
 
1187
+ #: admin/options/import.php:57
1188
+ msgid "Import settings"
1189
  msgstr ""
1190
 
1191
+ #: admin/options/import.php:61
1192
+ msgid "Import code"
1193
  msgstr ""
1194
 
1195
+ #: admin/options/import.php:63
1196
+ msgid ""
1197
+ "Insert your backup code below and hit Import to restore your plugin options "
1198
+ "from a backup."
1199
  msgstr ""
1200
 
1201
+ #: admin/options/import.php:72
1202
+ msgid "Export settings"
1203
  msgstr ""
1204
 
1205
+ #: admin/options/import.php:76
1206
+ msgid "Show export code"
1207
  msgstr ""
1208
 
1209
+ #: admin/options/multisite.php:12
1210
+ msgid "Site: "
1211
  msgstr ""
1212
 
1213
+ #: admin/options/multisite.php:17
1214
+ msgid "Select site"
1215
  msgstr ""
1216
 
1217
+ #: admin/options/multisite.php:43 admin/options/review.php:187
1218
+ msgid "General Settings"
1219
  msgstr ""
1220
 
1221
+ #: admin/options/multisite.php:46
1222
+ msgid "Hide global options panel"
1223
  msgstr ""
1224
 
1225
+ #: admin/options/multisite.php:66
1226
+ msgid "Hide Popup"
1227
  msgstr ""
1228
 
1229
+ #: admin/options/multisite.php:85 admin/options/multisite.php:248
1230
+ msgid "Hide Notification Bar"
1231
  msgstr ""
1232
 
1233
+ #: admin/options/multisite.php:104
1234
+ msgid "Hide Yelp Reviews"
 
 
1235
  msgstr ""
1236
 
1237
+ #: admin/options/multisite.php:123
1238
+ msgid "Hide Facebook Reviews"
1239
  msgstr ""
1240
 
1241
+ #: admin/options/multisite.php:142
1242
+ msgid "Hide Google Reviews"
1243
  msgstr ""
1244
 
1245
+ #: admin/options/multisite.php:161
1246
+ msgid "Hide Role Manager"
1247
  msgstr ""
1248
 
1249
+ #: admin/options/multisite.php:179
1250
+ msgid "Hide Import"
1251
  msgstr ""
1252
 
1253
+ #: admin/options/multisite.php:197
1254
+ msgid "Post Settings"
1255
  msgstr ""
1256
 
1257
+ #: admin/options/multisite.php:207
1258
+ msgid "Hide reviews in single editor"
1259
  msgstr ""
1260
 
1261
+ #: admin/options/multisite.php:229
1262
+ msgid "Hide Popup Box"
1263
  msgstr ""
1264
 
1265
+ #: admin/options/multisite.php:286
1266
+ msgid "Hide Review Links"
1267
  msgstr ""
1268
 
1269
+ #: admin/options/multisite.php:304
1270
+ msgid "Hide Review Description, Pros/Cons & Total Rating"
1271
  msgstr ""
1272
 
1273
+ #: admin/options/multisite.php:323
1274
+ msgid "Hide User Reviews"
1275
  msgstr ""
1276
 
1277
+ #: admin/options/popup.php:11
1278
+ msgid "Enable Popup"
1279
  msgstr ""
1280
 
1281
+ #: admin/options/popup.php:32
1282
+ msgid "Popup width"
1283
  msgstr ""
1284
 
1285
+ #: admin/options/popup.php:45
1286
+ msgid "Popup animation in"
 
1287
  msgstr ""
1288
 
1289
+ #: admin/options/popup.php:63
1290
+ msgid "Popup animation out"
 
1291
  msgstr ""
1292
 
1293
+ #: admin/options/popup.php:82
1294
+ msgid "Popup overlay color"
 
 
 
1295
  msgstr ""
1296
 
1297
+ #: admin/options/popup.php:95
1298
+ msgid "Popup overlay opacity"
1299
  msgstr ""
1300
 
1301
+ #: admin/options/popup.php:110
1302
+ msgid "Post type"
1303
  msgstr ""
1304
 
1305
+ #: admin/options/popup.php:117
1306
+ msgid "Any"
1307
  msgstr ""
1308
 
1309
+ #: admin/options/popup.php:128
1310
+ msgid "Popup content"
 
 
1311
  msgstr ""
1312
 
1313
+ #: admin/options/popup.php:135
1314
+ msgid "From category"
1315
  msgstr ""
1316
 
1317
+ #: admin/options/popup.php:136
1318
+ msgid "From tag"
 
1319
  msgstr ""
1320
 
1321
+ #: admin/options/popup.php:137
1322
+ msgid "From review type"
1323
  msgstr ""
1324
 
1325
+ #: admin/options/popup.php:138
1326
+ msgid "Latest reviews"
1327
  msgstr ""
1328
 
1329
+ #: admin/options/popup.php:146
1330
+ msgid "Choose category"
1331
  msgstr ""
1332
 
1333
+ #: admin/options/popup.php:155
1334
+ msgid "All categories"
1335
  msgstr ""
1336
 
1337
+ #: admin/options/popup.php:169
1338
+ msgid "Number of Reviews"
1339
  msgstr ""
1340
 
1341
+ #: admin/options/popup.php:182
1342
+ msgid "Popup content order"
1343
  msgstr ""
1344
 
1345
+ #: admin/options/popup.php:189
1346
+ msgid "Random"
1347
  msgstr ""
1348
 
1349
+ #: admin/options/popup.php:190
1350
+ msgid "Most popular"
1351
  msgstr ""
1352
 
1353
+ #: admin/options/popup.php:191
1354
+ msgid "Most rated"
1355
  msgstr ""
1356
 
1357
+ #: admin/options/popup.php:192
1358
+ msgid "Latest"
1359
  msgstr ""
1360
 
1361
+ #: admin/options/popup.php:201
1362
+ msgid "Hide popup for"
1363
  msgstr ""
1364
 
1365
+ #: admin/options/popup.php:208
1366
+ msgid "day(s)."
1367
  msgstr ""
1368
 
1369
+ #: admin/options/popup.php:212
1370
+ msgid "Set to 0 if you want to show popup on each page load."
1371
  msgstr ""
1372
 
1373
+ #. translators: number input.
1374
+ #: admin/options/popup.php:222
1375
+ #, php-format
1376
+ msgid "Show popup after %s second(s)"
1377
  msgstr ""
1378
 
1379
+ #: admin/options/popup.php:231
1380
+ msgid "Set to 0 if you want to show popup instantly."
1381
  msgstr ""
1382
 
1383
+ #: admin/options/popup.php:238
1384
+ msgid ""
1385
+ "Show popup when visitor reaches the end of the content (only on single posts "
1386
+ "or pages)"
1387
  msgstr ""
1388
 
1389
+ #: admin/options/popup.php:248
1390
+ msgid "Show popup when visitor is about to leave (exit intent)"
1391
  msgstr ""
1392
 
1393
+ #. translators: width input.
1394
+ #: admin/options/popup.php:261
1395
+ #, php-format
1396
+ msgid "Show popup on screens larger than %s pixels"
1397
  msgstr ""
1398
 
1399
+ #: admin/options/popup.php:271
1400
+ msgid "Generate new cookie"
1401
  msgstr ""
1402
 
1403
+ #: admin/options/popup.php:272
1404
+ msgid "Use this option to override old cookie."
1405
  msgstr ""
1406
 
1407
+ #: admin/options/review.php:165 includes/functions.php:1080
1408
+ msgid "Star"
1409
  msgstr ""
1410
 
1411
+ #: admin/options/review.php:166 includes/functions.php:1095
1412
+ msgid "Point"
1413
  msgstr ""
1414
 
1415
+ #: admin/options/review.php:167 includes/functions.php:1110
1416
+ msgid "Percentage"
1417
  msgstr ""
1418
 
1419
+ #: admin/options/review.php:168 includes/functions.php:1125
1420
+ msgid "Circle"
1421
  msgstr ""
1422
 
1423
+ #: admin/options/review.php:169 includes/functions.php:1140
1424
+ msgid "Thumbs"
1425
  msgstr ""
1426
 
1427
+ #: admin/options/review.php:177
1428
+ msgid "General"
1429
  msgstr ""
1430
 
1431
+ #: admin/options/review.php:179 admin/options/review.php:702
1432
+ msgid "Defaults"
1433
  msgstr ""
1434
 
1435
+ #: admin/options/review.php:180 admin/options/review.php:895
1436
+ msgid "Embed"
1437
  msgstr ""
1438
 
1439
+ #: admin/options/review.php:182
1440
+ msgid "Migrate Ratings"
1441
  msgstr ""
1442
 
1443
+ #: admin/options/review.php:191
1444
+ msgid ""
1445
+ "There is a filter set for the review location that may modify the options "
1446
+ "below."
1447
  msgstr ""
1448
 
1449
+ #: admin/options/review.php:198
1450
+ msgid "The current theme provides default settings for the plugin."
1451
  msgstr ""
1452
 
1453
+ #: admin/options/review.php:200
1454
+ msgid "Set to theme defaults"
1455
  msgstr ""
1456
 
1457
+ #: admin/options/review.php:207
1458
+ msgid "Restrict rating to registered users only"
1459
  msgstr ""
1460
 
1461
+ #: admin/options/review.php:225
1462
+ msgid "Add total rating to thumbnails"
1463
  msgstr ""
1464
 
1465
+ #: admin/options/review.php:244
1466
+ msgid "Enable User rating in old posts"
1467
  msgstr ""
1468
 
1469
+ #: admin/options/review.php:264
1470
+ msgid "Replace WooCommerce rating"
1471
  msgstr ""
1472
 
1473
+ #: admin/options/review.php:284
1474
+ msgid "Disable Map Script in the Backend"
1475
  msgstr ""
1476
 
1477
+ #: admin/options/review.php:300
1478
+ msgid ""
1479
+ "If map script is conflicting with other plugin in the single post editor, "
1480
+ "please enable this option."
1481
  msgstr ""
1482
 
1483
+ #: admin/options/review.php:305
1484
+ msgid "Comments template"
1485
  msgstr ""
1486
 
1487
+ #: admin/options/review.php:315
1488
+ msgid "Theme"
1489
  msgstr ""
1490
 
1491
+ #: admin/options/review.php:319
1492
+ msgid "Use theme comments template. Might need customization of comments.php"
1493
  msgstr ""
1494
 
1495
+ #: admin/options/review.php:330
1496
+ msgid ""
1497
+ "Use WP Review comments template. Better chances for out of the box "
1498
+ "integration."
1499
  msgstr ""
1500
 
1501
+ #: admin/options/review.php:338
1502
+ msgid "Comment form integration"
1503
  msgstr ""
1504
 
1505
+ #: admin/options/review.php:348
1506
+ msgid "Replace"
1507
  msgstr ""
1508
 
1509
+ #: admin/options/review.php:352
1510
+ msgid "Replace form fields."
1511
  msgstr ""
1512
 
1513
+ #: admin/options/review.php:359
1514
+ msgid "Extend"
1515
  msgstr ""
1516
 
1517
+ #: admin/options/review.php:363
1518
+ msgid "Add new fields without modifying the default fields."
1519
  msgstr ""
1520
 
1521
+ #: admin/options/review.php:371
1522
+ msgid "Require a rating when commenting"
1523
+ msgstr ""
1524
+
1525
+ #: admin/options/review.php:390
1526
+ msgid "Allow comment feedback (helpful/unhelpful)"
1527
+ msgstr ""
1528
+
1529
+ #: admin/options/review.php:409
1530
+ msgid "Record User Ratings"
1531
+ msgstr ""
1532
+
1533
+ #: admin/options/review.php:416
1534
+ msgid "Based on IP address"
1535
+ msgstr ""
1536
+
1537
+ #: admin/options/review.php:417
1538
+ msgid "Based on browser cookie"
1539
+ msgstr ""
1540
+
1541
+ #: admin/options/review.php:445
1542
+ msgid "Allow multiple reviews per account"
1543
+ msgstr ""
1544
+
1545
+ #: admin/options/review.php:463
1546
+ msgid "Include Pros/Cons in comment reviews"
1547
+ msgstr ""
1548
+
1549
+ #: admin/options/review.php:482
1550
+ msgid "Approve Comment Reviews without Moderation"
1551
+ msgstr ""
1552
+
1553
+ #: admin/options/review.php:509
1554
+ msgid "Click to remove all visitor ratings of all posts."
1555
+ msgstr ""
1556
+
1557
+ #: admin/options/review.php:552
1558
+ msgid ""
1559
+ "There is a filter set for the review colors that may modify the options "
1560
+ "below."
1561
+ msgstr ""
1562
+
1563
+ #: admin/options/review.php:622
1564
+ msgid "Review Box Width"
1565
+ msgstr ""
1566
+
1567
+ #: admin/options/review.php:636
1568
+ msgid ""
1569
+ "Many templates use Google Font, select <code>No</code> to use default theme "
1570
+ "font."
1571
+ msgstr ""
1572
+
1573
+ #: admin/options/review.php:656
1574
+ msgid "Comment Rating Color"
1575
+ msgstr ""
1576
+
1577
+ #: admin/options/review.php:658
1578
+ msgid "Use different color for ratings in comments"
1579
+ msgstr ""
1580
+
1581
+ #: admin/options/review.php:678
1582
+ msgid "Rating icon"
1583
+ msgstr ""
1584
+
1585
+ #: admin/options/review.php:697
1586
+ msgid "Use Image"
1587
+ msgstr ""
1588
+
1589
+ #: admin/options/review.php:709
1590
+ msgid "Review type"
1591
+ msgstr ""
1592
+
1593
+ #: admin/options/review.php:714
1594
+ msgid "No Review"
1595
+ msgstr ""
1596
+
1597
+ #: admin/options/review.php:749
1598
+ msgid "Copy & paste this shortcode in the post content."
1599
+ msgstr ""
1600
+
1601
+ #: admin/options/review.php:756
1602
+ msgid "Review Schema"
1603
+ msgstr ""
1604
+
1605
+ #: admin/options/review.php:770
1606
+ msgid "Features"
1607
+ msgstr ""
1608
+
1609
+ #: admin/options/review.php:810
1610
+ msgid "Default features are set by a filter function. Remove it to change."
1611
+ msgstr ""
1612
+
1613
+ #: admin/options/review.php:812
1614
+ msgid "Add default feature"
1615
+ msgstr ""
1616
+
1617
+ #: admin/options/review.php:819
1618
+ msgid "Links"
1619
+ msgstr ""
1620
+
1621
+ #: admin/options/review.php:845
1622
+ msgid "Add default link"
1623
+ msgstr ""
1624
+
1625
+ #: admin/options/review.php:851
1626
+ msgid "User Ratings"
1627
+ msgstr ""
1628
+
1629
+ #: admin/options/review.php:896
1630
+ msgid ""
1631
+ "From here you can enable embed feature, which will show embed code in the "
1632
+ "frontend which site visitors can use to embed review on their site."
1633
+ msgstr ""
1634
+
1635
+ #: admin/options/review.php:900
1636
+ msgid "Enable Embed"
1637
+ msgstr ""
1638
+
1639
+ #: admin/options/review.php:919
1640
+ msgid "Show Title"
1641
+ msgstr ""
1642
+
1643
+ #: admin/options/review.php:938
1644
+ msgid "Show Thumbnail"
1645
+ msgstr ""
1646
+
1647
+ #: admin/options/review.php:957
1648
+ msgid "Show Excerpt"
1649
+ msgstr ""
1650
+
1651
+ #: admin/options/review.php:976
1652
+ msgid "Show Rating Box"
1653
+ msgstr ""
1654
+
1655
+ #: admin/options/review.php:995
1656
+ msgid "Show Credit"
1657
+ msgstr ""
1658
+
1659
+ #: admin/options/review.php:1016
1660
+ msgid ""
1661
+ "Here you can import your existing user ratings from WP Review 1.x and WP "
1662
+ "Review Pro 1.x."
1663
+ msgstr ""
1664
+
1665
+ #. translators: number of rows left.
1666
+ #: admin/options/review.php:1020
1667
+ #, php-format
1668
+ msgid "%s ratings left to import."
1669
+ msgstr ""
1670
+
1671
+ #: admin/options/review.php:1023
1672
+ msgid "Start import"
1673
+ msgstr ""
1674
+
1675
+ #: admin/options/review.php:1026
1676
+ msgid "Ratings have already been migrated."
1677
+ msgstr ""
1678
+
1679
+ #. translators: Yelp App link.
1680
+ #: admin/options/yelp.php:26
1681
+ #, php-format
1682
+ msgid "%s to get Yelp API Key."
1683
+ msgstr ""
1684
+
1685
+ #: admin/review-options-meta-box.php:46
1686
+ msgid "Review Box"
1687
+ msgstr ""
1688
+
1689
+ #: admin/review-options-meta-box.php:58
1690
+ msgid "Review Type"
1691
+ msgstr ""
1692
+
1693
+ #: admin/review-options-meta-box.php:63
1694
+ msgid "No review"
1695
+ msgstr ""
1696
+
1697
+ #. translators: review ID.
1698
+ #: admin/review-options-meta-box.php:84
1699
+ #, php-format
1700
+ msgid "Review ID: %s"
1701
+ msgstr ""
1702
+
1703
+ #: admin/review-options-meta-box.php:92
1704
+ msgid "Review Heading"
1705
+ msgstr ""
1706
+
1707
+ #: admin/review-options-meta-box.php:104
1708
+ msgid "Reviewed Item Schema"
1709
+ msgstr ""
1710
+
1711
+ #: admin/review-options-meta-box.php:133
1712
+ msgid "Rating Schema"
1713
+ msgstr ""
1714
+
1715
+ #: admin/review-options-meta-box.php:138
1716
+ msgid "Author Review Rating"
1717
+ msgstr ""
1718
+
1719
+ #: admin/review-options-meta-box.php:139
1720
+ msgid "Visitors Aggregate Rating (if enabled)"
1721
+ msgstr ""
1722
+
1723
+ #: admin/review-options-meta-box.php:140
1724
+ msgid "Comments Reviews Aggregate Rating (if enabled)"
1725
+ msgstr ""
1726
+
1727
+ #: admin/review-options-meta-box.php:148
1728
+ msgid "Custom Author"
1729
+ msgstr ""
1730
+
1731
+ #: admin/review-options-meta-box.php:167
1732
+ msgid "Review Author"
1733
+ msgstr ""
1734
+
1735
+ #: admin/review-options-meta-box.php:181
1736
+ msgid "Display Schema Data in the Box (if available)"
1737
+ msgstr ""
1738
+
1739
+ #: admin/review-options-meta-box.php:201
1740
+ msgid "Show Embed Code"
1741
+ msgstr ""
1742
+
1743
+ #: admin/review-options-meta-box.php:224 admin/review-options-meta-box.php:245
1744
+ msgid "Enable"
1745
+ msgstr ""
1746
+
1747
+ #: admin/review-options-meta-box.php:232 admin/review-options-meta-box.php:253
1748
+ msgid "Use custom options"
1749
+ msgstr ""
1750
+
1751
+ #: admin/review-options-meta-box.php:233 admin/review-options-meta-box.php:254
1752
+ #: includes/schemas.php:11 includes/widgets/class-wp-review-tab-widget.php:216
1753
+ msgid "None"
1754
+ msgstr ""
1755
+
1756
+ #: box-templates/aqua.php:64
1757
+ msgid "Overall"
1758
+ msgstr ""
1759
+
1760
+ #: box-templates/aqua.php:111 box-templates/default.php:117
1761
+ #: includes/functions.php:1507
1762
+ msgid "User Review"
1763
+ msgstr ""
1764
+
1765
+ #: box-templates/aqua.php:120 box-templates/default.php:126
1766
+ msgid "vote"
1767
+ msgid_plural "votes"
1768
+ msgstr[0] ""
1769
+ msgstr[1] ""
1770
+
1771
+ #: box-templates/global/partials/review-schema.php:49 includes/schemas.php:38
1772
+ #: includes/schemas.php:143 includes/schemas.php:212 includes/schemas.php:321
1773
+ #: includes/schemas.php:390 includes/schemas.php:495 includes/schemas.php:632
1774
+ #: includes/schemas.php:683 includes/schemas.php:756 includes/schemas.php:829
1775
+ #: includes/schemas.php:916 includes/schemas.php:975 includes/schemas.php:1070
1776
+ #: includes/schemas.php:1139 includes/schemas.php:1374
1777
+ #: includes/schemas.php:1440 includes/schemas.php:1522
1778
+ #: includes/schemas.php:1583
1779
+ msgid "[ More ]"
1780
+ msgstr ""
1781
+
1782
+ #: comments/comments.php:12
1783
+ msgid "Please do not load this page directly. Thanks!"
1784
+ msgstr ""
1785
+
1786
+ #: comments/comments.php:16
1787
+ msgid "This post is password protected. Enter the password to view comments."
1788
+ msgstr ""
1789
+
1790
+ #: comments/comments.php:28
1791
+ msgid "One Response"
1792
+ msgstr ""
1793
+
1794
+ #: comments/comments.php:33
1795
+ #, php-format
1796
+ msgctxt "comments title"
1797
+ msgid "%1$s Comment"
1798
+ msgid_plural "%1$s Comments"
1799
+ msgstr[0] ""
1800
+ msgstr[1] ""
1801
+
1802
+ #: comments/comments.php:75
1803
+ msgid "Leave a Reply"
1804
+ msgstr ""
1805
+
1806
+ #: comments/comments.php:78
1807
+ msgid "Post Comment"
1808
+ msgstr ""
1809
+
1810
+ #: comments/comments.php:79
1811
+ msgid "Comment*"
1812
+ msgstr ""
1813
+
1814
+ #: comments/comments.php:83
1815
+ msgid "Name*"
1816
+ msgstr ""
1817
+
1818
+ #: comments/comments.php:84
1819
+ msgid "Email*"
1820
+ msgstr ""
1821
+
1822
+ #: comments/comments.php:85
1823
+ msgid "Website"
1824
+ msgstr ""
1825
+
1826
+ #: comments/comments.php:86
1827
+ msgid ""
1828
+ "Save my name, email, and website in this browser for the next time I comment."
1829
+ msgstr ""
1830
+
1831
+ #: filter-list.php:222
1832
+ msgid "Audio"
1833
+ msgstr ""
1834
+
1835
+ #: filter-list.php:223
1836
+ msgid "Visual"
1837
+ msgstr ""
1838
+
1839
+ #: filter-list.php:224
1840
+ msgid "UX"
1841
+ msgstr ""
1842
+
1843
+ #: filter-list.php:407
1844
+ msgid "Enable Reviews"
1845
+ msgstr ""
1846
+
1847
+ #: filter-list.php:422
1848
+ msgid "10 Stars"
1849
+ msgstr ""
1850
+
1851
+ #. translators: review rate.
1852
+ #: filter-list.php:425 includes/ajax.php:146
1853
+ #, php-format
1854
+ msgid "%s Stars"
1855
+ msgstr ""
1856
+
1857
+ #: filter-list.php:426
1858
+ #, php-format
1859
+ msgid "%s Star"
1860
+ msgstr ""
1861
+
1862
+ #: filter-list.php:441
1863
+ msgid "Custom template"
1864
  msgstr ""
1865
 
1866
+ #. translators: review text.
1867
+ #. translators: visitors rating.
1868
+ #: includes/ajax.php:67 includes/ajax.php:143 includes/functions.php:3195
1869
+ #, php-format
1870
+ msgid "Visitor Rating: %s"
1871
  msgstr ""
1872
 
1873
+ #. translators: number of reviews.
1874
+ #: includes/ajax.php:326 includes/ajax.php:329
1875
+ #, php-format
1876
+ msgid "%s review"
1877
+ msgid_plural "%s reviews"
1878
+ msgstr[0] ""
1879
+ msgstr[1] ""
1880
 
1881
+ #: includes/ajax.php:345
1882
+ msgid "Empty post ID"
1883
  msgstr ""
1884
 
1885
+ #: includes/ajax.php:348
1886
+ msgid "Empty rating data"
1887
  msgstr ""
1888
 
1889
+ #: includes/ajax.php:351
1890
+ msgid "Empty type data"
1891
  msgstr ""
1892
 
1893
+ #: includes/ajax.php:391 includes/ajax.php:403
1894
+ msgid "Completed!"
1895
  msgstr ""
1896
 
1897
+ #. translators: rating label.
1898
+ #: includes/comments.php:53
1899
+ #, php-format
1900
+ msgid "WP Review Rating (%s)"
1901
  msgstr ""
1902
 
1903
+ #: includes/comments.php:119
1904
+ msgid "Does Product Matches the Description?"
1905
  msgstr ""
1906
 
1907
+ #: includes/comments.php:123
1908
+ msgid "Select"
1909
  msgstr ""
1910
 
1911
+ #: includes/comments.php:139
1912
+ msgid "Comment Image"
1913
  msgstr ""
1914
 
1915
+ #: includes/comments.php:210
1916
+ msgid "Review Total"
1917
  msgstr ""
1918
 
1919
+ #: includes/comments.php:271
1920
+ msgid "Edit this item inline"
1921
  msgstr ""
1922
 
1923
+ #: includes/comments.php:272
1924
+ msgid "Quick Edit"
1925
  msgstr ""
1926
 
1927
+ #: includes/comments.php:372
1928
+ msgid "Visitor reviews"
1929
  msgstr ""
1930
 
1931
+ #: includes/enqueue.php:34
1932
+ msgid "You must log in to add your review"
1933
  msgstr ""
1934
 
1935
+ #: includes/functions.php:141
1936
+ msgid "WP Review Small"
1937
  msgstr ""
1938
 
1939
+ #: includes/functions.php:142
1940
+ msgid "WP Review Large"
1941
  msgstr ""
1942
 
1943
+ #: includes/functions.php:841
1944
+ msgid "Comment Reviews"
1945
  msgstr ""
1946
 
1947
+ #: includes/functions.php:842
1948
+ msgid "Visitor Reviews"
1949
  msgstr ""
1950
 
1951
+ #. translators: rating value text.
1952
+ #: includes/functions.php:1084
1953
+ #, php-format
1954
+ msgctxt "star rating value text"
1955
+ msgid "%s Stars"
1956
  msgstr ""
1957
 
1958
+ #. translators: rating value singular text.
1959
+ #: includes/functions.php:1086
1960
+ #, php-format
1961
+ msgctxt "star rating value text singular"
1962
+ msgid "%s Star"
1963
  msgstr ""
1964
 
1965
+ #. translators: rating value text.
1966
+ #: includes/functions.php:1099
1967
+ #, php-format
1968
+ msgctxt "point rating value text"
1969
+ msgid "%s/10"
1970
  msgstr ""
1971
 
1972
+ #. translators: rating value singular text.
1973
+ #: includes/functions.php:1101
1974
+ #, php-format
1975
+ msgctxt "point rating value text singular"
1976
+ msgid "%s/10"
1977
  msgstr ""
1978
 
1979
+ #. translators: rating value text.
1980
+ #: includes/functions.php:1114
1981
+ #, php-format
1982
+ msgctxt "percentage rating value text"
1983
+ msgid "%s%%"
1984
  msgstr ""
1985
 
1986
+ #. translators: rating value singular text.
1987
+ #: includes/functions.php:1116
1988
+ #, php-format
1989
+ msgctxt "percentage rating value text singular"
1990
+ msgid "%s%%"
1991
  msgstr ""
1992
 
1993
+ #. translators: rating value text.
1994
+ #: includes/functions.php:1129
1995
+ #, php-format
1996
+ msgctxt "circle rating value text"
1997
+ msgid "%s"
1998
  msgstr ""
1999
 
2000
+ #. translators: rating value singular text.
2001
+ #: includes/functions.php:1131
2002
+ #, php-format
2003
+ msgctxt "circle rating value text singular"
2004
+ msgid "%s"
2005
  msgstr ""
2006
 
2007
+ #. translators: rating value text.
2008
+ #: includes/functions.php:1144
2009
+ #, php-format
2010
+ msgctxt "thumbs rating value text"
2011
+ msgid "%s/100"
2012
  msgstr ""
2013
 
2014
+ #. translators: rating value singular text.
2015
+ #: includes/functions.php:1146
2016
+ #, php-format
2017
+ msgctxt "thumbs rating value text singular"
2018
+ msgid "%s/100"
2019
  msgstr ""
2020
 
2021
+ #: includes/functions.php:2022
2022
+ msgid "Rating"
2023
  msgstr ""
2024
 
2025
+ #: includes/functions.php:2041
2026
+ msgid "No Rating"
2027
  msgstr ""
2028
 
2029
+ #. translators: settings link.
2030
+ #: includes/functions.php:2093
2031
+ #, php-format
2032
+ msgid ""
2033
+ "Thank you for updating WP Review Pro. Your existing user ratings will show "
2034
+ "up after importing them in %s."
2035
  msgstr ""
2036
 
2037
+ #: includes/functions.php:2093
2038
+ msgid "Settings &gt; WP Review Pro &gt; Migrate Ratings"
2039
  msgstr ""
2040
 
2041
+ #: includes/functions.php:3061
2042
+ #: includes/widgets/class-wp-review-tab-widget.php:549
2043
+ msgid "&laquo; Previous"
2044
  msgstr ""
2045
 
2046
+ #: includes/functions.php:3065
2047
+ #: includes/widgets/class-wp-review-tab-widget.php:552
2048
+ msgid "Next &raquo;"
2049
  msgstr ""
2050
 
2051
+ #: includes/functions.php:3249
2052
+ msgid "Your rating is awaiting moderation."
2053
  msgstr ""
2054
 
2055
+ #: includes/functions.php:3693
2056
+ msgid "Comment Rating"
2057
  msgstr ""
2058
 
2059
+ #: includes/functions.php:3694
2060
+ msgid "Features Ratings"
2061
  msgstr ""
2062
 
2063
+ #: includes/functions.php:3695
2064
+ msgid "Comment Title"
2065
  msgstr ""
2066
 
2067
+ #: includes/functions.php:3735
2068
+ #: includes/widgets/class-wp-review-tab-widget.php:113
2069
+ #: includes/widgets/class-wp-review-tab-widget.php:158
2070
+ msgid "Comments"
2071
  msgstr ""
2072
 
2073
+ #: includes/functions.php:3758
2074
+ msgid "WordPress Comments"
2075
  msgstr ""
2076
 
2077
+ #: includes/functions.php:3822
2078
+ msgid "Global Options"
2079
  msgstr ""
2080
 
2081
+ #: includes/functions.php:3824
2082
+ msgid "Single Page Settings"
2083
  msgstr ""
2084
 
2085
+ #: includes/functions.php:3825
2086
+ msgid "Review Features"
2087
  msgstr ""
2088
 
2089
+ #: includes/functions.php:3827
2090
+ msgid "Review Description, Pros/Cons and Total Rating"
2091
  msgstr ""
2092
 
2093
+ #: includes/functions.php:3829
2094
+ msgid "Purge Visitor Ratings"
2095
  msgstr ""
2096
 
2097
+ #: includes/functions.php:3830
2098
+ msgid "Purge Comment Ratings"
2099
  msgstr ""
2100
 
2101
+ #: includes/schemas.php:14
2102
+ msgid "Book"
2103
  msgstr ""
2104
 
2105
+ #: includes/schemas.php:18
2106
+ msgid "Book Title"
2107
  msgstr ""
2108
 
2109
+ #: includes/schemas.php:24
2110
+ msgid "Book Description"
2111
  msgstr ""
2112
 
2113
+ #: includes/schemas.php:30
2114
+ msgid "Book Image"
2115
  msgstr ""
2116
 
2117
+ #: includes/schemas.php:36 includes/schemas.php:141 includes/schemas.php:210
2118
+ #: includes/schemas.php:319 includes/schemas.php:388 includes/schemas.php:493
2119
+ #: includes/schemas.php:630 includes/schemas.php:681 includes/schemas.php:754
2120
+ #: includes/schemas.php:827 includes/schemas.php:914 includes/schemas.php:973
2121
+ #: includes/schemas.php:1068 includes/schemas.php:1137
2122
+ #: includes/schemas.php:1372 includes/schemas.php:1438
2123
+ #: includes/schemas.php:1520 includes/schemas.php:1581
2124
+ msgid "More link text"
2125
  msgstr ""
2126
 
2127
+ #: includes/schemas.php:43 includes/schemas.php:148 includes/schemas.php:217
2128
+ #: includes/schemas.php:326 includes/schemas.php:395 includes/schemas.php:500
2129
+ #: includes/schemas.php:637 includes/schemas.php:688 includes/schemas.php:761
2130
+ #: includes/schemas.php:834 includes/schemas.php:921 includes/schemas.php:980
2131
+ #: includes/schemas.php:1075 includes/schemas.php:1144
2132
+ #: includes/schemas.php:1379 includes/schemas.php:1445
2133
+ #: includes/schemas.php:1527 includes/schemas.php:1588
2134
+ msgid "More link URL"
2135
  msgstr ""
2136
 
2137
+ #: includes/schemas.php:49 includes/schemas.php:154 includes/schemas.php:223
2138
+ #: includes/schemas.php:332 includes/schemas.php:401 includes/schemas.php:506
2139
+ #: includes/schemas.php:643 includes/schemas.php:694 includes/schemas.php:767
2140
+ #: includes/schemas.php:840 includes/schemas.php:927 includes/schemas.php:986
2141
+ #: includes/schemas.php:1081 includes/schemas.php:1150
2142
+ #: includes/schemas.php:1385 includes/schemas.php:1451
2143
+ #: includes/schemas.php:1533 includes/schemas.php:1594
2144
+ msgid "Use button style"
2145
  msgstr ""
2146
 
2147
+ #: includes/schemas.php:53 includes/schemas.php:158 includes/schemas.php:227
2148
+ #: includes/schemas.php:336 includes/schemas.php:405 includes/schemas.php:510
2149
+ #: includes/schemas.php:647 includes/schemas.php:698 includes/schemas.php:771
2150
+ #: includes/schemas.php:844 includes/schemas.php:931 includes/schemas.php:990
2151
+ #: includes/schemas.php:1085 includes/schemas.php:1154
2152
+ #: includes/schemas.php:1389 includes/schemas.php:1455
2153
+ #: includes/schemas.php:1537 includes/schemas.php:1598
2154
+ msgid "Button"
2155
  msgstr ""
2156
 
2157
+ #: includes/schemas.php:54 includes/schemas.php:159 includes/schemas.php:228
2158
+ #: includes/schemas.php:337 includes/schemas.php:406 includes/schemas.php:511
2159
+ #: includes/schemas.php:648 includes/schemas.php:699 includes/schemas.php:772
2160
+ #: includes/schemas.php:845 includes/schemas.php:932 includes/schemas.php:991
2161
+ #: includes/schemas.php:1086 includes/schemas.php:1155
2162
+ #: includes/schemas.php:1390 includes/schemas.php:1456
2163
+ #: includes/schemas.php:1538 includes/schemas.php:1599
2164
+ msgid "Link"
2165
  msgstr ""
2166
 
2167
+ #: includes/schemas.php:58
2168
+ msgid "Book Author"
2169
  msgstr ""
2170
 
2171
+ #: includes/schemas.php:64
2172
+ msgid "Book Edition"
 
 
 
 
2173
  msgstr ""
2174
 
2175
+ #: includes/schemas.php:70
2176
+ msgid "Book Format"
2177
  msgstr ""
2178
 
2179
+ #: includes/schemas.php:83
2180
+ msgid "Publisher"
2181
  msgstr ""
2182
 
2183
+ #: includes/schemas.php:91
2184
+ msgid "Publisher Logo"
2185
  msgstr ""
2186
 
2187
+ #: includes/schemas.php:100 includes/schemas.php:410 includes/schemas.php:849
2188
+ msgid "Date published"
2189
+ msgstr ""
 
 
2190
 
2191
+ #: includes/schemas.php:106
2192
+ msgid "Illustrator"
2193
  msgstr ""
2194
 
2195
+ #: includes/schemas.php:112
2196
+ msgid "ISBN"
2197
  msgstr ""
2198
 
2199
+ #: includes/schemas.php:118
2200
+ msgid "Number Of Pages"
2201
  msgstr ""
2202
 
2203
+ #: includes/schemas.php:125
2204
+ msgid "Course"
 
 
 
 
2205
  msgstr ""
2206
 
2207
+ #: includes/schemas.php:129
2208
+ msgid "Course Name"
 
 
 
2209
  msgstr ""
2210
 
2211
+ #: includes/schemas.php:135
2212
+ msgid "Course Description"
 
 
 
 
2213
  msgstr ""
2214
 
2215
+ #: includes/schemas.php:163
2216
+ msgid "Course Author"
 
2217
  msgstr ""
2218
 
2219
+ #: includes/schemas.php:169
2220
+ msgid "Course Provider"
 
2221
  msgstr ""
2222
 
2223
+ #: includes/schemas.php:178
2224
+ msgid "Provider Logo"
2225
  msgstr ""
2226
 
2227
+ #: includes/schemas.php:188
2228
+ msgid "CreativeWorkSeason"
2229
  msgstr ""
2230
 
2231
+ #: includes/schemas.php:198 includes/schemas.php:307 includes/schemas.php:908
2232
+ #: includes/schemas.php:967 includes/schemas.php:1426 includes/schemas.php:1569
2233
+ msgid "Description"
 
2234
  msgstr ""
2235
 
2236
+ #: includes/schemas.php:204 includes/schemas.php:313 includes/schemas.php:1432
2237
+ #: includes/schemas.php:1575
2238
+ msgid "Image"
2239
  msgstr ""
2240
 
2241
+ #: includes/schemas.php:232 includes/schemas.php:341 includes/schemas.php:515
2242
+ msgid "Start date"
2243
  msgstr ""
2244
 
2245
+ #: includes/schemas.php:238 includes/schemas.php:347 includes/schemas.php:521
2246
+ msgid "End date"
2247
  msgstr ""
2248
 
2249
+ #: includes/schemas.php:244
2250
+ msgid "Number of episodes"
2251
  msgstr ""
2252
 
2253
+ #: includes/schemas.php:250
2254
+ msgid "Season number"
2255
  msgstr ""
2256
 
2257
+ #: includes/schemas.php:256 includes/schemas.php:366
2258
+ msgid "Episode"
2259
  msgstr ""
2260
 
2261
+ #: includes/schemas.php:262 includes/schemas.php:428
2262
+ msgid "Part of series"
2263
  msgstr ""
2264
 
2265
+ #: includes/schemas.php:268 includes/schemas.php:359 includes/schemas.php:867
2266
+ #: includes/schemas.php:950 includes/schemas.php:995 includes/schemas.php:1039
2267
+ #: includes/schemas.php:1491 includes/schemas.php:1603
2268
+ msgid "Author"
2269
  msgstr ""
2270
 
2271
+ #: includes/schemas.php:274 includes/schemas.php:440
2272
+ msgid "Production company"
2273
  msgstr ""
2274
 
2275
+ #: includes/schemas.php:280 includes/schemas.php:446 includes/schemas.php:873
2276
+ msgid "Director(s)"
2277
  msgstr ""
2278
 
2279
+ #: includes/schemas.php:284 includes/schemas.php:450 includes/schemas.php:877
2280
+ msgid "Add one director per line"
2281
  msgstr ""
2282
 
2283
+ #: includes/schemas.php:288 includes/schemas.php:454 includes/schemas.php:881
2284
+ msgid "Actor(s)"
2285
  msgstr ""
2286
 
2287
+ #: includes/schemas.php:292 includes/schemas.php:458 includes/schemas.php:885
2288
+ msgid "Add one actor per line"
2289
  msgstr ""
2290
 
2291
+ #: includes/schemas.php:297
2292
+ msgid "CreativeWorkSeries"
2293
  msgstr ""
2294
 
2295
+ #: includes/schemas.php:353
2296
+ msgid "International Standard Serial Number (ISSN)"
2297
  msgstr ""
2298
 
2299
+ #: includes/schemas.php:370
2300
+ msgid "Episode Title"
 
2301
  msgstr ""
2302
 
2303
+ #: includes/schemas.php:376
2304
+ msgid "Episode Description"
2305
  msgstr ""
2306
 
2307
+ #: includes/schemas.php:382
2308
+ msgid "Episode Image"
2309
  msgstr ""
2310
 
2311
+ #: includes/schemas.php:416
2312
+ msgid "Episode number"
2313
  msgstr ""
2314
 
2315
+ #: includes/schemas.php:422
2316
+ msgid "Part of season"
2317
  msgstr ""
2318
 
2319
+ #: includes/schemas.php:434
2320
+ msgid "Episode Author"
2321
  msgstr ""
2322
 
2323
+ #: includes/schemas.php:462 includes/schemas.php:889 includes/schemas.php:942
2324
+ #: includes/schemas.php:1031
2325
+ msgid "Genre"
2326
  msgstr ""
2327
 
2328
+ #: includes/schemas.php:466 includes/schemas.php:893 includes/schemas.php:946
2329
+ #: includes/schemas.php:1035
2330
+ msgid "Add one item per line"
2331
  msgstr ""
2332
 
2333
+ #: includes/schemas.php:471
2334
+ msgid "Event"
2335
  msgstr ""
2336
 
2337
+ #: includes/schemas.php:475
2338
+ msgid "Event Title"
2339
  msgstr ""
2340
 
2341
+ #: includes/schemas.php:481
2342
+ msgid "Event Description"
2343
  msgstr ""
2344
 
2345
+ #: includes/schemas.php:487
2346
+ msgid "Event Image"
2347
  msgstr ""
2348
 
2349
+ #: includes/schemas.php:527
2350
+ msgid "Location name"
2351
  msgstr ""
2352
 
2353
+ #: includes/schemas.php:536 includes/schemas.php:1400
2354
+ msgid "Address"
2355
  msgstr ""
2356
 
2357
+ #: includes/schemas.php:544
2358
+ msgid "Performer"
2359
  msgstr ""
2360
 
2361
+ #: includes/schemas.php:553 includes/schemas.php:1159 includes/schemas.php:1460
2362
+ msgid "Offer price"
2363
  msgstr ""
2364
 
2365
+ #: includes/schemas.php:554 includes/schemas.php:1160 includes/schemas.php:1461
2366
+ msgid "Fill \"0.0\" to show the free price"
2367
  msgstr ""
2368
 
2369
+ #: includes/schemas.php:562 includes/schemas.php:1168 includes/schemas.php:1469
2370
+ msgid "Currency"
2371
  msgstr ""
2372
 
2373
+ #: includes/schemas.php:570 includes/schemas.php:1196
2374
+ msgid "Offer URL"
2375
  msgstr ""
2376
 
2377
+ #: includes/schemas.php:579
2378
+ msgid "Offer valid from"
2379
  msgstr ""
2380
 
2381
+ #: includes/schemas.php:587 includes/schemas.php:1176
2382
+ msgid "Availability"
2383
  msgstr ""
2384
 
2385
+ #: includes/schemas.php:608
2386
+ msgid "Game"
 
2387
  msgstr ""
2388
 
2389
+ #: includes/schemas.php:612
2390
+ msgid "Game Title"
 
 
2391
  msgstr ""
2392
 
2393
+ #: includes/schemas.php:618
2394
+ msgid "Game Description"
2395
  msgstr ""
2396
 
2397
+ #: includes/schemas.php:624
2398
+ msgid "Game Image"
2399
  msgstr ""
2400
 
2401
+ #: includes/schemas.php:652
2402
+ msgid "Game Author"
 
 
2403
  msgstr ""
2404
 
2405
+ #: includes/schemas.php:659
2406
+ msgid "Hotel"
2407
  msgstr ""
2408
 
2409
+ #: includes/schemas.php:663
2410
+ msgid "Hotel Name"
2411
  msgstr ""
2412
 
2413
+ #: includes/schemas.php:669
2414
+ msgid "Hotel Description"
 
 
2415
  msgstr ""
2416
 
2417
+ #: includes/schemas.php:675
2418
+ msgid "Hotel Image"
2419
  msgstr ""
2420
 
2421
+ #: includes/schemas.php:703 includes/schemas.php:776 includes/schemas.php:1394
2422
+ #: includes/schemas.php:1542
2423
+ msgid "Price range"
2424
  msgstr ""
2425
 
2426
+ #: includes/schemas.php:709 includes/schemas.php:782
2427
+ msgid "Payment accepted"
2428
  msgstr ""
2429
 
2430
+ #: includes/schemas.php:715 includes/schemas.php:788
2431
+ msgid "Currencies accepted"
2432
  msgstr ""
2433
 
2434
+ #: includes/schemas.php:721
2435
+ msgid "Hotel Address"
2436
  msgstr ""
2437
 
2438
+ #: includes/schemas.php:726
2439
+ msgid "Hotel Telephone"
2440
  msgstr ""
2441
 
2442
+ #: includes/schemas.php:732
2443
+ msgid "LocalBusiness"
2444
  msgstr ""
2445
 
2446
+ #: includes/schemas.php:736
2447
+ msgid "Business Name"
2448
  msgstr ""
2449
 
2450
+ #: includes/schemas.php:742
2451
+ msgid "Business Description"
 
2452
  msgstr ""
2453
 
2454
+ #: includes/schemas.php:748
2455
+ msgid "Business Image"
2456
+ msgstr ""
2457
+
2458
+ #: includes/schemas.php:794
2459
+ msgid "Business Address"
2460
  msgstr ""
2461
 
2462
+ #: includes/schemas.php:799
2463
+ msgid "Business Telephone"
2464
  msgstr ""
2465
 
2466
+ #: includes/schemas.php:805
2467
+ msgid "Movie"
2468
  msgstr ""
2469
 
2470
+ #: includes/schemas.php:809
2471
+ msgid "Movie title"
 
 
2472
  msgstr ""
2473
 
2474
+ #: includes/schemas.php:815
2475
+ msgid "Movie description"
2476
  msgstr ""
2477
 
2478
+ #: includes/schemas.php:821
2479
+ msgid "Movie Image"
2480
  msgstr ""
2481
 
2482
+ #: includes/schemas.php:855
2483
+ msgid "Country"
2484
  msgstr ""
2485
 
2486
+ #: includes/schemas.php:861
2487
+ msgid "Duration"
2488
  msgstr ""
2489
 
2490
+ #: includes/schemas.php:898
2491
+ msgid "MusicPlaylist"
2492
  msgstr ""
2493
 
2494
+ #: includes/schemas.php:902 includes/schemas.php:1420 includes/schemas.php:1563
2495
+ msgid "Name"
2496
  msgstr ""
2497
 
2498
+ #: includes/schemas.php:936
2499
+ msgid "Number of tracks"
2500
  msgstr ""
2501
 
2502
+ #: includes/schemas.php:957
2503
+ msgid "MusicRecording"
 
 
2504
  msgstr ""
2505
 
2506
+ #: includes/schemas.php:961
2507
+ msgid "Track name"
2508
  msgstr ""
2509
 
2510
+ #: includes/schemas.php:1001
2511
+ msgid "Track Duration"
2512
  msgstr ""
2513
 
2514
+ #: includes/schemas.php:1007
2515
+ msgid "Album name"
2516
  msgstr ""
2517
 
2518
+ #: includes/schemas.php:1013
2519
+ msgid "Playlist name"
 
 
2520
  msgstr ""
2521
 
2522
+ #: includes/schemas.php:1019
2523
+ msgid "International Standard Recording Code"
2524
  msgstr ""
2525
 
2526
+ #: includes/schemas.php:1025
2527
+ msgid "Recording of"
2528
  msgstr ""
2529
 
2530
+ #: includes/schemas.php:1046
2531
+ msgid "Organization"
2532
  msgstr ""
2533
 
2534
+ #: includes/schemas.php:1050
2535
+ msgid "Organization Name"
2536
  msgstr ""
2537
 
2538
+ #: includes/schemas.php:1056
2539
+ msgid "Organization Description"
2540
  msgstr ""
2541
 
2542
+ #: includes/schemas.php:1062
2543
+ msgid "Organization Image"
2544
  msgstr ""
2545
 
2546
+ #: includes/schemas.php:1091
2547
+ msgid "Product"
2548
  msgstr ""
2549
 
2550
+ #: includes/schemas.php:1095
2551
+ msgid "Product Name"
2552
  msgstr ""
2553
 
2554
+ #: includes/schemas.php:1101
2555
+ msgid "Product Description"
2556
  msgstr ""
2557
 
2558
+ #: includes/schemas.php:1107
2559
+ msgid "Product Image"
2560
  msgstr ""
2561
 
2562
+ #: includes/schemas.php:1113
2563
+ msgid "Brand"
2564
  msgstr ""
2565
 
2566
+ #: includes/schemas.php:1119
2567
+ msgid "SKU"
2568
  msgstr ""
2569
 
2570
+ #: includes/schemas.php:1125
2571
+ msgid "MPN"
2572
  msgstr ""
2573
 
2574
+ #: includes/schemas.php:1131
2575
+ msgid "GTIN-8"
2576
  msgstr ""
2577
 
2578
+ #: includes/schemas.php:1205
2579
+ msgid "Valid until"
 
 
2580
  msgstr ""
2581
 
2582
+ #: includes/schemas.php:1214
2583
+ msgid "Recipe"
2584
  msgstr ""
2585
 
2586
+ #: includes/schemas.php:1218
2587
+ msgid "Recipe Name"
 
 
2588
  msgstr ""
2589
 
2590
+ #: includes/schemas.php:1224
2591
+ msgid "Recipe Author"
2592
  msgstr ""
2593
 
2594
+ #: includes/schemas.php:1230
2595
+ msgid "Recipe Description"
2596
  msgstr ""
2597
 
2598
+ #: includes/schemas.php:1236
2599
+ msgid "Recipe Image"
2600
  msgstr ""
2601
 
2602
+ #: includes/schemas.php:1242
2603
+ msgid "Preperation time"
2604
  msgstr ""
2605
 
2606
+ #: includes/schemas.php:1245 includes/schemas.php:1252
2607
+ #: includes/schemas.php:1259
2608
+ msgid "Format: 1H30M. H - Hours, M - Minutes"
2609
  msgstr ""
2610
 
2611
+ #: includes/schemas.php:1249
2612
+ msgid "Cook Time"
2613
  msgstr ""
2614
 
2615
+ #: includes/schemas.php:1256
2616
+ msgid "Total Time"
2617
  msgstr ""
2618
 
2619
+ #: includes/schemas.php:1263
2620
+ msgid "Recipe Type"
2621
  msgstr ""
2622
 
2623
+ #: includes/schemas.php:1266
2624
+ msgid "Type of dish, for example \"appetizer\", \"entree\", or \"dessert\""
2625
  msgstr ""
2626
 
2627
+ #: includes/schemas.php:1270
2628
+ msgid "Recipe Yield"
2629
  msgstr ""
2630
 
2631
+ #: includes/schemas.php:1273
2632
+ msgid "Quantity produced by the recipe, for example \"4 servings\""
2633
  msgstr ""
2634
 
2635
+ #: includes/schemas.php:1277
2636
+ msgid "Recipe Ingredients"
2637
  msgstr ""
2638
 
2639
+ #: includes/schemas.php:1281
2640
+ msgid "Recipe ingredients, add one item per line"
2641
  msgstr ""
2642
 
2643
+ #: includes/schemas.php:1285
2644
+ msgid "Recipe Instructions"
2645
  msgstr ""
2646
 
2647
+ #: includes/schemas.php:1288
2648
+ msgid "Steps to take"
 
 
2649
  msgstr ""
2650
 
2651
+ #: includes/schemas.php:1292
2652
+ msgid "Recipe Cuisine"
2653
  msgstr ""
2654
 
2655
+ #: includes/schemas.php:1298
2656
+ msgid "Keywords"
2657
  msgstr ""
2658
 
2659
+ #: includes/schemas.php:1301
2660
+ msgid "Separate by commas"
2661
  msgstr ""
2662
 
2663
+ #: includes/schemas.php:1305
2664
+ msgid "Calories"
2665
  msgstr ""
2666
 
2667
+ #: includes/schemas.php:1308
2668
+ msgid "The number of calories"
2669
  msgstr ""
2670
 
2671
+ #: includes/schemas.php:1315
2672
+ msgid "Video name"
2673
  msgstr ""
2674
 
2675
+ #: includes/schemas.php:1324
2676
+ msgid "Video description"
 
 
2677
  msgstr ""
2678
 
2679
+ #: includes/schemas.php:1332
2680
+ msgid "Video thumbnail URL"
 
 
2681
  msgstr ""
2682
 
2683
+ #: includes/schemas.php:1340
2684
+ msgid "Video upload date"
2685
  msgstr ""
2686
 
2687
+ #: includes/schemas.php:1343
2688
+ msgid "Y-m-d format"
2689
  msgstr ""
2690
 
2691
+ #: includes/schemas.php:1350
2692
+ msgid "Restaurant"
2693
  msgstr ""
2694
 
2695
+ #: includes/schemas.php:1354
2696
+ msgid "Restaurant Name"
 
 
2697
  msgstr ""
2698
 
2699
+ #: includes/schemas.php:1360
2700
+ msgid "Restaurant Description"
 
2701
  msgstr ""
2702
 
2703
+ #: includes/schemas.php:1366
2704
+ msgid "Restaurant Image"
2705
  msgstr ""
2706
 
2707
+ #: includes/schemas.php:1405
2708
+ msgid "Cuisine"
2709
  msgstr ""
2710
 
2711
+ #: includes/schemas.php:1410
2712
+ msgid "Telephone"
2713
  msgstr ""
2714
 
2715
+ #: includes/schemas.php:1416
2716
+ msgid "SoftwareApplication"
2717
  msgstr ""
2718
 
2719
+ #: includes/schemas.php:1477
2720
+ msgid "Operating System"
2721
  msgstr ""
2722
 
2723
+ #: includes/schemas.php:1480
2724
+ msgid "For example, \"Windows 7\", \"OSX 10.6\", \"Android 1.6\""
2725
  msgstr ""
2726
 
2727
+ #: includes/schemas.php:1484
2728
+ msgid "Application Category"
2729
  msgstr ""
2730
 
2731
+ #: includes/schemas.php:1487
2732
+ msgid "For example, \"Game\", \"Multimedia\""
2733
  msgstr ""
2734
 
2735
+ #: includes/schemas.php:1498
2736
+ msgid "Store"
2737
  msgstr ""
2738
 
2739
+ #: includes/schemas.php:1502
2740
+ msgid "Store Name"
2741
  msgstr ""
2742
 
2743
+ #: includes/schemas.php:1508
2744
+ msgid "Store Description"
2745
  msgstr ""
2746
 
2747
+ #: includes/schemas.php:1514
2748
+ msgid "Store Image"
2749
  msgstr ""
2750
 
2751
+ #: includes/schemas.php:1548
2752
+ msgid "Store Address"
2753
  msgstr ""
2754
 
2755
+ #: includes/schemas.php:1553
2756
+ msgid "Store Telephone"
2757
  msgstr ""
2758
 
2759
+ #: includes/schemas.php:1559
2760
+ msgid "TVSeries"
2761
  msgstr ""
2762
 
2763
+ #: includes/shortcodes.php:106
2764
+ msgid "User Rating"
2765
  msgstr ""
2766
 
2767
+ #: includes/shortcodes.php:113
2768
+ #, php-format
2769
+ msgid "(%s vote)"
2770
  msgstr ""
2771
 
2772
+ #: includes/widgets/class-wp-review-tab-widget.php:28
2773
+ msgid "Display Reviews in tabbed format."
2774
  msgstr ""
2775
 
2776
+ #: includes/widgets/class-wp-review-tab-widget.php:34
2777
+ msgid "WP Review Widget"
2778
  msgstr ""
2779
 
2780
+ #: includes/widgets/class-wp-review-tab-widget.php:87
2781
+ #: includes/widgets/class-wp-review-tab-widget.php:123
2782
+ #: includes/widgets/class-wp-review-tab-widget.php:239
2783
+ #: includes/widgets/class-wp-review-tab-widget.php:263
2784
+ #: includes/widgets/class-wp-review-tab-widget.php:345
2785
+ msgid "Top Rated"
2786
  msgstr ""
2787
 
2788
+ #: includes/widgets/class-wp-review-tab-widget.php:88
2789
+ #: includes/widgets/class-wp-review-tab-widget.php:243
2790
+ #: includes/widgets/class-wp-review-tab-widget.php:267
2791
+ #: includes/widgets/class-wp-review-tab-widget.php:346
2792
+ msgid "Recent"
2793
  msgstr ""
2794
 
2795
+ #: includes/widgets/class-wp-review-tab-widget.php:89
2796
+ #: includes/widgets/class-wp-review-tab-widget.php:131
2797
+ #: includes/widgets/class-wp-review-tab-widget.php:247
2798
+ #: includes/widgets/class-wp-review-tab-widget.php:271
2799
+ #: includes/widgets/class-wp-review-tab-widget.php:347
2800
+ msgid "Most Voted"
2801
  msgstr ""
2802
 
2803
+ #: includes/widgets/class-wp-review-tab-widget.php:90
2804
+ #: includes/widgets/class-wp-review-tab-widget.php:348
2805
+ msgid "Editor's choice"
2806
  msgstr ""
2807
 
2808
+ #: includes/widgets/class-wp-review-tab-widget.php:118
2809
+ msgid "Select Tabs"
2810
  msgstr ""
2811
 
2812
+ #: includes/widgets/class-wp-review-tab-widget.php:127
2813
+ msgid "Recent Reviews"
 
 
2814
  msgstr ""
2815
 
2816
+ #: includes/widgets/class-wp-review-tab-widget.php:135
2817
+ #: includes/widgets/class-wp-review-tab-widget.php:255
2818
+ #: includes/widgets/class-wp-review-tab-widget.php:279
2819
+ msgid "Custom"
2820
  msgstr ""
2821
 
2822
+ #: includes/widgets/class-wp-review-tab-widget.php:146
2823
+ msgid "Restrict recent reviews to current post"
 
 
2824
  msgstr ""
2825
 
2826
+ #: includes/widgets/class-wp-review-tab-widget.php:152
2827
+ msgid "Top Rated Posts By:"
2828
  msgstr ""
2829
 
2830
+ #: includes/widgets/class-wp-review-tab-widget.php:157
2831
+ msgid "Visitors"
 
 
2832
  msgstr ""
2833
 
2834
+ #: includes/widgets/class-wp-review-tab-widget.php:164
2835
+ msgid "Review type:"
2836
  msgstr ""
2837
 
2838
+ #: includes/widgets/class-wp-review-tab-widget.php:185
2839
+ msgid "Allow pagination"
2840
  msgstr ""
2841
 
2842
+ #: includes/widgets/class-wp-review-tab-widget.php:190
2843
+ msgid "Number of reviews to show:"
 
 
2844
  msgstr ""
2845
 
2846
+ #: includes/widgets/class-wp-review-tab-widget.php:197
2847
+ msgid "Title length (words):"
2848
  msgstr ""
2849
 
2850
+ #: includes/widgets/class-wp-review-tab-widget.php:206
2851
+ msgid "Thumbnail size:"
2852
  msgstr ""
2853
 
2854
+ #: includes/widgets/class-wp-review-tab-widget.php:208
2855
+ msgid "Small"
2856
  msgstr ""
2857
 
2858
+ #: includes/widgets/class-wp-review-tab-widget.php:209
2859
+ msgid "Large"
2860
  msgstr ""
2861
 
2862
+ #: includes/widgets/class-wp-review-tab-widget.php:214
2863
+ msgid "Extra information"
2864
  msgstr ""
2865
 
2866
+ #: includes/widgets/class-wp-review-tab-widget.php:217
2867
+ msgid "Post date"
2868
  msgstr ""
2869
 
2870
+ #: includes/widgets/class-wp-review-tab-widget.php:218
2871
+ msgid "Number of reviews"
2872
  msgstr ""
2873
 
2874
+ #: includes/widgets/class-wp-review-tab-widget.php:223
2875
+ msgid "Reviews on Custom tab:"
2876
  msgstr ""
2877
 
2878
+ #: includes/widgets/class-wp-review-tab-widget.php:233
2879
+ msgid "Tab Titles"
2880
  msgstr ""
2881
 
2882
+ #: includes/widgets/class-wp-review-tab-widget.php:233
2883
+ msgid "Tab Order"
2884
  msgstr ""
2885
 
2886
+ #: includes/widgets/class-wp-review-tab-widget.php:251
2887
+ #: includes/widgets/class-wp-review-tab-widget.php:275
2888
+ msgid "Recent Ratings"
2889
  msgstr ""
2890
 
2891
+ #: rating-types/circle-input.php:9 rating-types/circle-output.php:9
2892
+ #: rating-types/thumbs-input.php:9 rating-types/thumbs-output.php:9
2893
+ msgid "This rating type is not supported in the WP Review Free version"
2894
  msgstr ""
2895
 
2896
+ #: rating-types/percentage-input.php:19 rating-types/point-input.php:19
2897
+ #: rating-types/star-input.php:19
2898
+ msgid "Add rating"
2899
  msgstr ""
2900
 
2901
+ #: rating-types/percentage-input.php:41 rating-types/point-input.php:40
2902
+ #: rating-types/star-input.php:40
2903
+ msgid "Sending"
2904
  msgstr ""
2905
 
2906
+ #: rating-types/percentage-input.php:51 rating-types/point-input.php:50
2907
+ #, php-format
2908
+ msgid "%s"
2909
  msgstr ""
2910
 
2911
+ #: template-list.php:37
2912
+ msgid "Amazon"
2913
  msgstr ""
2914
 
2915
+ #: template-list.php:47
2916
+ msgid "Aqua"
2917
  msgstr ""
2918
 
2919
+ #: template-list.php:57
2920
+ msgid "Blue"
2921
  msgstr ""
2922
 
2923
+ #: template-list.php:67
2924
+ msgid "Darkside"
2925
  msgstr ""
2926
 
2927
+ #: template-list.php:78
2928
+ msgid "Dash"
2929
  msgstr ""
2930
 
2931
+ #: template-list.php:88
2932
+ msgid "Edge"
2933
  msgstr ""
2934
 
2935
+ #: template-list.php:98
2936
+ msgid "Enterprise"
2937
  msgstr ""
2938
 
2939
+ #: template-list.php:108
2940
+ msgid "Facebook"
2941
  msgstr ""
2942
 
2943
+ #: template-list.php:118
2944
+ msgid "Fizzy"
 
 
2945
  msgstr ""
2946
 
2947
+ #: template-list.php:128
2948
+ msgid "Gamer"
 
 
2949
  msgstr ""
2950
 
2951
+ #: template-list.php:138
2952
+ msgid "Gravity"
2953
  msgstr ""
2954
 
2955
+ #: template-list.php:149
2956
+ msgid "Shell"
2957
  msgstr ""
2958
 
2959
+ #: template-list.php:159
2960
+ msgid "Tabbed layout"
 
 
2961
  msgstr ""
2962
 
2963
+ #: template-list.php:169
2964
+ msgid "Tabbed layout 2"
 
 
2965
  msgstr ""
2966
 
2967
+ #: template-list.php:179
2968
+ msgid "Xiaomi"
2969
  msgstr ""
2970
 
2971
+ #: template-list.php:189
2972
+ msgid "Zine"
2973
  msgstr ""
2974
 
2975
+ #. translators: PHP version.
2976
+ #: wp-review.php:38
2977
+ #, php-format
2978
+ msgid ""
2979
+ "<strong>WP Review</strong> requires PHP version 5.6 or above. You are "
2980
+ "running version %s. Please update PHP to run this plugin."
2981
  msgstr ""
public/css/wp-review.css CHANGED
@@ -1 +1,1771 @@
1
- .review-list li:after,.wp-reviews-list .item:after,.wp-reviews-list .reviews-pagination:after,[data-ui-tabs] .ui-tabs-nav:after,[data-wp-review-tabs] .tab-titles:after{content:" ";display:block;height:0;visibility:hidden;clear:both}.review-wrapper{border:1px solid #e7e7e7;margin-bottom:30px;clear:both;box-sizing:border-box}.review-wrapper .review-list{margin:0;list-style:none;padding:0;clear:both;box-sizing:border-box}.review-wrapper .review-list li{margin:0;list-style:none}.review-wrapper li:after{content:'';display:block;clear:both}.review-wrapper .review-desc li:after{display:none}.review-wrapper .review-total-wrapper h5{font-family:inherit}.review-title{background-color:#f6f6f6;border-bottom:1px solid #e7e7e7;margin:0;padding:15px;box-sizing:border-box;font-family:inherit}.review-price{float:right}.review-links{list-style:none;padding:15px 15px 8px !important;margin:0 !important;overflow:hidden;box-sizing:border-box;width:100%}.review-links li{display:inline-block;margin-bottom:10px}.review-links li a{display:block;padding:4px 10px;margin:0 10px 0 0;border:1px solid;border-radius:5px;outline:0}.review-links li:last-child a{margin-right:0}.review-links .review-links:not(:last-child) a{margin-right:10px}.entry-content .review-wrapper li:last-child a{margin-right:0}.wpr-error{background:#f9ada7;padding:10px;margin:10px 0}.review-list li{box-sizing:border-box;border-bottom:1px solid #e7e7e7;padding:10px 15px;position:relative;list-style:none !important}.review-list li:nth-child(even){background-color:#fafafa}.review-list li:last-child{border-bottom:1px solid #e7e7e7}.wp_review_comment .review-list,.widefat .column-comment ul.review-list{margin:0;padding:0}.wp_review_comment .review-list li,.wp-review-comment-form .review-list li{padding:10px;margin:0;background:#f9f9f9;border-bottom:1px solid #e7e7e7}.review-summary-title{margin-bottom:5px}.review-desc{padding:10px 15px;box-sizing:border-box}.review-desc p:last-child{margin-bottom:0}.review-pros-cons{display:flex;flex-wrap:wrap;padding:10px 15px 30px;clear:both;box-sizing:border-box}.review-pros-cons .review-pros{flex:0 0 50%;padding-right:10px;box-sizing:border-box}.review-pros-cons .review-pros p:last-of-type{margin-bottom:0}.review-pros-cons .review-cons{flex:0 0 50%;padding-left:10px;box-sizing:border-box}.review-pros-cons .review-cons p:last-of-type{margin-bottom:0}.review-pros-cons .review-pros .mb-5 strong:before,.review-pros-cons .review-cons .mb-5 strong:before{content:"\f164";font-family:"FontAwesome";font-weight:normal;margin-right:5px;opacity:0.7}.review-pros-cons .review-cons .mb-5 strong:before{content:"\f165"}.review-pros-cons ul,.review-pros-cons ol{margin:0;margin-left:0;padding:0;list-style:none}.review-pros-cons li{list-style-type:none !important}.review-pros-cons .review-pros ul li:before,.review-pros-cons .review-cons ul li:before{content:"\f00c";font-family:"FontAwesome";opacity:.4;margin-right:7px}.review-pros-cons .review-cons ul li:before{content:"\f00d"}.wp_review_comment .review-pros-cons{padding-left:0;padding-right:0}textarea#wp_review_comment_pros,textarea#wp_review_comment_cons{height:100px}.wp-review-comment-form-qualifier label{display:block}.wp-review-comment-form-qualifier select{display:block;width:100%}#review .review-desc ul,#review .review-desc ol{margin:0;margin-left:0;padding:0}.review-result-wrapper{white-space:nowrap;position:relative}.review-star .review-result-wrapper{display:inline-block}.review-star .review-result-wrapper img.wp-review-image{max-width:20px;max-height:20px;display:inline-block;opacity:0.6}.wp-review-usercomment-rating-star .review-result-wrapper img{opacity:0.6}.wp-review-usercomment-rating-star .review-result-wrapper .review-result img{opacity:1}.review-star .wpr-count{margin-left:3px;vertical-align:top}.review-result-wrapper i,.review-result-wrapper img.wp-review-image{font-style:normal;font-size:16px;padding:0;line-height:inherit}.reviewed-item{display:inline-block;padding:10px 15px;border-bottom:1px solid #e7e7e7;width:100%;box-sizing:border-box}.reviewed-item .review-links{border:0;background:transparent !important}.reviewed-item .review-links li{margin:0}.reviewed-item .reviewed-item-data img{vertical-align:top}.reviewed-item-image{float:right;max-width:40%;margin-left:15px}.rtl .reviewed-item-image{float:left;margin-left:0;margin-right:15px}.reviewed-item-data-label{display:inline-block}.reviewed-item-data p:last-of-type{margin-bottom:0}.review-result{position:absolute;top:0;left:0;overflow:hidden;white-space:nowrap}.rtl .review-result{left:auto;right:0}.review-total-wrapper{float:right;padding-right:0;clear:both;position:relative;box-sizing:border-box;padding:10px 15px 20px 15px}.rtl .review-total-wrapper{float:left}.review-total-wrapper span.review-total-box{border:0;display:block;font-size:40px;font-weight:700;text-align:right;margin:0;padding:35px 0 20px;width:100%;box-sizing:border-box;overflow:hidden}.circle-point span.review-total-box{height:180px}.review-total-wrapper span.review-total-box small{font-size:12px;display:block}.percentage-icon{font-size:22px;position:relative;top:-14px}.review-total-star{position:relative;margin-top:5px;margin:0 auto;float:right}.review-star.review-total{position:relative}.wp-review-loading-msg,.wp-review-loading .review-result-wrapper{display:none}.wp-review-loading .wp-review-loading-msg{display:block}.review-total{z-index:99}.rtl .review-total{left:auto;right:0}.review-star,.wp-review-user-feature-rating-star{position:relative;margin-top:5px;margin:0 auto;display:inline-block}.postbox .review-star{position:relative;right:auto;top:auto}.review-list .review-star,.user-review-area .review-star,.wp-review-point-type .review-total-circle .review-star,.wp-review-percentage-type .review-total-circle .review-star,.review-list .wp-review-user-feature-rating-star{float:right}.rtl .review-list .review-star,.rtl .user-review-area .review-star,.rtl .review-total-circle .review-star,.rtl .wp-review-point-type .review-total-circle .review-star,.rtl .wp-review-percentage-type .review-total-circle .review-star{float:left;margin-right:10px;margin-left:0}.circle-point .review-list li{padding:14px 15px}.review-point .review-result-wrapper,.review-percentage .review-result-wrapper{background:rgba(0,0,0,0.1);width:100%;height:22px}.review-point .review-result-wrapper{background-color:rgba(0,0,0,0.1)}.wp-review-point-type .review-result,.wp-review-percentage-type .review-result,.review-total-point .review-result{position:absolute;top:0px;left:0px;height:22px}.rtl .wp-review-point-type .review-result,.rtl .wp-review-percentage-type .review-result,.rtl .review-total-point .review-result{left:auto;right:0px}.review-total-star.allowed-to-rate .review-result-wrapper{background:none}.wp-review-point-type .review-total-point .review-result-wrapper{background:none}.review-total-percentage.allowed-to-rate.has-not-rated-yet,.review-total-point.allowed-to-rate.has-not-rated-yet{float:none;cursor:pointer}.review-percentage .review-result-wrapper,.review-point .review-result-wrapper{position:relative;width:100%}.review-percentage .review-result,.review-point .review-result{background:currentColor;height:22px}.wp-review-comment-rating.wp-review-comment-rating-point .review-result-wrapper,.wp-review-user-rating.wp-review-user-rating-point .review-result-wrapper,.wp-review-comment-rating.wp-review-comment-rating-percentage .review-result-wrapper,.wp-review-user-rating.wp-review-user-rating-percentage .review-result-wrapper{cursor:pointer}.wp-review-user-rating.wp-review-user-rating-point.has-rated .review-result-wrapper,.wp-review-user-rating.wp-review-user-rating-percentage.has-rated .review-result-wrapper{cursor:default}.wp-review-comment-rating.wp-review-comment-rating-point .review-result-wrapper:hover .review-result,.wp-review-user-rating.wp-review-user-rating-point .review-result-wrapper:hover .review-result,.wp-review-comment-rating.wp-review-comment-rating-percentage .review-result-wrapper:hover .review-result,.wp-review-user-rating.wp-review-user-rating-percentage .review-result-wrapper:hover .review-result{display:block;transition:none}.review-point,.review-percentage{position:relative;clear:both}.wp-review-your-rating{position:absolute;top:102%;left:45%;margin-left:-20px;font-size:12px;line-height:18px;background:#f0f0f0;color:#fff;pointer-events:none;z-index:999;display:none;white-space:nowrap;padding:2px 4px}.rtl .wp-review-your-rating{left:auto;right:45%}.column-wp_review_rating .wp-review-circle-rating{box-shadow:none}.review-point:hover .wp-review-your-rating,.review-percentage:hover .wp-review-your-rating{display:block}.review-result-text{position:absolute;left:4px;top:0px;font-size:16px;line-height:22px;display:none}.rtl .review-result-text{left:auto;right:4px}.wp-review-usercomment-rating .review-result-text,.wp-admin .review-result-text{display:block}.review-total-circle.allowed-to-rate.has-not-rated-yet .review-result-wrapper{cursor:pointer}.wp-review-user-rating-circle .review-result-wrapper{text-align:right}.wp-review-user-rating.wp-review-user-rating-circle.wp-review-input-set{float:right}.wp-review-circle-type .user-total-wrapper{overflow:hidden;margin-top:3px}.review-wrapper .wp-review-circle-rating{padding:0;width:auto;display:inline}.user-review-area .review-circle{float:right;height:32px}.review-list .review-circle{float:right;margin-top:-4px}.wp-review-circle-type .review-total-wrapper>.review-total-box{display:none}.review-circle.review-total{height:100px;width:100px}.entry-content .review-wrapper h1,.entry-content .review-wrapper h2,.entry-content .review-wrapper h3,.entry-content .review-wrapper h4,.entry-content .review-wrapper h5,.entry-content .review-wrapper h6{margin:0}.entry-content .review-summary-title,#content .review-summary-title,.entry-content .reviewed-item p,#content .reviewed-item p{margin-bottom:5px}#content .review-desc p:last-child{margin-bottom:0}#review .review-desc ul{margin:0;margin-left:20px;padding-left:0}.review-total-only{padding:3px 8px;background:#fff;display:inline-block;border-radius:3px}.review-total-only .percentage-icon{font-size:inherit;top:0}.review-total-only .review-type-star{font-size:12px;padding:3px 6px}.review-total-only .review-total-star{font-size:12px;margin:0}.review-result-wrapper .review-result i,.review-result-wrapper .review-result img.wp-review-image{opacity:1;filter:alpha(opacity=100)}.wp-review-box-float-left{margin-right:20px}.wp-review-box-float-right{margin-left:20px}.wpr-user-features-rating{clear:both}.wpr-user-features-rating .user-review-title{padding:10px 15px;margin:0;font-weight:bold}.wpr-user-features-rating .user-total-wrapper{margin:0;display:inline-block}.wpr-user-features-rating .wp-review-user-feature-rating-circle+span{display:inline-block;margin-top:10px}.wpr-user-features-rating .wp-review-user-feature-rating-circle .review-result-wrapper{height:50px}.user-review-area{border-top:1px solid #e7e7e7;padding:10px 15px;position:relative;clear:both;float:left;width:100%;box-sizing:border-box}.user-review-area .wp-review-user-rating-star{float:right}.wp-review-user-rating .review-star .review-result-wrapper:hover span img{opacity:1}.wp-review-user-rating .review-star .review-result-wrapper:hover span:hover ~ span img{opacity:0.6}.review-total-star.allowed-to-rate{float:right;margin:0}.user-review-title{margin:15px 15px 10px;padding:0;font-family:inherit}.user-total-wrapper .user-review-title{font-weight:bold;margin:0;display:inline-block}.wp-review-user-rating .review-result-wrapper span{cursor:pointer;padding:0 0 0 4px}.wp-review-user-rating .review-result-wrapper span img.wp-review-image{opacity:0.6}.wp-review-user-rating .review-result-wrapper span:hover i,.wp-review-user-rating .review-result-wrapper span:hover img.wp-review-image,.wp-review-user-rating .review-result-wrapper span.active i,.wp-review-user-rating .review-result-wrapper span.active img.wp-review-image{opacity:1 !important}.wp-review-user-rating .review-result-wrapper .review-result i,.wp-review-user-rating .review-result-wrapper .review-result img.wp-review-image{padding-left:4px}.wp-review-user-rating.has-rated .review-result-wrapper:hover .review-result{display:block}.wp-review-user-rating .review-result-wrapper:hover .review-result,.wp-review-user-rating.wp-review-loading .review-result-wrapper,.wp-review-user-rating.wp-review-loading .wp-review-your-rating{display:none}.wp-review-user-rating .review-list li{border-top:1px solid}.wpr-rating-accept-btn{width:100%;float:right;border-radius:0;padding:14px;border:0;color:#fff;font-size:inherit;cursor:pointer}.wpr-rating-accept-btn[disabled]{cursor:not-allowed}.wp-review-rating-input.review-point .review-result-wrapper,.wp-review-rating-input.review-percentage .review-result-wrapper,.wp-review-rating-input.review-circle canvas{cursor:pointer}.wp-review-comment-form-rating{margin-bottom:15px}.wp-review-comment-form-rating .review-list li{padding:10px;background:#f9f9f9}.wp-review-comment-form-rating .user-review-title{margin:0;margin-bottom:10px}.wp-review-comment-form-rating .features-rating-list{margin:0;padding:0}.wp-review-comment-field{margin-bottom:10px}.review-total-star-comments{position:relative;display:inline-block}.wp-review-comment-title{font-size:18px}.comment-text-inner{clear:both}.comment .review-list li{margin-bottom:0}.wp-review-comment-rating .review-result-wrapper span{cursor:pointer;padding-left:4px}.wp-review-comment-rating .review-result-wrapper span i,.wp-review-comment-rating .review-result-wrapper span img.wp-review-image{opacity:0.6}.wp-review-comment-rating .review-result-wrapper span:hover i,.wp-review-comment-rating .review-result-wrapper span.active i,.wp-review-comment-rating .review-result-wrapper span:hover img.wp-review-image,.wp-review-comment-rating .review-result-wrapper span.active img.wp-review-image{opacity:1 !important;color:#FFB300}.wp-review-comment-rating .review-result-wrapper span:hover ~ span i{opacity:1;color:currentColor}.wp-review-comment-rating .review-result-wrapper:hover .review-result{display:none}.wp-review-comment-rating .review-result-wrapper .review-result{letter-spacing:-1.9px}.wp-review-comment-rating .review-result-wrapper .review-result i,.wp-review-comment-rating .review-result-wrapper .review-result img.wp-review-image{padding-left:4px}.wp-review-comment-rating .review-result-wrapper:hover span img{opacity:1}.wp-review-comment-rating .review-result-wrapper:hover span:hover ~ span img{opacity:0.6}.wpr-comment-features-rating .wp-review-user-feature-rating-circle{height:50px}.wpr-comment-features-rating .review-list .review-circle{margin-top:0;height:50px}.wpr-comment-features-rating li .wp-review-user-feature-rating-circle+span{margin-top:14px;display:inline-block}.rtl .wp-review-comment-rating .review-result-wrapper span i{float:right}.wp-review-feedback{margin-top:10px}.wp-review-feedback .review-btn{display:inline-block;text-decoration:none;background:#eee;padding:3px 9px;color:#333;border-radius:4px;font-size:14px}.wp-review-feedback .review-btn.voted,.wp-review-feedback .review-btn.voted ~ a{cursor:default}.wp-review-feedback .review-btn:hover,.wp-review-feedback .review-btn.voted{text-decoration:none;background:#81C784;color:#fff !important}.wp-review-feedback .review-btn:nth-child(2){margin-left:5px}.rtl .wp-review-feedback .review-btn:nth-child(2){margin-left:auto;margin-right:5px}.wp-review-feedback .review-btn:nth-child(2):hover,.wp-review-feedback .review-btn.voted:nth-child(2){text-decoration:none;background-color:#E57373;color:#fff !important}.wp-review-comment-form-title{clear:both;margin-bottom:15px}.wp-review-comment-form-author label,.wp-review-comment-form-email label,.wp-review-comment-form-url label{padding-left:0 !important;margin-left:0 !important}.wp-review-comment-rating-circle-wrapper .review-comment-field-msg{vertical-align:middle;margin-right:0}.wp-review-comment-rating-circle-wrapper .wp-review-comment-field-inner{display:inline-block;vertical-align:middle}.wp-review-comment-rating .review-result-wrapper a{text-decoration:none;border:none}.wp-review-comment-rating-star .review-total-star{float:none}.wp-review-comment-rating-circle-wrapper .wp-review-comment-field-inner,.wp-review-comment-rating-star-wrapper .wp-review-comment-field-inner{display:inline-block}.wp-review-comment-form .wp-review-comment-field-inner{display:block}.wp-review-comment-form .user-review-title{margin:0 0 10px}.wp-review-comment-form .wpr-comment-features-rating>ul{margin:0}#comments .wp-review-comment-qualifier,#comments .wp-review-usercomment-image{margin-bottom:15px}#comments .wp-review-usercomment-image img{float:left !important;max-width:100%}.wp-review-usercomment-rating,#comments .wp-review-usercomment-rating{margin-bottom:15px}.wp-review-usercomment-rating ul,.wp-review-usercomment-rating ol,#comments .wp-review-usercomment-rating ul,#comments .wp-review-usercomment-rating ol{margin:0;margin-bottom:10px;padding-left:0;list-style-type:none}.wp-review-usercomment-rating li,#comments .wp-review-usercomment-rating li{display:block;margin-bottom:15px}.wp-review-usercomment-rating .review-star,#comments .wp-review-usercomment-rating .review-star{position:relative;top:0;right:0;display:inline-block}.wp-review-comment-rating-star{display:inline-block}form.wp-review-comment-form input,#commentform.wp-review-comment-form input,#commentform.wp-review-comment-form select{width:100%;max-width:100%;height:44px;font-size:16px;padding-left:2.5%;box-sizing:border-box}.rtl form.wp-review-comment-form input,.rtl #commentform.wp-review-comment-form input{padding-left:auto;padding-right:2.5%}form.wp-review-comment-form textarea,#commentform.wp-review-comment-form textarea{width:100%;background:rgba(0,0,0,0.035);border:1px solid rgba(0,0,0,0.05);color:rgba(0,0,0,0.31);max-width:100%;font-size:16px;padding-left:2.5%;box-sizing:border-box}.rtl form.wp-review-comment-form textarea,.rtl #commentform.wp-review-comment-form textarea{padding-left:auto;padding-right:2.5%}form.wp-review-comment-form>div,#commentform.wp-review-comment-form>div{width:100%;margin-bottom:10px;float:left}.rtl form.wp-review-comment-form>div,.rtl #commentform.wp-review-comment-form>div{float:right}.wp-review-thumbnail-wrapper{position:relative}.wp-review-on-thumbnail{position:absolute;top:0;right:0;background:#fff;padding:2px 4px}.wp-review-on-thumbnail.review-type-star .review-total-star{margin:0}.review-type-circle.latestPost-review-wrapper,.review-type-circle.wp-review-on-thumbnail{height:44px}.latestPost-review-wrapper .wp-review-circle-rating,.wp-review-on-thumbnail .wp-review-circle-rating{font-size:11px !important}.review-type-circle.review-total-only,.review-type-circle.wp-review-show-total{padding-top:6px;height:32px}.latestPost-review-wrapper{padding:2px 8px;background:#444;color:#fff}.review-type-star.latestPost-review-wrapper .review-result-wrapper{color:#fff !important}.review-type-star.latestPost-review-wrapper .review-result-wrapper i,.review-type-star.latestPost-review-wrapper .review-result-wrapper img.wp-review-image{opacity:0.6}.review-type-star.latestPost-review-wrapper .review-result-wrapper .review-result{color:#fff !important}.review-type-star.latestPost-review-wrapper .review-result-wrapper .review-result i,.review-type-star.latestPost-review-wrapper .review-result-wrapper .review-result img.wp-review-image{opacity:1}.widget .wp-review-show-total .review-star,.widget .wp-review-user-rating .review-star{position:relative;top:auto;right:auto}.animate-spin{-webkit-animation:spin 1s infinite linear;animation:spin 1s infinite linear;display:inline-block}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@media screen and (max-width: 600px){#review.review-wrapper .user-review-area .review-percentage,#review.review-wrapper .user-review-area .review-point{width:100% !important;max-width:100%;margin-bottom:10px}.user-review-area .user-total-wrapper{width:100%;max-width:100%}}@media screen and (max-width: 480px){.review-total-wrapper{text-align:right}.user-review-area .user-total-wrapper{max-width:60%;line-height:1.2}.user-review-area .user-total-wrapper .user-review-title{margin-top:0 !important}.review-price{float:none}.review-wrapper .review-title{font-size:16px}.review-total-wrapper span.review-total-box{padding:10px 0 20px;text-align:right;padding-left:10px}.reviewed-item-image{max-width:100%;width:100%;margin:0 0 10px 0;float:left}.rtl .review-total-wrapper span.review-total-box{padding:10px 0 20px;text-align:right;padding-left:0;padding-right:10px}.review-total-star.allowed-to-rate{position:relative;right:auto;left:0;float:left}.rtl .review-total-star.allowed-to-rate{right:0;left:auto;float:right}.review-pros-cons .review-pros,.review-pros-cons .review-cons{flex:0 0 100%;padding:0}.review-pros-cons .review-pros p:last-child,.review-pros-cons .review-cons p:last-child{margin-bottom:0}.review-pros-cons .review-pros{padding-bottom:20px}}.rtl .review-total-box{unicode-bidi:isolate-override}.rtl .wp-review-user-rating-total{unicode-bidi:-webkit-isolate;unicode-bidi:isolate}.rtl .wp-review-user-rating-total+small{unicode-bidi:plaintext}.rtl .review-links li a{margin:0 0 0 10px}.wp-reviews-list{position:relative;border:1px solid #e4e4e4;background-color:#fff}.wp-reviews-list *{box-sizing:border-box}.wp-reviews-list ul{list-style-type:none}.wp-reviews-list .item{padding:10px 15px;border-bottom:1px solid #e4e4e4;border-top:0;position:relative;list-style-type:none;margin:0}.wp-reviews-list .item:last-child{border:none}.wp-reviews-list img{max-width:100%;height:auto}.wp-reviews-list a{color:#444}.wp-reviews-list .thumb_small{float:left;margin-right:12px;padding-top:2px;width:65px;height:65px;overflow:hidden}.wp-reviews-list .thumb_large{float:none;max-width:100%;display:inline-block;margin-bottom:4px;position:relative}.wp-reviews-list .entry-title{font-weight:700;margin:0;padding:0;overflow:hidden}.wp-reviews-list .entry-title span{font-weight:normal}.wp-reviews-list .entry-title a{display:block}.wp-reviews-list .postmeta{color:#999;font-size:13px;margin-top:5px;font-weight:normal;float:right}.wp-reviews-list .review-count{float:left}.wp-reviews-list .review-total-only{display:inline-block;font-weight:normal;background:#eee}.wp-reviews-list .wp-post-image{margin:0 !important}.wp-reviews-list .loading{min-height:120px}.wp-reviews-list .loading:before{content:"";display:block;position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(255,255,255,0.8);z-index:11}.wp-reviews-list .loading:after{content:"";margin:0 auto 3em auto;font-size:10px;position:absolute;top:45%;left:49%;z-index:12;text-indent:-9999em;border-top:0.4em solid rgba(0,0,0,0.2);border-right:0.4em solid rgba(0,0,0,0.2);border-bottom:0.4em solid rgba(0,0,0,0.2);border-left:0.4em solid #000;-webkit-animation:load8 0.5s infinite linear;animation:load8 0.5s infinite linear;border-radius:50%;width:2em;height:2em}.wp-reviews-list .reviews-pagination{padding-bottom:15px}.wp-reviews-list .reviews-pagination a{margin:0 15px}.wp-reviews-list .reviews-pagination .next{float:right}[data-ui-tabs] .ui-tabs-nav{list-style:none;padding:0 30px 0;border-bottom:1px solid rgba(255,255,255,0.1);margin:10px 0}[data-ui-tabs] .ui-tabs-nav li{float:left;margin:0;list-style-type:none}[data-ui-tabs] .ui-tabs-nav a{box-shadow:none;padding:8px 15px;background-color:rgba(0,0,0,0.15);outline:0;float:left;border:0;color:inherit}[data-ui-tabs] .ui-tabs-nav .ui-state-active a{background-color:rgba(255,255,255,0.45)}[data-wp-review-tabs] .tab-titles{list-style:none;padding:0 30px 0;border-bottom:1px solid rgba(255,255,255,0.1);margin:10px 0}[data-wp-review-tabs] .tab-title{float:left;margin:0;list-style-type:none}[data-wp-review-tabs] .tab-title button{box-shadow:none;padding:8px 15px;background-color:rgba(0,0,0,0.15);outline:0;float:left;border:0;color:inherit;cursor:pointer;font-size:inherit}[data-wp-review-tabs] .tab-title.active a{background-color:rgba(255,255,255,0.45)}.wp_review_tab_widget_content{position:relative;border:1px solid #E4E4E4}.wp_review_tab_widget_content img{max-width:100%;height:auto}.wp_review_tab_widget_content a{color:#444}.wp_review_tab_widget_content ul.wp-review-tabs li{list-style:none;display:block;width:50%;float:left;text-align:center;margin:0 !important;padding:0 !important;border:0}.wp_review_tab_widget_content ul.has-1-tabs li{width:100%;float:none;margin:0 auto}.wp_review_tab_widget_content ul.has-3-tabs li{width:33.33%}.wp_review_tab_widget_content ul.has-4-tabs li{width:50%}.wp_review_tab_widget_content .tab_title a{display:block;background:#f0f0f0;border-left:1px solid #E4E4E4;border-bottom:1px solid #E4E4E4;padding:2px 0 4px;line-height:2.4;text-decoration:none;position:relative;font-weight:bold}.wp_review_tab_widget_content .tab_title:first-child a{margin-left:0;border-left:0}.wp_review_tab_widget_content .tab_title.selected a{background:#fff;border-bottom:1px solid #fff}.wp_review_tab_widget_content .inside{background:#fff}.wp_review_tab_widget_content .tab-content li,.widget .wp_review_tab_widget_content .tab-content li{list-style-type:none;float:left;width:100%;box-sizing:border-box;margin:0;padding:10px 15px 15px;border-bottom:1px solid #E4E4E4;text-align:left;color:#444;background:none;position:relative}.wp_review_tab_widget_content .tab-content li:last-child{border:none;margin-bottom:0}.wp_review_tab_thumb_small{float:left;margin-right:12px;padding-top:4px;width:65px;height:65px;overflow:hidden}.wp_review_tab_thumb_large{float:none;max-width:100%;display:inline-block;margin-bottom:4px;position:relative}.wp_review_tab_widget_content .entry-title{font-size:inherit;font-weight:bold;margin:0;padding:0}.wp_review_tab_widget_content .entry-title span{color:#999}.wp_review_tab_widget_content .wp-review-tab-postmeta{color:#999;font-size:13px;float:right;margin-top:5px}.wp_review_tab_widget_content .wp-post-image{margin:0 !important}.wp_review_tab_widget_content .wp-review-tab-pagination{margin:0;width:100%;padding-top:0;padding-bottom:15px;float:left}.wp_review_tab_widget_content .wp-review-tab-pagination a{margin:0 15px}.wp-review-tab-pagination a.next{float:right}.wp-review-tab-loading{min-height:120px}.wp-review-tab-loading:before{content:"";display:block;position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(255,255,255,0.8);z-index:11}.clear{clear:both}.wp-review-tab-loading:after{content:"";margin:0 auto 3em auto;font-size:10px;position:absolute;top:45%;left:49%;z-index:12;text-indent:-9999em;border-top:0.4em solid rgba(0,0,0,0.2);border-right:0.4em solid rgba(0,0,0,0.2);border-bottom:0.4em solid rgba(0,0,0,0.2);border-left:0.4em solid #000;-webkit-animation:load8 0.5s infinite linear;animation:load8 0.5s infinite linear;border-radius:50%;width:2em;height:2em}@-webkit-keyframes load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.review-total-only.small-thumb{font-size:13px;font-weight:bold;padding:1px 0;float:left;box-sizing:border-box;margin-top:3px}.review-total-only.large-thumb{position:absolute;top:10px;right:15px;border-radius:0}.wp_review_tab_widget_content .has-4-tabs .tab_title.selected a{border-bottom:1px solid #E4E4E4}.wp_review_tab_widget_content .has-4-tabs .tab_title:nth-child(3) a{border-left:0}.title-right{overflow:hidden}.wp-review-product-rating{margin-bottom:10px}.wp-review-comment-form-photo{margin-bottom:15px;float:left;width:100%;clear:both;margin-right:0;margin-left:0}.wp-review-comment-form-photo p{margin-bottom:0}.wp-review-comment-form-photo{position:relative}.wp-review-comment-form-photo a{position:absolute;top:0;right:0}.wp-review-comment-form-photo #wp_review_comment_attachment_url{width:100%;box-sizing:border-box;-webkit-box-sizing:border-box}.wp-review-comment-form-photo input{margin-top:8px}.wp-review-comment-form-photo input.input-file{padding-left:0}.wp-review-comment-form-photo .hide{display:none}#comments .wp-review-usercomment-image{display:block;float:left;width:100%}.wp_review_comments_template #comments .is_verified{color:#b75c21;font-weight:bold}#commentform.wp-review-comment-form .comment-form-cookies-consent input{width:auto;height:auto}#commentform.wp-review-comment-form .comment-form-cookies-consent label{margin-left:8px}body.rtl .review-wrapper .review-star .wpr-count{margin-left:0;margin-right:3px}body.rtl .review-wrapper .review-total-wrapper span.review-total-box{text-align:left}body.rtl .review-wrapper .review-pros-cons .review-pros{padding-right:0;padding-left:10px}body.rtl .review-wrapper .review-pros-cons .review-cons{padding-left:0;padding-right:10px}body.rtl .review-wrapper .user-review-area .wp-review-user-rating-star{float:left}body.rtl .wp-review-comment-form-photo a{right:auto;left:0}body.rtl .review-pros-cons .review-pros{padding-right:0;padding-left:10px}body.rtl .review-pros-cons .review-cons{padding-right:10px;padding-left:0}body.rtl #comments .wp-review-usercomment-image img{float:right !important}body.rtl .wpr-businesses .business-data{padding-right:10px;padding-left:5px}body.rtl .wp-reviews-list .thumb_small{float:right;margin-right:0;margin-left:12px}body.rtl .wp-reviews-list .review-count{float:right}body.rtl .wp-reviews-list .postmeta{float:left}body.rtl .wp-reviews-list .reviews-pagination .next{float:left}body.rtl .review-total-only.large-thumb{right:auto;left:15px}body.rtl .wpr-place-reviews .review-image{float:right;margin-right:0;margin-left:10px}@font-face{font-family:'font-icons';src:url("../fonts/font-icons.eot");src:url("../fonts/font-icons.eot") format("embedded-opentype"),url("../fonts/font-icons.woff") format("woff"),url("../fonts/font-icons.ttf") format("truetype"),url("../fonts/font-icons.svg") format("svg");font-weight:normal;font-style:normal}[class^="mts-icon-"]:before,[class*=" mts-icon-"]:before{font-family:"font-icons";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:0;text-align:center;font-variant:normal;text-transform:none;line-height:1em}[class*="mts-icon-loader"]:before{font-family:"font-icons";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}.mts-icon-star:before{content:'\e800'}.mts-icon-loader:before{content:'\e801'}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @charset "UTF-8";
2
+ /*
3
+ * WP Review by MyThemeShop
4
+ * https://mythemeshop.com/plugins/wp-review/
5
+ */
6
+ [data-wp-review-tabs] .tab-titles:after, [data-ui-tabs] .ui-tabs-nav:after, .wp-reviews-list .reviews-pagination:after, .wp-reviews-list .item:after, .review-list li:after {
7
+ content: " ";
8
+ display: block;
9
+ height: 0;
10
+ visibility: hidden;
11
+ clear: both;
12
+ }
13
+
14
+ .review-wrapper {
15
+ border: 1px solid #e7e7e7;
16
+ margin-bottom: 30px;
17
+ clear: both;
18
+ -webkit-box-sizing: border-box;
19
+ box-sizing: border-box;
20
+ }
21
+ .review-wrapper .review-list {
22
+ margin: 0;
23
+ list-style: none;
24
+ padding: 0;
25
+ clear: both;
26
+ -webkit-box-sizing: border-box;
27
+ box-sizing: border-box;
28
+ }
29
+ .review-wrapper .review-list li {
30
+ margin: 0;
31
+ list-style: none;
32
+ }
33
+ .review-wrapper li:after {
34
+ content: "";
35
+ display: block;
36
+ clear: both;
37
+ }
38
+ .review-wrapper .review-desc li:after {
39
+ display: none;
40
+ }
41
+ .review-wrapper .review-total-wrapper h5 {
42
+ font-family: inherit;
43
+ }
44
+
45
+ .review-title {
46
+ background-color: #f6f6f6;
47
+ border-bottom: 1px solid #e7e7e7;
48
+ margin: 0;
49
+ padding: 15px;
50
+ -webkit-box-sizing: border-box;
51
+ box-sizing: border-box;
52
+ font-family: inherit;
53
+ }
54
+
55
+ .review-price {
56
+ float: right;
57
+ }
58
+
59
+ .review-links {
60
+ list-style: none;
61
+ padding: 15px 15px 8px !important;
62
+ margin: 0 !important;
63
+ overflow: hidden;
64
+ -webkit-box-sizing: border-box;
65
+ box-sizing: border-box;
66
+ width: 100%;
67
+ }
68
+ .review-links li {
69
+ display: inline-block;
70
+ margin-bottom: 10px;
71
+ }
72
+ .review-links li a {
73
+ display: block;
74
+ padding: 4px 10px;
75
+ margin: 0 10px 0 0;
76
+ border: 1px solid;
77
+ border-radius: 5px;
78
+ outline: 0;
79
+ }
80
+ .review-links li:last-child a {
81
+ margin-right: 0;
82
+ }
83
+ .review-links .review-links:not(:last-child) a {
84
+ margin-right: 10px;
85
+ }
86
+
87
+ .entry-content .review-wrapper li:last-child a {
88
+ margin-right: 0;
89
+ }
90
+
91
+ .wpr-error {
92
+ background: #f9ada7;
93
+ padding: 10px;
94
+ margin: 10px 0;
95
+ }
96
+
97
+ .review-list li {
98
+ -webkit-box-sizing: border-box;
99
+ box-sizing: border-box;
100
+ border-bottom: 1px solid #e7e7e7;
101
+ padding: 10px 15px;
102
+ position: relative;
103
+ list-style: none !important;
104
+ }
105
+ .review-list li:nth-child(even) {
106
+ background-color: #fafafa;
107
+ }
108
+ .review-list li:last-child {
109
+ border-bottom: 1px solid #e7e7e7;
110
+ }
111
+
112
+ .wp_review_comment .review-list, .widefat .column-comment ul.review-list {
113
+ margin: 0;
114
+ padding: 0;
115
+ }
116
+
117
+ .wp_review_comment .review-list li, .wp-review-comment-form .review-list li {
118
+ padding: 10px;
119
+ margin: 0;
120
+ background: #f9f9f9;
121
+ border-bottom: 1px solid #e7e7e7;
122
+ }
123
+
124
+ .review-summary-title {
125
+ margin-bottom: 5px;
126
+ }
127
+
128
+ .review-desc {
129
+ padding: 10px 15px;
130
+ -webkit-box-sizing: border-box;
131
+ box-sizing: border-box;
132
+ }
133
+
134
+ .review-desc p:last-child {
135
+ margin-bottom: 0;
136
+ }
137
+
138
+ .review-pros-cons {
139
+ display: -webkit-box;
140
+ display: -ms-flexbox;
141
+ display: flex;
142
+ -ms-flex-wrap: wrap;
143
+ flex-wrap: wrap;
144
+ padding: 10px 15px 30px;
145
+ clear: both;
146
+ -webkit-box-sizing: border-box;
147
+ box-sizing: border-box;
148
+ }
149
+ .review-pros-cons .review-pros {
150
+ -webkit-box-flex: 0;
151
+ -ms-flex: 0 0 50%;
152
+ flex: 0 0 50%;
153
+ padding-right: 10px;
154
+ -webkit-box-sizing: border-box;
155
+ box-sizing: border-box;
156
+ }
157
+ .review-pros-cons .review-pros p:last-of-type {
158
+ margin-bottom: 0;
159
+ }
160
+ .review-pros-cons .review-cons {
161
+ -webkit-box-flex: 0;
162
+ -ms-flex: 0 0 50%;
163
+ flex: 0 0 50%;
164
+ padding-left: 10px;
165
+ -webkit-box-sizing: border-box;
166
+ box-sizing: border-box;
167
+ }
168
+ .review-pros-cons .review-cons p:last-of-type {
169
+ margin-bottom: 0;
170
+ }
171
+ .review-pros-cons .review-pros .mb-5 strong:before,
172
+ .review-pros-cons .review-cons .mb-5 strong:before {
173
+ content: "";
174
+ font-family: "FontAwesome";
175
+ font-weight: normal;
176
+ margin-right: 5px;
177
+ opacity: 0.7;
178
+ }
179
+ .review-pros-cons .review-cons .mb-5 strong:before {
180
+ content: "";
181
+ }
182
+ .review-pros-cons ul,
183
+ .review-pros-cons ol {
184
+ margin: 0;
185
+ margin-left: 0;
186
+ padding: 0;
187
+ list-style: none;
188
+ }
189
+ .review-pros-cons li {
190
+ list-style-type: none !important;
191
+ }
192
+ .review-pros-cons .review-pros ul li:before,
193
+ .review-pros-cons .review-cons ul li:before {
194
+ content: "";
195
+ font-family: "FontAwesome";
196
+ opacity: 0.4;
197
+ margin-right: 7px;
198
+ }
199
+ .review-pros-cons .review-cons ul li:before {
200
+ content: "";
201
+ }
202
+
203
+ .wp_review_comment .review-pros-cons {
204
+ padding-left: 0;
205
+ padding-right: 0;
206
+ }
207
+
208
+ textarea#wp_review_comment_pros, textarea#wp_review_comment_cons {
209
+ height: 100px;
210
+ }
211
+
212
+ .wp-review-comment-form-qualifier label {
213
+ display: block;
214
+ }
215
+ .wp-review-comment-form-qualifier select {
216
+ display: block;
217
+ width: 100%;
218
+ }
219
+
220
+ #review .review-desc ul,
221
+ #review .review-desc ol {
222
+ margin: 0;
223
+ margin-left: 0;
224
+ padding: 0;
225
+ }
226
+
227
+ .review-result-wrapper {
228
+ white-space: nowrap;
229
+ position: relative;
230
+ }
231
+
232
+ .review-star .review-result-wrapper {
233
+ display: inline-block;
234
+ }
235
+
236
+ .review-star .review-result-wrapper img.wp-review-image {
237
+ max-width: 20px;
238
+ max-height: 20px;
239
+ display: inline-block;
240
+ opacity: 0.6;
241
+ }
242
+
243
+ .wp-review-usercomment-rating-star .review-result-wrapper img {
244
+ opacity: 0.6;
245
+ }
246
+
247
+ .wp-review-usercomment-rating-star .review-result-wrapper .review-result img {
248
+ opacity: 1;
249
+ }
250
+
251
+ .review-star .wpr-count {
252
+ margin-left: 3px;
253
+ vertical-align: top;
254
+ }
255
+
256
+ .review-result-wrapper i, .review-result-wrapper img.wp-review-image {
257
+ font-style: normal;
258
+ font-size: 16px;
259
+ padding: 0;
260
+ line-height: inherit;
261
+ }
262
+
263
+ .reviewed-item {
264
+ display: inline-block;
265
+ padding: 10px 15px;
266
+ border-bottom: 1px solid #e7e7e7;
267
+ width: 100%;
268
+ -webkit-box-sizing: border-box;
269
+ box-sizing: border-box;
270
+ }
271
+ .reviewed-item .review-links {
272
+ border: 0;
273
+ background: transparent !important;
274
+ }
275
+ .reviewed-item .review-links li {
276
+ margin: 0;
277
+ }
278
+ .reviewed-item .reviewed-item-data img {
279
+ vertical-align: top;
280
+ }
281
+
282
+ .reviewed-item-image {
283
+ float: right;
284
+ max-width: 40%;
285
+ margin-left: 15px;
286
+ }
287
+
288
+ .rtl .reviewed-item-image {
289
+ float: left;
290
+ margin-left: 0;
291
+ margin-right: 15px;
292
+ }
293
+
294
+ .reviewed-item-data-label {
295
+ display: inline-block;
296
+ }
297
+
298
+ .reviewed-item-data p:last-of-type {
299
+ margin-bottom: 0;
300
+ }
301
+
302
+ .review-result {
303
+ position: absolute;
304
+ top: 0;
305
+ left: 0;
306
+ overflow: hidden;
307
+ white-space: nowrap;
308
+ }
309
+
310
+ .rtl .review-result {
311
+ left: auto;
312
+ right: 0;
313
+ }
314
+
315
+ .review-total-wrapper {
316
+ float: right;
317
+ padding-right: 0;
318
+ clear: both;
319
+ position: relative;
320
+ -webkit-box-sizing: border-box;
321
+ box-sizing: border-box;
322
+ padding: 10px 15px 20px 15px;
323
+ }
324
+
325
+ .rtl .review-total-wrapper {
326
+ float: left;
327
+ }
328
+
329
+ .review-total-wrapper span.review-total-box {
330
+ border: 0;
331
+ display: block;
332
+ font-size: 40px;
333
+ font-weight: 700;
334
+ text-align: right;
335
+ margin: 0;
336
+ padding: 35px 0 20px;
337
+ width: 100%;
338
+ -webkit-box-sizing: border-box;
339
+ box-sizing: border-box;
340
+ overflow: hidden;
341
+ }
342
+
343
+ .circle-point span.review-total-box {
344
+ height: 180px;
345
+ }
346
+
347
+ .review-total-wrapper span.review-total-box small {
348
+ font-size: 12px;
349
+ display: block;
350
+ }
351
+
352
+ .percentage-icon {
353
+ font-size: 22px;
354
+ position: relative;
355
+ top: -14px;
356
+ }
357
+
358
+ .review-total-star {
359
+ position: relative;
360
+ margin-top: 5px;
361
+ margin: 0 auto;
362
+ float: right;
363
+ }
364
+
365
+ .review-star.review-total {
366
+ position: relative;
367
+ }
368
+
369
+ .wp-review-loading-msg, .wp-review-loading .review-result-wrapper {
370
+ display: none;
371
+ }
372
+
373
+ .wp-review-loading .wp-review-loading-msg {
374
+ display: block;
375
+ }
376
+
377
+ .review-total {
378
+ z-index: 99;
379
+ }
380
+
381
+ .rtl .review-total {
382
+ left: auto;
383
+ right: 0;
384
+ }
385
+
386
+ .review-star, .wp-review-user-feature-rating-star {
387
+ position: relative;
388
+ margin-top: 5px;
389
+ margin: 0 auto;
390
+ display: inline-block;
391
+ }
392
+
393
+ .postbox .review-star {
394
+ position: relative;
395
+ right: auto;
396
+ top: auto;
397
+ }
398
+
399
+ .review-list .review-star,
400
+ .user-review-area .review-star,
401
+ .wp-review-point-type .review-total-circle .review-star,
402
+ .wp-review-percentage-type .review-total-circle .review-star,
403
+ .review-list .wp-review-user-feature-rating-star {
404
+ float: right;
405
+ text-align: right;
406
+ }
407
+
408
+ .wpr-login-required-message {
409
+ font-size: 80%;
410
+ }
411
+
412
+ .rtl .review-list .review-star,
413
+ .rtl .user-review-area .review-star,
414
+ .rtl .review-total-circle .review-star,
415
+ .rtl .wp-review-point-type .review-total-circle .review-star,
416
+ .rtl .wp-review-percentage-type .review-total-circle .review-star {
417
+ float: left;
418
+ margin-right: 10px;
419
+ margin-left: 0;
420
+ }
421
+
422
+ /**
423
+ * Bar & Percentage Point
424
+ */
425
+ .circle-point .review-list li {
426
+ padding: 14px 15px;
427
+ }
428
+
429
+ .review-point .review-result-wrapper, .review-percentage .review-result-wrapper {
430
+ background: rgba(0, 0, 0, 0.1);
431
+ width: 100%;
432
+ height: 22px;
433
+ }
434
+
435
+ .review-point .review-result-wrapper {
436
+ background-color: rgba(0, 0, 0, 0.1);
437
+ }
438
+
439
+ .wp-review-point-type .review-result, .wp-review-percentage-type .review-result, .review-total-point .review-result {
440
+ position: absolute;
441
+ top: 0px;
442
+ left: 0px;
443
+ height: 22px;
444
+ }
445
+
446
+ .rtl .wp-review-point-type .review-result, .rtl .wp-review-percentage-type .review-result, .rtl .review-total-point .review-result {
447
+ left: auto;
448
+ right: 0px;
449
+ }
450
+
451
+ .review-total-star.allowed-to-rate .review-result-wrapper {
452
+ background: none;
453
+ }
454
+
455
+ .wp-review-point-type .review-total-point .review-result-wrapper {
456
+ background: none;
457
+ }
458
+
459
+ .review-total-percentage.allowed-to-rate.has-not-rated-yet, .review-total-point.allowed-to-rate.has-not-rated-yet {
460
+ float: none;
461
+ cursor: pointer;
462
+ }
463
+
464
+ .review-percentage .review-result-wrapper, .review-point .review-result-wrapper {
465
+ position: relative;
466
+ width: 100%;
467
+ }
468
+
469
+ .review-percentage .review-result, .review-point .review-result {
470
+ background: currentColor;
471
+ height: 22px;
472
+ }
473
+
474
+ .wp-review-comment-rating.wp-review-comment-rating-point .review-result-wrapper, .wp-review-user-rating.wp-review-user-rating-point .review-result-wrapper, .wp-review-comment-rating.wp-review-comment-rating-percentage .review-result-wrapper, .wp-review-user-rating.wp-review-user-rating-percentage .review-result-wrapper {
475
+ cursor: pointer;
476
+ }
477
+
478
+ .wp-review-user-rating.wp-review-user-rating-point.has-rated .review-result-wrapper, .wp-review-user-rating.wp-review-user-rating-percentage.has-rated .review-result-wrapper {
479
+ cursor: default;
480
+ }
481
+
482
+ .wp-review-comment-rating.wp-review-comment-rating-point .review-result-wrapper:hover .review-result, .wp-review-user-rating.wp-review-user-rating-point .review-result-wrapper:hover .review-result, .wp-review-comment-rating.wp-review-comment-rating-percentage .review-result-wrapper:hover .review-result, .wp-review-user-rating.wp-review-user-rating-percentage .review-result-wrapper:hover .review-result {
483
+ display: block;
484
+ -webkit-transition: none;
485
+ -o-transition: none;
486
+ transition: none;
487
+ }
488
+
489
+ .review-point, .review-percentage {
490
+ position: relative;
491
+ clear: both;
492
+ }
493
+
494
+ .wp-review-your-rating {
495
+ position: absolute;
496
+ top: 102%;
497
+ left: 45%;
498
+ margin-left: -20px;
499
+ font-size: 12px;
500
+ line-height: 18px;
501
+ background: #f0f0f0;
502
+ color: #fff;
503
+ pointer-events: none;
504
+ z-index: 999;
505
+ display: none;
506
+ white-space: nowrap;
507
+ padding: 2px 4px;
508
+ }
509
+
510
+ .rtl .wp-review-your-rating {
511
+ left: auto;
512
+ right: 45%;
513
+ }
514
+
515
+ .column-wp_review_rating .wp-review-circle-rating {
516
+ -webkit-box-shadow: none;
517
+ box-shadow: none;
518
+ }
519
+
520
+ .review-point:hover .wp-review-your-rating,
521
+ .review-percentage:hover .wp-review-your-rating {
522
+ display: block;
523
+ }
524
+
525
+ .review-result-text {
526
+ position: absolute;
527
+ left: 4px;
528
+ top: 0px;
529
+ font-size: 16px;
530
+ line-height: 22px;
531
+ display: none;
532
+ }
533
+
534
+ .rtl .review-result-text {
535
+ left: auto;
536
+ right: 4px;
537
+ }
538
+
539
+ .wp-review-usercomment-rating .review-result-text, .wp-admin .review-result-text {
540
+ display: block;
541
+ }
542
+
543
+ /**
544
+ * Circle
545
+ */
546
+ .review-total-circle.allowed-to-rate.has-not-rated-yet .review-result-wrapper {
547
+ cursor: pointer;
548
+ }
549
+
550
+ .wp-review-user-rating-circle .review-result-wrapper {
551
+ text-align: right;
552
+ }
553
+
554
+ .wp-review-user-rating.wp-review-user-rating-circle.wp-review-input-set {
555
+ float: right;
556
+ }
557
+
558
+ .wp-review-circle-type .user-total-wrapper {
559
+ overflow: hidden;
560
+ margin-top: 3px;
561
+ }
562
+
563
+ .review-wrapper .wp-review-circle-rating {
564
+ padding: 0;
565
+ width: auto;
566
+ display: inline;
567
+ }
568
+
569
+ .user-review-area .review-circle {
570
+ float: right;
571
+ height: 32px;
572
+ }
573
+
574
+ .review-list .review-circle {
575
+ float: right;
576
+ margin-top: -4px;
577
+ }
578
+
579
+ .wp-review-circle-type .review-total-wrapper > .review-total-box {
580
+ display: none;
581
+ }
582
+
583
+ .review-circle.review-total {
584
+ height: 100px;
585
+ width: 100px;
586
+ }
587
+
588
+ /**
589
+ * Twenty series themes compatibilty
590
+ */
591
+ .entry-content .review-wrapper h1, .entry-content .review-wrapper h2, .entry-content .review-wrapper h3, .entry-content .review-wrapper h4, .entry-content .review-wrapper h5, .entry-content .review-wrapper h6 {
592
+ margin: 0;
593
+ }
594
+
595
+ .entry-content .review-summary-title, #content .review-summary-title, .entry-content .reviewed-item p, #content .reviewed-item p {
596
+ margin-bottom: 5px;
597
+ }
598
+
599
+ #content .review-desc p:last-child {
600
+ margin-bottom: 0;
601
+ }
602
+
603
+ #review .review-desc ul {
604
+ margin: 0;
605
+ margin-left: 20px;
606
+ padding-left: 0;
607
+ }
608
+
609
+ /**
610
+ * Basic styling for wp_review_display_total
611
+ */
612
+ .review-total-only {
613
+ padding: 3px 8px;
614
+ background: #fff;
615
+ display: inline-block;
616
+ border-radius: 3px;
617
+ }
618
+
619
+ .review-total-only .percentage-icon {
620
+ font-size: inherit;
621
+ top: 0;
622
+ }
623
+
624
+ .review-total-only .review-type-star {
625
+ font-size: 12px;
626
+ padding: 3px 6px;
627
+ }
628
+
629
+ .review-total-only .review-total-star {
630
+ font-size: 12px;
631
+ margin: 0;
632
+ }
633
+
634
+ .review-result-wrapper .review-result i, .review-result-wrapper .review-result img.wp-review-image {
635
+ opacity: 1;
636
+ filter: alpha(opacity=100);
637
+ }
638
+
639
+ .wp-review-box-float-left {
640
+ margin-right: 20px;
641
+ }
642
+
643
+ .wp-review-box-float-right {
644
+ margin-left: 20px;
645
+ }
646
+
647
+ /**
648
+ * Users review area
649
+ */
650
+ .wpr-user-features-rating {
651
+ clear: both;
652
+ }
653
+ .wpr-user-features-rating .user-review-title {
654
+ padding: 10px 15px;
655
+ margin: 0;
656
+ font-weight: bold;
657
+ }
658
+ .wpr-user-features-rating .user-total-wrapper {
659
+ margin: 0;
660
+ display: inline-block;
661
+ }
662
+ .wpr-user-features-rating .wp-review-user-feature-rating-circle + span {
663
+ display: inline-block;
664
+ margin-top: 10px;
665
+ }
666
+ .wpr-user-features-rating .wp-review-user-feature-rating-circle .review-result-wrapper {
667
+ height: 50px;
668
+ }
669
+
670
+ .user-review-area {
671
+ border-top: 1px solid #e7e7e7;
672
+ padding: 10px 15px;
673
+ position: relative;
674
+ clear: both;
675
+ float: left;
676
+ width: 100%;
677
+ -webkit-box-sizing: border-box;
678
+ box-sizing: border-box;
679
+ }
680
+ .user-review-area .wp-review-user-rating-star {
681
+ float: right;
682
+ }
683
+
684
+ .wp-review-user-rating .review-star .review-result-wrapper:hover span img {
685
+ opacity: 1;
686
+ }
687
+ .wp-review-user-rating .review-star .review-result-wrapper:hover span:hover ~ span img {
688
+ opacity: 0.6;
689
+ }
690
+
691
+ .review-total-star.allowed-to-rate {
692
+ float: right;
693
+ margin: 0;
694
+ }
695
+
696
+ .user-review-title {
697
+ margin: 15px 15px 10px;
698
+ padding: 0;
699
+ font-family: inherit;
700
+ }
701
+
702
+ .user-total-wrapper .user-review-title {
703
+ font-weight: bold;
704
+ margin: 0;
705
+ display: inline-block;
706
+ }
707
+
708
+ .wp-review-user-rating .review-result-wrapper span {
709
+ cursor: pointer;
710
+ padding: 0 0 0 4px;
711
+ }
712
+ .wp-review-user-rating .review-result-wrapper span img.wp-review-image {
713
+ opacity: 0.6;
714
+ }
715
+ .wp-review-user-rating .review-result-wrapper span:hover i, .wp-review-user-rating .review-result-wrapper span:hover img.wp-review-image,
716
+ .wp-review-user-rating .review-result-wrapper span.active i,
717
+ .wp-review-user-rating .review-result-wrapper span.active img.wp-review-image {
718
+ opacity: 1 !important;
719
+ }
720
+ .wp-review-user-rating .review-result-wrapper .review-result i, .wp-review-user-rating .review-result-wrapper .review-result img.wp-review-image {
721
+ padding-left: 4px;
722
+ }
723
+ .wp-review-user-rating.has-rated .review-result-wrapper:hover .review-result {
724
+ display: block;
725
+ }
726
+ .wp-review-user-rating .review-result-wrapper:hover .review-result, .wp-review-user-rating.wp-review-loading .review-result-wrapper, .wp-review-user-rating.wp-review-loading .wp-review-your-rating {
727
+ display: none;
728
+ }
729
+ .wp-review-user-rating .review-list li {
730
+ border-top: 1px solid;
731
+ }
732
+
733
+ .wpr-rating-accept-btn {
734
+ width: 100%;
735
+ float: right;
736
+ border-radius: 0;
737
+ padding: 14px;
738
+ border: 0;
739
+ color: #fff;
740
+ font-size: inherit;
741
+ cursor: pointer;
742
+ }
743
+
744
+ .wpr-rating-accept-btn[disabled] {
745
+ cursor: not-allowed;
746
+ }
747
+
748
+ .wp-review-rating-input.review-point .review-result-wrapper,
749
+ .wp-review-rating-input.review-percentage .review-result-wrapper,
750
+ .wp-review-rating-input.review-circle canvas {
751
+ cursor: pointer;
752
+ }
753
+
754
+ /**
755
+ * Review in comments
756
+ */
757
+ .wp-review-comment-form-rating {
758
+ margin-bottom: 15px;
759
+ }
760
+ .wp-review-comment-form-rating .review-list li {
761
+ padding: 10px;
762
+ background: #f9f9f9;
763
+ }
764
+ .wp-review-comment-form-rating .user-review-title {
765
+ margin: 0;
766
+ margin-bottom: 10px;
767
+ }
768
+ .wp-review-comment-form-rating .features-rating-list {
769
+ margin: 0;
770
+ padding: 0;
771
+ }
772
+
773
+ .wp-review-comment-field {
774
+ margin-bottom: 10px;
775
+ }
776
+
777
+ .review-total-star-comments {
778
+ position: relative;
779
+ display: inline-block;
780
+ }
781
+
782
+ .wp-review-comment-title {
783
+ font-size: 18px;
784
+ }
785
+
786
+ .comment-text-inner {
787
+ clear: both;
788
+ }
789
+
790
+ .comment .review-list li {
791
+ margin-bottom: 0;
792
+ }
793
+
794
+ .wp-review-comment-rating .review-result-wrapper span {
795
+ cursor: pointer;
796
+ padding-left: 4px;
797
+ }
798
+ .wp-review-comment-rating .review-result-wrapper span i, .wp-review-comment-rating .review-result-wrapper span img.wp-review-image {
799
+ opacity: 0.6;
800
+ }
801
+ .wp-review-comment-rating .review-result-wrapper span:hover i,
802
+ .wp-review-comment-rating .review-result-wrapper span.active i,
803
+ .wp-review-comment-rating .review-result-wrapper span:hover img.wp-review-image,
804
+ .wp-review-comment-rating .review-result-wrapper span.active img.wp-review-image {
805
+ opacity: 1 !important;
806
+ color: #FFB300;
807
+ }
808
+ .wp-review-comment-rating .review-result-wrapper span:hover ~ span i {
809
+ opacity: 1;
810
+ color: currentColor;
811
+ }
812
+ .wp-review-comment-rating .review-result-wrapper:hover .review-result {
813
+ display: none;
814
+ }
815
+ .wp-review-comment-rating .review-result-wrapper .review-result {
816
+ letter-spacing: -1.9px;
817
+ }
818
+ .wp-review-comment-rating .review-result-wrapper .review-result i, .wp-review-comment-rating .review-result-wrapper .review-result img.wp-review-image {
819
+ padding-left: 4px;
820
+ }
821
+ .wp-review-comment-rating .review-result-wrapper:hover span img {
822
+ opacity: 1;
823
+ }
824
+ .wp-review-comment-rating .review-result-wrapper:hover span:hover ~ span img {
825
+ opacity: 0.6;
826
+ }
827
+
828
+ .wpr-comment-features-rating .wp-review-user-feature-rating-circle {
829
+ height: 50px;
830
+ }
831
+ .wpr-comment-features-rating .review-list .review-circle {
832
+ margin-top: 0;
833
+ height: 50px;
834
+ }
835
+ .wpr-comment-features-rating li .wp-review-user-feature-rating-circle + span {
836
+ margin-top: 14px;
837
+ display: inline-block;
838
+ }
839
+
840
+ .rtl .wp-review-comment-rating .review-result-wrapper span i {
841
+ float: right;
842
+ }
843
+
844
+ .wp-review-feedback {
845
+ margin-top: 10px;
846
+ }
847
+
848
+ .wp-review-feedback .review-btn {
849
+ display: inline-block;
850
+ text-decoration: none;
851
+ background: #eee;
852
+ padding: 3px 9px;
853
+ color: #333;
854
+ border-radius: 4px;
855
+ font-size: 14px;
856
+ }
857
+
858
+ .wp-review-feedback .review-btn.voted, .wp-review-feedback .review-btn.voted ~ a {
859
+ cursor: default;
860
+ }
861
+
862
+ .wp-review-feedback .review-btn:hover, .wp-review-feedback .review-btn.voted {
863
+ text-decoration: none;
864
+ background: #81C784;
865
+ color: #fff !important;
866
+ }
867
+
868
+ .wp-review-feedback .review-btn:nth-child(2) {
869
+ margin-left: 5px;
870
+ }
871
+
872
+ .rtl .wp-review-feedback .review-btn:nth-child(2) {
873
+ margin-left: auto;
874
+ margin-right: 5px;
875
+ }
876
+
877
+ .wp-review-feedback .review-btn:nth-child(2):hover, .wp-review-feedback .review-btn.voted:nth-child(2) {
878
+ text-decoration: none;
879
+ background-color: #E57373;
880
+ color: #fff !important;
881
+ }
882
+
883
+ .wp-review-comment-form-title {
884
+ clear: both;
885
+ margin-bottom: 15px;
886
+ }
887
+
888
+ .wp-review-comment-form-author label, .wp-review-comment-form-email label, .wp-review-comment-form-url label {
889
+ padding-left: 0 !important;
890
+ margin-left: 0 !important;
891
+ }
892
+
893
+ .wp-review-comment-rating-circle-wrapper .review-comment-field-msg {
894
+ vertical-align: middle;
895
+ margin-right: 0;
896
+ }
897
+
898
+ .wp-review-comment-rating-circle-wrapper .wp-review-comment-field-inner {
899
+ display: inline-block;
900
+ vertical-align: middle;
901
+ }
902
+
903
+ .wp-review-comment-rating .review-result-wrapper a {
904
+ text-decoration: none;
905
+ border: none;
906
+ }
907
+
908
+ .wp-review-comment-rating-star .review-total-star {
909
+ float: none;
910
+ }
911
+
912
+ .wp-review-comment-rating-circle-wrapper .wp-review-comment-field-inner, .wp-review-comment-rating-star-wrapper .wp-review-comment-field-inner {
913
+ display: inline-block;
914
+ }
915
+
916
+ .wp-review-comment-form .wp-review-comment-field-inner {
917
+ display: block;
918
+ }
919
+ .wp-review-comment-form .user-review-title {
920
+ margin: 0 0 10px;
921
+ }
922
+ .wp-review-comment-form .wpr-comment-features-rating > ul {
923
+ margin: 0;
924
+ }
925
+
926
+ #comments .wp-review-comment-qualifier, #comments .wp-review-usercomment-image {
927
+ margin-bottom: 15px;
928
+ }
929
+
930
+ #comments .wp-review-usercomment-image img {
931
+ float: left !important;
932
+ max-width: 100%;
933
+ }
934
+
935
+ .wp-review-usercomment-rating, #comments .wp-review-usercomment-rating {
936
+ margin-bottom: 15px;
937
+ }
938
+ .wp-review-usercomment-rating ul, .wp-review-usercomment-rating ol, #comments .wp-review-usercomment-rating ul, #comments .wp-review-usercomment-rating ol {
939
+ margin: 0;
940
+ margin-bottom: 10px;
941
+ padding-left: 0;
942
+ list-style-type: none;
943
+ }
944
+ .wp-review-usercomment-rating li, #comments .wp-review-usercomment-rating li {
945
+ display: block;
946
+ margin-bottom: 15px;
947
+ }
948
+ .wp-review-usercomment-rating .review-star, #comments .wp-review-usercomment-rating .review-star {
949
+ position: relative;
950
+ top: 0;
951
+ right: 0;
952
+ display: inline-block;
953
+ }
954
+
955
+ .wp-review-comment-rating-star {
956
+ display: inline-block;
957
+ }
958
+
959
+ form.wp-review-comment-form input, #commentform.wp-review-comment-form input, #commentform.wp-review-comment-form select {
960
+ width: 100%;
961
+ max-width: 100%;
962
+ height: 44px;
963
+ font-size: 16px;
964
+ padding-left: 2.5%;
965
+ -webkit-box-sizing: border-box;
966
+ box-sizing: border-box;
967
+ }
968
+
969
+ .rtl form.wp-review-comment-form input, .rtl #commentform.wp-review-comment-form input {
970
+ padding-left: auto;
971
+ padding-right: 2.5%;
972
+ }
973
+
974
+ form.wp-review-comment-form textarea, #commentform.wp-review-comment-form textarea {
975
+ width: 100%;
976
+ background: rgba(0, 0, 0, 0.035);
977
+ border: 1px solid rgba(0, 0, 0, 0.05);
978
+ color: rgba(0, 0, 0, 0.31);
979
+ max-width: 100%;
980
+ font-size: 16px;
981
+ padding-left: 2.5%;
982
+ -webkit-box-sizing: border-box;
983
+ box-sizing: border-box;
984
+ }
985
+
986
+ .rtl form.wp-review-comment-form textarea, .rtl #commentform.wp-review-comment-form textarea {
987
+ padding-left: auto;
988
+ padding-right: 2.5%;
989
+ }
990
+
991
+ form.wp-review-comment-form > div, #commentform.wp-review-comment-form > div {
992
+ width: 100%;
993
+ margin-bottom: 10px;
994
+ float: left;
995
+ }
996
+
997
+ .rtl form.wp-review-comment-form > div, .rtl #commentform.wp-review-comment-form > div {
998
+ float: right;
999
+ }
1000
+
1001
+ /**
1002
+ * Show on thumbnails
1003
+ */
1004
+ .wp-review-thumbnail-wrapper {
1005
+ position: relative;
1006
+ }
1007
+
1008
+ .wp-review-on-thumbnail {
1009
+ position: absolute;
1010
+ top: 0;
1011
+ right: 0;
1012
+ background: #fff;
1013
+ padding: 2px 4px;
1014
+ }
1015
+
1016
+ .wp-review-on-thumbnail.review-type-star .review-total-star {
1017
+ margin: 0;
1018
+ }
1019
+
1020
+ .review-type-circle.latestPost-review-wrapper, .review-type-circle.wp-review-on-thumbnail {
1021
+ height: 44px;
1022
+ }
1023
+
1024
+ .latestPost-review-wrapper .wp-review-circle-rating, .wp-review-on-thumbnail .wp-review-circle-rating {
1025
+ font-size: 11px !important;
1026
+ }
1027
+
1028
+ .review-type-circle.review-total-only, .review-type-circle.wp-review-show-total {
1029
+ padding-top: 6px;
1030
+ height: 32px;
1031
+ }
1032
+
1033
+ .latestPost-review-wrapper {
1034
+ padding: 2px 8px;
1035
+ background: #444;
1036
+ color: #fff;
1037
+ }
1038
+
1039
+ .review-type-star.latestPost-review-wrapper .review-result-wrapper {
1040
+ color: #fff !important;
1041
+ }
1042
+ .review-type-star.latestPost-review-wrapper .review-result-wrapper i, .review-type-star.latestPost-review-wrapper .review-result-wrapper img.wp-review-image {
1043
+ opacity: 0.6;
1044
+ }
1045
+ .review-type-star.latestPost-review-wrapper .review-result-wrapper .review-result {
1046
+ color: #fff !important;
1047
+ }
1048
+ .review-type-star.latestPost-review-wrapper .review-result-wrapper .review-result i, .review-type-star.latestPost-review-wrapper .review-result-wrapper .review-result img.wp-review-image {
1049
+ opacity: 1;
1050
+ }
1051
+
1052
+ .widget .wp-review-show-total .review-star, .widget .wp-review-user-rating .review-star {
1053
+ position: relative;
1054
+ top: auto;
1055
+ right: auto;
1056
+ }
1057
+
1058
+ /*
1059
+ * Spin Animation For Loader
1060
+ */
1061
+ .animate-spin {
1062
+ -webkit-animation: spin 1s infinite linear;
1063
+ animation: spin 1s infinite linear;
1064
+ display: inline-block;
1065
+ }
1066
+
1067
+ @-webkit-keyframes spin {
1068
+ 0% {
1069
+ -webkit-transform: rotate(0deg);
1070
+ transform: rotate(0deg);
1071
+ }
1072
+ 100% {
1073
+ -webkit-transform: rotate(359deg);
1074
+ transform: rotate(359deg);
1075
+ }
1076
+ }
1077
+ @keyframes spin {
1078
+ 0% {
1079
+ -webkit-transform: rotate(0deg);
1080
+ transform: rotate(0deg);
1081
+ }
1082
+ 100% {
1083
+ -webkit-transform: rotate(359deg);
1084
+ transform: rotate(359deg);
1085
+ }
1086
+ }
1087
+ /*-----------------------------------------------------*/
1088
+ /* Responsvie
1089
+ /*-----------------------------------------------------*/
1090
+ @media screen and (max-width: 600px) {
1091
+ #review.review-wrapper .user-review-area .review-percentage, #review.review-wrapper .user-review-area .review-point {
1092
+ width: 100% !important;
1093
+ max-width: 100%;
1094
+ margin-bottom: 10px;
1095
+ }
1096
+
1097
+ .user-review-area .user-total-wrapper {
1098
+ width: 100%;
1099
+ max-width: 100%;
1100
+ }
1101
+ }
1102
+ @media screen and (max-width: 480px) {
1103
+ .review-total-wrapper {
1104
+ text-align: right;
1105
+ }
1106
+
1107
+ .user-review-area .user-total-wrapper {
1108
+ max-width: 60%;
1109
+ line-height: 1.2;
1110
+ }
1111
+
1112
+ .user-review-area .user-total-wrapper .user-review-title {
1113
+ margin-top: 0 !important;
1114
+ }
1115
+
1116
+ .review-price {
1117
+ float: none;
1118
+ }
1119
+
1120
+ .review-wrapper .review-title {
1121
+ font-size: 16px;
1122
+ }
1123
+
1124
+ .review-total-wrapper span.review-total-box {
1125
+ padding: 10px 0 20px;
1126
+ text-align: right;
1127
+ padding-left: 10px;
1128
+ }
1129
+
1130
+ .reviewed-item-image {
1131
+ max-width: 100%;
1132
+ width: 100%;
1133
+ margin: 0 0 10px 0;
1134
+ float: left;
1135
+ }
1136
+
1137
+ .rtl .review-total-wrapper span.review-total-box {
1138
+ padding: 10px 0 20px;
1139
+ text-align: right;
1140
+ padding-left: 0;
1141
+ padding-right: 10px;
1142
+ }
1143
+
1144
+ .review-total-star.allowed-to-rate {
1145
+ position: relative;
1146
+ right: auto;
1147
+ left: 0;
1148
+ float: left;
1149
+ }
1150
+
1151
+ .rtl .review-total-star.allowed-to-rate {
1152
+ right: 0;
1153
+ left: auto;
1154
+ float: right;
1155
+ }
1156
+
1157
+ .review-pros-cons .review-pros, .review-pros-cons .review-cons {
1158
+ -webkit-box-flex: 0;
1159
+ -ms-flex: 0 0 100%;
1160
+ flex: 0 0 100%;
1161
+ padding: 0;
1162
+ }
1163
+ .review-pros-cons .review-pros p:last-child, .review-pros-cons .review-cons p:last-child {
1164
+ margin-bottom: 0;
1165
+ }
1166
+
1167
+ .review-pros-cons .review-pros {
1168
+ padding-bottom: 20px;
1169
+ }
1170
+ }
1171
+ .rtl .review-total-box {
1172
+ unicode-bidi: -moz-isolate-override;
1173
+ unicode-bidi: isolate-override;
1174
+ }
1175
+
1176
+ .rtl .wp-review-user-rating-total {
1177
+ unicode-bidi: -webkit-isolate;
1178
+ unicode-bidi: -moz-isolate;
1179
+ unicode-bidi: isolate;
1180
+ }
1181
+
1182
+ .rtl .wp-review-user-rating-total + small {
1183
+ unicode-bidi: -moz-plaintext;
1184
+ unicode-bidi: plaintext;
1185
+ }
1186
+
1187
+ .rtl .review-links li a {
1188
+ margin: 0 0 0 10px;
1189
+ }
1190
+
1191
+ /*---------------------------
1192
+ * Reviews list
1193
+ *--------------------------*/
1194
+ .wp-reviews-list {
1195
+ position: relative;
1196
+ border: 1px solid #e4e4e4;
1197
+ background-color: #fff;
1198
+ /* Loading... */
1199
+ }
1200
+ .wp-reviews-list * {
1201
+ -webkit-box-sizing: border-box;
1202
+ box-sizing: border-box;
1203
+ }
1204
+ .wp-reviews-list ul {
1205
+ list-style-type: none;
1206
+ }
1207
+ .wp-reviews-list .item {
1208
+ padding: 10px 15px;
1209
+ border-bottom: 1px solid #e4e4e4;
1210
+ border-top: 0;
1211
+ position: relative;
1212
+ list-style-type: none;
1213
+ margin: 0;
1214
+ }
1215
+ .wp-reviews-list .item:last-child {
1216
+ border: none;
1217
+ }
1218
+ .wp-reviews-list img {
1219
+ max-width: 100%;
1220
+ height: auto;
1221
+ }
1222
+ .wp-reviews-list a {
1223
+ color: #444;
1224
+ }
1225
+ .wp-reviews-list .thumb_small {
1226
+ float: left;
1227
+ margin-right: 12px;
1228
+ padding-top: 2px;
1229
+ width: 65px;
1230
+ height: 65px;
1231
+ overflow: hidden;
1232
+ }
1233
+ .wp-reviews-list .thumb_large {
1234
+ float: none;
1235
+ max-width: 100%;
1236
+ display: inline-block;
1237
+ margin-bottom: 4px;
1238
+ position: relative;
1239
+ }
1240
+ .wp-reviews-list .entry-title {
1241
+ font-weight: 700;
1242
+ margin: 0;
1243
+ padding: 0;
1244
+ overflow: hidden;
1245
+ }
1246
+ .wp-reviews-list .entry-title span {
1247
+ font-weight: normal;
1248
+ }
1249
+ .wp-reviews-list .entry-title a {
1250
+ display: block;
1251
+ }
1252
+ .wp-reviews-list .postmeta {
1253
+ color: #999;
1254
+ font-size: 13px;
1255
+ margin-top: 5px;
1256
+ font-weight: normal;
1257
+ float: right;
1258
+ }
1259
+ .wp-reviews-list .review-count {
1260
+ float: left;
1261
+ }
1262
+ .wp-reviews-list .review-total-only {
1263
+ display: inline-block;
1264
+ font-weight: normal;
1265
+ background: #eee;
1266
+ }
1267
+ .wp-reviews-list .wp-post-image {
1268
+ margin: 0 !important;
1269
+ }
1270
+ .wp-reviews-list .loading {
1271
+ min-height: 120px;
1272
+ }
1273
+ .wp-reviews-list .loading:before {
1274
+ content: "";
1275
+ display: block;
1276
+ position: absolute;
1277
+ top: 0;
1278
+ right: 0;
1279
+ bottom: 0;
1280
+ left: 0;
1281
+ background-color: rgba(255, 255, 255, 0.8);
1282
+ z-index: 11;
1283
+ }
1284
+ .wp-reviews-list .loading:after {
1285
+ content: "";
1286
+ margin: 0 auto 3em auto;
1287
+ font-size: 10px;
1288
+ position: absolute;
1289
+ top: 45%;
1290
+ left: 49%;
1291
+ z-index: 12;
1292
+ text-indent: -9999em;
1293
+ border-top: 0.4em solid rgba(0, 0, 0, 0.2);
1294
+ border-right: 0.4em solid rgba(0, 0, 0, 0.2);
1295
+ border-bottom: 0.4em solid rgba(0, 0, 0, 0.2);
1296
+ border-left: 0.4em solid #000;
1297
+ -webkit-animation: load8 0.5s infinite linear;
1298
+ animation: load8 0.5s infinite linear;
1299
+ border-radius: 50%;
1300
+ width: 2em;
1301
+ height: 2em;
1302
+ }
1303
+ .wp-reviews-list .reviews-pagination {
1304
+ padding-bottom: 15px;
1305
+ }
1306
+ .wp-reviews-list .reviews-pagination a {
1307
+ margin: 0 15px;
1308
+ }
1309
+ .wp-reviews-list .reviews-pagination .next {
1310
+ float: right;
1311
+ }
1312
+
1313
+ [data-ui-tabs] .ui-tabs-nav {
1314
+ list-style: none;
1315
+ padding: 0 30px 0;
1316
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
1317
+ margin: 10px 0;
1318
+ }
1319
+ [data-ui-tabs] .ui-tabs-nav li {
1320
+ float: left;
1321
+ margin: 0;
1322
+ list-style-type: none;
1323
+ }
1324
+ [data-ui-tabs] .ui-tabs-nav a {
1325
+ -webkit-box-shadow: none;
1326
+ box-shadow: none;
1327
+ padding: 8px 15px;
1328
+ background-color: rgba(0, 0, 0, 0.15);
1329
+ outline: 0;
1330
+ float: left;
1331
+ border: 0;
1332
+ color: inherit;
1333
+ }
1334
+ [data-ui-tabs] .ui-tabs-nav .ui-state-active a {
1335
+ background-color: rgba(255, 255, 255, 0.45);
1336
+ }
1337
+
1338
+ [data-wp-review-tabs] .tab-titles {
1339
+ list-style: none;
1340
+ padding: 0 30px 0;
1341
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
1342
+ margin: 10px 0;
1343
+ }
1344
+ [data-wp-review-tabs] .tab-title {
1345
+ float: left;
1346
+ margin: 0;
1347
+ list-style-type: none;
1348
+ }
1349
+ [data-wp-review-tabs] .tab-title button {
1350
+ -webkit-box-shadow: none;
1351
+ box-shadow: none;
1352
+ padding: 8px 15px;
1353
+ background-color: rgba(0, 0, 0, 0.15);
1354
+ outline: 0;
1355
+ float: left;
1356
+ border: 0;
1357
+ color: inherit;
1358
+ cursor: pointer;
1359
+ font-size: inherit;
1360
+ }
1361
+ [data-wp-review-tabs] .tab-title.active a {
1362
+ background-color: rgba(255, 255, 255, 0.45);
1363
+ }
1364
+
1365
+ .wp_review_tab_widget_content {
1366
+ position: relative;
1367
+ border: 1px solid #E4E4E4;
1368
+ }
1369
+
1370
+ .wp_review_tab_widget_content img {
1371
+ max-width: 100%;
1372
+ height: auto;
1373
+ }
1374
+
1375
+ .wp_review_tab_widget_content a {
1376
+ color: #444;
1377
+ }
1378
+
1379
+ .wp_review_tab_widget_content ul.wp-review-tabs li {
1380
+ list-style: none;
1381
+ display: block;
1382
+ width: 50%;
1383
+ float: left;
1384
+ text-align: center;
1385
+ margin: 0 !important;
1386
+ padding: 0 !important;
1387
+ border: 0;
1388
+ }
1389
+
1390
+ .wp_review_tab_widget_content ul.has-1-tabs li {
1391
+ width: 100%;
1392
+ float: none;
1393
+ margin: 0 auto;
1394
+ }
1395
+
1396
+ .wp_review_tab_widget_content ul.has-3-tabs li {
1397
+ width: 33.33%;
1398
+ }
1399
+
1400
+ .wp_review_tab_widget_content ul.has-4-tabs li {
1401
+ width: 50%;
1402
+ }
1403
+
1404
+ .wp_review_tab_widget_content .tab_title a {
1405
+ display: block;
1406
+ background: #f0f0f0;
1407
+ border-left: 1px solid #E4E4E4;
1408
+ border-bottom: 1px solid #E4E4E4;
1409
+ padding: 2px 0 4px;
1410
+ line-height: 2.4;
1411
+ text-decoration: none;
1412
+ position: relative;
1413
+ font-weight: bold;
1414
+ }
1415
+
1416
+ .wp_review_tab_widget_content .tab_title:first-child a {
1417
+ margin-left: 0;
1418
+ border-left: 0;
1419
+ }
1420
+
1421
+ .wp_review_tab_widget_content .tab_title.selected a {
1422
+ background: #fff;
1423
+ border-bottom: 1px solid #fff;
1424
+ }
1425
+
1426
+ .wp_review_tab_widget_content .inside {
1427
+ background: #fff;
1428
+ }
1429
+
1430
+ .wp_review_tab_widget_content .tab-content li, .widget .wp_review_tab_widget_content .tab-content li {
1431
+ list-style-type: none;
1432
+ float: left;
1433
+ width: 100%;
1434
+ -webkit-box-sizing: border-box;
1435
+ box-sizing: border-box;
1436
+ margin: 0;
1437
+ padding: 10px 15px 15px;
1438
+ border-bottom: 1px solid #E4E4E4;
1439
+ text-align: left;
1440
+ color: #444;
1441
+ background: none;
1442
+ position: relative;
1443
+ }
1444
+
1445
+ .wp_review_tab_widget_content .tab-content li:last-child {
1446
+ border: none;
1447
+ margin-bottom: 0;
1448
+ }
1449
+
1450
+ .wp_review_tab_thumb_small {
1451
+ float: left;
1452
+ margin-right: 12px;
1453
+ padding-top: 4px;
1454
+ width: 65px;
1455
+ height: 65px;
1456
+ overflow: hidden;
1457
+ }
1458
+
1459
+ .wp_review_tab_thumb_large {
1460
+ float: none;
1461
+ max-width: 100%;
1462
+ display: inline-block;
1463
+ margin-bottom: 4px;
1464
+ position: relative;
1465
+ }
1466
+
1467
+ .wp_review_tab_widget_content .entry-title {
1468
+ font-size: inherit;
1469
+ font-weight: bold;
1470
+ margin: 0;
1471
+ padding: 0;
1472
+ }
1473
+
1474
+ .wp_review_tab_widget_content .entry-title span {
1475
+ color: #999;
1476
+ }
1477
+
1478
+ .wp_review_tab_widget_content .wp-review-tab-postmeta {
1479
+ color: #999;
1480
+ font-size: 13px;
1481
+ float: right;
1482
+ margin-top: 5px;
1483
+ }
1484
+
1485
+ .wp_review_tab_widget_content .wp-post-image {
1486
+ margin: 0 !important;
1487
+ }
1488
+
1489
+ /* Pagination */
1490
+ .wp_review_tab_widget_content .wp-review-tab-pagination {
1491
+ margin: 0;
1492
+ width: 100%;
1493
+ padding-top: 0;
1494
+ padding-bottom: 15px;
1495
+ float: left;
1496
+ }
1497
+
1498
+ .wp_review_tab_widget_content .wp-review-tab-pagination a {
1499
+ margin: 0 15px;
1500
+ }
1501
+
1502
+ .wp-review-tab-pagination a.next {
1503
+ float: right;
1504
+ }
1505
+
1506
+ /* Loading... */
1507
+ .wp-review-tab-loading {
1508
+ min-height: 120px;
1509
+ }
1510
+
1511
+ .wp-review-tab-loading:before {
1512
+ content: "";
1513
+ display: block;
1514
+ position: absolute;
1515
+ top: 0;
1516
+ right: 0;
1517
+ bottom: 0;
1518
+ left: 0;
1519
+ background-color: rgba(255, 255, 255, 0.8);
1520
+ z-index: 11;
1521
+ }
1522
+
1523
+ .clear {
1524
+ clear: both;
1525
+ }
1526
+
1527
+ .wp-review-tab-loading:after {
1528
+ content: "";
1529
+ margin: 0 auto 3em auto;
1530
+ font-size: 10px;
1531
+ position: absolute;
1532
+ top: 45%;
1533
+ left: 49%;
1534
+ z-index: 12;
1535
+ text-indent: -9999em;
1536
+ border-top: 0.4em solid rgba(0, 0, 0, 0.2);
1537
+ border-right: 0.4em solid rgba(0, 0, 0, 0.2);
1538
+ border-bottom: 0.4em solid rgba(0, 0, 0, 0.2);
1539
+ border-left: 0.4em solid #000;
1540
+ -webkit-animation: load8 0.5s infinite linear;
1541
+ animation: load8 0.5s infinite linear;
1542
+ border-radius: 50%;
1543
+ width: 2em;
1544
+ height: 2em;
1545
+ }
1546
+
1547
+ @-webkit-keyframes load8 {
1548
+ 0% {
1549
+ -webkit-transform: rotate(0deg);
1550
+ transform: rotate(0deg);
1551
+ }
1552
+ 100% {
1553
+ -webkit-transform: rotate(360deg);
1554
+ transform: rotate(360deg);
1555
+ }
1556
+ }
1557
+ @keyframes load8 {
1558
+ 0% {
1559
+ -webkit-transform: rotate(0deg);
1560
+ transform: rotate(0deg);
1561
+ }
1562
+ 100% {
1563
+ -webkit-transform: rotate(360deg);
1564
+ transform: rotate(360deg);
1565
+ }
1566
+ }
1567
+ /* Rating... */
1568
+ .review-total-only.small-thumb {
1569
+ font-size: 13px;
1570
+ font-weight: bold;
1571
+ padding: 1px 0;
1572
+ float: left;
1573
+ -webkit-box-sizing: border-box;
1574
+ box-sizing: border-box;
1575
+ margin-top: 3px;
1576
+ }
1577
+
1578
+ .review-total-only.large-thumb {
1579
+ position: absolute;
1580
+ top: 10px;
1581
+ right: 15px;
1582
+ border-radius: 0;
1583
+ }
1584
+
1585
+ .wp_review_tab_widget_content .has-4-tabs .tab_title.selected a {
1586
+ border-bottom: 1px solid #E4E4E4;
1587
+ }
1588
+
1589
+ .wp_review_tab_widget_content .has-4-tabs .tab_title:nth-child(3) a {
1590
+ border-left: 0;
1591
+ }
1592
+
1593
+ .title-right {
1594
+ overflow: hidden;
1595
+ }
1596
+
1597
+ /* WooCommerce */
1598
+ .wp-review-product-rating {
1599
+ margin-bottom: 10px;
1600
+ }
1601
+
1602
+ .wp-review-comment-form-photo {
1603
+ margin-bottom: 15px;
1604
+ float: left;
1605
+ width: 100%;
1606
+ clear: both;
1607
+ margin-right: 0;
1608
+ margin-left: 0;
1609
+ }
1610
+
1611
+ .wp-review-comment-form-photo p {
1612
+ margin-bottom: 0;
1613
+ }
1614
+
1615
+ .wp-review-comment-form-photo {
1616
+ position: relative;
1617
+ }
1618
+
1619
+ .wp-review-comment-form-photo a {
1620
+ position: absolute;
1621
+ top: 0;
1622
+ right: 0;
1623
+ }
1624
+
1625
+ .wp-review-comment-form-photo #wp_review_comment_attachment_url {
1626
+ width: 100%;
1627
+ box-sizing: border-box;
1628
+ -webkit-box-sizing: border-box;
1629
+ }
1630
+
1631
+ .wp-review-comment-form-photo input {
1632
+ margin-top: 8px;
1633
+ }
1634
+
1635
+ .wp-review-comment-form-photo input.input-file {
1636
+ padding-left: 0;
1637
+ }
1638
+
1639
+ .wp-review-comment-form-photo .hide {
1640
+ display: none;
1641
+ }
1642
+
1643
+ #comments .wp-review-usercomment-image {
1644
+ display: block;
1645
+ float: left;
1646
+ width: 100%;
1647
+ }
1648
+
1649
+ .wp_review_comments_template #comments .is_verified {
1650
+ color: #b75c21;
1651
+ font-weight: bold;
1652
+ }
1653
+
1654
+ #commentform.wp-review-comment-form .comment-form-cookies-consent input {
1655
+ width: auto;
1656
+ height: auto;
1657
+ }
1658
+
1659
+ #commentform.wp-review-comment-form .comment-form-cookies-consent label {
1660
+ margin-left: 8px;
1661
+ }
1662
+
1663
+ body.rtl .review-wrapper .review-star .wpr-count {
1664
+ margin-left: 0;
1665
+ margin-right: 3px;
1666
+ }
1667
+ body.rtl .review-wrapper .review-total-wrapper span.review-total-box {
1668
+ text-align: left;
1669
+ }
1670
+ body.rtl .review-wrapper .review-pros-cons .review-pros {
1671
+ padding-right: 0;
1672
+ padding-left: 10px;
1673
+ }
1674
+ body.rtl .review-wrapper .review-pros-cons .review-cons {
1675
+ padding-left: 0;
1676
+ padding-right: 10px;
1677
+ }
1678
+ body.rtl .review-wrapper .user-review-area .wp-review-user-rating-star {
1679
+ float: left;
1680
+ }
1681
+ body.rtl .wp-review-comment-form-photo a {
1682
+ right: auto;
1683
+ left: 0;
1684
+ }
1685
+ body.rtl .review-pros-cons .review-pros {
1686
+ padding-right: 0;
1687
+ padding-left: 10px;
1688
+ }
1689
+ body.rtl .review-pros-cons .review-cons {
1690
+ padding-right: 10px;
1691
+ padding-left: 0;
1692
+ }
1693
+ body.rtl #comments .wp-review-usercomment-image img {
1694
+ float: right !important;
1695
+ }
1696
+ body.rtl .wpr-businesses .business-data {
1697
+ padding-right: 10px;
1698
+ padding-left: 5px;
1699
+ }
1700
+ body.rtl .wp-reviews-list .thumb_small {
1701
+ float: right;
1702
+ margin-right: 0;
1703
+ margin-left: 12px;
1704
+ }
1705
+ body.rtl .wp-reviews-list .review-count {
1706
+ float: right;
1707
+ }
1708
+ body.rtl .wp-reviews-list .postmeta {
1709
+ float: left;
1710
+ }
1711
+ body.rtl .wp-reviews-list .reviews-pagination .next {
1712
+ float: left;
1713
+ }
1714
+ body.rtl .review-total-only.large-thumb {
1715
+ right: auto;
1716
+ left: 15px;
1717
+ }
1718
+ body.rtl .wpr-place-reviews .review-image {
1719
+ float: right;
1720
+ margin-right: 0;
1721
+ margin-left: 10px;
1722
+ }
1723
+
1724
+ /**
1725
+ * Font icon
1726
+ */
1727
+ @font-face {
1728
+ font-family: "font-icons";
1729
+ src: url("../fonts/font-icons.eot");
1730
+ src: url("../fonts/font-icons.eot") format("embedded-opentype"), url("../fonts/font-icons.woff") format("woff"), url("../fonts/font-icons.ttf") format("truetype"), url("../fonts/font-icons.svg") format("svg");
1731
+ font-weight: normal;
1732
+ font-style: normal;
1733
+ }
1734
+ [class^=mts-icon-]:before, [class*=" mts-icon-"]:before {
1735
+ font-family: "font-icons";
1736
+ font-style: normal;
1737
+ font-weight: normal;
1738
+ speak: none;
1739
+ display: inline-block;
1740
+ text-decoration: inherit;
1741
+ width: 1em;
1742
+ margin-right: 0;
1743
+ text-align: center;
1744
+ font-variant: normal;
1745
+ text-transform: none;
1746
+ line-height: 1em;
1747
+ }
1748
+
1749
+ [class*=mts-icon-loader]:before {
1750
+ font-family: "font-icons";
1751
+ font-style: normal;
1752
+ font-weight: normal;
1753
+ speak: none;
1754
+ display: inline-block;
1755
+ text-decoration: inherit;
1756
+ width: 1em;
1757
+ margin-right: 0.2em;
1758
+ text-align: center;
1759
+ font-variant: normal;
1760
+ text-transform: none;
1761
+ line-height: 1em;
1762
+ margin-left: 0.2em;
1763
+ }
1764
+
1765
+ .mts-icon-star:before {
1766
+ content: "";
1767
+ }
1768
+
1769
+ .mts-icon-loader:before {
1770
+ content: "";
1771
+ }
public/js/main.js CHANGED
@@ -23,6 +23,23 @@
23
  $tabs.find( '.tab-content' ).hide();
24
  $tabs.find( href ).fadeIn();
25
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  });
27
  })( jQuery );
28
 
23
  $tabs.find( '.tab-content' ).hide();
24
  $tabs.find( href ).fadeIn();
25
  });
26
+
27
+ // Show login required message.
28
+ $( document ).on( 'click', '.wpr-login-required', function( ev ) {
29
+ ev.preventDefault();
30
+
31
+ var $this = $( this ),
32
+ $message = $this.children( '.wpr-login-required-message' );
33
+
34
+ if ( ! $message.length ) {
35
+ $message = $( '<div class="wpr-login-required-message">' + wpreview.loginRequiredMessage + '</div>' );
36
+ $this.append( $message );
37
+ }
38
+
39
+ $message.show();
40
+
41
+ return false;
42
+ });
43
  });
44
  })( jQuery );
45
 
rating-types/percentage-input.php CHANGED
@@ -20,8 +20,6 @@ if ( wp_review_is_amp_page() ) {
20
  return;
21
  }
22
 
23
- global $wp_review_rating_types;
24
-
25
  // For now, enqueue in footer.
26
  wp_enqueue_script( 'wp-review-percentage-input', trailingslashit( WP_REVIEW_URI ) . 'rating-types/percentage-input.js', array( 'jquery' ) );
27
 
20
  return;
21
  }
22
 
 
 
23
  // For now, enqueue in footer.
24
  wp_enqueue_script( 'wp-review-percentage-input', trailingslashit( WP_REVIEW_URI ) . 'rating-types/percentage-input.js', array( 'jquery' ) );
25
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ 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.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -151,10 +151,15 @@ There are two ways you can do this. You can update the plugin by downloading a f
151
 
152
  == Changelog ==
153
 
 
 
 
 
 
 
154
  = v5.3.3 (Apr 12, 2020) =
155
  * Fixed content layout breaking in some installations
156
 
157
-
158
  = v5.3.2 (Apr 9, 2020) =
159
  * Fixed `Fatal error: Uncaught ArgumentCountError` appearing on some installations
160
 
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.5.1
7
+ Stable tag: 5.3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
151
 
152
  == Changelog ==
153
 
154
+ = v5.3.4 (Sep 12, 2020) =
155
+ * Added a message if rating is not allowed for the guests
156
+ * Fixed deprecated jQuery function in the WordPress 5.5
157
+ * Fixed filter `wp_review_rating_types` not working in some places
158
+ * Fixed Recipe schema errors when video data is empty
159
+
160
  = v5.3.3 (Apr 12, 2020) =
161
  * Fixed content layout breaking in some installations
162
 
 
163
  = v5.3.2 (Apr 9, 2020) =
164
  * Fixed `Fatal error: Uncaught ArgumentCountError` appearing on some installations
165
 
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.3.3
7
  * Author: MyThemeShop
8
  * Author URI: http://mythemeshop.com/
9
  * Text Domain: wp-review
@@ -46,7 +46,7 @@ if ( version_compare( phpversion(), '5.6', '<' ) ) {
46
  }
47
 
48
  /* Plugin version */
49
- define( 'WP_REVIEW_PLUGIN_VERSION', '5.3.3' );
50
 
51
  /* Sets the custom db table name. */
52
  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.4
7
  * Author: MyThemeShop
8
  * Author URI: http://mythemeshop.com/
9
  * Text Domain: wp-review
46
  }
47
 
48
  /* Plugin version */
49
+ define( 'WP_REVIEW_PLUGIN_VERSION', '5.3.4' );
50
 
51
  /* Sets the custom db table name. */
52
  define( 'MTS_WP_REVIEW_DB_TABLE', 'mts_wp_reviews' );