WhatsApp me - Version 4.3.1

Version Description

  • FIX empty phone notice dismiss.
Download this release

Release Info

Developer pacotole
Plugin Icon 128x128 WhatsApp me
Version 4.3.1
Comparing to
See all releases

Code changes from version 4.3.0 to 4.3.1

README.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Chat, Click to Chat, Facebook Messenger, WhatsApp, Telegram, Whatsapp Busi
5
  Requires at least: 3.5.0
6
  Tested up to: 5.9
7
  Requires PHP: 5.3
8
- Stable tag: 4.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -250,6 +250,9 @@ Join.chat save two localStorage variables for proper operation:
250
 
251
  == Changelog ==
252
 
 
 
 
253
  = 4.3 =
254
  * **NEW:** Customize in category/tag archive page.
255
  * UPDATED styles for better browsers support.
5
  Requires at least: 3.5.0
6
  Tested up to: 5.9
7
  Requires PHP: 5.3
8
+ Stable tag: 4.3.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
250
 
251
  == Changelog ==
252
 
253
+ = 4.3.1 =
254
+ * FIX empty phone notice dismiss.
255
+
256
  = 4.3 =
257
  * **NEW:** Customize in category/tag archive page.
258
  * UPDATED styles for better browsers support.
admin/class-joinchat-admin.php CHANGED
@@ -363,6 +363,11 @@ class JoinChatAdmin {
363
 
364
  add_settings_error( $this->plugin_name, 'settings_updated', __( 'Settings saved', 'creame-whatsapp-me' ), 'updated' );
365
 
 
 
 
 
 
366
  // Extra actions on save
367
  do_action( 'joinchat_settings_validation', $input, $this->settings );
368
 
@@ -669,35 +674,50 @@ class JoinChatAdmin {
669
  */
670
  public function notices() {
671
 
672
- $current_screen = get_current_screen();
673
-
674
- // Save notice dismiss one month
675
- if ( isset( $_GET['joinchat-ignore-notice'] ) ) {
676
- set_transient( 'joinchat_notice_dismiss__' . get_current_user_id(), true, MONTH_IN_SECONDS );
677
  }
678
 
 
 
679
  // If no phone number defined
680
- if ( ( ! defined( 'DISABLE_NAG_NOTICES' ) || ! DISABLE_NAG_NOTICES )
681
- && empty( $this->settings['telephone'] )
682
  && current_user_can( JoinChatUtil::capability() )
683
  && ( $current_screen && false === strpos( $current_screen->id, '_joinchat' ) )
684
- && ! get_transient( 'joinchat_notice_dismiss__' . get_current_user_id() )
685
  ) {
686
 
687
  printf(
688
- '<div class="notice notice-info"><p><strong>Join.chat</strong>&nbsp;&nbsp;%s %s %s</p></div>',
689
  __( 'You only need to add your WhatsApp number to contact with your users.', 'creame-whatsapp-me' ),
690
- sprintf( '<a href="%s" class="button-primary">%s</a>', JoinChatUtil::admin_url(), __( 'Settings', 'creame-whatsapp-me' ) ),
691
- sprintf(
692
- '<a href="%s" class="button-secondary">%s</a>',
693
- add_query_arg( 'joinchat-ignore-notice', '', home_url( $_SERVER['REQUEST_URI'] ) ),
694
- __( 'Dismiss', 'creame-whatsapp-me' )
695
- )
 
 
696
  );
697
  }
698
 
699
  }
700
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
701
  /**
702
  * Add a help tab to the options page in the WordPress admin
703
  *
363
 
364
  add_settings_error( $this->plugin_name, 'settings_updated', __( 'Settings saved', 'creame-whatsapp-me' ), 'updated' );
365
 
366
+ // Delete notice option
367
+ if ( $input['telephone'] ) {
368
+ delete_option( 'joinchat_notice_dismiss' );
369
+ }
370
+
371
  // Extra actions on save
372
  do_action( 'joinchat_settings_validation', $input, $this->settings );
373
 
674
  */
675
  public function notices() {
676
 
677
+ if ( defined( 'DISABLE_NAG_NOTICES' ) && DISABLE_NAG_NOTICES ) {
678
+ return;
 
 
 
679
  }
680
 
681
+ $current_screen = get_current_screen();
682
+
683
  // If no phone number defined
684
+ if ( empty( $this->settings['telephone'] )
 
685
  && current_user_can( JoinChatUtil::capability() )
686
  && ( $current_screen && false === strpos( $current_screen->id, '_joinchat' ) )
687
+ && time() >= (int) get_option( 'joinchat_notice_dismiss' )
688
  ) {
689
 
690
  printf(
691
+ '<div class="notice notice-info is-dismissible" id="joinchat-empty-phone"><p><strong>Join.chat</strong>&nbsp;&nbsp;%s %s</p></div>',
692
  __( 'You only need to add your WhatsApp number to contact with your users.', 'creame-whatsapp-me' ),
693
+ sprintf( '<a href="%s"><strong>%s</strong></a>', JoinChatUtil::admin_url(), __( 'Go to settings', 'creame-whatsapp-me' ) )
694
+ );
695
+
696
+ printf(
697
+ '<script>jQuery("#joinchat-empty-phone").on("click", ".notice-dismiss", function () {' .
698
+ 'jQuery.post(ajaxurl, { action: "joinchat_notice_dismiss", nonce: "%s"}, null, "json");' .
699
+ '});</script>',
700
+ wp_create_nonce( 'joinchat_nonce' )
701
  );
702
  }
703
 
704
  }
705
 
706
+ /**
707
+ * Notice Dismiss
708
+ *
709
+ * @since 4.3.1
710
+ * @access public
711
+ * @return void
712
+ */
713
+ public function ajax_notice_dismiss() {
714
+
715
+ check_ajax_referer( 'joinchat_nonce', 'nonce', true );
716
+ update_option( 'joinchat_notice_dismiss', time() + MONTH_IN_SECONDS, true );
717
+ wp_send_json_success();
718
+
719
+ }
720
+
721
  /**
722
  * Add a help tab to the options page in the WordPress admin
723
  *
includes/class-joinchat.php CHANGED
@@ -156,6 +156,7 @@ class JoinChat {
156
  $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'register_scripts' );
157
  $this->loader->add_action( 'admin_menu', $plugin_admin, 'add_menu' );
158
  $this->loader->add_action( 'admin_notices', $plugin_admin, 'notices' );
 
159
  $this->loader->add_action( 'add_meta_boxes', $plugin_admin, 'add_meta_boxes' );
160
  $this->loader->add_action( 'admin_init', $plugin_admin, 'add_term_meta_boxes' );
161
  $this->loader->add_action( 'save_post', $plugin_admin, 'save_meta', 10, 2 );
156
  $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'register_scripts' );
157
  $this->loader->add_action( 'admin_menu', $plugin_admin, 'add_menu' );
158
  $this->loader->add_action( 'admin_notices', $plugin_admin, 'notices' );
159
+ $this->loader->add_action( 'wp_ajax_joinchat_notice_dismiss', $plugin_admin, 'ajax_notice_dismiss' );
160
  $this->loader->add_action( 'add_meta_boxes', $plugin_admin, 'add_meta_boxes' );
161
  $this->loader->add_action( 'admin_init', $plugin_admin, 'add_term_meta_boxes' );
162
  $this->loader->add_action( 'save_post', $plugin_admin, 'save_meta', 10, 2 );
joinchat.php CHANGED
@@ -9,7 +9,7 @@
9
  * Plugin Name: Join.chat
10
  * Plugin URI: https://join.chat
11
  * Description: Connects a WordPress chat with WhatsApp. The best solution for marketing and support. Stop losing customers and increase your sales.
12
- * Version: 4.3.0
13
  * Author: Creame
14
  * Author URI: https://crea.me
15
  * License: GPL-2.0+
@@ -26,7 +26,7 @@ if ( ! defined( 'WPINC' ) ) {
26
  /**
27
  * Define constants.
28
  */
29
- define( 'JOINCHAT_VERSION', '4.3.0' );
30
  define( 'JOINCHAT_FILE', __FILE__ );
31
  define( 'JOINCHAT_DIR', plugin_dir_path( JOINCHAT_FILE ) );
32
  define( 'JOINCHAT_BASENAME', plugin_basename( JOINCHAT_FILE ) );
9
  * Plugin Name: Join.chat
10
  * Plugin URI: https://join.chat
11
  * Description: Connects a WordPress chat with WhatsApp. The best solution for marketing and support. Stop losing customers and increase your sales.
12
+ * Version: 4.3.1
13
  * Author: Creame
14
  * Author URI: https://crea.me
15
  * License: GPL-2.0+
26
  /**
27
  * Define constants.
28
  */
29
+ define( 'JOINCHAT_VERSION', '4.3.1' );
30
  define( 'JOINCHAT_FILE', __FILE__ );
31
  define( 'JOINCHAT_DIR', plugin_dir_path( JOINCHAT_FILE ) );
32
  define( 'JOINCHAT_BASENAME', plugin_basename( JOINCHAT_FILE ) );
languages/creame-whatsapp-me.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Join.chat\n"
5
- "POT-Creation-Date: 2022-01-18 15:14+0000\n"
6
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
7
  "Last-Translator: Your Name <you@example.com>\n"
8
  "Language-Team: Creame <hola@crea.me>\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "Language: "
23
 
24
- #: admin/class-joinchat-woo-admin.php:238
25
  msgid ""
26
  "*Hi {SITE}!*\n"
27
  "I have a question about *{PRODUCT} ({SKU})*"
@@ -31,25 +31,25 @@ msgstr ""
31
  msgid "404 Page"
32
  msgstr ""
33
 
34
- #: admin/class-joinchat-woo-admin.php:275
35
  msgid "<strong>WooCommerce</strong>, in product pages you can also use:"
36
  msgstr ""
37
 
38
- #: admin/class-joinchat-admin.php:551
39
  #, php-format
40
  msgid "Add links, images, videos and more with %s"
41
  msgstr ""
42
 
43
- #: admin/class-joinchat-admin.php:494
44
  #, php-format
45
  msgid "Add unlimited numbers with %1$s or multiple contacts with %2$s"
46
  msgstr ""
47
 
48
- #: admin/class-joinchat-admin.php:825
49
  msgid "Add-ons"
50
  msgstr ""
51
 
52
- #: admin/class-joinchat-admin.php:744
53
  msgid "Adding some CSS classes in your HTML:"
54
  msgstr ""
55
 
@@ -61,7 +61,7 @@ msgstr ""
61
  msgid "Author Archives"
62
  msgstr ""
63
 
64
- #: admin/class-joinchat-admin.php:593
65
  msgid "Auto (detects device dark mode)"
66
  msgstr ""
67
 
@@ -69,7 +69,7 @@ msgstr ""
69
  msgid "Blog Page"
70
  msgstr ""
71
 
72
- #: admin/class-joinchat-admin.php:421
73
  msgid "Button"
74
  msgstr ""
75
 
@@ -81,23 +81,24 @@ msgstr ""
81
  msgid "Button Text"
82
  msgstr ""
83
 
84
- #: admin/class-joinchat-admin.php:238 admin/class-joinchat-admin.php:966
 
85
  msgid "Call to Action"
86
  msgstr ""
87
 
88
- #: admin/class-joinchat-woo-admin.php:149
89
  msgid "Call to Action for Products"
90
  msgstr ""
91
 
92
- #: admin/class-joinchat-woo-admin.php:150
93
  msgid "Call to Action for Products on Sale"
94
  msgstr ""
95
 
96
- #: admin/class-joinchat-admin.php:973
97
  msgid "Can use vars"
98
  msgstr ""
99
 
100
- #: admin/class-joinchat-woo-admin.php:130
101
  msgid "Cart"
102
  msgstr ""
103
 
@@ -105,15 +106,15 @@ msgstr ""
105
  msgid "Chat Delay"
106
  msgstr ""
107
 
108
- #: admin/class-joinchat-admin.php:426
109
  msgid "Chat Window"
110
  msgstr ""
111
 
112
- #: admin/class-joinchat-admin.php:568
113
  msgid "Chat Window auto displays after delay"
114
  msgstr ""
115
 
116
- #: admin/class-joinchat-admin.php:573
117
  msgid "Chat Window auto displays from this number of page views"
118
  msgstr ""
119
 
@@ -121,7 +122,7 @@ msgstr ""
121
  msgid "Check translations"
122
  msgstr ""
123
 
124
- #: admin/class-joinchat-woo-admin.php:131
125
  msgid "Checkout"
126
  msgstr ""
127
 
@@ -135,13 +136,13 @@ msgid ""
135
  "support. Stop losing customers and increase your sales."
136
  msgstr ""
137
 
138
- #: admin/class-joinchat-admin.php:492
139
  msgid ""
140
  "Contact phone number <strong>(the button will not be shown if it's empty)"
141
  "</strong>"
142
  msgstr ""
143
 
144
- #: admin/class-joinchat-admin.php:743 admin/class-joinchat-admin.php:755
145
  msgid "Contact us"
146
  msgstr ""
147
 
@@ -149,15 +150,15 @@ msgstr ""
149
  msgid "Creame"
150
  msgstr ""
151
 
152
- #: admin/class-joinchat-admin.php:451
153
  msgid "Custom Post Types"
154
  msgstr ""
155
 
156
- #: admin/class-joinchat-admin.php:606
157
  msgid "Custom:"
158
  msgstr ""
159
 
160
- #: admin/class-joinchat-admin.php:241 admin/class-joinchat-admin.php:587
161
  msgid "Dark Mode"
162
  msgstr ""
163
 
@@ -170,39 +171,35 @@ msgstr ""
170
  msgid "Default site language (%s)"
171
  msgstr ""
172
 
173
- #: admin/class-joinchat-admin.php:983
174
  msgid "Default visibility"
175
  msgstr ""
176
 
177
- #: admin/class-joinchat-woo-admin.php:233
178
  msgid ""
179
  "Define a text for your products on sale to encourage customers to contact"
180
  msgstr ""
181
 
182
- #: admin/class-joinchat-woo-admin.php:226
183
  msgid "Define a text for your products to encourage customers to contact"
184
  msgstr ""
185
 
186
- #: admin/class-joinchat-admin.php:549
187
  msgid "Define a text to encourage users to contact by WhatsApp"
188
  msgstr ""
189
 
190
- #: admin/class-joinchat-admin.php:701
191
- msgid "Dismiss"
192
- msgstr ""
193
-
194
- #: admin/class-joinchat-admin.php:579
195
  msgid ""
196
  "Display a notification balloon instead of opening the Chat Window for a "
197
  "\"less intrusive\" mode"
198
  msgstr ""
199
 
200
- #: admin/class-joinchat-admin.php:1118
201
  #, php-format
202
  msgid "Do you like %1$s? Please help us with a %2$s rating."
203
  msgstr ""
204
 
205
- #: admin/class-joinchat-admin.php:824
206
  msgid "Documentation"
207
  msgstr ""
208
 
@@ -210,22 +207,22 @@ msgstr ""
210
  msgid "e.g."
211
  msgstr ""
212
 
213
- #: admin/class-joinchat-admin.php:743 admin/class-joinchat-admin.php:755
214
  msgid "Example:"
215
  msgstr ""
216
 
217
- #: admin/class-joinchat-admin.php:778
218
  #, php-format
219
  msgid "Follow %s on twitter."
220
  msgstr ""
221
 
222
- #: admin/class-joinchat-woo-admin.php:281
223
  msgid ""
224
  "For the <strong>Call to Action for Products on Sale</strong>, you can also "
225
  "use:"
226
  msgstr ""
227
 
228
- #: admin/class-joinchat-admin.php:442
229
  msgid ""
230
  "From here you can configure on which pages the WhatsApp button will be "
231
  "visible."
@@ -243,22 +240,26 @@ msgstr ""
243
  msgid "Global"
244
  msgstr ""
245
 
246
- #: admin/class-joinchat-admin.php:242 admin/class-joinchat-admin.php:600
 
 
 
 
247
  msgid "Header"
248
  msgstr ""
249
 
250
- #: admin/class-joinchat-admin.php:548
251
  msgid ""
252
  "Hello 👋\n"
253
  "Can we help you?"
254
  msgstr ""
255
 
256
- #: admin/class-joinchat-admin.php:557
257
  msgid "Hi *{SITE}*! I need more info about {TITLE} {URL}"
258
  msgstr ""
259
 
260
- #: admin/class-joinchat-admin.php:479 admin/class-joinchat-admin.php:644
261
- #: admin/class-joinchat-admin.php:981
262
  msgid "Hide"
263
  msgstr ""
264
 
@@ -270,23 +271,23 @@ msgstr ""
270
  msgid "https://join.chat"
271
  msgstr ""
272
 
273
- #: admin/class-joinchat-admin.php:435
274
  msgid ""
275
  "If it's defined a \"Call to Action\", the Chat Window can be displayed "
276
  "automatically if conditions are met."
277
  msgstr ""
278
 
279
- #: admin/class-joinchat-admin.php:428
280
  msgid ""
281
  "If you define a \"Call to Action\" a window will be displayed simulating a "
282
  "chat before launching WhatsApp."
283
  msgstr ""
284
 
285
- #: admin/class-joinchat-admin.php:767
286
  msgid "If you like Join.chat 😍"
287
  msgstr ""
288
 
289
- #: admin/class-joinchat-admin.php:762
290
  #, php-format
291
  msgid ""
292
  "If you need help, first review our <a href=\"%1$s\" target=\"_blank\">"
@@ -299,16 +300,16 @@ msgstr ""
299
  msgid "Image"
300
  msgstr ""
301
 
302
- #: admin/class-joinchat-admin.php:481
303
  msgid "Inherit"
304
  msgstr ""
305
 
306
  #. Name of the plugin
307
- #: admin/class-joinchat-admin.php:903
308
  msgid "Join.chat"
309
  msgstr ""
310
 
311
- #: admin/class-joinchat-admin.php:856
312
  msgid "Join.chat Settings"
313
  msgstr ""
314
 
@@ -333,51 +334,52 @@ msgctxt "Keywords in Elementor Finder"
333
  msgid "woocommerce,shop,product"
334
  msgstr ""
335
 
336
- #: admin/class-joinchat-admin.php:509
337
  msgid "Left"
338
  msgstr ""
339
 
340
- #: admin/class-joinchat-admin.php:229 admin/class-joinchat-admin.php:970
 
341
  msgid "Message"
342
  msgstr ""
343
 
344
- #: admin/class-joinchat-woo-admin.php:151
345
  msgid "Message for Products"
346
  msgstr ""
347
 
348
- #: admin/class-joinchat-admin.php:234 admin/class-joinchat-admin.php:501
349
  msgid "Mobile Only"
350
  msgstr ""
351
 
352
- #: admin/class-joinchat-woo-admin.php:133
353
  msgid "My Account"
354
  msgstr ""
355
 
356
- #: admin/class-joinchat-admin.php:589
357
  msgid "No"
358
  msgstr ""
359
 
360
- #: admin/class-joinchat-admin.php:247 admin/class-joinchat-admin.php:577
361
  msgid "Notification Balloon"
362
  msgstr ""
363
 
364
- #: admin/class-joinchat-admin.php:503
365
  msgid "Only display the button on mobile devices"
366
  msgstr ""
367
 
368
- #: admin/class-joinchat-admin.php:751
369
  msgid "only show if it's an not seen CTA."
370
  msgstr ""
371
 
372
- #: admin/class-joinchat-admin.php:544
373
  msgid "Open <em>WhatsApp Web</em> directly on desktop"
374
  msgstr ""
375
 
376
- #: admin/class-joinchat-admin.php:562 includes/class-joinchat-common.php:40
377
  msgid "Open chat"
378
  msgstr ""
379
 
380
- #: admin/class-joinchat-admin.php:526
381
  #, php-format
382
  msgid "Other icons and more channels (Telegram, Messenger…) with %s"
383
  msgstr ""
@@ -386,7 +388,7 @@ msgstr ""
386
  msgid "Page"
387
  msgstr ""
388
 
389
- #: admin/class-joinchat-admin.php:730
390
  msgid "Page Title"
391
  msgstr ""
392
 
@@ -394,12 +396,12 @@ msgstr ""
394
  msgid "Page Views"
395
  msgstr ""
396
 
397
- #: admin/class-joinchat-admin.php:770
398
  #, php-format
399
  msgid "Please leave us a %s rating. We'll thank you."
400
  msgstr ""
401
 
402
- #: admin/class-joinchat-admin.php:232 admin/class-joinchat-admin.php:507
403
  msgid "Position on Screen"
404
  msgstr ""
405
 
@@ -411,43 +413,43 @@ msgstr ""
411
  msgid "Powered by"
412
  msgstr ""
413
 
414
- #: admin/class-joinchat-admin.php:602
415
  msgid "Powered by Join.chat"
416
  msgstr ""
417
 
418
- #: admin/class-joinchat-woo-admin.php:240
419
  msgid "Predefined text for the first message the client will send you"
420
  msgstr ""
421
 
422
- #: admin/class-joinchat-admin.php:558
423
  msgid "Predefined text for the first message the user will send you"
424
  msgstr ""
425
 
426
- #: admin/class-joinchat-woo-admin.php:198
427
  msgid "Product Chat Window"
428
  msgstr ""
429
 
430
- #: admin/class-joinchat-woo-admin.php:277
431
  msgid "Product Name"
432
  msgstr ""
433
 
434
- #: admin/class-joinchat-woo-admin.php:129
435
  msgid "Product Page"
436
  msgstr ""
437
 
438
- #: admin/class-joinchat-admin.php:523
439
  msgid "Remove"
440
  msgstr ""
441
 
442
- #: admin/class-joinchat-admin.php:443
443
  msgid "Restore default visibility"
444
  msgstr ""
445
 
446
- #: admin/class-joinchat-admin.php:511
447
  msgid "Right"
448
  msgstr ""
449
 
450
- #: admin/class-joinchat-woo-admin.php:231
451
  msgid ""
452
  "Save {DISCOUNT}! This *{PRODUCT}* can be yours for only ~{REGULAR}~ *{PRICE}"
453
  "*.\n"
@@ -458,50 +460,50 @@ msgstr ""
458
  msgid "Search Results"
459
  msgstr ""
460
 
461
- #: admin/class-joinchat-admin.php:537
462
  msgid "seconds"
463
  msgstr ""
464
 
465
- #: admin/class-joinchat-admin.php:567
466
  msgid "seconds (0 disabled)"
467
  msgstr ""
468
 
469
- #: admin/class-joinchat-admin.php:521
470
  msgid "Select an image"
471
  msgstr ""
472
 
473
- #: admin/class-joinchat-admin.php:522
474
  msgid "Select button image"
475
  msgstr ""
476
 
477
- #: admin/class-joinchat-admin.php:422
478
  msgid ""
479
  "Set the contact number and where you want the WhatsApp button to be "
480
  "displayed."
481
  msgstr ""
482
 
483
- #: admin/class-joinchat-admin.php:697 admin/class-joinchat-admin.php:801
484
  msgid "Settings"
485
  msgstr ""
486
 
487
- #: admin/class-joinchat-admin.php:371
488
  msgid "Settings saved"
489
  msgstr ""
490
 
491
- #: admin/class-joinchat-woo-admin.php:128
492
  msgid "Shop"
493
  msgstr ""
494
 
495
- #: admin/class-joinchat-admin.php:533
496
  msgid "Short text shown next to button"
497
  msgstr ""
498
 
499
- #: admin/class-joinchat-admin.php:477 admin/class-joinchat-admin.php:642
500
- #: admin/class-joinchat-admin.php:979
501
  msgid "Show"
502
  msgstr ""
503
 
504
- #: admin/class-joinchat-admin.php:436 admin/class-joinchat-admin.php:1055
505
  msgid "Show Help"
506
  msgstr ""
507
 
@@ -509,32 +511,33 @@ msgstr ""
509
  msgid "Singular"
510
  msgstr ""
511
 
512
- #: admin/class-joinchat-admin.php:723
513
  msgid "Styles and Variables"
514
  msgstr ""
515
 
516
- #: admin/class-joinchat-admin.php:774
517
  #, php-format
518
  msgid "Subscribe to our newsletter and visit our blog at %s."
519
  msgstr ""
520
 
521
- #: admin/class-joinchat-admin.php:759 admin/class-joinchat-admin.php:826
522
  msgid "Support"
523
  msgstr ""
524
 
525
- #: admin/class-joinchat-admin.php:228 admin/class-joinchat-admin.php:962
 
526
  msgid "Telephone"
527
  msgstr ""
528
 
529
- #: admin/class-joinchat-admin.php:563
530
  msgid "Text to open chat on Chat Window button"
531
  msgstr ""
532
 
533
- #: admin/class-joinchat-woo-admin.php:132
534
  msgid "Thank You"
535
  msgstr ""
536
 
537
- #: admin/class-joinchat-admin.php:524
538
  msgid "The image will alternate with button icon"
539
  msgstr ""
540
 
@@ -546,13 +549,13 @@ msgstr ""
546
  msgid "There are changes in fields that can be translated."
547
  msgstr ""
548
 
549
- #: admin/class-joinchat-woo-admin.php:224
550
  msgid ""
551
  "This *{PRODUCT}* can be yours for only *{PRICE}*!\n"
552
  "If you have any questions, ask us."
553
  msgstr ""
554
 
555
- #: admin/class-joinchat-admin.php:538
556
  msgid "Time since the page is opened until the button is displayed"
557
  msgstr ""
558
 
@@ -571,27 +574,27 @@ msgctxt "Title in Elementor Finder"
571
  msgid "WooCommerce Settings"
572
  msgstr ""
573
 
574
- #: admin/class-joinchat-admin.php:747
575
  msgid "to hide Chat Window on click."
576
  msgstr ""
577
 
578
- #: admin/class-joinchat-admin.php:975
579
  msgid "to leave it blank use"
580
  msgstr ""
581
 
582
- #: admin/class-joinchat-admin.php:741 admin/class-joinchat-admin.php:748
583
  msgid "to open WhatsApp directly on click."
584
  msgstr ""
585
 
586
- #: admin/class-joinchat-admin.php:752
587
  msgid "to show always."
588
  msgstr ""
589
 
590
- #: admin/class-joinchat-admin.php:740 admin/class-joinchat-admin.php:746
591
  msgid "to show Chat Window (or open WhatsApp if there is no CTA) on click."
592
  msgstr ""
593
 
594
- #: admin/class-joinchat-admin.php:749
595
  msgid ""
596
  "To show Chat Window when an HTML element appears on screen when user scrolls:"
597
  msgstr ""
@@ -600,83 +603,83 @@ msgstr ""
600
  msgid "Tooltip"
601
  msgstr ""
602
 
603
- #: admin/class-joinchat-admin.php:735
604
  msgid "Triggers"
605
  msgstr ""
606
 
607
- #: public/class-joinchat-public.php:216 admin/class-joinchat-admin.php:487
608
- #: admin/class-joinchat-admin.php:718 admin/class-joinchat-admin.php:822
609
  msgctxt "url lang slug (only available for spanish \"es\")"
610
  msgid "en"
611
  msgstr ""
612
 
613
- #: admin/class-joinchat-admin.php:522
614
  msgid "Use image"
615
  msgstr ""
616
 
617
- #: admin/class-joinchat-admin.php:112
618
  msgid "Visibility"
619
  msgstr ""
620
 
621
- #: admin/class-joinchat-admin.php:441
622
  msgid "Visibility Settings"
623
  msgstr ""
624
 
625
- #: admin/class-joinchat-admin.php:604
626
  msgid "WhatsApp Logo"
627
  msgstr ""
628
 
629
- #: admin/class-joinchat-admin.php:235 admin/class-joinchat-admin.php:542
630
  msgid "WhatsApp Web"
631
  msgstr ""
632
 
633
- #: admin/class-joinchat-admin.php:738
634
  msgid "With anchor links:"
635
  msgstr ""
636
 
637
- #: admin/class-joinchat-woo-admin.php:194
638
  msgid "WooCommerce"
639
  msgstr ""
640
 
641
- #: admin/class-joinchat-admin.php:591
642
  msgid "Yes"
643
  msgstr ""
644
 
645
- #: admin/class-joinchat-woo-admin.php:200
646
  msgid ""
647
  "You can define other different texts for the Chat Window on the product "
648
  "pages."
649
  msgstr ""
650
 
651
- #: admin/class-joinchat-admin.php:737
652
  msgid "You can interact on your page with Join.chat in two ways:"
653
  msgstr ""
654
 
655
- #: admin/class-joinchat-admin.php:429
656
  msgid ""
657
  "You can introduce yourself, offer help or even make promotions to your users."
658
  msgstr ""
659
 
660
- #: admin/class-joinchat-admin.php:726
661
  msgid ""
662
  "You can use dynamic variables that will be replaced by the values of the "
663
  "page the user visits:"
664
  msgstr ""
665
 
666
- #: admin/class-joinchat-admin.php:725
667
  msgid ""
668
  "You can use formatting styles like in WhatsApp: _<em>italic</em>_ *<strong>"
669
  "bold</strong>* ~<del>strikethrough</del>~."
670
  msgstr ""
671
 
672
- #: admin/class-joinchat-admin.php:1054
673
  msgid "You can use vars"
674
  msgstr ""
675
 
676
- #: admin/class-joinchat-admin.php:696
677
  msgid "You only need to add your WhatsApp number to contact with your users."
678
  msgstr ""
679
 
680
- #: admin/class-joinchat-admin.php:532
681
  msgid "💬 Need help?"
682
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Join.chat\n"
5
+ "POT-Creation-Date: 2022-02-09 15:09+0000\n"
6
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
7
  "Last-Translator: Your Name <you@example.com>\n"
8
  "Language-Team: Creame <hola@crea.me>\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "Language: "
23
 
24
+ #: admin/class-joinchat-woo-admin.php:251
25
  msgid ""
26
  "*Hi {SITE}!*\n"
27
  "I have a question about *{PRODUCT} ({SKU})*"
31
  msgid "404 Page"
32
  msgstr ""
33
 
34
+ #: admin/class-joinchat-woo-admin.php:288
35
  msgid "<strong>WooCommerce</strong>, in product pages you can also use:"
36
  msgstr ""
37
 
38
+ #: admin/class-joinchat-admin.php:548
39
  #, php-format
40
  msgid "Add links, images, videos and more with %s"
41
  msgstr ""
42
 
43
+ #: admin/class-joinchat-admin.php:491
44
  #, php-format
45
  msgid "Add unlimited numbers with %1$s or multiple contacts with %2$s"
46
  msgstr ""
47
 
48
+ #: admin/class-joinchat-admin.php:834
49
  msgid "Add-ons"
50
  msgstr ""
51
 
52
+ #: admin/class-joinchat-admin.php:753
53
  msgid "Adding some CSS classes in your HTML:"
54
  msgstr ""
55
 
61
  msgid "Author Archives"
62
  msgstr ""
63
 
64
+ #: admin/class-joinchat-admin.php:590
65
  msgid "Auto (detects device dark mode)"
66
  msgstr ""
67
 
69
  msgid "Blog Page"
70
  msgstr ""
71
 
72
+ #: admin/class-joinchat-admin.php:418
73
  msgid "Button"
74
  msgstr ""
75
 
81
  msgid "Button Text"
82
  msgstr ""
83
 
84
+ #: admin/class-joinchat-admin.php:238 admin/partials/term_meta_box.php:24
85
+ #: admin/partials/post_meta_box.php:22
86
  msgid "Call to Action"
87
  msgstr ""
88
 
89
+ #: admin/class-joinchat-woo-admin.php:162
90
  msgid "Call to Action for Products"
91
  msgstr ""
92
 
93
+ #: admin/class-joinchat-woo-admin.php:163
94
  msgid "Call to Action for Products on Sale"
95
  msgstr ""
96
 
97
+ #: admin/partials/term_meta_box.php:33 admin/partials/post_meta_box.php:29
98
  msgid "Can use vars"
99
  msgstr ""
100
 
101
+ #: admin/class-joinchat-woo-admin.php:143
102
  msgid "Cart"
103
  msgstr ""
104
 
106
  msgid "Chat Delay"
107
  msgstr ""
108
 
109
+ #: admin/class-joinchat-admin.php:423
110
  msgid "Chat Window"
111
  msgstr ""
112
 
113
+ #: admin/class-joinchat-admin.php:565
114
  msgid "Chat Window auto displays after delay"
115
  msgstr ""
116
 
117
+ #: admin/class-joinchat-admin.php:570
118
  msgid "Chat Window auto displays from this number of page views"
119
  msgstr ""
120
 
122
  msgid "Check translations"
123
  msgstr ""
124
 
125
+ #: admin/class-joinchat-woo-admin.php:144
126
  msgid "Checkout"
127
  msgstr ""
128
 
136
  "support. Stop losing customers and increase your sales."
137
  msgstr ""
138
 
139
+ #: admin/class-joinchat-admin.php:489
140
  msgid ""
141
  "Contact phone number <strong>(the button will not be shown if it's empty)"
142
  "</strong>"
143
  msgstr ""
144
 
145
+ #: admin/class-joinchat-admin.php:752 admin/class-joinchat-admin.php:764
146
  msgid "Contact us"
147
  msgstr ""
148
 
150
  msgid "Creame"
151
  msgstr ""
152
 
153
+ #: admin/class-joinchat-admin.php:448
154
  msgid "Custom Post Types"
155
  msgstr ""
156
 
157
+ #: admin/class-joinchat-admin.php:603
158
  msgid "Custom:"
159
  msgstr ""
160
 
161
+ #: admin/class-joinchat-admin.php:241 admin/class-joinchat-admin.php:584
162
  msgid "Dark Mode"
163
  msgstr ""
164
 
171
  msgid "Default site language (%s)"
172
  msgstr ""
173
 
174
+ #: admin/partials/term_meta_box.php:47 admin/partials/post_meta_box.php:39
175
  msgid "Default visibility"
176
  msgstr ""
177
 
178
+ #: admin/class-joinchat-woo-admin.php:246
179
  msgid ""
180
  "Define a text for your products on sale to encourage customers to contact"
181
  msgstr ""
182
 
183
+ #: admin/class-joinchat-woo-admin.php:239
184
  msgid "Define a text for your products to encourage customers to contact"
185
  msgstr ""
186
 
187
+ #: admin/class-joinchat-admin.php:546
188
  msgid "Define a text to encourage users to contact by WhatsApp"
189
  msgstr ""
190
 
191
+ #: admin/class-joinchat-admin.php:576
 
 
 
 
192
  msgid ""
193
  "Display a notification balloon instead of opening the Chat Window for a "
194
  "\"less intrusive\" mode"
195
  msgstr ""
196
 
197
+ #: admin/class-joinchat-admin.php:1162
198
  #, php-format
199
  msgid "Do you like %1$s? Please help us with a %2$s rating."
200
  msgstr ""
201
 
202
+ #: admin/class-joinchat-admin.php:833
203
  msgid "Documentation"
204
  msgstr ""
205
 
207
  msgid "e.g."
208
  msgstr ""
209
 
210
+ #: admin/class-joinchat-admin.php:752 admin/class-joinchat-admin.php:764
211
  msgid "Example:"
212
  msgstr ""
213
 
214
+ #: admin/class-joinchat-admin.php:787
215
  #, php-format
216
  msgid "Follow %s on twitter."
217
  msgstr ""
218
 
219
+ #: admin/class-joinchat-woo-admin.php:294
220
  msgid ""
221
  "For the <strong>Call to Action for Products on Sale</strong>, you can also "
222
  "use:"
223
  msgstr ""
224
 
225
+ #: admin/class-joinchat-admin.php:439
226
  msgid ""
227
  "From here you can configure on which pages the WhatsApp button will be "
228
  "visible."
240
  msgid "Global"
241
  msgstr ""
242
 
243
+ #: admin/class-joinchat-admin.php:689
244
+ msgid "Go to settings"
245
+ msgstr ""
246
+
247
+ #: admin/class-joinchat-admin.php:242 admin/class-joinchat-admin.php:597
248
  msgid "Header"
249
  msgstr ""
250
 
251
+ #: admin/class-joinchat-admin.php:545
252
  msgid ""
253
  "Hello 👋\n"
254
  "Can we help you?"
255
  msgstr ""
256
 
257
+ #: admin/class-joinchat-admin.php:554
258
  msgid "Hi *{SITE}*! I need more info about {TITLE} {URL}"
259
  msgstr ""
260
 
261
+ #: admin/class-joinchat-admin.php:476 admin/class-joinchat-admin.php:641
262
+ #: admin/partials/term_meta_box.php:45 admin/partials/post_meta_box.php:37
263
  msgid "Hide"
264
  msgstr ""
265
 
271
  msgid "https://join.chat"
272
  msgstr ""
273
 
274
+ #: admin/class-joinchat-admin.php:432
275
  msgid ""
276
  "If it's defined a \"Call to Action\", the Chat Window can be displayed "
277
  "automatically if conditions are met."
278
  msgstr ""
279
 
280
+ #: admin/class-joinchat-admin.php:425
281
  msgid ""
282
  "If you define a \"Call to Action\" a window will be displayed simulating a "
283
  "chat before launching WhatsApp."
284
  msgstr ""
285
 
286
+ #: admin/class-joinchat-admin.php:776
287
  msgid "If you like Join.chat 😍"
288
  msgstr ""
289
 
290
+ #: admin/class-joinchat-admin.php:771
291
  #, php-format
292
  msgid ""
293
  "If you need help, first review our <a href=\"%1$s\" target=\"_blank\">"
300
  msgid "Image"
301
  msgstr ""
302
 
303
+ #: admin/class-joinchat-admin.php:478
304
  msgid "Inherit"
305
  msgstr ""
306
 
307
  #. Name of the plugin
308
+ #: admin/class-joinchat-admin.php:912 admin/partials/term_meta_box.php:16
309
  msgid "Join.chat"
310
  msgstr ""
311
 
312
+ #: admin/class-joinchat-admin.php:865
313
  msgid "Join.chat Settings"
314
  msgstr ""
315
 
334
  msgid "woocommerce,shop,product"
335
  msgstr ""
336
 
337
+ #: admin/class-joinchat-admin.php:506
338
  msgid "Left"
339
  msgstr ""
340
 
341
+ #: admin/class-joinchat-admin.php:229 admin/partials/term_meta_box.php:28
342
+ #: admin/partials/post_meta_box.php:26
343
  msgid "Message"
344
  msgstr ""
345
 
346
+ #: admin/class-joinchat-woo-admin.php:164
347
  msgid "Message for Products"
348
  msgstr ""
349
 
350
+ #: admin/class-joinchat-admin.php:234 admin/class-joinchat-admin.php:498
351
  msgid "Mobile Only"
352
  msgstr ""
353
 
354
+ #: admin/class-joinchat-woo-admin.php:146
355
  msgid "My Account"
356
  msgstr ""
357
 
358
+ #: admin/class-joinchat-admin.php:586
359
  msgid "No"
360
  msgstr ""
361
 
362
+ #: admin/class-joinchat-admin.php:247 admin/class-joinchat-admin.php:574
363
  msgid "Notification Balloon"
364
  msgstr ""
365
 
366
+ #: admin/class-joinchat-admin.php:500
367
  msgid "Only display the button on mobile devices"
368
  msgstr ""
369
 
370
+ #: admin/class-joinchat-admin.php:760
371
  msgid "only show if it's an not seen CTA."
372
  msgstr ""
373
 
374
+ #: admin/class-joinchat-admin.php:541
375
  msgid "Open <em>WhatsApp Web</em> directly on desktop"
376
  msgstr ""
377
 
378
+ #: admin/class-joinchat-admin.php:559 includes/class-joinchat-common.php:40
379
  msgid "Open chat"
380
  msgstr ""
381
 
382
+ #: admin/class-joinchat-admin.php:523
383
  #, php-format
384
  msgid "Other icons and more channels (Telegram, Messenger…) with %s"
385
  msgstr ""
388
  msgid "Page"
389
  msgstr ""
390
 
391
+ #: admin/class-joinchat-admin.php:739
392
  msgid "Page Title"
393
  msgstr ""
394
 
396
  msgid "Page Views"
397
  msgstr ""
398
 
399
+ #: admin/class-joinchat-admin.php:779
400
  #, php-format
401
  msgid "Please leave us a %s rating. We'll thank you."
402
  msgstr ""
403
 
404
+ #: admin/class-joinchat-admin.php:232 admin/class-joinchat-admin.php:504
405
  msgid "Position on Screen"
406
  msgstr ""
407
 
413
  msgid "Powered by"
414
  msgstr ""
415
 
416
+ #: admin/class-joinchat-admin.php:599
417
  msgid "Powered by Join.chat"
418
  msgstr ""
419
 
420
+ #: admin/class-joinchat-woo-admin.php:253
421
  msgid "Predefined text for the first message the client will send you"
422
  msgstr ""
423
 
424
+ #: admin/class-joinchat-admin.php:555
425
  msgid "Predefined text for the first message the user will send you"
426
  msgstr ""
427
 
428
+ #: admin/class-joinchat-woo-admin.php:211
429
  msgid "Product Chat Window"
430
  msgstr ""
431
 
432
+ #: admin/class-joinchat-woo-admin.php:290
433
  msgid "Product Name"
434
  msgstr ""
435
 
436
+ #: admin/class-joinchat-woo-admin.php:142
437
  msgid "Product Page"
438
  msgstr ""
439
 
440
+ #: admin/class-joinchat-admin.php:520
441
  msgid "Remove"
442
  msgstr ""
443
 
444
+ #: admin/class-joinchat-admin.php:440
445
  msgid "Restore default visibility"
446
  msgstr ""
447
 
448
+ #: admin/class-joinchat-admin.php:508
449
  msgid "Right"
450
  msgstr ""
451
 
452
+ #: admin/class-joinchat-woo-admin.php:244
453
  msgid ""
454
  "Save {DISCOUNT}! This *{PRODUCT}* can be yours for only ~{REGULAR}~ *{PRICE}"
455
  "*.\n"
460
  msgid "Search Results"
461
  msgstr ""
462
 
463
+ #: admin/class-joinchat-admin.php:534
464
  msgid "seconds"
465
  msgstr ""
466
 
467
+ #: admin/class-joinchat-admin.php:564
468
  msgid "seconds (0 disabled)"
469
  msgstr ""
470
 
471
+ #: admin/class-joinchat-admin.php:518
472
  msgid "Select an image"
473
  msgstr ""
474
 
475
+ #: admin/class-joinchat-admin.php:519
476
  msgid "Select button image"
477
  msgstr ""
478
 
479
+ #: admin/class-joinchat-admin.php:419
480
  msgid ""
481
  "Set the contact number and where you want the WhatsApp button to be "
482
  "displayed."
483
  msgstr ""
484
 
485
+ #: admin/class-joinchat-admin.php:810
486
  msgid "Settings"
487
  msgstr ""
488
 
489
+ #: admin/class-joinchat-admin.php:364
490
  msgid "Settings saved"
491
  msgstr ""
492
 
493
+ #: admin/class-joinchat-woo-admin.php:141
494
  msgid "Shop"
495
  msgstr ""
496
 
497
+ #: admin/class-joinchat-admin.php:530
498
  msgid "Short text shown next to button"
499
  msgstr ""
500
 
501
+ #: admin/class-joinchat-admin.php:474 admin/class-joinchat-admin.php:639
502
+ #: admin/partials/term_meta_box.php:43 admin/partials/post_meta_box.php:35
503
  msgid "Show"
504
  msgstr ""
505
 
506
+ #: admin/class-joinchat-admin.php:433 admin/class-joinchat-admin.php:1099
507
  msgid "Show Help"
508
  msgstr ""
509
 
511
  msgid "Singular"
512
  msgstr ""
513
 
514
+ #: admin/class-joinchat-admin.php:732
515
  msgid "Styles and Variables"
516
  msgstr ""
517
 
518
+ #: admin/class-joinchat-admin.php:783
519
  #, php-format
520
  msgid "Subscribe to our newsletter and visit our blog at %s."
521
  msgstr ""
522
 
523
+ #: admin/class-joinchat-admin.php:768 admin/class-joinchat-admin.php:835
524
  msgid "Support"
525
  msgstr ""
526
 
527
+ #: admin/class-joinchat-admin.php:228 admin/partials/term_meta_box.php:20
528
+ #: admin/partials/post_meta_box.php:18
529
  msgid "Telephone"
530
  msgstr ""
531
 
532
+ #: admin/class-joinchat-admin.php:560
533
  msgid "Text to open chat on Chat Window button"
534
  msgstr ""
535
 
536
+ #: admin/class-joinchat-woo-admin.php:145
537
  msgid "Thank You"
538
  msgstr ""
539
 
540
+ #: admin/class-joinchat-admin.php:521
541
  msgid "The image will alternate with button icon"
542
  msgstr ""
543
 
549
  msgid "There are changes in fields that can be translated."
550
  msgstr ""
551
 
552
+ #: admin/class-joinchat-woo-admin.php:237
553
  msgid ""
554
  "This *{PRODUCT}* can be yours for only *{PRICE}*!\n"
555
  "If you have any questions, ask us."
556
  msgstr ""
557
 
558
+ #: admin/class-joinchat-admin.php:535
559
  msgid "Time since the page is opened until the button is displayed"
560
  msgstr ""
561
 
574
  msgid "WooCommerce Settings"
575
  msgstr ""
576
 
577
+ #: admin/class-joinchat-admin.php:756
578
  msgid "to hide Chat Window on click."
579
  msgstr ""
580
 
581
+ #: admin/partials/term_meta_box.php:35 admin/partials/post_meta_box.php:31
582
  msgid "to leave it blank use"
583
  msgstr ""
584
 
585
+ #: admin/class-joinchat-admin.php:750 admin/class-joinchat-admin.php:757
586
  msgid "to open WhatsApp directly on click."
587
  msgstr ""
588
 
589
+ #: admin/class-joinchat-admin.php:761
590
  msgid "to show always."
591
  msgstr ""
592
 
593
+ #: admin/class-joinchat-admin.php:749 admin/class-joinchat-admin.php:755
594
  msgid "to show Chat Window (or open WhatsApp if there is no CTA) on click."
595
  msgstr ""
596
 
597
+ #: admin/class-joinchat-admin.php:758
598
  msgid ""
599
  "To show Chat Window when an HTML element appears on screen when user scrolls:"
600
  msgstr ""
603
  msgid "Tooltip"
604
  msgstr ""
605
 
606
+ #: admin/class-joinchat-admin.php:744
607
  msgid "Triggers"
608
  msgstr ""
609
 
610
+ #: public/class-joinchat-public.php:221 admin/class-joinchat-admin.php:484
611
+ #: admin/class-joinchat-admin.php:727 admin/class-joinchat-admin.php:831
612
  msgctxt "url lang slug (only available for spanish \"es\")"
613
  msgid "en"
614
  msgstr ""
615
 
616
+ #: admin/class-joinchat-admin.php:519
617
  msgid "Use image"
618
  msgstr ""
619
 
620
+ #: admin/class-joinchat-admin.php:112 admin/partials/term_meta_box.php:40
621
  msgid "Visibility"
622
  msgstr ""
623
 
624
+ #: admin/class-joinchat-admin.php:438
625
  msgid "Visibility Settings"
626
  msgstr ""
627
 
628
+ #: admin/class-joinchat-admin.php:601
629
  msgid "WhatsApp Logo"
630
  msgstr ""
631
 
632
+ #: admin/class-joinchat-admin.php:235 admin/class-joinchat-admin.php:539
633
  msgid "WhatsApp Web"
634
  msgstr ""
635
 
636
+ #: admin/class-joinchat-admin.php:747
637
  msgid "With anchor links:"
638
  msgstr ""
639
 
640
+ #: admin/class-joinchat-woo-admin.php:207
641
  msgid "WooCommerce"
642
  msgstr ""
643
 
644
+ #: admin/class-joinchat-admin.php:588
645
  msgid "Yes"
646
  msgstr ""
647
 
648
+ #: admin/class-joinchat-woo-admin.php:213
649
  msgid ""
650
  "You can define other different texts for the Chat Window on the product "
651
  "pages."
652
  msgstr ""
653
 
654
+ #: admin/class-joinchat-admin.php:746
655
  msgid "You can interact on your page with Join.chat in two ways:"
656
  msgstr ""
657
 
658
+ #: admin/class-joinchat-admin.php:426
659
  msgid ""
660
  "You can introduce yourself, offer help or even make promotions to your users."
661
  msgstr ""
662
 
663
+ #: admin/class-joinchat-admin.php:735
664
  msgid ""
665
  "You can use dynamic variables that will be replaced by the values of the "
666
  "page the user visits:"
667
  msgstr ""
668
 
669
+ #: admin/class-joinchat-admin.php:734
670
  msgid ""
671
  "You can use formatting styles like in WhatsApp: _<em>italic</em>_ *<strong>"
672
  "bold</strong>* ~<del>strikethrough</del>~."
673
  msgstr ""
674
 
675
+ #: admin/class-joinchat-admin.php:1098
676
  msgid "You can use vars"
677
  msgstr ""
678
 
679
+ #: admin/class-joinchat-admin.php:688
680
  msgid "You only need to add your WhatsApp number to contact with your users."
681
  msgstr ""
682
 
683
+ #: admin/class-joinchat-admin.php:529
684
  msgid "💬 Need help?"
685
  msgstr ""
uninstall.php CHANGED
@@ -25,6 +25,7 @@ if ( apply_filters( 'joinchat_delete_all', true ) ) {
25
 
26
  // Delete general option 'joinchat' added by plugin
27
  delete_option( 'joinchat' );
 
28
  // Delete post meta '_joinchat' added by plugin
29
  $wpdb->delete( $wpdb->prefix . 'postmeta', array( 'meta_key' => '_joinchat' ) );
30
 
25
 
26
  // Delete general option 'joinchat' added by plugin
27
  delete_option( 'joinchat' );
28
+ delete_option( 'joinchat_notice_dismiss' );
29
  // Delete post meta '_joinchat' added by plugin
30
  $wpdb->delete( $wpdb->prefix . 'postmeta', array( 'meta_key' => '_joinchat' ) );
31