WP Review - Version 5.3.1

Version Description

Download this release

Release Info

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

Code changes from version 5.3.0 to 5.3.1

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