Plugin Directory

Changeset 3239989


Ignore:
Timestamp:
02/13/2025 10:29:58 AM (6 weeks ago)
Author:
webdigit
Message:

Update to version 2.4.11

Location:
smartsearchwp/trunk
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • smartsearchwp/trunk/includes/addons/class-wdgpt-addons-manager.php

    r3237420 r3239989  
    5353     */
    5454    public function retrieve_addons() {
    55 
     55        /*Fix performance issue while controlling the addons licence*/
     56        // Vérifier d'abord si on a un cache transient
     57        $cached_addons = get_transient( 'wdgpt_addons_cache' );
     58        if(false !== $cached_addons) {
     59            return $cached_addons;
     60        }
     61
     62        // Si pas de cache, faire l'appel API
    5663        $response = wp_remote_get( $this->url );
    5764        if ( is_wp_error( $response ) ) {
     
    5966        }
    6067        $body = wp_remote_retrieve_body( $response );
    61 
    62         return json_decode( $body, true );
     68        $addons = json_decode($body, true);
     69
     70        if ($addons) {
     71            // Mettre le résultat dans le cache pendant 12 heures
     72            set_transient( 'wdgpt_addons_cache', $addons, 12 * HOUR_IN_SECONDS );
     73        }
     74
     75        return $addons;
    6376    }
    6477
  • smartsearchwp/trunk/includes/addons/class-wdgpt-license-manager.php

    r3199559 r3239989  
    306306     */
    307307    public function renew_license( $license_key = '' ) {
     308        /*Fix performance issue while renewing the license*/
     309        $cached_result = get_transient('wdgpt_license_verification');
     310        if (false !== $cached_result) {
     311            return $cached_result;
     312        }
     313
    308314        $url = 'https://www.smartsearchwp.com/wp-json/smw/license-verification/';
    309315
     316
    310317        $url_website = site_url();
    311         $url_website = str_replace( 'http://', '', $url_website );
    312         $url_website = str_replace( 'https://', '', $url_website );
     318        $url_website = str_replace(['http://', 'https://'], '', $url_website);
     319
    313320        if ( '' === $license_key ) {
    314321            $license_key = get_option( 'wd_smartsearch_license', '' );
    315322        }
     323
    316324        $body = array(
    317325            'license_key' => $license_key,
     
    334342        $body     = wp_remote_retrieve_body( $response );
    335343        $data     = json_decode( $body );
    336         if ( ! $data->is_valid ) {
    337             return $data;
    338         }
    339 
    340         $this->save_option( 'wd_smartsearch_license', $license_key );
    341         $license_data = array(
    342             'license_key' => $license_key,
    343             'expiry_date' => $data->expiry_date,
    344         );
    345         $this->set_premium_license_transient( $license_data );
    346         if (!isset($data->license_key)) {
    347             $data->license_key = $license_key;
    348         }
     344
     345        if (!empty($data)) {
     346            // Cache le résultat pendant 6 heures
     347            set_transient('wdgpt_license_verification', $data, 6 * HOUR_IN_SECONDS);
     348
     349            if ( !$data->is_valid ) {
     350                return $data;
     351            }
     352
     353            $this->save_option( 'wd_smartsearch_license', $license_key );
     354            $license_data = array(
     355                'license_key' => $license_key,
     356                'expiry_date' => $data->expiry_date,
     357            );
     358            $this->set_premium_license_transient( $license_data );
     359            if (!isset($data->license_key)) {
     360                $data->license_key = $license_key;
     361            }
     362        }
     363       
    349364        return $data;
    350365    }
  • smartsearchwp/trunk/includes/config/wdgpt-config-general-settings.php

    r3199559 r3239989  
    136136            <?php
    137137        }
    138         ?>
     138        ?>
     139        <div style="margin: 20px 0; color: #1d2327; font-size: 14px; font-weight: 600;">
     140            <?php echo esc_html('Version : ' . WDGPT_CHATBOT_VERSION); ?>
     141        </div>
    139142
    140143        <table class="form-table">
     
    155158            </td>
    156159        </tr>
    157         <tr valign="top">
     160        <tr vertical-align="top">
    158161            <th scope="row">
    159162                <?php
     
    198201            </td>
    199202        </tr>
    200         <tr valign="top">
     203        <tr vertical-align="top">
    201204            <th scope="row">
    202205            <?php
     
    232235                    <?php } ?>
    233236                </select>
    234                 <p>
    235237                <?php
    236238                    $available_models      = wdpgt_get_models( $models );
     
    255257                    ?>
    256258                </p>
    257                 </p>
    258                 <p class="description">
    259                 <?php
    260                     esc_html_e(
    261                         'If you want to use gpt-4o, you must subscribe to chatgpt plus. The model gpt4-o is a better version of gpt-4, with faster speed and lower cost.',
    262                         'webdigit-chatbot'
    263                     );
    264                 ?>
    265                 </p>
     259                <!--
     260                <p class="description">
     261                <?php
     262                    //esc_html_e('If you want to use gpt-4o, you must subscribe to chatgpt API. The model gpt4-o is a better version of gpt-4, with faster speed and lower cost.','webdigit-chatbot');
     263                ?>
     264                </p>
     265                -->
    266266            </td>
    267267            </tr>
    268             <tr valign="top">
     268            <tr vertical-align="top">
    269269            <th scope="row">
    270270            <?php
     
    277277            <td><input type="text" name="wdgpt_name" value="<?php echo esc_attr( get_option( 'wdgpt_name', 'Pixel' ) ); ?>" /></td>
    278278            </tr>
    279             <tr valign="top">
     279            <tr vertical-align="top">
    280280                <th scope="row">
    281281                <?php
  • smartsearchwp/trunk/languages/webdigit-chatbot-de_DE.po

    r3237420 r3239989  
    22msgstr ""
    33"Project-Id-Version: SmartSearchWP\n"
    4 "POT-Creation-Date: 2024-12-02 07:49+0100\n"
    5 "PO-Revision-Date: 2024-12-02 07:52+0100\n"
     4"POT-Creation-Date: 2025-02-09 19:27+0100\n"
     5"PO-Revision-Date: 2025-02-09 19:27+0100\n"
    66"Last-Translator: JC <[email protected]>\n"
    77"Language-Team: JC <[email protected]>\n"
     
    4444
    4545#: class-wdgpt-chatbot-initializer.php:233
    46 #: class-wdgpt-chatbot-initializer.php:283
     46#: class-wdgpt-chatbot-initializer.php:284
    4747#: includes/summaries/class-wdgpt-summaries-table.php:65
    4848msgid "Regenerate Embeddings"
     
    5050
    5151#: class-wdgpt-chatbot-initializer.php:234
    52 #: class-wdgpt-chatbot-initializer.php:284
     52#: class-wdgpt-chatbot-initializer.php:285
    5353#: includes/addons/wdgpt-addons-catalog-settings.php:207
    5454#: includes/summaries/class-wdgpt-summaries-table.php:85
     55#: includes/summaries/class-wdgpt-summaries-table.php:121
    5556msgid "Activate"
    5657msgstr "Aktivieren"
    5758
    5859#: class-wdgpt-chatbot-initializer.php:235
    59 #: class-wdgpt-chatbot-initializer.php:285
     60#: class-wdgpt-chatbot-initializer.php:286
    6061#: includes/addons/wdgpt-addons-catalog-settings.php:205
    6162#: includes/summaries/class-wdgpt-summaries-table.php:81
     63#: includes/summaries/class-wdgpt-summaries-table.php:122
    6264msgid "Deactivate"
    6365msgstr "Deaktivieren"
     
    6870
    6971#: class-wdgpt-chatbot-initializer.php:237
    70 #: includes/config/wdgpt-config-general-settings.php:500
     72#: includes/config/wdgpt-config-general-settings.php:503
    7173#: includes/wdgpt-client.php:141
    7274msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
    7375msgstr "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
    7476
    75 #: class-wdgpt-chatbot-initializer.php:286 includes/wdgpt-config.php:29
     77#: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29
    7678msgid "Please enter your api key!"
    7779msgstr "Bitte geben Sie Ihren Api-Schlüssel ein!"
    7880
    79 #: class-wdgpt-chatbot-initializer.php:287
     81#: class-wdgpt-chatbot-initializer.php:288
    8082msgid ""
    8183"Your api key is invalid! If you think this is a mistake, please check your "
     
    8789"passieren, wenn die OpenAI-API Probleme hat oder ausgefallen ist."
    8890
    89 #: class-wdgpt-chatbot-initializer.php:288
     91#: class-wdgpt-chatbot-initializer.php:289
    9092msgid "Your api key is valid! Don't forget to save your changes."
    9193msgstr ""
     
    9395"speichern."
    9496
    95 #: class-wdgpt-chatbot-initializer.php:289
    96 #: includes/config/wdgpt-config-general-settings.php:250
     97#: class-wdgpt-chatbot-initializer.php:290
     98#: includes/config/wdgpt-config-general-settings.php:253
    9799msgid ""
    98100"The previously selected model is not available anymore with your current api "
     
    104106"Bitte wählen Sie ein neues Modell. Ihr vorheriges Modell war: "
    105107
    106 #: class-wdgpt-chatbot-initializer.php:290
     108#: class-wdgpt-chatbot-initializer.php:291
    107109#: includes/addons/wdgpt-addons-license-settings.php:151
    108110msgid "You currently have a free license key."
    109111msgstr "Sie haben derzeit einen kostenlosen Lizenzschlüssel."
    110112
    111 #: class-wdgpt-chatbot-initializer.php:291
     113#: class-wdgpt-chatbot-initializer.php:292
    112114msgid ""
    113115"There was an issue retrieving your free license key. Please try again later."
     
    116118"Bitte versuchen Sie es später noch einmal."
    117119
    118 #: class-wdgpt-chatbot-initializer.php:292
     120#: class-wdgpt-chatbot-initializer.php:293
    119121#: includes/addons/wdgpt-addons-license-settings.php:63
    120122msgid ""
     
    125127"Website registriert. Sie können nun die Premium-Funktionen nutzen."
    126128
    127 #: class-wdgpt-chatbot-initializer.php:293
     129#: class-wdgpt-chatbot-initializer.php:294
    128130#: includes/addons/wdgpt-addons-license-settings.php:58
    129131msgid ""
     
    134136"Ihren Lizenzschlüssel."
    135137
    136 #: class-wdgpt-chatbot-initializer.php:294
     138#: class-wdgpt-chatbot-initializer.php:295
    137139msgid ""
    138140"Your SmartSearchWP Premium license was already registered with the current "
     
    142144"registriert. Sie können die Premium-Funktionen nutzen."
    143145
    144 #: class-wdgpt-chatbot-initializer.php:295
     146#: class-wdgpt-chatbot-initializer.php:296
    145147msgid ""
    146148"Your SmartSearchWP Premium license was already registered with another site. "
     
    153155"nicht passieren sollte."
    154156
    155 #: class-wdgpt-chatbot-initializer.php:296
     157#: class-wdgpt-chatbot-initializer.php:297
    156158msgid ""
    157159"There was an issue registering your SmartSearchWP Premium license with the "
     
    163165"kontaktieren Sie den Support, wenn das Problem weiterhin besteht."
    164166
    165 #: class-wdgpt-chatbot-initializer.php:297
     167#: class-wdgpt-chatbot-initializer.php:298
    166168msgid ""
    167169"There was an issue retrieving the expiry date of your SmartSearchWP Premium "
     
    172174"Support, wenn das Problem weiterhin besteht."
    173175
    174 #: class-wdgpt-chatbot-initializer.php:298
     176#: class-wdgpt-chatbot-initializer.php:299
    175177msgid ""
    176178"Your SmartSearchWP Premium license has expired. Please renew it to continue "
     
    181183"dann erneut."
    182184
    183 #: class-wdgpt-chatbot-initializer.php:356
    184185#: class-wdgpt-chatbot-initializer.php:357
     186#: class-wdgpt-chatbot-initializer.php:358
    185187msgid "Settings"
    186188msgstr "Einstellungen"
    187189
    188 #: class-wdgpt-chatbot-initializer.php:364
    189190#: class-wdgpt-chatbot-initializer.php:365
     191#: class-wdgpt-chatbot-initializer.php:366
    190192msgid "Summary_title"
    191193msgstr "Zusammenfassung_Titel"
    192194
    193 #: class-wdgpt-chatbot-initializer.php:372
    194195#: class-wdgpt-chatbot-initializer.php:373
     196#: class-wdgpt-chatbot-initializer.php:374
    195197#: includes/logs/wdgpt-config-logs.php:26
    196198msgid "Chat Logs"
    197199msgstr "Chat-Protokolle"
    198200
    199 #: class-wdgpt-chatbot-initializer.php:381
    200201#: class-wdgpt-chatbot-initializer.php:382
     202#: class-wdgpt-chatbot-initializer.php:383
    201203#: includes/logs/wdgpt-config-error-logs.php:26
    202204msgid "Error Logs"
    203205msgstr "Fehlerprotokolle"
    204206
    205 #: class-wdgpt-chatbot-initializer.php:390
    206207#: class-wdgpt-chatbot-initializer.php:391
     208#: class-wdgpt-chatbot-initializer.php:392
    207209msgid "Addons"
    208210msgstr "Erweiterungen"
    209211
    210212#. translators: %s: required version of the plugin
    211 #: includes/addons/class-wdgpt-addons-manager.php:126
     213#: includes/addons/class-wdgpt-addons-manager.php:100
    212214#, php-format
    213215msgid "This addon will require at least version %s of the plugin to function."
     
    565567"ini-Datei."
    566568
    567 #: includes/config/wdgpt-config-general-settings.php:145
     569#: includes/config/wdgpt-config-general-settings.php:148
    568570msgid "Enable Chatbot:"
    569571msgstr "Chatbot aktivieren:"
    570572
    571 #: includes/config/wdgpt-config-general-settings.php:161
     573#: includes/config/wdgpt-config-general-settings.php:164
    572574msgid "OpenAi API Key:"
    573575msgstr "OpenAi API-Schlüssel:"
    574576
    575 #: includes/config/wdgpt-config-general-settings.php:171
     577#: includes/config/wdgpt-config-general-settings.php:174
    576578msgid "Validate Key"
    577579msgstr "Lizenz validieren"
    578580
    579 #: includes/config/wdgpt-config-general-settings.php:185
     581#: includes/config/wdgpt-config-general-settings.php:188
    580582msgid "You can get your api key"
    581583msgstr "Sie können Ihren Api-Schlüssel erhalten"
    582584
    583 #: includes/config/wdgpt-config-general-settings.php:192
     585#: includes/config/wdgpt-config-general-settings.php:195
    584586msgid "here"
    585587msgstr "hier"
    586588
    587 #: includes/config/wdgpt-config-general-settings.php:204
     589#: includes/config/wdgpt-config-general-settings.php:207
    588590msgid "ChatGPT Model:"
    589591msgstr "ChatGPT Modell:"
    590592
    591 #: includes/config/wdgpt-config-general-settings.php:261
     593#: includes/config/wdgpt-config-general-settings.php:264
    592594msgid ""
    593595"If you want to use gpt-4o, you must subscribe to chatgpt plus. The model "
     
    598600"Geschwindigkeit und niedrigeren Kosten."
    599601
    600 #: includes/config/wdgpt-config-general-settings.php:272
     602#: includes/config/wdgpt-config-general-settings.php:275
    601603msgid "Chatbot Name:"
    602604msgstr "Chatbot-Name:"
    603605
    604 #: includes/config/wdgpt-config-general-settings.php:283
     606#: includes/config/wdgpt-config-general-settings.php:286
    605607msgid "Chatbot Logo:"
    606608msgstr "Chatbot-Logo:"
    607609
    608 #: includes/config/wdgpt-config-general-settings.php:319
     610#: includes/config/wdgpt-config-general-settings.php:322
    609611msgid "Temperature:"
    610612msgstr "Temperatur:"
    611613
    612 #: includes/config/wdgpt-config-general-settings.php:339
     614#: includes/config/wdgpt-config-general-settings.php:342
    613615msgid ""
    614616"The temperature parameter influences the level of randomness in the output "
     
    624626"auch unberechenbarer in seinen Ergebnissen."
    625627
    626 #: includes/config/wdgpt-config-general-settings.php:350
     628#: includes/config/wdgpt-config-general-settings.php:353
    627629msgid "Max used contexts:"
    628630msgstr "Maximal verwendete Kontexte:"
    629631
    630 #: includes/config/wdgpt-config-general-settings.php:374
     632#: includes/config/wdgpt-config-general-settings.php:377
    631633msgid ""
    632634"The maximum number of contexts that the model can use to generate an answer. "
     
    648650"auf 10 erhöhen."
    649651
    650 #: includes/config/wdgpt-config-general-settings.php:385
     652#: includes/config/wdgpt-config-general-settings.php:388
    651653msgid "Similarity threshold:"
    652654msgstr "Ähnlichkeitsschwelle:"
    653655
    654 #: includes/config/wdgpt-config-general-settings.php:410
     656#: includes/config/wdgpt-config-general-settings.php:413
    655657#, no-php-format
    656658msgid ""
     
    677679"auf 10 erhöhen."
    678680
    679 #: includes/config/wdgpt-config-general-settings.php:421
     681#: includes/config/wdgpt-config-general-settings.php:424
    680682msgid "Precision threshold:"
    681683msgstr "Präzisionsschwelle:"
    682684
    683 #: includes/config/wdgpt-config-general-settings.php:446
     685#: includes/config/wdgpt-config-general-settings.php:449
    684686msgid ""
    685687"The minimum precision required for a context to be considered eligible "
     
    698700"ausreichend relevant sind."
    699701
    700 #: includes/config/wdgpt-config-general-settings.php:457
     702#: includes/config/wdgpt-config-general-settings.php:460
    701703msgid "Enable Chatbot Bubble:"
    702704msgstr "Aktivieren Sie Chatbot Bubble:"
    703705
    704 #: includes/config/wdgpt-config-general-settings.php:473
     706#: includes/config/wdgpt-config-general-settings.php:476
    705707msgid "Chatbot Bubble Typing Text:"
    706708msgstr "Chatbot-Blase tippt Text:"
    707709
    708 #: includes/config/wdgpt-config-general-settings.php:479
     710#: includes/config/wdgpt-config-general-settings.php:482
    709711#: includes/wdgpt-client.php:121
    710712msgid "Hello, may I help you?"
    711713msgstr "Hallo, kann ich Ihnen helfen?"
    712714
    713 #: includes/config/wdgpt-config-general-settings.php:483
     715#: includes/config/wdgpt-config-general-settings.php:486
    714716msgid ""
    715717"This is the text that will be displayed in the chat bubble above the circle "
     
    721723"wird die Standardübersetzung verwendet."
    722724
    723 #: includes/config/wdgpt-config-general-settings.php:494
     725#: includes/config/wdgpt-config-general-settings.php:497
    724726msgid "Greetings Message:"
    725727msgstr "Grußbotschaft:"
    726728
    727 #: includes/config/wdgpt-config-general-settings.php:504
     729#: includes/config/wdgpt-config-general-settings.php:507
    728730msgid ""
    729731"This is the message that will be displayed when the chatbot will be greeting "
     
    735737"bestimmte Sprache nichts festlegen, wird die Standardübersetzung verwendet."
    736738
    737 #: includes/config/wdgpt-config-general-settings.php:515
     739#: includes/config/wdgpt-config-general-settings.php:518
    738740#: includes/config/wdgpt-config-reporting-settings.php:255
    739741msgid "Save Changes"
     
    882884#: includes/logs/class-wdgpt-error-logs-table.php:76
    883885#: includes/logs/class-wdgpt-logs-table.php:208
    884 #: includes/summaries/class-wdgpt-summaries-table.php:388
     886#: includes/summaries/class-wdgpt-summaries-table.php:404
    885887msgid "ID"
    886888msgstr "ID"
     
    953955
    954956#: includes/summaries/class-wdgpt-summaries-table.php:65
     957#: includes/summaries/class-wdgpt-summaries-table.php:123
    955958msgid "Generate Embeddings"
    956959msgstr "Einbettungen generieren"
     
    964967"bevor Sie Einbettungen erzeugen."
    965968
    966 #: includes/summaries/class-wdgpt-summaries-table.php:248
    967 #: includes/summaries/class-wdgpt-summaries-table.php:295
     969#: includes/summaries/class-wdgpt-summaries-table.php:263
     970#: includes/summaries/class-wdgpt-summaries-table.php:310
    968971msgid "All"
    969972msgstr "Alle"
    970973
    971 #: includes/summaries/class-wdgpt-summaries-table.php:266
     974#: includes/summaries/class-wdgpt-summaries-table.php:281
    972975msgid "Search"
    973976msgstr "Suche"
    974977
    975 #: includes/summaries/class-wdgpt-summaries-table.php:296
    976 #: includes/summaries/class-wdgpt-summaries-table.php:375
     978#: includes/summaries/class-wdgpt-summaries-table.php:311
     979#: includes/summaries/class-wdgpt-summaries-table.php:391
    977980msgid "Active"
    978981msgstr "Aktiv"
    979982
    980 #: includes/summaries/class-wdgpt-summaries-table.php:297
     983#: includes/summaries/class-wdgpt-summaries-table.php:312
    981984msgid "Inactive"
    982985msgstr "Inaktiv"
    983986
    984 #: includes/summaries/class-wdgpt-summaries-table.php:298
    985 #: includes/summaries/class-wdgpt-summaries-table.php:373
     987#: includes/summaries/class-wdgpt-summaries-table.php:313
     988#: includes/summaries/class-wdgpt-summaries-table.php:389
    986989msgid "Embeddings"
    987990msgstr "Einbettungen"
    988991
    989 #: includes/summaries/class-wdgpt-summaries-table.php:299
     992#: includes/summaries/class-wdgpt-summaries-table.php:314
    990993msgid "No Embeddings"
    991994msgstr "Keine Einbettungen"
    992995
    993 #: includes/summaries/class-wdgpt-summaries-table.php:300
     996#: includes/summaries/class-wdgpt-summaries-table.php:315
    994997msgid "Up to date"
    995998msgstr "Aktuell"
    996999
    997 #: includes/summaries/class-wdgpt-summaries-table.php:301
     1000#: includes/summaries/class-wdgpt-summaries-table.php:316
    9981001msgid "Not up to date"
    9991002msgstr "Nicht aktuell"
    10001003
    1001 #: includes/summaries/class-wdgpt-summaries-table.php:332
     1004#: includes/summaries/class-wdgpt-summaries-table.php:347
    10021005msgid "Filter"
    10031006msgstr "Filter"
    10041007
    1005 #: includes/summaries/class-wdgpt-summaries-table.php:359
     1008#: includes/summaries/class-wdgpt-summaries-table.php:374
    10061009msgid ""
    10071010"Embeddings are used to find the most similar posts/pages to the user query. "
     
    10161019"\"Einbettungen generieren\"."
    10171020
    1018 #: includes/summaries/class-wdgpt-summaries-table.php:362
     1021#: includes/summaries/class-wdgpt-summaries-table.php:378
    10191022msgid "Title"
    10201023msgstr "Titel"
    10211024
    1022 #: includes/summaries/class-wdgpt-summaries-table.php:366
     1025#: includes/summaries/class-wdgpt-summaries-table.php:382
    10231026msgid "Language"
    10241027msgstr "Sprache"
    10251028
    1026 #: includes/summaries/class-wdgpt-summaries-table.php:372
     1029#: includes/summaries/class-wdgpt-summaries-table.php:388
    10271030msgid "Last Post Modification"
    10281031msgstr "Letzter Beitrag Modifikation"
    10291032
    1030 #: includes/summaries/class-wdgpt-summaries-table.php:374
     1033#: includes/summaries/class-wdgpt-summaries-table.php:390
    10311034msgid "Last Embeddings Generation"
    10321035msgstr "Letzte Einbettungsgeneration"
    10331036
    1034 #: includes/summaries/class-wdgpt-summaries-table.php:389
     1037#: includes/summaries/class-wdgpt-summaries-table.php:405
    10351038msgid "Content"
    10361039msgstr "Inhalt"
     1040
     1041#: includes/summaries/class-wdgpt-summaries-table.php:622
     1042#, php-format
     1043msgid "%d items activated. %d items skipped (no embeddings)."
     1044msgstr "%d Elemente aktiviert. %d Elemente übersprungen (keine Einbettungen)."
     1045
     1046#: includes/summaries/class-wdgpt-summaries-table.php:640
     1047#, php-format
     1048msgid "%d items deactivated. %d items skipped (not active)."
     1049msgstr "%d deaktivierte Einträge. %d Positionen übersprungen (nicht aktiv)."
     1050
     1051#: includes/summaries/class-wdgpt-summaries-table.php:677
     1052#, php-format
     1053msgid "Embeddings generation started for %d items. %d items skipped."
     1054msgstr ""
     1055"Erzeugung von Einbettungen für %d Elemente gestartet. %d Elemente "
     1056"übersprungen."
    10371057
    10381058#: includes/summaries/wdgpt-config-summary.php:24
  • smartsearchwp/trunk/languages/webdigit-chatbot-en_GB.po

    r3199870 r3239989  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: webdigit-chatbot\n"
    4 "POT-Creation-Date: 2024-11-30 12:11+0100\n"
    5 "PO-Revision-Date: 2024-11-30 12:11+0100\n"
     3"Project-Id-Version: SmartSearchWP\n"
     4"POT-Creation-Date: 2025-02-09 19:23+0100\n"
     5"PO-Revision-Date: 2025-02-09 19:29+0100\n"
    66"Last-Translator: JC <[email protected]>\n"
    7 "Language-Team: www.webdigit.be\n"
    8 "Language: en_EN\n"
     7"Language-Team: JC <[email protected]>\n"
     8"Language: en_GB\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=UTF-8\n"
     
    1212"X-Generator: Poedit 3.5\n"
    1313"X-Poedit-Basepath: ..\n"
    14 "X-Poedit-KeywordsList: __;_e;esc_html_e\n"
     14"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
     15"X-Poedit-WPHeader: wdgpt.php\n"
     16"X-Poedit-SourceCharset: UTF-8\n"
     17"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
     18"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
     19"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
    1520"X-Poedit-SearchPath-0: .\n"
    16 "X-Poedit-SearchPathExcluded-0: js\n"
     21"X-Poedit-SearchPathExcluded-0: *.min.js\n"
     22"X-Poedit-SearchPathExcluded-1: js/node_modules\n"
     23"X-Poedit-SearchPathExcluded-2: vendor\n"
    1724
    1825#: class-wdgpt-chatbot-initializer.php:229
     
    3340
    3441#: class-wdgpt-chatbot-initializer.php:233
    35 #: class-wdgpt-chatbot-initializer.php:283
     42#: class-wdgpt-chatbot-initializer.php:284
    3643#: includes/summaries/class-wdgpt-summaries-table.php:65
    3744msgid "Regenerate Embeddings"
     
    3946
    4047#: class-wdgpt-chatbot-initializer.php:234
    41 #: class-wdgpt-chatbot-initializer.php:284
     48#: class-wdgpt-chatbot-initializer.php:285
    4249#: includes/addons/wdgpt-addons-catalog-settings.php:207
    4350#: includes/summaries/class-wdgpt-summaries-table.php:85
     51#: includes/summaries/class-wdgpt-summaries-table.php:121
    4452msgid "Activate"
    4553msgstr "Activate"
    4654
    4755#: class-wdgpt-chatbot-initializer.php:235
    48 #: class-wdgpt-chatbot-initializer.php:285
     56#: class-wdgpt-chatbot-initializer.php:286
    4957#: includes/addons/wdgpt-addons-catalog-settings.php:205
    5058#: includes/summaries/class-wdgpt-summaries-table.php:81
     59#: includes/summaries/class-wdgpt-summaries-table.php:122
    5160msgid "Deactivate"
    5261msgstr "Deactivate"
     
    5766
    5867#: class-wdgpt-chatbot-initializer.php:237
    59 #: includes/config/wdgpt-config-general-settings.php:500
     68#: includes/config/wdgpt-config-general-settings.php:503
    6069#: includes/wdgpt-client.php:141
    6170msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
    6271msgstr "Hello, I am SmartSearchWP, how can I help you?"
    6372
    64 #: class-wdgpt-chatbot-initializer.php:286 includes/wdgpt-config.php:29
     73#: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29
    6574msgid "Please enter your api key!"
    6675msgstr "Please enter your API key!"
    6776
    68 #: class-wdgpt-chatbot-initializer.php:287
     77#: class-wdgpt-chatbot-initializer.php:288
    6978msgid ""
    7079"Your api key is invalid! If you think this is a mistake, please check your "
     
    7685"having issues, or is down."
    7786
    78 #: class-wdgpt-chatbot-initializer.php:288
     87#: class-wdgpt-chatbot-initializer.php:289
    7988msgid "Your api key is valid! Don't forget to save your changes."
    8089msgstr "Your api key is valid! Don't forget to save your changes."
    8190
    82 #: class-wdgpt-chatbot-initializer.php:289
    83 #: includes/config/wdgpt-config-general-settings.php:250
     91#: class-wdgpt-chatbot-initializer.php:290
     92#: includes/config/wdgpt-config-general-settings.php:253
    8493msgid ""
    8594"The previously selected model is not available anymore with your current api "
     
    91100"Your previous model was: "
    92101
    93 #: class-wdgpt-chatbot-initializer.php:290
     102#: class-wdgpt-chatbot-initializer.php:291
    94103#: includes/addons/wdgpt-addons-license-settings.php:151
    95104msgid "You currently have a free license key."
    96105msgstr "You currently have a free license key."
    97106
    98 #: class-wdgpt-chatbot-initializer.php:291
     107#: class-wdgpt-chatbot-initializer.php:292
    99108msgid ""
    100109"There was an issue retrieving your free license key. Please try again later."
     
    102111"There was an issue retrieving your free license key. Please try again later."
    103112
    104 #: class-wdgpt-chatbot-initializer.php:292
     113#: class-wdgpt-chatbot-initializer.php:293
    105114#: includes/addons/wdgpt-addons-license-settings.php:63
    106115msgid ""
     
    111120"the current site. You can now use the premium features."
    112121
    113 #: class-wdgpt-chatbot-initializer.php:293
     122#: class-wdgpt-chatbot-initializer.php:294
    114123#: includes/addons/wdgpt-addons-license-settings.php:58
    115124msgid ""
     
    120129"key."
    121130
    122 #: class-wdgpt-chatbot-initializer.php:294
     131#: class-wdgpt-chatbot-initializer.php:295
    123132msgid ""
    124133"Your SmartSearchWP Premium license was already registered with the current "
     
    128137"site. You can use the premium features."
    129138
    130 #: class-wdgpt-chatbot-initializer.php:295
     139#: class-wdgpt-chatbot-initializer.php:296
    131140msgid ""
    132141"Your SmartSearchWP Premium license was already registered with another site. "
     
    138147"should not happen."
    139148
    140 #: class-wdgpt-chatbot-initializer.php:296
     149#: class-wdgpt-chatbot-initializer.php:297
    141150msgid ""
    142151"There was an issue registering your SmartSearchWP Premium license with the "
     
    148157"persists."
    149158
    150 #: class-wdgpt-chatbot-initializer.php:297
     159#: class-wdgpt-chatbot-initializer.php:298
    151160msgid ""
    152161"There was an issue retrieving the expiry date of your SmartSearchWP Premium "
     
    156165"license. Please try again later, or contact support if the problem persists."
    157166
    158 #: class-wdgpt-chatbot-initializer.php:298
     167#: class-wdgpt-chatbot-initializer.php:299
    159168msgid ""
    160169"Your SmartSearchWP Premium license has expired. Please renew it to continue "
     
    164173"using the premium features, then verify it again."
    165174
    166 #: class-wdgpt-chatbot-initializer.php:356
    167175#: class-wdgpt-chatbot-initializer.php:357
     176#: class-wdgpt-chatbot-initializer.php:358
    168177msgid "Settings"
    169178msgstr "Settings"
    170179
    171 #: class-wdgpt-chatbot-initializer.php:364
    172180#: class-wdgpt-chatbot-initializer.php:365
     181#: class-wdgpt-chatbot-initializer.php:366
    173182msgid "Summary_title"
    174183msgstr "Contexts"
    175184
    176 #: class-wdgpt-chatbot-initializer.php:372
    177185#: class-wdgpt-chatbot-initializer.php:373
     186#: class-wdgpt-chatbot-initializer.php:374
    178187#: includes/logs/wdgpt-config-logs.php:26
    179188msgid "Chat Logs"
    180189msgstr "Chat Logs"
    181190
    182 #: class-wdgpt-chatbot-initializer.php:381
    183191#: class-wdgpt-chatbot-initializer.php:382
     192#: class-wdgpt-chatbot-initializer.php:383
    184193#: includes/logs/wdgpt-config-error-logs.php:26
    185194msgid "Error Logs"
    186195msgstr "Error Logs"
    187196
    188 #: class-wdgpt-chatbot-initializer.php:390
    189197#: class-wdgpt-chatbot-initializer.php:391
     198#: class-wdgpt-chatbot-initializer.php:392
    190199msgid "Addons"
    191200msgstr "Addons"
     
    361370"For anything related to the SmartSearchWP Premium version, please visit"
    362371
     372#. Plugin Name of the plugin/theme
    363373#: includes/addons/wdgpt-addons-license-settings.php:31
    364374msgid "SmartSearchWP"
     
    452462msgstr "Get your free license"
    453463
    454 #: includes/addons/wdgpt-addons.php:23
     464#: includes/addons/wdgpt-addons.php:26
    455465msgid "Addons manager"
    456466msgstr "Addons manager"
    457467
    458 #: includes/addons/wdgpt-addons.php:24
     468#: includes/addons/wdgpt-addons.php:27
    459469msgid "License settings"
    460470msgstr "License settings"
     
    529539"enable the allow_url_fopen option in your php.ini file."
    530540
    531 #: includes/config/wdgpt-config-general-settings.php:145
     541#: includes/config/wdgpt-config-general-settings.php:148
    532542msgid "Enable Chatbot:"
    533543msgstr "Enable Chatbot:"
    534544
    535 #: includes/config/wdgpt-config-general-settings.php:161
     545#: includes/config/wdgpt-config-general-settings.php:164
    536546msgid "OpenAi API Key:"
    537547msgstr "OpenAi API Key:"
    538548
    539 #: includes/config/wdgpt-config-general-settings.php:171
     549#: includes/config/wdgpt-config-general-settings.php:174
    540550msgid "Validate Key"
    541551msgstr "Validate Key"
    542552
    543 #: includes/config/wdgpt-config-general-settings.php:185
     553#: includes/config/wdgpt-config-general-settings.php:188
    544554msgid "You can get your api key"
    545555msgstr "You can get your API key"
    546556
    547 #: includes/config/wdgpt-config-general-settings.php:192
     557#: includes/config/wdgpt-config-general-settings.php:195
    548558msgid "here"
    549559msgstr "here"
    550560
    551 #: includes/config/wdgpt-config-general-settings.php:204
     561#: includes/config/wdgpt-config-general-settings.php:207
    552562msgid "ChatGPT Model:"
    553563msgstr "ChatGPT Model:"
    554564
    555 #: includes/config/wdgpt-config-general-settings.php:261
     565#: includes/config/wdgpt-config-general-settings.php:264
    556566msgid ""
    557567"If you want to use gpt-4o, you must subscribe to chatgpt plus. The model "
     
    561571"gpt4-o is a better version of gpt-4, with faster speed and lower cost."
    562572
    563 #: includes/config/wdgpt-config-general-settings.php:272
     573#: includes/config/wdgpt-config-general-settings.php:275
    564574msgid "Chatbot Name:"
    565575msgstr "Chatbot Name:"
    566576
    567 #: includes/config/wdgpt-config-general-settings.php:283
     577#: includes/config/wdgpt-config-general-settings.php:286
    568578msgid "Chatbot Logo:"
    569579msgstr "Chatbot Logo:"
    570580
    571 #: includes/config/wdgpt-config-general-settings.php:319
     581#: includes/config/wdgpt-config-general-settings.php:322
    572582msgid "Temperature:"
    573583msgstr "Temperature:"
    574584
    575 #: includes/config/wdgpt-config-general-settings.php:339
     585#: includes/config/wdgpt-config-general-settings.php:342
    576586msgid ""
    577587"The temperature parameter influences the level of randomness in the output "
     
    587597"its outputs more unpredictable."
    588598
    589 #: includes/config/wdgpt-config-general-settings.php:350
     599#: includes/config/wdgpt-config-general-settings.php:353
    590600msgid "Max used contexts:"
    591601msgstr "Max. used contexts:"
    592602
    593 #: includes/config/wdgpt-config-general-settings.php:374
     603#: includes/config/wdgpt-config-general-settings.php:377
    594604msgid ""
    595605"The maximum number of contexts that the model can use to generate an answer. "
     
    609619"creativity, you can increase this value to 10."
    610620
    611 #: includes/config/wdgpt-config-general-settings.php:385
     621#: includes/config/wdgpt-config-general-settings.php:388
    612622msgid "Similarity threshold:"
    613623msgstr "Similarity threshold:"
    614624
    615 #: includes/config/wdgpt-config-general-settings.php:410
     625#: includes/config/wdgpt-config-general-settings.php:413
    616626#, no-php-format
    617627msgid ""
     
    636646"creativity, you can increase this value to 10."
    637647
    638 #: includes/config/wdgpt-config-general-settings.php:421
     648#: includes/config/wdgpt-config-general-settings.php:424
    639649msgid "Precision threshold:"
    640650msgstr "Precision threshold:"
    641651
    642 #: includes/config/wdgpt-config-general-settings.php:446
     652#: includes/config/wdgpt-config-general-settings.php:449
    643653msgid ""
    644654"The minimum precision required for a context to be considered eligible "
     
    656666"are not sufficiently relevant."
    657667
    658 #: includes/config/wdgpt-config-general-settings.php:457
     668#: includes/config/wdgpt-config-general-settings.php:460
    659669msgid "Enable Chatbot Bubble:"
    660670msgstr "Enable Chatbot Bubble:"
    661671
    662 #: includes/config/wdgpt-config-general-settings.php:473
     672#: includes/config/wdgpt-config-general-settings.php:476
    663673msgid "Chatbot Bubble Typing Text:"
    664674msgstr "Chatbot Bubble Typing Text:"
    665675
    666 #: includes/config/wdgpt-config-general-settings.php:479
     676#: includes/config/wdgpt-config-general-settings.php:482
    667677#: includes/wdgpt-client.php:121
    668678msgid "Hello, may I help you?"
    669679msgstr "Hello, may I help you?"
    670680
    671 #: includes/config/wdgpt-config-general-settings.php:483
     681#: includes/config/wdgpt-config-general-settings.php:486
    672682msgid ""
    673683"This is the text that will be displayed in the chat bubble above the circle "
     
    679689"default translation will be used."
    680690
    681 #: includes/config/wdgpt-config-general-settings.php:494
     691#: includes/config/wdgpt-config-general-settings.php:497
    682692msgid "Greetings Message:"
    683693msgstr "Greetings Message:"
    684694
    685 #: includes/config/wdgpt-config-general-settings.php:504
     695#: includes/config/wdgpt-config-general-settings.php:507
    686696msgid ""
    687697"This is the message that will be displayed when the chatbot will be greeting "
     
    693703"in a certain language, the default translation will be used."
    694704
    695 #: includes/config/wdgpt-config-general-settings.php:515
     705#: includes/config/wdgpt-config-general-settings.php:518
    696706#: includes/config/wdgpt-config-reporting-settings.php:255
    697707msgid "Save Changes"
     
    835845#: includes/logs/class-wdgpt-error-logs-table.php:76
    836846#: includes/logs/class-wdgpt-logs-table.php:208
    837 #: includes/summaries/class-wdgpt-summaries-table.php:388
     847#: includes/summaries/class-wdgpt-summaries-table.php:404
    838848msgid "ID"
    839849msgstr "ID"
     
    891901
    892902#. translators: %d: number of months
     903#: includes/logs/wdgpt-config-error-logs.php:36
    893904#: includes/logs/wdgpt-config-logs.php:36
    894905#, php-format
     
    905916
    906917#: includes/summaries/class-wdgpt-summaries-table.php:65
     918#: includes/summaries/class-wdgpt-summaries-table.php:123
    907919msgid "Generate Embeddings"
    908920msgstr "Training AI"
     
    916928"embeddings."
    917929
    918 #: includes/summaries/class-wdgpt-summaries-table.php:248
    919 #: includes/summaries/class-wdgpt-summaries-table.php:295
     930#: includes/summaries/class-wdgpt-summaries-table.php:263
     931#: includes/summaries/class-wdgpt-summaries-table.php:310
    920932msgid "All"
    921933msgstr "All"
    922934
    923 #: includes/summaries/class-wdgpt-summaries-table.php:266
     935#: includes/summaries/class-wdgpt-summaries-table.php:281
    924936msgid "Search"
    925937msgstr "Search"
    926938
    927 #: includes/summaries/class-wdgpt-summaries-table.php:296
    928 #: includes/summaries/class-wdgpt-summaries-table.php:375
     939#: includes/summaries/class-wdgpt-summaries-table.php:311
     940#: includes/summaries/class-wdgpt-summaries-table.php:391
    929941msgid "Active"
    930942msgstr "Active"
    931943
    932 #: includes/summaries/class-wdgpt-summaries-table.php:297
     944#: includes/summaries/class-wdgpt-summaries-table.php:312
    933945msgid "Inactive"
    934946msgstr "Inactive"
    935947
    936 #: includes/summaries/class-wdgpt-summaries-table.php:298
    937 #: includes/summaries/class-wdgpt-summaries-table.php:373
     948#: includes/summaries/class-wdgpt-summaries-table.php:313
     949#: includes/summaries/class-wdgpt-summaries-table.php:389
    938950msgid "Embeddings"
    939951msgstr "Embeddings"
    940952
    941 #: includes/summaries/class-wdgpt-summaries-table.php:299
     953#: includes/summaries/class-wdgpt-summaries-table.php:314
    942954msgid "No Embeddings"
    943955msgstr "No Embeddings"
    944956
    945 #: includes/summaries/class-wdgpt-summaries-table.php:300
     957#: includes/summaries/class-wdgpt-summaries-table.php:315
    946958msgid "Up to date"
    947959msgstr "Up to date"
    948960
    949 #: includes/summaries/class-wdgpt-summaries-table.php:301
     961#: includes/summaries/class-wdgpt-summaries-table.php:316
    950962msgid "Not up to date"
    951963msgstr "Not up to date"
    952964
    953 #: includes/summaries/class-wdgpt-summaries-table.php:332
     965#: includes/summaries/class-wdgpt-summaries-table.php:347
    954966msgid "Filter"
    955967msgstr "Filter"
    956968
    957 #: includes/summaries/class-wdgpt-summaries-table.php:359
     969#: includes/summaries/class-wdgpt-summaries-table.php:374
    958970msgid ""
    959971"Embeddings are used to find the most similar posts/pages to the user query. "
     
    966978"\"Generate Embeddings\" link."
    967979
    968 #: includes/summaries/class-wdgpt-summaries-table.php:362
     980#: includes/summaries/class-wdgpt-summaries-table.php:378
    969981msgid "Title"
    970982msgstr "Title"
    971983
    972 #: includes/summaries/class-wdgpt-summaries-table.php:366
     984#: includes/summaries/class-wdgpt-summaries-table.php:382
    973985msgid "Language"
    974986msgstr "Language"
    975987
    976 #: includes/summaries/class-wdgpt-summaries-table.php:372
     988#: includes/summaries/class-wdgpt-summaries-table.php:388
    977989msgid "Last Post Modification"
    978990msgstr "Latest content update"
    979991
    980 #: includes/summaries/class-wdgpt-summaries-table.php:374
     992#: includes/summaries/class-wdgpt-summaries-table.php:390
    981993msgid "Last Embeddings Generation"
    982994msgstr "Latest generation of embeddings"
    983995
    984 #: includes/summaries/class-wdgpt-summaries-table.php:389
     996#: includes/summaries/class-wdgpt-summaries-table.php:405
    985997msgid "Content"
    986998msgstr "Content"
     999
     1000#: includes/summaries/class-wdgpt-summaries-table.php:622
     1001#, php-format
     1002msgid "%d items activated. %d items skipped (no embeddings)."
     1003msgstr "%d items activated. %d items skipped (no embeddings)."
     1004
     1005#: includes/summaries/class-wdgpt-summaries-table.php:640
     1006#, php-format
     1007msgid "%d items deactivated. %d items skipped (not active)."
     1008msgstr "%d items deactivated. %d items skipped (not active)."
     1009
     1010#: includes/summaries/class-wdgpt-summaries-table.php:677
     1011#, php-format
     1012msgid "Embeddings generation started for %d items. %d items skipped."
     1013msgstr "Embeddings generation started for %d items. %d items skipped."
    9871014
    9881015#: includes/summaries/wdgpt-config-summary.php:24
     
    11201147"The plugin SmartSearchWP needs to update the database. Please click on the "
    11211148"link below to go the plugin settings and update the database."
     1149
     1150#. Plugin URI of the plugin/theme
     1151#. Author URI of the plugin/theme
     1152msgid "https://www.smartsearchwp.com/"
     1153msgstr "https://www.smartsearchwp.com/"
     1154
     1155#. Description of the plugin/theme
     1156msgid ""
     1157"A chatbot that helps users navigate your website and find what they're "
     1158"looking for."
     1159msgstr ""
     1160"A chatbot that helps users navigate your website and find what they're "
     1161"looking for."
     1162
     1163#. Author of the plugin/theme
     1164msgid "Webdigit"
     1165msgstr "Webdigit"
    11221166
    11231167#~ msgid "Posts"
  • smartsearchwp/trunk/languages/webdigit-chatbot-es_ES.po

    r3237420 r3239989  
    22msgstr ""
    33"Project-Id-Version: SmartSearchWP\n"
    4 "POT-Creation-Date: 2024-12-02 07:52+0100\n"
    5 "PO-Revision-Date: 2024-12-02 07:54+0100\n"
     4"POT-Creation-Date: 2025-02-09 19:25+0100\n"
     5"PO-Revision-Date: 2025-02-09 19:29+0100\n"
    66"Last-Translator: JC <[email protected]>\n"
    77"Language-Team: JC <[email protected]>\n"
     
    4343
    4444#: class-wdgpt-chatbot-initializer.php:233
    45 #: class-wdgpt-chatbot-initializer.php:283
     45#: class-wdgpt-chatbot-initializer.php:284
    4646#: includes/summaries/class-wdgpt-summaries-table.php:65
    4747msgid "Regenerate Embeddings"
     
    4949
    5050#: class-wdgpt-chatbot-initializer.php:234
    51 #: class-wdgpt-chatbot-initializer.php:284
     51#: class-wdgpt-chatbot-initializer.php:285
    5252#: includes/addons/wdgpt-addons-catalog-settings.php:207
    5353#: includes/summaries/class-wdgpt-summaries-table.php:85
     54#: includes/summaries/class-wdgpt-summaries-table.php:121
    5455msgid "Activate"
    5556msgstr "Activar"
    5657
    5758#: class-wdgpt-chatbot-initializer.php:235
    58 #: class-wdgpt-chatbot-initializer.php:285
     59#: class-wdgpt-chatbot-initializer.php:286
    5960#: includes/addons/wdgpt-addons-catalog-settings.php:205
    6061#: includes/summaries/class-wdgpt-summaries-table.php:81
     62#: includes/summaries/class-wdgpt-summaries-table.php:122
    6163msgid "Deactivate"
    6264msgstr "Desactivar"
     
    6769
    6870#: class-wdgpt-chatbot-initializer.php:237
    69 #: includes/config/wdgpt-config-general-settings.php:500
     71#: includes/config/wdgpt-config-general-settings.php:503
    7072#: includes/wdgpt-client.php:141
    7173msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
    7274msgstr "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
    7375
    74 #: class-wdgpt-chatbot-initializer.php:286 includes/wdgpt-config.php:29
     76#: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29
    7577msgid "Please enter your api key!"
    7678msgstr "Por favor, introduzca su clave api"
    7779
    78 #: class-wdgpt-chatbot-initializer.php:287
     80#: class-wdgpt-chatbot-initializer.php:288
    7981msgid ""
    8082"Your api key is invalid! If you think this is a mistake, please check your "
     
    8688"OpenAI tiene problemas o no funciona."
    8789
    88 #: class-wdgpt-chatbot-initializer.php:288
     90#: class-wdgpt-chatbot-initializer.php:289
    8991msgid "Your api key is valid! Don't forget to save your changes."
    9092msgstr "¡Tu clave api es válida! No olvides guardar los cambios."
    9193
    92 #: class-wdgpt-chatbot-initializer.php:289
    93 #: includes/config/wdgpt-config-general-settings.php:250
     94#: class-wdgpt-chatbot-initializer.php:290
     95#: includes/config/wdgpt-config-general-settings.php:253
    9496msgid ""
    9597"The previously selected model is not available anymore with your current api "
     
    101103"un nuevo modelo. Su modelo anterior era:"
    102104
    103 #: class-wdgpt-chatbot-initializer.php:290
     105#: class-wdgpt-chatbot-initializer.php:291
    104106#: includes/addons/wdgpt-addons-license-settings.php:151
    105107msgid "You currently have a free license key."
    106108msgstr "Actualmente dispone de una clave de licencia gratuita."
    107109
    108 #: class-wdgpt-chatbot-initializer.php:291
     110#: class-wdgpt-chatbot-initializer.php:292
    109111msgid ""
    110112"There was an issue retrieving your free license key. Please try again later."
     
    113115"Vuelva a intentarlo más tarde."
    114116
    115 #: class-wdgpt-chatbot-initializer.php:292
     117#: class-wdgpt-chatbot-initializer.php:293
    116118#: includes/addons/wdgpt-addons-license-settings.php:63
    117119msgid ""
     
    122124"sitio actual. Ahora puede utilizar las funciones Premium."
    123125
    124 #: class-wdgpt-chatbot-initializer.php:293
     126#: class-wdgpt-chatbot-initializer.php:294
    125127#: includes/addons/wdgpt-addons-license-settings.php:58
    126128msgid ""
     
    131133"su clave de licencia."
    132134
    133 #: class-wdgpt-chatbot-initializer.php:294
     135#: class-wdgpt-chatbot-initializer.php:295
    134136msgid ""
    135137"Your SmartSearchWP Premium license was already registered with the current "
     
    139141"Puede utilizar las funciones Premium."
    140142
    141 #: class-wdgpt-chatbot-initializer.php:295
     143#: class-wdgpt-chatbot-initializer.php:296
    142144msgid ""
    143145"Your SmartSearchWP Premium license was already registered with another site. "
     
    149151"no debería ocurrir."
    150152
    151 #: class-wdgpt-chatbot-initializer.php:296
     153#: class-wdgpt-chatbot-initializer.php:297
    152154msgid ""
    153155"There was an issue registering your SmartSearchWP Premium license with the "
     
    159161"de asistencia si el problema persiste."
    160162
    161 #: class-wdgpt-chatbot-initializer.php:297
     163#: class-wdgpt-chatbot-initializer.php:298
    162164msgid ""
    163165"There was an issue retrieving the expiry date of your SmartSearchWP Premium "
     
    168170"contacto con el servicio de asistencia si el problema persiste."
    169171
    170 #: class-wdgpt-chatbot-initializer.php:298
     172#: class-wdgpt-chatbot-initializer.php:299
    171173msgid ""
    172174"Your SmartSearchWP Premium license has expired. Please renew it to continue "
     
    177179"nuevo."
    178180
    179 #: class-wdgpt-chatbot-initializer.php:356
    180181#: class-wdgpt-chatbot-initializer.php:357
     182#: class-wdgpt-chatbot-initializer.php:358
    181183msgid "Settings"
    182184msgstr "Ajustes"
    183185
    184 #: class-wdgpt-chatbot-initializer.php:364
    185186#: class-wdgpt-chatbot-initializer.php:365
     187#: class-wdgpt-chatbot-initializer.php:366
    186188msgid "Summary_title"
    187189msgstr "Título_resumen"
    188190
    189 #: class-wdgpt-chatbot-initializer.php:372
    190191#: class-wdgpt-chatbot-initializer.php:373
     192#: class-wdgpt-chatbot-initializer.php:374
    191193#: includes/logs/wdgpt-config-logs.php:26
    192194msgid "Chat Logs"
    193195msgstr "Registros de chat"
    194196
    195 #: class-wdgpt-chatbot-initializer.php:381
    196197#: class-wdgpt-chatbot-initializer.php:382
     198#: class-wdgpt-chatbot-initializer.php:383
    197199#: includes/logs/wdgpt-config-error-logs.php:26
    198200msgid "Error Logs"
    199201msgstr "Registros de errores"
    200202
    201 #: class-wdgpt-chatbot-initializer.php:390
    202203#: class-wdgpt-chatbot-initializer.php:391
     204#: class-wdgpt-chatbot-initializer.php:392
    203205msgid "Addons"
    204206msgstr "Complementos"
    205207
    206208#. translators: %s: required version of the plugin
    207 #: includes/addons/class-wdgpt-addons-manager.php:126
     209#: includes/addons/class-wdgpt-addons-manager.php:100
    208210#, php-format
    209211msgid "This addon will require at least version %s of the plugin to function."
     
    558560"ini."
    559561
    560 #: includes/config/wdgpt-config-general-settings.php:145
     562#: includes/config/wdgpt-config-general-settings.php:148
    561563msgid "Enable Chatbot:"
    562564msgstr "Habilitar Chatbot:"
    563565
    564 #: includes/config/wdgpt-config-general-settings.php:161
     566#: includes/config/wdgpt-config-general-settings.php:164
    565567msgid "OpenAi API Key:"
    566568msgstr "Clave API OpenAi:"
    567569
    568 #: includes/config/wdgpt-config-general-settings.php:171
     570#: includes/config/wdgpt-config-general-settings.php:174
    569571msgid "Validate Key"
    570572msgstr "Validar Clave"
    571573
    572 #: includes/config/wdgpt-config-general-settings.php:185
     574#: includes/config/wdgpt-config-general-settings.php:188
    573575msgid "You can get your api key"
    574576msgstr "Puede obtener su clave api"
    575577
    576 #: includes/config/wdgpt-config-general-settings.php:192
     578#: includes/config/wdgpt-config-general-settings.php:195
    577579msgid "here"
    578580msgstr "aquí"
    579581
    580 #: includes/config/wdgpt-config-general-settings.php:204
     582#: includes/config/wdgpt-config-general-settings.php:207
    581583msgid "ChatGPT Model:"
    582584msgstr "Modelo ChatGPT:"
    583585
    584 #: includes/config/wdgpt-config-general-settings.php:261
     586#: includes/config/wdgpt-config-general-settings.php:264
    585587msgid ""
    586588"If you want to use gpt-4o, you must subscribe to chatgpt plus. The model "
     
    590592"es una versión mejorada de gpt-4, con mayor velocidad y menor coste."
    591593
    592 #: includes/config/wdgpt-config-general-settings.php:272
     594#: includes/config/wdgpt-config-general-settings.php:275
    593595msgid "Chatbot Name:"
    594596msgstr "Nombre del chatbot:"
    595597
    596 #: includes/config/wdgpt-config-general-settings.php:283
     598#: includes/config/wdgpt-config-general-settings.php:286
    597599msgid "Chatbot Logo:"
    598600msgstr "Logotipo Chatbot:"
    599601
    600 #: includes/config/wdgpt-config-general-settings.php:319
     602#: includes/config/wdgpt-config-general-settings.php:322
    601603msgid "Temperature:"
    602604msgstr "Temperatura:"
    603605
    604 #: includes/config/wdgpt-config-general-settings.php:339
     606#: includes/config/wdgpt-config-general-settings.php:342
    605607msgid ""
    606608"The temperature parameter influences the level of randomness in the output "
     
    616618"hace que sus resultados sean más impredecibles."
    617619
    618 #: includes/config/wdgpt-config-general-settings.php:350
     620#: includes/config/wdgpt-config-general-settings.php:353
    619621msgid "Max used contexts:"
    620622msgstr "Máximo de contextos utilizados:"
    621623
    622 #: includes/config/wdgpt-config-general-settings.php:374
     624#: includes/config/wdgpt-config-general-settings.php:377
    623625msgid ""
    624626"The maximum number of contexts that the model can use to generate an answer. "
     
    638640"dar prioridad a la creatividad, puede aumentar este valor a 10."
    639641
    640 #: includes/config/wdgpt-config-general-settings.php:385
     642#: includes/config/wdgpt-config-general-settings.php:388
    641643msgid "Similarity threshold:"
    642644msgstr "Umbral de similitud:"
    643645
    644 #: includes/config/wdgpt-config-general-settings.php:410
     646#: includes/config/wdgpt-config-general-settings.php:413
    645647#, no-php-format
    646648msgid ""
     
    665667"aumentar este valor a 10."
    666668
    667 #: includes/config/wdgpt-config-general-settings.php:421
     669#: includes/config/wdgpt-config-general-settings.php:424
    668670msgid "Precision threshold:"
    669671msgstr "Umbral de precisión:"
    670672
    671 #: includes/config/wdgpt-config-general-settings.php:446
     673#: includes/config/wdgpt-config-general-settings.php:449
    672674msgid ""
    673675"The minimum precision required for a context to be considered eligible "
     
    685687"si el contexto o la pregunta no son suficientemente relevantes."
    686688
    687 #: includes/config/wdgpt-config-general-settings.php:457
     689#: includes/config/wdgpt-config-general-settings.php:460
    688690msgid "Enable Chatbot Bubble:"
    689691msgstr "Activar Chatbot Bubble:"
    690692
    691 #: includes/config/wdgpt-config-general-settings.php:473
     693#: includes/config/wdgpt-config-general-settings.php:476
    692694msgid "Chatbot Bubble Typing Text:"
    693695msgstr "Burbuja de chatbot escribiendo texto:"
    694696
    695 #: includes/config/wdgpt-config-general-settings.php:479
     697#: includes/config/wdgpt-config-general-settings.php:482
    696698#: includes/wdgpt-client.php:121
    697699msgid "Hello, may I help you?"
    698700msgstr "Hola, ¿puedo ayudarle?"
    699701
    700 #: includes/config/wdgpt-config-general-settings.php:483
     702#: includes/config/wdgpt-config-general-settings.php:486
    701703msgid ""
    702704"This is the text that will be displayed in the chat bubble above the circle "
     
    708710"utilizará la traducción por defecto."
    709711
    710 #: includes/config/wdgpt-config-general-settings.php:494
     712#: includes/config/wdgpt-config-general-settings.php:497
    711713msgid "Greetings Message:"
    712714msgstr "Saludos Mensaje:"
    713715
    714 #: includes/config/wdgpt-config-general-settings.php:504
     716#: includes/config/wdgpt-config-general-settings.php:507
    715717msgid ""
    716718"This is the message that will be displayed when the chatbot will be greeting "
     
    722724"determinado, se utilizará la traducción por defecto."
    723725
    724 #: includes/config/wdgpt-config-general-settings.php:515
     726#: includes/config/wdgpt-config-general-settings.php:518
    725727#: includes/config/wdgpt-config-reporting-settings.php:255
    726728msgid "Save Changes"
     
    868870#: includes/logs/class-wdgpt-error-logs-table.php:76
    869871#: includes/logs/class-wdgpt-logs-table.php:208
    870 #: includes/summaries/class-wdgpt-summaries-table.php:388
     872#: includes/summaries/class-wdgpt-summaries-table.php:404
    871873msgid "ID"
    872874msgstr "ID"
     
    939941
    940942#: includes/summaries/class-wdgpt-summaries-table.php:65
     943#: includes/summaries/class-wdgpt-summaries-table.php:123
    941944msgid "Generate Embeddings"
    942945msgstr "Generar incrustaciones"
     
    950953"de generar incrustaciones."
    951954
    952 #: includes/summaries/class-wdgpt-summaries-table.php:248
    953 #: includes/summaries/class-wdgpt-summaries-table.php:295
     955#: includes/summaries/class-wdgpt-summaries-table.php:263
     956#: includes/summaries/class-wdgpt-summaries-table.php:310
    954957msgid "All"
    955958msgstr "Todo"
    956959
    957 #: includes/summaries/class-wdgpt-summaries-table.php:266
     960#: includes/summaries/class-wdgpt-summaries-table.php:281
    958961msgid "Search"
    959962msgstr "Buscar"
    960963
    961 #: includes/summaries/class-wdgpt-summaries-table.php:296
    962 #: includes/summaries/class-wdgpt-summaries-table.php:375
     964#: includes/summaries/class-wdgpt-summaries-table.php:311
     965#: includes/summaries/class-wdgpt-summaries-table.php:391
    963966msgid "Active"
    964967msgstr "Activo"
    965968
    966 #: includes/summaries/class-wdgpt-summaries-table.php:297
     969#: includes/summaries/class-wdgpt-summaries-table.php:312
    967970msgid "Inactive"
    968971msgstr "Inactivo"
    969972
    970 #: includes/summaries/class-wdgpt-summaries-table.php:298
    971 #: includes/summaries/class-wdgpt-summaries-table.php:373
     973#: includes/summaries/class-wdgpt-summaries-table.php:313
     974#: includes/summaries/class-wdgpt-summaries-table.php:389
    972975msgid "Embeddings"
    973976msgstr "Incrustaciones"
    974977
    975 #: includes/summaries/class-wdgpt-summaries-table.php:299
     978#: includes/summaries/class-wdgpt-summaries-table.php:314
    976979msgid "No Embeddings"
    977980msgstr "Sin incrustaciones"
    978981
    979 #: includes/summaries/class-wdgpt-summaries-table.php:300
     982#: includes/summaries/class-wdgpt-summaries-table.php:315
    980983msgid "Up to date"
    981984msgstr "Actualizado"
    982985
    983 #: includes/summaries/class-wdgpt-summaries-table.php:301
     986#: includes/summaries/class-wdgpt-summaries-table.php:316
    984987msgid "Not up to date"
    985988msgstr "No actualizado"
    986989
    987 #: includes/summaries/class-wdgpt-summaries-table.php:332
     990#: includes/summaries/class-wdgpt-summaries-table.php:347
    988991msgid "Filter"
    989992msgstr "Filtro"
    990993
    991 #: includes/summaries/class-wdgpt-summaries-table.php:359
     994#: includes/summaries/class-wdgpt-summaries-table.php:374
    992995msgid ""
    993996"Embeddings are used to find the most similar posts/pages to the user query. "
     
    10021005"\"Generar incrustaciones\"."
    10031006
    1004 #: includes/summaries/class-wdgpt-summaries-table.php:362
     1007#: includes/summaries/class-wdgpt-summaries-table.php:378
    10051008msgid "Title"
    10061009msgstr "Título"
    10071010
    1008 #: includes/summaries/class-wdgpt-summaries-table.php:366
     1011#: includes/summaries/class-wdgpt-summaries-table.php:382
    10091012msgid "Language"
    10101013msgstr "Idioma"
    10111014
    1012 #: includes/summaries/class-wdgpt-summaries-table.php:372
     1015#: includes/summaries/class-wdgpt-summaries-table.php:388
    10131016msgid "Last Post Modification"
    10141017msgstr "Modificación del último puesto"
    10151018
    1016 #: includes/summaries/class-wdgpt-summaries-table.php:374
     1019#: includes/summaries/class-wdgpt-summaries-table.php:390
    10171020msgid "Last Embeddings Generation"
    10181021msgstr "Última generación de incrustaciones"
    10191022
    1020 #: includes/summaries/class-wdgpt-summaries-table.php:389
     1023#: includes/summaries/class-wdgpt-summaries-table.php:405
    10211024msgid "Content"
    10221025msgstr "Contenido"
     1026
     1027#: includes/summaries/class-wdgpt-summaries-table.php:622
     1028#, php-format
     1029msgid "%d items activated. %d items skipped (no embeddings)."
     1030msgstr "%d elementos activados. %d elementos omitidos (sin incrustaciones)."
     1031
     1032#: includes/summaries/class-wdgpt-summaries-table.php:640
     1033#, php-format
     1034msgid "%d items deactivated. %d items skipped (not active)."
     1035msgstr "%d elementos desactivados. %d elementos omitidos (no activos)."
     1036
     1037#: includes/summaries/class-wdgpt-summaries-table.php:677
     1038#, php-format
     1039msgid "Embeddings generation started for %d items. %d items skipped."
     1040msgstr ""
     1041"Generación de incrustaciones iniciada para %d elementos. elementos %d "
     1042"omitidos."
    10231043
    10241044#: includes/summaries/wdgpt-config-summary.php:24
  • smartsearchwp/trunk/languages/webdigit-chatbot-fr_FR.po

    r3237420 r3239989  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: webdigit-chatbot\n"
    4 "POT-Creation-Date: 2024-11-30 12:13+0100\n"
    5 "PO-Revision-Date: 2024-11-30 12:16+0000\n"
     3"Project-Id-Version: SmartSearchWP\n"
     4"POT-Creation-Date: 2025-02-09 20:43+0100\n"
     5"PO-Revision-Date: 2025-02-09 20:44+0100\n"
    66"Last-Translator: JC <[email protected]>\n"
    7 "Language-Team: Français\n"
     7"Language-Team: JC <[email protected]>\n"
    88"Language: fr_FR\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "X-Generator: Loco https://localise.biz/\n"
     12"X-Generator: Poedit 3.5\n"
    1313"X-Poedit-Basepath: ..\n"
    14 "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__\n"
     14"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
     15"X-Poedit-WPHeader: wdgpt.php\n"
     16"X-Poedit-SourceCharset: UTF-8\n"
     17"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
     18"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
     19"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
    1520"X-Poedit-SearchPath-0: .\n"
    16 "X-Poedit-SearchPathExcluded-0: js\n"
    17 "Plural-Forms: nplurals=2; plural=n > 1;"
    18 
    19 #: includes/logs/class-wdgpt-error-logs-table.php:107
    20 #: includes/logs/class-wdgpt-logs-table.php:237
    21 msgid "1 Month"
    22 msgstr "1 Mois"
    23 
    24 #: includes/logs/class-wdgpt-error-logs-table.php:110
    25 #: includes/logs/class-wdgpt-logs-table.php:240
    26 msgid "12 Months"
    27 msgstr "12 Mois"
    28 
    29 #: includes/logs/class-wdgpt-error-logs-table.php:108
    30 #: includes/logs/class-wdgpt-logs-table.php:238
    31 msgid "3 Months"
    32 msgstr "3 Mois"
    33 
    34 #: includes/logs/class-wdgpt-error-logs-table.php:109
    35 #: includes/logs/class-wdgpt-logs-table.php:239
    36 msgid "6 Months"
    37 msgstr "6 Mois"
    38 
    39 #. Description of the plugin
    40 #: wdgpt.php
    41 msgid ""
    42 "A chatbot that helps users navigate your website and find what they're "
    43 "looking for."
    44 msgstr ""
    45 "Un chatbot qui aide les utilisateurs à naviguer sur votre site web et à "
    46 "trouver ce qu'ils cherchent."
    47 
    48 #: includes/addons/wdgpt-addons-catalog-settings.php:115
    49 msgid ""
    50 "A premium license is required for premium addons, and also gives access to "
    51 "free addons."
    52 msgstr ""
    53 "Une licence premium est nécessaire pour les extensions premium, et permet "
    54 "également d'accéder aux extensions gratuites."
     21"X-Poedit-SearchPathExcluded-0: *.min.js\n"
     22"X-Poedit-SearchPathExcluded-1: js/node_modules\n"
     23"X-Poedit-SearchPathExcluded-2: vendor\n"
     24
     25#: class-wdgpt-chatbot-initializer.php:229
     26msgid "NoAnswerFound"
     27msgstr "Désolé·e, je n'ai pas la réponse à cette question."
     28
     29#: class-wdgpt-chatbot-initializer.php:230
     30msgid "Sorry, I didnt understand your question. Can you rephrase it ?"
     31msgstr ""
     32"Désolé, je n'ai pas compris votre question. Pouvez-vous la reformuler ?"
     33
     34#: class-wdgpt-chatbot-initializer.php:231
     35msgid "Sorry, your question isnt clear enough. Can you rephrase it ?"
     36msgstr ""
     37"Désolé, votre question n'est pas assez claire. Pouvez-vous la reformuler ?"
     38
     39#: class-wdgpt-chatbot-initializer.php:232
     40msgid "You"
     41msgstr "Vous"
     42
     43#: class-wdgpt-chatbot-initializer.php:233
     44#: class-wdgpt-chatbot-initializer.php:284
     45#: includes/summaries/class-wdgpt-summaries-table.php:65
     46msgid "Regenerate Embeddings"
     47msgstr "Réentraîner l'IA"
    5548
    5649#: class-wdgpt-chatbot-initializer.php:234
    57 #: class-wdgpt-chatbot-initializer.php:284
     50#: class-wdgpt-chatbot-initializer.php:285
    5851#: includes/addons/wdgpt-addons-catalog-settings.php:207
    5952#: includes/summaries/class-wdgpt-summaries-table.php:85
     53#: includes/summaries/class-wdgpt-summaries-table.php:121
    6054msgid "Activate"
    6155msgstr "Activer"
    6256
    63 #: includes/summaries/class-wdgpt-summaries-table.php:296
    64 #: includes/summaries/class-wdgpt-summaries-table.php:375
    65 msgid "Active"
    66 msgstr "Actif"
    67 
    68 #: class-wdgpt-chatbot-initializer.php:390
     57#: class-wdgpt-chatbot-initializer.php:235
     58#: class-wdgpt-chatbot-initializer.php:286
     59#: includes/addons/wdgpt-addons-catalog-settings.php:205
     60#: includes/summaries/class-wdgpt-summaries-table.php:81
     61#: includes/summaries/class-wdgpt-summaries-table.php:122
     62msgid "Deactivate"
     63msgstr "Désactiver"
     64
     65#: class-wdgpt-chatbot-initializer.php:236
     66msgid "Error initializing"
     67msgstr "Erreur d'initialisation"
     68
     69#: class-wdgpt-chatbot-initializer.php:237
     70#: includes/config/wdgpt-config-general-settings.php:503
     71#: includes/wdgpt-client.php:141
     72msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
     73msgstr "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
     74
     75#: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29
     76msgid "Please enter your api key!"
     77msgstr "Veuillez entrer votre clé API !"
     78
     79#: class-wdgpt-chatbot-initializer.php:288
     80msgid ""
     81"Your api key is invalid! If you think this is a mistake, please check your "
     82"account on the OpenAI platform. This can also happen if the OpenAI API is "
     83"having issues, or is down."
     84msgstr ""
     85"Votre clé api n'est pas valide ! Si vous pensez qu'il s'agit d'une erreur, "
     86"veuillez vérifier votre compte sur la plateforme OpenAI. Cela peut également "
     87"se produire si l'API de l'OpenAI a des problèmes ou est en panne."
     88
     89#: class-wdgpt-chatbot-initializer.php:289
     90msgid "Your api key is valid! Don't forget to save your changes."
     91msgstr ""
     92"Votre clé api est valide ! N'oubliez pas de sauvegarder vos modifications."
     93
     94#: class-wdgpt-chatbot-initializer.php:290
     95#: includes/config/wdgpt-config-general-settings.php:253
     96msgid ""
     97"The previously selected model is not available anymore with your current api "
     98"key, which means that the chatbot will not work. Please select a new model. "
     99"Your previous model was: "
     100msgstr ""
     101"Le modèle précédemment sélectionné n'est plus disponible avec votre clé API "
     102"actuelle, ce qui signifie que le chat ne fonctionnera pas. Veuillez "
     103"sélectionner un nouveau modèle. Votre modèle précédent était : "
     104
     105#: class-wdgpt-chatbot-initializer.php:291
     106#: includes/addons/wdgpt-addons-license-settings.php:151
     107msgid "You currently have a free license key."
     108msgstr "Vous disposez actuellement d'une clé de licence gratuite."
     109
     110#: class-wdgpt-chatbot-initializer.php:292
     111msgid ""
     112"There was an issue retrieving your free license key. Please try again later."
     113msgstr ""
     114"Un problème est survenu lors de la récupération de votre clé de licence "
     115"gratuite. Veuillez réessayer plus tard."
     116
     117#: class-wdgpt-chatbot-initializer.php:293
     118#: includes/addons/wdgpt-addons-license-settings.php:63
     119msgid ""
     120"Your SmartSearchWP Premium license is valid, and has been registered with "
     121"the current site. You can now use the premium features."
     122msgstr ""
     123"Votre licence SmartSearchWP Premium est valide et a été enregistrée avec le "
     124"site actuel. Vous pouvez maintenant utiliser les fonctionnalités Premium."
     125
     126#: class-wdgpt-chatbot-initializer.php:294
     127#: includes/addons/wdgpt-addons-license-settings.php:58
     128msgid ""
     129"Your SmartSearchWP Premium license was not found. Please check your license "
     130"key."
     131msgstr ""
     132"Votre licence SmartSearchWP Premium n'a pas été trouvée. Veuillez vérifier "
     133"votre clé de licence."
     134
     135#: class-wdgpt-chatbot-initializer.php:295
     136msgid ""
     137"Your SmartSearchWP Premium license was already registered with the current "
     138"site. You can use the premium features."
     139msgstr ""
     140"Votre licence SmartSearchWP Premium a déjà été enregistrée avec le site "
     141"actuel. Vous pouvez utiliser les fonctionnalités Premium."
     142
     143#: class-wdgpt-chatbot-initializer.php:296
     144msgid ""
     145"Your SmartSearchWP Premium license was already registered with another site. "
     146"Please unlink it from the other site, or contact support if you think this "
     147"should not happen."
     148msgstr ""
     149"Votre licence SmartSearchWP Premium a déjà été enregistrée sur un autre "
     150"site. Veuillez la dissocier de l'autre site, ou contactez le support si vous "
     151"pensez que cela ne devrait pas se produire."
     152
     153#: class-wdgpt-chatbot-initializer.php:297
     154msgid ""
     155"There was an issue registering your SmartSearchWP Premium license with the "
     156"current site. Please try again later, or contact support if the problem "
     157"persists."
     158msgstr ""
     159"Il y a eu un problème lors de l'enregistrement de votre licence "
     160"SmartSearchWP Premium avec le site actuel. Veuillez réessayer plus tard ou "
     161"contacter le support si le problème persiste."
     162
     163#: class-wdgpt-chatbot-initializer.php:298
     164msgid ""
     165"There was an issue retrieving the expiry date of your SmartSearchWP Premium "
     166"license. Please try again later, or contact support if the problem persists."
     167msgstr ""
     168"La date d'expiration de votre licence SmartSearchWP Premium n'a pas été "
     169"récupérée. Veuillez réessayer plus tard ou contacter le support si le "
     170"problème persiste.ersists."
     171
     172#: class-wdgpt-chatbot-initializer.php:299
     173msgid ""
     174"Your SmartSearchWP Premium license has expired. Please renew it to continue "
     175"using the premium features, then verify it again."
     176msgstr ""
     177"Votre licence SmartSearchWP Premium a expiré.Veuillez la renouveler pour "
     178"continuer à utiliser les fonctionnalités Premium, puis vérifiez-la à nouveau."
     179
     180#: class-wdgpt-chatbot-initializer.php:357
     181#: class-wdgpt-chatbot-initializer.php:358
     182msgid "Settings"
     183msgstr "Paramètres généraux"
     184
     185#: class-wdgpt-chatbot-initializer.php:365
     186#: class-wdgpt-chatbot-initializer.php:366
     187msgid "Summary_title"
     188msgstr "Contextes"
     189
     190#: class-wdgpt-chatbot-initializer.php:373
     191#: class-wdgpt-chatbot-initializer.php:374
     192#: includes/logs/wdgpt-config-logs.php:26
     193msgid "Chat Logs"
     194msgstr "Journaux de conversation"
     195
     196#: class-wdgpt-chatbot-initializer.php:382
     197#: class-wdgpt-chatbot-initializer.php:383
     198#: includes/logs/wdgpt-config-error-logs.php:26
     199msgid "Error Logs"
     200msgstr "Journaux d'erreurs"
     201
     202#: class-wdgpt-chatbot-initializer.php:391
     203#: class-wdgpt-chatbot-initializer.php:392
    69204msgid "Addons"
    70205msgstr "Extensions"
    71206
    72 #: includes/addons/wdgpt-addons.php:23
    73 msgid "Addons manager"
    74 msgstr "Gestionnaire d'extensions"
    75 
    76 #: includes/config/wdgpt-config-database-update-settings.php:30
    77 msgid ""
    78 "After the latest update, the database needs to be updated for the plugin to "
    79 "work properly. You can update the database by interacting with the button "
    80 "below."
    81 msgstr ""
    82 "Après la dernière mise à jour, la base de données doit être mise à jour pour "
    83 "que le plugin fonctionne correctement. Vous pouvez mettre à jour la base de "
    84 "données en interagissant avec le bouton ci-dessous."
    85 
    86 #: includes/summaries/class-wdgpt-summaries-table.php:248
    87 #: includes/summaries/class-wdgpt-summaries-table.php:295
    88 msgid "All"
    89 msgstr "Tous"
    90 
    91 #: includes/wdgpt-config.php:136
    92 msgid "Already rated"
    93 msgstr "Déjà noté"
     207#. translators: %s: required version of the plugin
     208#: includes/addons/class-wdgpt-addons-manager.php:113
     209#, php-format
     210msgid "This addon will require at least version %s of the plugin to function."
     211msgstr ""
     212"Cette extension nécessite au moins la version %s du plugin pour fonctionner."
     213
     214#: includes/addons/class-wdgpt-license-manager.php:74
     215msgid "Pro"
     216msgstr "Pro"
     217
     218#: includes/addons/class-wdgpt-license-manager.php:76
     219msgid "Free"
     220msgstr "Free"
     221
     222#: includes/addons/class-wdgpt-license-manager.php:195
     223msgid ""
     224"Your premium license has expired. Please renew your license to continue "
     225"having access to new addons."
     226msgstr ""
     227"Votre licence premium a expiré. Veuillez renouveler votre licence pour "
     228"continuer à avoir accès aux nouvelles extensions."
     229
     230#: includes/addons/class-wdgpt-license-manager.php:199
     231msgid ""
     232"Your premium license has expired, but your free license is active. You can "
     233"access free addons."
     234msgstr ""
     235"Votre licence premium a expiré, mais votre licence gratuite est active. Vous "
     236"pouvez accéder aux extensions gratuites."
     237
     238#: includes/addons/class-wdgpt-license-manager.php:203
     239msgid ""
     240"Your premium license is inactive. Please activate your license to continue "
     241"having access to new addons."
     242msgstr ""
     243"Votre licence premium est inactive. Veuillez activer votre licence pour "
     244"continuer à avoir accès aux nouveaux addons."
     245
     246#: includes/addons/class-wdgpt-license-manager.php:207
     247#: includes/addons/class-wdgpt-license-manager.php:215
     248msgid "Your free license is active. You can accesss free addons."
     249msgstr ""
     250"Votre licence gratuite est active. Vous pouvez accéder à des extensions "
     251"gratuites."
     252
     253#: includes/addons/class-wdgpt-license-manager.php:211
     254msgid ""
     255"Your premium license is active. You can download all the available addons."
     256msgstr ""
     257"Votre licence premium est active. Vous pouvez télécharger tous les "
     258"extensions disponibles."
     259
     260#: includes/addons/class-wdgpt-license-manager.php:219
     261msgid ""
     262"Your free license is inactive. Please activate your license to continue "
     263"having access to new addons.."
     264msgstr ""
     265"Votre licence gratuite est inactive. Veuillez activer votre licence pour "
     266"continuer à avoir accès aux nouvelles extensions."
     267
     268#: includes/addons/class-wdgpt-license-manager.php:223
     269msgid ""
     270"Your license is inactive. Please activate your license to continue having "
     271"access to new addons."
     272msgstr ""
     273"Votre licence est inactive. Veuillez activer votre licence pour continuer à "
     274"avoir accès aux nouvelles extensions."
     275
     276#: includes/addons/wdgpt-addons-catalog-settings.php:77
     277msgid "An error occured while retrieving the addons."
     278msgstr "Une erreur s'est produite lors de la récupération des extensions."
     279
     280#: includes/addons/wdgpt-addons-catalog-settings.php:104
     281msgid "An error occured while installing the addon."
     282msgstr "Une erreur s'est produite lors de l'installation de l'extension."
     283
     284#: includes/addons/wdgpt-addons-catalog-settings.php:104
     285msgid "The addon has been installed and activated successfully."
     286msgstr "L'extension a été installée et activée avec succès."
     287
     288#: includes/addons/wdgpt-addons-catalog-settings.php:105
     289msgid "An error occured while uninstalling the addon."
     290msgstr "Une erreur s'est produite lors de la désinstallation de l'extension."
     291
     292#: includes/addons/wdgpt-addons-catalog-settings.php:105
     293msgid "The addon has been uninstalled successfully."
     294msgstr "L'extension a été désinstallée avec succès."
    94295
    95296#: includes/addons/wdgpt-addons-catalog-settings.php:106
     
    97298msgstr "Une erreur s'est produite lors de l'activation de I'extension."
    98299
     300#: includes/addons/wdgpt-addons-catalog-settings.php:106
     301msgid "The addon has been activated successfully."
     302msgstr "L'extension a été activée avec succès."
     303
    99304#: includes/addons/wdgpt-addons-catalog-settings.php:107
    100305msgid "An error occured while deactivating the addon."
    101306msgstr "Une erreur s'est produite lors de la désactivation de I'extension."
    102307
    103 #: includes/addons/wdgpt-addons-catalog-settings.php:104
    104 msgid "An error occured while installing the addon."
    105 msgstr "Une erreur s'est produite lors de l'installation de l'extension."
    106 
    107 #: includes/addons/wdgpt-addons-catalog-settings.php:76
    108 msgid "An error occured while retrieving the addons."
    109 msgstr "Une erreur s'est produite lors de la récupération des extensions."
    110 
    111 #: includes/addons/wdgpt-addons-catalog-settings.php:105
    112 msgid "An error occured while uninstalling the addon."
    113 msgstr "Une erreur s'est produite lors de la désinstallation de l'extension."
     308#: includes/addons/wdgpt-addons-catalog-settings.php:107
     309msgid "The addon has been deactivated successfully."
     310msgstr "L'extension a été désactivée avec succès."
    114311
    115312#: includes/addons/wdgpt-addons-catalog-settings.php:108
     
    117314msgstr "Une erreur s'est produite lors de la mise à jour de I'extension."
    118315
    119 #: includes/wdgpt-config.php:40
    120 msgid "An error occurred while contacting OpenAI: "
    121 msgstr "Une erreur s'est produite lors de la prise de contact avec OpenAI : "
    122 
    123 #: includes/addons/wdgpt-addons-license-settings.php:37
    124 msgid "and get your license key."
    125 msgstr "pour obtenir votre clé de licence."
    126 
    127 #: includes/logs/class-wdgpt-logs-table.php:193
    128 msgid "Answer"
    129 msgstr "Réponse"
    130 
    131 #: class-wdgpt-chatbot-initializer.php:237
    132 #: includes/config/wdgpt-config-general-settings.php:500
    133 #: includes/wdgpt-client.php:141
    134 msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
    135 msgstr "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
    136 
    137 #: includes/crons/wdgpt-cron-jobs.php:113
    138 #: includes/logs/class-wdgpt-logs-table.php:167
    139 msgid "Bot"
    140 msgstr "Système"
     316#: includes/addons/wdgpt-addons-catalog-settings.php:108
     317msgid "The addon has been updated successfully."
     318msgstr "L'extension a été mise à jour avec succès."
     319
     320#: includes/addons/wdgpt-addons-catalog-settings.php:113
     321msgid ""
     322"The addons catalog is a collection of premium and free addons that can be "
     323"installed to extend the functionality of the plugin."
     324msgstr ""
     325"Le catalogue des extensions est une collection d'extensions premium et "
     326"gratuites qui peuvent être installées pour étendre les fonctionnalités du "
     327"plugin."
     328
     329#: includes/addons/wdgpt-addons-catalog-settings.php:114
     330msgid ""
     331"Free addons can be installed with a free license, while premium addons "
     332"require a  premium license to be installed."
     333msgstr ""
     334"Les extensions gratuites peuvent être installées avec une licence gratuite, "
     335"tandis que les extensions premium nécessitent une licence premium pour être "
     336"installées."
     337
     338#: includes/addons/wdgpt-addons-catalog-settings.php:115
     339msgid ""
     340"A premium license is required for premium addons, and also gives access to "
     341"free addons."
     342msgstr ""
     343"Une licence premium est nécessaire pour les extensions premium, et permet "
     344"également d'accéder aux extensions gratuites."
     345
     346#: includes/addons/wdgpt-addons-catalog-settings.php:116
     347msgid ""
     348"Note: you can safely install, uninstall, activate or deactivate addons from "
     349"this page."
     350msgstr ""
     351"Remarque : vous pouvez installer, désinstaller, activer ou désactiver des "
     352"extensions en toute sécurité à partir de cette page."
     353
     354#: includes/addons/wdgpt-addons-catalog-settings.php:195
     355#: includes/addons/wdgpt-addons-catalog-settings.php:200
     356msgid "Update"
     357msgstr "Mettre à jour"
     358
     359#: includes/addons/wdgpt-addons-catalog-settings.php:197
     360#: includes/addons/wdgpt-addons-catalog-settings.php:214
     361msgid "Get Free License"
     362msgstr "Obtenir une licence gratuite"
    141363
    142364#: includes/addons/wdgpt-addons-catalog-settings.php:202
     
    145367msgstr "Acheter"
    146368
    147 #: class-wdgpt-chatbot-initializer.php:372
    148 #: class-wdgpt-chatbot-initializer.php:373
    149 #: includes/logs/wdgpt-config-logs.php:26
    150 msgid "Chat Logs"
    151 msgstr "Journaux de conversation"
    152 
    153 #: includes/config/wdgpt-config-general-settings.php:472
    154 msgid "Chatbot Bubble Typing Text:"
    155 msgstr "Phylactère du chat :"
    156 
    157 #: includes/config/wdgpt-config-general-settings.php:282
    158 msgid "Chatbot Logo:"
    159 msgstr "Logo du Chatbot :"
    160 
    161 #: includes/config/wdgpt-config-general-settings.php:271
    162 msgid "Chatbot Name:"
    163 msgstr "Nom du chatbot :"
    164 
    165 #: includes/config/wdgpt-config-general-settings.php:203
    166 msgid "ChatGPT Model:"
    167 msgstr "Modèle ChatGPT :"
    168 
    169 #: includes/summaries/class-wdgpt-summaries-table.php:389
    170 msgid "Content"
    171 msgstr "Contenu"
    172 
    173 #: includes/logs/class-wdgpt-logs-table.php:194
    174 msgid "Context used"
    175 msgstr "Contexte utilisé"
    176 
    177 #: includes/logs/class-wdgpt-error-logs-table.php:65
    178 #: includes/logs/class-wdgpt-logs-table.php:195
    179 msgid "Created At"
    180 msgstr "Date de création"
    181 
    182 #: includes/config/wdgpt-config-reporting-settings.php:218
    183 msgid "Cron schedule:"
    184 msgstr "Horaire du Cron :"
    185 
    186 #: includes/wdgpt-api-requests.php:188
    187 msgid ""
    188 "Currently, there appears to be an issue. Please try asking me again later."
    189 msgstr ""
    190 "Il semble qu'il y ait actuellement un problème. Veuillez réessayer plus tard."
    191 
    192 #: includes/config/wdgpt-config-reporting-settings.php:185
    193 msgid "Daily"
    194 msgstr "Quotidiennement"
    195 
    196 #: includes/wdgpt-config.php:180
    197 msgid "Database Update"
    198 msgstr "Mise à jour de la base de données"
    199 
    200 #: includes/wdgpt-api-requests.php:151
    201 msgid "Database updated successfully."
    202 msgstr "Database updated successfully."
    203 
    204 #: includes/config/wdgpt-config-database-update-settings.php:43
    205 msgid "Database version:"
    206 msgstr "Version de la base de données :"
    207 
    208 #: class-wdgpt-chatbot-initializer.php:235
    209 #: class-wdgpt-chatbot-initializer.php:285
    210 #: includes/addons/wdgpt-addons-catalog-settings.php:205
    211 #: includes/summaries/class-wdgpt-summaries-table.php:81
    212 msgid "Deactivate"
    213 msgstr "Désactiver"
    214 
    215 #: includes/logs/wdgpt-config-error-logs.php:32
    216 #: includes/logs/wdgpt-config-logs.php:32
    217 msgid "Deleted all logs."
    218 msgstr "Suppression de tous les journaux."
    219 
    220 #. translators: %d: number of months
    221 #: includes/logs/wdgpt-config-error-logs.php:36
    222 #: includes/logs/wdgpt-config-logs.php:36
    223 msgid "Deleted logs older than %d months."
    224 msgstr "Suppression de tous les journaux datant d'il y a plus de %d mois."
    225 
    226 #: includes/summaries/class-wdgpt-summaries-table.php:298
    227 #: includes/summaries/class-wdgpt-summaries-table.php:373
    228 msgid "Embeddings"
    229 msgstr "Intégrations"
    230 
    231 #: includes/summaries/class-wdgpt-summaries-table.php:359
    232 msgid ""
    233 "Embeddings are used to find the most similar posts/pages to the user query. "
    234 "Embeddings are generated automatically when a post/page is saved. If you "
    235 "want to regenerate the embeddings for a post/page, click on the \"Generate "
    236 "Embeddings\" link."
    237 msgstr ""
    238 "Les intégrations sont utilisées pour trouver les articles/pages les plus "
    239 "similaires à la requête de l'utilisateur.  Si vous souhaitez régénérer les "
    240 "intégrations pour un article/une page, cliquez sur le lien \"Générer les "
    241 "intégrations\"."
    242 
    243 #: includes/config/wdgpt-config-general-settings.php:456
    244 msgid "Enable Chatbot Bubble:"
    245 msgstr "Activer le phylactère :"
    246 
    247 #: includes/config/wdgpt-config-general-settings.php:144
    248 msgid "Enable Chatbot:"
    249 msgstr "Activer le chatbot :"
    250 
    251 #: includes/config/wdgpt-config-reporting-settings.php:103
    252 msgid "Enable reporting:"
    253 msgstr "Activer les rapports :"
    254 
    255 #: includes/addons/wdgpt-addons-license-settings.php:183
    256 msgid "Enter your email address to get access to our free addons."
    257 msgstr ""
    258 "Saisissez votre adresse e-mail pour accéder à nos extensions gratuites."
    259 
    260 #: includes/addons/wdgpt-addons-license-settings.php:91
    261 msgid ""
    262 "Enter your SmartSearchWP Premium license key to enable the premium features. "
    263 "You can find your license key in your SmartSearchWP account, after "
    264 "purchasing the premium version of the plugin."
    265 msgstr ""
    266 "Entrez votre clé de licence SmartSearchWP Premium pour activer les "
    267 "fonctionnalités premium. Vous trouverez votre clé de licence dans votre "
    268 "compte SmartSearchWP, après avoir acheté la version premium du plugin."
    269 
    270 #: includes/logs/class-wdgpt-error-logs-table.php:61
    271 msgid "Error"
    272 msgstr "Erreur"
    273 
    274 #: includes/logs/class-wdgpt-error-logs-table.php:63
    275 msgid "Error Code"
    276 msgstr "Code d'erreur"
    277 
    278 #: class-wdgpt-chatbot-initializer.php:236
    279 msgid "Error initializing"
    280 msgstr "Erreur d'initialisation"
    281 
    282 #: class-wdgpt-chatbot-initializer.php:381
    283 #: class-wdgpt-chatbot-initializer.php:382
    284 #: includes/logs/wdgpt-config-error-logs.php:26
    285 msgid "Error Logs"
    286 msgstr "Journaux d'erreurs"
    287 
    288 #: includes/logs/class-wdgpt-error-logs-table.php:62
    289 msgid "Error Type"
    290 msgstr "Type d'erreur"
    291 
    292 #: includes/summaries/class-wdgpt-summaries-table.php:332
    293 msgid "Filter"
    294 msgstr "Filtrer"
    295 
    296 #: includes/addons/wdgpt-addons-license-settings.php:23
    297 msgid "For anything related to the SmartSearchWP Premium version, please visit"
    298 msgstr ""
    299 "Pour tout ce qui concerne la version Premium de SmartSearchWP, veuillez "
    300 "consulter la page suivante"
    301 
    302 #: includes/logs/class-wdgpt-error-logs-table.php:111
    303 #: includes/logs/class-wdgpt-logs-table.php:241
    304 msgid "Forever"
    305 msgstr "Toujours"
    306 
    307 #: includes/addons/class-wdgpt-license-manager.php:76
    308 msgid "Free"
    309 msgstr "Free"
    310 
    311 #: includes/addons/wdgpt-addons-license-settings.php:123
    312 msgid "Free Addons"
    313 msgstr "Extensions gratuites"
    314 
    315 #: includes/addons/wdgpt-addons-catalog-settings.php:114
    316 msgid ""
    317 "Free addons can be installed with a free license, while premium addons "
    318 "require a  premium license to be installed."
    319 msgstr ""
    320 "Les extensions gratuites peuvent être installées avec une licence gratuite, "
    321 "tandis que les extensions premium nécessitent une licence premium pour être "
    322 "installées."
    323 
    324 #: includes/wdgpt-config.php:172
    325 msgid "General Settings"
    326 msgstr "Paramètres généraux"
    327 
    328 #: includes/summaries/class-wdgpt-summaries-table.php:65
    329 msgid "Generate Embeddings"
    330 msgstr "Entraîner l'IA"
    331 
    332 #: includes/addons/wdgpt-addons-catalog-settings.php:197
    333 #: includes/addons/wdgpt-addons-catalog-settings.php:214
    334 msgid "Get Free License"
    335 msgstr "Obtenir une licence gratuite"
    336 
    337 #: includes/addons/wdgpt-addons-license-settings.php:220
    338 msgid "Get your free license"
    339 msgstr "Obtenez votre licence gratuite"
    340 
    341 #: includes/config/wdgpt-config-general-settings.php:493
    342 msgid "Greetings Message:"
    343 msgstr "Message d'accueil :"
    344 
    345 #: includes/config/wdgpt-config-general-settings.php:479
    346 #: includes/wdgpt-client.php:121
    347 msgid "Hello, may I help you?"
    348 msgstr "Bonjour, puis-je vous aider ?"
    349 
    350 #: includes/config/wdgpt-config-general-settings.php:191
    351 msgid "here"
    352 msgstr "ici"
    353 
    354 #: includes/config/wdgpt-config-database-update-settings.php:40
    355 msgid "Here are the details of the database update:"
    356 msgstr "Voici les détails de la mise à jour de la base de données :"
    357 
    358 #. Plugin URI of the plugin
    359 #. Author URI of the plugin
    360 #: wdgpt.php
    361 msgid "https://www.smartsearchwp.com/"
    362 msgstr "https://www.smartsearchwp.com/"
    363 
    364 #: includes/logs/class-wdgpt-error-logs-table.php:76
    365 #: includes/logs/class-wdgpt-logs-table.php:208
    366 #: includes/summaries/class-wdgpt-summaries-table.php:388
    367 msgid "ID"
    368 msgstr "Identifiant"
    369 
    370 #: includes/config/wdgpt-config-reporting-settings.php:246
    371 msgid ""
    372 "If you deactivate the plugin, the reporting will be put on hold, but will "
    373 "resume when you activate it again."
    374 msgstr ""
    375 "Si vous désactivez le plugin, le rapport sera mis en attente, mais reprendra "
    376 "lorsque vous l'activerez à nouveau."
    377 
    378 #: includes/wdgpt-config.php:111
    379 msgid ""
    380 "If you like this plugin, please leave us a review to help us grow. Thank you!"
    381 msgstr ""
    382 "Si vous aimez ce plugin, laissez-nous un commentaire pour nous aider à "
    383 "grandir. Nous vous remercions !"
    384 
    385 #: includes/config/wdgpt-config-general-settings.php:260
    386 msgid ""
    387 "If you want to use gpt-4o, you must subscribe to chatgpt plus. The model "
    388 "gpt4-o is a better version of gpt-4, with faster speed and lower cost."
    389 msgstr ""
    390 "Si vous souhaitez utiliser gpt-4o, vous devez vous abonner à chatgpt plus. "
    391 "Le modèle gpt4-o est une version améliorée de gpt-4, plus rapide et moins "
    392 "coûteuse."
    393 
    394 #: includes/summaries/class-wdgpt-summaries-table.php:297
    395 msgid "Inactive"
    396 msgstr "Inactif"
     369#: includes/addons/wdgpt-addons-catalog-settings.php:208
     370msgid "Uninstall"
     371msgstr "Désinstaller"
    397372
    398373#: includes/addons/wdgpt-addons-catalog-settings.php:212
     
    401376msgstr "Installer"
    402377
    403 #: includes/summaries/class-wdgpt-summaries-table.php:366
    404 msgid "Language"
    405 msgstr "Langue"
    406 
    407 #: includes/summaries/class-wdgpt-summaries-table.php:374
    408 msgid "Last Embeddings Generation"
    409 msgstr "Dernière génération des intégrations"
    410 
    411 #: includes/summaries/class-wdgpt-summaries-table.php:372
    412 msgid "Last Post Modification"
    413 msgstr "Dernière modification du contenu"
    414 
    415 #: includes/logs/class-wdgpt-logs-table.php:192
    416 msgid "Latest Question"
    417 msgstr "Dernière question"
    418 
    419 #: includes/wdgpt-config.php:120
    420 msgid "Leave a review"
    421 msgstr "Laisser un commentaire"
    422 
    423 #: includes/addons/wdgpt-addons.php:24
    424 msgid "License settings"
    425 msgstr "Paramètres de licence"
    426 
    427 #: includes/logs/class-wdgpt-error-logs-table.php:40
    428 #: includes/logs/class-wdgpt-logs-table.php:47
    429 msgid "log"
    430 msgstr "log"
    431 
    432 #: includes/logs/class-wdgpt-error-logs-table.php:41
    433 #: includes/logs/class-wdgpt-logs-table.php:48
    434 msgid "logs"
    435 msgstr "logs"
    436 
    437 #: includes/config/wdgpt-config-reporting-settings.php:119
    438 msgid "Mail from:"
    439 msgstr "Mail de :"
    440 
    441 #: includes/addons/wdgpt-addons-license-settings.php:165
    442 msgid "Mail:"
    443 msgstr "Mail:"
    444 
    445 #: includes/config/wdgpt-config-reporting-settings.php:146
    446 msgid "Mails to send the reports to:"
    447 msgstr "Courrier à envoyer aux rapports :"
    448 
    449 #: includes/config/wdgpt-config-general-settings.php:349
    450 msgid "Max used contexts:"
    451 msgstr "Nombre maximal de contextes utilisés :"
    452 
    453 #: includes/summaries/class-wdgpt-summaries-table.php:299
    454 msgid "No Embeddings"
    455 msgstr "Pas d'intégrations"
    456 
    457 #: includes/wdgpt-config.php:128
    458 msgid "No, thanks"
    459 msgstr "Non, merci"
    460 
    461 #: class-wdgpt-chatbot-initializer.php:229
    462 msgid "NoAnswerFound"
    463 msgstr "Désolé·e, je n'ai pas la réponse à cette question."
    464 
    465 #: includes/summaries/class-wdgpt-summaries-table.php:301
    466 msgid "Not up to date"
    467 msgstr "Pas à jour"
    468 
    469 #: includes/addons/wdgpt-addons-catalog-settings.php:116
    470 msgid ""
    471 "Note: you can safely install, uninstall, activate or deactivate addons from "
    472 "this page."
    473 msgstr ""
    474 "Remarque : vous pouvez installer, désinstaller, activer ou désactiver des "
    475 "extensions en toute sécurité à partir de cette page."
    476 
    477 #: includes/config/wdgpt-config-general-settings.php:160
    478 msgid "OpenAi API Key:"
    479 msgstr "Clé API d’OpenAI :"
    480 
    481 #: includes/summaries/wdgpt-config-summary.php:49
    482 msgid "OpenAI Generated Summaries"
    483 msgstr "Contextes générés par OpenAI"
    484 
    485 #: includes/config/wdgpt-config-reporting-settings.php:137
    486 msgid ""
    487 "Please enter the mail from which the reports are sent. It is set by default "
    488 "as the administrator mail, but please use a valid mail from your domain."
    489 msgstr ""
    490 "Veuillez saisir l'adresse e-mail à partir de laquelle les rapports sont "
    491 "envoyés. Par défaut, il s'agit du courrier de l'administrateur, mais "
    492 "veuillez utiliser un courrier valide de votre domaine."
    493 
    494 #: includes/config/wdgpt-config-reporting-settings.php:164
    495 msgid ""
    496 "Please enter the mails to send the reports to. You can enter multiple mails "
    497 "separated by a comma."
    498 msgstr ""
    499 "Veuillez saisir les adresses électroniques auxquelles les rapports doivent "
    500 "être envoyés. Vous pouvez saisir plusieurs adresses séparées par une virgule."
    501 
    502 #: class-wdgpt-chatbot-initializer.php:286 includes/wdgpt-config.php:29
    503 msgid "Please enter your api key!"
    504 msgstr "Veuillez entrer votre clé API !"
    505 
    506 #: includes/crons/wdgpt-cron-jobs.php:156
    507 msgid "Please find attached the report of the chat logs from SmartsearchWP."
    508 msgstr ""
    509 "Veuillez trouver ci-joint le rapport des journaux de discussion de "
    510 "SmartsearchWP."
    511 
    512 #: includes/config/wdgpt-config-database-update-settings.php:37
    513 msgid "Please make sure to backup your database before updating it."
    514 msgstr "Veillez à sauvegarder votre base de données avant de la mettre à jour."
    515 
    516 #: includes/addons/wdgpt-addons-license-settings.php:45
     378#: includes/addons/wdgpt-addons-license-settings.php:24
     379msgid "For anything related to the SmartSearchWP Premium version, please visit"
     380msgstr ""
     381"Pour tout ce qui concerne la version Premium de SmartSearchWP, veuillez "
     382"consulter la page suivante"
     383
     384#. Plugin Name of the plugin/theme
     385#: includes/addons/wdgpt-addons-license-settings.php:31
     386msgid "SmartSearchWP"
     387msgstr "SmartSearchWP"
     388
     389#: includes/addons/wdgpt-addons-license-settings.php:38
     390msgid "and get your license key."
     391msgstr "pour obtenir votre clé de licence."
     392
     393#: includes/addons/wdgpt-addons-license-settings.php:46
    517394msgid ""
    518395"Please note that if your license key is no longer valid or you modify the "
     
    527404"ci-dessous."
    528405
    529 #: includes/config/wdgpt-config-reporting-settings.php:93
    530 msgid ""
    531 "Please note that, if there has not been any discussion with the chatbot in "
    532 "the previous day or week, no report will be sent. The reports are sent only "
    533 "if there has been a discussion with the chatbot."
    534 msgstr ""
    535 "Veuillez noter que si aucune discussion n'a eu lieu avec le chatbot au cours "
    536 "de la journée ou de la semaine précédente, aucun rapport ne sera envoyé. Les "
    537 "rapports ne sont envoyés que s'il y a eu une discussion avec le chatbot."
    538 
    539 #: includes/config/wdgpt-config-reporting-settings.php:203
    540 msgid "Please select the schedule of sending the reports."
    541 msgstr "Veuillez sélectionner le calendrier d'envoi des rapports."
    542 
    543 #: includes/summaries/wdgpt-config-summary.php:27
    544 #: includes/summaries/wdgpt-config-summary.php:31
    545 msgid "Please set your OpenAI API key in the settings page."
    546 msgstr ""
    547 "Veuillez ajouter votre clé d'API OpenAI au sein de la page de paramètres."
    548 
    549 #: includes/wdgpt-client.php:151
    550 msgid ""
    551 "Powered by artificial intelligence, the bot can make mistakes. Consider "
    552 "checking important information."
    553 msgstr ""
    554 "Doté d'une intelligence artificielle, le robot peut faire des erreurs. "
    555 "Pensez à vérifier les informations importantes."
    556 
    557 #: includes/config/wdgpt-config-general-settings.php:420
    558 msgid "Precision threshold:"
    559 msgstr "Seuil de précision :"
    560 
    561 #: includes/addons/wdgpt-addons-license-settings.php:80
     406#: includes/addons/wdgpt-addons-license-settings.php:66
     407msgid ""
     408"Your SmartSearchWP Premium license has expired. Please renew it to continue "
     409"using the premium features, then verify it again.."
     410msgstr ""
     411"Votre licence SmartSearchWP Premium a expiré. Veuillez la renouveler pour "
     412"continuer à utiliser les fonctionnalités Premium, puis vérifiez-la à nouveau."
     413
     414#: includes/addons/wdgpt-addons-license-settings.php:81
    562415msgid "Premium License:"
    563416msgstr "Licence Premium :"
    564417
    565 #: includes/addons/class-wdgpt-license-manager.php:74
    566 msgid "Pro"
    567 msgstr "Pro"
    568 
    569 #: includes/logs/class-wdgpt-error-logs-table.php:105
    570 #: includes/logs/class-wdgpt-logs-table.php:243
    571 msgid "Purge Logs"
    572 msgstr "Effacer les journaux"
    573 
    574 #: includes/logs/class-wdgpt-error-logs-table.php:64
    575 msgid "Question"
    576 msgstr "Question"
    577 
    578 #: includes/addons/wdgpt-addons-license-settings.php:208
     418#: includes/addons/wdgpt-addons-license-settings.php:92
     419msgid ""
     420"Enter your SmartSearchWP Premium license key to enable the premium features. "
     421"You can find your license key in your SmartSearchWP account, after "
     422"purchasing the premium version of the plugin."
     423msgstr ""
     424"Entrez votre clé de licence SmartSearchWP Premium pour activer les "
     425"fonctionnalités premium. Vous trouverez votre clé de licence dans votre "
     426"compte SmartSearchWP, après avoir acheté la version premium du plugin."
     427
     428#: includes/addons/wdgpt-addons-license-settings.php:104
     429msgid "Verify your premium license"
     430msgstr "Vérifiez votre licence premium"
     431
     432#: includes/addons/wdgpt-addons-license-settings.php:124
     433msgid "Free Addons"
     434msgstr "Extensions gratuites"
     435
     436#: includes/addons/wdgpt-addons-license-settings.php:132
     437msgid ""
     438"You'll get access to our free addons by entering your email address below. "
     439"This will generate a free license key for you."
     440msgstr ""
     441"Vous aurez accès à nos extensions gratuites en saisissant votre adresse e-"
     442"mail ci-dessous. Une clé de licence gratuite sera générée pour vous."
     443
     444#: includes/addons/wdgpt-addons-license-settings.php:147
     445msgid ""
     446"You currently have no free license key. Get your free license key by "
     447"entering your email address below."
     448msgstr ""
     449"Vous n'avez actuellement pas de clé de licence gratuite. Obtenez votre clé "
     450"de licence gratuite en saisissant votre adresse e-mail ci-dessous."
     451
     452#: includes/addons/wdgpt-addons-license-settings.php:166
     453msgid "Mail:"
     454msgstr "Mail:"
     455
     456#: includes/addons/wdgpt-addons-license-settings.php:176
     457#: includes/config/wdgpt-config-reporting-settings.php:130
     458msgid "The email is not valid. Please enter a valid email."
     459msgstr "L'email n'est pas valide. Veuillez saisir un email valide."
     460
     461#: includes/addons/wdgpt-addons-license-settings.php:184
     462msgid "Enter your email address to get access to our free addons."
     463msgstr ""
     464"Saisissez votre adresse e-mail pour accéder à nos extensions gratuites."
     465
     466#: includes/addons/wdgpt-addons-license-settings.php:195
     467msgid "Receive updates:"
     468msgstr "Recevoir des mises à jour :"
     469
     470#: includes/addons/wdgpt-addons-license-settings.php:209
    579471msgid "Receive updates about our free addons and new features."
    580472msgstr ""
     
    582474"fonctionnalités."
    583475
    584 #: includes/addons/wdgpt-addons-license-settings.php:194
    585 msgid "Receive updates:"
    586 msgstr "Recevoir des mises à jour :"
    587 
    588 #: class-wdgpt-chatbot-initializer.php:233
    589 #: class-wdgpt-chatbot-initializer.php:283
    590 #: includes/summaries/class-wdgpt-summaries-table.php:65
    591 msgid "Regenerate Embeddings"
    592 msgstr "Réentraîner l'IA"
    593 
    594 #: includes/wdgpt-config.php:144
    595 msgid "Remind me later"
    596 msgstr "Rappelez-moi plus tard"
    597 
    598 #: includes/wdgpt-config.php:173
    599 msgid "Reporting"
    600 msgstr "Rapports"
    601 
    602 #: includes/config/wdgpt-config-general-settings.php:514
    603 #: includes/config/wdgpt-config-reporting-settings.php:254
    604 msgid "Save Changes"
    605 msgstr "Enregistrer les modifications"
    606 
    607 #: includes/config/wdgpt-config-reporting-settings.php:175
    608 msgid "Schedule of sending the reports:"
    609 msgstr "Calendrier d'envoi des rapports :"
    610 
    611 #: class-wdgpt-chatbot-initializer.php:356
    612 #: class-wdgpt-chatbot-initializer.php:357
    613 msgid "Settings"
    614 msgstr "Paramètres généraux"
     476#: includes/addons/wdgpt-addons-license-settings.php:221
     477msgid "Get your free license"
     478msgstr "Obtenez votre licence gratuite"
     479
     480#: includes/addons/wdgpt-addons.php:26
     481msgid "Addons manager"
     482msgstr "Gestionnaire d'extensions"
     483
     484#: includes/addons/wdgpt-addons.php:27
     485msgid "License settings"
     486msgstr "Paramètres de licence"
     487
     488#: includes/class-wdgpt-database-updater.php:53
     489msgid ""
     490"This update will empty the chat logs table, because of a change in the table "
     491"structure."
     492msgstr ""
     493"Cette mise à jour videra le tableau des journaux de discussion, en raison "
     494"d'un changement dans la structure du tableau."
     495
     496#: includes/config/wdgpt-config-database-update-settings.php:23
     497msgid ""
     498"You are already using the most recent version of the database, you can now "
     499"use the plugin without any restrictions."
     500msgstr ""
     501"Vous utilisez déjà la version la plus récente de la base de données, vous "
     502"pouvez maintenant utiliser le plugin sans aucune restriction."
     503
     504#: includes/config/wdgpt-config-database-update-settings.php:31
     505msgid ""
     506"After the latest update, the database needs to be updated for the plugin to "
     507"work properly. You can update the database by interacting with the button "
     508"below."
     509msgstr ""
     510"Après la dernière mise à jour, la base de données doit être mise à jour pour "
     511"que le plugin fonctionne correctement. Vous pouvez mettre à jour la base de "
     512"données en interagissant avec le bouton ci-dessous."
     513
     514#: includes/config/wdgpt-config-database-update-settings.php:37
     515msgid "Please make sure to backup your database before updating it."
     516msgstr "Veillez à sauvegarder votre base de données avant de la mettre à jour."
     517
     518#: includes/config/wdgpt-config-database-update-settings.php:40
     519msgid "Here are the details of the database update:"
     520msgstr "Voici les détails de la mise à jour de la base de données :"
     521
     522#: includes/config/wdgpt-config-database-update-settings.php:43
     523msgid "Database version:"
     524msgstr "Version de la base de données :"
     525
     526#: includes/config/wdgpt-config-database-update-settings.php:63
     527msgid "Update database"
     528msgstr "Mise à jour de la base de données"
    615529
    616530#: includes/config/wdgpt-config-general-settings.php:42
     
    619533msgstr "Les paramètres ont été sauvegardés avec succès !"
    620534
    621 #: includes/config/wdgpt-config-general-settings.php:384
    622 msgid "Similarity threshold:"
    623 msgstr "Seuil de similarité :"
    624 
    625 #. Plugin Name of the plugin
    626 #: wdgpt.php includes/addons/wdgpt-addons-license-settings.php:30
    627 msgid "SmartSearchWP"
    628 msgstr "SmartSearchWP"
    629 
    630 #: includes/crons/wdgpt-cron-jobs.php:154
    631 msgid "SmartsearchWP chat logs report"
    632 msgstr "Rapport sur les journaux de discussion de SmartsearchWP"
    633 
    634 #: includes/crons/wdgpt-cron-jobs.php:99
    635 msgid "SmartSearchWP Chat Logs Report - "
    636 msgstr "Rapport sur les journaux de discussion de SmartSearchWP - "
    637 
    638 #: class-wdgpt-chatbot-initializer.php:230
    639 msgid "Sorry, I didnt understand your question. Can you rephrase it ?"
    640 msgstr ""
    641 "Désolé, je n'ai pas compris votre question. Pouvez-vous la reformuler ?"
    642 
    643 #: class-wdgpt-chatbot-initializer.php:231
    644 msgid "Sorry, your question isnt clear enough. Can you rephrase it ?"
    645 msgstr ""
    646 "Désolé, votre question n'est pas assez claire. Pouvez-vous la reformuler ?"
    647 
    648 #: includes/summaries/class-wdgpt-summaries-table.php:39
    649 msgid "summaries"
    650 msgstr "contextes"
    651 
    652 #: includes/summaries/class-wdgpt-summaries-table.php:38
    653 msgid "summary"
    654 msgstr "contexte"
    655 
    656 #: class-wdgpt-chatbot-initializer.php:364
    657 #: class-wdgpt-chatbot-initializer.php:365
    658 msgid "Summary_title"
    659 msgstr "Contextes"
    660 
    661 #: includes/wdgpt-client.php:147
    662 msgid "Tapez votre message ici..."
    663 msgstr "Tapez votre message ici…"
    664 
    665 #: includes/config/wdgpt-config-general-settings.php:319
     535#: includes/config/wdgpt-config-general-settings.php:57
     536#: includes/config/wdgpt-config-reporting-settings.php:58
     537msgid ""
     538"The plugin has been disabled because the database is not up to date. Please "
     539"update the database to enable the plugin."
     540msgstr ""
     541"Le plugin a été désactivé car la base de données n'est pas à jour. Veuillez "
     542"mettre à jour la base de données pour activer le plugin."
     543
     544#: includes/config/wdgpt-config-general-settings.php:66
     545#: includes/config/wdgpt-config-reporting-settings.php:67 wdgpt.php:69
     546msgid "Update the database"
     547msgstr "Mise à jour de la base de données"
     548
     549#: includes/config/wdgpt-config-general-settings.php:130
     550msgid ""
     551"Your server configuration does not allow the plugin to work properly. Please "
     552"enable the allow_url_fopen option in your php.ini file."
     553msgstr ""
     554"La configuration de votre serveur ne permet pas au plugin de fonctionner "
     555"correctement. Veuillez activer l'option allow_url_fopen dans votre fichier "
     556"php.ini."
     557
     558#: includes/config/wdgpt-config-general-settings.php:148
     559msgid "Enable Chatbot:"
     560msgstr "Activer le chatbot :"
     561
     562#: includes/config/wdgpt-config-general-settings.php:164
     563msgid "OpenAi API Key:"
     564msgstr "Clé API d’OpenAI :"
     565
     566#: includes/config/wdgpt-config-general-settings.php:174
     567msgid "Validate Key"
     568msgstr "Valider la clé"
     569
     570#: includes/config/wdgpt-config-general-settings.php:188
     571msgid "You can get your api key"
     572msgstr "Vous pouvez obtenir votre clé d'API"
     573
     574#: includes/config/wdgpt-config-general-settings.php:195
     575msgid "here"
     576msgstr "ici"
     577
     578#: includes/config/wdgpt-config-general-settings.php:207
     579msgid "ChatGPT Model:"
     580msgstr "Modèle ChatGPT :"
     581
     582#: includes/config/wdgpt-config-general-settings.php:264
     583msgid ""
     584"If you want to use gpt-4o, you must subscribe to chatgpt API. The model gpt4-"
     585"o is a better version of gpt-4, with faster speed and lower cost."
     586msgstr ""
     587"Si vous souhaitez utiliser gpt-4o, vous devez souscrire à l'API chatgpt. Le "
     588"modèle gpt4-o est une version améliorée de gpt-4, plus rapide et moins "
     589"coûteuse."
     590
     591#: includes/config/wdgpt-config-general-settings.php:275
     592msgid "Chatbot Name:"
     593msgstr "Nom du chatbot :"
     594
     595#: includes/config/wdgpt-config-general-settings.php:286
     596msgid "Chatbot Logo:"
     597msgstr "Logo du Chatbot :"
     598
     599#: includes/config/wdgpt-config-general-settings.php:322
    666600msgid "Temperature:"
    667601msgstr "Température :"
    668602
    669 #: includes/addons/wdgpt-addons-catalog-settings.php:106
    670 msgid "The addon has been activated successfully."
    671 msgstr "L'extension a été activée avec succès."
    672 
    673 #: includes/addons/wdgpt-addons-catalog-settings.php:107
    674 msgid "The addon has been deactivated successfully."
    675 msgstr "L'extension a été désactivée avec succès."
    676 
    677 #: includes/addons/wdgpt-addons-catalog-settings.php:104
    678 msgid "The addon has been installed and activated successfully."
    679 msgstr "L'extension a été installée et activée avec succès."
    680 
    681 #: includes/addons/wdgpt-addons-catalog-settings.php:105
    682 msgid "The addon has been uninstalled successfully."
    683 msgstr "L'extension a été désinstallée avec succès."
    684 
    685 #: includes/addons/wdgpt-addons-catalog-settings.php:108
    686 msgid "The addon has been updated successfully."
    687 msgstr "L'extension a été mise à jour avec succès."
    688 
    689 #: includes/addons/wdgpt-addons-catalog-settings.php:113
    690 msgid ""
    691 "The addons catalog is a collection of premium and free addons that can be "
    692 "installed to extend the functionality of the plugin."
    693 msgstr ""
    694 "Le catalogue des extensions est une collection d'extensions premium et "
    695 "gratuites qui peuvent être installées pour étendre les fonctionnalités du "
    696 "plugin."
    697 
    698 #: includes/config/wdgpt-config-reporting-settings.php:227
    699 msgid "The cron schedule is: "
    700 msgstr "Le programme cron est le suivant : "
    701 
    702 #: includes/addons/wdgpt-addons-license-settings.php:175
    703 #: includes/config/wdgpt-config-reporting-settings.php:129
    704 msgid "The email is not valid. Please enter a valid email."
    705 msgstr "L'email n'est pas valide. Veuillez saisir un email valide."
    706 
    707 #: includes/config/wdgpt-config-reporting-settings.php:156
    708 msgid "The emails are not valid. Please enter valid emails."
    709 msgstr "Les mails ne sont pas valides. Veuillez saisir des mails valides."
    710 
    711 #: includes/config/wdgpt-config-general-settings.php:373
     603#: includes/config/wdgpt-config-general-settings.php:342
     604msgid ""
     605"The temperature parameter influences the level of randomness in the output "
     606"generated by the model. When the temperature is lowered, the model becomes "
     607"more confident but also tends to repeat similar responses. On the other "
     608"hand, raising the temperature value increases its creativity but also makes "
     609"its outputs more unpredictable."
     610msgstr ""
     611"Le paramètre de température influence le niveau d'aléatoire dans les "
     612"résultats générés par le modèle. Lorsque la température est abaissée, le "
     613"modèle devient plus confiant mais a également tendance à répéter des "
     614"réponses similaires. En revanche, l'augmentation de la valeur de la "
     615"température accroît sa créativité, mais rend également ses résultats plus "
     616"imprévisibles."
     617
     618#: includes/config/wdgpt-config-general-settings.php:353
     619msgid "Max used contexts:"
     620msgstr "Nombre maximal de contextes utilisés :"
     621
     622#: includes/config/wdgpt-config-general-settings.php:377
    712623msgid ""
    713624"The maximum number of contexts that the model can use to generate an answer. "
     
    728639"créativité, vous pouvez augmenter cette valeur à 10."
    729640
    730 #: includes/config/wdgpt-config-general-settings.php:445
    731 msgid ""
    732 "The minimum precision required for a context to be considered eligible "
    733 "determines its relevance to the answer. By increasing this value, the system "
    734 "prioritizes more precise and relevant contexts, potentially leading to "
    735 "better results. However, there is a trade-off, as a higher threshold also "
    736 "increases the risk of not generating an answer if the context or the prompt "
    737 "are not sufficiently relevant."
    738 msgstr ""
    739 "La précision minimale requise pour qu'un contexte soit considéré comme "
    740 "éligible détermine sa pertinence pour la réponse. En augmentant cette valeur,"
    741 " le système donne la priorité aux contextes plus précis et plus pertinents, "
    742 "ce qui peut conduire à de meilleurs résultats. Cependant, il y a un "
    743 "compromis, car un seuil plus élevé augmente également le risque de ne pas "
    744 "générer de réponse si le contexte ou l'invite ne sont pas suffisamment "
    745 "pertinents."
    746 
    747 #: includes/wdgpt-config.php:50
    748 msgid "The OpenAI API currently has issues. Please try again later."
    749 msgstr ""
    750 "L'API OpenAI a actuellement des problèmes. Veuillez réessayer plus tard."
    751 
    752 #: includes/config/wdgpt-config-general-settings.php:56
    753 #: includes/config/wdgpt-config-reporting-settings.php:57
    754 msgid ""
    755 "The plugin has been disabled because the database is not up to date. Please "
    756 "update the database to enable the plugin."
    757 msgstr ""
    758 "Le plugin a été désactivé car la base de données n'est pas à jour. Veuillez "
    759 "mettre à jour la base de données pour activer le plugin."
    760 
    761 #: wdgpt.php:68
    762 msgid ""
    763 "The plugin SmartSearchWP needs to update the database. Please click on the "
    764 "link below to go the plugin settings and update the database."
    765 msgstr ""
    766 "Le plugin SmartSearchWP a besoin de mettre à jour la base de données. "
    767 "Veuillez cliquer sur le lien ci-dessous pour accéder aux paramètres du "
    768 "plugin et mettre à jour la base de données."
    769 
    770 #: class-wdgpt-chatbot-initializer.php:289
    771 #: includes/config/wdgpt-config-general-settings.php:249
    772 msgid ""
    773 "The previously selected model is not available anymore with your current api "
    774 "key, which means that the chatbot will not work. Please select a new model. "
    775 "Your previous model was: "
    776 msgstr ""
    777 "Le modèle précédemment sélectionné n'est plus disponible avec votre clé API "
    778 "actuelle, ce qui signifie que le chat ne fonctionnera pas. Veuillez "
    779 "sélectionner un nouveau modèle. Votre modèle précédent était : "
    780 
    781 #: includes/summaries/wdgpt-config-summary.php:59
    782 msgid ""
    783 "The row is currently active and its embeddings is up to date with the post."
    784 msgstr ""
    785 "La ligne est actuellement active et ses intégrations sont à jour avec le "
    786 "contenu de l'article/de la page."
    787 
    788 #: includes/summaries/wdgpt-config-summary.php:63
    789 msgid ""
    790 "The row is currently active but its embeddings are not up to date with the "
    791 "post."
    792 msgstr ""
    793 "La ligne est actuellement active et ses intégrations ne sont pas à jour avec "
    794 "le contenu de l'article/de la page."
    795 
    796 #: includes/config/wdgpt-config-general-settings.php:338
    797 msgid ""
    798 "The temperature parameter influences the level of randomness in the output "
    799 "generated by the model. When the temperature is lowered, the model becomes "
    800 "more confident but also tends to repeat similar responses. On the other hand,"
    801 " raising the temperature value increases its creativity but also makes its "
    802 "outputs more unpredictable."
    803 msgstr ""
    804 "Le paramètre de température influence le niveau d'aléatoire dans les "
    805 "résultats générés par le modèle. Lorsque la température est abaissée, le "
    806 "modèle devient plus confiant mais a également tendance à répéter des "
    807 "réponses similaires. En revanche, l'augmentation de la valeur de la "
    808 "température accroît sa créativité, mais rend également ses résultats plus "
    809 "imprévisibles."
    810 
    811 #: class-wdgpt-chatbot-initializer.php:296
    812 msgid ""
    813 "There was an issue registering your SmartSearchWP Premium license with the "
    814 "current site. Please try again later, or contact support if the problem "
    815 "persists."
    816 msgstr ""
    817 "Il y a eu un problème lors de l'enregistrement de votre licence "
    818 "SmartSearchWP Premium avec le site actuel. Veuillez réessayer plus tard ou "
    819 "contacter le support si le problème persiste."
    820 
    821 #: class-wdgpt-chatbot-initializer.php:297
    822 msgid ""
    823 "There was an issue retrieving the expiry date of your SmartSearchWP Premium "
    824 "license. Please try again later, or contact support if the problem persists."
    825 msgstr ""
    826 "La date d'expiration de votre licence SmartSearchWP Premium n'a pas été "
    827 "récupérée. Veuillez réessayer plus tard ou contacter le support si le "
    828 "problème persiste.ersists."
    829 
    830 #: class-wdgpt-chatbot-initializer.php:291
    831 msgid ""
    832 "There was an issue retrieving your free license key. Please try again later."
    833 msgstr ""
    834 "Un problème est survenu lors de la récupération de votre clé de licence "
    835 "gratuite. Veuillez réessayer plus tard."
    836 
    837 #. translators: %s: required version of the plugin
    838 #: includes/addons/class-wdgpt-addons-manager.php:100
    839 msgid "This addon will require at least version %s of the plugin to function."
    840 msgstr ""
    841 "Cette extension nécessite au moins la version %s du plugin pour fonctionner."
    842 
    843 #: includes/config/wdgpt-config-general-settings.php:409
     641#: includes/config/wdgpt-config-general-settings.php:388
     642msgid "Similarity threshold:"
     643msgstr "Seuil de similarité :"
     644
     645#: includes/config/wdgpt-config-general-settings.php:413
     646#, no-php-format
    844647msgid ""
    845648"This determines the maximum difference allowed between the most likely "
     
    864667"créativité, vous pouvez augmenter cette valeur à 10."
    865668
    866 #: includes/config/wdgpt-config-general-settings.php:503
     669#: includes/config/wdgpt-config-general-settings.php:424
     670msgid "Precision threshold:"
     671msgstr "Seuil de précision :"
     672
     673#: includes/config/wdgpt-config-general-settings.php:449
     674msgid ""
     675"The minimum precision required for a context to be considered eligible "
     676"determines its relevance to the answer. By increasing this value, the system "
     677"prioritizes more precise and relevant contexts, potentially leading to "
     678"better results. However, there is a trade-off, as a higher threshold also "
     679"increases the risk of not generating an answer if the context or the prompt "
     680"are not sufficiently relevant."
     681msgstr ""
     682"La précision minimale requise pour qu'un contexte soit considéré comme "
     683"éligible détermine sa pertinence pour la réponse. En augmentant cette "
     684"valeur, le système donne la priorité aux contextes plus précis et plus "
     685"pertinents, ce qui peut conduire à de meilleurs résultats. Cependant, il y a "
     686"un compromis, car un seuil plus élevé augmente également le risque de ne pas "
     687"générer de réponse si le contexte ou l'invite ne sont pas suffisamment "
     688"pertinents."
     689
     690#: includes/config/wdgpt-config-general-settings.php:460
     691msgid "Enable Chatbot Bubble:"
     692msgstr "Activer le phylactère :"
     693
     694#: includes/config/wdgpt-config-general-settings.php:476
     695msgid "Chatbot Bubble Typing Text:"
     696msgstr "Phylactère du chat :"
     697
     698#: includes/config/wdgpt-config-general-settings.php:482
     699#: includes/wdgpt-client.php:121
     700msgid "Hello, may I help you?"
     701msgstr "Bonjour, puis-je vous aider ?"
     702
     703#: includes/config/wdgpt-config-general-settings.php:486
     704msgid ""
     705"This is the text that will be displayed in the chat bubble above the circle "
     706"when loading a page. If you don't set anything in a certain language, the "
     707"default translation will be used."
     708msgstr ""
     709"Il s'agit du texte qui sera affiché dans la bulle de dialogue au-dessus du "
     710"cercle lors du chargement d'une page. Si vous ne définissez riean dans une "
     711"langue donnée, la traduction par défaut sera utilisée."
     712
     713#: includes/config/wdgpt-config-general-settings.php:497
     714msgid "Greetings Message:"
     715msgstr "Message d'accueil :"
     716
     717#: includes/config/wdgpt-config-general-settings.php:507
    867718msgid ""
    868719"This is the message that will be displayed when the chatbot will be greeting "
     
    875726"utilisée."
    876727
    877 #: includes/config/wdgpt-config-general-settings.php:482
    878 msgid ""
    879 "This is the text that will be displayed in the chat bubble above the circle "
    880 "when loading a page. If you don't set anything in a certain language, the "
    881 "default translation will be used."
    882 msgstr ""
    883 "Il s'agit du texte qui sera affiché dans la bulle de dialogue au-dessus du "
    884 "cercle lors du chargement d'une page. Si vous ne définissez riean dans une "
    885 "langue donnée, la traduction par défaut sera utilisée."
    886 
    887 #: includes/config/wdgpt-config-reporting-settings.php:85
     728#: includes/config/wdgpt-config-general-settings.php:518
     729#: includes/config/wdgpt-config-reporting-settings.php:255
     730msgid "Save Changes"
     731msgstr "Enregistrer les modifications"
     732
     733#: includes/config/wdgpt-config-reporting-settings.php:86
    888734msgid ""
    889735"This section is dedicated to the reporting settings. Here you can set the "
     
    894740"calendrier d'envoi des rapports."
    895741
    896 #: includes/summaries/class-wdgpt-summaries-table.php:93
    897 msgid ""
    898 "This summary has no content. Please add some content to it before generating "
    899 "embeddings."
    900 msgstr ""
    901 "Ce contexte ne possède aucun contenu. Merci d'y ajouter du contenu avant de "
    902 "générer ses intégrations."
    903 
    904 #: includes/class-wdgpt-database-updater.php:53
    905 msgid ""
    906 "This update will empty the chat logs table, because of a change in the table "
    907 "structure."
    908 msgstr ""
    909 "Cette mise à jour videra le tableau des journaux de discussion, en raison "
    910 "d'un changement dans la structure du tableau."
    911 
    912 #: includes/summaries/class-wdgpt-summaries-table.php:362
    913 msgid "Title"
    914 msgstr "Titre"
    915 
    916 #: includes/addons/wdgpt-addons-catalog-settings.php:208
    917 msgid "Uninstall"
    918 msgstr "Désinstaller"
    919 
    920 #: includes/summaries/class-wdgpt-summaries-table.php:300
    921 msgid "Up to date"
    922 msgstr "Mis à jour"
    923 
    924 #: includes/addons/wdgpt-addons-catalog-settings.php:195
    925 #: includes/addons/wdgpt-addons-catalog-settings.php:200
    926 msgid "Update"
    927 msgstr "Mettre à jour"
    928 
    929 #: includes/config/wdgpt-config-database-update-settings.php:62
    930 msgid "Update database"
    931 msgstr "Mise à jour de la base de données"
    932 
    933 #: includes/config/wdgpt-config-general-settings.php:65
    934 #: includes/config/wdgpt-config-reporting-settings.php:66 wdgpt.php:69
    935 msgid "Update the database"
    936 msgstr "Mise à jour de la base de données"
     742#: includes/config/wdgpt-config-reporting-settings.php:94
     743msgid ""
     744"Please note that, if there has not been any discussion with the chatbot in "
     745"the previous day or week, no report will be sent. The reports are sent only "
     746"if there has been a discussion with the chatbot."
     747msgstr ""
     748"Veuillez noter que si aucune discussion n'a eu lieu avec le chatbot au cours "
     749"de la journée ou de la semaine précédente, aucun rapport ne sera envoyé. Les "
     750"rapports ne sont envoyés que s'il y a eu une discussion avec le chatbot."
     751
     752#: includes/config/wdgpt-config-reporting-settings.php:104
     753msgid "Enable reporting:"
     754msgstr "Activer les rapports :"
     755
     756#: includes/config/wdgpt-config-reporting-settings.php:120
     757msgid "Mail from:"
     758msgstr "Mail de :"
     759
     760#: includes/config/wdgpt-config-reporting-settings.php:138
     761msgid ""
     762"Please enter the mail from which the reports are sent. It is set by default "
     763"as the administrator mail, but please use a valid mail from your domain."
     764msgstr ""
     765"Veuillez saisir l'adresse e-mail à partir de laquelle les rapports sont "
     766"envoyés. Par défaut, il s'agit du courrier de l'administrateur, mais "
     767"veuillez utiliser un courrier valide de votre domaine."
     768
     769#: includes/config/wdgpt-config-reporting-settings.php:147
     770msgid "Mails to send the reports to:"
     771msgstr "Courrier à envoyer aux rapports :"
     772
     773#: includes/config/wdgpt-config-reporting-settings.php:157
     774msgid "The emails are not valid. Please enter valid emails."
     775msgstr "Les mails ne sont pas valides. Veuillez saisir des mails valides."
     776
     777#: includes/config/wdgpt-config-reporting-settings.php:165
     778msgid ""
     779"Please enter the mails to send the reports to. You can enter multiple mails "
     780"separated by a comma."
     781msgstr ""
     782"Veuillez saisir les adresses électroniques auxquelles les rapports doivent "
     783"être envoyés. Vous pouvez saisir plusieurs adresses séparées par une virgule."
     784
     785#: includes/config/wdgpt-config-reporting-settings.php:176
     786msgid "Schedule of sending the reports:"
     787msgstr "Calendrier d'envoi des rapports :"
     788
     789#: includes/config/wdgpt-config-reporting-settings.php:186
     790msgid "Daily"
     791msgstr "Quotidiennement"
     792
     793#: includes/config/wdgpt-config-reporting-settings.php:194
     794msgid "Weekly"
     795msgstr "Hebdomadaire"
     796
     797#: includes/config/wdgpt-config-reporting-settings.php:204
     798msgid "Please select the schedule of sending the reports."
     799msgstr "Veuillez sélectionner le calendrier d'envoi des rapports."
     800
     801#: includes/config/wdgpt-config-reporting-settings.php:219
     802msgid "Cron schedule:"
     803msgstr "Horaire du Cron :"
     804
     805#: includes/config/wdgpt-config-reporting-settings.php:228
     806msgid "The cron schedule is: "
     807msgstr "Le programme cron est le suivant : "
     808
     809#: includes/config/wdgpt-config-reporting-settings.php:247
     810msgid ""
     811"If you deactivate the plugin, the reporting will be put on hold, but will "
     812"resume when you activate it again."
     813msgstr ""
     814"Si vous désactivez le plugin, le rapport sera mis en attente, mais reprendra "
     815"lorsque vous l'activerez à nouveau."
     816
     817#: includes/crons/wdgpt-cron-jobs.php:99
     818msgid "SmartSearchWP Chat Logs Report - "
     819msgstr "Rapport sur les journaux de discussion de SmartSearchWP - "
    937820
    938821#: includes/crons/wdgpt-cron-jobs.php:113
     
    941824msgstr "Utilisateur"
    942825
    943 #: includes/config/wdgpt-config-general-settings.php:170
    944 msgid "Validate Key"
    945 msgstr "Valider la clé"
    946 
    947 #: includes/addons/wdgpt-addons-license-settings.php:103
    948 msgid "Verify your premium license"
    949 msgstr "Vérifiez votre licence premium"
     826#: includes/crons/wdgpt-cron-jobs.php:113
     827#: includes/logs/class-wdgpt-logs-table.php:167
     828msgid "Bot"
     829msgstr "Système"
     830
     831#: includes/crons/wdgpt-cron-jobs.php:154
     832msgid "SmartsearchWP chat logs report"
     833msgstr "Rapport sur les journaux de discussion de SmartsearchWP"
     834
     835#: includes/crons/wdgpt-cron-jobs.php:156
     836msgid "Please find attached the report of the chat logs from SmartsearchWP."
     837msgstr ""
     838"Veuillez trouver ci-joint le rapport des journaux de discussion de "
     839"SmartsearchWP."
     840
     841#: includes/logs/class-wdgpt-error-logs-table.php:40
     842#: includes/logs/class-wdgpt-logs-table.php:47
     843msgid "log"
     844msgstr "log"
     845
     846#: includes/logs/class-wdgpt-error-logs-table.php:41
     847#: includes/logs/class-wdgpt-logs-table.php:48
     848msgid "logs"
     849msgstr "logs"
     850
     851#: includes/logs/class-wdgpt-error-logs-table.php:61
     852msgid "Error"
     853msgstr "Erreur"
     854
     855#: includes/logs/class-wdgpt-error-logs-table.php:62
     856msgid "Error Type"
     857msgstr "Type d'erreur"
     858
     859#: includes/logs/class-wdgpt-error-logs-table.php:63
     860msgid "Error Code"
     861msgstr "Code d'erreur"
     862
     863#: includes/logs/class-wdgpt-error-logs-table.php:64
     864msgid "Question"
     865msgstr "Question"
     866
     867#: includes/logs/class-wdgpt-error-logs-table.php:65
     868#: includes/logs/class-wdgpt-logs-table.php:195
     869msgid "Created At"
     870msgstr "Date de création"
     871
     872#: includes/logs/class-wdgpt-error-logs-table.php:76
     873#: includes/logs/class-wdgpt-logs-table.php:208
     874#: includes/summaries/class-wdgpt-summaries-table.php:404
     875msgid "ID"
     876msgstr "Identifiant"
     877
     878#: includes/logs/class-wdgpt-error-logs-table.php:105
     879#: includes/logs/class-wdgpt-logs-table.php:243
     880msgid "Purge Logs"
     881msgstr "Effacer les journaux"
     882
     883#: includes/logs/class-wdgpt-error-logs-table.php:107
     884#: includes/logs/class-wdgpt-logs-table.php:237
     885msgid "1 Month"
     886msgstr "1 Mois"
     887
     888#: includes/logs/class-wdgpt-error-logs-table.php:108
     889#: includes/logs/class-wdgpt-logs-table.php:238
     890msgid "3 Months"
     891msgstr "3 Mois"
     892
     893#: includes/logs/class-wdgpt-error-logs-table.php:109
     894#: includes/logs/class-wdgpt-logs-table.php:239
     895msgid "6 Months"
     896msgstr "6 Mois"
     897
     898#: includes/logs/class-wdgpt-error-logs-table.php:110
     899#: includes/logs/class-wdgpt-logs-table.php:240
     900msgid "12 Months"
     901msgstr "12 Mois"
     902
     903#: includes/logs/class-wdgpt-error-logs-table.php:111
     904#: includes/logs/class-wdgpt-logs-table.php:241
     905msgid "Forever"
     906msgstr "Toujours"
    950907
    951908#: includes/logs/class-wdgpt-logs-table.php:73
     
    953910msgstr "Voir la conversation entière"
    954911
    955 #. Author of the plugin
    956 #: wdgpt.php
    957 msgid "Webdigit"
    958 msgstr "Webdigit"
    959 
    960 #: includes/config/wdgpt-config-reporting-settings.php:193
    961 msgid "Weekly"
    962 msgstr "Hebdomadaire"
    963 
    964 #: class-wdgpt-chatbot-initializer.php:232
    965 msgid "You"
    966 msgstr "Vous"
    967 
    968 #: includes/config/wdgpt-config-database-update-settings.php:22
    969 msgid ""
    970 "You are already using the most recent version of the database, you can now "
    971 "use the plugin without any restrictions."
    972 msgstr ""
    973 "Vous utilisez déjà la version la plus récente de la base de données, vous "
    974 "pouvez maintenant utiliser le plugin sans aucune restriction."
    975 
    976 #: includes/config/wdgpt-config-general-settings.php:184
    977 msgid "You can get your api key"
    978 msgstr "Vous pouvez obtenir votre clé d'API"
    979 
    980 #: class-wdgpt-chatbot-initializer.php:290
    981 #: includes/addons/wdgpt-addons-license-settings.php:151
    982 msgid "You currently have a free license key."
    983 msgstr "Vous disposez actuellement d'une clé de licence gratuite."
    984 
    985 #: includes/addons/wdgpt-addons-license-settings.php:147
    986 msgid ""
    987 "You currently have no free license key. Get your free license key by "
    988 "entering your email address below."
    989 msgstr ""
    990 "Vous n'avez actuellement pas de clé de licence gratuite. Obtenez votre clé "
    991 "de licence gratuite en saisissant votre adresse e-mail ci-dessous."
     912#: includes/logs/class-wdgpt-logs-table.php:192
     913msgid "Latest Question"
     914msgstr "Dernière question"
     915
     916#: includes/logs/class-wdgpt-logs-table.php:193
     917msgid "Answer"
     918msgstr "Réponse"
     919
     920#: includes/logs/class-wdgpt-logs-table.php:194
     921msgid "Context used"
     922msgstr "Contexte utilisé"
     923
     924#: includes/logs/wdgpt-config-error-logs.php:32
     925#: includes/logs/wdgpt-config-logs.php:32
     926msgid "Deleted all logs."
     927msgstr "Suppression de tous les journaux."
     928
     929#. translators: %d: number of months
     930#: includes/logs/wdgpt-config-error-logs.php:36
     931#: includes/logs/wdgpt-config-logs.php:36
     932#, php-format
     933msgid "Deleted logs older than %d months."
     934msgstr "Suppression de tous les journaux datant d'il y a plus de %d mois."
     935
     936#: includes/summaries/class-wdgpt-summaries-table.php:38
     937msgid "summary"
     938msgstr "contexte"
     939
     940#: includes/summaries/class-wdgpt-summaries-table.php:39
     941msgid "summaries"
     942msgstr "contextes"
     943
     944#: includes/summaries/class-wdgpt-summaries-table.php:65
     945#: includes/summaries/class-wdgpt-summaries-table.php:123
     946msgid "Generate Embeddings"
     947msgstr "Entraîner l'IA"
     948
     949#: includes/summaries/class-wdgpt-summaries-table.php:93
     950msgid ""
     951"This summary has no content. Please add some content to it before generating "
     952"embeddings."
     953msgstr ""
     954"Ce contexte ne possède aucun contenu. Merci d'y ajouter du contenu avant de "
     955"générer ses intégrations."
     956
     957#: includes/summaries/class-wdgpt-summaries-table.php:263
     958#: includes/summaries/class-wdgpt-summaries-table.php:310
     959msgid "All"
     960msgstr "Tous"
     961
     962#: includes/summaries/class-wdgpt-summaries-table.php:281
     963msgid "Search"
     964msgstr "Recherche"
     965
     966#: includes/summaries/class-wdgpt-summaries-table.php:311
     967#: includes/summaries/class-wdgpt-summaries-table.php:391
     968msgid "Active"
     969msgstr "Actif"
     970
     971#: includes/summaries/class-wdgpt-summaries-table.php:312
     972msgid "Inactive"
     973msgstr "Inactif"
     974
     975#: includes/summaries/class-wdgpt-summaries-table.php:313
     976#: includes/summaries/class-wdgpt-summaries-table.php:389
     977msgid "Embeddings"
     978msgstr "Intégrations"
     979
     980#: includes/summaries/class-wdgpt-summaries-table.php:314
     981msgid "No Embeddings"
     982msgstr "Pas d'intégrations"
     983
     984#: includes/summaries/class-wdgpt-summaries-table.php:315
     985msgid "Up to date"
     986msgstr "Mis à jour"
     987
     988#: includes/summaries/class-wdgpt-summaries-table.php:316
     989msgid "Not up to date"
     990msgstr "Pas à jour"
     991
     992#: includes/summaries/class-wdgpt-summaries-table.php:347
     993msgid "Filter"
     994msgstr "Filtrer"
     995
     996#: includes/summaries/class-wdgpt-summaries-table.php:374
     997msgid ""
     998"Embeddings are used to find the most similar posts/pages to the user query. "
     999"Embeddings are generated automatically when a post/page is saved. If you "
     1000"want to regenerate the embeddings for a post/page, click on the \"Generate "
     1001"Embeddings\" link."
     1002msgstr ""
     1003"Les intégrations sont utilisées pour trouver les articles/pages les plus "
     1004"similaires à la requête de l'utilisateur.  Si vous souhaitez régénérer les "
     1005"intégrations pour un article/une page, cliquez sur le lien \"Générer les "
     1006"intégrations\"."
     1007
     1008#: includes/summaries/class-wdgpt-summaries-table.php:378
     1009msgid "Title"
     1010msgstr "Titre"
     1011
     1012#: includes/summaries/class-wdgpt-summaries-table.php:382
     1013msgid "Language"
     1014msgstr "Langue"
     1015
     1016#: includes/summaries/class-wdgpt-summaries-table.php:388
     1017msgid "Last Post Modification"
     1018msgstr "Dernière modification du contenu"
     1019
     1020#: includes/summaries/class-wdgpt-summaries-table.php:390
     1021msgid "Last Embeddings Generation"
     1022msgstr "Dernière génération des intégrations"
     1023
     1024#: includes/summaries/class-wdgpt-summaries-table.php:405
     1025msgid "Content"
     1026msgstr "Contenu"
     1027
     1028#: includes/summaries/class-wdgpt-summaries-table.php:622
     1029#, php-format
     1030msgid "%d items activated. %d items skipped (no embeddings)."
     1031msgstr "%d élément(s) activé(s). %d élément(s) ignoré(s) (pas entraîné)."
     1032
     1033#: includes/summaries/class-wdgpt-summaries-table.php:640
     1034#, php-format
     1035msgid "%d items deactivated. %d items skipped (not active)."
     1036msgstr "%d élément(s) désactivés. %d élément(s) ignorés (pas activés)."
     1037
     1038#: includes/summaries/class-wdgpt-summaries-table.php:677
     1039#, php-format
     1040msgid "Embeddings generation started for %d items. %d items skipped."
     1041msgstr "L'entraînement a commencé pour %d élément(s). %d élément(s) ignoré(s)."
     1042
     1043#: includes/summaries/wdgpt-config-summary.php:24
     1044msgid ""
     1045"Your OpenAI API key is invalid. Please set a valid API key in the settings "
     1046"page."
     1047msgstr ""
     1048"Votre clé API OpenAI n'est pas valide. Veuillez définir une clé API valide "
     1049"dans la page des paramètres."
     1050
     1051#: includes/summaries/wdgpt-config-summary.php:27
     1052#: includes/summaries/wdgpt-config-summary.php:31
     1053msgid "Please set your OpenAI API key in the settings page."
     1054msgstr ""
     1055"Veuillez ajouter votre clé d'API OpenAI au sein de la page de paramètres."
    9921056
    9931057#: includes/summaries/wdgpt-config-summary.php:44
     
    9991063"jour votre plan sur le site OpenAI si vous souhaitez générer des embeddings."
    10001064
    1001 #: includes/addons/wdgpt-addons-license-settings.php:131
    1002 msgid ""
    1003 "You'll get access to our free addons by entering your email address below. "
    1004 "This will generate a free license key for you."
    1005 msgstr ""
    1006 "Vous aurez accès à nos extensions gratuites en saisissant votre adresse e-"
    1007 "mail ci-dessous. Une clé de licence gratuite sera générée pour vous."
     1065#: includes/summaries/wdgpt-config-summary.php:49
     1066msgid "OpenAI Generated Summaries"
     1067msgstr "Contextes générés par OpenAI"
     1068
     1069#: includes/summaries/wdgpt-config-summary.php:59
     1070msgid ""
     1071"The row is currently active and its embeddings is up to date with the post."
     1072msgstr ""
     1073"La ligne est actuellement active et ses intégrations sont à jour avec le "
     1074"contenu de l'article/de la page."
     1075
     1076#: includes/summaries/wdgpt-config-summary.php:63
     1077msgid ""
     1078"The row is currently active but its embeddings are not up to date with the "
     1079"post."
     1080msgstr ""
     1081"La ligne est actuellement active et ses intégrations ne sont pas à jour avec "
     1082"le contenu de l'article/de la page."
     1083
     1084#: includes/wdgpt-api-requests.php:151
     1085msgid "Database updated successfully."
     1086msgstr "Database updated successfully."
     1087
     1088#: includes/wdgpt-api-requests.php:188
     1089msgid ""
     1090"Currently, there appears to be an issue. Please try asking me again later."
     1091msgstr ""
     1092"Il semble qu'il y ait actuellement un problème. Veuillez réessayer plus tard."
     1093
     1094#: includes/wdgpt-api-requests.php:248
     1095msgid "There is currently an error with the chatbot. Please try again later."
     1096msgstr ""
     1097"Il y a actuellement une erreur avec le chatbot. Veuillez réessayer plus tard."
     1098
     1099#: includes/wdgpt-client.php:147
     1100msgid "Tapez votre message ici..."
     1101msgstr "Tapez votre message ici…"
     1102
     1103#: includes/wdgpt-client.php:151
     1104msgid ""
     1105"Powered by artificial intelligence, the bot can make mistakes. Consider "
     1106"checking important information."
     1107msgstr ""
     1108"Doté d'une intelligence artificielle, le robot peut faire des erreurs. "
     1109"Pensez à vérifier les informations importantes."
     1110
     1111#: includes/wdgpt-config.php:40
     1112msgid "An error occurred while contacting OpenAI: "
     1113msgstr "Une erreur s'est produite lors de la prise de contact avec OpenAI : "
     1114
     1115#: includes/wdgpt-config.php:50
     1116msgid "The OpenAI API currently has issues. Please try again later."
     1117msgstr ""
     1118"L'API OpenAI a actuellement des problèmes. Veuillez réessayer plus tard."
    10081119
    10091120#: includes/wdgpt-config.php:59
     
    10141125"Votre clé API n'est pas valide ! Si vous pensez qu'il s'agit d'une erreur, "
    10151126"veuillez vérifier votre compte sur la plateforme OpenAI."
    1016 
    1017 #: class-wdgpt-chatbot-initializer.php:287
    1018 msgid ""
    1019 "Your api key is invalid! If you think this is a mistake, please check your "
    1020 "account on the OpenAI platform. This can also happen if the OpenAI API is "
    1021 "having issues, or is down."
    1022 msgstr ""
    1023 "Votre clé api n'est pas valide ! Si vous pensez qu'il s'agit d'une erreur, "
    1024 "veuillez vérifier votre compte sur la plateforme OpenAI. Cela peut également "
    1025 "se produire si l'API de l'OpenAI a des problèmes ou est en panne."
    10261127
    10271128#: includes/wdgpt-config.php:66
     
    10371138msgstr "Votre clé API est valide !"
    10381139
    1039 #: class-wdgpt-chatbot-initializer.php:288
    1040 msgid "Your api key is valid! Don't forget to save your changes."
    1041 msgstr ""
    1042 "Votre clé api est valide ! N'oubliez pas de sauvegarder vos modifications."
    1043 
    1044 #: includes/addons/class-wdgpt-license-manager.php:207
    1045 #: includes/addons/class-wdgpt-license-manager.php:215
    1046 msgid "Your free license is active. You can accesss free addons."
    1047 msgstr ""
    1048 "Votre licence gratuite est active. Vous pouvez accéder à des extensions "
    1049 "gratuites."
    1050 
    1051 #: includes/addons/class-wdgpt-license-manager.php:219
    1052 msgid ""
    1053 "Your free license is inactive. Please activate your license to continue "
    1054 "having access to new addons.."
    1055 msgstr ""
    1056 "Votre licence gratuite est inactive. Veuillez activer votre licence pour "
    1057 "continuer à avoir accès aux nouvelles extensions."
    1058 
    1059 #: includes/addons/class-wdgpt-license-manager.php:223
    1060 msgid ""
    1061 "Your license is inactive. Please activate your license to continue having "
    1062 "access to new addons."
    1063 msgstr ""
    1064 "Votre licence est inactive. Veuillez activer votre licence pour continuer à "
    1065 "avoir accès aux nouvelles extensions."
    1066 
    1067 #: includes/summaries/wdgpt-config-summary.php:24
    1068 msgid ""
    1069 "Your OpenAI API key is invalid. Please set a valid API key in the settings "
    1070 "page."
    1071 msgstr ""
    1072 "Votre clé API OpenAI n'est pas valide. Veuillez définir une clé API valide "
    1073 "dans la page des paramètres."
    1074 
    1075 #: includes/addons/class-wdgpt-license-manager.php:199
    1076 msgid ""
    1077 "Your premium license has expired, but your free license is active. You can "
    1078 "access free addons."
    1079 msgstr ""
    1080 "Votre licence premium a expiré, mais votre licence gratuite est active. Vous "
    1081 "pouvez accéder aux extensions gratuites."
    1082 
    1083 #: includes/addons/class-wdgpt-license-manager.php:195
    1084 msgid ""
    1085 "Your premium license has expired. Please renew your license to continue "
    1086 "having access to new addons."
    1087 msgstr ""
    1088 "Votre licence premium a expiré. Veuillez renouveler votre licence pour "
    1089 "continuer à avoir accès aux nouvelles extensions."
    1090 
    1091 #: includes/addons/class-wdgpt-license-manager.php:211
    1092 msgid ""
    1093 "Your premium license is active. You can download all the available addons."
    1094 msgstr ""
    1095 "Votre licence premium est active. Vous pouvez télécharger tous les "
    1096 "extensions disponibles."
    1097 
    1098 #: includes/addons/class-wdgpt-license-manager.php:203
    1099 msgid ""
    1100 "Your premium license is inactive. Please activate your license to continue "
    1101 "having access to new addons."
    1102 msgstr ""
    1103 "Votre licence premium est inactive. Veuillez activer votre licence pour "
    1104 "continuer à avoir accès aux nouveaux addons."
    1105 
    1106 #: includes/config/wdgpt-config-general-settings.php:129
    1107 msgid ""
    1108 "Your server configuration does not allow the plugin to work properly. Please "
    1109 "enable the allow_url_fopen option in your php.ini file."
    1110 msgstr ""
    1111 "La configuration de votre serveur ne permet pas au plugin de fonctionner "
    1112 "correctement. Veuillez activer l'option allow_url_fopen dans votre fichier "
    1113 "php.ini."
    1114 
    1115 #: class-wdgpt-chatbot-initializer.php:298
    1116 msgid ""
    1117 "Your SmartSearchWP Premium license has expired. Please renew it to continue "
    1118 "using the premium features, then verify it again."
    1119 msgstr ""
    1120 "Votre licence SmartSearchWP Premium a expiré.Veuillez la renouveler pour "
    1121 "continuer à utiliser les fonctionnalités Premium, puis vérifiez-la à nouveau."
    1122 
    1123 #: includes/addons/wdgpt-addons-license-settings.php:66
    1124 msgid ""
    1125 "Your SmartSearchWP Premium license has expired. Please renew it to continue "
    1126 "using the premium features, then verify it again.."
    1127 msgstr ""
    1128 "Votre licence SmartSearchWP Premium a expiré. Veuillez la renouveler pour "
    1129 "continuer à utiliser les fonctionnalités Premium, puis vérifiez-la à nouveau."
    1130 
    1131 #: class-wdgpt-chatbot-initializer.php:292
    1132 #: includes/addons/wdgpt-addons-license-settings.php:63
    1133 msgid ""
    1134 "Your SmartSearchWP Premium license is valid, and has been registered with "
    1135 "the current site. You can now use the premium features."
    1136 msgstr ""
    1137 "Votre licence SmartSearchWP Premium est valide et a été enregistrée avec le "
    1138 "site actuel. Vous pouvez maintenant utiliser les fonctionnalités Premium."
    1139 
    1140 #: class-wdgpt-chatbot-initializer.php:295
    1141 msgid ""
    1142 "Your SmartSearchWP Premium license was already registered with another site. "
    1143 "Please unlink it from the other site, or contact support if you think this "
    1144 "should not happen."
    1145 msgstr ""
    1146 "Votre licence SmartSearchWP Premium a déjà été enregistrée sur un autre site."
    1147 " Veuillez la dissocier de l'autre site, ou contactez le support si vous "
    1148 "pensez que cela ne devrait pas se produire."
    1149 
    1150 #: class-wdgpt-chatbot-initializer.php:294
    1151 msgid ""
    1152 "Your SmartSearchWP Premium license was already registered with the current "
    1153 "site. You can use the premium features."
    1154 msgstr ""
    1155 "Votre licence SmartSearchWP Premium a déjà été enregistrée avec le site "
    1156 "actuel. Vous pouvez utiliser les fonctionnalités Premium."
    1157 
    1158 #: class-wdgpt-chatbot-initializer.php:293
    1159 #: includes/addons/wdgpt-addons-license-settings.php:58
    1160 msgid ""
    1161 "Your SmartSearchWP Premium license was not found. Please check your license "
    1162 "key."
    1163 msgstr ""
    1164 "Votre licence SmartSearchWP Premium n'a pas été trouvée. Veuillez vérifier "
    1165 "votre clé de licence."
     1140#: includes/wdgpt-config.php:112
     1141msgid ""
     1142"If you like this plugin, please leave us a review to help us grow. Thank you!"
     1143msgstr ""
     1144"Si vous aimez ce plugin, laissez-nous un commentaire pour nous aider à "
     1145"grandir. Nous vous remercions !"
     1146
     1147#: includes/wdgpt-config.php:121
     1148msgid "Leave a review"
     1149msgstr "Laisser un commentaire"
     1150
     1151#: includes/wdgpt-config.php:129
     1152msgid "No, thanks"
     1153msgstr "Non, merci"
     1154
     1155#: includes/wdgpt-config.php:137
     1156msgid "Already rated"
     1157msgstr "Déjà noté"
     1158
     1159#: includes/wdgpt-config.php:145
     1160msgid "Remind me later"
     1161msgstr "Rappelez-moi plus tard"
     1162
     1163#: includes/wdgpt-config.php:172
     1164msgid "General Settings"
     1165msgstr "Paramètres généraux"
     1166
     1167#: includes/wdgpt-config.php:173
     1168msgid "Reporting"
     1169msgstr "Rapports"
     1170
     1171#: includes/wdgpt-config.php:180
     1172msgid "Database Update"
     1173msgstr "Mise à jour de la base de données"
     1174
     1175#: wdgpt.php:68
     1176msgid ""
     1177"The plugin SmartSearchWP needs to update the database. Please click on the "
     1178"link below to go the plugin settings and update the database."
     1179msgstr ""
     1180"Le plugin SmartSearchWP a besoin de mettre à jour la base de données. "
     1181"Veuillez cliquer sur le lien ci-dessous pour accéder aux paramètres du "
     1182"plugin et mettre à jour la base de données."
     1183
     1184#. Plugin URI of the plugin/theme
     1185#. Author URI of the plugin/theme
     1186msgid "https://www.smartsearchwp.com/"
     1187msgstr "https://www.smartsearchwp.com/"
     1188
     1189#. Description of the plugin/theme
     1190msgid ""
     1191"A chatbot that helps users navigate your website and find what they're "
     1192"looking for."
     1193msgstr ""
     1194"Un chatbot qui aide les utilisateurs à naviguer sur votre site web et à "
     1195"trouver ce qu'ils cherchent."
     1196
     1197#. Author of the plugin/theme
     1198msgid "Webdigit"
     1199msgstr "Webdigit"
     1200
     1201#~ msgid ""
     1202#~ "If you want to use gpt-4o, you must subscribe to chatgpt plus. The model "
     1203#~ "gpt4-o is a better version of gpt-4, with faster speed and lower cost."
     1204#~ msgstr ""
     1205#~ "Si vous souhaitez utiliser gpt-4o, vous devez vous abonner à chatgpt "
     1206#~ "plus. Le modèle gpt4-o est une version améliorée de gpt-4, plus rapide et "
     1207#~ "moins coûteuse."
  • smartsearchwp/trunk/languages/webdigit-chatbot-it_IT.po

    r3199870 r3239989  
    22msgstr ""
    33"Project-Id-Version: SmartSearchWP\n"
    4 "POT-Creation-Date: 2024-11-30 12:26+0100\n"
    5 "PO-Revision-Date: 2024-11-30 12:30+0100\n"
     4"POT-Creation-Date: 2025-02-09 19:26+0100\n"
     5"PO-Revision-Date: 2025-02-09 19:27+0100\n"
    66"Last-Translator: JC <[email protected]>\n"
    77"Language-Team: JC <[email protected]>\n"
     
    2020"X-Poedit-SearchPath-0: .\n"
    2121"X-Poedit-SearchPathExcluded-0: *.min.js\n"
    22 "X-Poedit-SearchPathExcluded-1: vendor\n"
     22"X-Poedit-SearchPathExcluded-1: js/node_modules\n"
     23"X-Poedit-SearchPathExcluded-2: vendor\n"
    2324
    2425#: class-wdgpt-chatbot-initializer.php:229
     
    3940
    4041#: class-wdgpt-chatbot-initializer.php:233
    41 #: class-wdgpt-chatbot-initializer.php:283
     42#: class-wdgpt-chatbot-initializer.php:284
    4243#: includes/summaries/class-wdgpt-summaries-table.php:65
    4344msgid "Regenerate Embeddings"
     
    4546
    4647#: class-wdgpt-chatbot-initializer.php:234
    47 #: class-wdgpt-chatbot-initializer.php:284
     48#: class-wdgpt-chatbot-initializer.php:285
    4849#: includes/addons/wdgpt-addons-catalog-settings.php:207
    4950#: includes/summaries/class-wdgpt-summaries-table.php:85
     51#: includes/summaries/class-wdgpt-summaries-table.php:121
    5052msgid "Activate"
    5153msgstr "Attiva"
    5254
    5355#: class-wdgpt-chatbot-initializer.php:235
    54 #: class-wdgpt-chatbot-initializer.php:285
     56#: class-wdgpt-chatbot-initializer.php:286
    5557#: includes/addons/wdgpt-addons-catalog-settings.php:205
    5658#: includes/summaries/class-wdgpt-summaries-table.php:81
     59#: includes/summaries/class-wdgpt-summaries-table.php:122
    5760msgid "Deactivate"
    5861msgstr "Disattiva"
     
    6366
    6467#: class-wdgpt-chatbot-initializer.php:237
    65 #: includes/config/wdgpt-config-general-settings.php:500
     68#: includes/config/wdgpt-config-general-settings.php:503
    6669#: includes/wdgpt-client.php:141
    6770msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
    6871msgstr "Bonjour, sono SmartSearchWP, come posso aiutarvi?"
    6972
    70 #: class-wdgpt-chatbot-initializer.php:286 includes/wdgpt-config.php:29
     73#: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29
    7174msgid "Please enter your api key!"
    7275msgstr "Inserisci la tua chiave api!"
    7376
    74 #: class-wdgpt-chatbot-initializer.php:287
     77#: class-wdgpt-chatbot-initializer.php:288
    7578msgid ""
    7679"Your api key is invalid! If you think this is a mistake, please check your "
     
    8285"se l'API OpenAI ha dei problemi o è inattiva."
    8386
    84 #: class-wdgpt-chatbot-initializer.php:288
     87#: class-wdgpt-chatbot-initializer.php:289
    8588msgid "Your api key is valid! Don't forget to save your changes."
    8689msgstr "La chiave api è valida! Non dimenticare di salvare le modifiche."
    8790
    88 #: class-wdgpt-chatbot-initializer.php:289
    89 #: includes/config/wdgpt-config-general-settings.php:250
     91#: class-wdgpt-chatbot-initializer.php:290
     92#: includes/config/wdgpt-config-general-settings.php:253
    9093msgid ""
    9194"The previously selected model is not available anymore with your current api "
     
    9598"Il modello selezionato in precedenza non è più disponibile con la chiave api "
    9699"attuale, il che significa che il chatbot non funzionerà. Selezionare un "
    97 "nuovo modello. Il modello precedente era:"
    98 
    99 #: class-wdgpt-chatbot-initializer.php:290
     100"nuovo modello. Il modello precedente era: "
     101
     102#: class-wdgpt-chatbot-initializer.php:291
    100103#: includes/addons/wdgpt-addons-license-settings.php:151
    101104msgid "You currently have a free license key."
    102105msgstr "Attualmente si dispone di una chiave di licenza gratuita."
    103106
    104 #: class-wdgpt-chatbot-initializer.php:291
     107#: class-wdgpt-chatbot-initializer.php:292
    105108msgid ""
    106109"There was an issue retrieving your free license key. Please try again later."
     
    109112"Riprovare più tardi."
    110113
    111 #: class-wdgpt-chatbot-initializer.php:292
     114#: class-wdgpt-chatbot-initializer.php:293
    112115#: includes/addons/wdgpt-addons-license-settings.php:63
    113116msgid ""
     
    118121"corrente. Ora è possibile utilizzare le funzioni Premium."
    119122
    120 #: class-wdgpt-chatbot-initializer.php:293
     123#: class-wdgpt-chatbot-initializer.php:294
    121124#: includes/addons/wdgpt-addons-license-settings.php:58
    122125msgid ""
     
    127130"chiave di licenza."
    128131
    129 #: class-wdgpt-chatbot-initializer.php:294
     132#: class-wdgpt-chatbot-initializer.php:295
    130133msgid ""
    131134"Your SmartSearchWP Premium license was already registered with the current "
     
    135138"possibile utilizzare le funzioni Premium."
    136139
    137 #: class-wdgpt-chatbot-initializer.php:295
     140#: class-wdgpt-chatbot-initializer.php:296
    138141msgid ""
    139142"Your SmartSearchWP Premium license was already registered with another site. "
     
    145148"ritiene che ciò non debba accadere."
    146149
    147 #: class-wdgpt-chatbot-initializer.php:296
     150#: class-wdgpt-chatbot-initializer.php:297
    148151msgid ""
    149152"There was an issue registering your SmartSearchWP Premium license with the "
     
    155158"se il problema persiste."
    156159
    157 #: class-wdgpt-chatbot-initializer.php:297
     160#: class-wdgpt-chatbot-initializer.php:298
    158161msgid ""
    159162"There was an issue retrieving the expiry date of your SmartSearchWP Premium "
     
    164167"se il problema persiste."
    165168
    166 #: class-wdgpt-chatbot-initializer.php:298
     169#: class-wdgpt-chatbot-initializer.php:299
    167170msgid ""
    168171"Your SmartSearchWP Premium license has expired. Please renew it to continue "
     
    172175"utilizzare le funzioni premium, quindi verificatela di nuovo."
    173176
    174 #: class-wdgpt-chatbot-initializer.php:356
    175177#: class-wdgpt-chatbot-initializer.php:357
     178#: class-wdgpt-chatbot-initializer.php:358
    176179msgid "Settings"
    177180msgstr "Impostazioni"
    178181
    179 #: class-wdgpt-chatbot-initializer.php:364
    180182#: class-wdgpt-chatbot-initializer.php:365
     183#: class-wdgpt-chatbot-initializer.php:366
    181184msgid "Summary_title"
    182185msgstr "Titolo_riassuntivo"
    183186
    184 #: class-wdgpt-chatbot-initializer.php:372
    185187#: class-wdgpt-chatbot-initializer.php:373
     188#: class-wdgpt-chatbot-initializer.php:374
    186189#: includes/logs/wdgpt-config-logs.php:26
    187190msgid "Chat Logs"
    188191msgstr "Registri di chat"
    189192
    190 #: class-wdgpt-chatbot-initializer.php:381
    191193#: class-wdgpt-chatbot-initializer.php:382
     194#: class-wdgpt-chatbot-initializer.php:383
    192195#: includes/logs/wdgpt-config-error-logs.php:26
    193196msgid "Error Logs"
    194197msgstr "Error Log"
    195198
    196 #: class-wdgpt-chatbot-initializer.php:390
    197199#: class-wdgpt-chatbot-initializer.php:391
     200#: class-wdgpt-chatbot-initializer.php:392
    198201msgid "Addons"
    199202msgstr "Componenti aggiuntivi"
     
    479482msgstr "Ottenete la vostra licenza gratuita"
    480483
    481 #: includes/addons/wdgpt-addons.php:23
     484#: includes/addons/wdgpt-addons.php:26
    482485msgid "Addons manager"
    483486msgstr "Gestione dei componenti aggiuntivi"
    484487
    485 #: includes/addons/wdgpt-addons.php:24
     488#: includes/addons/wdgpt-addons.php:27
    486489msgid "License settings"
    487490msgstr "Impostazioni della licenza"
     
    556559"correttamente. Attivare l'opzione allow_url_fopen nel file php.ini."
    557560
    558 #: includes/config/wdgpt-config-general-settings.php:145
     561#: includes/config/wdgpt-config-general-settings.php:148
    559562msgid "Enable Chatbot:"
    560563msgstr "Attivare il Chatbot:"
    561564
    562 #: includes/config/wdgpt-config-general-settings.php:161
     565#: includes/config/wdgpt-config-general-settings.php:164
    563566msgid "OpenAi API Key:"
    564567msgstr "Chiave API OpenAi:"
    565568
    566 #: includes/config/wdgpt-config-general-settings.php:171
     569#: includes/config/wdgpt-config-general-settings.php:174
    567570msgid "Validate Key"
    568571msgstr "Convalida chiave"
    569572
    570 #: includes/config/wdgpt-config-general-settings.php:185
     573#: includes/config/wdgpt-config-general-settings.php:188
    571574msgid "You can get your api key"
    572575msgstr "È possibile ottenere la chiave api"
    573576
    574 #: includes/config/wdgpt-config-general-settings.php:192
     577#: includes/config/wdgpt-config-general-settings.php:195
    575578msgid "here"
    576579msgstr "clicca qui"
    577580
    578 #: includes/config/wdgpt-config-general-settings.php:204
     581#: includes/config/wdgpt-config-general-settings.php:207
    579582msgid "ChatGPT Model:"
    580583msgstr "Modello ChatGPT:"
    581584
    582 #: includes/config/wdgpt-config-general-settings.php:261
     585#: includes/config/wdgpt-config-general-settings.php:264
    583586msgid ""
    584587"If you want to use gpt-4o, you must subscribe to chatgpt plus. The model "
     
    589592"velocità maggiore e un costo inferiore."
    590593
    591 #: includes/config/wdgpt-config-general-settings.php:272
     594#: includes/config/wdgpt-config-general-settings.php:275
    592595msgid "Chatbot Name:"
    593596msgstr "Nome del chatbot:"
    594597
    595 #: includes/config/wdgpt-config-general-settings.php:283
     598#: includes/config/wdgpt-config-general-settings.php:286
    596599msgid "Chatbot Logo:"
    597600msgstr "Logo Chatbot:"
    598601
    599 #: includes/config/wdgpt-config-general-settings.php:319
     602#: includes/config/wdgpt-config-general-settings.php:322
    600603msgid "Temperature:"
    601604msgstr "Temperatura:"
    602605
    603 #: includes/config/wdgpt-config-general-settings.php:339
     606#: includes/config/wdgpt-config-general-settings.php:342
    604607msgid ""
    605608"The temperature parameter influences the level of randomness in the output "
     
    615618"modello, ma rende anche i suoi output più imprevedibili."
    616619
    617 #: includes/config/wdgpt-config-general-settings.php:350
     620#: includes/config/wdgpt-config-general-settings.php:353
    618621msgid "Max used contexts:"
    619622msgstr "Contesti massimi utilizzati:"
    620623
    621 #: includes/config/wdgpt-config-general-settings.php:374
     624#: includes/config/wdgpt-config-general-settings.php:377
    622625msgid ""
    623626"The maximum number of contexts that the model can use to generate an answer. "
     
    638641"valore a 10."
    639642
    640 #: includes/config/wdgpt-config-general-settings.php:385
     643#: includes/config/wdgpt-config-general-settings.php:388
    641644msgid "Similarity threshold:"
    642645msgstr "Soglia di somiglianza:"
    643646
    644 #: includes/config/wdgpt-config-general-settings.php:410
     647#: includes/config/wdgpt-config-general-settings.php:413
    645648#, no-php-format
    646649msgid ""
     
    666669"valore a 10."
    667670
    668 #: includes/config/wdgpt-config-general-settings.php:421
     671#: includes/config/wdgpt-config-general-settings.php:424
    669672msgid "Precision threshold:"
    670673msgstr "Soglia di precisione:"
    671674
    672 #: includes/config/wdgpt-config-general-settings.php:446
     675#: includes/config/wdgpt-config-general-settings.php:449
    673676msgid ""
    674677"The minimum precision required for a context to be considered eligible "
     
    686689"contesto o la richiesta non sono sufficientemente rilevanti."
    687690
    688 #: includes/config/wdgpt-config-general-settings.php:457
     691#: includes/config/wdgpt-config-general-settings.php:460
    689692msgid "Enable Chatbot Bubble:"
    690693msgstr "Abilitare Chatbot Bubble:"
    691694
    692 #: includes/config/wdgpt-config-general-settings.php:473
     695#: includes/config/wdgpt-config-general-settings.php:476
    693696msgid "Chatbot Bubble Typing Text:"
    694697msgstr "Chatbot che digita testo in bolla:"
    695698
    696 #: includes/config/wdgpt-config-general-settings.php:479
     699#: includes/config/wdgpt-config-general-settings.php:482
    697700#: includes/wdgpt-client.php:121
    698701msgid "Hello, may I help you?"
    699702msgstr "Salve, posso aiutarla?"
    700703
    701 #: includes/config/wdgpt-config-general-settings.php:483
     704#: includes/config/wdgpt-config-general-settings.php:486
    702705msgid ""
    703706"This is the text that will be displayed in the chat bubble above the circle "
     
    709712"lingua, verrà utilizzata la traduzione predefinita."
    710713
    711 #: includes/config/wdgpt-config-general-settings.php:494
     714#: includes/config/wdgpt-config-general-settings.php:497
    712715msgid "Greetings Message:"
    713716msgstr "Messaggio di saluto:"
    714717
    715 #: includes/config/wdgpt-config-general-settings.php:504
     718#: includes/config/wdgpt-config-general-settings.php:507
    716719msgid ""
    717720"This is the message that will be displayed when the chatbot will be greeting "
     
    723726"determinata lingua, verrà utilizzata la traduzione predefinita."
    724727
    725 #: includes/config/wdgpt-config-general-settings.php:515
     728#: includes/config/wdgpt-config-general-settings.php:518
    726729#: includes/config/wdgpt-config-reporting-settings.php:255
    727730msgid "Save Changes"
     
    802805#: includes/config/wdgpt-config-reporting-settings.php:228
    803806msgid "The cron schedule is: "
    804 msgstr "Il programma cron è:"
     807msgstr "Il programma cron è: "
    805808
    806809#: includes/config/wdgpt-config-reporting-settings.php:247
     
    814817#: includes/crons/wdgpt-cron-jobs.php:99
    815818msgid "SmartSearchWP Chat Logs Report - "
    816 msgstr "Rapporto sui registri di chat di SmartSearchWP -"
     819msgstr "Rapporto sui registri di chat di SmartSearchWP - "
    817820
    818821#: includes/crons/wdgpt-cron-jobs.php:113
     
    867870#: includes/logs/class-wdgpt-error-logs-table.php:76
    868871#: includes/logs/class-wdgpt-logs-table.php:208
    869 #: includes/summaries/class-wdgpt-summaries-table.php:388
     872#: includes/summaries/class-wdgpt-summaries-table.php:404
    870873msgid "ID"
    871874msgstr "ID"
     
    938941
    939942#: includes/summaries/class-wdgpt-summaries-table.php:65
     943#: includes/summaries/class-wdgpt-summaries-table.php:123
    940944msgid "Generate Embeddings"
    941945msgstr "Generare le incorporazioni"
     
    949953"di generare le incorporazioni."
    950954
    951 #: includes/summaries/class-wdgpt-summaries-table.php:248
    952 #: includes/summaries/class-wdgpt-summaries-table.php:295
     955#: includes/summaries/class-wdgpt-summaries-table.php:263
     956#: includes/summaries/class-wdgpt-summaries-table.php:310
    953957msgid "All"
    954958msgstr "Tutti"
    955959
    956 #: includes/summaries/class-wdgpt-summaries-table.php:266
     960#: includes/summaries/class-wdgpt-summaries-table.php:281
    957961msgid "Search"
    958962msgstr "Cerca"
    959963
    960 #: includes/summaries/class-wdgpt-summaries-table.php:296
    961 #: includes/summaries/class-wdgpt-summaries-table.php:375
     964#: includes/summaries/class-wdgpt-summaries-table.php:311
     965#: includes/summaries/class-wdgpt-summaries-table.php:391
    962966msgid "Active"
    963967msgstr "Attivo"
    964968
    965 #: includes/summaries/class-wdgpt-summaries-table.php:297
     969#: includes/summaries/class-wdgpt-summaries-table.php:312
    966970msgid "Inactive"
    967971msgstr "Inattivo"
    968972
    969 #: includes/summaries/class-wdgpt-summaries-table.php:298
    970 #: includes/summaries/class-wdgpt-summaries-table.php:373
     973#: includes/summaries/class-wdgpt-summaries-table.php:313
     974#: includes/summaries/class-wdgpt-summaries-table.php:389
    971975msgid "Embeddings"
    972976msgstr "Incorporazioni"
    973977
    974 #: includes/summaries/class-wdgpt-summaries-table.php:299
     978#: includes/summaries/class-wdgpt-summaries-table.php:314
    975979msgid "No Embeddings"
    976980msgstr "Nessun incorporamento"
    977981
    978 #: includes/summaries/class-wdgpt-summaries-table.php:300
     982#: includes/summaries/class-wdgpt-summaries-table.php:315
    979983msgid "Up to date"
    980984msgstr "Aggiornato"
    981985
    982 #: includes/summaries/class-wdgpt-summaries-table.php:301
     986#: includes/summaries/class-wdgpt-summaries-table.php:316
    983987msgid "Not up to date"
    984988msgstr "Non aggiornato"
    985989
    986 #: includes/summaries/class-wdgpt-summaries-table.php:332
     990#: includes/summaries/class-wdgpt-summaries-table.php:347
    987991msgid "Filter"
    988992msgstr "Filtro"
    989993
    990 #: includes/summaries/class-wdgpt-summaries-table.php:359
     994#: includes/summaries/class-wdgpt-summaries-table.php:374
    991995msgid ""
    992996"Embeddings are used to find the most similar posts/pages to the user query. "
     
    10001004"un post/pagina, fare clic sul link \"Genera embeddings\"."
    10011005
    1002 #: includes/summaries/class-wdgpt-summaries-table.php:362
     1006#: includes/summaries/class-wdgpt-summaries-table.php:378
    10031007msgid "Title"
    10041008msgstr "Titolo"
    10051009
    1006 #: includes/summaries/class-wdgpt-summaries-table.php:366
     1010#: includes/summaries/class-wdgpt-summaries-table.php:382
    10071011msgid "Language"
    10081012msgstr "Lingua"
    10091013
    1010 #: includes/summaries/class-wdgpt-summaries-table.php:372
     1014#: includes/summaries/class-wdgpt-summaries-table.php:388
    10111015msgid "Last Post Modification"
    10121016msgstr "Modifica dell'ultimo messaggio"
    10131017
    1014 #: includes/summaries/class-wdgpt-summaries-table.php:374
     1018#: includes/summaries/class-wdgpt-summaries-table.php:390
    10151019msgid "Last Embeddings Generation"
    10161020msgstr "Ultima generazione di incorporazioni"
    10171021
    1018 #: includes/summaries/class-wdgpt-summaries-table.php:389
     1022#: includes/summaries/class-wdgpt-summaries-table.php:405
    10191023msgid "Content"
    10201024msgstr "Contenuto"
     1025
     1026#: includes/summaries/class-wdgpt-summaries-table.php:622
     1027#, php-format
     1028msgid "%d items activated. %d items skipped (no embeddings)."
     1029msgstr "%d elementi attivati. %d elementi saltati (nessun embedding)."
     1030
     1031#: includes/summaries/class-wdgpt-summaries-table.php:640
     1032#, php-format
     1033msgid "%d items deactivated. %d items skipped (not active)."
     1034msgstr "%d voci disattivate. %d voci saltate (non attive)."
     1035
     1036#: includes/summaries/class-wdgpt-summaries-table.php:677
     1037#, php-format
     1038msgid "Embeddings generation started for %d items. %d items skipped."
     1039msgstr ""
     1040"Generazione delle incorporazioni avviata per %d elementi. %d elementi "
     1041"saltati."
    10211042
    10221043#: includes/summaries/wdgpt-config-summary.php:24
  • smartsearchwp/trunk/languages/webdigit-chatbot-nl_NL.po

    r3199870 r3239989  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: webdigit-chatbot\n"
    4 "POT-Creation-Date: 2024-11-30 12:15+0100\n"
    5 "PO-Revision-Date: 2024-11-30 12:16+0100\n"
     3"Project-Id-Version: SmartSearchWP\n"
     4"POT-Creation-Date: 2025-02-09 19:28+0100\n"
     5"PO-Revision-Date: 2025-02-09 19:28+0100\n"
    66"Last-Translator: JC <[email protected]>\n"
    7 "Language-Team: www.webdigit.be\n"
    8 "Language: webdigit\n"
     7"Language-Team: JC <[email protected]>\n"
     8"Language: nl_NL\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=UTF-8\n"
     
    1212"X-Generator: Poedit 3.5\n"
    1313"X-Poedit-Basepath: ..\n"
    14 "X-Poedit-KeywordsList: __;_e;esc_html_e\n"
     14"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
     15"X-Poedit-WPHeader: wdgpt.php\n"
     16"X-Poedit-SourceCharset: UTF-8\n"
     17"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
     18"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
     19"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
    1520"X-Poedit-SearchPath-0: .\n"
    16 "X-Poedit-SearchPathExcluded-0: js\n"
     21"X-Poedit-SearchPathExcluded-0: *.min.js\n"
     22"X-Poedit-SearchPathExcluded-1: js/node_modules\n"
     23"X-Poedit-SearchPathExcluded-2: vendor\n"
    1724
    1825#: class-wdgpt-chatbot-initializer.php:229
     
    3441
    3542#: class-wdgpt-chatbot-initializer.php:233
    36 #: class-wdgpt-chatbot-initializer.php:283
     43#: class-wdgpt-chatbot-initializer.php:284
    3744#: includes/summaries/class-wdgpt-summaries-table.php:65
    3845msgid "Regenerate Embeddings"
     
    4047
    4148#: class-wdgpt-chatbot-initializer.php:234
    42 #: class-wdgpt-chatbot-initializer.php:284
     49#: class-wdgpt-chatbot-initializer.php:285
    4350#: includes/addons/wdgpt-addons-catalog-settings.php:207
    4451#: includes/summaries/class-wdgpt-summaries-table.php:85
     52#: includes/summaries/class-wdgpt-summaries-table.php:121
    4553msgid "Activate"
    4654msgstr "Activeer"
    4755
    4856#: class-wdgpt-chatbot-initializer.php:235
    49 #: class-wdgpt-chatbot-initializer.php:285
     57#: class-wdgpt-chatbot-initializer.php:286
    5058#: includes/addons/wdgpt-addons-catalog-settings.php:205
    5159#: includes/summaries/class-wdgpt-summaries-table.php:81
     60#: includes/summaries/class-wdgpt-summaries-table.php:122
    5261msgid "Deactivate"
    5362msgstr "Deactiveer"
     
    5867
    5968#: class-wdgpt-chatbot-initializer.php:237
    60 #: includes/config/wdgpt-config-general-settings.php:500
     69#: includes/config/wdgpt-config-general-settings.php:503
    6170#: includes/wdgpt-client.php:141
    6271msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?"
    6372msgstr "Hallo, ik ben SmartSearchWP, hoe kan ik u helpen?"
    6473
    65 #: class-wdgpt-chatbot-initializer.php:286 includes/wdgpt-config.php:29
     74#: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29
    6675msgid "Please enter your api key!"
    6776msgstr "Voer alstublieft uw API-sleutel in!"
    6877
    69 #: class-wdgpt-chatbot-initializer.php:287
     78#: class-wdgpt-chatbot-initializer.php:288
    7079msgid ""
    7180"Your api key is invalid! If you think this is a mistake, please check your "
     
    7786"problemen heeft of down is."
    7887
    79 #: class-wdgpt-chatbot-initializer.php:288
     88#: class-wdgpt-chatbot-initializer.php:289
    8089msgid "Your api key is valid! Don't forget to save your changes."
    8190msgstr "Uw api-sleutel is geldig! Vergeet niet uw wijzigingen op te slaan."
    8291
    83 #: class-wdgpt-chatbot-initializer.php:289
    84 #: includes/config/wdgpt-config-general-settings.php:250
     92#: class-wdgpt-chatbot-initializer.php:290
     93#: includes/config/wdgpt-config-general-settings.php:253
    8594msgid ""
    8695"The previously selected model is not available anymore with your current api "
     
    92101"een nieuw model. Uw vorige model was: "
    93102
    94 #: class-wdgpt-chatbot-initializer.php:290
     103#: class-wdgpt-chatbot-initializer.php:291
    95104#: includes/addons/wdgpt-addons-license-settings.php:151
    96105msgid "You currently have a free license key."
    97106msgstr "U hebt momenteel een gratis licentiesleutel."
    98107
    99 #: class-wdgpt-chatbot-initializer.php:291
     108#: class-wdgpt-chatbot-initializer.php:292
    100109msgid ""
    101110"There was an issue retrieving your free license key. Please try again later."
     
    104113"Probeer het later nog eens."
    105114
    106 #: class-wdgpt-chatbot-initializer.php:292
     115#: class-wdgpt-chatbot-initializer.php:293
    107116#: includes/addons/wdgpt-addons-license-settings.php:63
    108117msgid ""
     
    113122"huidige site. U kunt nu de premium functies gebruiken."
    114123
    115 #: class-wdgpt-chatbot-initializer.php:293
     124#: class-wdgpt-chatbot-initializer.php:294
    116125#: includes/addons/wdgpt-addons-license-settings.php:58
    117126msgid ""
     
    122131"licentiesleutel."
    123132
    124 #: class-wdgpt-chatbot-initializer.php:294
     133#: class-wdgpt-chatbot-initializer.php:295
    125134msgid ""
    126135"Your SmartSearchWP Premium license was already registered with the current "
     
    130139"U kunt de premium functies gebruiken."
    131140
    132 #: class-wdgpt-chatbot-initializer.php:295
     141#: class-wdgpt-chatbot-initializer.php:296
    133142msgid ""
    134143"Your SmartSearchWP Premium license was already registered with another site. "
     
    140149"je denkt dat dit niet zou moeten gebeuren."
    141150
    142 #: class-wdgpt-chatbot-initializer.php:296
     151#: class-wdgpt-chatbot-initializer.php:297
    143152msgid ""
    144153"There was an issue registering your SmartSearchWP Premium license with the "
     
    150159"contact op met support als het probleem zich blijft voordoen."
    151160
    152 #: class-wdgpt-chatbot-initializer.php:297
     161#: class-wdgpt-chatbot-initializer.php:298
    153162msgid ""
    154163"There was an issue retrieving the expiry date of your SmartSearchWP Premium "
     
    159168"op met support als het probleem zich blijft voordoen."
    160169
    161 #: class-wdgpt-chatbot-initializer.php:298
     170#: class-wdgpt-chatbot-initializer.php:299
    162171msgid ""
    163172"Your SmartSearchWP Premium license has expired. Please renew it to continue "
     
    168177"opnieuw."
    169178
    170 #: class-wdgpt-chatbot-initializer.php:356
    171179#: class-wdgpt-chatbot-initializer.php:357
     180#: class-wdgpt-chatbot-initializer.php:358
    172181msgid "Settings"
    173182msgstr "Instellingen"
    174183
    175 #: class-wdgpt-chatbot-initializer.php:364
    176184#: class-wdgpt-chatbot-initializer.php:365
     185#: class-wdgpt-chatbot-initializer.php:366
    177186msgid "Summary_title"
    178187msgstr "Samenvattingen"
    179188
    180 #: class-wdgpt-chatbot-initializer.php:372
    181189#: class-wdgpt-chatbot-initializer.php:373
     190#: class-wdgpt-chatbot-initializer.php:374
    182191#: includes/logs/wdgpt-config-logs.php:26
    183192msgid "Chat Logs"
    184193msgstr "Logboeken chatten"
    185194
    186 #: class-wdgpt-chatbot-initializer.php:381
    187195#: class-wdgpt-chatbot-initializer.php:382
     196#: class-wdgpt-chatbot-initializer.php:383
    188197#: includes/logs/wdgpt-config-error-logs.php:26
    189198msgid "Error Logs"
    190199msgstr "Foutlogboeken"
    191200
    192 #: class-wdgpt-chatbot-initializer.php:390
    193201#: class-wdgpt-chatbot-initializer.php:391
     202#: class-wdgpt-chatbot-initializer.php:392
    194203msgid "Addons"
    195204msgstr "Addons"
     
    365374msgstr "Ga voor alles met betrekking tot de SmartSearchWP Premium-versie naar"
    366375
     376#. Plugin Name of the plugin/theme
    367377#: includes/addons/wdgpt-addons-license-settings.php:31
    368378msgid "SmartSearchWP"
     
    456466msgstr "Ontvang uw gratis licentie"
    457467
    458 #: includes/addons/wdgpt-addons.php:23
     468#: includes/addons/wdgpt-addons.php:26
    459469msgid "Addons manager"
    460470msgstr "Addons manager"
    461471
    462 #: includes/addons/wdgpt-addons.php:24
     472#: includes/addons/wdgpt-addons.php:27
    463473msgid "License settings"
    464474msgstr "Licentie-instellingen"
     
    534544"optie allow_url_fopen in uw php.ini bestand in."
    535545
    536 #: includes/config/wdgpt-config-general-settings.php:145
     546#: includes/config/wdgpt-config-general-settings.php:148
    537547msgid "Enable Chatbot:"
    538548msgstr "Activeren van de chatbot:"
    539549
    540 #: includes/config/wdgpt-config-general-settings.php:161
     550#: includes/config/wdgpt-config-general-settings.php:164
    541551msgid "OpenAi API Key:"
    542552msgstr "OpenAi API sleutel:"
    543553
    544 #: includes/config/wdgpt-config-general-settings.php:171
     554#: includes/config/wdgpt-config-general-settings.php:174
    545555msgid "Validate Key"
    546556msgstr "Valideer sleutel"
    547557
    548 #: includes/config/wdgpt-config-general-settings.php:185
     558#: includes/config/wdgpt-config-general-settings.php:188
    549559msgid "You can get your api key"
    550560msgstr "Voer alstublieft uw API-sleutel in!U kunt uw API-sleutel verkrijgen"
    551561
    552 #: includes/config/wdgpt-config-general-settings.php:192
     562#: includes/config/wdgpt-config-general-settings.php:195
    553563msgid "here"
    554564msgstr "hier"
    555565
    556 #: includes/config/wdgpt-config-general-settings.php:204
     566#: includes/config/wdgpt-config-general-settings.php:207
    557567msgid "ChatGPT Model:"
    558568msgstr "Model ChatGPT:"
    559569
    560 #: includes/config/wdgpt-config-general-settings.php:261
     570#: includes/config/wdgpt-config-general-settings.php:264
    561571msgid ""
    562572"If you want to use gpt-4o, you must subscribe to chatgpt plus. The model "
     
    567577"kosten."
    568578
    569 #: includes/config/wdgpt-config-general-settings.php:272
     579#: includes/config/wdgpt-config-general-settings.php:275
    570580msgid "Chatbot Name:"
    571581msgstr "Chatbot naam:"
    572582
    573 #: includes/config/wdgpt-config-general-settings.php:283
     583#: includes/config/wdgpt-config-general-settings.php:286
    574584msgid "Chatbot Logo:"
    575585msgstr "Chatbot-logo:"
    576586
    577 #: includes/config/wdgpt-config-general-settings.php:319
     587#: includes/config/wdgpt-config-general-settings.php:322
    578588msgid "Temperature:"
    579589msgstr "Temperatuur:"
    580590
    581 #: includes/config/wdgpt-config-general-settings.php:339
     591#: includes/config/wdgpt-config-general-settings.php:342
    582592msgid ""
    583593"The temperature parameter influences the level of randomness in the output "
     
    594604"onvoorspelbaarder."
    595605
    596 #: includes/config/wdgpt-config-general-settings.php:350
     606#: includes/config/wdgpt-config-general-settings.php:353
    597607msgid "Max used contexts:"
    598608msgstr "Max. gebruikte contexten:"
    599609
    600 #: includes/config/wdgpt-config-general-settings.php:374
     610#: includes/config/wdgpt-config-general-settings.php:377
    601611msgid ""
    602612"The maximum number of contexts that the model can use to generate an answer. "
     
    617627"waarde verhogen tot 10."
    618628
    619 #: includes/config/wdgpt-config-general-settings.php:385
     629#: includes/config/wdgpt-config-general-settings.php:388
    620630msgid "Similarity threshold:"
    621631msgstr "Gelijksoortigheidsdrempel:"
    622632
    623 #: includes/config/wdgpt-config-general-settings.php:410
     633#: includes/config/wdgpt-config-general-settings.php:413
    624634#, no-php-format
    625635msgid ""
     
    645655"wilt geven aan creativiteit, kunt u deze waarde verhogen tot 10."
    646656
    647 #: includes/config/wdgpt-config-general-settings.php:421
     657#: includes/config/wdgpt-config-general-settings.php:424
    648658msgid "Precision threshold:"
    649659msgstr "Nauwkeurigheidsdrempel:"
    650660
    651 #: includes/config/wdgpt-config-general-settings.php:446
     661#: includes/config/wdgpt-config-general-settings.php:449
    652662msgid ""
    653663"The minimum precision required for a context to be considered eligible "
     
    666676"zijn."
    667677
    668 #: includes/config/wdgpt-config-general-settings.php:457
     678#: includes/config/wdgpt-config-general-settings.php:460
    669679msgid "Enable Chatbot Bubble:"
    670680msgstr "Activeer de phylactery :"
    671681
    672 #: includes/config/wdgpt-config-general-settings.php:473
     682#: includes/config/wdgpt-config-general-settings.php:476
    673683msgid "Chatbot Bubble Typing Text:"
    674684msgstr "Chatbot Bubbel die tekst typt:"
    675685
    676 #: includes/config/wdgpt-config-general-settings.php:479
     686#: includes/config/wdgpt-config-general-settings.php:482
    677687#: includes/wdgpt-client.php:121
    678688msgid "Hello, may I help you?"
    679689msgstr "Hallo, kan ik u helpen?"
    680690
    681 #: includes/config/wdgpt-config-general-settings.php:483
     691#: includes/config/wdgpt-config-general-settings.php:486
    682692msgid ""
    683693"This is the text that will be displayed in the chat bubble above the circle "
     
    689699"de standaardvertaling gebruikt."
    690700
    691 #: includes/config/wdgpt-config-general-settings.php:494
     701#: includes/config/wdgpt-config-general-settings.php:497
    692702msgid "Greetings Message:"
    693703msgstr "Begroetingsbericht:"
    694704
    695 #: includes/config/wdgpt-config-general-settings.php:504
     705#: includes/config/wdgpt-config-general-settings.php:507
    696706msgid ""
    697707"This is the message that will be displayed when the chatbot will be greeting "
     
    703713"bepaalde taal, wordt de standaardvertaling gebruikt."
    704714
    705 #: includes/config/wdgpt-config-general-settings.php:515
     715#: includes/config/wdgpt-config-general-settings.php:518
    706716#: includes/config/wdgpt-config-reporting-settings.php:255
    707717msgid "Save Changes"
     
    846856#: includes/logs/class-wdgpt-error-logs-table.php:76
    847857#: includes/logs/class-wdgpt-logs-table.php:208
    848 #: includes/summaries/class-wdgpt-summaries-table.php:388
     858#: includes/summaries/class-wdgpt-summaries-table.php:404
    849859msgid "ID"
    850860msgstr "ID"
     
    902912
    903913#. translators: %d: number of months
     914#: includes/logs/wdgpt-config-error-logs.php:36
    904915#: includes/logs/wdgpt-config-logs.php:36
    905916#, php-format
     
    916927
    917928#: includes/summaries/class-wdgpt-summaries-table.php:65
     929#: includes/summaries/class-wdgpt-summaries-table.php:123
    918930msgid "Generate Embeddings"
    919931msgstr "AI trainen"
     
    927939"embeddings genereert."
    928940
    929 #: includes/summaries/class-wdgpt-summaries-table.php:248
    930 #: includes/summaries/class-wdgpt-summaries-table.php:295
     941#: includes/summaries/class-wdgpt-summaries-table.php:263
     942#: includes/summaries/class-wdgpt-summaries-table.php:310
    931943msgid "All"
    932944msgstr "Alle"
    933945
    934 #: includes/summaries/class-wdgpt-summaries-table.php:266
     946#: includes/summaries/class-wdgpt-summaries-table.php:281
    935947msgid "Search"
    936948msgstr "Zoek op"
    937949
    938 #: includes/summaries/class-wdgpt-summaries-table.php:296
    939 #: includes/summaries/class-wdgpt-summaries-table.php:375
     950#: includes/summaries/class-wdgpt-summaries-table.php:311
     951#: includes/summaries/class-wdgpt-summaries-table.php:391
    940952msgid "Active"
    941953msgstr "Oorsprong"
    942954
    943 #: includes/summaries/class-wdgpt-summaries-table.php:297
     955#: includes/summaries/class-wdgpt-summaries-table.php:312
    944956msgid "Inactive"
    945957msgstr "Inactief"
    946958
    947 #: includes/summaries/class-wdgpt-summaries-table.php:298
    948 #: includes/summaries/class-wdgpt-summaries-table.php:373
     959#: includes/summaries/class-wdgpt-summaries-table.php:313
     960#: includes/summaries/class-wdgpt-summaries-table.php:389
    949961msgid "Embeddings"
    950962msgstr "Inbeddingen"
    951963
    952 #: includes/summaries/class-wdgpt-summaries-table.php:299
     964#: includes/summaries/class-wdgpt-summaries-table.php:314
    953965msgid "No Embeddings"
    954966msgstr "Geen inbeddingen"
    955967
    956 #: includes/summaries/class-wdgpt-summaries-table.php:300
     968#: includes/summaries/class-wdgpt-summaries-table.php:315
    957969msgid "Up to date"
    958970msgstr "Up-to-date"
    959971
    960 #: includes/summaries/class-wdgpt-summaries-table.php:301
     972#: includes/summaries/class-wdgpt-summaries-table.php:316
    961973msgid "Not up to date"
    962974msgstr "Niet up-to-date"
    963975
    964 #: includes/summaries/class-wdgpt-summaries-table.php:332
     976#: includes/summaries/class-wdgpt-summaries-table.php:347
    965977msgid "Filter"
    966978msgstr "Filter"
    967979
    968 #: includes/summaries/class-wdgpt-summaries-table.php:359
     980#: includes/summaries/class-wdgpt-summaries-table.php:374
    969981msgid ""
    970982"Embeddings are used to find the most similar posts/pages to the user query. "
     
    978990"genereren\"."
    979991
    980 #: includes/summaries/class-wdgpt-summaries-table.php:362
     992#: includes/summaries/class-wdgpt-summaries-table.php:378
    981993msgid "Title"
    982994msgstr "Titel"
    983995
    984 #: includes/summaries/class-wdgpt-summaries-table.php:366
     996#: includes/summaries/class-wdgpt-summaries-table.php:382
    985997msgid "Language"
    986998msgstr "Taal"
    987999
    988 #: includes/summaries/class-wdgpt-summaries-table.php:372
     1000#: includes/summaries/class-wdgpt-summaries-table.php:388
    9891001msgid "Last Post Modification"
    9901002msgstr "Laatste inhoudswijziging"
    9911003
    992 #: includes/summaries/class-wdgpt-summaries-table.php:374
     1004#: includes/summaries/class-wdgpt-summaries-table.php:390
    9931005msgid "Last Embeddings Generation"
    9941006msgstr "Laatste inbeddingsgeneratie"
    9951007
    996 #: includes/summaries/class-wdgpt-summaries-table.php:389
     1008#: includes/summaries/class-wdgpt-summaries-table.php:405
    9971009msgid "Content"
    9981010msgstr "Inhoud"
     1011
     1012#: includes/summaries/class-wdgpt-summaries-table.php:622
     1013#, php-format
     1014msgid "%d items activated. %d items skipped (no embeddings)."
     1015msgstr "%d items geactiveerd. %d items overgeslagen (geen embeddings)."
     1016
     1017#: includes/summaries/class-wdgpt-summaries-table.php:640
     1018#, php-format
     1019msgid "%d items deactivated. %d items skipped (not active)."
     1020msgstr "%d items gedeactiveerd. %d items overgeslagen (niet actief)."
     1021
     1022#: includes/summaries/class-wdgpt-summaries-table.php:677
     1023#, php-format
     1024msgid "Embeddings generation started for %d items. %d items skipped."
     1025msgstr "Embeddings genereren gestart voor %d items. %d items overgeslagen."
    9991026
    10001027#: includes/summaries/wdgpt-config-summary.php:24
     
    11321159"De plugin SmartSearchWP moet de database bijwerken. Klik op de onderstaande "
    11331160"link om naar de plugin-instellingen te gaan en de database bij te werken."
     1161
     1162#. Plugin URI of the plugin/theme
     1163#. Author URI of the plugin/theme
     1164msgid "https://www.smartsearchwp.com/"
     1165msgstr "https://www.smartsearchwp.com/"
     1166
     1167#. Description of the plugin/theme
     1168msgid ""
     1169"A chatbot that helps users navigate your website and find what they're "
     1170"looking for."
     1171msgstr ""
     1172"Een chatbot die gebruikers helpt door je website te navigeren en te vinden "
     1173"wat ze zoeken."
     1174
     1175#. Author of the plugin/theme
     1176msgid "Webdigit"
     1177msgstr "Webdigit"
    11341178
    11351179#~ msgid "Posts"
  • smartsearchwp/trunk/readme.txt

    r3237420 r3239989  
    55Requires at least: 4.7
    66Tested up to: 6.7.1
    7 Stable tag: 2.4.10
     7Stable tag: 2.4.11
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    9090== Changelog ==
    9191
     92= 2.4.11 =
     93* Update translations for all existing languages
     94* Improved licence key management for back office performance
     95* Add plugin version to general settings
     96
    9297= 2.4.10 =
    9398* Update translations for all existing languages
     
    95100* Add Spanish (es_ES) translations
    96101* Add bulk action to generate embeddings, activate or deactivate pages and posts
    97 * Fix bug with 0 & 1 replacement in answers
     102* Fix bug with 0 & 1 replacement in answers (Thanks to Robert Grygier)
    98103
    99104= 2.4.9 =
  • smartsearchwp/trunk/wdgpt.php

    r3237433 r3239989  
    44 * Description: A chatbot that helps users navigate your website and find what they're looking for.
    55 * Plugin URI:  https://www.smartsearchwp.com/
    6  * Version:     2.4.10
     6 * Version:     2.4.11
    77 * Author:      Webdigit
    88 * Author URI:  https://www.smartsearchwp.com/
     
    1919}
    2020
    21 define( 'WDGPT_CHATBOT_VERSION', '2.4.10' );
     21define( 'WDGPT_CHATBOT_VERSION', '2.4.11' );
    2222
    2323
Note: See TracChangeset for help on using the changeset viewer.