Plugin Directory

Changeset 3363526


Ignore:
Timestamp:
09/17/2025 09:37:54 PM (6 months ago)
Author:
ivole
Message:

5.83.2

Location:
customer-reviews-woocommerce
Files:
881 added
6 edited

Legend:

Unmodified
Added
Removed
  • customer-reviews-woocommerce/trunk/class-ivole.php

    r3362076 r3363526  
    8585
    8686class Ivole {
    87     const CR_VERSION = '5.83.1';
     87    const CR_VERSION = '5.83.2';
    8888
    8989    public function __construct() {
  • customer-reviews-woocommerce/trunk/includes/reviews/class-cr-reviews.php

    r3362076 r3363526  
    437437    }
    438438    public function validate_captcha( $commentdata ) {
    439         if( is_admin() && current_user_can( 'edit_posts' ) ) {
     439        if ( is_admin() && current_user_can( 'edit_posts' ) ) {
    440440            return $commentdata;
    441441        }
    442         if( 'cr_qna' !== $commentdata['comment_type'] ) {
    443             if( get_post_type( $commentdata['comment_post_ID'] ) === 'product' ) {
    444                 if( !$this->ping_captcha() ) {
    445                     wp_die( __( 'reCAPTCHA vertification failed and your review cannot be saved.', 'customer-reviews-woocommerce' ), __( 'Add Review Error', 'customer-reviews-woocommerce' ), array( 'back_link' => true ) );
     442        if ( 'cr_qna' !== $commentdata['comment_type'] ) {
     443            if ( get_post_type( $commentdata['comment_post_ID'] ) === 'product' ) {
     444                if ( !$this->ping_captcha() ) {
     445                    if ( 'yes' === get_option( 'ivole_ajax_reviews', 'no' ) ) {
     446                        wp_send_json(
     447                            array(
     448                                'code' => 7,
     449                                'description' => __( 'reCAPTCHA vertification failed and your review cannot be saved', 'customer-reviews-woocommerce' ),
     450                                'button' => __( 'OK', 'customer-reviews-woocommerce' )
     451                            )
     452                        );
     453                    } else {
     454                        wp_die(
     455                            __( 'reCAPTCHA vertification failed and your review cannot be saved', 'customer-reviews-woocommerce' ),
     456                            __( 'Add Review Error', 'customer-reviews-woocommerce' ),
     457                            array( 'back_link' => true )
     458                        );
     459                    }
    446460                }
    447461            }
  • customer-reviews-woocommerce/trunk/includes/settings/class-cr-settings-forms.php

    r3318495 r3363526  
    195195                    if( ! preg_match_all( '/#([a-f0-9]{3}){1,2}\b/i', $_POST['ivole_form_color_text'] ) ) {
    196196                        $_POST['ivole_form_color_text'] = '#ffffff';
     197                    }
     198                }
     199                // validate that both reCAPTCHA site and secret keys are populated
     200                if (
     201                    ! empty( $_POST ) &&
     202                    isset( $_POST['ivole_captcha_site_key'] )  &&
     203                    isset( $_POST['ivole_captcha_secret_key'] )
     204                ) {
     205                    if (
     206                        (
     207                            trim( $_POST['ivole_captcha_site_key'] ) &&
     208                            ! trim( $_POST['ivole_captcha_secret_key'] )
     209                        ) ||
     210                        (
     211                            ! trim( $_POST['ivole_captcha_site_key'] ) &&
     212                            trim( $_POST['ivole_captcha_secret_key'] )
     213                        )
     214                    ) {
     215                        WC_Admin_Settings::add_error(
     216                            __( 'Error: Both the Site key and the Secret key are required for reCAPTCHA to function properly', 'customer-reviews-woocommerce' )
     217                        );
    197218                    }
    198219                }
  • customer-reviews-woocommerce/trunk/ivole.php

    r3362076 r3363526  
    44Description: Customer Reviews for WooCommerce plugin helps you get more customer reviews for your shop by sending automated reminders and coupons.
    55Plugin URI: https://wordpress.org/plugins/customer-reviews-woocommerce/
    6 Version: 5.83.1
     6Version: 5.83.2
    77Author: CusRev
    88Author URI: https://www.cusrev.com/business/
  • customer-reviews-woocommerce/trunk/languages/customer-reviews-woocommerce.pot

    r3361402 r3363526  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Customer Reviews for WooCommerce 5.83.0\n"
     5"Project-Id-Version: Customer Reviews for WooCommerce 5.83.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customer-reviews-woocommerce\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-09-14T20:30:38+00:00\n"
     12"POT-Creation-Date: 2025-09-17T21:25:09+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.8.1\n"
     
    100100#: includes/settings/class-cr-admin-menu-settings.php:140
    101101#: includes/settings/class-cr-settings-forms-rating.php:104
    102 #: includes/settings/class-cr-settings-forms.php:561
     102#: includes/settings/class-cr-settings-forms.php:582
    103103msgid "Yes"
    104104msgstr ""
     
    118118#: includes/settings/class-cr-admin-menu-settings.php:141
    119119#: includes/settings/class-cr-settings-forms-rating.php:106
    120 #: includes/settings/class-cr-settings-forms.php:563
     120#: includes/settings/class-cr-settings-forms.php:584
    121121msgid "No"
    122122msgstr ""
     
    235235#: includes/blocks/class-cr-all-reviews.php:870
    236236#: includes/blocks/class-cr-reviews-grid.php:982
    237 #: includes/reviews/class-cr-reviews.php:537
     237#: includes/reviews/class-cr-reviews.php:551
    238238msgid "Based on %s review"
    239239msgid_plural "Based on %s reviews"
     
    245245#: includes/blocks/class-cr-reviews-grid.php:995
    246246#: includes/blocks/class-cr-reviews-grid.php:999
    247 #: includes/reviews/class-cr-reviews.php:552
    248 #: includes/reviews/class-cr-reviews.php:556
     247#: includes/reviews/class-cr-reviews.php:566
     248#: includes/reviews/class-cr-reviews.php:570
    249249msgid "5 star"
    250250msgstr ""
     
    254254#: includes/blocks/class-cr-reviews-grid.php:1008
    255255#: includes/blocks/class-cr-reviews-grid.php:1012
    256 #: includes/reviews/class-cr-reviews.php:563
    257 #: includes/reviews/class-cr-reviews.php:567
     256#: includes/reviews/class-cr-reviews.php:577
     257#: includes/reviews/class-cr-reviews.php:581
    258258msgid "4 star"
    259259msgstr ""
     
    263263#: includes/blocks/class-cr-reviews-grid.php:1021
    264264#: includes/blocks/class-cr-reviews-grid.php:1025
    265 #: includes/reviews/class-cr-reviews.php:574
    266 #: includes/reviews/class-cr-reviews.php:578
     265#: includes/reviews/class-cr-reviews.php:588
     266#: includes/reviews/class-cr-reviews.php:592
    267267msgid "3 star"
    268268msgstr ""
     
    272272#: includes/blocks/class-cr-reviews-grid.php:1034
    273273#: includes/blocks/class-cr-reviews-grid.php:1038
    274 #: includes/reviews/class-cr-reviews.php:585
    275 #: includes/reviews/class-cr-reviews.php:589
     274#: includes/reviews/class-cr-reviews.php:599
     275#: includes/reviews/class-cr-reviews.php:603
    276276msgid "2 star"
    277277msgstr ""
     
    282282#: includes/blocks/class-cr-reviews-grid.php:1051
    283283#: includes/reviews/class-cr-reviews-list-table.php:474
    284 #: includes/reviews/class-cr-reviews.php:596
    285 #: includes/reviews/class-cr-reviews.php:600
     284#: includes/reviews/class-cr-reviews.php:610
     285#: includes/reviews/class-cr-reviews.php:614
    286286msgid "1 star"
    287287msgstr ""
     
    289289#: includes/blocks/class-cr-all-reviews.php:951
    290290#: includes/blocks/class-cr-reviews-grid.php:1064
    291 #: includes/reviews/class-cr-reviews.php:1712
     291#: includes/reviews/class-cr-reviews.php:1726
    292292#: templates/cr-review-form.php:31
    293293msgid "Add a review"
     
    295295
    296296#: includes/blocks/class-cr-all-reviews.php:1085
    297 #: includes/reviews/class-cr-reviews.php:1625
     297#: includes/reviews/class-cr-reviews.php:1639
    298298msgid "Sort reviews"
    299299msgstr ""
    300300
    301301#: includes/blocks/class-cr-all-reviews.php:1087
    302 #: includes/reviews/class-cr-reviews.php:1627
     302#: includes/reviews/class-cr-reviews.php:1641
    303303msgid "Most Recent"
    304304msgstr ""
    305305
    306306#: includes/blocks/class-cr-all-reviews.php:1090
    307 #: includes/reviews/class-cr-reviews.php:1631
     307#: includes/reviews/class-cr-reviews.php:1645
    308308msgid "Most Helpful"
    309309msgstr ""
     
    317317#: includes/blocks/class-cr-all-reviews.php:1111
    318318#: includes/blocks/class-cr-reviews-grid.php:1073
    319 #: includes/reviews/class-cr-reviews.php:612
     319#: includes/reviews/class-cr-reviews.php:626
    320320msgid "See all %d review"
    321321msgid_plural "See all %d reviews"
     
    358358#: includes/reminders/class-cr-manual.php:397
    359359#: includes/reviews/class-cr-admin-menu-reviews.php:249
     360#: includes/reviews/class-cr-reviews.php:450
    360361msgid "OK"
    361362msgstr ""
     
    417418#: includes/reminders/class-cr-local-forms.php:157
    418419#: includes/reviews/class-cr-reviews.php:402
    419 #: includes/reviews/class-cr-reviews.php:1505
     420#: includes/reviews/class-cr-reviews.php:1519
    420421msgid "Error: accepted file types are PNG, JPG, JPEG, GIF, MP4, MPEG, OGG, WEBM, MOV, AVI"
    421422msgstr ""
     
    438439#: includes/blocks/class-cr-reviews-slider.php:279
    439440#: includes/reviews/class-cr-reviews-list-table.php:655
    440 #: includes/reviews/class-cr-reviews.php:1116
    441 #: includes/reviews/class-cr-reviews.php:1118
    442 #: includes/reviews/class-cr-reviews.php:1174
    443 #: includes/reviews/class-cr-reviews.php:1176
     441#: includes/reviews/class-cr-reviews.php:1130
     442#: includes/reviews/class-cr-reviews.php:1132
     443#: includes/reviews/class-cr-reviews.php:1188
     444#: includes/reviews/class-cr-reviews.php:1190
    444445msgid "Verified review"
    445446msgstr ""
     
    449450#: includes/blocks/class-cr-reviews-slider.php:273
    450451#: includes/blocks/class-cr-reviews-slider.php:280
    451 #: includes/reviews/class-cr-reviews.php:1127
    452 #: includes/reviews/class-cr-reviews.php:1185
     452#: includes/reviews/class-cr-reviews.php:1141
     453#: includes/reviews/class-cr-reviews.php:1199
    453454msgid "view original"
    454455msgstr ""
    455456
    456457#: includes/blocks/class-cr-reviews-grid.php:1072
    457 #: includes/reviews/class-cr-reviews.php:611
     458#: includes/reviews/class-cr-reviews.php:625
    458459msgid "Showing %1$d of %2$d review (%3$d star). "
    459460msgid_plural "Showing %1$d of %2$d reviews (%3$d star). "
     
    14941495#: includes/settings/class-cr-settings-forms-rating.php:186
    14951496#: includes/settings/class-cr-settings-forms-rating.php:213
    1496 #: includes/settings/class-cr-settings-forms.php:659
    1497 #: includes/settings/class-cr-settings-forms.php:686
     1497#: includes/settings/class-cr-settings-forms.php:680
     1498#: includes/settings/class-cr-settings-forms.php:707
    14981499#: templates/cr-review-form.php:195
    14991500#: templates/qna-list.php:197
     
    23452346
    23462347#: includes/qna/class-cr-settings-qna.php:116
    2347 #: includes/settings/class-cr-settings-forms.php:281
     2348#: includes/settings/class-cr-settings-forms.php:302
    23482349msgid "Login URL"
    23492350msgstr ""
     
    23782379
    23792380#: includes/qna/class-cr-settings-qna.php:154
    2380 #: includes/settings/class-cr-settings-forms.php:318
     2381#: includes/settings/class-cr-settings-forms.php:339
    23812382msgid "Terms and Privacy Checkbox"
    23822383msgstr ""
    23832384
    23842385#: includes/qna/class-cr-settings-qna.php:162
    2385 #: includes/settings/class-cr-settings-forms.php:326
     2386#: includes/settings/class-cr-settings-forms.php:347
    23862387msgid "Terms and Privacy Checkbox Label"
    23872388msgstr ""
    23882389
    23892390#: includes/qna/class-cr-settings-qna.php:164
    2390 #: includes/settings/class-cr-settings-forms.php:328
     2391#: includes/settings/class-cr-settings-forms.php:349
    23912392msgid "Tailor the text to be shown alongside the Terms and Privacy checkbox. Incorporate links directing users to the Terms and Conditions and Privacy Policy pages on your website."
    23922393msgstr ""
     
    24832484#: includes/reminders/class-cr-local-forms.php:185
    24842485#: includes/reviews/class-cr-custom-questions.php:450
    2485 #: includes/reviews/class-cr-reviews.php:1708
     2486#: includes/reviews/class-cr-reviews.php:1722
    24862487#: includes/settings/class-cr-settings-forms-rating.php:64
    24872488#: includes/settings/class-cr-settings-forms-rating.php:161
     
    27652766#: includes/reminders/class-cr-reminders-list-table.php:212
    27662767#: includes/reminders/class-cr-reminders-log-table.php:92
    2767 #: includes/settings/class-cr-settings-forms.php:525
    2768 #: includes/settings/class-cr-settings-forms.php:639
     2768#: includes/settings/class-cr-settings-forms.php:546
     2769#: includes/settings/class-cr-settings-forms.php:660
    27692770#: includes/settings/class-cr-settings-review-reminder.php:1183
    27702771#: templates/reminder-details-admin-page.php:162
     
    31203121
    31213122#: includes/reviews/class-cr-reviews-list-table.php:974
    3122 #: includes/reviews/class-cr-reviews.php:1199
     3123#: includes/reviews/class-cr-reviews.php:1213
    31233124#: templates/cr-review.php:131
    31243125msgid "Featured Review"
     
    31353136#: includes/reviews/class-cr-reviews.php:246
    31363137#: includes/reviews/class-cr-reviews.php:265
    3137 #: includes/reviews/class-cr-reviews.php:1251
    31383138#: includes/reviews/class-cr-reviews.php:1265
     3139#: includes/reviews/class-cr-reviews.php:1279
    31393140#: templates/reviews-grid.php:84
    31403141#: templates/reviews-grid.php:91
     
    31483149#: includes/reviews/class-cr-reviews.php:286
    31493150#: includes/reviews/class-cr-reviews.php:308
    3150 #: includes/reviews/class-cr-reviews.php:1279
    31513151#: includes/reviews/class-cr-reviews.php:1293
     3152#: includes/reviews/class-cr-reviews.php:1307
    31523153#: templates/reviews-grid.php:74
    31533154#: templates/reviews-grid.php:76
     
    31623163#: includes/reviews/class-cr-reviews.php:288
    31633164#: includes/reviews/class-cr-reviews.php:310
    3164 #: includes/reviews/class-cr-reviews.php:1382
     3165#: includes/reviews/class-cr-reviews.php:1396
    31653166msgid "Close"
    31663167msgstr ""
     
    32443245msgstr ""
    32453246
    3246 #: includes/reviews/class-cr-reviews.php:445
    3247 msgid "reCAPTCHA vertification failed and your review cannot be saved."
    3248 msgstr ""
    3249 
    3250 #: includes/reviews/class-cr-reviews.php:445
     3247#: includes/reviews/class-cr-reviews.php:449
     3248#: includes/reviews/class-cr-reviews.php:455
     3249msgid "reCAPTCHA vertification failed and your review cannot be saved"
     3250msgstr ""
     3251
     3252#: includes/reviews/class-cr-reviews.php:456
    32513253msgid "Add Review Error"
    32523254msgstr ""
    32533255
    3254 #: includes/reviews/class-cr-reviews.php:1128
    3255 #: includes/reviews/class-cr-reviews.php:1186
     3256#: includes/reviews/class-cr-reviews.php:1142
     3257#: includes/reviews/class-cr-reviews.php:1200
    32563258msgid "External link"
    32573259msgstr ""
    32583260
    3259 #: includes/reviews/class-cr-reviews.php:1307
     3261#: includes/reviews/class-cr-reviews.php:1321
    32603262msgid "Customer Images"
    32613263msgstr ""
    32623264
    3263 #: includes/reviews/class-cr-reviews.php:1487
     3265#: includes/reviews/class-cr-reviews.php:1501
    32643266msgid "Error: please solve the CAPTCHA before uploading files"
    32653267msgstr ""
    32663268
    3267 #: includes/reviews/class-cr-reviews.php:1496
     3269#: includes/reviews/class-cr-reviews.php:1510
    32683270msgid "Error: the file(s) is too large"
    32693271msgstr ""
    32703272
    3271 #: includes/reviews/class-cr-reviews.php:1635
     3273#: includes/reviews/class-cr-reviews.php:1649
    32723274msgid "Highest Rating"
    32733275msgstr ""
    32743276
    3275 #: includes/reviews/class-cr-reviews.php:1638
     3277#: includes/reviews/class-cr-reviews.php:1652
    32763278msgid "Lowest Rating"
    32773279msgstr ""
     
    39603962#: includes/settings/class-cr-settings-forms-rating.php:68
    39613963#: includes/settings/class-cr-settings-forms-rating.php:172
    3962 #: includes/settings/class-cr-settings-forms.php:521
    3963 #: includes/settings/class-cr-settings-forms.php:632
     3964#: includes/settings/class-cr-settings-forms.php:542
     3965#: includes/settings/class-cr-settings-forms.php:653
    39643966msgid "Label"
    39653967msgstr ""
     
    39673969#: includes/settings/class-cr-settings-forms-rating.php:72
    39683970#: includes/settings/class-cr-settings-forms-rating.php:179
    3969 #: includes/settings/class-cr-settings-forms.php:529
    3970 #: includes/settings/class-cr-settings-forms.php:652
     3971#: includes/settings/class-cr-settings-forms.php:550
     3972#: includes/settings/class-cr-settings-forms.php:673
    39713973msgid "Required"
    39723974msgstr ""
     
    39903992#: includes/settings/class-cr-settings-forms-rating.php:187
    39913993#: includes/settings/class-cr-settings-forms-rating.php:214
    3992 #: includes/settings/class-cr-settings-forms.php:660
    3993 #: includes/settings/class-cr-settings-forms.php:687
     3994#: includes/settings/class-cr-settings-forms.php:681
     3995#: includes/settings/class-cr-settings-forms.php:708
    39943996msgid "Confirm"
    39953997msgstr ""
     
    40474049msgstr ""
    40484050
    4049 #: includes/settings/class-cr-settings-forms.php:207
     4051#: includes/settings/class-cr-settings-forms.php:216
     4052msgid "Error: Both the Site key and the Secret key are required for reCAPTCHA to function properly"
     4053msgstr ""
     4054
     4055#: includes/settings/class-cr-settings-forms.php:228
    40504056msgid "On-site product review forms are displayed on your website. If reviews are enabled, WooCommerce displays them on product pages. However, on-site review forms can also be displayed using <a href=\"%s\">shortcodes</a> or blocks."
    40514057msgstr ""
    40524058
    4053 #: includes/settings/class-cr-settings-forms.php:209
     4059#: includes/settings/class-cr-settings-forms.php:230
    40544060msgid "An aggregated review form is a review form that supports collection of reviews for multiple products at the same time. The plugin will automatically create an aggregated review form when sending a review reminder. You can read more about aggregated review forms on <a href=\"%s\">this page</a> of our Helpdesk."
    40554061msgstr ""
    40564062
    4057 #: includes/settings/class-cr-settings-forms.php:212
     4063#: includes/settings/class-cr-settings-forms.php:233
    40584064#: includes/settings/class-cr-settings-review-reminder.php:460
    40594065msgid "Adjust template of the aggregated review forms that will be created and sent to customers by CusRev. Modifications will be applied to the next review form created after saving settings. If you enable <b>advanced</b> form templates in your account on %1$sCusRev website%2$s, they will <b>override</b> the settings below."
    40604066msgstr ""
    40614067
    4062 #: includes/settings/class-cr-settings-forms.php:214
     4068#: includes/settings/class-cr-settings-forms.php:235
    40634069#: includes/settings/class-cr-settings-review-reminder.php:465
    40644070msgid "Adjust template of the aggregated review forms that will be created and sent to customers. Modifications will be applied to the next review form created after saving settings."
    40654071msgstr ""
    40664072
    4067 #: includes/settings/class-cr-settings-forms.php:219
     4073#: includes/settings/class-cr-settings-forms.php:240
    40684074msgid "Enable attachment of pictures and videos on aggregated review forms. Uploaded media files are initially stored on Amazon S3 and automatically downloaded into WordPress Media Library later. This option applies only to aggregated review forms. If you would like to enable attachment of pictures to reviews submitted on WooCommerce product pages, please do it in the settings for on-site review forms."
    40694075msgstr ""
    40704076
    4071 #: includes/settings/class-cr-settings-forms.php:221
     4077#: includes/settings/class-cr-settings-forms.php:242
    40724078msgid "Enable attachment of pictures and videos on local aggregated review forms. This option applies only to aggregated review forms. If you would like to enable attachment of pictures to reviews submitted on WooCommerce product pages, please do it in the settings for on-site review forms."
    40734079msgstr ""
    40744080
    4075 #: includes/settings/class-cr-settings-forms.php:226
     4081#: includes/settings/class-cr-settings-forms.php:247
    40764082msgid "On-site Product Review Form"
    40774083msgstr ""
    40784084
    4079 #: includes/settings/class-cr-settings-forms.php:232
     4085#: includes/settings/class-cr-settings-forms.php:253
    40804086msgid "Rating Criteria"
    40814087msgstr ""
    40824088
    4083 #: includes/settings/class-cr-settings-forms.php:233
     4089#: includes/settings/class-cr-settings-forms.php:254
    40844090msgid "Set up additional rating criteria for on-site review forms. Use the additional criteria to let your customers rate various features of products. For example, if you are selling footwear, you might want to ask customers to rate features like comfort, value for money, and style."
    40854091msgstr ""
    40864092
    4087 #: includes/settings/class-cr-settings-forms.php:238
     4093#: includes/settings/class-cr-settings-forms.php:259
    40884094msgid "Questions"
    40894095msgstr ""
    40904096
    4091 #: includes/settings/class-cr-settings-forms.php:239
     4097#: includes/settings/class-cr-settings-forms.php:260
    40924098msgid "Set up additional questions for on-site review forms. Use the additional questions to get more information from your customers beyond star ratings and reviews. For example, if you are selling skincare products, you might want to ask customers about their skin type."
    40934099msgstr ""
    40944100
    4095 #: includes/settings/class-cr-settings-forms.php:244
     4101#: includes/settings/class-cr-settings-forms.php:265
    40964102msgid "Attach Images/Videos"
    40974103msgstr ""
    40984104
    4099 #: includes/settings/class-cr-settings-forms.php:245
     4105#: includes/settings/class-cr-settings-forms.php:266
    41004106msgid "Enable attachment of images and videos to reviews left on WooCommerce product pages."
    41014107msgstr ""
    41024108
    4103 #: includes/settings/class-cr-settings-forms.php:251
     4109#: includes/settings/class-cr-settings-forms.php:272
    41044110msgid "Quantity of Media Files"
    41054111msgstr ""
    41064112
    4107 #: includes/settings/class-cr-settings-forms.php:252
     4113#: includes/settings/class-cr-settings-forms.php:273
    41084114msgid "Specify the maximum number of images and videos that can be uploaded for a single review. This setting applies only to reviews submitted on single product pages."
    41094115msgstr ""
    41104116
    4111 #: includes/settings/class-cr-settings-forms.php:259
     4117#: includes/settings/class-cr-settings-forms.php:280
    41124118msgid "Maximum Size of Media File"
    41134119msgstr ""
    41144120
    4115 #: includes/settings/class-cr-settings-forms.php:260
     4121#: includes/settings/class-cr-settings-forms.php:281
    41164122msgid "Specify the maximum size (in MB) of an image or a video that can be uploaded with a review. This setting applies only to reviews submitted on single product pages."
    41174123msgstr ""
    41184124
    4119 #: includes/settings/class-cr-settings-forms.php:267
     4125#: includes/settings/class-cr-settings-forms.php:288
    41204126msgid "Review Permissions"
    41214127msgstr ""
    41224128
    4123 #: includes/settings/class-cr-settings-forms.php:268
     4129#: includes/settings/class-cr-settings-forms.php:289
    41244130msgid "Specify review permissions for on-site review forms. This setting applies to review forms on single product pages when CusRev visual style is enabled and to review forms added via shortcodes."
    41254131msgstr ""
    41264132
    4127 #: includes/settings/class-cr-settings-forms.php:273
     4133#: includes/settings/class-cr-settings-forms.php:294
    41284134msgid "Nobody can submit reviews"
    41294135msgstr ""
    41304136
    4131 #: includes/settings/class-cr-settings-forms.php:274
     4137#: includes/settings/class-cr-settings-forms.php:295
    41324138msgid "Reviewers must be registered and logged in"
    41334139msgstr ""
    41344140
    4135 #: includes/settings/class-cr-settings-forms.php:275
     4141#: includes/settings/class-cr-settings-forms.php:296
    41364142msgid "Reviewers must be verified owners"
    41374143msgstr ""
    41384144
    4139 #: includes/settings/class-cr-settings-forms.php:276
     4145#: includes/settings/class-cr-settings-forms.php:297
    41404146msgid "Anyone can submit reviews"
    41414147msgstr ""
    41424148
    4143 #: includes/settings/class-cr-settings-forms.php:285
     4149#: includes/settings/class-cr-settings-forms.php:306
    41444150msgid "Customize the URL for the login button on on-site review forms. You can override the default URL returned by the WordPress %1$s function with a custom URL specified in this field. If left blank, the standard URL %2$s will be used."
    41454151msgstr ""
    41464152
    4147 #: includes/settings/class-cr-settings-forms.php:295
     4153#: includes/settings/class-cr-settings-forms.php:316
    41484154msgid "reCAPTCHA V2 for Reviews"
    41494155msgstr ""
    41504156
    4151 #: includes/settings/class-cr-settings-forms.php:296
     4157#: includes/settings/class-cr-settings-forms.php:317
    41524158msgid "Enable reCAPTCHA to eliminate fake reviews. You must enter Site Key and Secret Key in the fields below if you want to use reCAPTCHA. You will receive Site Key and Secret Key after registration at reCAPTCHA website."
    41534159msgstr ""
    41544160
    4155 #: includes/settings/class-cr-settings-forms.php:302
     4161#: includes/settings/class-cr-settings-forms.php:323
    41564162msgid "reCAPTCHA V2 Site Key"
    41574163msgstr ""
    41584164
    4159 #: includes/settings/class-cr-settings-forms.php:304
     4165#: includes/settings/class-cr-settings-forms.php:325
    41604166msgid "If you want to use reCAPTCHA V2, insert here Site Key that you will receive after registration at reCAPTCHA website."
    41614167msgstr ""
    41624168
    4163 #: includes/settings/class-cr-settings-forms.php:310
     4169#: includes/settings/class-cr-settings-forms.php:331
    41644170msgid "reCAPTCHA V2 Secret Key"
    41654171msgstr ""
    41664172
    4167 #: includes/settings/class-cr-settings-forms.php:312
     4173#: includes/settings/class-cr-settings-forms.php:333
    41684174msgid "If you want to use reCAPTCHA V2, insert here Secret Key that you will receive after registration at reCAPTCHA website."
    41694175msgstr ""
    41704176
    4171 #: includes/settings/class-cr-settings-forms.php:339
     4177#: includes/settings/class-cr-settings-forms.php:360
    41724178msgid "Aggregated Review Form"
    41734179msgstr ""
    41744180
    4175 #: includes/settings/class-cr-settings-forms.php:345
     4181#: includes/settings/class-cr-settings-forms.php:366
    41764182msgid "Form Header"
    41774183msgstr ""
    41784184
    4179 #: includes/settings/class-cr-settings-forms.php:347
     4185#: includes/settings/class-cr-settings-forms.php:368
    41804186msgid "Header of the review form that will be sent to customers."
    41814187msgstr ""
    41824188
    4183 #: includes/settings/class-cr-settings-forms.php:355
     4189#: includes/settings/class-cr-settings-forms.php:376
    41844190msgid "Form Body"
    41854191msgstr ""
    41864192
    4187 #: includes/settings/class-cr-settings-forms.php:357
     4193#: includes/settings/class-cr-settings-forms.php:378
    41884194msgid "Body of the review form that will be sent to customers."
    41894195msgstr ""
    41904196
    4191 #: includes/settings/class-cr-settings-forms.php:366
     4197#: includes/settings/class-cr-settings-forms.php:387
    41924198msgid "Shop Rating"
    41934199msgstr ""
    41944200
    4195 #: includes/settings/class-cr-settings-forms.php:370
     4201#: includes/settings/class-cr-settings-forms.php:391
    41964202msgid "Enable this option if you would like to include a separate question for a general shop review in addition to questions for product reviews."
    41974203msgstr ""
    41984204
    4199 #: includes/settings/class-cr-settings-forms.php:374
     4205#: includes/settings/class-cr-settings-forms.php:395
    42004206msgid "Comment Required"
    42014207msgstr ""
    42024208
    4203 #: includes/settings/class-cr-settings-forms.php:378
     4209#: includes/settings/class-cr-settings-forms.php:399
    42044210msgid "Enable this option if you would like to make it mandatory for your customers to write something in their review. This option applies only to aggregated review forms."
    42054211msgstr ""
    42064212
    4207 #: includes/settings/class-cr-settings-forms.php:382
     4213#: includes/settings/class-cr-settings-forms.php:403
    42084214msgid "Attach Media"
    42094215msgstr ""
    42104216
    4211 #: includes/settings/class-cr-settings-forms.php:390
     4217#: includes/settings/class-cr-settings-forms.php:411
    42124218msgid "Form Color 1"
    42134219msgstr ""
    42144220
    4215 #: includes/settings/class-cr-settings-forms.php:394
     4221#: includes/settings/class-cr-settings-forms.php:415
    42164222msgid "Background color for heading of the form and product names."
    42174223msgstr ""
    42184224
    4219 #: includes/settings/class-cr-settings-forms.php:399
     4225#: includes/settings/class-cr-settings-forms.php:420
    42204226msgid "Form Color 2"
    42214227msgstr ""
    42224228
    4223 #: includes/settings/class-cr-settings-forms.php:403
     4229#: includes/settings/class-cr-settings-forms.php:424
    42244230msgid "Text color for product names."
    42254231msgstr ""
    42264232
    4227 #: includes/settings/class-cr-settings-forms.php:408
     4233#: includes/settings/class-cr-settings-forms.php:429
    42284234msgid "Form Color 3"
    42294235msgstr ""
    42304236
    4231 #: includes/settings/class-cr-settings-forms.php:412
     4237#: includes/settings/class-cr-settings-forms.php:433
    42324238msgid "Color of control elements (buttons, rating bars)."
    42334239msgstr ""
    42344240
    4235 #: includes/settings/class-cr-settings-forms.php:425
     4241#: includes/settings/class-cr-settings-forms.php:446
    42364242msgid "Rating Bar"
    42374243msgstr ""
    42384244
    4239 #: includes/settings/class-cr-settings-forms.php:429
     4245#: includes/settings/class-cr-settings-forms.php:450
    42404246msgid "Visual style of rating bars on review forms."
    42414247msgstr ""
    42424248
    4243 #: includes/settings/class-cr-settings-forms.php:431
     4249#: includes/settings/class-cr-settings-forms.php:452
    42444250msgid "Smiley and frowny faces"
    42454251msgstr ""
    42464252
    4247 #: includes/settings/class-cr-settings-forms.php:432
     4253#: includes/settings/class-cr-settings-forms.php:453
    42484254#: blocks/build/reviews-grid/index.js:12
    42494255#: blocks/build/reviews-slider/index.js:12
     
    42534259msgstr ""
    42544260
    4255 #: includes/settings/class-cr-settings-forms.php:438
     4261#: includes/settings/class-cr-settings-forms.php:459
    42564262msgid "Geolocation"
    42574263msgstr ""
    42584264
    4259 #: includes/settings/class-cr-settings-forms.php:442
     4265#: includes/settings/class-cr-settings-forms.php:463
    42604266msgid "Enable geolocation on aggregated review forms. Customers will have an option to indicate where they are from. For example, \"England, United Kingdom\"."
    42614267msgstr ""
    42624268
    4263 #: includes/settings/class-cr-settings-forms.php:443
     4269#: includes/settings/class-cr-settings-forms.php:464
    42644270msgid "Automatic geolocation on review forms."
    42654271msgstr ""
    42664272
    4267 #: includes/settings/class-cr-settings-forms.php:450
     4273#: includes/settings/class-cr-settings-forms.php:471
    42684274msgid "Expiry Period"
    42694275msgstr ""
    42704276
    4271 #: includes/settings/class-cr-settings-forms.php:454
     4277#: includes/settings/class-cr-settings-forms.php:475
    42724278msgid "Aggregated review forms will be automatically deleted after the specified number of days, or kept indefinitely if set to 0."
    42734279msgstr ""
    42744280
    4275 #: includes/settings/class-cr-settings-forms.php:504
     4281#: includes/settings/class-cr-settings-forms.php:525
    42764282msgid "Add Question"
    42774283msgstr ""
    42784284
    4279 #: includes/settings/class-cr-settings-forms.php:507
     4285#: includes/settings/class-cr-settings-forms.php:528
    42804286msgid "The free version of the plugin supports up to 2 questions"
    42814287msgstr ""
    42824288
    4283 #: includes/settings/class-cr-settings-forms.php:517
    4284 #: includes/settings/class-cr-settings-forms.php:621
     4289#: includes/settings/class-cr-settings-forms.php:538
     4290#: includes/settings/class-cr-settings-forms.php:642
    42854291msgid "Question"
    42864292msgstr ""
    42874293
    4288 #: includes/settings/class-cr-settings-forms.php:612
     4294#: includes/settings/class-cr-settings-forms.php:633
    42894295msgid "Add a Question"
    42904296msgstr ""
    42914297
    4292 #: includes/settings/class-cr-settings-forms.php:624
     4298#: includes/settings/class-cr-settings-forms.php:645
    42934299msgid "E.g., What is your skin type?"
    42944300msgstr ""
    42954301
    4296 #: includes/settings/class-cr-settings-forms.php:627
     4302#: includes/settings/class-cr-settings-forms.php:648
    42974303msgid "* Question cannot be blank"
    42984304msgstr ""
    42994305
    4300 #: includes/settings/class-cr-settings-forms.php:635
     4306#: includes/settings/class-cr-settings-forms.php:656
    43014307msgid "E.g., Skin type"
    43024308msgstr ""
    43034309
    4304 #: includes/settings/class-cr-settings-forms.php:682
     4310#: includes/settings/class-cr-settings-forms.php:703
    43054311msgid "Would you like to delete this question?"
    43064312msgstr ""
    43074313
    4308 #: includes/settings/class-cr-settings-forms.php:808
     4314#: includes/settings/class-cr-settings-forms.php:829
    43094315msgid "Add a checkbox for people to accept your Terms and Conditions, Privacy Policy, and any other legal agreements required in your jurisdiction before submitting a review via an on-site review form."
    43104316msgstr ""
  • customer-reviews-woocommerce/trunk/readme.txt

    r3362076 r3363526  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 5.83.1
     7Stable tag: 5.83.2
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl.html
     
    234234== Changelog ==
    235235
     236= 5.83.2 =
     237* Improvement: an additional error message when reCAPTCHA is not configured correctly
    236238= 5.83.1 =
    237239* Improved compatibility with LearnDash plugin
Note: See TracChangeset for help on using the changeset viewer.