Changeset 3239989
- Timestamp:
- 02/13/2025 10:29:58 AM (6 weeks ago)
- Location:
- smartsearchwp/trunk
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
smartsearchwp/trunk/includes/addons/class-wdgpt-addons-manager.php
r3237420 r3239989 53 53 */ 54 54 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 56 63 $response = wp_remote_get( $this->url ); 57 64 if ( is_wp_error( $response ) ) { … … 59 66 } 60 67 $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; 63 76 } 64 77 -
smartsearchwp/trunk/includes/addons/class-wdgpt-license-manager.php
r3199559 r3239989 306 306 */ 307 307 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 308 314 $url = 'https://www.smartsearchwp.com/wp-json/smw/license-verification/'; 309 315 316 310 317 $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 313 320 if ( '' === $license_key ) { 314 321 $license_key = get_option( 'wd_smartsearch_license', '' ); 315 322 } 323 316 324 $body = array( 317 325 'license_key' => $license_key, … … 334 342 $body = wp_remote_retrieve_body( $response ); 335 343 $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 349 364 return $data; 350 365 } -
smartsearchwp/trunk/includes/config/wdgpt-config-general-settings.php
r3199559 r3239989 136 136 <?php 137 137 } 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> 139 142 140 143 <table class="form-table"> … … 155 158 </td> 156 159 </tr> 157 <tr v align="top">160 <tr vertical-align="top"> 158 161 <th scope="row"> 159 162 <?php … … 198 201 </td> 199 202 </tr> 200 <tr v align="top">203 <tr vertical-align="top"> 201 204 <th scope="row"> 202 205 <?php … … 232 235 <?php } ?> 233 236 </select> 234 <p>235 237 <?php 236 238 $available_models = wdpgt_get_models( $models ); … … 255 257 ?> 256 258 </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 --> 266 266 </td> 267 267 </tr> 268 <tr v align="top">268 <tr vertical-align="top"> 269 269 <th scope="row"> 270 270 <?php … … 277 277 <td><input type="text" name="wdgpt_name" value="<?php echo esc_attr( get_option( 'wdgpt_name', 'Pixel' ) ); ?>" /></td> 278 278 </tr> 279 <tr v align="top">279 <tr vertical-align="top"> 280 280 <th scope="row"> 281 281 <?php -
smartsearchwp/trunk/languages/webdigit-chatbot-de_DE.po
r3237420 r3239989 2 2 msgstr "" 3 3 "Project-Id-Version: SmartSearchWP\n" 4 "POT-Creation-Date: 202 4-12-02 07:49+0100\n"5 "PO-Revision-Date: 202 4-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" 6 6 "Last-Translator: JC <[email protected]>\n" 7 7 "Language-Team: JC <[email protected]>\n" … … 44 44 45 45 #: class-wdgpt-chatbot-initializer.php:233 46 #: class-wdgpt-chatbot-initializer.php:28 346 #: class-wdgpt-chatbot-initializer.php:284 47 47 #: includes/summaries/class-wdgpt-summaries-table.php:65 48 48 msgid "Regenerate Embeddings" … … 50 50 51 51 #: class-wdgpt-chatbot-initializer.php:234 52 #: class-wdgpt-chatbot-initializer.php:28 452 #: class-wdgpt-chatbot-initializer.php:285 53 53 #: includes/addons/wdgpt-addons-catalog-settings.php:207 54 54 #: includes/summaries/class-wdgpt-summaries-table.php:85 55 #: includes/summaries/class-wdgpt-summaries-table.php:121 55 56 msgid "Activate" 56 57 msgstr "Aktivieren" 57 58 58 59 #: class-wdgpt-chatbot-initializer.php:235 59 #: class-wdgpt-chatbot-initializer.php:28 560 #: class-wdgpt-chatbot-initializer.php:286 60 61 #: includes/addons/wdgpt-addons-catalog-settings.php:205 61 62 #: includes/summaries/class-wdgpt-summaries-table.php:81 63 #: includes/summaries/class-wdgpt-summaries-table.php:122 62 64 msgid "Deactivate" 63 65 msgstr "Deaktivieren" … … 68 70 69 71 #: class-wdgpt-chatbot-initializer.php:237 70 #: includes/config/wdgpt-config-general-settings.php:50 072 #: includes/config/wdgpt-config-general-settings.php:503 71 73 #: includes/wdgpt-client.php:141 72 74 msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?" 73 75 msgstr "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?" 74 76 75 #: class-wdgpt-chatbot-initializer.php:28 6includes/wdgpt-config.php:2977 #: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29 76 78 msgid "Please enter your api key!" 77 79 msgstr "Bitte geben Sie Ihren Api-Schlüssel ein!" 78 80 79 #: class-wdgpt-chatbot-initializer.php:28 781 #: class-wdgpt-chatbot-initializer.php:288 80 82 msgid "" 81 83 "Your api key is invalid! If you think this is a mistake, please check your " … … 87 89 "passieren, wenn die OpenAI-API Probleme hat oder ausgefallen ist." 88 90 89 #: class-wdgpt-chatbot-initializer.php:28 891 #: class-wdgpt-chatbot-initializer.php:289 90 92 msgid "Your api key is valid! Don't forget to save your changes." 91 93 msgstr "" … … 93 95 "speichern." 94 96 95 #: class-wdgpt-chatbot-initializer.php:2 8996 #: includes/config/wdgpt-config-general-settings.php:25 097 #: class-wdgpt-chatbot-initializer.php:290 98 #: includes/config/wdgpt-config-general-settings.php:253 97 99 msgid "" 98 100 "The previously selected model is not available anymore with your current api " … … 104 106 "Bitte wählen Sie ein neues Modell. Ihr vorheriges Modell war: " 105 107 106 #: class-wdgpt-chatbot-initializer.php:29 0108 #: class-wdgpt-chatbot-initializer.php:291 107 109 #: includes/addons/wdgpt-addons-license-settings.php:151 108 110 msgid "You currently have a free license key." 109 111 msgstr "Sie haben derzeit einen kostenlosen Lizenzschlüssel." 110 112 111 #: class-wdgpt-chatbot-initializer.php:29 1113 #: class-wdgpt-chatbot-initializer.php:292 112 114 msgid "" 113 115 "There was an issue retrieving your free license key. Please try again later." … … 116 118 "Bitte versuchen Sie es später noch einmal." 117 119 118 #: class-wdgpt-chatbot-initializer.php:29 2120 #: class-wdgpt-chatbot-initializer.php:293 119 121 #: includes/addons/wdgpt-addons-license-settings.php:63 120 122 msgid "" … … 125 127 "Website registriert. Sie können nun die Premium-Funktionen nutzen." 126 128 127 #: class-wdgpt-chatbot-initializer.php:29 3129 #: class-wdgpt-chatbot-initializer.php:294 128 130 #: includes/addons/wdgpt-addons-license-settings.php:58 129 131 msgid "" … … 134 136 "Ihren Lizenzschlüssel." 135 137 136 #: class-wdgpt-chatbot-initializer.php:29 4138 #: class-wdgpt-chatbot-initializer.php:295 137 139 msgid "" 138 140 "Your SmartSearchWP Premium license was already registered with the current " … … 142 144 "registriert. Sie können die Premium-Funktionen nutzen." 143 145 144 #: class-wdgpt-chatbot-initializer.php:29 5146 #: class-wdgpt-chatbot-initializer.php:296 145 147 msgid "" 146 148 "Your SmartSearchWP Premium license was already registered with another site. " … … 153 155 "nicht passieren sollte." 154 156 155 #: class-wdgpt-chatbot-initializer.php:29 6157 #: class-wdgpt-chatbot-initializer.php:297 156 158 msgid "" 157 159 "There was an issue registering your SmartSearchWP Premium license with the " … … 163 165 "kontaktieren Sie den Support, wenn das Problem weiterhin besteht." 164 166 165 #: class-wdgpt-chatbot-initializer.php:29 7167 #: class-wdgpt-chatbot-initializer.php:298 166 168 msgid "" 167 169 "There was an issue retrieving the expiry date of your SmartSearchWP Premium " … … 172 174 "Support, wenn das Problem weiterhin besteht." 173 175 174 #: class-wdgpt-chatbot-initializer.php:29 8176 #: class-wdgpt-chatbot-initializer.php:299 175 177 msgid "" 176 178 "Your SmartSearchWP Premium license has expired. Please renew it to continue " … … 181 183 "dann erneut." 182 184 183 #: class-wdgpt-chatbot-initializer.php:356184 185 #: class-wdgpt-chatbot-initializer.php:357 186 #: class-wdgpt-chatbot-initializer.php:358 185 187 msgid "Settings" 186 188 msgstr "Einstellungen" 187 189 188 #: class-wdgpt-chatbot-initializer.php:364189 190 #: class-wdgpt-chatbot-initializer.php:365 191 #: class-wdgpt-chatbot-initializer.php:366 190 192 msgid "Summary_title" 191 193 msgstr "Zusammenfassung_Titel" 192 194 193 #: class-wdgpt-chatbot-initializer.php:372194 195 #: class-wdgpt-chatbot-initializer.php:373 196 #: class-wdgpt-chatbot-initializer.php:374 195 197 #: includes/logs/wdgpt-config-logs.php:26 196 198 msgid "Chat Logs" 197 199 msgstr "Chat-Protokolle" 198 200 199 #: class-wdgpt-chatbot-initializer.php:381200 201 #: class-wdgpt-chatbot-initializer.php:382 202 #: class-wdgpt-chatbot-initializer.php:383 201 203 #: includes/logs/wdgpt-config-error-logs.php:26 202 204 msgid "Error Logs" 203 205 msgstr "Fehlerprotokolle" 204 206 205 #: class-wdgpt-chatbot-initializer.php:390206 207 #: class-wdgpt-chatbot-initializer.php:391 208 #: class-wdgpt-chatbot-initializer.php:392 207 209 msgid "Addons" 208 210 msgstr "Erweiterungen" 209 211 210 212 #. translators: %s: required version of the plugin 211 #: includes/addons/class-wdgpt-addons-manager.php:1 26213 #: includes/addons/class-wdgpt-addons-manager.php:100 212 214 #, php-format 213 215 msgid "This addon will require at least version %s of the plugin to function." … … 565 567 "ini-Datei." 566 568 567 #: includes/config/wdgpt-config-general-settings.php:14 5569 #: includes/config/wdgpt-config-general-settings.php:148 568 570 msgid "Enable Chatbot:" 569 571 msgstr "Chatbot aktivieren:" 570 572 571 #: includes/config/wdgpt-config-general-settings.php:16 1573 #: includes/config/wdgpt-config-general-settings.php:164 572 574 msgid "OpenAi API Key:" 573 575 msgstr "OpenAi API-Schlüssel:" 574 576 575 #: includes/config/wdgpt-config-general-settings.php:17 1577 #: includes/config/wdgpt-config-general-settings.php:174 576 578 msgid "Validate Key" 577 579 msgstr "Lizenz validieren" 578 580 579 #: includes/config/wdgpt-config-general-settings.php:18 5581 #: includes/config/wdgpt-config-general-settings.php:188 580 582 msgid "You can get your api key" 581 583 msgstr "Sie können Ihren Api-Schlüssel erhalten" 582 584 583 #: includes/config/wdgpt-config-general-settings.php:19 2585 #: includes/config/wdgpt-config-general-settings.php:195 584 586 msgid "here" 585 587 msgstr "hier" 586 588 587 #: includes/config/wdgpt-config-general-settings.php:20 4589 #: includes/config/wdgpt-config-general-settings.php:207 588 590 msgid "ChatGPT Model:" 589 591 msgstr "ChatGPT Modell:" 590 592 591 #: includes/config/wdgpt-config-general-settings.php:26 1593 #: includes/config/wdgpt-config-general-settings.php:264 592 594 msgid "" 593 595 "If you want to use gpt-4o, you must subscribe to chatgpt plus. The model " … … 598 600 "Geschwindigkeit und niedrigeren Kosten." 599 601 600 #: includes/config/wdgpt-config-general-settings.php:27 2602 #: includes/config/wdgpt-config-general-settings.php:275 601 603 msgid "Chatbot Name:" 602 604 msgstr "Chatbot-Name:" 603 605 604 #: includes/config/wdgpt-config-general-settings.php:28 3606 #: includes/config/wdgpt-config-general-settings.php:286 605 607 msgid "Chatbot Logo:" 606 608 msgstr "Chatbot-Logo:" 607 609 608 #: includes/config/wdgpt-config-general-settings.php:3 19610 #: includes/config/wdgpt-config-general-settings.php:322 609 611 msgid "Temperature:" 610 612 msgstr "Temperatur:" 611 613 612 #: includes/config/wdgpt-config-general-settings.php:3 39614 #: includes/config/wdgpt-config-general-settings.php:342 613 615 msgid "" 614 616 "The temperature parameter influences the level of randomness in the output " … … 624 626 "auch unberechenbarer in seinen Ergebnissen." 625 627 626 #: includes/config/wdgpt-config-general-settings.php:35 0628 #: includes/config/wdgpt-config-general-settings.php:353 627 629 msgid "Max used contexts:" 628 630 msgstr "Maximal verwendete Kontexte:" 629 631 630 #: includes/config/wdgpt-config-general-settings.php:37 4632 #: includes/config/wdgpt-config-general-settings.php:377 631 633 msgid "" 632 634 "The maximum number of contexts that the model can use to generate an answer. " … … 648 650 "auf 10 erhöhen." 649 651 650 #: includes/config/wdgpt-config-general-settings.php:38 5652 #: includes/config/wdgpt-config-general-settings.php:388 651 653 msgid "Similarity threshold:" 652 654 msgstr "Ähnlichkeitsschwelle:" 653 655 654 #: includes/config/wdgpt-config-general-settings.php:41 0656 #: includes/config/wdgpt-config-general-settings.php:413 655 657 #, no-php-format 656 658 msgid "" … … 677 679 "auf 10 erhöhen." 678 680 679 #: includes/config/wdgpt-config-general-settings.php:42 1681 #: includes/config/wdgpt-config-general-settings.php:424 680 682 msgid "Precision threshold:" 681 683 msgstr "Präzisionsschwelle:" 682 684 683 #: includes/config/wdgpt-config-general-settings.php:44 6685 #: includes/config/wdgpt-config-general-settings.php:449 684 686 msgid "" 685 687 "The minimum precision required for a context to be considered eligible " … … 698 700 "ausreichend relevant sind." 699 701 700 #: includes/config/wdgpt-config-general-settings.php:4 57702 #: includes/config/wdgpt-config-general-settings.php:460 701 703 msgid "Enable Chatbot Bubble:" 702 704 msgstr "Aktivieren Sie Chatbot Bubble:" 703 705 704 #: includes/config/wdgpt-config-general-settings.php:47 3706 #: includes/config/wdgpt-config-general-settings.php:476 705 707 msgid "Chatbot Bubble Typing Text:" 706 708 msgstr "Chatbot-Blase tippt Text:" 707 709 708 #: includes/config/wdgpt-config-general-settings.php:4 79710 #: includes/config/wdgpt-config-general-settings.php:482 709 711 #: includes/wdgpt-client.php:121 710 712 msgid "Hello, may I help you?" 711 713 msgstr "Hallo, kann ich Ihnen helfen?" 712 714 713 #: includes/config/wdgpt-config-general-settings.php:48 3715 #: includes/config/wdgpt-config-general-settings.php:486 714 716 msgid "" 715 717 "This is the text that will be displayed in the chat bubble above the circle " … … 721 723 "wird die Standardübersetzung verwendet." 722 724 723 #: includes/config/wdgpt-config-general-settings.php:49 4725 #: includes/config/wdgpt-config-general-settings.php:497 724 726 msgid "Greetings Message:" 725 727 msgstr "Grußbotschaft:" 726 728 727 #: includes/config/wdgpt-config-general-settings.php:50 4729 #: includes/config/wdgpt-config-general-settings.php:507 728 730 msgid "" 729 731 "This is the message that will be displayed when the chatbot will be greeting " … … 735 737 "bestimmte Sprache nichts festlegen, wird die Standardübersetzung verwendet." 736 738 737 #: includes/config/wdgpt-config-general-settings.php:51 5739 #: includes/config/wdgpt-config-general-settings.php:518 738 740 #: includes/config/wdgpt-config-reporting-settings.php:255 739 741 msgid "Save Changes" … … 882 884 #: includes/logs/class-wdgpt-error-logs-table.php:76 883 885 #: includes/logs/class-wdgpt-logs-table.php:208 884 #: includes/summaries/class-wdgpt-summaries-table.php: 388886 #: includes/summaries/class-wdgpt-summaries-table.php:404 885 887 msgid "ID" 886 888 msgstr "ID" … … 953 955 954 956 #: includes/summaries/class-wdgpt-summaries-table.php:65 957 #: includes/summaries/class-wdgpt-summaries-table.php:123 955 958 msgid "Generate Embeddings" 956 959 msgstr "Einbettungen generieren" … … 964 967 "bevor Sie Einbettungen erzeugen." 965 968 966 #: includes/summaries/class-wdgpt-summaries-table.php:2 48967 #: includes/summaries/class-wdgpt-summaries-table.php: 295969 #: includes/summaries/class-wdgpt-summaries-table.php:263 970 #: includes/summaries/class-wdgpt-summaries-table.php:310 968 971 msgid "All" 969 972 msgstr "Alle" 970 973 971 #: includes/summaries/class-wdgpt-summaries-table.php:2 66974 #: includes/summaries/class-wdgpt-summaries-table.php:281 972 975 msgid "Search" 973 976 msgstr "Suche" 974 977 975 #: includes/summaries/class-wdgpt-summaries-table.php: 296976 #: includes/summaries/class-wdgpt-summaries-table.php:3 75978 #: includes/summaries/class-wdgpt-summaries-table.php:311 979 #: includes/summaries/class-wdgpt-summaries-table.php:391 977 980 msgid "Active" 978 981 msgstr "Aktiv" 979 982 980 #: includes/summaries/class-wdgpt-summaries-table.php: 297983 #: includes/summaries/class-wdgpt-summaries-table.php:312 981 984 msgid "Inactive" 982 985 msgstr "Inaktiv" 983 986 984 #: includes/summaries/class-wdgpt-summaries-table.php: 298985 #: includes/summaries/class-wdgpt-summaries-table.php:3 73987 #: includes/summaries/class-wdgpt-summaries-table.php:313 988 #: includes/summaries/class-wdgpt-summaries-table.php:389 986 989 msgid "Embeddings" 987 990 msgstr "Einbettungen" 988 991 989 #: includes/summaries/class-wdgpt-summaries-table.php: 299992 #: includes/summaries/class-wdgpt-summaries-table.php:314 990 993 msgid "No Embeddings" 991 994 msgstr "Keine Einbettungen" 992 995 993 #: includes/summaries/class-wdgpt-summaries-table.php:3 00996 #: includes/summaries/class-wdgpt-summaries-table.php:315 994 997 msgid "Up to date" 995 998 msgstr "Aktuell" 996 999 997 #: includes/summaries/class-wdgpt-summaries-table.php:3 011000 #: includes/summaries/class-wdgpt-summaries-table.php:316 998 1001 msgid "Not up to date" 999 1002 msgstr "Nicht aktuell" 1000 1003 1001 #: includes/summaries/class-wdgpt-summaries-table.php:3 321004 #: includes/summaries/class-wdgpt-summaries-table.php:347 1002 1005 msgid "Filter" 1003 1006 msgstr "Filter" 1004 1007 1005 #: includes/summaries/class-wdgpt-summaries-table.php:3 591008 #: includes/summaries/class-wdgpt-summaries-table.php:374 1006 1009 msgid "" 1007 1010 "Embeddings are used to find the most similar posts/pages to the user query. " … … 1016 1019 "\"Einbettungen generieren\"." 1017 1020 1018 #: includes/summaries/class-wdgpt-summaries-table.php:3 621021 #: includes/summaries/class-wdgpt-summaries-table.php:378 1019 1022 msgid "Title" 1020 1023 msgstr "Titel" 1021 1024 1022 #: includes/summaries/class-wdgpt-summaries-table.php:3 661025 #: includes/summaries/class-wdgpt-summaries-table.php:382 1023 1026 msgid "Language" 1024 1027 msgstr "Sprache" 1025 1028 1026 #: includes/summaries/class-wdgpt-summaries-table.php:3 721029 #: includes/summaries/class-wdgpt-summaries-table.php:388 1027 1030 msgid "Last Post Modification" 1028 1031 msgstr "Letzter Beitrag Modifikation" 1029 1032 1030 #: includes/summaries/class-wdgpt-summaries-table.php:3 741033 #: includes/summaries/class-wdgpt-summaries-table.php:390 1031 1034 msgid "Last Embeddings Generation" 1032 1035 msgstr "Letzte Einbettungsgeneration" 1033 1036 1034 #: includes/summaries/class-wdgpt-summaries-table.php: 3891037 #: includes/summaries/class-wdgpt-summaries-table.php:405 1035 1038 msgid "Content" 1036 1039 msgstr "Inhalt" 1040 1041 #: includes/summaries/class-wdgpt-summaries-table.php:622 1042 #, php-format 1043 msgid "%d items activated. %d items skipped (no embeddings)." 1044 msgstr "%d Elemente aktiviert. %d Elemente übersprungen (keine Einbettungen)." 1045 1046 #: includes/summaries/class-wdgpt-summaries-table.php:640 1047 #, php-format 1048 msgid "%d items deactivated. %d items skipped (not active)." 1049 msgstr "%d deaktivierte Einträge. %d Positionen übersprungen (nicht aktiv)." 1050 1051 #: includes/summaries/class-wdgpt-summaries-table.php:677 1052 #, php-format 1053 msgid "Embeddings generation started for %d items. %d items skipped." 1054 msgstr "" 1055 "Erzeugung von Einbettungen für %d Elemente gestartet. %d Elemente " 1056 "übersprungen." 1037 1057 1038 1058 #: includes/summaries/wdgpt-config-summary.php:24 -
smartsearchwp/trunk/languages/webdigit-chatbot-en_GB.po
r3199870 r3239989 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: webdigit-chatbot\n"4 "POT-Creation-Date: 202 4-11-30 12:11+0100\n"5 "PO-Revision-Date: 202 4-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" 6 6 "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" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=UTF-8\n" … … 12 12 "X-Generator: Poedit 3.5\n" 13 13 "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" 15 20 "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" 17 24 18 25 #: class-wdgpt-chatbot-initializer.php:229 … … 33 40 34 41 #: class-wdgpt-chatbot-initializer.php:233 35 #: class-wdgpt-chatbot-initializer.php:28 342 #: class-wdgpt-chatbot-initializer.php:284 36 43 #: includes/summaries/class-wdgpt-summaries-table.php:65 37 44 msgid "Regenerate Embeddings" … … 39 46 40 47 #: class-wdgpt-chatbot-initializer.php:234 41 #: class-wdgpt-chatbot-initializer.php:28 448 #: class-wdgpt-chatbot-initializer.php:285 42 49 #: includes/addons/wdgpt-addons-catalog-settings.php:207 43 50 #: includes/summaries/class-wdgpt-summaries-table.php:85 51 #: includes/summaries/class-wdgpt-summaries-table.php:121 44 52 msgid "Activate" 45 53 msgstr "Activate" 46 54 47 55 #: class-wdgpt-chatbot-initializer.php:235 48 #: class-wdgpt-chatbot-initializer.php:28 556 #: class-wdgpt-chatbot-initializer.php:286 49 57 #: includes/addons/wdgpt-addons-catalog-settings.php:205 50 58 #: includes/summaries/class-wdgpt-summaries-table.php:81 59 #: includes/summaries/class-wdgpt-summaries-table.php:122 51 60 msgid "Deactivate" 52 61 msgstr "Deactivate" … … 57 66 58 67 #: class-wdgpt-chatbot-initializer.php:237 59 #: includes/config/wdgpt-config-general-settings.php:50 068 #: includes/config/wdgpt-config-general-settings.php:503 60 69 #: includes/wdgpt-client.php:141 61 70 msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?" 62 71 msgstr "Hello, I am SmartSearchWP, how can I help you?" 63 72 64 #: class-wdgpt-chatbot-initializer.php:28 6includes/wdgpt-config.php:2973 #: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29 65 74 msgid "Please enter your api key!" 66 75 msgstr "Please enter your API key!" 67 76 68 #: class-wdgpt-chatbot-initializer.php:28 777 #: class-wdgpt-chatbot-initializer.php:288 69 78 msgid "" 70 79 "Your api key is invalid! If you think this is a mistake, please check your " … … 76 85 "having issues, or is down." 77 86 78 #: class-wdgpt-chatbot-initializer.php:28 887 #: class-wdgpt-chatbot-initializer.php:289 79 88 msgid "Your api key is valid! Don't forget to save your changes." 80 89 msgstr "Your api key is valid! Don't forget to save your changes." 81 90 82 #: class-wdgpt-chatbot-initializer.php:2 8983 #: includes/config/wdgpt-config-general-settings.php:25 091 #: class-wdgpt-chatbot-initializer.php:290 92 #: includes/config/wdgpt-config-general-settings.php:253 84 93 msgid "" 85 94 "The previously selected model is not available anymore with your current api " … … 91 100 "Your previous model was: " 92 101 93 #: class-wdgpt-chatbot-initializer.php:29 0102 #: class-wdgpt-chatbot-initializer.php:291 94 103 #: includes/addons/wdgpt-addons-license-settings.php:151 95 104 msgid "You currently have a free license key." 96 105 msgstr "You currently have a free license key." 97 106 98 #: class-wdgpt-chatbot-initializer.php:29 1107 #: class-wdgpt-chatbot-initializer.php:292 99 108 msgid "" 100 109 "There was an issue retrieving your free license key. Please try again later." … … 102 111 "There was an issue retrieving your free license key. Please try again later." 103 112 104 #: class-wdgpt-chatbot-initializer.php:29 2113 #: class-wdgpt-chatbot-initializer.php:293 105 114 #: includes/addons/wdgpt-addons-license-settings.php:63 106 115 msgid "" … … 111 120 "the current site. You can now use the premium features." 112 121 113 #: class-wdgpt-chatbot-initializer.php:29 3122 #: class-wdgpt-chatbot-initializer.php:294 114 123 #: includes/addons/wdgpt-addons-license-settings.php:58 115 124 msgid "" … … 120 129 "key." 121 130 122 #: class-wdgpt-chatbot-initializer.php:29 4131 #: class-wdgpt-chatbot-initializer.php:295 123 132 msgid "" 124 133 "Your SmartSearchWP Premium license was already registered with the current " … … 128 137 "site. You can use the premium features." 129 138 130 #: class-wdgpt-chatbot-initializer.php:29 5139 #: class-wdgpt-chatbot-initializer.php:296 131 140 msgid "" 132 141 "Your SmartSearchWP Premium license was already registered with another site. " … … 138 147 "should not happen." 139 148 140 #: class-wdgpt-chatbot-initializer.php:29 6149 #: class-wdgpt-chatbot-initializer.php:297 141 150 msgid "" 142 151 "There was an issue registering your SmartSearchWP Premium license with the " … … 148 157 "persists." 149 158 150 #: class-wdgpt-chatbot-initializer.php:29 7159 #: class-wdgpt-chatbot-initializer.php:298 151 160 msgid "" 152 161 "There was an issue retrieving the expiry date of your SmartSearchWP Premium " … … 156 165 "license. Please try again later, or contact support if the problem persists." 157 166 158 #: class-wdgpt-chatbot-initializer.php:29 8167 #: class-wdgpt-chatbot-initializer.php:299 159 168 msgid "" 160 169 "Your SmartSearchWP Premium license has expired. Please renew it to continue " … … 164 173 "using the premium features, then verify it again." 165 174 166 #: class-wdgpt-chatbot-initializer.php:356167 175 #: class-wdgpt-chatbot-initializer.php:357 176 #: class-wdgpt-chatbot-initializer.php:358 168 177 msgid "Settings" 169 178 msgstr "Settings" 170 179 171 #: class-wdgpt-chatbot-initializer.php:364172 180 #: class-wdgpt-chatbot-initializer.php:365 181 #: class-wdgpt-chatbot-initializer.php:366 173 182 msgid "Summary_title" 174 183 msgstr "Contexts" 175 184 176 #: class-wdgpt-chatbot-initializer.php:372177 185 #: class-wdgpt-chatbot-initializer.php:373 186 #: class-wdgpt-chatbot-initializer.php:374 178 187 #: includes/logs/wdgpt-config-logs.php:26 179 188 msgid "Chat Logs" 180 189 msgstr "Chat Logs" 181 190 182 #: class-wdgpt-chatbot-initializer.php:381183 191 #: class-wdgpt-chatbot-initializer.php:382 192 #: class-wdgpt-chatbot-initializer.php:383 184 193 #: includes/logs/wdgpt-config-error-logs.php:26 185 194 msgid "Error Logs" 186 195 msgstr "Error Logs" 187 196 188 #: class-wdgpt-chatbot-initializer.php:390189 197 #: class-wdgpt-chatbot-initializer.php:391 198 #: class-wdgpt-chatbot-initializer.php:392 190 199 msgid "Addons" 191 200 msgstr "Addons" … … 361 370 "For anything related to the SmartSearchWP Premium version, please visit" 362 371 372 #. Plugin Name of the plugin/theme 363 373 #: includes/addons/wdgpt-addons-license-settings.php:31 364 374 msgid "SmartSearchWP" … … 452 462 msgstr "Get your free license" 453 463 454 #: includes/addons/wdgpt-addons.php:2 3464 #: includes/addons/wdgpt-addons.php:26 455 465 msgid "Addons manager" 456 466 msgstr "Addons manager" 457 467 458 #: includes/addons/wdgpt-addons.php:2 4468 #: includes/addons/wdgpt-addons.php:27 459 469 msgid "License settings" 460 470 msgstr "License settings" … … 529 539 "enable the allow_url_fopen option in your php.ini file." 530 540 531 #: includes/config/wdgpt-config-general-settings.php:14 5541 #: includes/config/wdgpt-config-general-settings.php:148 532 542 msgid "Enable Chatbot:" 533 543 msgstr "Enable Chatbot:" 534 544 535 #: includes/config/wdgpt-config-general-settings.php:16 1545 #: includes/config/wdgpt-config-general-settings.php:164 536 546 msgid "OpenAi API Key:" 537 547 msgstr "OpenAi API Key:" 538 548 539 #: includes/config/wdgpt-config-general-settings.php:17 1549 #: includes/config/wdgpt-config-general-settings.php:174 540 550 msgid "Validate Key" 541 551 msgstr "Validate Key" 542 552 543 #: includes/config/wdgpt-config-general-settings.php:18 5553 #: includes/config/wdgpt-config-general-settings.php:188 544 554 msgid "You can get your api key" 545 555 msgstr "You can get your API key" 546 556 547 #: includes/config/wdgpt-config-general-settings.php:19 2557 #: includes/config/wdgpt-config-general-settings.php:195 548 558 msgid "here" 549 559 msgstr "here" 550 560 551 #: includes/config/wdgpt-config-general-settings.php:20 4561 #: includes/config/wdgpt-config-general-settings.php:207 552 562 msgid "ChatGPT Model:" 553 563 msgstr "ChatGPT Model:" 554 564 555 #: includes/config/wdgpt-config-general-settings.php:26 1565 #: includes/config/wdgpt-config-general-settings.php:264 556 566 msgid "" 557 567 "If you want to use gpt-4o, you must subscribe to chatgpt plus. The model " … … 561 571 "gpt4-o is a better version of gpt-4, with faster speed and lower cost." 562 572 563 #: includes/config/wdgpt-config-general-settings.php:27 2573 #: includes/config/wdgpt-config-general-settings.php:275 564 574 msgid "Chatbot Name:" 565 575 msgstr "Chatbot Name:" 566 576 567 #: includes/config/wdgpt-config-general-settings.php:28 3577 #: includes/config/wdgpt-config-general-settings.php:286 568 578 msgid "Chatbot Logo:" 569 579 msgstr "Chatbot Logo:" 570 580 571 #: includes/config/wdgpt-config-general-settings.php:3 19581 #: includes/config/wdgpt-config-general-settings.php:322 572 582 msgid "Temperature:" 573 583 msgstr "Temperature:" 574 584 575 #: includes/config/wdgpt-config-general-settings.php:3 39585 #: includes/config/wdgpt-config-general-settings.php:342 576 586 msgid "" 577 587 "The temperature parameter influences the level of randomness in the output " … … 587 597 "its outputs more unpredictable." 588 598 589 #: includes/config/wdgpt-config-general-settings.php:35 0599 #: includes/config/wdgpt-config-general-settings.php:353 590 600 msgid "Max used contexts:" 591 601 msgstr "Max. used contexts:" 592 602 593 #: includes/config/wdgpt-config-general-settings.php:37 4603 #: includes/config/wdgpt-config-general-settings.php:377 594 604 msgid "" 595 605 "The maximum number of contexts that the model can use to generate an answer. " … … 609 619 "creativity, you can increase this value to 10." 610 620 611 #: includes/config/wdgpt-config-general-settings.php:38 5621 #: includes/config/wdgpt-config-general-settings.php:388 612 622 msgid "Similarity threshold:" 613 623 msgstr "Similarity threshold:" 614 624 615 #: includes/config/wdgpt-config-general-settings.php:41 0625 #: includes/config/wdgpt-config-general-settings.php:413 616 626 #, no-php-format 617 627 msgid "" … … 636 646 "creativity, you can increase this value to 10." 637 647 638 #: includes/config/wdgpt-config-general-settings.php:42 1648 #: includes/config/wdgpt-config-general-settings.php:424 639 649 msgid "Precision threshold:" 640 650 msgstr "Precision threshold:" 641 651 642 #: includes/config/wdgpt-config-general-settings.php:44 6652 #: includes/config/wdgpt-config-general-settings.php:449 643 653 msgid "" 644 654 "The minimum precision required for a context to be considered eligible " … … 656 666 "are not sufficiently relevant." 657 667 658 #: includes/config/wdgpt-config-general-settings.php:4 57668 #: includes/config/wdgpt-config-general-settings.php:460 659 669 msgid "Enable Chatbot Bubble:" 660 670 msgstr "Enable Chatbot Bubble:" 661 671 662 #: includes/config/wdgpt-config-general-settings.php:47 3672 #: includes/config/wdgpt-config-general-settings.php:476 663 673 msgid "Chatbot Bubble Typing Text:" 664 674 msgstr "Chatbot Bubble Typing Text:" 665 675 666 #: includes/config/wdgpt-config-general-settings.php:4 79676 #: includes/config/wdgpt-config-general-settings.php:482 667 677 #: includes/wdgpt-client.php:121 668 678 msgid "Hello, may I help you?" 669 679 msgstr "Hello, may I help you?" 670 680 671 #: includes/config/wdgpt-config-general-settings.php:48 3681 #: includes/config/wdgpt-config-general-settings.php:486 672 682 msgid "" 673 683 "This is the text that will be displayed in the chat bubble above the circle " … … 679 689 "default translation will be used." 680 690 681 #: includes/config/wdgpt-config-general-settings.php:49 4691 #: includes/config/wdgpt-config-general-settings.php:497 682 692 msgid "Greetings Message:" 683 693 msgstr "Greetings Message:" 684 694 685 #: includes/config/wdgpt-config-general-settings.php:50 4695 #: includes/config/wdgpt-config-general-settings.php:507 686 696 msgid "" 687 697 "This is the message that will be displayed when the chatbot will be greeting " … … 693 703 "in a certain language, the default translation will be used." 694 704 695 #: includes/config/wdgpt-config-general-settings.php:51 5705 #: includes/config/wdgpt-config-general-settings.php:518 696 706 #: includes/config/wdgpt-config-reporting-settings.php:255 697 707 msgid "Save Changes" … … 835 845 #: includes/logs/class-wdgpt-error-logs-table.php:76 836 846 #: includes/logs/class-wdgpt-logs-table.php:208 837 #: includes/summaries/class-wdgpt-summaries-table.php: 388847 #: includes/summaries/class-wdgpt-summaries-table.php:404 838 848 msgid "ID" 839 849 msgstr "ID" … … 891 901 892 902 #. translators: %d: number of months 903 #: includes/logs/wdgpt-config-error-logs.php:36 893 904 #: includes/logs/wdgpt-config-logs.php:36 894 905 #, php-format … … 905 916 906 917 #: includes/summaries/class-wdgpt-summaries-table.php:65 918 #: includes/summaries/class-wdgpt-summaries-table.php:123 907 919 msgid "Generate Embeddings" 908 920 msgstr "Training AI" … … 916 928 "embeddings." 917 929 918 #: includes/summaries/class-wdgpt-summaries-table.php:2 48919 #: includes/summaries/class-wdgpt-summaries-table.php: 295930 #: includes/summaries/class-wdgpt-summaries-table.php:263 931 #: includes/summaries/class-wdgpt-summaries-table.php:310 920 932 msgid "All" 921 933 msgstr "All" 922 934 923 #: includes/summaries/class-wdgpt-summaries-table.php:2 66935 #: includes/summaries/class-wdgpt-summaries-table.php:281 924 936 msgid "Search" 925 937 msgstr "Search" 926 938 927 #: includes/summaries/class-wdgpt-summaries-table.php: 296928 #: includes/summaries/class-wdgpt-summaries-table.php:3 75939 #: includes/summaries/class-wdgpt-summaries-table.php:311 940 #: includes/summaries/class-wdgpt-summaries-table.php:391 929 941 msgid "Active" 930 942 msgstr "Active" 931 943 932 #: includes/summaries/class-wdgpt-summaries-table.php: 297944 #: includes/summaries/class-wdgpt-summaries-table.php:312 933 945 msgid "Inactive" 934 946 msgstr "Inactive" 935 947 936 #: includes/summaries/class-wdgpt-summaries-table.php: 298937 #: includes/summaries/class-wdgpt-summaries-table.php:3 73948 #: includes/summaries/class-wdgpt-summaries-table.php:313 949 #: includes/summaries/class-wdgpt-summaries-table.php:389 938 950 msgid "Embeddings" 939 951 msgstr "Embeddings" 940 952 941 #: includes/summaries/class-wdgpt-summaries-table.php: 299953 #: includes/summaries/class-wdgpt-summaries-table.php:314 942 954 msgid "No Embeddings" 943 955 msgstr "No Embeddings" 944 956 945 #: includes/summaries/class-wdgpt-summaries-table.php:3 00957 #: includes/summaries/class-wdgpt-summaries-table.php:315 946 958 msgid "Up to date" 947 959 msgstr "Up to date" 948 960 949 #: includes/summaries/class-wdgpt-summaries-table.php:3 01961 #: includes/summaries/class-wdgpt-summaries-table.php:316 950 962 msgid "Not up to date" 951 963 msgstr "Not up to date" 952 964 953 #: includes/summaries/class-wdgpt-summaries-table.php:3 32965 #: includes/summaries/class-wdgpt-summaries-table.php:347 954 966 msgid "Filter" 955 967 msgstr "Filter" 956 968 957 #: includes/summaries/class-wdgpt-summaries-table.php:3 59969 #: includes/summaries/class-wdgpt-summaries-table.php:374 958 970 msgid "" 959 971 "Embeddings are used to find the most similar posts/pages to the user query. " … … 966 978 "\"Generate Embeddings\" link." 967 979 968 #: includes/summaries/class-wdgpt-summaries-table.php:3 62980 #: includes/summaries/class-wdgpt-summaries-table.php:378 969 981 msgid "Title" 970 982 msgstr "Title" 971 983 972 #: includes/summaries/class-wdgpt-summaries-table.php:3 66984 #: includes/summaries/class-wdgpt-summaries-table.php:382 973 985 msgid "Language" 974 986 msgstr "Language" 975 987 976 #: includes/summaries/class-wdgpt-summaries-table.php:3 72988 #: includes/summaries/class-wdgpt-summaries-table.php:388 977 989 msgid "Last Post Modification" 978 990 msgstr "Latest content update" 979 991 980 #: includes/summaries/class-wdgpt-summaries-table.php:3 74992 #: includes/summaries/class-wdgpt-summaries-table.php:390 981 993 msgid "Last Embeddings Generation" 982 994 msgstr "Latest generation of embeddings" 983 995 984 #: includes/summaries/class-wdgpt-summaries-table.php: 389996 #: includes/summaries/class-wdgpt-summaries-table.php:405 985 997 msgid "Content" 986 998 msgstr "Content" 999 1000 #: includes/summaries/class-wdgpt-summaries-table.php:622 1001 #, php-format 1002 msgid "%d items activated. %d items skipped (no embeddings)." 1003 msgstr "%d items activated. %d items skipped (no embeddings)." 1004 1005 #: includes/summaries/class-wdgpt-summaries-table.php:640 1006 #, php-format 1007 msgid "%d items deactivated. %d items skipped (not active)." 1008 msgstr "%d items deactivated. %d items skipped (not active)." 1009 1010 #: includes/summaries/class-wdgpt-summaries-table.php:677 1011 #, php-format 1012 msgid "Embeddings generation started for %d items. %d items skipped." 1013 msgstr "Embeddings generation started for %d items. %d items skipped." 987 1014 988 1015 #: includes/summaries/wdgpt-config-summary.php:24 … … 1120 1147 "The plugin SmartSearchWP needs to update the database. Please click on the " 1121 1148 "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 1152 msgid "https://www.smartsearchwp.com/" 1153 msgstr "https://www.smartsearchwp.com/" 1154 1155 #. Description of the plugin/theme 1156 msgid "" 1157 "A chatbot that helps users navigate your website and find what they're " 1158 "looking for." 1159 msgstr "" 1160 "A chatbot that helps users navigate your website and find what they're " 1161 "looking for." 1162 1163 #. Author of the plugin/theme 1164 msgid "Webdigit" 1165 msgstr "Webdigit" 1122 1166 1123 1167 #~ msgid "Posts" -
smartsearchwp/trunk/languages/webdigit-chatbot-es_ES.po
r3237420 r3239989 2 2 msgstr "" 3 3 "Project-Id-Version: SmartSearchWP\n" 4 "POT-Creation-Date: 202 4-12-02 07:52+0100\n"5 "PO-Revision-Date: 202 4-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" 6 6 "Last-Translator: JC <[email protected]>\n" 7 7 "Language-Team: JC <[email protected]>\n" … … 43 43 44 44 #: class-wdgpt-chatbot-initializer.php:233 45 #: class-wdgpt-chatbot-initializer.php:28 345 #: class-wdgpt-chatbot-initializer.php:284 46 46 #: includes/summaries/class-wdgpt-summaries-table.php:65 47 47 msgid "Regenerate Embeddings" … … 49 49 50 50 #: class-wdgpt-chatbot-initializer.php:234 51 #: class-wdgpt-chatbot-initializer.php:28 451 #: class-wdgpt-chatbot-initializer.php:285 52 52 #: includes/addons/wdgpt-addons-catalog-settings.php:207 53 53 #: includes/summaries/class-wdgpt-summaries-table.php:85 54 #: includes/summaries/class-wdgpt-summaries-table.php:121 54 55 msgid "Activate" 55 56 msgstr "Activar" 56 57 57 58 #: class-wdgpt-chatbot-initializer.php:235 58 #: class-wdgpt-chatbot-initializer.php:28 559 #: class-wdgpt-chatbot-initializer.php:286 59 60 #: includes/addons/wdgpt-addons-catalog-settings.php:205 60 61 #: includes/summaries/class-wdgpt-summaries-table.php:81 62 #: includes/summaries/class-wdgpt-summaries-table.php:122 61 63 msgid "Deactivate" 62 64 msgstr "Desactivar" … … 67 69 68 70 #: class-wdgpt-chatbot-initializer.php:237 69 #: includes/config/wdgpt-config-general-settings.php:50 071 #: includes/config/wdgpt-config-general-settings.php:503 70 72 #: includes/wdgpt-client.php:141 71 73 msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?" 72 74 msgstr "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?" 73 75 74 #: class-wdgpt-chatbot-initializer.php:28 6includes/wdgpt-config.php:2976 #: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29 75 77 msgid "Please enter your api key!" 76 78 msgstr "Por favor, introduzca su clave api" 77 79 78 #: class-wdgpt-chatbot-initializer.php:28 780 #: class-wdgpt-chatbot-initializer.php:288 79 81 msgid "" 80 82 "Your api key is invalid! If you think this is a mistake, please check your " … … 86 88 "OpenAI tiene problemas o no funciona." 87 89 88 #: class-wdgpt-chatbot-initializer.php:28 890 #: class-wdgpt-chatbot-initializer.php:289 89 91 msgid "Your api key is valid! Don't forget to save your changes." 90 92 msgstr "¡Tu clave api es válida! No olvides guardar los cambios." 91 93 92 #: class-wdgpt-chatbot-initializer.php:2 8993 #: includes/config/wdgpt-config-general-settings.php:25 094 #: class-wdgpt-chatbot-initializer.php:290 95 #: includes/config/wdgpt-config-general-settings.php:253 94 96 msgid "" 95 97 "The previously selected model is not available anymore with your current api " … … 101 103 "un nuevo modelo. Su modelo anterior era:" 102 104 103 #: class-wdgpt-chatbot-initializer.php:29 0105 #: class-wdgpt-chatbot-initializer.php:291 104 106 #: includes/addons/wdgpt-addons-license-settings.php:151 105 107 msgid "You currently have a free license key." 106 108 msgstr "Actualmente dispone de una clave de licencia gratuita." 107 109 108 #: class-wdgpt-chatbot-initializer.php:29 1110 #: class-wdgpt-chatbot-initializer.php:292 109 111 msgid "" 110 112 "There was an issue retrieving your free license key. Please try again later." … … 113 115 "Vuelva a intentarlo más tarde." 114 116 115 #: class-wdgpt-chatbot-initializer.php:29 2117 #: class-wdgpt-chatbot-initializer.php:293 116 118 #: includes/addons/wdgpt-addons-license-settings.php:63 117 119 msgid "" … … 122 124 "sitio actual. Ahora puede utilizar las funciones Premium." 123 125 124 #: class-wdgpt-chatbot-initializer.php:29 3126 #: class-wdgpt-chatbot-initializer.php:294 125 127 #: includes/addons/wdgpt-addons-license-settings.php:58 126 128 msgid "" … … 131 133 "su clave de licencia." 132 134 133 #: class-wdgpt-chatbot-initializer.php:29 4135 #: class-wdgpt-chatbot-initializer.php:295 134 136 msgid "" 135 137 "Your SmartSearchWP Premium license was already registered with the current " … … 139 141 "Puede utilizar las funciones Premium." 140 142 141 #: class-wdgpt-chatbot-initializer.php:29 5143 #: class-wdgpt-chatbot-initializer.php:296 142 144 msgid "" 143 145 "Your SmartSearchWP Premium license was already registered with another site. " … … 149 151 "no debería ocurrir." 150 152 151 #: class-wdgpt-chatbot-initializer.php:29 6153 #: class-wdgpt-chatbot-initializer.php:297 152 154 msgid "" 153 155 "There was an issue registering your SmartSearchWP Premium license with the " … … 159 161 "de asistencia si el problema persiste." 160 162 161 #: class-wdgpt-chatbot-initializer.php:29 7163 #: class-wdgpt-chatbot-initializer.php:298 162 164 msgid "" 163 165 "There was an issue retrieving the expiry date of your SmartSearchWP Premium " … … 168 170 "contacto con el servicio de asistencia si el problema persiste." 169 171 170 #: class-wdgpt-chatbot-initializer.php:29 8172 #: class-wdgpt-chatbot-initializer.php:299 171 173 msgid "" 172 174 "Your SmartSearchWP Premium license has expired. Please renew it to continue " … … 177 179 "nuevo." 178 180 179 #: class-wdgpt-chatbot-initializer.php:356180 181 #: class-wdgpt-chatbot-initializer.php:357 182 #: class-wdgpt-chatbot-initializer.php:358 181 183 msgid "Settings" 182 184 msgstr "Ajustes" 183 185 184 #: class-wdgpt-chatbot-initializer.php:364185 186 #: class-wdgpt-chatbot-initializer.php:365 187 #: class-wdgpt-chatbot-initializer.php:366 186 188 msgid "Summary_title" 187 189 msgstr "Título_resumen" 188 190 189 #: class-wdgpt-chatbot-initializer.php:372190 191 #: class-wdgpt-chatbot-initializer.php:373 192 #: class-wdgpt-chatbot-initializer.php:374 191 193 #: includes/logs/wdgpt-config-logs.php:26 192 194 msgid "Chat Logs" 193 195 msgstr "Registros de chat" 194 196 195 #: class-wdgpt-chatbot-initializer.php:381196 197 #: class-wdgpt-chatbot-initializer.php:382 198 #: class-wdgpt-chatbot-initializer.php:383 197 199 #: includes/logs/wdgpt-config-error-logs.php:26 198 200 msgid "Error Logs" 199 201 msgstr "Registros de errores" 200 202 201 #: class-wdgpt-chatbot-initializer.php:390202 203 #: class-wdgpt-chatbot-initializer.php:391 204 #: class-wdgpt-chatbot-initializer.php:392 203 205 msgid "Addons" 204 206 msgstr "Complementos" 205 207 206 208 #. translators: %s: required version of the plugin 207 #: includes/addons/class-wdgpt-addons-manager.php:1 26209 #: includes/addons/class-wdgpt-addons-manager.php:100 208 210 #, php-format 209 211 msgid "This addon will require at least version %s of the plugin to function." … … 558 560 "ini." 559 561 560 #: includes/config/wdgpt-config-general-settings.php:14 5562 #: includes/config/wdgpt-config-general-settings.php:148 561 563 msgid "Enable Chatbot:" 562 564 msgstr "Habilitar Chatbot:" 563 565 564 #: includes/config/wdgpt-config-general-settings.php:16 1566 #: includes/config/wdgpt-config-general-settings.php:164 565 567 msgid "OpenAi API Key:" 566 568 msgstr "Clave API OpenAi:" 567 569 568 #: includes/config/wdgpt-config-general-settings.php:17 1570 #: includes/config/wdgpt-config-general-settings.php:174 569 571 msgid "Validate Key" 570 572 msgstr "Validar Clave" 571 573 572 #: includes/config/wdgpt-config-general-settings.php:18 5574 #: includes/config/wdgpt-config-general-settings.php:188 573 575 msgid "You can get your api key" 574 576 msgstr "Puede obtener su clave api" 575 577 576 #: includes/config/wdgpt-config-general-settings.php:19 2578 #: includes/config/wdgpt-config-general-settings.php:195 577 579 msgid "here" 578 580 msgstr "aquí" 579 581 580 #: includes/config/wdgpt-config-general-settings.php:20 4582 #: includes/config/wdgpt-config-general-settings.php:207 581 583 msgid "ChatGPT Model:" 582 584 msgstr "Modelo ChatGPT:" 583 585 584 #: includes/config/wdgpt-config-general-settings.php:26 1586 #: includes/config/wdgpt-config-general-settings.php:264 585 587 msgid "" 586 588 "If you want to use gpt-4o, you must subscribe to chatgpt plus. The model " … … 590 592 "es una versión mejorada de gpt-4, con mayor velocidad y menor coste." 591 593 592 #: includes/config/wdgpt-config-general-settings.php:27 2594 #: includes/config/wdgpt-config-general-settings.php:275 593 595 msgid "Chatbot Name:" 594 596 msgstr "Nombre del chatbot:" 595 597 596 #: includes/config/wdgpt-config-general-settings.php:28 3598 #: includes/config/wdgpt-config-general-settings.php:286 597 599 msgid "Chatbot Logo:" 598 600 msgstr "Logotipo Chatbot:" 599 601 600 #: includes/config/wdgpt-config-general-settings.php:3 19602 #: includes/config/wdgpt-config-general-settings.php:322 601 603 msgid "Temperature:" 602 604 msgstr "Temperatura:" 603 605 604 #: includes/config/wdgpt-config-general-settings.php:3 39606 #: includes/config/wdgpt-config-general-settings.php:342 605 607 msgid "" 606 608 "The temperature parameter influences the level of randomness in the output " … … 616 618 "hace que sus resultados sean más impredecibles." 617 619 618 #: includes/config/wdgpt-config-general-settings.php:35 0620 #: includes/config/wdgpt-config-general-settings.php:353 619 621 msgid "Max used contexts:" 620 622 msgstr "Máximo de contextos utilizados:" 621 623 622 #: includes/config/wdgpt-config-general-settings.php:37 4624 #: includes/config/wdgpt-config-general-settings.php:377 623 625 msgid "" 624 626 "The maximum number of contexts that the model can use to generate an answer. " … … 638 640 "dar prioridad a la creatividad, puede aumentar este valor a 10." 639 641 640 #: includes/config/wdgpt-config-general-settings.php:38 5642 #: includes/config/wdgpt-config-general-settings.php:388 641 643 msgid "Similarity threshold:" 642 644 msgstr "Umbral de similitud:" 643 645 644 #: includes/config/wdgpt-config-general-settings.php:41 0646 #: includes/config/wdgpt-config-general-settings.php:413 645 647 #, no-php-format 646 648 msgid "" … … 665 667 "aumentar este valor a 10." 666 668 667 #: includes/config/wdgpt-config-general-settings.php:42 1669 #: includes/config/wdgpt-config-general-settings.php:424 668 670 msgid "Precision threshold:" 669 671 msgstr "Umbral de precisión:" 670 672 671 #: includes/config/wdgpt-config-general-settings.php:44 6673 #: includes/config/wdgpt-config-general-settings.php:449 672 674 msgid "" 673 675 "The minimum precision required for a context to be considered eligible " … … 685 687 "si el contexto o la pregunta no son suficientemente relevantes." 686 688 687 #: includes/config/wdgpt-config-general-settings.php:4 57689 #: includes/config/wdgpt-config-general-settings.php:460 688 690 msgid "Enable Chatbot Bubble:" 689 691 msgstr "Activar Chatbot Bubble:" 690 692 691 #: includes/config/wdgpt-config-general-settings.php:47 3693 #: includes/config/wdgpt-config-general-settings.php:476 692 694 msgid "Chatbot Bubble Typing Text:" 693 695 msgstr "Burbuja de chatbot escribiendo texto:" 694 696 695 #: includes/config/wdgpt-config-general-settings.php:4 79697 #: includes/config/wdgpt-config-general-settings.php:482 696 698 #: includes/wdgpt-client.php:121 697 699 msgid "Hello, may I help you?" 698 700 msgstr "Hola, ¿puedo ayudarle?" 699 701 700 #: includes/config/wdgpt-config-general-settings.php:48 3702 #: includes/config/wdgpt-config-general-settings.php:486 701 703 msgid "" 702 704 "This is the text that will be displayed in the chat bubble above the circle " … … 708 710 "utilizará la traducción por defecto." 709 711 710 #: includes/config/wdgpt-config-general-settings.php:49 4712 #: includes/config/wdgpt-config-general-settings.php:497 711 713 msgid "Greetings Message:" 712 714 msgstr "Saludos Mensaje:" 713 715 714 #: includes/config/wdgpt-config-general-settings.php:50 4716 #: includes/config/wdgpt-config-general-settings.php:507 715 717 msgid "" 716 718 "This is the message that will be displayed when the chatbot will be greeting " … … 722 724 "determinado, se utilizará la traducción por defecto." 723 725 724 #: includes/config/wdgpt-config-general-settings.php:51 5726 #: includes/config/wdgpt-config-general-settings.php:518 725 727 #: includes/config/wdgpt-config-reporting-settings.php:255 726 728 msgid "Save Changes" … … 868 870 #: includes/logs/class-wdgpt-error-logs-table.php:76 869 871 #: includes/logs/class-wdgpt-logs-table.php:208 870 #: includes/summaries/class-wdgpt-summaries-table.php: 388872 #: includes/summaries/class-wdgpt-summaries-table.php:404 871 873 msgid "ID" 872 874 msgstr "ID" … … 939 941 940 942 #: includes/summaries/class-wdgpt-summaries-table.php:65 943 #: includes/summaries/class-wdgpt-summaries-table.php:123 941 944 msgid "Generate Embeddings" 942 945 msgstr "Generar incrustaciones" … … 950 953 "de generar incrustaciones." 951 954 952 #: includes/summaries/class-wdgpt-summaries-table.php:2 48953 #: includes/summaries/class-wdgpt-summaries-table.php: 295955 #: includes/summaries/class-wdgpt-summaries-table.php:263 956 #: includes/summaries/class-wdgpt-summaries-table.php:310 954 957 msgid "All" 955 958 msgstr "Todo" 956 959 957 #: includes/summaries/class-wdgpt-summaries-table.php:2 66960 #: includes/summaries/class-wdgpt-summaries-table.php:281 958 961 msgid "Search" 959 962 msgstr "Buscar" 960 963 961 #: includes/summaries/class-wdgpt-summaries-table.php: 296962 #: includes/summaries/class-wdgpt-summaries-table.php:3 75964 #: includes/summaries/class-wdgpt-summaries-table.php:311 965 #: includes/summaries/class-wdgpt-summaries-table.php:391 963 966 msgid "Active" 964 967 msgstr "Activo" 965 968 966 #: includes/summaries/class-wdgpt-summaries-table.php: 297969 #: includes/summaries/class-wdgpt-summaries-table.php:312 967 970 msgid "Inactive" 968 971 msgstr "Inactivo" 969 972 970 #: includes/summaries/class-wdgpt-summaries-table.php: 298971 #: includes/summaries/class-wdgpt-summaries-table.php:3 73973 #: includes/summaries/class-wdgpt-summaries-table.php:313 974 #: includes/summaries/class-wdgpt-summaries-table.php:389 972 975 msgid "Embeddings" 973 976 msgstr "Incrustaciones" 974 977 975 #: includes/summaries/class-wdgpt-summaries-table.php: 299978 #: includes/summaries/class-wdgpt-summaries-table.php:314 976 979 msgid "No Embeddings" 977 980 msgstr "Sin incrustaciones" 978 981 979 #: includes/summaries/class-wdgpt-summaries-table.php:3 00982 #: includes/summaries/class-wdgpt-summaries-table.php:315 980 983 msgid "Up to date" 981 984 msgstr "Actualizado" 982 985 983 #: includes/summaries/class-wdgpt-summaries-table.php:3 01986 #: includes/summaries/class-wdgpt-summaries-table.php:316 984 987 msgid "Not up to date" 985 988 msgstr "No actualizado" 986 989 987 #: includes/summaries/class-wdgpt-summaries-table.php:3 32990 #: includes/summaries/class-wdgpt-summaries-table.php:347 988 991 msgid "Filter" 989 992 msgstr "Filtro" 990 993 991 #: includes/summaries/class-wdgpt-summaries-table.php:3 59994 #: includes/summaries/class-wdgpt-summaries-table.php:374 992 995 msgid "" 993 996 "Embeddings are used to find the most similar posts/pages to the user query. " … … 1002 1005 "\"Generar incrustaciones\"." 1003 1006 1004 #: includes/summaries/class-wdgpt-summaries-table.php:3 621007 #: includes/summaries/class-wdgpt-summaries-table.php:378 1005 1008 msgid "Title" 1006 1009 msgstr "Título" 1007 1010 1008 #: includes/summaries/class-wdgpt-summaries-table.php:3 661011 #: includes/summaries/class-wdgpt-summaries-table.php:382 1009 1012 msgid "Language" 1010 1013 msgstr "Idioma" 1011 1014 1012 #: includes/summaries/class-wdgpt-summaries-table.php:3 721015 #: includes/summaries/class-wdgpt-summaries-table.php:388 1013 1016 msgid "Last Post Modification" 1014 1017 msgstr "Modificación del último puesto" 1015 1018 1016 #: includes/summaries/class-wdgpt-summaries-table.php:3 741019 #: includes/summaries/class-wdgpt-summaries-table.php:390 1017 1020 msgid "Last Embeddings Generation" 1018 1021 msgstr "Última generación de incrustaciones" 1019 1022 1020 #: includes/summaries/class-wdgpt-summaries-table.php: 3891023 #: includes/summaries/class-wdgpt-summaries-table.php:405 1021 1024 msgid "Content" 1022 1025 msgstr "Contenido" 1026 1027 #: includes/summaries/class-wdgpt-summaries-table.php:622 1028 #, php-format 1029 msgid "%d items activated. %d items skipped (no embeddings)." 1030 msgstr "%d elementos activados. %d elementos omitidos (sin incrustaciones)." 1031 1032 #: includes/summaries/class-wdgpt-summaries-table.php:640 1033 #, php-format 1034 msgid "%d items deactivated. %d items skipped (not active)." 1035 msgstr "%d elementos desactivados. %d elementos omitidos (no activos)." 1036 1037 #: includes/summaries/class-wdgpt-summaries-table.php:677 1038 #, php-format 1039 msgid "Embeddings generation started for %d items. %d items skipped." 1040 msgstr "" 1041 "Generación de incrustaciones iniciada para %d elementos. elementos %d " 1042 "omitidos." 1023 1043 1024 1044 #: includes/summaries/wdgpt-config-summary.php:24 -
smartsearchwp/trunk/languages/webdigit-chatbot-fr_FR.po
r3237420 r3239989 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: webdigit-chatbot\n"4 "POT-Creation-Date: 202 4-11-30 12:13+0100\n"5 "PO-Revision-Date: 202 4-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" 6 6 "Last-Translator: JC <[email protected]>\n" 7 "Language-Team: Français\n"7 "Language-Team: JC <[email protected]>\n" 8 8 "Language: fr_FR\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Loco https://localise.biz/\n"12 "X-Generator: Poedit 3.5\n" 13 13 "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" 15 20 "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 26 msgid "NoAnswerFound" 27 msgstr "Désolé·e, je n'ai pas la réponse à cette question." 28 29 #: class-wdgpt-chatbot-initializer.php:230 30 msgid "Sorry, I didnt understand your question. Can you rephrase it ?" 31 msgstr "" 32 "Désolé, je n'ai pas compris votre question. Pouvez-vous la reformuler ?" 33 34 #: class-wdgpt-chatbot-initializer.php:231 35 msgid "Sorry, your question isnt clear enough. Can you rephrase it ?" 36 msgstr "" 37 "Désolé, votre question n'est pas assez claire. Pouvez-vous la reformuler ?" 38 39 #: class-wdgpt-chatbot-initializer.php:232 40 msgid "You" 41 msgstr "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 46 msgid "Regenerate Embeddings" 47 msgstr "Réentraîner l'IA" 55 48 56 49 #: class-wdgpt-chatbot-initializer.php:234 57 #: class-wdgpt-chatbot-initializer.php:28 450 #: class-wdgpt-chatbot-initializer.php:285 58 51 #: includes/addons/wdgpt-addons-catalog-settings.php:207 59 52 #: includes/summaries/class-wdgpt-summaries-table.php:85 53 #: includes/summaries/class-wdgpt-summaries-table.php:121 60 54 msgid "Activate" 61 55 msgstr "Activer" 62 56 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 62 msgid "Deactivate" 63 msgstr "Désactiver" 64 65 #: class-wdgpt-chatbot-initializer.php:236 66 msgid "Error initializing" 67 msgstr "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 72 msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?" 73 msgstr "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?" 74 75 #: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29 76 msgid "Please enter your api key!" 77 msgstr "Veuillez entrer votre clé API !" 78 79 #: class-wdgpt-chatbot-initializer.php:288 80 msgid "" 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." 84 msgstr "" 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 90 msgid "Your api key is valid! Don't forget to save your changes." 91 msgstr "" 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 96 msgid "" 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: " 100 msgstr "" 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 107 msgid "You currently have a free license key." 108 msgstr "Vous disposez actuellement d'une clé de licence gratuite." 109 110 #: class-wdgpt-chatbot-initializer.php:292 111 msgid "" 112 "There was an issue retrieving your free license key. Please try again later." 113 msgstr "" 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 119 msgid "" 120 "Your SmartSearchWP Premium license is valid, and has been registered with " 121 "the current site. You can now use the premium features." 122 msgstr "" 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 128 msgid "" 129 "Your SmartSearchWP Premium license was not found. Please check your license " 130 "key." 131 msgstr "" 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 136 msgid "" 137 "Your SmartSearchWP Premium license was already registered with the current " 138 "site. You can use the premium features." 139 msgstr "" 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 144 msgid "" 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." 148 msgstr "" 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 154 msgid "" 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." 158 msgstr "" 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 164 msgid "" 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." 167 msgstr "" 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 173 msgid "" 174 "Your SmartSearchWP Premium license has expired. Please renew it to continue " 175 "using the premium features, then verify it again." 176 msgstr "" 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 182 msgid "Settings" 183 msgstr "Paramètres généraux" 184 185 #: class-wdgpt-chatbot-initializer.php:365 186 #: class-wdgpt-chatbot-initializer.php:366 187 msgid "Summary_title" 188 msgstr "Contextes" 189 190 #: class-wdgpt-chatbot-initializer.php:373 191 #: class-wdgpt-chatbot-initializer.php:374 192 #: includes/logs/wdgpt-config-logs.php:26 193 msgid "Chat Logs" 194 msgstr "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 199 msgid "Error Logs" 200 msgstr "Journaux d'erreurs" 201 202 #: class-wdgpt-chatbot-initializer.php:391 203 #: class-wdgpt-chatbot-initializer.php:392 69 204 msgid "Addons" 70 205 msgstr "Extensions" 71 206 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 210 msgid "This addon will require at least version %s of the plugin to function." 211 msgstr "" 212 "Cette extension nécessite au moins la version %s du plugin pour fonctionner." 213 214 #: includes/addons/class-wdgpt-license-manager.php:74 215 msgid "Pro" 216 msgstr "Pro" 217 218 #: includes/addons/class-wdgpt-license-manager.php:76 219 msgid "Free" 220 msgstr "Free" 221 222 #: includes/addons/class-wdgpt-license-manager.php:195 223 msgid "" 224 "Your premium license has expired. Please renew your license to continue " 225 "having access to new addons." 226 msgstr "" 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 231 msgid "" 232 "Your premium license has expired, but your free license is active. You can " 233 "access free addons." 234 msgstr "" 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 239 msgid "" 240 "Your premium license is inactive. Please activate your license to continue " 241 "having access to new addons." 242 msgstr "" 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 248 msgid "Your free license is active. You can accesss free addons." 249 msgstr "" 250 "Votre licence gratuite est active. Vous pouvez accéder à des extensions " 251 "gratuites." 252 253 #: includes/addons/class-wdgpt-license-manager.php:211 254 msgid "" 255 "Your premium license is active. You can download all the available addons." 256 msgstr "" 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 261 msgid "" 262 "Your free license is inactive. Please activate your license to continue " 263 "having access to new addons.." 264 msgstr "" 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 269 msgid "" 270 "Your license is inactive. Please activate your license to continue having " 271 "access to new addons." 272 msgstr "" 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 277 msgid "An error occured while retrieving the addons." 278 msgstr "Une erreur s'est produite lors de la récupération des extensions." 279 280 #: includes/addons/wdgpt-addons-catalog-settings.php:104 281 msgid "An error occured while installing the addon." 282 msgstr "Une erreur s'est produite lors de l'installation de l'extension." 283 284 #: includes/addons/wdgpt-addons-catalog-settings.php:104 285 msgid "The addon has been installed and activated successfully." 286 msgstr "L'extension a été installée et activée avec succès." 287 288 #: includes/addons/wdgpt-addons-catalog-settings.php:105 289 msgid "An error occured while uninstalling the addon." 290 msgstr "Une erreur s'est produite lors de la désinstallation de l'extension." 291 292 #: includes/addons/wdgpt-addons-catalog-settings.php:105 293 msgid "The addon has been uninstalled successfully." 294 msgstr "L'extension a été désinstallée avec succès." 94 295 95 296 #: includes/addons/wdgpt-addons-catalog-settings.php:106 … … 97 298 msgstr "Une erreur s'est produite lors de l'activation de I'extension." 98 299 300 #: includes/addons/wdgpt-addons-catalog-settings.php:106 301 msgid "The addon has been activated successfully." 302 msgstr "L'extension a été activée avec succès." 303 99 304 #: includes/addons/wdgpt-addons-catalog-settings.php:107 100 305 msgid "An error occured while deactivating the addon." 101 306 msgstr "Une erreur s'est produite lors de la désactivation de I'extension." 102 307 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 309 msgid "The addon has been deactivated successfully." 310 msgstr "L'extension a été désactivée avec succès." 114 311 115 312 #: includes/addons/wdgpt-addons-catalog-settings.php:108 … … 117 314 msgstr "Une erreur s'est produite lors de la mise à jour de I'extension." 118 315 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 317 msgid "The addon has been updated successfully." 318 msgstr "L'extension a été mise à jour avec succès." 319 320 #: includes/addons/wdgpt-addons-catalog-settings.php:113 321 msgid "" 322 "The addons catalog is a collection of premium and free addons that can be " 323 "installed to extend the functionality of the plugin." 324 msgstr "" 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 330 msgid "" 331 "Free addons can be installed with a free license, while premium addons " 332 "require a premium license to be installed." 333 msgstr "" 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 339 msgid "" 340 "A premium license is required for premium addons, and also gives access to " 341 "free addons." 342 msgstr "" 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 347 msgid "" 348 "Note: you can safely install, uninstall, activate or deactivate addons from " 349 "this page." 350 msgstr "" 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 356 msgid "Update" 357 msgstr "Mettre à jour" 358 359 #: includes/addons/wdgpt-addons-catalog-settings.php:197 360 #: includes/addons/wdgpt-addons-catalog-settings.php:214 361 msgid "Get Free License" 362 msgstr "Obtenir une licence gratuite" 141 363 142 364 #: includes/addons/wdgpt-addons-catalog-settings.php:202 … … 145 367 msgstr "Acheter" 146 368 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 370 msgid "Uninstall" 371 msgstr "Désinstaller" 397 372 398 373 #: includes/addons/wdgpt-addons-catalog-settings.php:212 … … 401 376 msgstr "Installer" 402 377 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 379 msgid "For anything related to the SmartSearchWP Premium version, please visit" 380 msgstr "" 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 386 msgid "SmartSearchWP" 387 msgstr "SmartSearchWP" 388 389 #: includes/addons/wdgpt-addons-license-settings.php:38 390 msgid "and get your license key." 391 msgstr "pour obtenir votre clé de licence." 392 393 #: includes/addons/wdgpt-addons-license-settings.php:46 517 394 msgid "" 518 395 "Please note that if your license key is no longer valid or you modify the " … … 527 404 "ci-dessous." 528 405 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 407 msgid "" 408 "Your SmartSearchWP Premium license has expired. Please renew it to continue " 409 "using the premium features, then verify it again.." 410 msgstr "" 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 562 415 msgid "Premium License:" 563 416 msgstr "Licence Premium :" 564 417 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 419 msgid "" 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." 423 msgstr "" 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 429 msgid "Verify your premium license" 430 msgstr "Vérifiez votre licence premium" 431 432 #: includes/addons/wdgpt-addons-license-settings.php:124 433 msgid "Free Addons" 434 msgstr "Extensions gratuites" 435 436 #: includes/addons/wdgpt-addons-license-settings.php:132 437 msgid "" 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." 440 msgstr "" 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 445 msgid "" 446 "You currently have no free license key. Get your free license key by " 447 "entering your email address below." 448 msgstr "" 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 453 msgid "Mail:" 454 msgstr "Mail:" 455 456 #: includes/addons/wdgpt-addons-license-settings.php:176 457 #: includes/config/wdgpt-config-reporting-settings.php:130 458 msgid "The email is not valid. Please enter a valid email." 459 msgstr "L'email n'est pas valide. Veuillez saisir un email valide." 460 461 #: includes/addons/wdgpt-addons-license-settings.php:184 462 msgid "Enter your email address to get access to our free addons." 463 msgstr "" 464 "Saisissez votre adresse e-mail pour accéder à nos extensions gratuites." 465 466 #: includes/addons/wdgpt-addons-license-settings.php:195 467 msgid "Receive updates:" 468 msgstr "Recevoir des mises à jour :" 469 470 #: includes/addons/wdgpt-addons-license-settings.php:209 579 471 msgid "Receive updates about our free addons and new features." 580 472 msgstr "" … … 582 474 "fonctionnalités." 583 475 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 477 msgid "Get your free license" 478 msgstr "Obtenez votre licence gratuite" 479 480 #: includes/addons/wdgpt-addons.php:26 481 msgid "Addons manager" 482 msgstr "Gestionnaire d'extensions" 483 484 #: includes/addons/wdgpt-addons.php:27 485 msgid "License settings" 486 msgstr "Paramètres de licence" 487 488 #: includes/class-wdgpt-database-updater.php:53 489 msgid "" 490 "This update will empty the chat logs table, because of a change in the table " 491 "structure." 492 msgstr "" 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 497 msgid "" 498 "You are already using the most recent version of the database, you can now " 499 "use the plugin without any restrictions." 500 msgstr "" 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 505 msgid "" 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." 509 msgstr "" 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 515 msgid "Please make sure to backup your database before updating it." 516 msgstr "Veillez à sauvegarder votre base de données avant de la mettre à jour." 517 518 #: includes/config/wdgpt-config-database-update-settings.php:40 519 msgid "Here are the details of the database update:" 520 msgstr "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 523 msgid "Database version:" 524 msgstr "Version de la base de données :" 525 526 #: includes/config/wdgpt-config-database-update-settings.php:63 527 msgid "Update database" 528 msgstr "Mise à jour de la base de données" 615 529 616 530 #: includes/config/wdgpt-config-general-settings.php:42 … … 619 533 msgstr "Les paramètres ont été sauvegardés avec succès !" 620 534 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 537 msgid "" 538 "The plugin has been disabled because the database is not up to date. Please " 539 "update the database to enable the plugin." 540 msgstr "" 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 546 msgid "Update the database" 547 msgstr "Mise à jour de la base de données" 548 549 #: includes/config/wdgpt-config-general-settings.php:130 550 msgid "" 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." 553 msgstr "" 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 559 msgid "Enable Chatbot:" 560 msgstr "Activer le chatbot :" 561 562 #: includes/config/wdgpt-config-general-settings.php:164 563 msgid "OpenAi API Key:" 564 msgstr "Clé API d’OpenAI :" 565 566 #: includes/config/wdgpt-config-general-settings.php:174 567 msgid "Validate Key" 568 msgstr "Valider la clé" 569 570 #: includes/config/wdgpt-config-general-settings.php:188 571 msgid "You can get your api key" 572 msgstr "Vous pouvez obtenir votre clé d'API" 573 574 #: includes/config/wdgpt-config-general-settings.php:195 575 msgid "here" 576 msgstr "ici" 577 578 #: includes/config/wdgpt-config-general-settings.php:207 579 msgid "ChatGPT Model:" 580 msgstr "Modèle ChatGPT :" 581 582 #: includes/config/wdgpt-config-general-settings.php:264 583 msgid "" 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." 586 msgstr "" 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 592 msgid "Chatbot Name:" 593 msgstr "Nom du chatbot :" 594 595 #: includes/config/wdgpt-config-general-settings.php:286 596 msgid "Chatbot Logo:" 597 msgstr "Logo du Chatbot :" 598 599 #: includes/config/wdgpt-config-general-settings.php:322 666 600 msgid "Temperature:" 667 601 msgstr "Température :" 668 602 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 604 msgid "" 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." 610 msgstr "" 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 619 msgid "Max used contexts:" 620 msgstr "Nombre maximal de contextes utilisés :" 621 622 #: includes/config/wdgpt-config-general-settings.php:377 712 623 msgid "" 713 624 "The maximum number of contexts that the model can use to generate an answer. " … … 728 639 "créativité, vous pouvez augmenter cette valeur à 10." 729 640 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 642 msgid "Similarity threshold:" 643 msgstr "Seuil de similarité :" 644 645 #: includes/config/wdgpt-config-general-settings.php:413 646 #, no-php-format 844 647 msgid "" 845 648 "This determines the maximum difference allowed between the most likely " … … 864 667 "créativité, vous pouvez augmenter cette valeur à 10." 865 668 866 #: includes/config/wdgpt-config-general-settings.php:503 669 #: includes/config/wdgpt-config-general-settings.php:424 670 msgid "Precision threshold:" 671 msgstr "Seuil de précision :" 672 673 #: includes/config/wdgpt-config-general-settings.php:449 674 msgid "" 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." 681 msgstr "" 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 691 msgid "Enable Chatbot Bubble:" 692 msgstr "Activer le phylactère :" 693 694 #: includes/config/wdgpt-config-general-settings.php:476 695 msgid "Chatbot Bubble Typing Text:" 696 msgstr "Phylactère du chat :" 697 698 #: includes/config/wdgpt-config-general-settings.php:482 699 #: includes/wdgpt-client.php:121 700 msgid "Hello, may I help you?" 701 msgstr "Bonjour, puis-je vous aider ?" 702 703 #: includes/config/wdgpt-config-general-settings.php:486 704 msgid "" 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." 708 msgstr "" 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 714 msgid "Greetings Message:" 715 msgstr "Message d'accueil :" 716 717 #: includes/config/wdgpt-config-general-settings.php:507 867 718 msgid "" 868 719 "This is the message that will be displayed when the chatbot will be greeting " … … 875 726 "utilisée." 876 727 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 730 msgid "Save Changes" 731 msgstr "Enregistrer les modifications" 732 733 #: includes/config/wdgpt-config-reporting-settings.php:86 888 734 msgid "" 889 735 "This section is dedicated to the reporting settings. Here you can set the " … … 894 740 "calendrier d'envoi des rapports." 895 741 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 743 msgid "" 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." 747 msgstr "" 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 753 msgid "Enable reporting:" 754 msgstr "Activer les rapports :" 755 756 #: includes/config/wdgpt-config-reporting-settings.php:120 757 msgid "Mail from:" 758 msgstr "Mail de :" 759 760 #: includes/config/wdgpt-config-reporting-settings.php:138 761 msgid "" 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." 764 msgstr "" 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 770 msgid "Mails to send the reports to:" 771 msgstr "Courrier à envoyer aux rapports :" 772 773 #: includes/config/wdgpt-config-reporting-settings.php:157 774 msgid "The emails are not valid. Please enter valid emails." 775 msgstr "Les mails ne sont pas valides. Veuillez saisir des mails valides." 776 777 #: includes/config/wdgpt-config-reporting-settings.php:165 778 msgid "" 779 "Please enter the mails to send the reports to. You can enter multiple mails " 780 "separated by a comma." 781 msgstr "" 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 786 msgid "Schedule of sending the reports:" 787 msgstr "Calendrier d'envoi des rapports :" 788 789 #: includes/config/wdgpt-config-reporting-settings.php:186 790 msgid "Daily" 791 msgstr "Quotidiennement" 792 793 #: includes/config/wdgpt-config-reporting-settings.php:194 794 msgid "Weekly" 795 msgstr "Hebdomadaire" 796 797 #: includes/config/wdgpt-config-reporting-settings.php:204 798 msgid "Please select the schedule of sending the reports." 799 msgstr "Veuillez sélectionner le calendrier d'envoi des rapports." 800 801 #: includes/config/wdgpt-config-reporting-settings.php:219 802 msgid "Cron schedule:" 803 msgstr "Horaire du Cron :" 804 805 #: includes/config/wdgpt-config-reporting-settings.php:228 806 msgid "The cron schedule is: " 807 msgstr "Le programme cron est le suivant : " 808 809 #: includes/config/wdgpt-config-reporting-settings.php:247 810 msgid "" 811 "If you deactivate the plugin, the reporting will be put on hold, but will " 812 "resume when you activate it again." 813 msgstr "" 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 818 msgid "SmartSearchWP Chat Logs Report - " 819 msgstr "Rapport sur les journaux de discussion de SmartSearchWP - " 937 820 938 821 #: includes/crons/wdgpt-cron-jobs.php:113 … … 941 824 msgstr "Utilisateur" 942 825 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 828 msgid "Bot" 829 msgstr "Système" 830 831 #: includes/crons/wdgpt-cron-jobs.php:154 832 msgid "SmartsearchWP chat logs report" 833 msgstr "Rapport sur les journaux de discussion de SmartsearchWP" 834 835 #: includes/crons/wdgpt-cron-jobs.php:156 836 msgid "Please find attached the report of the chat logs from SmartsearchWP." 837 msgstr "" 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 843 msgid "log" 844 msgstr "log" 845 846 #: includes/logs/class-wdgpt-error-logs-table.php:41 847 #: includes/logs/class-wdgpt-logs-table.php:48 848 msgid "logs" 849 msgstr "logs" 850 851 #: includes/logs/class-wdgpt-error-logs-table.php:61 852 msgid "Error" 853 msgstr "Erreur" 854 855 #: includes/logs/class-wdgpt-error-logs-table.php:62 856 msgid "Error Type" 857 msgstr "Type d'erreur" 858 859 #: includes/logs/class-wdgpt-error-logs-table.php:63 860 msgid "Error Code" 861 msgstr "Code d'erreur" 862 863 #: includes/logs/class-wdgpt-error-logs-table.php:64 864 msgid "Question" 865 msgstr "Question" 866 867 #: includes/logs/class-wdgpt-error-logs-table.php:65 868 #: includes/logs/class-wdgpt-logs-table.php:195 869 msgid "Created At" 870 msgstr "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 875 msgid "ID" 876 msgstr "Identifiant" 877 878 #: includes/logs/class-wdgpt-error-logs-table.php:105 879 #: includes/logs/class-wdgpt-logs-table.php:243 880 msgid "Purge Logs" 881 msgstr "Effacer les journaux" 882 883 #: includes/logs/class-wdgpt-error-logs-table.php:107 884 #: includes/logs/class-wdgpt-logs-table.php:237 885 msgid "1 Month" 886 msgstr "1 Mois" 887 888 #: includes/logs/class-wdgpt-error-logs-table.php:108 889 #: includes/logs/class-wdgpt-logs-table.php:238 890 msgid "3 Months" 891 msgstr "3 Mois" 892 893 #: includes/logs/class-wdgpt-error-logs-table.php:109 894 #: includes/logs/class-wdgpt-logs-table.php:239 895 msgid "6 Months" 896 msgstr "6 Mois" 897 898 #: includes/logs/class-wdgpt-error-logs-table.php:110 899 #: includes/logs/class-wdgpt-logs-table.php:240 900 msgid "12 Months" 901 msgstr "12 Mois" 902 903 #: includes/logs/class-wdgpt-error-logs-table.php:111 904 #: includes/logs/class-wdgpt-logs-table.php:241 905 msgid "Forever" 906 msgstr "Toujours" 950 907 951 908 #: includes/logs/class-wdgpt-logs-table.php:73 … … 953 910 msgstr "Voir la conversation entière" 954 911 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 913 msgid "Latest Question" 914 msgstr "Dernière question" 915 916 #: includes/logs/class-wdgpt-logs-table.php:193 917 msgid "Answer" 918 msgstr "Réponse" 919 920 #: includes/logs/class-wdgpt-logs-table.php:194 921 msgid "Context used" 922 msgstr "Contexte utilisé" 923 924 #: includes/logs/wdgpt-config-error-logs.php:32 925 #: includes/logs/wdgpt-config-logs.php:32 926 msgid "Deleted all logs." 927 msgstr "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 933 msgid "Deleted logs older than %d months." 934 msgstr "Suppression de tous les journaux datant d'il y a plus de %d mois." 935 936 #: includes/summaries/class-wdgpt-summaries-table.php:38 937 msgid "summary" 938 msgstr "contexte" 939 940 #: includes/summaries/class-wdgpt-summaries-table.php:39 941 msgid "summaries" 942 msgstr "contextes" 943 944 #: includes/summaries/class-wdgpt-summaries-table.php:65 945 #: includes/summaries/class-wdgpt-summaries-table.php:123 946 msgid "Generate Embeddings" 947 msgstr "Entraîner l'IA" 948 949 #: includes/summaries/class-wdgpt-summaries-table.php:93 950 msgid "" 951 "This summary has no content. Please add some content to it before generating " 952 "embeddings." 953 msgstr "" 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 959 msgid "All" 960 msgstr "Tous" 961 962 #: includes/summaries/class-wdgpt-summaries-table.php:281 963 msgid "Search" 964 msgstr "Recherche" 965 966 #: includes/summaries/class-wdgpt-summaries-table.php:311 967 #: includes/summaries/class-wdgpt-summaries-table.php:391 968 msgid "Active" 969 msgstr "Actif" 970 971 #: includes/summaries/class-wdgpt-summaries-table.php:312 972 msgid "Inactive" 973 msgstr "Inactif" 974 975 #: includes/summaries/class-wdgpt-summaries-table.php:313 976 #: includes/summaries/class-wdgpt-summaries-table.php:389 977 msgid "Embeddings" 978 msgstr "Intégrations" 979 980 #: includes/summaries/class-wdgpt-summaries-table.php:314 981 msgid "No Embeddings" 982 msgstr "Pas d'intégrations" 983 984 #: includes/summaries/class-wdgpt-summaries-table.php:315 985 msgid "Up to date" 986 msgstr "Mis à jour" 987 988 #: includes/summaries/class-wdgpt-summaries-table.php:316 989 msgid "Not up to date" 990 msgstr "Pas à jour" 991 992 #: includes/summaries/class-wdgpt-summaries-table.php:347 993 msgid "Filter" 994 msgstr "Filtrer" 995 996 #: includes/summaries/class-wdgpt-summaries-table.php:374 997 msgid "" 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." 1002 msgstr "" 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 1009 msgid "Title" 1010 msgstr "Titre" 1011 1012 #: includes/summaries/class-wdgpt-summaries-table.php:382 1013 msgid "Language" 1014 msgstr "Langue" 1015 1016 #: includes/summaries/class-wdgpt-summaries-table.php:388 1017 msgid "Last Post Modification" 1018 msgstr "Dernière modification du contenu" 1019 1020 #: includes/summaries/class-wdgpt-summaries-table.php:390 1021 msgid "Last Embeddings Generation" 1022 msgstr "Dernière génération des intégrations" 1023 1024 #: includes/summaries/class-wdgpt-summaries-table.php:405 1025 msgid "Content" 1026 msgstr "Contenu" 1027 1028 #: includes/summaries/class-wdgpt-summaries-table.php:622 1029 #, php-format 1030 msgid "%d items activated. %d items skipped (no embeddings)." 1031 msgstr "%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 1035 msgid "%d items deactivated. %d items skipped (not active)." 1036 msgstr "%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 1040 msgid "Embeddings generation started for %d items. %d items skipped." 1041 msgstr "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 1044 msgid "" 1045 "Your OpenAI API key is invalid. Please set a valid API key in the settings " 1046 "page." 1047 msgstr "" 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 1053 msgid "Please set your OpenAI API key in the settings page." 1054 msgstr "" 1055 "Veuillez ajouter votre clé d'API OpenAI au sein de la page de paramètres." 992 1056 993 1057 #: includes/summaries/wdgpt-config-summary.php:44 … … 999 1063 "jour votre plan sur le site OpenAI si vous souhaitez générer des embeddings." 1000 1064 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 1066 msgid "OpenAI Generated Summaries" 1067 msgstr "Contextes générés par OpenAI" 1068 1069 #: includes/summaries/wdgpt-config-summary.php:59 1070 msgid "" 1071 "The row is currently active and its embeddings is up to date with the post." 1072 msgstr "" 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 1077 msgid "" 1078 "The row is currently active but its embeddings are not up to date with the " 1079 "post." 1080 msgstr "" 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 1085 msgid "Database updated successfully." 1086 msgstr "Database updated successfully." 1087 1088 #: includes/wdgpt-api-requests.php:188 1089 msgid "" 1090 "Currently, there appears to be an issue. Please try asking me again later." 1091 msgstr "" 1092 "Il semble qu'il y ait actuellement un problème. Veuillez réessayer plus tard." 1093 1094 #: includes/wdgpt-api-requests.php:248 1095 msgid "There is currently an error with the chatbot. Please try again later." 1096 msgstr "" 1097 "Il y a actuellement une erreur avec le chatbot. Veuillez réessayer plus tard." 1098 1099 #: includes/wdgpt-client.php:147 1100 msgid "Tapez votre message ici..." 1101 msgstr "Tapez votre message ici…" 1102 1103 #: includes/wdgpt-client.php:151 1104 msgid "" 1105 "Powered by artificial intelligence, the bot can make mistakes. Consider " 1106 "checking important information." 1107 msgstr "" 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 1112 msgid "An error occurred while contacting OpenAI: " 1113 msgstr "Une erreur s'est produite lors de la prise de contact avec OpenAI : " 1114 1115 #: includes/wdgpt-config.php:50 1116 msgid "The OpenAI API currently has issues. Please try again later." 1117 msgstr "" 1118 "L'API OpenAI a actuellement des problèmes. Veuillez réessayer plus tard." 1008 1119 1009 1120 #: includes/wdgpt-config.php:59 … … 1014 1125 "Votre clé API n'est pas valide ! Si vous pensez qu'il s'agit d'une erreur, " 1015 1126 "veuillez vérifier votre compte sur la plateforme OpenAI." 1016 1017 #: class-wdgpt-chatbot-initializer.php:2871018 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."1026 1127 1027 1128 #: includes/wdgpt-config.php:66 … … 1037 1138 msgstr "Votre clé API est valide !" 1038 1139 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 1141 msgid "" 1142 "If you like this plugin, please leave us a review to help us grow. Thank you!" 1143 msgstr "" 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 1148 msgid "Leave a review" 1149 msgstr "Laisser un commentaire" 1150 1151 #: includes/wdgpt-config.php:129 1152 msgid "No, thanks" 1153 msgstr "Non, merci" 1154 1155 #: includes/wdgpt-config.php:137 1156 msgid "Already rated" 1157 msgstr "Déjà noté" 1158 1159 #: includes/wdgpt-config.php:145 1160 msgid "Remind me later" 1161 msgstr "Rappelez-moi plus tard" 1162 1163 #: includes/wdgpt-config.php:172 1164 msgid "General Settings" 1165 msgstr "Paramètres généraux" 1166 1167 #: includes/wdgpt-config.php:173 1168 msgid "Reporting" 1169 msgstr "Rapports" 1170 1171 #: includes/wdgpt-config.php:180 1172 msgid "Database Update" 1173 msgstr "Mise à jour de la base de données" 1174 1175 #: wdgpt.php:68 1176 msgid "" 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." 1179 msgstr "" 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 1186 msgid "https://www.smartsearchwp.com/" 1187 msgstr "https://www.smartsearchwp.com/" 1188 1189 #. Description of the plugin/theme 1190 msgid "" 1191 "A chatbot that helps users navigate your website and find what they're " 1192 "looking for." 1193 msgstr "" 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 1198 msgid "Webdigit" 1199 msgstr "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 2 2 msgstr "" 3 3 "Project-Id-Version: SmartSearchWP\n" 4 "POT-Creation-Date: 202 4-11-30 12:26+0100\n"5 "PO-Revision-Date: 202 4-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" 6 6 "Last-Translator: JC <[email protected]>\n" 7 7 "Language-Team: JC <[email protected]>\n" … … 20 20 "X-Poedit-SearchPath-0: .\n" 21 21 "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" 23 24 24 25 #: class-wdgpt-chatbot-initializer.php:229 … … 39 40 40 41 #: class-wdgpt-chatbot-initializer.php:233 41 #: class-wdgpt-chatbot-initializer.php:28 342 #: class-wdgpt-chatbot-initializer.php:284 42 43 #: includes/summaries/class-wdgpt-summaries-table.php:65 43 44 msgid "Regenerate Embeddings" … … 45 46 46 47 #: class-wdgpt-chatbot-initializer.php:234 47 #: class-wdgpt-chatbot-initializer.php:28 448 #: class-wdgpt-chatbot-initializer.php:285 48 49 #: includes/addons/wdgpt-addons-catalog-settings.php:207 49 50 #: includes/summaries/class-wdgpt-summaries-table.php:85 51 #: includes/summaries/class-wdgpt-summaries-table.php:121 50 52 msgid "Activate" 51 53 msgstr "Attiva" 52 54 53 55 #: class-wdgpt-chatbot-initializer.php:235 54 #: class-wdgpt-chatbot-initializer.php:28 556 #: class-wdgpt-chatbot-initializer.php:286 55 57 #: includes/addons/wdgpt-addons-catalog-settings.php:205 56 58 #: includes/summaries/class-wdgpt-summaries-table.php:81 59 #: includes/summaries/class-wdgpt-summaries-table.php:122 57 60 msgid "Deactivate" 58 61 msgstr "Disattiva" … … 63 66 64 67 #: class-wdgpt-chatbot-initializer.php:237 65 #: includes/config/wdgpt-config-general-settings.php:50 068 #: includes/config/wdgpt-config-general-settings.php:503 66 69 #: includes/wdgpt-client.php:141 67 70 msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?" 68 71 msgstr "Bonjour, sono SmartSearchWP, come posso aiutarvi?" 69 72 70 #: class-wdgpt-chatbot-initializer.php:28 6includes/wdgpt-config.php:2973 #: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29 71 74 msgid "Please enter your api key!" 72 75 msgstr "Inserisci la tua chiave api!" 73 76 74 #: class-wdgpt-chatbot-initializer.php:28 777 #: class-wdgpt-chatbot-initializer.php:288 75 78 msgid "" 76 79 "Your api key is invalid! If you think this is a mistake, please check your " … … 82 85 "se l'API OpenAI ha dei problemi o è inattiva." 83 86 84 #: class-wdgpt-chatbot-initializer.php:28 887 #: class-wdgpt-chatbot-initializer.php:289 85 88 msgid "Your api key is valid! Don't forget to save your changes." 86 89 msgstr "La chiave api è valida! Non dimenticare di salvare le modifiche." 87 90 88 #: class-wdgpt-chatbot-initializer.php:2 8989 #: includes/config/wdgpt-config-general-settings.php:25 091 #: class-wdgpt-chatbot-initializer.php:290 92 #: includes/config/wdgpt-config-general-settings.php:253 90 93 msgid "" 91 94 "The previously selected model is not available anymore with your current api " … … 95 98 "Il modello selezionato in precedenza non è più disponibile con la chiave api " 96 99 "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:29 0100 "nuovo modello. Il modello precedente era: " 101 102 #: class-wdgpt-chatbot-initializer.php:291 100 103 #: includes/addons/wdgpt-addons-license-settings.php:151 101 104 msgid "You currently have a free license key." 102 105 msgstr "Attualmente si dispone di una chiave di licenza gratuita." 103 106 104 #: class-wdgpt-chatbot-initializer.php:29 1107 #: class-wdgpt-chatbot-initializer.php:292 105 108 msgid "" 106 109 "There was an issue retrieving your free license key. Please try again later." … … 109 112 "Riprovare più tardi." 110 113 111 #: class-wdgpt-chatbot-initializer.php:29 2114 #: class-wdgpt-chatbot-initializer.php:293 112 115 #: includes/addons/wdgpt-addons-license-settings.php:63 113 116 msgid "" … … 118 121 "corrente. Ora è possibile utilizzare le funzioni Premium." 119 122 120 #: class-wdgpt-chatbot-initializer.php:29 3123 #: class-wdgpt-chatbot-initializer.php:294 121 124 #: includes/addons/wdgpt-addons-license-settings.php:58 122 125 msgid "" … … 127 130 "chiave di licenza." 128 131 129 #: class-wdgpt-chatbot-initializer.php:29 4132 #: class-wdgpt-chatbot-initializer.php:295 130 133 msgid "" 131 134 "Your SmartSearchWP Premium license was already registered with the current " … … 135 138 "possibile utilizzare le funzioni Premium." 136 139 137 #: class-wdgpt-chatbot-initializer.php:29 5140 #: class-wdgpt-chatbot-initializer.php:296 138 141 msgid "" 139 142 "Your SmartSearchWP Premium license was already registered with another site. " … … 145 148 "ritiene che ciò non debba accadere." 146 149 147 #: class-wdgpt-chatbot-initializer.php:29 6150 #: class-wdgpt-chatbot-initializer.php:297 148 151 msgid "" 149 152 "There was an issue registering your SmartSearchWP Premium license with the " … … 155 158 "se il problema persiste." 156 159 157 #: class-wdgpt-chatbot-initializer.php:29 7160 #: class-wdgpt-chatbot-initializer.php:298 158 161 msgid "" 159 162 "There was an issue retrieving the expiry date of your SmartSearchWP Premium " … … 164 167 "se il problema persiste." 165 168 166 #: class-wdgpt-chatbot-initializer.php:29 8169 #: class-wdgpt-chatbot-initializer.php:299 167 170 msgid "" 168 171 "Your SmartSearchWP Premium license has expired. Please renew it to continue " … … 172 175 "utilizzare le funzioni premium, quindi verificatela di nuovo." 173 176 174 #: class-wdgpt-chatbot-initializer.php:356175 177 #: class-wdgpt-chatbot-initializer.php:357 178 #: class-wdgpt-chatbot-initializer.php:358 176 179 msgid "Settings" 177 180 msgstr "Impostazioni" 178 181 179 #: class-wdgpt-chatbot-initializer.php:364180 182 #: class-wdgpt-chatbot-initializer.php:365 183 #: class-wdgpt-chatbot-initializer.php:366 181 184 msgid "Summary_title" 182 185 msgstr "Titolo_riassuntivo" 183 186 184 #: class-wdgpt-chatbot-initializer.php:372185 187 #: class-wdgpt-chatbot-initializer.php:373 188 #: class-wdgpt-chatbot-initializer.php:374 186 189 #: includes/logs/wdgpt-config-logs.php:26 187 190 msgid "Chat Logs" 188 191 msgstr "Registri di chat" 189 192 190 #: class-wdgpt-chatbot-initializer.php:381191 193 #: class-wdgpt-chatbot-initializer.php:382 194 #: class-wdgpt-chatbot-initializer.php:383 192 195 #: includes/logs/wdgpt-config-error-logs.php:26 193 196 msgid "Error Logs" 194 197 msgstr "Error Log" 195 198 196 #: class-wdgpt-chatbot-initializer.php:390197 199 #: class-wdgpt-chatbot-initializer.php:391 200 #: class-wdgpt-chatbot-initializer.php:392 198 201 msgid "Addons" 199 202 msgstr "Componenti aggiuntivi" … … 479 482 msgstr "Ottenete la vostra licenza gratuita" 480 483 481 #: includes/addons/wdgpt-addons.php:2 3484 #: includes/addons/wdgpt-addons.php:26 482 485 msgid "Addons manager" 483 486 msgstr "Gestione dei componenti aggiuntivi" 484 487 485 #: includes/addons/wdgpt-addons.php:2 4488 #: includes/addons/wdgpt-addons.php:27 486 489 msgid "License settings" 487 490 msgstr "Impostazioni della licenza" … … 556 559 "correttamente. Attivare l'opzione allow_url_fopen nel file php.ini." 557 560 558 #: includes/config/wdgpt-config-general-settings.php:14 5561 #: includes/config/wdgpt-config-general-settings.php:148 559 562 msgid "Enable Chatbot:" 560 563 msgstr "Attivare il Chatbot:" 561 564 562 #: includes/config/wdgpt-config-general-settings.php:16 1565 #: includes/config/wdgpt-config-general-settings.php:164 563 566 msgid "OpenAi API Key:" 564 567 msgstr "Chiave API OpenAi:" 565 568 566 #: includes/config/wdgpt-config-general-settings.php:17 1569 #: includes/config/wdgpt-config-general-settings.php:174 567 570 msgid "Validate Key" 568 571 msgstr "Convalida chiave" 569 572 570 #: includes/config/wdgpt-config-general-settings.php:18 5573 #: includes/config/wdgpt-config-general-settings.php:188 571 574 msgid "You can get your api key" 572 575 msgstr "È possibile ottenere la chiave api" 573 576 574 #: includes/config/wdgpt-config-general-settings.php:19 2577 #: includes/config/wdgpt-config-general-settings.php:195 575 578 msgid "here" 576 579 msgstr "clicca qui" 577 580 578 #: includes/config/wdgpt-config-general-settings.php:20 4581 #: includes/config/wdgpt-config-general-settings.php:207 579 582 msgid "ChatGPT Model:" 580 583 msgstr "Modello ChatGPT:" 581 584 582 #: includes/config/wdgpt-config-general-settings.php:26 1585 #: includes/config/wdgpt-config-general-settings.php:264 583 586 msgid "" 584 587 "If you want to use gpt-4o, you must subscribe to chatgpt plus. The model " … … 589 592 "velocità maggiore e un costo inferiore." 590 593 591 #: includes/config/wdgpt-config-general-settings.php:27 2594 #: includes/config/wdgpt-config-general-settings.php:275 592 595 msgid "Chatbot Name:" 593 596 msgstr "Nome del chatbot:" 594 597 595 #: includes/config/wdgpt-config-general-settings.php:28 3598 #: includes/config/wdgpt-config-general-settings.php:286 596 599 msgid "Chatbot Logo:" 597 600 msgstr "Logo Chatbot:" 598 601 599 #: includes/config/wdgpt-config-general-settings.php:3 19602 #: includes/config/wdgpt-config-general-settings.php:322 600 603 msgid "Temperature:" 601 604 msgstr "Temperatura:" 602 605 603 #: includes/config/wdgpt-config-general-settings.php:3 39606 #: includes/config/wdgpt-config-general-settings.php:342 604 607 msgid "" 605 608 "The temperature parameter influences the level of randomness in the output " … … 615 618 "modello, ma rende anche i suoi output più imprevedibili." 616 619 617 #: includes/config/wdgpt-config-general-settings.php:35 0620 #: includes/config/wdgpt-config-general-settings.php:353 618 621 msgid "Max used contexts:" 619 622 msgstr "Contesti massimi utilizzati:" 620 623 621 #: includes/config/wdgpt-config-general-settings.php:37 4624 #: includes/config/wdgpt-config-general-settings.php:377 622 625 msgid "" 623 626 "The maximum number of contexts that the model can use to generate an answer. " … … 638 641 "valore a 10." 639 642 640 #: includes/config/wdgpt-config-general-settings.php:38 5643 #: includes/config/wdgpt-config-general-settings.php:388 641 644 msgid "Similarity threshold:" 642 645 msgstr "Soglia di somiglianza:" 643 646 644 #: includes/config/wdgpt-config-general-settings.php:41 0647 #: includes/config/wdgpt-config-general-settings.php:413 645 648 #, no-php-format 646 649 msgid "" … … 666 669 "valore a 10." 667 670 668 #: includes/config/wdgpt-config-general-settings.php:42 1671 #: includes/config/wdgpt-config-general-settings.php:424 669 672 msgid "Precision threshold:" 670 673 msgstr "Soglia di precisione:" 671 674 672 #: includes/config/wdgpt-config-general-settings.php:44 6675 #: includes/config/wdgpt-config-general-settings.php:449 673 676 msgid "" 674 677 "The minimum precision required for a context to be considered eligible " … … 686 689 "contesto o la richiesta non sono sufficientemente rilevanti." 687 690 688 #: includes/config/wdgpt-config-general-settings.php:4 57691 #: includes/config/wdgpt-config-general-settings.php:460 689 692 msgid "Enable Chatbot Bubble:" 690 693 msgstr "Abilitare Chatbot Bubble:" 691 694 692 #: includes/config/wdgpt-config-general-settings.php:47 3695 #: includes/config/wdgpt-config-general-settings.php:476 693 696 msgid "Chatbot Bubble Typing Text:" 694 697 msgstr "Chatbot che digita testo in bolla:" 695 698 696 #: includes/config/wdgpt-config-general-settings.php:4 79699 #: includes/config/wdgpt-config-general-settings.php:482 697 700 #: includes/wdgpt-client.php:121 698 701 msgid "Hello, may I help you?" 699 702 msgstr "Salve, posso aiutarla?" 700 703 701 #: includes/config/wdgpt-config-general-settings.php:48 3704 #: includes/config/wdgpt-config-general-settings.php:486 702 705 msgid "" 703 706 "This is the text that will be displayed in the chat bubble above the circle " … … 709 712 "lingua, verrà utilizzata la traduzione predefinita." 710 713 711 #: includes/config/wdgpt-config-general-settings.php:49 4714 #: includes/config/wdgpt-config-general-settings.php:497 712 715 msgid "Greetings Message:" 713 716 msgstr "Messaggio di saluto:" 714 717 715 #: includes/config/wdgpt-config-general-settings.php:50 4718 #: includes/config/wdgpt-config-general-settings.php:507 716 719 msgid "" 717 720 "This is the message that will be displayed when the chatbot will be greeting " … … 723 726 "determinata lingua, verrà utilizzata la traduzione predefinita." 724 727 725 #: includes/config/wdgpt-config-general-settings.php:51 5728 #: includes/config/wdgpt-config-general-settings.php:518 726 729 #: includes/config/wdgpt-config-reporting-settings.php:255 727 730 msgid "Save Changes" … … 802 805 #: includes/config/wdgpt-config-reporting-settings.php:228 803 806 msgid "The cron schedule is: " 804 msgstr "Il programma cron è: "807 msgstr "Il programma cron è: " 805 808 806 809 #: includes/config/wdgpt-config-reporting-settings.php:247 … … 814 817 #: includes/crons/wdgpt-cron-jobs.php:99 815 818 msgid "SmartSearchWP Chat Logs Report - " 816 msgstr "Rapporto sui registri di chat di SmartSearchWP - "819 msgstr "Rapporto sui registri di chat di SmartSearchWP - " 817 820 818 821 #: includes/crons/wdgpt-cron-jobs.php:113 … … 867 870 #: includes/logs/class-wdgpt-error-logs-table.php:76 868 871 #: includes/logs/class-wdgpt-logs-table.php:208 869 #: includes/summaries/class-wdgpt-summaries-table.php: 388872 #: includes/summaries/class-wdgpt-summaries-table.php:404 870 873 msgid "ID" 871 874 msgstr "ID" … … 938 941 939 942 #: includes/summaries/class-wdgpt-summaries-table.php:65 943 #: includes/summaries/class-wdgpt-summaries-table.php:123 940 944 msgid "Generate Embeddings" 941 945 msgstr "Generare le incorporazioni" … … 949 953 "di generare le incorporazioni." 950 954 951 #: includes/summaries/class-wdgpt-summaries-table.php:2 48952 #: includes/summaries/class-wdgpt-summaries-table.php: 295955 #: includes/summaries/class-wdgpt-summaries-table.php:263 956 #: includes/summaries/class-wdgpt-summaries-table.php:310 953 957 msgid "All" 954 958 msgstr "Tutti" 955 959 956 #: includes/summaries/class-wdgpt-summaries-table.php:2 66960 #: includes/summaries/class-wdgpt-summaries-table.php:281 957 961 msgid "Search" 958 962 msgstr "Cerca" 959 963 960 #: includes/summaries/class-wdgpt-summaries-table.php: 296961 #: includes/summaries/class-wdgpt-summaries-table.php:3 75964 #: includes/summaries/class-wdgpt-summaries-table.php:311 965 #: includes/summaries/class-wdgpt-summaries-table.php:391 962 966 msgid "Active" 963 967 msgstr "Attivo" 964 968 965 #: includes/summaries/class-wdgpt-summaries-table.php: 297969 #: includes/summaries/class-wdgpt-summaries-table.php:312 966 970 msgid "Inactive" 967 971 msgstr "Inattivo" 968 972 969 #: includes/summaries/class-wdgpt-summaries-table.php: 298970 #: includes/summaries/class-wdgpt-summaries-table.php:3 73973 #: includes/summaries/class-wdgpt-summaries-table.php:313 974 #: includes/summaries/class-wdgpt-summaries-table.php:389 971 975 msgid "Embeddings" 972 976 msgstr "Incorporazioni" 973 977 974 #: includes/summaries/class-wdgpt-summaries-table.php: 299978 #: includes/summaries/class-wdgpt-summaries-table.php:314 975 979 msgid "No Embeddings" 976 980 msgstr "Nessun incorporamento" 977 981 978 #: includes/summaries/class-wdgpt-summaries-table.php:3 00982 #: includes/summaries/class-wdgpt-summaries-table.php:315 979 983 msgid "Up to date" 980 984 msgstr "Aggiornato" 981 985 982 #: includes/summaries/class-wdgpt-summaries-table.php:3 01986 #: includes/summaries/class-wdgpt-summaries-table.php:316 983 987 msgid "Not up to date" 984 988 msgstr "Non aggiornato" 985 989 986 #: includes/summaries/class-wdgpt-summaries-table.php:3 32990 #: includes/summaries/class-wdgpt-summaries-table.php:347 987 991 msgid "Filter" 988 992 msgstr "Filtro" 989 993 990 #: includes/summaries/class-wdgpt-summaries-table.php:3 59994 #: includes/summaries/class-wdgpt-summaries-table.php:374 991 995 msgid "" 992 996 "Embeddings are used to find the most similar posts/pages to the user query. " … … 1000 1004 "un post/pagina, fare clic sul link \"Genera embeddings\"." 1001 1005 1002 #: includes/summaries/class-wdgpt-summaries-table.php:3 621006 #: includes/summaries/class-wdgpt-summaries-table.php:378 1003 1007 msgid "Title" 1004 1008 msgstr "Titolo" 1005 1009 1006 #: includes/summaries/class-wdgpt-summaries-table.php:3 661010 #: includes/summaries/class-wdgpt-summaries-table.php:382 1007 1011 msgid "Language" 1008 1012 msgstr "Lingua" 1009 1013 1010 #: includes/summaries/class-wdgpt-summaries-table.php:3 721014 #: includes/summaries/class-wdgpt-summaries-table.php:388 1011 1015 msgid "Last Post Modification" 1012 1016 msgstr "Modifica dell'ultimo messaggio" 1013 1017 1014 #: includes/summaries/class-wdgpt-summaries-table.php:3 741018 #: includes/summaries/class-wdgpt-summaries-table.php:390 1015 1019 msgid "Last Embeddings Generation" 1016 1020 msgstr "Ultima generazione di incorporazioni" 1017 1021 1018 #: includes/summaries/class-wdgpt-summaries-table.php: 3891022 #: includes/summaries/class-wdgpt-summaries-table.php:405 1019 1023 msgid "Content" 1020 1024 msgstr "Contenuto" 1025 1026 #: includes/summaries/class-wdgpt-summaries-table.php:622 1027 #, php-format 1028 msgid "%d items activated. %d items skipped (no embeddings)." 1029 msgstr "%d elementi attivati. %d elementi saltati (nessun embedding)." 1030 1031 #: includes/summaries/class-wdgpt-summaries-table.php:640 1032 #, php-format 1033 msgid "%d items deactivated. %d items skipped (not active)." 1034 msgstr "%d voci disattivate. %d voci saltate (non attive)." 1035 1036 #: includes/summaries/class-wdgpt-summaries-table.php:677 1037 #, php-format 1038 msgid "Embeddings generation started for %d items. %d items skipped." 1039 msgstr "" 1040 "Generazione delle incorporazioni avviata per %d elementi. %d elementi " 1041 "saltati." 1021 1042 1022 1043 #: includes/summaries/wdgpt-config-summary.php:24 -
smartsearchwp/trunk/languages/webdigit-chatbot-nl_NL.po
r3199870 r3239989 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: webdigit-chatbot\n"4 "POT-Creation-Date: 202 4-11-30 12:15+0100\n"5 "PO-Revision-Date: 202 4-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" 6 6 "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" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=UTF-8\n" … … 12 12 "X-Generator: Poedit 3.5\n" 13 13 "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" 15 20 "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" 17 24 18 25 #: class-wdgpt-chatbot-initializer.php:229 … … 34 41 35 42 #: class-wdgpt-chatbot-initializer.php:233 36 #: class-wdgpt-chatbot-initializer.php:28 343 #: class-wdgpt-chatbot-initializer.php:284 37 44 #: includes/summaries/class-wdgpt-summaries-table.php:65 38 45 msgid "Regenerate Embeddings" … … 40 47 41 48 #: class-wdgpt-chatbot-initializer.php:234 42 #: class-wdgpt-chatbot-initializer.php:28 449 #: class-wdgpt-chatbot-initializer.php:285 43 50 #: includes/addons/wdgpt-addons-catalog-settings.php:207 44 51 #: includes/summaries/class-wdgpt-summaries-table.php:85 52 #: includes/summaries/class-wdgpt-summaries-table.php:121 45 53 msgid "Activate" 46 54 msgstr "Activeer" 47 55 48 56 #: class-wdgpt-chatbot-initializer.php:235 49 #: class-wdgpt-chatbot-initializer.php:28 557 #: class-wdgpt-chatbot-initializer.php:286 50 58 #: includes/addons/wdgpt-addons-catalog-settings.php:205 51 59 #: includes/summaries/class-wdgpt-summaries-table.php:81 60 #: includes/summaries/class-wdgpt-summaries-table.php:122 52 61 msgid "Deactivate" 53 62 msgstr "Deactiveer" … … 58 67 59 68 #: class-wdgpt-chatbot-initializer.php:237 60 #: includes/config/wdgpt-config-general-settings.php:50 069 #: includes/config/wdgpt-config-general-settings.php:503 61 70 #: includes/wdgpt-client.php:141 62 71 msgid "Bonjour, je suis SmartSearchWP, comment puis-je vous aider ?" 63 72 msgstr "Hallo, ik ben SmartSearchWP, hoe kan ik u helpen?" 64 73 65 #: class-wdgpt-chatbot-initializer.php:28 6includes/wdgpt-config.php:2974 #: class-wdgpt-chatbot-initializer.php:287 includes/wdgpt-config.php:29 66 75 msgid "Please enter your api key!" 67 76 msgstr "Voer alstublieft uw API-sleutel in!" 68 77 69 #: class-wdgpt-chatbot-initializer.php:28 778 #: class-wdgpt-chatbot-initializer.php:288 70 79 msgid "" 71 80 "Your api key is invalid! If you think this is a mistake, please check your " … … 77 86 "problemen heeft of down is." 78 87 79 #: class-wdgpt-chatbot-initializer.php:28 888 #: class-wdgpt-chatbot-initializer.php:289 80 89 msgid "Your api key is valid! Don't forget to save your changes." 81 90 msgstr "Uw api-sleutel is geldig! Vergeet niet uw wijzigingen op te slaan." 82 91 83 #: class-wdgpt-chatbot-initializer.php:2 8984 #: includes/config/wdgpt-config-general-settings.php:25 092 #: class-wdgpt-chatbot-initializer.php:290 93 #: includes/config/wdgpt-config-general-settings.php:253 85 94 msgid "" 86 95 "The previously selected model is not available anymore with your current api " … … 92 101 "een nieuw model. Uw vorige model was: " 93 102 94 #: class-wdgpt-chatbot-initializer.php:29 0103 #: class-wdgpt-chatbot-initializer.php:291 95 104 #: includes/addons/wdgpt-addons-license-settings.php:151 96 105 msgid "You currently have a free license key." 97 106 msgstr "U hebt momenteel een gratis licentiesleutel." 98 107 99 #: class-wdgpt-chatbot-initializer.php:29 1108 #: class-wdgpt-chatbot-initializer.php:292 100 109 msgid "" 101 110 "There was an issue retrieving your free license key. Please try again later." … … 104 113 "Probeer het later nog eens." 105 114 106 #: class-wdgpt-chatbot-initializer.php:29 2115 #: class-wdgpt-chatbot-initializer.php:293 107 116 #: includes/addons/wdgpt-addons-license-settings.php:63 108 117 msgid "" … … 113 122 "huidige site. U kunt nu de premium functies gebruiken." 114 123 115 #: class-wdgpt-chatbot-initializer.php:29 3124 #: class-wdgpt-chatbot-initializer.php:294 116 125 #: includes/addons/wdgpt-addons-license-settings.php:58 117 126 msgid "" … … 122 131 "licentiesleutel." 123 132 124 #: class-wdgpt-chatbot-initializer.php:29 4133 #: class-wdgpt-chatbot-initializer.php:295 125 134 msgid "" 126 135 "Your SmartSearchWP Premium license was already registered with the current " … … 130 139 "U kunt de premium functies gebruiken." 131 140 132 #: class-wdgpt-chatbot-initializer.php:29 5141 #: class-wdgpt-chatbot-initializer.php:296 133 142 msgid "" 134 143 "Your SmartSearchWP Premium license was already registered with another site. " … … 140 149 "je denkt dat dit niet zou moeten gebeuren." 141 150 142 #: class-wdgpt-chatbot-initializer.php:29 6151 #: class-wdgpt-chatbot-initializer.php:297 143 152 msgid "" 144 153 "There was an issue registering your SmartSearchWP Premium license with the " … … 150 159 "contact op met support als het probleem zich blijft voordoen." 151 160 152 #: class-wdgpt-chatbot-initializer.php:29 7161 #: class-wdgpt-chatbot-initializer.php:298 153 162 msgid "" 154 163 "There was an issue retrieving the expiry date of your SmartSearchWP Premium " … … 159 168 "op met support als het probleem zich blijft voordoen." 160 169 161 #: class-wdgpt-chatbot-initializer.php:29 8170 #: class-wdgpt-chatbot-initializer.php:299 162 171 msgid "" 163 172 "Your SmartSearchWP Premium license has expired. Please renew it to continue " … … 168 177 "opnieuw." 169 178 170 #: class-wdgpt-chatbot-initializer.php:356171 179 #: class-wdgpt-chatbot-initializer.php:357 180 #: class-wdgpt-chatbot-initializer.php:358 172 181 msgid "Settings" 173 182 msgstr "Instellingen" 174 183 175 #: class-wdgpt-chatbot-initializer.php:364176 184 #: class-wdgpt-chatbot-initializer.php:365 185 #: class-wdgpt-chatbot-initializer.php:366 177 186 msgid "Summary_title" 178 187 msgstr "Samenvattingen" 179 188 180 #: class-wdgpt-chatbot-initializer.php:372181 189 #: class-wdgpt-chatbot-initializer.php:373 190 #: class-wdgpt-chatbot-initializer.php:374 182 191 #: includes/logs/wdgpt-config-logs.php:26 183 192 msgid "Chat Logs" 184 193 msgstr "Logboeken chatten" 185 194 186 #: class-wdgpt-chatbot-initializer.php:381187 195 #: class-wdgpt-chatbot-initializer.php:382 196 #: class-wdgpt-chatbot-initializer.php:383 188 197 #: includes/logs/wdgpt-config-error-logs.php:26 189 198 msgid "Error Logs" 190 199 msgstr "Foutlogboeken" 191 200 192 #: class-wdgpt-chatbot-initializer.php:390193 201 #: class-wdgpt-chatbot-initializer.php:391 202 #: class-wdgpt-chatbot-initializer.php:392 194 203 msgid "Addons" 195 204 msgstr "Addons" … … 365 374 msgstr "Ga voor alles met betrekking tot de SmartSearchWP Premium-versie naar" 366 375 376 #. Plugin Name of the plugin/theme 367 377 #: includes/addons/wdgpt-addons-license-settings.php:31 368 378 msgid "SmartSearchWP" … … 456 466 msgstr "Ontvang uw gratis licentie" 457 467 458 #: includes/addons/wdgpt-addons.php:2 3468 #: includes/addons/wdgpt-addons.php:26 459 469 msgid "Addons manager" 460 470 msgstr "Addons manager" 461 471 462 #: includes/addons/wdgpt-addons.php:2 4472 #: includes/addons/wdgpt-addons.php:27 463 473 msgid "License settings" 464 474 msgstr "Licentie-instellingen" … … 534 544 "optie allow_url_fopen in uw php.ini bestand in." 535 545 536 #: includes/config/wdgpt-config-general-settings.php:14 5546 #: includes/config/wdgpt-config-general-settings.php:148 537 547 msgid "Enable Chatbot:" 538 548 msgstr "Activeren van de chatbot:" 539 549 540 #: includes/config/wdgpt-config-general-settings.php:16 1550 #: includes/config/wdgpt-config-general-settings.php:164 541 551 msgid "OpenAi API Key:" 542 552 msgstr "OpenAi API sleutel:" 543 553 544 #: includes/config/wdgpt-config-general-settings.php:17 1554 #: includes/config/wdgpt-config-general-settings.php:174 545 555 msgid "Validate Key" 546 556 msgstr "Valideer sleutel" 547 557 548 #: includes/config/wdgpt-config-general-settings.php:18 5558 #: includes/config/wdgpt-config-general-settings.php:188 549 559 msgid "You can get your api key" 550 560 msgstr "Voer alstublieft uw API-sleutel in!U kunt uw API-sleutel verkrijgen" 551 561 552 #: includes/config/wdgpt-config-general-settings.php:19 2562 #: includes/config/wdgpt-config-general-settings.php:195 553 563 msgid "here" 554 564 msgstr "hier" 555 565 556 #: includes/config/wdgpt-config-general-settings.php:20 4566 #: includes/config/wdgpt-config-general-settings.php:207 557 567 msgid "ChatGPT Model:" 558 568 msgstr "Model ChatGPT:" 559 569 560 #: includes/config/wdgpt-config-general-settings.php:26 1570 #: includes/config/wdgpt-config-general-settings.php:264 561 571 msgid "" 562 572 "If you want to use gpt-4o, you must subscribe to chatgpt plus. The model " … … 567 577 "kosten." 568 578 569 #: includes/config/wdgpt-config-general-settings.php:27 2579 #: includes/config/wdgpt-config-general-settings.php:275 570 580 msgid "Chatbot Name:" 571 581 msgstr "Chatbot naam:" 572 582 573 #: includes/config/wdgpt-config-general-settings.php:28 3583 #: includes/config/wdgpt-config-general-settings.php:286 574 584 msgid "Chatbot Logo:" 575 585 msgstr "Chatbot-logo:" 576 586 577 #: includes/config/wdgpt-config-general-settings.php:3 19587 #: includes/config/wdgpt-config-general-settings.php:322 578 588 msgid "Temperature:" 579 589 msgstr "Temperatuur:" 580 590 581 #: includes/config/wdgpt-config-general-settings.php:3 39591 #: includes/config/wdgpt-config-general-settings.php:342 582 592 msgid "" 583 593 "The temperature parameter influences the level of randomness in the output " … … 594 604 "onvoorspelbaarder." 595 605 596 #: includes/config/wdgpt-config-general-settings.php:35 0606 #: includes/config/wdgpt-config-general-settings.php:353 597 607 msgid "Max used contexts:" 598 608 msgstr "Max. gebruikte contexten:" 599 609 600 #: includes/config/wdgpt-config-general-settings.php:37 4610 #: includes/config/wdgpt-config-general-settings.php:377 601 611 msgid "" 602 612 "The maximum number of contexts that the model can use to generate an answer. " … … 617 627 "waarde verhogen tot 10." 618 628 619 #: includes/config/wdgpt-config-general-settings.php:38 5629 #: includes/config/wdgpt-config-general-settings.php:388 620 630 msgid "Similarity threshold:" 621 631 msgstr "Gelijksoortigheidsdrempel:" 622 632 623 #: includes/config/wdgpt-config-general-settings.php:41 0633 #: includes/config/wdgpt-config-general-settings.php:413 624 634 #, no-php-format 625 635 msgid "" … … 645 655 "wilt geven aan creativiteit, kunt u deze waarde verhogen tot 10." 646 656 647 #: includes/config/wdgpt-config-general-settings.php:42 1657 #: includes/config/wdgpt-config-general-settings.php:424 648 658 msgid "Precision threshold:" 649 659 msgstr "Nauwkeurigheidsdrempel:" 650 660 651 #: includes/config/wdgpt-config-general-settings.php:44 6661 #: includes/config/wdgpt-config-general-settings.php:449 652 662 msgid "" 653 663 "The minimum precision required for a context to be considered eligible " … … 666 676 "zijn." 667 677 668 #: includes/config/wdgpt-config-general-settings.php:4 57678 #: includes/config/wdgpt-config-general-settings.php:460 669 679 msgid "Enable Chatbot Bubble:" 670 680 msgstr "Activeer de phylactery :" 671 681 672 #: includes/config/wdgpt-config-general-settings.php:47 3682 #: includes/config/wdgpt-config-general-settings.php:476 673 683 msgid "Chatbot Bubble Typing Text:" 674 684 msgstr "Chatbot Bubbel die tekst typt:" 675 685 676 #: includes/config/wdgpt-config-general-settings.php:4 79686 #: includes/config/wdgpt-config-general-settings.php:482 677 687 #: includes/wdgpt-client.php:121 678 688 msgid "Hello, may I help you?" 679 689 msgstr "Hallo, kan ik u helpen?" 680 690 681 #: includes/config/wdgpt-config-general-settings.php:48 3691 #: includes/config/wdgpt-config-general-settings.php:486 682 692 msgid "" 683 693 "This is the text that will be displayed in the chat bubble above the circle " … … 689 699 "de standaardvertaling gebruikt." 690 700 691 #: includes/config/wdgpt-config-general-settings.php:49 4701 #: includes/config/wdgpt-config-general-settings.php:497 692 702 msgid "Greetings Message:" 693 703 msgstr "Begroetingsbericht:" 694 704 695 #: includes/config/wdgpt-config-general-settings.php:50 4705 #: includes/config/wdgpt-config-general-settings.php:507 696 706 msgid "" 697 707 "This is the message that will be displayed when the chatbot will be greeting " … … 703 713 "bepaalde taal, wordt de standaardvertaling gebruikt." 704 714 705 #: includes/config/wdgpt-config-general-settings.php:51 5715 #: includes/config/wdgpt-config-general-settings.php:518 706 716 #: includes/config/wdgpt-config-reporting-settings.php:255 707 717 msgid "Save Changes" … … 846 856 #: includes/logs/class-wdgpt-error-logs-table.php:76 847 857 #: includes/logs/class-wdgpt-logs-table.php:208 848 #: includes/summaries/class-wdgpt-summaries-table.php: 388858 #: includes/summaries/class-wdgpt-summaries-table.php:404 849 859 msgid "ID" 850 860 msgstr "ID" … … 902 912 903 913 #. translators: %d: number of months 914 #: includes/logs/wdgpt-config-error-logs.php:36 904 915 #: includes/logs/wdgpt-config-logs.php:36 905 916 #, php-format … … 916 927 917 928 #: includes/summaries/class-wdgpt-summaries-table.php:65 929 #: includes/summaries/class-wdgpt-summaries-table.php:123 918 930 msgid "Generate Embeddings" 919 931 msgstr "AI trainen" … … 927 939 "embeddings genereert." 928 940 929 #: includes/summaries/class-wdgpt-summaries-table.php:2 48930 #: includes/summaries/class-wdgpt-summaries-table.php: 295941 #: includes/summaries/class-wdgpt-summaries-table.php:263 942 #: includes/summaries/class-wdgpt-summaries-table.php:310 931 943 msgid "All" 932 944 msgstr "Alle" 933 945 934 #: includes/summaries/class-wdgpt-summaries-table.php:2 66946 #: includes/summaries/class-wdgpt-summaries-table.php:281 935 947 msgid "Search" 936 948 msgstr "Zoek op" 937 949 938 #: includes/summaries/class-wdgpt-summaries-table.php: 296939 #: includes/summaries/class-wdgpt-summaries-table.php:3 75950 #: includes/summaries/class-wdgpt-summaries-table.php:311 951 #: includes/summaries/class-wdgpt-summaries-table.php:391 940 952 msgid "Active" 941 953 msgstr "Oorsprong" 942 954 943 #: includes/summaries/class-wdgpt-summaries-table.php: 297955 #: includes/summaries/class-wdgpt-summaries-table.php:312 944 956 msgid "Inactive" 945 957 msgstr "Inactief" 946 958 947 #: includes/summaries/class-wdgpt-summaries-table.php: 298948 #: includes/summaries/class-wdgpt-summaries-table.php:3 73959 #: includes/summaries/class-wdgpt-summaries-table.php:313 960 #: includes/summaries/class-wdgpt-summaries-table.php:389 949 961 msgid "Embeddings" 950 962 msgstr "Inbeddingen" 951 963 952 #: includes/summaries/class-wdgpt-summaries-table.php: 299964 #: includes/summaries/class-wdgpt-summaries-table.php:314 953 965 msgid "No Embeddings" 954 966 msgstr "Geen inbeddingen" 955 967 956 #: includes/summaries/class-wdgpt-summaries-table.php:3 00968 #: includes/summaries/class-wdgpt-summaries-table.php:315 957 969 msgid "Up to date" 958 970 msgstr "Up-to-date" 959 971 960 #: includes/summaries/class-wdgpt-summaries-table.php:3 01972 #: includes/summaries/class-wdgpt-summaries-table.php:316 961 973 msgid "Not up to date" 962 974 msgstr "Niet up-to-date" 963 975 964 #: includes/summaries/class-wdgpt-summaries-table.php:3 32976 #: includes/summaries/class-wdgpt-summaries-table.php:347 965 977 msgid "Filter" 966 978 msgstr "Filter" 967 979 968 #: includes/summaries/class-wdgpt-summaries-table.php:3 59980 #: includes/summaries/class-wdgpt-summaries-table.php:374 969 981 msgid "" 970 982 "Embeddings are used to find the most similar posts/pages to the user query. " … … 978 990 "genereren\"." 979 991 980 #: includes/summaries/class-wdgpt-summaries-table.php:3 62992 #: includes/summaries/class-wdgpt-summaries-table.php:378 981 993 msgid "Title" 982 994 msgstr "Titel" 983 995 984 #: includes/summaries/class-wdgpt-summaries-table.php:3 66996 #: includes/summaries/class-wdgpt-summaries-table.php:382 985 997 msgid "Language" 986 998 msgstr "Taal" 987 999 988 #: includes/summaries/class-wdgpt-summaries-table.php:3 721000 #: includes/summaries/class-wdgpt-summaries-table.php:388 989 1001 msgid "Last Post Modification" 990 1002 msgstr "Laatste inhoudswijziging" 991 1003 992 #: includes/summaries/class-wdgpt-summaries-table.php:3 741004 #: includes/summaries/class-wdgpt-summaries-table.php:390 993 1005 msgid "Last Embeddings Generation" 994 1006 msgstr "Laatste inbeddingsgeneratie" 995 1007 996 #: includes/summaries/class-wdgpt-summaries-table.php: 3891008 #: includes/summaries/class-wdgpt-summaries-table.php:405 997 1009 msgid "Content" 998 1010 msgstr "Inhoud" 1011 1012 #: includes/summaries/class-wdgpt-summaries-table.php:622 1013 #, php-format 1014 msgid "%d items activated. %d items skipped (no embeddings)." 1015 msgstr "%d items geactiveerd. %d items overgeslagen (geen embeddings)." 1016 1017 #: includes/summaries/class-wdgpt-summaries-table.php:640 1018 #, php-format 1019 msgid "%d items deactivated. %d items skipped (not active)." 1020 msgstr "%d items gedeactiveerd. %d items overgeslagen (niet actief)." 1021 1022 #: includes/summaries/class-wdgpt-summaries-table.php:677 1023 #, php-format 1024 msgid "Embeddings generation started for %d items. %d items skipped." 1025 msgstr "Embeddings genereren gestart voor %d items. %d items overgeslagen." 999 1026 1000 1027 #: includes/summaries/wdgpt-config-summary.php:24 … … 1132 1159 "De plugin SmartSearchWP moet de database bijwerken. Klik op de onderstaande " 1133 1160 "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 1164 msgid "https://www.smartsearchwp.com/" 1165 msgstr "https://www.smartsearchwp.com/" 1166 1167 #. Description of the plugin/theme 1168 msgid "" 1169 "A chatbot that helps users navigate your website and find what they're " 1170 "looking for." 1171 msgstr "" 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 1176 msgid "Webdigit" 1177 msgstr "Webdigit" 1134 1178 1135 1179 #~ msgid "Posts" -
smartsearchwp/trunk/readme.txt
r3237420 r3239989 5 5 Requires at least: 4.7 6 6 Tested up to: 6.7.1 7 Stable tag: 2.4.1 07 Stable tag: 2.4.11 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 90 90 == Changelog == 91 91 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 92 97 = 2.4.10 = 93 98 * Update translations for all existing languages … … 95 100 * Add Spanish (es_ES) translations 96 101 * 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) 98 103 99 104 = 2.4.9 = -
smartsearchwp/trunk/wdgpt.php
r3237433 r3239989 4 4 * Description: A chatbot that helps users navigate your website and find what they're looking for. 5 5 * Plugin URI: https://www.smartsearchwp.com/ 6 * Version: 2.4.1 06 * Version: 2.4.11 7 7 * Author: Webdigit 8 8 * Author URI: https://www.smartsearchwp.com/ … … 19 19 } 20 20 21 define( 'WDGPT_CHATBOT_VERSION', '2.4.1 0' );21 define( 'WDGPT_CHATBOT_VERSION', '2.4.11' ); 22 22 23 23
Note: See TracChangeset
for help on using the changeset viewer.