Messenger Customer Chat - Version 2.0

Version Description

  • Added translations for strings on admin panel settings and css fix. Tested up to WordPress 5.5.3
Download this release

Release Info

Developer Facebook
Plugin Icon 128x128 Messenger Customer Chat
Version 2.0
Comparing to
See all releases

Code changes from version 1.9 to 2.0

Files changed (57) hide show
  1. facebook-messenger-customer-chat.php +40 -17
  2. languages/facebook-messenger-customer-chat-ar.mo +0 -0
  3. languages/facebook-messenger-customer-chat-ar.po +109 -0
  4. languages/facebook-messenger-customer-chat-cs_CZ.mo +0 -0
  5. languages/facebook-messenger-customer-chat-cs_CZ.po +108 -0
  6. languages/facebook-messenger-customer-chat-da_DK.mo +0 -0
  7. languages/facebook-messenger-customer-chat-da_DK.po +107 -0
  8. languages/facebook-messenger-customer-chat-de_DE.mo +0 -0
  9. languages/facebook-messenger-customer-chat-de_DE.po +113 -0
  10. languages/facebook-messenger-customer-chat-es_ES.mo +0 -0
  11. languages/facebook-messenger-customer-chat-es_ES.po +111 -0
  12. languages/facebook-messenger-customer-chat-fi_FI.mo +0 -0
  13. languages/facebook-messenger-customer-chat-fi_FI.po +111 -0
  14. languages/facebook-messenger-customer-chat-fr_CA.mo +0 -0
  15. languages/facebook-messenger-customer-chat-fr_CA.po +117 -0
  16. languages/facebook-messenger-customer-chat-fr_FR.mo +0 -0
  17. languages/facebook-messenger-customer-chat-fr_FR.po +116 -0
  18. languages/facebook-messenger-customer-chat-he_IL.mo +0 -0
  19. languages/facebook-messenger-customer-chat-he_IL.po +108 -0
  20. languages/facebook-messenger-customer-chat-hi_IN.mo +0 -0
  21. languages/facebook-messenger-customer-chat-hi_IN.po +107 -0
  22. languages/facebook-messenger-customer-chat-it_IT.mo +0 -0
  23. languages/facebook-messenger-customer-chat-it_IT.po +114 -0
  24. languages/facebook-messenger-customer-chat-ja_JP.mo +0 -0
  25. languages/facebook-messenger-customer-chat-ja_JP.po +107 -0
  26. languages/facebook-messenger-customer-chat-ko_KR.mo +0 -0
  27. languages/facebook-messenger-customer-chat-ko_KR.po +107 -0
  28. languages/facebook-messenger-customer-chat-nb_NO.mo +0 -0
  29. languages/facebook-messenger-customer-chat-nb_NO.po +112 -0
  30. languages/facebook-messenger-customer-chat-nl_NL.mo +0 -0
  31. languages/facebook-messenger-customer-chat-nl_NL.po +112 -0
  32. languages/facebook-messenger-customer-chat-pl_PL.mo +0 -0
  33. languages/facebook-messenger-customer-chat-pl_PL.po +111 -0
  34. languages/facebook-messenger-customer-chat-pt_BR.mo +0 -0
  35. languages/facebook-messenger-customer-chat-pt_BR.po +109 -0
  36. languages/facebook-messenger-customer-chat-pt_PT.mo +0 -0
  37. languages/facebook-messenger-customer-chat-pt_PT.po +110 -0
  38. languages/facebook-messenger-customer-chat-ru_RU.mo +0 -0
  39. languages/facebook-messenger-customer-chat-ru_RU.po +111 -0
  40. languages/facebook-messenger-customer-chat-sv_SE.mo +0 -0
  41. languages/facebook-messenger-customer-chat-sv_SE.po +109 -0
  42. languages/facebook-messenger-customer-chat-th_TH.mo +0 -0
  43. languages/facebook-messenger-customer-chat-th_TH.po +105 -0
  44. languages/facebook-messenger-customer-chat-tr_TR.mo +0 -0
  45. languages/facebook-messenger-customer-chat-tr_TR.po +110 -0
  46. languages/facebook-messenger-customer-chat-vi_VN.mo +0 -0
  47. languages/facebook-messenger-customer-chat-vi_VN.po +109 -0
  48. languages/facebook-messenger-customer-chat-zh_CN.mo +0 -0
  49. languages/facebook-messenger-customer-chat-zh_CN.po +100 -0
  50. languages/facebook-messenger-customer-chat-zh_TW.mo +0 -0
  51. languages/facebook-messenger-customer-chat-zh_TW.po +102 -0
  52. languages/facebook-messenger-customer-chat.pot +77 -0
  53. options.php +60 -60
  54. readme.txt +8 -1
  55. script.js +3 -3
  56. settings.css +52 -62
  57. uninstall.php +2 -2
facebook-messenger-customer-chat.php CHANGED
@@ -1,11 +1,15 @@
1
  <?php
2
  /*
3
  Plugin Name: The Official Facebook Chat Plugin
4
- Description: With a few clicks, you can add the Facebook Chat Plugin to your website, enabling customers to message you while browsing your website. To see and reply to those messages, simply use the same messaging tools you use for your Facebook messaging, on desktop at facebook.com, Facebook Page Manager App (available on iOS and Android), or by adding your page account to Messenger. It's free, easy to install and comes with a user interface your customers are already familiar with.
5
  Author: Facebook
6
  Author URI: https://developers.facebook.com
7
- Version: 1.9
 
 
 
8
 
 
9
  * Copyright (C) 2017-present, Facebook, Inc.
10
  *
11
  * This program is free software; you can redistribute it and/or modify
@@ -22,38 +26,53 @@ class Facebook_Messenger_Customer_Chat {
22
  function __construct() {
23
  include( plugin_dir_path( __FILE__ ) . 'options.php' );
24
  add_action( 'wp_footer', array( $this, 'fbmcc_inject_messenger' ) );
25
- add_filter( 'plugin_action_links',
26
- array( $this, 'fbmcc_plugin_action_links'), 10, 2 );
27
- add_filter( 'plugin_row_meta',
28
- array( $this, 'fbmcc_register_plugin_links'), 10, 2 );
 
29
  }
30
 
31
  function fbmcc_plugin_action_links( $links, $file ) {
 
32
  if ( current_user_can( 'manage_options' ) ) {
33
  $base = plugin_basename(__FILE__);
34
  if ( $file == $base ) {
35
- $settings_link = '<a href="admin.php?
36
- page=messenger-customer-chat-plugin">Settings</a>';
 
 
 
37
  array_unshift( $links, $settings_link );
 
38
  }
39
  }
40
  return $links;
41
  }
42
 
43
  function fbmcc_register_plugin_links( $links, $file ) {
 
44
  $base = plugin_basename(__FILE__);
45
  if ( $file == $base ) {
46
  if ( current_user_can( 'manage_options' ) ) {
47
- $links[] = '<a href="admin.php?page=messenger-customer-chat-plugin">
48
- Settings</a>';
 
 
 
49
  }
50
- $links[] =
51
- '<a href=
52
- "https://wordpress.org/plugins/facebook-messenger-customer-chat/#faq"
53
- target="_blank">FAQ</a>';
54
- $links[] =
55
- '<a href="https://wordpress.org/support/plugin/facebook-messenger-customer-chat/"
56
- target="_blank">Support</a>';
 
 
 
 
 
57
  }
58
  return $links;
59
  }
@@ -79,6 +98,10 @@ class Facebook_Messenger_Customer_Chat {
79
  _e($genCode);
80
  }
81
  }
 
 
 
 
82
  }
83
 
84
  new Facebook_Messenger_Customer_Chat();
1
  <?php
2
  /*
3
  Plugin Name: The Official Facebook Chat Plugin
4
+ Description: With a few clicks, you can add the Facebook Chat Plugin to your website, enabling customers to message you while browsing your website. To see and reply to those messages, simply use the same messaging tools you use for your Facebook messaging, on desktop at facebook.com, Facebook Page Manager App (available on iOS and Android), or by adding your page account to Messenger. It's free, easy to install and comes with a user interface your customers are already familiar with.
5
  Author: Facebook
6
  Author URI: https://developers.facebook.com
7
+ Version: 2.0
8
+ Text Domain: facebook-messenger-customer-chat
9
+ Domain Path: /languages/
10
+ */
11
 
12
+ /*
13
  * Copyright (C) 2017-present, Facebook, Inc.
14
  *
15
  * This program is free software; you can redistribute it and/or modify
26
  function __construct() {
27
  include( plugin_dir_path( __FILE__ ) . 'options.php' );
28
  add_action( 'wp_footer', array( $this, 'fbmcc_inject_messenger' ) );
29
+ add_filter( 'plugin_action_links',
30
+ array( $this, 'fbmcc_plugin_action_links'), 10, 2 );
31
+ add_filter( 'plugin_row_meta',
32
+ array( $this, 'fbmcc_register_plugin_links'), 10, 2 );
33
+ add_action( 'plugins_loaded', 'load_plugin_textdomain' );
34
  }
35
 
36
  function fbmcc_plugin_action_links( $links, $file ) {
37
+ $settings_url = 'admin.php?page=messenger-customer-chat-plugin';
38
  if ( current_user_can( 'manage_options' ) ) {
39
  $base = plugin_basename(__FILE__);
40
  if ( $file == $base ) {
41
+ $settings_link = sprintf(
42
+ '<a href="%s">%s</a>',
43
+ $settings_url,
44
+ esc_html__( 'Settings', 'facebook-messenger-customer-chat' )
45
+ );
46
  array_unshift( $links, $settings_link );
47
+
48
  }
49
  }
50
  return $links;
51
  }
52
 
53
  function fbmcc_register_plugin_links( $links, $file ) {
54
+ $settings_url = 'admin.php?page=messenger-customer-chat-plugin';
55
  $base = plugin_basename(__FILE__);
56
  if ( $file == $base ) {
57
  if ( current_user_can( 'manage_options' ) ) {
58
+ $links[] = sprintf(
59
+ '<a href="%s">%s</a>',
60
+ $settings_url,
61
+ esc_html__( 'Settings', 'facebook-messenger-customer-chat' )
62
+ );
63
  }
64
+ $links[] =
65
+ sprintf(
66
+ '<a href="%s">%s</a>',
67
+ esc_url( 'https://wordpress.org/plugins/facebook-messenger-customer-chat/#faq' ),
68
+ esc_html__( 'FAQ', 'facebook-messenger-customer-chat' )
69
+ );
70
+ $links[] =
71
+ sprintf(
72
+ '<a href="%s">%s</a>',
73
+ esc_url( 'https://wordpress.org/support/plugin/facebook-messenger-customer-chat/' ),
74
+ esc_html__( 'Support', 'facebook-messenger-customer-chat' )
75
+ );
76
  }
77
  return $links;
78
  }
98
  _e($genCode);
99
  }
100
  }
101
+
102
+ function load_plugin_textdomain() {
103
+ load_plugin_textdomain( 'facebook-messenger-customer-chat', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
104
+ }
105
  }
106
 
107
  new Facebook_Messenger_Customer_Chat();
languages/facebook-messenger-customer-chat-ar.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-ar.po ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 15:16-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
13
+ "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
14
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
15
+ "Last-Translator: \n"
16
+ "Language: ar\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: facebook-messenger-customer-chat.php:44
20
+ #: facebook-messenger-customer-chat.php:61
21
+ msgid "Settings"
22
+ msgstr "الإعدادات"
23
+
24
+ #: facebook-messenger-customer-chat.php:68
25
+ msgid "FAQ"
26
+ msgstr "الأسئلة المتكررة"
27
+
28
+ #: facebook-messenger-customer-chat.php:74
29
+ msgid "Support"
30
+ msgstr "الدعم"
31
+
32
+ #: options.php:107
33
+ msgid "Facebook Chat Plugin Settings"
34
+ msgstr "إعدادات المكون الإضافي دردشة فيسبوك"
35
+
36
+ #: options.php:111
37
+ msgid "Getting Started?"
38
+ msgstr "هل تريد بدء الاستخدام؟"
39
+
40
+ #: options.php:112
41
+ msgid ""
42
+ "Let people start a conversation on your website and continue in Messenger. "
43
+ "It's easy to set up. Chats started on your website can be continued in the "
44
+ "customers' Messenger app, so you never lose connections with your customers. "
45
+ "Even those without a Facebook Messenger account can chat with you in guest "
46
+ "mode, so you can reach more customers than ever."
47
+ msgstr ""
48
+ "امنح الفرصة للأشخاص لبدء المحادثات على موقعك على الويب والمتابعة في تطبيق "
49
+ "Messenger، فإعداد ذلك هو أمر سهل. ويمكن متابعة الدردشات التي بدأت على موقعك "
50
+ "عل الويب في تطبيق Messenger الخاصة بالعملاء؛ لذا لن تفقد مطلقًا الاتصال مع "
51
+ "عملائك، حتى الأشخاص الذين لا يملكون حسابًا على Facebook Messenger يمكنهم "
52
+ "الدردشة معك في وضع الضيف؛ وبالتالي يمكنك الوصول إلى عملاء أكثر من أي وقت "
53
+ "سابق."
54
+
55
+ #: options.php:128
56
+ msgid "Setup Chat Plugin"
57
+ msgstr "المكوّن الإضافي إعداد الدردشة"
58
+
59
+ #: options.php:130
60
+ msgid "Edit Chat Plugin"
61
+ msgstr "لمكوّن الإضافي تعديل الدردشة"
62
+
63
+ #: options.php:144
64
+ msgid ""
65
+ "The plugin code has already been added into your website. You can always go "
66
+ "back through the setup process to customize the plugin."
67
+ msgstr ""
68
+ "لقد تمت بالفعل إضافة المكون الإضافي إلى موقعك على الويب. ويمكنك دائمًا العودة "
69
+ "إلى الخلف في عملية الإعداد من أجل تخصيص المكون الإضافي."
70
+
71
+ #: options.php:153
72
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
73
+ msgstr "استخدام هذا المكون الإضافي يخضع لشروط منصة فيسبوك"
74
+
75
+ #: options.php:156
76
+ msgid "Having a problem setting up or using the Chat Plugin?"
77
+ msgstr "هل تواجه مشكلات في إعداد أو استخدام المكون الإضافي \"دردشة\"؟"
78
+
79
+ #: options.php:158
80
+ msgid "Please consult our Troubleshooting Guide."
81
+ msgstr "يرجى الاطلاع على دليل اكتشاف الأخطاء وحلها الخاص بنا."
82
+
83
+ #: options.php:161
84
+ msgid ""
85
+ "If the troubleshooting steps in the guide do not solve your problem, please "
86
+ "post in the plugin support forum."
87
+ msgstr ""
88
+ "إذا لم تجد حلاً في خطوات اكتشاف المشكلات وحلها في الدليل، يرجى النشر في منتدى "
89
+ "دعم المكون الإضافي."
90
+
91
+ msgid ""
92
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
93
+ "enabling customers to message you while browsing your website. To see and "
94
+ "reply to those messages, simply use the same messaging tools you use for "
95
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
96
+ "App (available on iOS and Android), or by adding your page account to "
97
+ "Messenger. It's free, easy to install and comes with a user interface your "
98
+ "customers are already familiar with."
99
+ msgstr ""
100
+ "من خلال بضع نقرات يمكنك إضافة المكون الإضافي \"دردشة فيسبوك\" إلى الموقع "
101
+ "الويب الخاص بك وهو ما يُمكّن العملاء من مراسلتك أثناء تصفح موقعك على الويب. "
102
+ "لعرض تلك الرسائل والرد عليها ما عليك إلا استخدام نفس أدوات المراسلة التي "
103
+ "تستخدمها لمراسلاتك على فيسبوك على أجهزة الكمبيوتر على موقع facebook.com "
104
+ "تطبيق مدير الصفحات على فيسبوك (متاح لنظامي iOS وAndroid) أو عن طريق إضافة "
105
+ "حساب صفحتك إلى تطبيق Messenger. إنه مجاني يمكن تثبيته بسهولة، ويتميز بواجهة "
106
+ "مستخدم تُعد مألوفة لعملائك بالفعل.\""
107
+
108
+ msgid "The Official Facebook Chat Plugin"
109
+ msgstr "المكون الإضافي دردشة فيسبوك الرسمية"
languages/facebook-messenger-customer-chat-cs_CZ.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-cs_CZ.po ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 15:21-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: cs_CZ\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Nastavení"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "Časté dotazy"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Podpora"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Nastavení Facebook pluginu pro chat"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Jak začít?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Umožněte lidem zahájit konverzaci na vašem webu a pak v ní pokračovat v "
48
+ "Messengeru. Nastavení je snadné. V chatech zahájených na vašem webu můžou "
49
+ "zákazníci pokračovat v Messengeru, takže spojení s nimi nikdy neztratíte. "
50
+ "Dokonce i ti, kteří Facebook Messenger účet nemají, s vámi můžou chatovat v "
51
+ "režimu hosta, a vy tak můžete oslovit více zákazníků než kdy předtím."
52
+
53
+ #: options.php:128
54
+ msgid "Setup Chat Plugin"
55
+ msgstr "Nastavit plugin pro chat"
56
+
57
+ #: options.php:130
58
+ msgid "Edit Chat Plugin"
59
+ msgstr "Upravit plugin pro chat"
60
+
61
+ #: options.php:144
62
+ msgid ""
63
+ "The plugin code has already been added into your website. You can always go "
64
+ "back through the setup process to customize the plugin."
65
+ msgstr ""
66
+ "Kód pluginu už byl na váš web přidán. V krocích nastavení se vždy můžete "
67
+ "vrátit zpět a plugin si přizpůsobit."
68
+
69
+ #: options.php:153
70
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
71
+ msgstr ""
72
+ "Používání tohoto pluginu podléhá smluvním podmínkám platformy Facebooku"
73
+
74
+ #: options.php:156
75
+ msgid "Having a problem setting up or using the Chat Plugin?"
76
+ msgstr "Máte potíže s nastavením nebo používáním pluginu pro chat?"
77
+
78
+ #: options.php:158
79
+ msgid "Please consult our Troubleshooting Guide."
80
+ msgstr "Přečtěte si našeho průvodce řešením potíží."
81
+
82
+ #: options.php:161
83
+ msgid ""
84
+ "If the troubleshooting steps in the guide do not solve your problem, please "
85
+ "post in the plugin support forum."
86
+ msgstr ""
87
+ "Pokud postup řešení potíží v průvodci váš problém nevyřeší, napište "
88
+ "příspěvek ve fóru podpory pluginů. "
89
+
90
+ msgid ""
91
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
92
+ "enabling customers to message you while browsing your website. To see and "
93
+ "reply to those messages, simply use the same messaging tools you use for "
94
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
95
+ "App (available on iOS and Android), or by adding your page account to "
96
+ "Messenger. It's free, easy to install and comes with a user interface your "
97
+ "customers are already familiar with."
98
+ msgstr ""
99
+ "Pomocí několika kliknutí můžete na svůj web přidat Facebook plugin pro chat, "
100
+ "který zákazníkům umožní vám během procházení webu poslat zprávu. Chcete-li "
101
+ "tyto zprávy zobrazit a odpovídat na ně, jednoduše použijte stejné nástroje "
102
+ "pro posílání zpráv, které používáte k posílání zpráv z Facebooku na počítači "
103
+ "na facebook.com, Aplikace Facebook Správce stránek (k dispozici pro iOS "
104
+ "a Android) nebo přidáním účtu stránky do Messengeru. Instalace je jednoduchá "
105
+ "a bezplatná a zahrnuje uživatelské rozhraní, které už zákazníci znají."
106
+
107
+ msgid "The Official Facebook Chat Plugin"
108
+ msgstr "Oficiální Facebook plugin pro chat"
languages/facebook-messenger-customer-chat-da_DK.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-da_DK.po ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 15:25-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: da_DK\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Indstillinger"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "OFTE STILLEDE SPØRGSMÅL"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Support"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Indstillinger for Facebooks chat-plugin"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Ved at komme i gang?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Lad folk starte en samtale på dit website og fortsætte i Messenger. Det er "
48
+ "let at opsætte. Chats startet på dit websted kan fortsættes i kundernes "
49
+ "Messenger-app, så du mister aldrig forbindelsen til dine kunder. Selv dem "
50
+ "uden en Facebook Messenger-konto kan chatte med dig i gæstetilstand, så du "
51
+ "kan nå ud til flere kunder end nogensinde før."
52
+
53
+ #: options.php:128
54
+ msgid "Setup Chat Plugin"
55
+ msgstr "Opsæt chat-pluginet"
56
+
57
+ #: options.php:130
58
+ msgid "Edit Chat Plugin"
59
+ msgstr "Rediger chat-pluginet"
60
+
61
+ #: options.php:144
62
+ msgid ""
63
+ "The plugin code has already been added into your website. You can always go "
64
+ "back through the setup process to customize the plugin."
65
+ msgstr ""
66
+ "Pluginkoden er allerede føjet til dit website. Du kan altid gå tilbage "
67
+ "gennem installationsprocessen for at tilpasse pluginet."
68
+
69
+ #: options.php:153
70
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
71
+ msgstr "Brug af dette plugin er underlagt Facebooks platformsvilkår"
72
+
73
+ #: options.php:156
74
+ msgid "Having a problem setting up or using the Chat Plugin?"
75
+ msgstr "Har du et problem med at konfigurere eller bruge Chat-pluginet?"
76
+
77
+ #: options.php:158
78
+ msgid "Please consult our Troubleshooting Guide."
79
+ msgstr "Se vores fejlfindingsvejledning."
80
+
81
+ #: options.php:161
82
+ msgid ""
83
+ "If the troubleshooting steps in the guide do not solve your problem, please "
84
+ "post in the plugin support forum."
85
+ msgstr ""
86
+ "Hvis fejlfindingstrinene i vejledningen ikke løser dit problem, bedes du slå "
87
+ "det op i plugin-supportforummet."
88
+
89
+ msgid ""
90
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
91
+ "enabling customers to message you while browsing your website. To see and "
92
+ "reply to those messages, simply use the same messaging tools you use for "
93
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
94
+ "App (available on iOS and Android), or by adding your page account to "
95
+ "Messenger. It's free, easy to install and comes with a user interface your "
96
+ "customers are already familiar with."
97
+ msgstr ""
98
+ "Med et par klik kan du tilføje Facebook Chat-pluginet til dit website, så "
99
+ "kunderne kan sende en besked til dig, mens de kigger på dit website. For at "
100
+ "se og svare på disse beskeder skal du blot bruge de samme beskedværktøjer, "
101
+ "som du bruger til din Facebook-besked på computeren på facebook.com "
102
+ "Facebooks sideadministrator-app (tilgængelig på iOS og Android) eller ved at "
103
+ "tilføje din sidekonto til Messenger. Det er gratis, let at installere og "
104
+ "leveres med en brugergrænseflade, som dine kunder allerede kender.\""
105
+
106
+ msgid "The Official Facebook Chat Plugin"
107
+ msgstr "Det officielle Facebook Chat-plugin"
languages/facebook-messenger-customer-chat-de_DE.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-de_DE.po ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 15:28-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: de_DE\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Einstellungen"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "FAQ"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Support"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Einstellungen für das Facebook-Chat-Plugin"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Erste Schritte?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Gib Menschen die Möglichkeit, eine Unterhaltung auf deiner Website zu "
48
+ "beginnen und dann im Messenger fortzusetzen. Diese Funktion kannst du ganz "
49
+ "einfach einrichten. Du kannst Chats, die auf deiner Website begonnen wurden, "
50
+ "in der Messenger-App deines Kunden fortsetzen. Somit bleibst du immer mit "
51
+ "deinen Kunden in Verbindung. Auch Menschen ohne Facebook Messenger-Konto "
52
+ "können im Gastmodus mit dir chatten. Du kannst also mehr Kunden erreichen "
53
+ "als jemals zuvor."
54
+
55
+ #: options.php:128
56
+ msgid "Setup Chat Plugin"
57
+ msgstr "Chat-Plugin einrichten"
58
+
59
+ #: options.php:130
60
+ msgid "Edit Chat Plugin"
61
+ msgstr "Chat-Plugin bearbeiten"
62
+
63
+ #: options.php:144
64
+ msgid ""
65
+ "The plugin code has already been added into your website. You can always go "
66
+ "back through the setup process to customize the plugin."
67
+ msgstr ""
68
+ "Wir haben den Plugin-Code bereits zu deiner Website hinzugefügt. Du kannst "
69
+ "jederzeit zum Einrichtungsprozess zurückkehren und das Plugin anpassen."
70
+
71
+ #: options.php:153
72
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
73
+ msgstr ""
74
+ "Für die Nutzung dieses Plugins gelten die Nutzungsbedingungen für die "
75
+ "Facebook-Plattform."
76
+
77
+ #: options.php:156
78
+ msgid "Having a problem setting up or using the Chat Plugin?"
79
+ msgstr ""
80
+ "Beim Einrichten oder Verwenden des Chat-Plugins ist ein Problem aufgetreten?"
81
+
82
+ #: options.php:158
83
+ msgid "Please consult our Troubleshooting Guide."
84
+ msgstr "Versuche es mit unserem Leitfaden zur Fehlerbehebung"
85
+
86
+ #: options.php:161
87
+ msgid ""
88
+ "If the troubleshooting steps in the guide do not solve your problem, please "
89
+ "post in the plugin support forum."
90
+ msgstr ""
91
+ "Solltest du das Problem damit nicht beheben können, poste eine Frage im "
92
+ "Plugin-Support-Forum."
93
+
94
+ msgid ""
95
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
96
+ "enabling customers to message you while browsing your website. To see and "
97
+ "reply to those messages, simply use the same messaging tools you use for "
98
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
99
+ "App (available on iOS and Android), or by adding your page account to "
100
+ "Messenger. It's free, easy to install and comes with a user interface your "
101
+ "customers are already familiar with."
102
+ msgstr ""
103
+ "Du kannst das Facebook Chat-Plugin mit nur wenigen Klicks zu deiner Website "
104
+ "hinzufügen. Kunden können dir dann beim Stöbern auf deiner Website "
105
+ "Nachrichten senden. Wenn du diese Nachrichten sehen und beantworten "
106
+ "möchtest, kannst du dieselben Messaging-Tools verwenden, die du auch für "
107
+ "dein Facebook-Messaging unter Facebook.com verwendest. Seitenmanager-App von "
108
+ "Facebook (für iOS und Android verfügbar) Du kannst auch dein Seitenkonto zum "
109
+ "Messenger hinzufügen. Kostenlos. Einfach zu installieren und mit einer "
110
+ "Benutzeroberfläche, die deine Kunden bereits kennen."
111
+
112
+ msgid "The Official Facebook Chat Plugin"
113
+ msgstr "Das offizielle Facebook-Chat-Plugin"
languages/facebook-messenger-customer-chat-es_ES.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-es_ES.po ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 15:35-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: es_ES\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Configuración"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "PREGUNTAS FRECUENTES"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Ayuda"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Configuración del plugin de chat de Facebook"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "¿Estas empezando?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Permite que las personas inicien una conversación en tu sitio web y "
48
+ "continúen en Messenger. Es fácil de configurar. Los chats iniciados en tu "
49
+ "sitio web pueden continuar en la aplicación de Messenger de los clientes, "
50
+ "para que nunca pierdas la conexión con ellos. Incluso aquellos que no tienen "
51
+ "una cuenta de Facebook Messenger pueden chatear contigo en el modo de "
52
+ "invitado, para que puedas llegar a más clientes que nunca."
53
+
54
+ #: options.php:128
55
+ msgid "Setup Chat Plugin"
56
+ msgstr "Configurar el plugin de chat"
57
+
58
+ #: options.php:130
59
+ msgid "Edit Chat Plugin"
60
+ msgstr "Editar el plugin de chat"
61
+
62
+ #: options.php:144
63
+ msgid ""
64
+ "The plugin code has already been added into your website. You can always go "
65
+ "back through the setup process to customize the plugin."
66
+ msgstr ""
67
+ "El código del plugin ya se ha añadido a tu sitio web. Siempre puedes "
68
+ "retroceder durante el proceso de configuración para personalizar el plugin."
69
+
70
+ #: options.php:153
71
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
72
+ msgstr ""
73
+ "El uso de este plugin está sujeto a las condiciones de la plataforma de "
74
+ "Facebook"
75
+
76
+ #: options.php:156
77
+ msgid "Having a problem setting up or using the Chat Plugin?"
78
+ msgstr "¿Tienes problemas al configurar o usar el plugin de chat?"
79
+
80
+ #: options.php:158
81
+ msgid "Please consult our Troubleshooting Guide."
82
+ msgstr "Consulta nuestra guía de solución de problemas."
83
+
84
+ #: options.php:161
85
+ msgid ""
86
+ "If the troubleshooting steps in the guide do not solve your problem, please "
87
+ "post in the plugin support forum."
88
+ msgstr ""
89
+ "Si los pasos de solución de problemas de la guía no resuelven el problema,"
90
+ "publícalo en el foro de ayuda del plugin."
91
+
92
+ msgid ""
93
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
94
+ "enabling customers to message you while browsing your website. To see and "
95
+ "reply to those messages, simply use the same messaging tools you use for "
96
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
97
+ "App (available on iOS and Android), or by adding your page account to "
98
+ "Messenger. It's free, easy to install and comes with a user interface your "
99
+ "customers are already familiar with."
100
+ msgstr ""
101
+ "Con tan solo unos clics puedes añadir el plugin de chat de Facebook a tu "
102
+ "sitio web para que los clientes puedan enviarte mensajes mientras navegan "
103
+ "por él. Para ver y responder esos mensajes solo tienes que utilizar las "
104
+ "mismas herramientas de mensajería que usas para tus mensajes de Facebook en "
105
+ "el ordenador en facebook.com, la aplicación Administrador de páginas de "
106
+ "Facebook (disponible en iOS y Android) o al añadir la cuenta de tu página a "
107
+ "Messenger. Es gratis y fácil de instalar e incorpora una interfaz de usuario "
108
+ "con la que tus clientes ya están familiarizados."
109
+
110
+ msgid "The Official Facebook Chat Plugin"
111
+ msgstr "Plugin de chat oficial de Facebook"
languages/facebook-messenger-customer-chat-fi_FI.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-fi_FI.po ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 15:40-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: fi_FI\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Asetukset"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "UKK"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Tuki"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Facebook-keskusteluliitännäisen asetukset"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Aloittaminen"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Salli ihmisten aloittaa keskustelu sivustollasi ja jatkaa sitä "
48
+ "Messengerissä. Määrittäminen on helppoa. Sivustollasi aloitettuja "
49
+ "keskusteluja voidaan jatkaa asiakkaiden Messenger-sovelluksessa, joten et "
50
+ "koskaan menetä yhteyttä asiakkaisiisi. Lisäksi asiakkaat, joilla ei ole "
51
+ "Facebook Messengeriä, voivat keskustella kanssasi vierastilassa, jolloin "
52
+ "tavoitat useampia asiakkaita kuin koskaan ennen."
53
+
54
+ #: options.php:128
55
+ msgid "Setup Chat Plugin"
56
+ msgstr "Määritä keskusteluliitännäinen"
57
+
58
+ #: options.php:130
59
+ msgid "Edit Chat Plugin"
60
+ msgstr "Muokkaa keskusteluliitännäistä"
61
+
62
+ #: options.php:144
63
+ msgid ""
64
+ "The plugin code has already been added into your website. You can always go "
65
+ "back through the setup process to customize the plugin."
66
+ msgstr ""
67
+ "Liitännäisen koodi on jo lisätty sivustollesi. Voit aina palata takaisin "
68
+ "määritysprosessiin mukauttaaksesi liitännäistä."
69
+
70
+ #: options.php:153
71
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
72
+ msgstr "Liitännäisen käyttöön sovelletaan Facebook-alustan käyttöehtoja"
73
+
74
+ #: options.php:156
75
+ msgid "Having a problem setting up or using the Chat Plugin?"
76
+ msgstr ""
77
+ "Onko sinulla ongelmia keskusteluliitännäisen määrittämisessä tai "
78
+ "käyttämisessä?"
79
+
80
+ #: options.php:158
81
+ msgid "Please consult our Troubleshooting Guide."
82
+ msgstr "Katso apua vianmääritysoppaastamme."
83
+
84
+ #: options.php:161
85
+ msgid ""
86
+ "If the troubleshooting steps in the guide do not solve your problem, please "
87
+ "post in the plugin support forum."
88
+ msgstr ""
89
+ "Jos vianmääritysoppaan ohjeet eivät auta ongelman ratkaisemisessa,tee "
90
+ "asiasta julkaisu liitännäisen tukifoorumiin."
91
+
92
+ msgid ""
93
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
94
+ "enabling customers to message you while browsing your website. To see and "
95
+ "reply to those messages, simply use the same messaging tools you use for "
96
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
97
+ "App (available on iOS and Android), or by adding your page account to "
98
+ "Messenger. It's free, easy to install and comes with a user interface your "
99
+ "customers are already familiar with."
100
+ msgstr ""
101
+ "Voit muutamalla klikkauksella lisätä Facebook-keskusteluliitännäisen "
102
+ "sivustollesi, jolloin asiakkaat voivat lähettää sinulle viestejä sivustoasi "
103
+ "selatessaan. Voit katsoa asiakkaiden viestit ja vastata niihin helposti "
104
+ "käyttämällä samoja viestintätyökaluja, joita käytät Facebook-viestintään "
105
+ "tietokoneella osoitteessa facebook.com tai Facebook Pages Manager -"
106
+ "sovelluksessa (saatavilla iOS:sille ja Androidille). Vaihtoehtoisesti voit "
107
+ "lisätä sivutilisi Messengeriin. Liitännäinen on ilmainen. Sen asentaminen on "
108
+ "helppoa, ja sen mukana tulee asiakkaille entuudestaan tuttu käyttöliittymä.\""
109
+
110
+ msgid "The Official Facebook Chat Plugin"
111
+ msgstr "Virallinen Facebook-keskusteluliitännäinen"
languages/facebook-messenger-customer-chat-fr_CA.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-fr_CA.po ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 15:46-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: fr_CA\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Paramètres"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "FAQ"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Assistance"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Paramètres du module d’extension de discussion Facebook"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Vous débutez?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Offrez la possibilité aux gens de lancer une conversation sur votre site Web "
48
+ "et de la continuer sur Messenger. C’est facile à faire. Les discussions "
49
+ "lancées sur votre site Web peuvent se poursuivre dans l’application "
50
+ "Messenger des clients, ce qui évite de perdre contact avec eux. Grâce au "
51
+ "mode invité, même les personnes qui n’ont pas de compte Facebook Messenger "
52
+ "peuvent discuter avec vous. Vous pouvez donc joindre plus de clients que "
53
+ "jamais."
54
+
55
+ #: options.php:128
56
+ msgid "Setup Chat Plugin"
57
+ msgstr "Configurer le module d’extension de discussion"
58
+
59
+ #: options.php:130
60
+ msgid "Edit Chat Plugin"
61
+ msgstr "Modifier le module d’extension de discussion"
62
+
63
+ #: options.php:144
64
+ msgid ""
65
+ "The plugin code has already been added into your website. You can always go "
66
+ "back through the setup process to customize the plugin."
67
+ msgstr ""
68
+ "Le code du module d’extension de discussion a déjà été ajouté à votre site "
69
+ "Web. Vous pouvez toujours revenir au processus de configuration afin de "
70
+ "personnaliser le module d’extension."
71
+
72
+ #: options.php:153
73
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
74
+ msgstr ""
75
+ "L’utilisation de ce module d’extension est assujettie aux conditions de la "
76
+ "plateforme Facebook"
77
+
78
+ #: options.php:156
79
+ msgid "Having a problem setting up or using the Chat Plugin?"
80
+ msgstr ""
81
+ "Avez-vous de la difficulté à configurer ou à utiliser le module d’extension "
82
+ "de discussion?"
83
+
84
+ #: options.php:158
85
+ msgid "Please consult our Troubleshooting Guide."
86
+ msgstr "Veuillez consulter notre guide de résolution de problèmes."
87
+
88
+ #: options.php:161
89
+ msgid ""
90
+ "If the troubleshooting steps in the guide do not solve your problem, please "
91
+ "post in the plugin support forum."
92
+ msgstr ""
93
+ "Si les étapes mentionnées dans le guide de résolution de problèmes ne vous "
94
+ "permettent pas de régler votre problème, veuillez faire une publication dans "
95
+ "le forum d’assistance pour les modules d’extension."
96
+
97
+ msgid ""
98
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
99
+ "enabling customers to message you while browsing your website. To see and "
100
+ "reply to those messages, simply use the same messaging tools you use for "
101
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
102
+ "App (available on iOS and Android), or by adding your page account to "
103
+ "Messenger. It's free, easy to install and comes with a user interface your "
104
+ "customers are already familiar with."
105
+ msgstr ""
106
+ "À l’aide de seulement quelques clics, vous pouvez ajouter le module "
107
+ "d’extension de discussion Facebook à votre site Web, ce qui permet aux "
108
+ "clients de vous envoyer des messages pendant qu’ils parcourent votre site "
109
+ "Web. Pour lire ces messages et y répondre, utilisez simplement les mêmes "
110
+ "outils de messagerie que vous utilisez pour la messagerie Facebook sur votre "
111
+ "ordinateur à l’adresse facebook.com, sur l’application Gestionnaire de Pages "
112
+ "Facebook (disponible sur iOS et Android) ou en ajoutant le compte de votre "
113
+ "Page à Messenger. C’est gratuit, facile à installer et vos clients "
114
+ "connaissent déjà l’interface utilisateur."
115
+
116
+ msgid "The Official Facebook Chat Plugin"
117
+ msgstr "Le module d’extension de discussion officiel de Facebook"
languages/facebook-messenger-customer-chat-fr_FR.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-fr_FR.po ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 15:53-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: fr_FR\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Original \"Paramètres\""
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "FAQ"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Assistance"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Paramètres du plugin de discussion Facebook"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Premiers pas"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Permettez aux visiteurs de votre site web d’entamer une discussion sur celui-"
48
+ "ci et de poursuivre sur Messenger. Cela est très facile à configurer. Les "
49
+ "discussions entamées sur votre site web peuvent être poursuivies sur "
50
+ "l’application Messenger, afin que vous ne perdiez jamais le contact avec vos "
51
+ "clients. Même ceux qui n’ont pas de compte Facebook Messenger peuvent "
52
+ "discuter avec vous en tant qu’invité, afin que vous puissiez obtenir plus de "
53
+ "clients que jamais."
54
+
55
+ #: options.php:128
56
+ msgid "Setup Chat Plugin"
57
+ msgstr "Configurer le plugin de discussion"
58
+
59
+ #: options.php:130
60
+ msgid "Edit Chat Plugin"
61
+ msgstr "Modifier le plugin de discussion"
62
+
63
+ #: options.php:144
64
+ msgid ""
65
+ "The plugin code has already been added into your website. You can always go "
66
+ "back through the setup process to customize the plugin."
67
+ msgstr ""
68
+ "Le code du plugin a déjà été ajouté sur votre site web. Vous pouvez toujours "
69
+ "revenir en arrière dans le processus de configuration pour personnaliser le "
70
+ "plugin."
71
+
72
+ #: options.php:153
73
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
74
+ msgstr ""
75
+ "L’utilisation de ce plugin est sujette aux Conditions générales de la plate-"
76
+ "forme de Facebook "
77
+
78
+ #: options.php:156
79
+ msgid "Having a problem setting up or using the Chat Plugin?"
80
+ msgstr ""
81
+ "Un problème lors de la configuration ou de l’utilisation du plugin de "
82
+ "discussion ?"
83
+
84
+ #: options.php:158
85
+ msgid "Please consult our Troubleshooting Guide."
86
+ msgstr "Veuillez consulter notre guide de résolution des problèmes."
87
+
88
+ #: options.php:161
89
+ msgid ""
90
+ "If the troubleshooting steps in the guide do not solve your problem, please "
91
+ "post in the plugin support forum."
92
+ msgstr ""
93
+ "Si les étapes indiquées dans ce guide ne permettent pas de résoudre votre "
94
+ "problème, veuillez publier un sujet sur le forum d’assistance du plugin."
95
+
96
+ msgid ""
97
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
98
+ "enabling customers to message you while browsing your website. To see and "
99
+ "reply to those messages, simply use the same messaging tools you use for "
100
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
101
+ "App (available on iOS and Android), or by adding your page account to "
102
+ "Messenger. It's free, easy to install and comes with a user interface your "
103
+ "customers are already familiar with."
104
+ msgstr ""
105
+ "Vous pouvez ajouter le plugin de discussion Facebook sur votre site web en "
106
+ "quelques clics seulement, permettant ainsi à vos clients de vous envoyer un "
107
+ "message lorsqu’ils naviguent sur votre site web. Pour lire ces messages et y "
108
+ "répondre, il vous suffit d’utiliser les mêmes outils que vous utilisez pour "
109
+ "votre messagerie Facebook sur votre ordinateur à l’adresse Facebook.com "
110
+ "Application Gestionnaire de Pages Facebook (disponible sur Android et iOS) "
111
+ "ou en ajoutant le compte de votre page à Messenger. C’est gratuit, facile à "
112
+ "installer et comprend une interface utilisateur avec laquelle vos clients "
113
+ "sont déjà familiarisés.\""
114
+
115
+ msgid "The Official Facebook Chat Plugin"
116
+ msgstr "Le plugin de discussion officiel de Facebook"
languages/facebook-messenger-customer-chat-he_IL.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-he_IL.po ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 15:56-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? "
13
+ "2 : 3);\n"
14
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
15
+ "Last-Translator: \n"
16
+ "Language: he_IL\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: facebook-messenger-customer-chat.php:44
20
+ #: facebook-messenger-customer-chat.php:61
21
+ msgid "Settings"
22
+ msgstr "הגדרות"
23
+
24
+ #: facebook-messenger-customer-chat.php:68
25
+ msgid "FAQ"
26
+ msgstr "שאלות נפוצות"
27
+
28
+ #: facebook-messenger-customer-chat.php:74
29
+ msgid "Support"
30
+ msgstr "תמיכה"
31
+
32
+ #: options.php:107
33
+ msgid "Facebook Chat Plugin Settings"
34
+ msgstr "ההגדרות של פלאגין הצ'אט של פייסבוק"
35
+
36
+ #: options.php:111
37
+ msgid "Getting Started?"
38
+ msgstr "תחילת העבודה"
39
+
40
+ #: options.php:112
41
+ msgid ""
42
+ "Let people start a conversation on your website and continue in Messenger. "
43
+ "It's easy to set up. Chats started on your website can be continued in the "
44
+ "customers' Messenger app, so you never lose connections with your customers. "
45
+ "Even those without a Facebook Messenger account can chat with you in guest "
46
+ "mode, so you can reach more customers than ever."
47
+ msgstr ""
48
+ "אפשר לאנשים להתחיל שיחה באתר שלך ולהמשיך ב-Messenger. קל להגדיר זאת. ניתן "
49
+ "להמשיך צ'אטים שהותחלו באתר שלך באפליקציית Messenger של הלקוחות, כך שלעולם לא "
50
+ "תאבד חיבורים עם לקוחות. אפילו לקוחות ללא חשבון Facebook Messenger יוכלו "
51
+ "לשוחח איתך בצ'אט במצב אורח, כך שתוכל להגיע ללקוחות רבים יותר מאי-פעם."
52
+
53
+ #: options.php:128
54
+ msgid "Setup Chat Plugin"
55
+ msgstr "הגדרת הפלאגין של הצ'אט"
56
+
57
+ #: options.php:130
58
+ msgid "Edit Chat Plugin"
59
+ msgstr "עריכת הפלאגין של הצ'אט"
60
+
61
+ #: options.php:144
62
+ msgid ""
63
+ "The plugin code has already been added into your website. You can always go "
64
+ "back through the setup process to customize the plugin."
65
+ msgstr ""
66
+ "קוד הפלאגין כבר נוסף לאתר שלך. אתה תמיד יכול לחזור לתהליך ההגדרה כדי להתאים "
67
+ "אישית את הפלאגין."
68
+
69
+ #: options.php:153
70
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
71
+ msgstr ""
72
+ "קוד הפלאגין כבר נוסף לאתר שלך. אתה תמיד יכול לחזור לתהליך ההגדרה כדי להתאים "
73
+ "אישית את הפלאגין."
74
+
75
+ #: options.php:156
76
+ msgid "Having a problem setting up or using the Chat Plugin?"
77
+ msgstr "השימוש בפלאגין זה כפוף לתנאי הפלטפורמה של פייסבוק"
78
+
79
+ #: options.php:158
80
+ msgid "Please consult our Troubleshooting Guide."
81
+ msgstr "יש לך בעיה בהגדרה או בשימוש בפלאגין של הצ'אט?"
82
+
83
+ #: options.php:161
84
+ msgid ""
85
+ "If the troubleshooting steps in the guide do not solve your problem, please "
86
+ "post in the plugin support forum."
87
+ msgstr ""
88
+ "אם שלבי פתרון הבעיות במדריך לא יפתרו את הבעיה שלך, פרסם פוסט בפורום התמיכה "
89
+ "של הפלאגין."
90
+
91
+ msgid ""
92
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
93
+ "enabling customers to message you while browsing your website. To see and "
94
+ "reply to those messages, simply use the same messaging tools you use for "
95
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
96
+ "App (available on iOS and Android), or by adding your page account to "
97
+ "Messenger. It's free, easy to install and comes with a user interface your "
98
+ "customers are already familiar with."
99
+ msgstr ""
100
+ "באמצעות קליקים ספורים תוכל להוסיף לאתר שלך את הפלאגין של הצ'אט של פייסבוק מה "
101
+ "שיאפשר ללקוחות לשלוח לך הודעות במהלך הגלישה באתר שלך. כדי לראות את ההודעות "
102
+ "האלה ולהשיב להן פשוט השתמש באותם כלים לשליחה וקבלה של הודעות המשמשים אותך "
103
+ "להודעות בפייסבוק במחשב בכתובת facebook.com האפליקציה Pages Manager של "
104
+ "פייסבוק (זמינה ב-iOS וב-Android) או על ידי הוספת חשבון הדף שלך ל-Messenger "
105
+ "זה בחינם קל להתקנה ומגיע עם ממשק משתמש שהלקוחות שלך כבר מכירים.\""
106
+
107
+ msgid "The Official Facebook Chat Plugin"
108
+ msgstr "פלאגין הצ'אט הרשמי של פייסבוק"
languages/facebook-messenger-customer-chat-hi_IN.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-hi_IN.po ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-03 11:30-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: hi_IN\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "सेटिंग्स"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "सामान्य प्रश्न"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "सहयता मंच"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "फेसबुक चैट प्लगइन सेटिंग्स"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "शुरू करना?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "लोगों को बातचीत शुरू करने दें\n"
48
+ "अपनी वेबसाइट और मैसेंजर में जारी रखें। इसे स्थापित करना आसान है। आपकी वेबसाइट पर शुरू की "
49
+ "गई चैट को ग्राहकों में जारी रखा जा सकता है।\n"
50
+ "मैसेंजर ऐप, ताकि आप अपने ग्राहकों के साथ कभी भी कनेक्शन न खोएं।\n"
51
+ "यहां तक ​​कि बिना फेसबुक मैसेंजर अकाउंट वाले भी आपसे चैट कर सकते हैं\n"
52
+ "अतिथि मोड में, ताकि आप पहले से कहीं अधिक ग्राहकों तक पहुंच सकें।"
53
+
54
+ #: options.php:128
55
+ msgid "Setup Chat Plugin"
56
+ msgstr "सेटअप चैट प्लगइन"
57
+
58
+ #: options.php:130
59
+ msgid "Edit Chat Plugin"
60
+ msgstr "चैट प्लगइन संपादित करें"
61
+
62
+ #: options.php:144
63
+ msgid ""
64
+ "The plugin code has already been added into your website. You can always go "
65
+ "back through the setup process to customize the plugin."
66
+ msgstr ""
67
+ "प्लगइन कोड आपकी वेबसाइट में पहले ही जोड़ा जा चुका है। आप प्लगइन को कस्टमाइज़ करने के लिए "
68
+ "हमेशा सेटअप प्रक्रिया के माध्यम से वापस जा सकते हैं।"
69
+
70
+ #: options.php:153
71
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
72
+ msgstr "इस प्लगइन का उपयोग फेसबुक के प्लेटफ़ॉर्म शर्तों के अधीन है"
73
+
74
+ #: options.php:156
75
+ msgid "Having a problem setting up or using the Chat Plugin?"
76
+ msgstr "चैट प्लगइन स्थापित करने या उपयोग करने में कोई समस्या है?"
77
+
78
+ #: options.php:158
79
+ msgid "Please consult our Troubleshooting Guide."
80
+ msgstr "कृपया हमारे समस्या निवारण गाइड से परामर्श करें।"
81
+
82
+ #: options.php:161
83
+ msgid ""
84
+ "If the troubleshooting steps in the guide do not solve your problem, please "
85
+ "post in the plugin support forum."
86
+ msgstr ""
87
+ "यदि मार्गदर्शिका के समस्या निवारण चरण आपकी समस्या का समाधान नहीं करते हैं, तो कृपया "
88
+ "प्लगइन समर्थन फोरम में पोस्ट करें।"
89
+
90
+ msgid ""
91
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
92
+ "enabling customers to message you while browsing your website. To see and "
93
+ "reply to those messages, simply use the same messaging tools you use for "
94
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
95
+ "App (available on iOS and Android), or by adding your page account to "
96
+ "Messenger. It's free, easy to install and comes with a user interface your "
97
+ "customers are already familiar with."
98
+ msgstr ""
99
+ "कुछ क्लिकों के साथ, आप अपनी वेबसाइट पर फेसबुक चैट प्लगइन जोड़ सकते हैं, जिससे ग्राहक आपकी "
100
+ "वेबसाइट ब्राउज़ करते समय आपको संदेश दे सकेंगे। उन संदेशों को देखने और उनका जवाब देने के लिए, "
101
+ "बस उन्हीं मैसेजिंग टूल्स का उपयोग करें, जिन्हें आप अपने फेसबुक मैसेजिंग के लिए उपयोग करते हैं, "
102
+ "फेसबुक पर डेस्कटॉप पर, फेसबुक पेज मैनेजर ऐप (आईओएस और एंड्रॉइड पर उपलब्ध), या मैसेंजर पर "
103
+ "अपने पेज अकाउंट को जोड़कर। यह मुफ़्त है, स्थापित करना आसान है और एक उपयोगकर्ता इंटरफ़ेस के "
104
+ "साथ आता है जो आपके ग्राहक पहले से परिचित हैं।"
105
+
106
+ msgid "The Official Facebook Chat Plugin"
107
+ msgstr "आधिकारिक फेसबुक चैट प्लगइन"
languages/facebook-messenger-customer-chat-it_IT.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-it_IT.po ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 15:59-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: it_IT\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Impostazioni"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "FAQ"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Assistenza"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Impostazioni del plug-in per la chat di Facebook"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Primi passi"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Consenti alle persone di avviare una conversazione con il tuo sito web e "
48
+ "continuare su Messenger. La configurazione è semplice. Le chat avviate sul "
49
+ "sito web possono continuare nell'app Messenger dei clienti, in modo da non "
50
+ "perdere nessuna connessione. Anche chi non dispone di un account Facebook "
51
+ "Messenger può chattare con te in modalità ospite. In questo modo puoi "
52
+ "raggiungere più clienti che mai."
53
+
54
+ #: options.php:128
55
+ msgid "Setup Chat Plugin"
56
+ msgstr "Configura il plug-in per la chat"
57
+
58
+ #: options.php:130
59
+ msgid "Edit Chat Plugin"
60
+ msgstr "Modifica il plug-in per la chat"
61
+
62
+ #: options.php:144
63
+ msgid ""
64
+ "The plugin code has already been added into your website. You can always go "
65
+ "back through the setup process to customize the plugin."
66
+ msgstr ""
67
+ "Il codice del plug-in è stato già aggiunto nel tuo sito web. Per "
68
+ "personalizzare il plug-in, puoi sempre tornare alla procedura di "
69
+ "configurazione."
70
+
71
+ #: options.php:153
72
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
73
+ msgstr ""
74
+ "L'utilizzo di questo plug-in è soggetto alle Condizioni della Piattaforma "
75
+ "Facebook"
76
+
77
+ #: options.php:156
78
+ msgid "Having a problem setting up or using the Chat Plugin?"
79
+ msgstr ""
80
+ "Stai riscontrando un problema con la configurazione o l'utilizzo del plug-in "
81
+ "per la chat?"
82
+
83
+ #: options.php:158
84
+ msgid "Please consult our Troubleshooting Guide."
85
+ msgstr "Consulta la nostra guida alla risoluzione dei problemi."
86
+
87
+ #: options.php:161
88
+ msgid ""
89
+ "If the troubleshooting steps in the guide do not solve your problem, please "
90
+ "post in the plugin support forum."
91
+ msgstr ""
92
+ "Se i passaggi per la risoluzione dei problemi indicati nella guida non "
93
+ "risolvono il problema, pubblica un post nel forum di supporto per il plug-in."
94
+
95
+ msgid ""
96
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
97
+ "enabling customers to message you while browsing your website. To see and "
98
+ "reply to those messages, simply use the same messaging tools you use for "
99
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
100
+ "App (available on iOS and Android), or by adding your page account to "
101
+ "Messenger. It's free, easy to install and comes with a user interface your "
102
+ "customers are already familiar with."
103
+ msgstr ""
104
+ "In pochi clic puoi aggiungere il plug-in per la chat di Facebook al tuo sito "
105
+ "web, consentendo ai clienti di inviarti un messaggio mentre esplorano il "
106
+ "sito web. Per vedere e rispondere a tali messaggi, basta usare gli stessi "
107
+ "strumenti di messaggistica che usi per i messaggi di Facebook dal computer "
108
+ "su facebook.com con l'app Gestore delle Pagine di Facebook (disponibile su "
109
+ "iOS e Android) oppure puoi aggiungere l'account della tua Pagina su "
110
+ "Messenger. È gratis, facile da installare ed è dotato di un'interfaccia "
111
+ "utente che i tuoi clienti già conoscono."
112
+
113
+ msgid "The Official Facebook Chat Plugin"
114
+ msgstr "Il plug-in per la chat di Facebook ufficiale"
languages/facebook-messenger-customer-chat-ja_JP.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-ja_JP.po ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 16:02-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=1; plural=0;\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: ja_JP\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "設定"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "よくある質問"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "サポート"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Facebookチャットプラグインの設定"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "スタートガイド"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "ウェブサイトでスレッドを開始し、Messengerでスレッドを継続できます。設定は簡単"
48
+ "です。ウェブサイトで開始したチャットを顧客のMessengerアプリで継続できるため、"
49
+ "顧客とのつながりが途絶えません。Facebook Messengerアカウントを持っていない人"
50
+ "でもゲストモードでチャットできるため、これまで以上に多くの顧客にリーチできま"
51
+ "す。"
52
+
53
+ #: options.php:128
54
+ msgid "Setup Chat Plugin"
55
+ msgstr "チャットプラグインの設定"
56
+
57
+ #: options.php:130
58
+ msgid "Edit Chat Plugin"
59
+ msgstr "チャットプラグインの編集"
60
+
61
+ #: options.php:144
62
+ msgid ""
63
+ "The plugin code has already been added into your website. You can always go "
64
+ "back through the setup process to customize the plugin."
65
+ msgstr ""
66
+ "プラグインコードはすでにウェブサイトに追加されています。いつでも設定プロセス"
67
+ "に戻り、プラグインをカスタマイズできます。"
68
+
69
+ #: options.php:153
70
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
71
+ msgstr "プラグインの利用には、Facebookのプラットフォーム規約が適用されます"
72
+
73
+ #: options.php:156
74
+ msgid "Having a problem setting up or using the Chat Plugin?"
75
+ msgstr "チャットプラグインの設定または利用に問題がある場合"
76
+
77
+ #: options.php:158
78
+ msgid "Please consult our Troubleshooting Guide."
79
+ msgstr "トラブルシューティングガイドをご覧ください。"
80
+
81
+ #: options.php:161
82
+ msgid ""
83
+ "If the troubleshooting steps in the guide do not solve your problem, please "
84
+ "post in the plugin support forum."
85
+ msgstr ""
86
+ "ガイド記載のトラブルシューティングの手順を実行しても問題が解決しない場合は、"
87
+ "プラグインのサポートフォーラムに投稿してください。"
88
+
89
+ msgid ""
90
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
91
+ "enabling customers to message you while browsing your website. To see and "
92
+ "reply to those messages, simply use the same messaging tools you use for "
93
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
94
+ "App (available on iOS and Android), or by adding your page account to "
95
+ "Messenger. It's free, easy to install and comes with a user interface your "
96
+ "customers are already familiar with."
97
+ msgstr ""
98
+ "数クリックの簡単な操作で ウェブサイトにFacebookチャットプラグインを追加すれ"
99
+ "ば、 顧客はウェブサイトの閲覧中にあなたにメッセージを送信できるようになりま"
100
+ "す。メッセージを確認し、返信するには、 Facebookのメッセージで使用しているのと"
101
+ "同じメッセージツールを デスクトップで、facebook.comの Facebookページマネー"
102
+ "ジャアプリ(iOSおよびAndroidで利用可能)で使うか、 Messengerにページアカウント"
103
+ "を追加してください。無料で利用できます インストールは簡単で、顧客がすでに使い"
104
+ "慣れているユーザーインターフェイスを利用できます。"
105
+
106
+ msgid "The Official Facebook Chat Plugin"
107
+ msgstr "Facebookチャット公式プラグイン"
languages/facebook-messenger-customer-chat-ko_KR.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-ko_KR.po ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 16:05-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=1; plural=0;\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: ko_KR\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "설정"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "FAQ"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "지원"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Facebook 채팅 플러그인 설정"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "시작하기"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "간편한 설정으로 웹사이트에서 고객과 대화를 시작하고 Messenger에서 대화를 이어"
48
+ "나갈 수 있습니다. 웹사이트에서 시작된 채팅을 고객의 Messenger 앱에서 이어나"
49
+ "가 비즈니스가 고객과 계속해서 연결할 수 있습니다. Facebook Messenger 계정이 "
50
+ "없는 사용자도 게스트 모드로 채팅할 수 있으므로 더 많은 고객에게 도달할 수 있"
51
+ "습니다."
52
+
53
+ #: options.php:128
54
+ msgid "Setup Chat Plugin"
55
+ msgstr "채팅 플러그인 설정"
56
+
57
+ #: options.php:130
58
+ msgid "Edit Chat Plugin"
59
+ msgstr "채팅 플러그인 수정"
60
+
61
+ #: options.php:144
62
+ msgid ""
63
+ "The plugin code has already been added into your website. You can always go "
64
+ "back through the setup process to customize the plugin."
65
+ msgstr ""
66
+ "플러그인 코드가 웹사이트에 이미 추가되었습니다. 언제든지 설정 절차로 돌아가 "
67
+ "플러그인을 맞춤 설정할 수 있습니다."
68
+
69
+ #: options.php:153
70
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
71
+ msgstr "이 플러그인의 사용에는 Facebook의 플랫폼 약관이 적용됩니다"
72
+
73
+ #: options.php:156
74
+ msgid "Having a problem setting up or using the Chat Plugin?"
75
+ msgstr "채팅 플러그인 설정 또는 사용에 문제가 있으신가요?"
76
+
77
+ #: options.php:158
78
+ msgid "Please consult our Troubleshooting Guide."
79
+ msgstr "문제 해결 가이드를 참조하세요."
80
+
81
+ #: options.php:161
82
+ msgid ""
83
+ "If the troubleshooting steps in the guide do not solve your problem, please "
84
+ "post in the plugin support forum."
85
+ msgstr ""
86
+ "문제 해결 가이드에 제시된 방법으로도 문제가 해결되지 않는 경우 플러그인 지원 "
87
+ "포럼에 문의글을 게시하세요."
88
+
89
+ msgid ""
90
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
91
+ "enabling customers to message you while browsing your website. To see and "
92
+ "reply to those messages, simply use the same messaging tools you use for "
93
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
94
+ "App (available on iOS and Android), or by adding your page account to "
95
+ "Messenger. It's free, easy to install and comes with a user interface your "
96
+ "customers are already familiar with."
97
+ msgstr ""
98
+ "클릭 몇 번으로 웹사이트에 Facebook 채팅 플러그인을 추가하면 고객이 웹사이트"
99
+ "를 둘러보면서 비즈니스에 메시지를 보낼 수 있습니다. 고객 메시지를 확인하고 답"
100
+ "장을 보내려면 데스크톱의 경우 facebook.com에서 Facebook 메시지 전송에 사용하"
101
+ "는 동일한 도구를 사용하고 모바일의 경우 Facebook 페이지 관리자 앱(iOS 및 "
102
+ "Android 다운로드 가능)을 이용하거나 Messenger에 페이지 계정을 추가하면 됩니"
103
+ "다. 무료로 사용 가능하며 간편하게 설치할 수 있습니다. 고객에게 친숙한 사용자 "
104
+ "인터페이스로 친근하게 다가가 보세요.\""
105
+
106
+ msgid "The Official Facebook Chat Plugin"
107
+ msgstr "공식 Facebook 채팅 플러그인"
languages/facebook-messenger-customer-chat-nb_NO.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-nb_NO.po ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 16:09-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: nb_NO\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Innstillinger"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "Vanlige spørsmål"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Støtte"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Innstillinger for programtillegg for Facebook-chat"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Komme i gang?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "La folk starte en samtale på nettstedet ditt og fortsette på Messenger. Det "
48
+ "er enkelt å konfigurere. Chatter som begynner på nettstedet ditt, kan "
49
+ "fortsettes i kundens Messenger-app, slik at du ikke mister kontakten med "
50
+ "kundene dine. Også de som ikke har en Facebook Messenger-konto, kan chatte "
51
+ "med deg i gjestemodus, så du kan nå ut til flere kunder enn noensinne."
52
+
53
+ #: options.php:128
54
+ msgid "Setup Chat Plugin"
55
+ msgstr "Konfigurering programtillegg for chat"
56
+
57
+ #: options.php:130
58
+ msgid "Edit Chat Plugin"
59
+ msgstr "Redigere programtillegg for chat"
60
+
61
+ #: options.php:144
62
+ msgid ""
63
+ "The plugin code has already been added into your website. You can always go "
64
+ "back through the setup process to customize the plugin."
65
+ msgstr ""
66
+ "Koden for programtillegget har allerede blitt lagt til nettstedet ditt. Du "
67
+ "kan alltid gå tilbake i konfigureringsprosessen for å tilpasse "
68
+ "programtillegget."
69
+
70
+ #: options.php:153
71
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
72
+ msgstr ""
73
+ "Bruk av dette programtillegget er underlagt retningslinjene for Facebook-"
74
+ "plattformen"
75
+
76
+ #: options.php:156
77
+ msgid "Having a problem setting up or using the Chat Plugin?"
78
+ msgstr ""
79
+ "Har du problemer med konfigurering eller bruk av programtillegget for chat?"
80
+
81
+ #: options.php:158
82
+ msgid "Please consult our Troubleshooting Guide."
83
+ msgstr "Ta en titt på feilsøkingsveiledningen vår."
84
+
85
+ #: options.php:161
86
+ msgid ""
87
+ "If the troubleshooting steps in the guide do not solve your problem, please "
88
+ "post in the plugin support forum."
89
+ msgstr ""
90
+ "Hvis trinnene i feilsøkingsveiledningen ikke løser problemet ditt, kan du "
91
+ "publisere et innlegg i støtteforumet for programtillegg."
92
+
93
+ msgid ""
94
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
95
+ "enabling customers to message you while browsing your website. To see and "
96
+ "reply to those messages, simply use the same messaging tools you use for "
97
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
98
+ "App (available on iOS and Android), or by adding your page account to "
99
+ "Messenger. It's free, easy to install and comes with a user interface your "
100
+ "customers are already familiar with."
101
+ msgstr ""
102
+ "Med et par klikk kan du legge programtillegget for Facebook-chat til "
103
+ "nettstedet ditt, og gi kundene muligheten til å sende meldinger mens de "
104
+ "besøker nettstedet ditt. For å se og svare på meldingene, bruker du ganske "
105
+ "enkelt de samme meldingstjenestene som når du sender Facebook-meldinger på "
106
+ "facebook.com Facebooks Sideadministrasjon-app (tilgjengelig for iOS og "
107
+ "Android) eller ved å legge sidekontoen din til Messenger. Det er gratis, "
108
+ "enkelt å installere, og har et brukergrensesnitt kundene dine allerede er "
109
+ "vant til å bruke."
110
+
111
+ msgid "The Official Facebook Chat Plugin"
112
+ msgstr "Facebooks offisielle programtillegg for chat"
languages/facebook-messenger-customer-chat-nl_NL.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-nl_NL.po ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 16:12-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: nl_NL\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Instellingen"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "Veelgestelde vragen"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Ondersteuning"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Instellingen de plug-in voor Facebook Chat"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Aan de slag?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Laat mensen een gesprek starten op je website en het gesprek voortzetten in "
48
+ "Messenger. Je kunt dit eenvoudig instellen. Chats die op je website worden "
49
+ "gestart, kunnen worden voortgezet in de Messenger-app van klanten. Op deze "
50
+ "manier verlies je nooit het contact met je klanten. Zelfs klanten zonder "
51
+ "Facebook Messenger-account kunnen met je chatten in de gastmodus, zodat je "
52
+ "meer klanten dan ooit kunt bereiken."
53
+
54
+ #: options.php:128
55
+ msgid "Setup Chat Plugin"
56
+ msgstr "Chatplug-in instellen"
57
+
58
+ #: options.php:130
59
+ msgid "Edit Chat Plugin"
60
+ msgstr "Chatplug-in bewerken"
61
+
62
+ #: options.php:144
63
+ msgid ""
64
+ "The plugin code has already been added into your website. You can always go "
65
+ "back through the setup process to customize the plugin."
66
+ msgstr ""
67
+ "De plug-incode is al toegevoegd aan je website. Je kunt altijd terugkeren in "
68
+ "het configuratieproces om de plug-in aan te passen."
69
+
70
+ #: options.php:153
71
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
72
+ msgstr ""
73
+ "Het gebruik van deze plug-in is onderhevig aan de platformvoorwaarden van "
74
+ "Facebook "
75
+
76
+ #: options.php:156
77
+ msgid "Having a problem setting up or using the Chat Plugin?"
78
+ msgstr ""
79
+ "Ondervind je problemen met het instellen of gebruiken van de chatplug-in?"
80
+
81
+ #: options.php:158
82
+ msgid "Please consult our Troubleshooting Guide."
83
+ msgstr "Raadpleeg onze gids voor het oplossen van problemen."
84
+
85
+ #: options.php:161
86
+ msgid ""
87
+ "If the troubleshooting steps in the guide do not solve your problem, please "
88
+ "post in the plugin support forum."
89
+ msgstr ""
90
+ "Als de stappen in de gids om het probleem op te lossen niet werken, plaats "
91
+ "dan een bericht in het forum voor plug-inondersteuning."
92
+
93
+ msgid ""
94
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
95
+ "enabling customers to message you while browsing your website. To see and "
96
+ "reply to those messages, simply use the same messaging tools you use for "
97
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
98
+ "App (available on iOS and Android), or by adding your page account to "
99
+ "Messenger. It's free, easy to install and comes with a user interface your "
100
+ "customers are already familiar with."
101
+ msgstr ""
102
+ "In enkele klikken kun je de plug-in voor Facebook Chat toevoegen aan je "
103
+ "website zodat klanten chatberichten naar je kunnen sturen terwijl ze door je "
104
+ "website bladeren. Als je deze chatberichten wilt bekijken en beantwoorden, "
105
+ "gebruik je dezelfde chatberichtentools die je gebruikt voor je Facebook-"
106
+ "chatberichten op een computer op facebook.com, gebruik je de Facebook-app "
107
+ "Paginabeheer (beschikbaar op iOS en Android) of voeg je je pagina-account "
108
+ "toe aan Messenger. De plug-in is gratis, eenvoudig te installeren en bevat "
109
+ "een gebruikersinterface waarmee je klanten al bekend zijn."
110
+
111
+ msgid "The Official Facebook Chat Plugin"
112
+ msgstr "De officiële plug-in voor Facebook Chat\""
languages/facebook-messenger-customer-chat-pl_PL.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-pl_PL.po ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 16:14-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
13
+ "|| n%100>14) ? 1 : 2);\n"
14
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
15
+ "Last-Translator: \n"
16
+ "Language: pl_PL\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: facebook-messenger-customer-chat.php:44
20
+ #: facebook-messenger-customer-chat.php:61
21
+ msgid "Settings"
22
+ msgstr "Ustawienia"
23
+
24
+ #: facebook-messenger-customer-chat.php:68
25
+ msgid "FAQ"
26
+ msgstr "NAJCZĘŚCIEJ ZADAWANE PYTANIA"
27
+
28
+ #: facebook-messenger-customer-chat.php:74
29
+ msgid "Support"
30
+ msgstr "Pomoc"
31
+
32
+ #: options.php:107
33
+ msgid "Facebook Chat Plugin Settings"
34
+ msgstr "Ustawienia wtyczki Czatu Facebooka"
35
+
36
+ #: options.php:111
37
+ msgid "Getting Started?"
38
+ msgstr "Pierwsze kroki"
39
+
40
+ #: options.php:112
41
+ msgid ""
42
+ "Let people start a conversation on your website and continue in Messenger. "
43
+ "It's easy to set up. Chats started on your website can be continued in the "
44
+ "customers' Messenger app, so you never lose connections with your customers. "
45
+ "Even those without a Facebook Messenger account can chat with you in guest "
46
+ "mode, so you can reach more customers than ever."
47
+ msgstr ""
48
+ "Daj klientom możliwość rozpoczynania konwersacji w Twojej witrynie i "
49
+ "kontynuowania jej w Messengerze. Konfiguracja jest łatwa. Czaty rozpoczęte w "
50
+ "Twojej witrynie internetowej mogą być kontynuowane w aplikacji Messenger "
51
+ "klienta, dzięki czemu nigdy nie stracisz kontaktu z klientami. Osoby, które "
52
+ "nie mają konta Facebook Messenger, mogą rozmawiać z Tobą na czacie w trybie "
53
+ "gościa, dzięki czemu możesz dotrzeć do większej liczby klientów niż dotąd."
54
+
55
+ #: options.php:128
56
+ msgid "Setup Chat Plugin"
57
+ msgstr "Konfigurowanie wtyczki do czatu"
58
+
59
+ #: options.php:130
60
+ msgid "Edit Chat Plugin"
61
+ msgstr "Edytowanie wtyczki do czatu"
62
+
63
+ #: options.php:144
64
+ msgid ""
65
+ "The plugin code has already been added into your website. You can always go "
66
+ "back through the setup process to customize the plugin."
67
+ msgstr ""
68
+ "Kod wtyczki został już dodany do Twojej witryny internetowej. Zawsze możesz "
69
+ "wrócić do procesu konfiguracji, aby dostosować wtyczkę."
70
+
71
+ #: options.php:153
72
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
73
+ msgstr "Korzystanie z tej wtyczki podlega Regulaminowi platformy Facebook"
74
+
75
+ #: options.php:156
76
+ msgid "Having a problem setting up or using the Chat Plugin?"
77
+ msgstr "Masz problem z konfigurowaniem wtyczki czatu lub korzystaniem z niej?"
78
+
79
+ #: options.php:158
80
+ msgid "Please consult our Troubleshooting Guide."
81
+ msgstr "Skorzystaj z przewodnika po rozwiązywaniu problemów."
82
+
83
+ #: options.php:161
84
+ msgid ""
85
+ "If the troubleshooting steps in the guide do not solve your problem, please "
86
+ "post in the plugin support forum."
87
+ msgstr ""
88
+ "Jeżeli propozycje rozwiązania problemu opisane w przewodniku nie rozwiązują "
89
+ "Twojego problemu,opisz go na forum pomocy dotyczącej wtyczki."
90
+
91
+ msgid ""
92
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
93
+ "enabling customers to message you while browsing your website. To see and "
94
+ "reply to those messages, simply use the same messaging tools you use for "
95
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
96
+ "App (available on iOS and Android), or by adding your page account to "
97
+ "Messenger. It's free, easy to install and comes with a user interface your "
98
+ "customers are already familiar with."
99
+ msgstr ""
100
+ "Wystarczy kilka kliknięć, aby dodać do witryny wtyczkę Czat Facebooka, która "
101
+ "umożliwi klientom wysyłanie do Ciebie wiadomości podczas przeglądania "
102
+ "witryny. Aby przeglądać te wiadomości i odpowiadać na nie, skorzystaj z tych "
103
+ "samych narzędzi do wysyłania wiadomości, których używasz na potrzeby "
104
+ "wiadomości na Facebooku na komputerze, dostępnych pod adresem facebook.com, "
105
+ "lub w aplikacji Menedżer stron na Facebooku (dostępnej na urządzenia z "
106
+ "systemem iOS lub Android), lub dodaj konto swojej strony do Messengera. "
107
+ "Opcja jest bezpłatna, łatwa do zainstalowania i ma interfejs użytkownika, "
108
+ "który dobrze znają klienci."
109
+
110
+ msgid "The Official Facebook Chat Plugin"
111
+ msgstr "Oficjalna wtyczka Czatu Facebooka"
languages/facebook-messenger-customer-chat-pt_BR.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-pt_BR.po ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 16:17-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: pt_BR\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Configurações"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "Perguntas frequentes"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Suporte"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Configurações do plugin de bate-papo do Facebook"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Dando os primeiros passos?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Permita que as pessoas iniciem uma conversa no site e a continuem no "
48
+ "Messenger. É fácil de configurar. Os bate-papos iniciados no site podem "
49
+ "continuar no aplicativo do Messenger dos clientes. Assim, você nunca perde a "
50
+ "conexão com eles. Até quem não tem uma conta no Facebook Messenger pode "
51
+ "conversar com você no modo convidado, o que permite alcançar mais clientes "
52
+ "do que nunca."
53
+
54
+ #: options.php:128
55
+ msgid "Setup Chat Plugin"
56
+ msgstr "Configurar plugin de bate-papo"
57
+
58
+ #: options.php:130
59
+ msgid "Edit Chat Plugin"
60
+ msgstr "Editar plugin de bate-papo"
61
+
62
+ #: options.php:144
63
+ msgid ""
64
+ "The plugin code has already been added into your website. You can always go "
65
+ "back through the setup process to customize the plugin."
66
+ msgstr ""
67
+ "O código do plugin já foi adicionado ao site. É possível retornar ao "
68
+ "processo de configuração para personalizar o plugin."
69
+
70
+ #: options.php:153
71
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
72
+ msgstr "O uso do plugin está sujeito aos Termos da Plataforma do Facebook"
73
+
74
+ #: options.php:156
75
+ msgid "Having a problem setting up or using the Chat Plugin?"
76
+ msgstr "Com problemas para configurar ou usar o plugin de bate-papo?"
77
+
78
+ #: options.php:158
79
+ msgid "Please consult our Troubleshooting Guide."
80
+ msgstr "Confira nosso guia de solução de problemas."
81
+
82
+ #: options.php:161
83
+ msgid ""
84
+ "If the troubleshooting steps in the guide do not solve your problem, please "
85
+ "post in the plugin support forum."
86
+ msgstr ""
87
+ "Caso as etapas de solução de problemas do guia não resolvam seu problema, "
88
+ "faça uma publicação no fórum de suporte ao plugin."
89
+
90
+ msgid ""
91
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
92
+ "enabling customers to message you while browsing your website. To see and "
93
+ "reply to those messages, simply use the same messaging tools you use for "
94
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
95
+ "App (available on iOS and Android), or by adding your page account to "
96
+ "Messenger. It's free, easy to install and comes with a user interface your "
97
+ "customers are already familiar with."
98
+ msgstr ""
99
+ "Com alguns cliques, você pode adicionar o plugin de bate-papo do Facebook ao "
100
+ "site, o que permite que os clientes enviem mensagens para você enquanto "
101
+ "navegam nele. Para ver essas mensagens e responder a elas, basta usar as "
102
+ "mesmas ferramentas de mensagem usadas para o Facebook no desktop em facebook."
103
+ "com ou no Aplicativo Gerenciador de Páginas do Facebook (disponível no iOS "
104
+ "ou no Android) ou adicionar a conta da sua Página ao Messenger. O plugin é "
105
+ "gratuito e fácil de instalar. Além disso, ele tem uma interface do usuário "
106
+ "com a qual os clientes já estão acostumados."
107
+
108
+ msgid "The Official Facebook Chat Plugin"
109
+ msgstr "O plugin de bate-papo oficial do Facebook"
languages/facebook-messenger-customer-chat-pt_PT.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-pt_PT.po ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 16:20-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: pt_PT\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Definições"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "Perguntas frequentes"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Suporte"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Definições do plug-in de chat do Facebook"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Como começar"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Permite que as pessoas iniciem uma conversa no teu site e continuem a mesma "
48
+ "no Messenger. A configuração é simples. As conversas iniciadas no teu site "
49
+ "podem ser continuadas na app Messenger dos clientes, para que nunca percas "
50
+ "ligações com eles. Mesmo aqueles que não têm uma conta do Facebook Messenger "
51
+ "podem conversar contigo no modo de convidado, para que possas alcançar mais "
52
+ "clientes do que nunca."
53
+
54
+ #: options.php:128
55
+ msgid "Setup Chat Plugin"
56
+ msgstr "Configurar plug-in de chat"
57
+
58
+ #: options.php:130
59
+ msgid "Edit Chat Plugin"
60
+ msgstr "Editar plug-in de chat"
61
+
62
+ #: options.php:144
63
+ msgid ""
64
+ "The plugin code has already been added into your website. You can always go "
65
+ "back through the setup process to customize the plugin."
66
+ msgstr ""
67
+ "O código de plug-in já foi adicionado ao teu site. Podes sempre percorrer o "
68
+ "processo de configuração para personalizares o plug-in."
69
+
70
+ #: options.php:153
71
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
72
+ msgstr ""
73
+ "A utilização deste plug-in está sujeita aos Termos da Plataforma do Facebook"
74
+
75
+ #: options.php:156
76
+ msgid "Having a problem setting up or using the Chat Plugin?"
77
+ msgstr "Estás a ter problemas em configurar ou utilizar o plug-in de chat?"
78
+
79
+ #: options.php:158
80
+ msgid "Please consult our Troubleshooting Guide."
81
+ msgstr "Consulta o nosso guia de resolução de problemas."
82
+
83
+ #: options.php:161
84
+ msgid ""
85
+ "If the troubleshooting steps in the guide do not solve your problem, please "
86
+ "post in the plugin support forum."
87
+ msgstr ""
88
+ "Se os passos de resolução de problemas no guia não resolverem o teu problema,"
89
+ "publica no fórum de suporte do plug-in."
90
+
91
+ msgid ""
92
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
93
+ "enabling customers to message you while browsing your website. To see and "
94
+ "reply to those messages, simply use the same messaging tools you use for "
95
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
96
+ "App (available on iOS and Android), or by adding your page account to "
97
+ "Messenger. It's free, easy to install and comes with a user interface your "
98
+ "customers are already familiar with."
99
+ msgstr ""
100
+ "Com alguns cliques podes adicionar o plug-in de chat do Facebook ao teu "
101
+ "site, o que permite que os clientes te enviem mensagens enquanto navegam no "
102
+ "teu site. Para veres e responderes a essas mensagens, utiliza as mesmas "
103
+ "ferramentas de mensagens que utilizas para as mensagens do Facebook no "
104
+ "computador em facebook.com e na app Gestor de Páginas do Facebook "
105
+ "(disponível para iOS e Android) ou adiciona a conta da tua Página ao "
106
+ "Messenger. É gratuito, fácil de instalar e tem uma interface de utilizador "
107
+ "que os teus clientes já conhecem."
108
+
109
+ msgid "The Official Facebook Chat Plugin"
110
+ msgstr "Plug-in de chat oficial do Facebook"
languages/facebook-messenger-customer-chat-ru_RU.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-ru_RU.po ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 21:25-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
13
+ "%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
14
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
15
+ "Last-Translator: \n"
16
+ "Language: ru_RU\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: facebook-messenger-customer-chat.php:44
20
+ #: facebook-messenger-customer-chat.php:61
21
+ msgid "Settings"
22
+ msgstr "Настройки"
23
+
24
+ #: facebook-messenger-customer-chat.php:68
25
+ msgid "FAQ"
26
+ msgstr "Часто задаваемые вопросы"
27
+
28
+ #: facebook-messenger-customer-chat.php:74
29
+ msgid "Support"
30
+ msgstr "Поддержка"
31
+
32
+ #: options.php:107
33
+ msgid "Facebook Chat Plugin Settings"
34
+ msgstr "Настройки плагина чата Facebook"
35
+
36
+ #: options.php:111
37
+ msgid "Getting Started?"
38
+ msgstr "Вы только начинаете?"
39
+
40
+ #: options.php:112
41
+ msgid ""
42
+ "Let people start a conversation on your website and continue in Messenger. "
43
+ "It's easy to set up. Chats started on your website can be continued in the "
44
+ "customers' Messenger app, so you never lose connections with your customers. "
45
+ "Even those without a Facebook Messenger account can chat with you in guest "
46
+ "mode, so you can reach more customers than ever."
47
+ msgstr ""
48
+ "Дайте людям возможность начать переписку на вашем сайте и продолжить ее в "
49
+ "Messenger. Настроить это очень просто. Переписки, начатые на сайте, можно "
50
+ "продолжить в приложении Messenger. Так вы останетесь на связи с клиентами. "
51
+ "Отправлять сообщения в режиме гостя могут даже посетители без аккаунта "
52
+ "Facebook Messenger, поэтому вы можете охватить намного больше клиентов."
53
+
54
+ #: options.php:128
55
+ msgid "Setup Chat Plugin"
56
+ msgstr "Скачать плагин чата"
57
+
58
+ #: options.php:130
59
+ msgid "Edit Chat Plugin"
60
+ msgstr "Редактировать плагин чата"
61
+
62
+ #: options.php:144
63
+ msgid ""
64
+ "The plugin code has already been added into your website. You can always go "
65
+ "back through the setup process to customize the plugin."
66
+ msgstr ""
67
+ "Код плагина уже добавлен на ваш сайт. Вы в любое время можете вернуться к "
68
+ "настройкам, чтобы скорректировать плагин."
69
+
70
+ #: options.php:153
71
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
72
+ msgstr ""
73
+ "На использование этого плагина распространяются Условия использования "
74
+ "платформы Facebook"
75
+
76
+ #: options.php:156
77
+ msgid "Having a problem setting up or using the Chat Plugin?"
78
+ msgstr "Возникли проблемы с настройкой или использованием плагина чата?"
79
+
80
+ #: options.php:158
81
+ msgid "Please consult our Troubleshooting Guide."
82
+ msgstr "Обратитесь к нашему руководству по устранению неполадок."
83
+
84
+ #: options.php:161
85
+ msgid ""
86
+ "If the troubleshooting steps in the guide do not solve your problem, please "
87
+ "post in the plugin support forum."
88
+ msgstr ""
89
+ "Если приведенные в руководстве рекомендации не помогают решить проблему, "
90
+ "сделайте публикацию на форуме поддержки плагина."
91
+
92
+ msgid ""
93
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
94
+ "enabling customers to message you while browsing your website. To see and "
95
+ "reply to those messages, simply use the same messaging tools you use for "
96
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
97
+ "App (available on iOS and Android), or by adding your page account to "
98
+ "Messenger. It's free, easy to install and comes with a user interface your "
99
+ "customers are already familiar with."
100
+ msgstr ""
101
+ "Всего в несколько кликов плагин чата Facebook можно добавить на сайт, чтобы "
102
+ "клиенты могли отправить вам сообщение, не покидая сайт. Чтобы просмотреть "
103
+ "сообщения и ответить на них, используйте те же инструменты обмена "
104
+ "сообщениями, которые используете для приложения Facebook, Facebook для ПК "
105
+ "(facebook.com), приложения Facebook Pages Manager (доступного для iOS и "
106
+ "Android) или добавьте аккаунт Страницы в Messenger. Плагин бесплатный, его "
107
+ "легко установить, и для него используется уже знакомый вашим клиентам "
108
+ "интерфейс."
109
+
110
+ msgid "The Official Facebook Chat Plugin"
111
+ msgstr "Официальный плагин чата Facebook"
languages/facebook-messenger-customer-chat-sv_SE.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-sv_SE.po ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 21:27-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: sv_SE\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Inställningar"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "VANLIGA FRÅGOR"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Support"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Inställningar för pluginprogrammet för Facebook-chatt"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Dags att komma igång?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Låt personer starta en konversation på din webbplats och fortsätta i "
48
+ "Messenger. Det är enkelt att konfigurera. Chattar som startas på din "
49
+ "webbplats kan fortsättas i kundens Messenger-app, så att du aldrig tappar "
50
+ "kontakten med dina kunder. Även de utan ett Facebook Messenger-konto kan "
51
+ "chatta med dig i gästläget, så att du kan nå fler kunder än någonsin."
52
+
53
+ #: options.php:128
54
+ msgid "Setup Chat Plugin"
55
+ msgstr "Inställningar för chatt-pluginprogrammet"
56
+
57
+ #: options.php:130
58
+ msgid "Edit Chat Plugin"
59
+ msgstr "Redigera chatt-pluginprogrammet"
60
+
61
+ #: options.php:144
62
+ msgid ""
63
+ "The plugin code has already been added into your website. You can always go "
64
+ "back through the setup process to customize the plugin."
65
+ msgstr ""
66
+ "Pluginprogramskoden har redan lagts till på din webbplats. Du kan alltid gå "
67
+ "tillbaka till installationsprocessen för att anpassa pluginprogrammet."
68
+
69
+ #: options.php:153
70
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
71
+ msgstr ""
72
+ "Användningen av detta pluginprogram lyder under Facebooks Plattformsvillkor"
73
+
74
+ #: options.php:156
75
+ msgid "Having a problem setting up or using the Chat Plugin?"
76
+ msgstr "Har du problem med att konfigurera eller använda Chat Plugin?"
77
+
78
+ #: options.php:158
79
+ msgid "Please consult our Troubleshooting Guide."
80
+ msgstr "Ta en titt i vår Felsökningsguide."
81
+
82
+ #: options.php:161
83
+ msgid ""
84
+ "If the troubleshooting steps in the guide do not solve your problem, please "
85
+ "post in the plugin support forum."
86
+ msgstr ""
87
+ "Om felsökningsstegen i guiden inte löser ditt problem kan du göra ett inlägg "
88
+ "i pluginprogrammets supportforum."
89
+
90
+ msgid ""
91
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
92
+ "enabling customers to message you while browsing your website. To see and "
93
+ "reply to those messages, simply use the same messaging tools you use for "
94
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
95
+ "App (available on iOS and Android), or by adding your page account to "
96
+ "Messenger. It's free, easy to install and comes with a user interface your "
97
+ "customers are already familiar with."
98
+ msgstr ""
99
+ "Med bara några få klick kan du lägga till Facebooks Chatt- pluginprogram på "
100
+ "din webbplats och göra det möjligt för kunder att skicka meddelanden till "
101
+ "dig när de surfar på din webbplats. För att se och svara på dessa "
102
+ "meddelanden använder du helt enkelt samma meddelandeverktyg som du använder "
103
+ "för dina Facebook-meddelanden på facebook.com på från en dator, Facebook-"
104
+ "appen Sidhanteraren (finns på iOS och Android) eller genom att lägga till "
105
+ "ditt sidkonto i Messenger. Det är gratis, enkelt att installera och "
106
+ "levereras med ett användargränssnitt som dina kunder redan är vana vid."
107
+
108
+ msgid "The Official Facebook Chat Plugin"
109
+ msgstr "Det officiella pluginprogrammet för Facebook-chatt"
languages/facebook-messenger-customer-chat-th_TH.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-th_TH.po ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 21:29-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=1; plural=0;\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: th_TH\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "การตั้งค่า"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "คำถามที่พบบ่อย"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "การสนับสนุน"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "การตั้งค่าปลั๊กอินแชทของ Facebook"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "การเริ่มต้นใช้งาน"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "ผู้คนสามารถเริ่มสนทนาบนเว็บไซต์ของคุณและดำเนินการต่อได้ใน Messenger ซึ่งตั้งค่าได้ง่าย "
48
+ "แชทที่เริ่มจากบนเว็บไซต์ของคุณสามารถดำเนินการต่อได้ในแอพ Messenger ของลูกค้า "
49
+ "ดังนั้นคุณจะไม่สูญเสียการติดต่อกับลูกค้าแม้ว่าลูกค้าจะไม่มีบัญชี Facebook Messenger ก็ตาม "
50
+ "ลูกค้าจะสามารถแชทกับคุณได้ในโหมดผู้ได้รับเชิญ คุณจะสามารถเข้าถึงลูกค้าได้มากกว่าที่เคย"
51
+
52
+ #: options.php:128
53
+ msgid "Setup Chat Plugin"
54
+ msgstr "ตั้งค่าปลั๊กอินแชท"
55
+
56
+ #: options.php:130
57
+ msgid "Edit Chat Plugin"
58
+ msgstr "แก้ไขปลั๊กอินแชท"
59
+
60
+ #: options.php:144
61
+ msgid ""
62
+ "The plugin code has already been added into your website. You can always go "
63
+ "back through the setup process to customize the plugin."
64
+ msgstr ""
65
+ "ได้มีการเพิ่มรหัสปลั๊กอินลงในเว็บไซต์ของคุณแล้ว "
66
+ "คุณสามารถย้อนกลับไปผ่านขั้นตอนการตั้งค่าเพื่อปรับแต่งปลั๊กอินได้ทุกเมื่อ"
67
+
68
+ #: options.php:153
69
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
70
+ msgstr "การใช้ปลั๊กอินนี้เป็นไปตามข้อกำหนดแพลตฟอร์มของ Facebook"
71
+
72
+ #: options.php:156
73
+ msgid "Having a problem setting up or using the Chat Plugin?"
74
+ msgstr "หากมีปัญหาเกี่ยวกับการตั้งค่าหรือการใช้ปลั๊กอินแชท"
75
+
76
+ #: options.php:158
77
+ msgid "Please consult our Troubleshooting Guide."
78
+ msgstr "โปรดดูคู่มือการแก้ไขปัญหาของเรา"
79
+
80
+ #: options.php:161
81
+ msgid ""
82
+ "If the troubleshooting steps in the guide do not solve your problem, please "
83
+ "post in the plugin support forum."
84
+ msgstr ""
85
+ "หากขั้นตอนการแก้ไขปัญหาในคู่มือนี้ไม่ได้แก้ไขปัญหาของคุณ โปรด โพสต์ในฟอรั่มการสนับสนุนปลั๊กอิน"
86
+
87
+ msgid ""
88
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
89
+ "enabling customers to message you while browsing your website. To see and "
90
+ "reply to those messages, simply use the same messaging tools you use for "
91
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
92
+ "App (available on iOS and Android), or by adding your page account to "
93
+ "Messenger. It's free, easy to install and comes with a user interface your "
94
+ "customers are already familiar with."
95
+ msgstr ""
96
+ "ด้วยการคลิกเพียงไม่กี่ครั้ง คุณจะสามารถเพิ่มปลั๊กอินแชทของ Facebook ลงในเว็บไซต์ได้ "
97
+ "ซึ่งจะช่วยให้ลูกค้าสามารถส่งข้อความถึงคุณได้ในขณะที่ดูเว็บไซต์ของคุณ "
98
+ "หากต้องการดูและตอบกลับข้อความเหล่านั้น "
99
+ "เพียงแค่ใช้เครื่องมือส่งข้อความเดียวกันกับที่คุณใช้ส่งข้อความผ่าน Facebook บนเดสก์ท็อปที่ facebook."
100
+ "com แอพตัวจัดการเพจ Facebook (พร้อมให้ใช้งานได้บน iOS และ Android) "
101
+ "หรือโดยเพิ่มบัญชีเพจของคุณลงใน Messenger ไม่มีค่าใช้จ่าย "
102
+ "ติดตั้งได้ง่ายและมาพร้อมกับอินเทอร์เฟซผู้ใช้ที่ลูกค้าของคุณคุ้นเคยดีอยู่แล้ว"
103
+
104
+ msgid "The Official Facebook Chat Plugin"
105
+ msgstr "ปลั๊กอินแชทของ Facebook อย่างเป็นทางการ"
languages/facebook-messenger-customer-chat-tr_TR.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-tr_TR.po ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-02 21:31-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: tr_TR\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Ayarlar"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "SSS"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Destek"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Facebook Sohbet Eklentisi Ayarları"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Kullanmaya Başlama"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "İnsanların internet sitenizde bir konuşma başlatmasına ve bu konuşmayı "
48
+ "Messenger'da sürdürmesine imkan sunun. Kurulumu kolaydır. İnternet sitenizde "
49
+ "başlatılan sohbetlere müşterilerin Messenger uygulamasında devam "
50
+ "edebilirsiniz. Böylece müşterilerinizle bağlantınızı asla kaybetmezsiniz. "
51
+ "Facebook Messenger hesabı olmayan kişiler bile, sizinle konuk modunda sohbet "
52
+ "edebilir. Böylece her zamankinden daha fazla müşteriye erişebilirsiniz."
53
+
54
+ #: options.php:128
55
+ msgid "Setup Chat Plugin"
56
+ msgstr "Sohbet Eklentisini Kurma"
57
+
58
+ #: options.php:130
59
+ msgid "Edit Chat Plugin"
60
+ msgstr "Sohbet Eklentisini Düzenleme"
61
+
62
+ #: options.php:144
63
+ msgid ""
64
+ "The plugin code has already been added into your website. You can always go "
65
+ "back through the setup process to customize the plugin."
66
+ msgstr ""
67
+ "Eklenti kodu zaten internet sitenize eklenmiş. İstediğiniz zaman kurulum "
68
+ "sürecine dönerek eklentiyi özelleştirebilirsiniz."
69
+
70
+ #: options.php:153
71
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
72
+ msgstr "Bu eklentinin kullanımı Facebook'un Platform Koşulları'na tabidir"
73
+
74
+ #: options.php:156
75
+ msgid "Having a problem setting up or using the Chat Plugin?"
76
+ msgstr ""
77
+ "Sohbet Eklentisini kurma veya kullanma konusunda sorun mu yaşıyorsunuz?"
78
+
79
+ #: options.php:158
80
+ msgid "Please consult our Troubleshooting Guide."
81
+ msgstr "Lütfen Sorun Giderme Kılavuzumuza başvurun."
82
+
83
+ #: options.php:161
84
+ msgid ""
85
+ "If the troubleshooting steps in the guide do not solve your problem, please "
86
+ "post in the plugin support forum."
87
+ msgstr ""
88
+ "Kılavuzdaki bu sorun giderme adımları sorununuzu çözmüyorsa, lütfen eklenti "
89
+ "destek forumunda paylaşım yapın."
90
+
91
+ msgid ""
92
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
93
+ "enabling customers to message you while browsing your website. To see and "
94
+ "reply to those messages, simply use the same messaging tools you use for "
95
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
96
+ "App (available on iOS and Android), or by adding your page account to "
97
+ "Messenger. It's free, easy to install and comes with a user interface your "
98
+ "customers are already familiar with."
99
+ msgstr ""
100
+ "Sadece birkaç tıklamayla Facebook Sohbet Eklentisini internet sitenize "
101
+ "ekleyebilir ve müşterilerin internet sitenizde gezerken size mesaj "
102
+ "göndermesini sağlayabilirsiniz. Bu mesajları görmek ve yanıtlamak için "
103
+ "facebook.com adresinde, Facebook Sayfa Yöneticisi Uygulaması'nda (iOS ve "
104
+ "Android'de kullanılabilir) veya sayfa hesabınızı Messenger'a eklediğinizde "
105
+ "Facebook mesajlarınız için kullandığınız aynı mesajlaşma araçlarını "
106
+ "kullanın. Yüklemesi ücretsiz ve kolaydır ve müşterilerin zaten bildiği bir "
107
+ "kullanıcı arayüzüne sahiptir."
108
+
109
+ msgid "The Official Facebook Chat Plugin"
110
+ msgstr "Resmi Facebook Sohbet Eklentisi"
languages/facebook-messenger-customer-chat-vi_VN.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-vi_VN.po ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-03 10:17-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=1; plural=0;\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: vi_VN\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "Cài đặt"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "CÂU HỎI THƯỜNG GẶP"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "Hỗ trợ"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Cài đặt plugin chat trên Facebook"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "Bắt đầu?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "Hãy để mọi người bắt đầu cuộc trò chuyện trên trang web của bạn và tiếp tục "
48
+ "trên Messenger. Quá trình thiết lập thật dễ dàng. Các đoạn chat trên trang "
49
+ "web có thể tiếp tục diễn ra trong ứng dụng Messenger của khách hàng, nên bạn "
50
+ "sẽ không bao giờ bỏ lỡ cơ hội kết nối với khách hàng. Thậm chí, những người "
51
+ "không có tài khoản Facebook Messenger cũng có thể chat với bạn ở chế độ "
52
+ "khách, vậy nên bạn có thể tiếp cận nhiều khách hàng hơn bao giờ hết."
53
+
54
+ #: options.php:128
55
+ msgid "Setup Chat Plugin"
56
+ msgstr "Thiết lập plugin chat"
57
+
58
+ #: options.php:130
59
+ msgid "Edit Chat Plugin"
60
+ msgstr "Chỉnh sửa plugin chat"
61
+
62
+ #: options.php:144
63
+ msgid ""
64
+ "The plugin code has already been added into your website. You can always go "
65
+ "back through the setup process to customize the plugin."
66
+ msgstr ""
67
+ "Mã plug đã được thêm vào trang web của bạn. Bạn luôn có thể quay lại quy "
68
+ "trình thiết lập để tùy chỉnh plugin."
69
+
70
+ #: options.php:153
71
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
72
+ msgstr "Việc sử dụng plugin này tuân theo các Điều khoản nền tảng của Facebook"
73
+
74
+ #: options.php:156
75
+ msgid "Having a problem setting up or using the Chat Plugin?"
76
+ msgstr "Bạn gặp sự cố khi thiết lập hoặc sử dụng plugin chat?"
77
+
78
+ #: options.php:158
79
+ msgid "Please consult our Troubleshooting Guide."
80
+ msgstr "Vui lòng tham khảo Hướng dẫn khắc phục sự cố của chúng tôi."
81
+
82
+ #: options.php:161
83
+ msgid ""
84
+ "If the troubleshooting steps in the guide do not solve your problem, please "
85
+ "post in the plugin support forum."
86
+ msgstr ""
87
+ "Nếu các bước khắc phục sự cố trong hướng dẫn này không giải quyết được vấn "
88
+ "đề của bạn, vui lòng đăng lên diễn đàn hỗ trợ plugin."
89
+
90
+ msgid ""
91
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
92
+ "enabling customers to message you while browsing your website. To see and "
93
+ "reply to those messages, simply use the same messaging tools you use for "
94
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
95
+ "App (available on iOS and Android), or by adding your page account to "
96
+ "Messenger. It's free, easy to install and comes with a user interface your "
97
+ "customers are already familiar with."
98
+ msgstr ""
99
+ "Chỉ bằng một vài lượt click bạn có thể thêm plugin chat trên Facebook vào "
100
+ "trang web của mình để khách hàng nhắn tin cho bạn trong khi lướt xem trang "
101
+ "web của bạn. Để xem và trả lời những tin nhắn đó, bạn chỉ cần sử dụng các "
102
+ "công cụ nhắn tin như khi nhắn tin trên Facebook bằng máy tính tại facebook."
103
+ "com Ứng dụng Trình quản lý Trang Facebook (có trên iOS và Android) hoặc bằng "
104
+ "cách thêm tài khoản trang của bạn vào Messenger. Hoàn toàn miễn phí dễ dàng "
105
+ "cài đặt và đi kèm với giao diện người dùng mà khách hàng của bạn đã quen "
106
+ "thuộc."
107
+
108
+ msgid "The Official Facebook Chat Plugin"
109
+ msgstr "Plugin chat trên Facebook chính thức"
languages/facebook-messenger-customer-chat-zh_CN.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-zh_CN.po ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-03 10:20-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=1; plural=0;\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: zh_CN\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "设置"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "常见问题"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "支持"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Facebook 聊天插件设置"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "开始使用"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "让用户在您的网站上发起对话,并在 Messenger 中继续与您交流。设置过程非常简单。"
48
+ "客户在您的网站上发起聊天后可以在自己的 Messenger 应用中继续与您对话,这样您就"
49
+ "不会与客户失去联系。即便没有 Facebook Messenger 帐户的客户也可以通过游客模式"
50
+ "与您交流,从而让您能够触达比以往更多的客户。"
51
+
52
+ #: options.php:128
53
+ msgid "Setup Chat Plugin"
54
+ msgstr "设置聊天插件"
55
+
56
+ #: options.php:130
57
+ msgid "Edit Chat Plugin"
58
+ msgstr "编辑聊天插件"
59
+
60
+ #: options.php:144
61
+ msgid ""
62
+ "The plugin code has already been added into your website. You can always go "
63
+ "back through the setup process to customize the plugin."
64
+ msgstr "插件代码已添加到您的网站上。您随时可以返回设置流程来定制插件。"
65
+
66
+ #: options.php:153
67
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
68
+ msgstr "使用此插件需遵守 Facebook 开放平台条款"
69
+
70
+ #: options.php:156
71
+ msgid "Having a problem setting up or using the Chat Plugin?"
72
+ msgstr "在设置或使用聊天插件时遇到问题?"
73
+
74
+ #: options.php:158
75
+ msgid "Please consult our Troubleshooting Guide."
76
+ msgstr "请参阅我们的疑难解答指南。"
77
+
78
+ #: options.php:161
79
+ msgid ""
80
+ "If the troubleshooting steps in the guide do not solve your problem, please "
81
+ "post in the plugin support forum."
82
+ msgstr "如果采用指南中的所述步骤后仍无法解决问题,请 在插件支持论坛中发帖。"
83
+
84
+ msgid ""
85
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
86
+ "enabling customers to message you while browsing your website. To see and "
87
+ "reply to those messages, simply use the same messaging tools you use for "
88
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
89
+ "App (available on iOS and Android), or by adding your page account to "
90
+ "Messenger. It's free, easy to install and comes with a user interface your "
91
+ "customers are already familiar with."
92
+ msgstr ""
93
+ "只需几次点击 您可以将 Facebook 聊天插件添加到您的网站 让客户能够在浏览您的网"
94
+ "站时向您发消息。要查看和回复这些消息 只需使用用于 Facebook 消息服务的相同消息"
95
+ "工具即可 在台式电脑上访问 facebook.com Facebook 主页管理应用(适用于 iOS 和 "
96
+ "Android 系统) 或者将您的主页帐户添加到 Messenger。完全免费 易于安装,并且采"
97
+ "用您的客户所熟悉的用户界面。"
98
+
99
+ msgid "The Official Facebook Chat Plugin"
100
+ msgstr "官方 Facebook 聊天插件"
languages/facebook-messenger-customer-chat-zh_TW.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-zh_TW.po ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-12-03 10:24-0800\n"
6
+ "Language-Team: Facebook\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 2.4.2\n"
11
+ "X-Poedit-Basepath: ..\n"
12
+ "Plural-Forms: nplurals=1; plural=0;\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
14
+ "Last-Translator: \n"
15
+ "Language: zh_TW\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr "設定"
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr "常見問題"
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr "支援服務"
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr "Facebook 洽談外掛程式設定"
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr "剛開始使用?"
38
+
39
+ #: options.php:112
40
+ msgid ""
41
+ "Let people start a conversation on your website and continue in Messenger. "
42
+ "It's easy to set up. Chats started on your website can be continued in the "
43
+ "customers' Messenger app, so you never lose connections with your customers. "
44
+ "Even those without a Facebook Messenger account can chat with you in guest "
45
+ "mode, so you can reach more customers than ever."
46
+ msgstr ""
47
+ "透過 Messenger 讓用戶在您的網站展開洽談並保持聯繫;設定這項功能毫不費力。顧客"
48
+ "在您的網站展開洽談後,您可透過對方的 Messenger 應用程式延續這段對話,藉此與顧"
49
+ "客長久保持聯繫。沒有 Facebook Messenger 帳號的顧客則可使用訪客模式與您聊天,"
50
+ "因此您的觸及人數會比以往還多。"
51
+
52
+ #: options.php:128
53
+ msgid "Setup Chat Plugin"
54
+ msgstr "設定洽談外掛程式"
55
+
56
+ #: options.php:130
57
+ msgid "Edit Chat Plugin"
58
+ msgstr "編輯洽談外掛程式"
59
+
60
+ #: options.php:144
61
+ msgid ""
62
+ "The plugin code has already been added into your website. You can always go "
63
+ "back through the setup process to customize the plugin."
64
+ msgstr "外掛程式已加到您的網站。您隨時可以返回設定程序自訂外掛程式。"
65
+
66
+ #: options.php:153
67
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
68
+ msgstr "使用此外掛程式須遵守《Facebook 開放平台使用條款》的規定"
69
+
70
+ #: options.php:156
71
+ msgid "Having a problem setting up or using the Chat Plugin?"
72
+ msgstr "設定或使用洽談外掛程式時遇到問題嗎?"
73
+
74
+ #: options.php:158
75
+ msgid "Please consult our Troubleshooting Guide."
76
+ msgstr "請查閱我們的疑難排解指南。"
77
+
78
+ #: options.php:161
79
+ msgid ""
80
+ "If the troubleshooting steps in the guide do not solve your problem, please "
81
+ "post in the plugin support forum."
82
+ msgstr ""
83
+ "若按照指南所列的疑難排解步驟操作後,問題仍未解決,請 將問題發佈到外掛程式支援"
84
+ "論壇。"
85
+
86
+ msgid ""
87
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
88
+ "enabling customers to message you while browsing your website. To see and "
89
+ "reply to those messages, simply use the same messaging tools you use for "
90
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
91
+ "App (available on iOS and Android), or by adding your page account to "
92
+ "Messenger. It's free, easy to install and comes with a user interface your "
93
+ "customers are already familiar with."
94
+ msgstr ""
95
+ "只需點擊幾下, 您就能將 Facebook 洽談外掛程式加到您的網站, 讓瀏覽網站的顧客"
96
+ "可以立即向您發送訊息。若要查看及回覆這些訊息, 只需使用您在 Facebook 桌面版"
97
+ "(facebook.com)收發訊息時所用的 訊息工具、 Facebook 專頁小助手應用程式(iOS "
98
+ "版和 Android 版), 或者將您的粉絲專頁帳號加到 Messenger 也可以。此工具完全免"
99
+ "費 且安裝簡單,用戶介面對顧客來說既熟悉又好上手。"
100
+
101
+ msgid "The Official Facebook Chat Plugin"
102
+ msgstr "官方版 Facebook 洽談外掛程式"
languages/facebook-messenger-customer-chat.pot ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: The Official Facebook Chat Plugin\n"
4
+ "POT-Creation-Date: 2020-11-13 16:39-0800\n"
5
+ "PO-Revision-Date: 2020-11-13 16:39-0800\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Facebook\n"
8
+ "Language: en_AU\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.4.2\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:44
19
+ #: facebook-messenger-customer-chat.php:61
20
+ msgid "Settings"
21
+ msgstr ""
22
+
23
+ #: facebook-messenger-customer-chat.php:68
24
+ msgid "FAQ"
25
+ msgstr ""
26
+
27
+ #: facebook-messenger-customer-chat.php:74
28
+ msgid "Support"
29
+ msgstr ""
30
+
31
+ #: options.php:107
32
+ msgid "Facebook Chat Plugin Settings"
33
+ msgstr ""
34
+
35
+ #: options.php:111
36
+ msgid "Getting Started?"
37
+ msgstr ""
38
+
39
+ #: options.php:112
40
+ msgid "Let people start a conversation on your website and continue in Messenger. It's easy to set up. Chats started on your website can be continued in the customers' Messenger app, so you never lose connections with your customers. Even those without a Facebook Messenger account can chat with you in guest mode, so you can reach more customers than ever."
41
+ msgstr ""
42
+
43
+ #: options.php:128
44
+ msgid "Setup Chat Plugin"
45
+ msgstr ""
46
+
47
+ #: options.php:130
48
+ msgid "Edit Chat Plugin"
49
+ msgstr ""
50
+
51
+ #: options.php:144
52
+ msgid "The plugin code has already been added into your website. You can always go back through the setup process to customize the plugin."
53
+ msgstr ""
54
+
55
+ #: options.php:153
56
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
57
+ msgstr ""
58
+
59
+ #: options.php:156
60
+ msgid "Having a problem setting up or using the Chat Plugin?"
61
+ msgstr ""
62
+
63
+ #: options.php:158
64
+ msgid "Please consult our Troubleshooting Guide."
65
+ msgstr ""
66
+
67
+ #: options.php:161
68
+ msgid ""
69
+ "If the troubleshooting steps in the guide do not solve your problem, please "
70
+ "post in the plugin support forum."
71
+ msgstr ""
72
+
73
+ msgid "With a few clicks, you can add the Facebook Chat Plugin to your website, enabling customers to message you while browsing your website. To see and reply to those messages, simply use the same messaging tools you use for your Facebook messaging, on desktop at facebook.com, Facebook Page Manager App (available on iOS and Android), or by adding your page account to Messenger. It's free, easy to install and comes with a user interface your customers are already familiar with."
74
+ msgstr ""
75
+
76
+ msgid "The Official Facebook Chat Plugin"
77
+ msgstr ""
options.php CHANGED
@@ -103,68 +103,68 @@ function fmcc_localize_ajax() {
103
 
104
  function fbmcc_integration_settings() {
105
  ?>
106
- <div class="wrap">
107
- <h2>Facebook Chat Plugin Settings</h2>
108
- <div class="fbmcc-card card">
109
- <div class="intro">
110
- <div>
111
- <h2>Getting Started?</h2>
112
- <p class="fbmcc-instructions">Let people start a conversation on
113
- your website and continue in Messenger. It's easy to set up. Chats
114
- started on your website can be continued in the customers'
115
- Messenger app, so you never lose connections with your customers.
116
- Even those without a Facebook Messenger account can chat with you
117
- in guest mode, so you can reach more customers than ever.
118
- </p>
119
- </div>
120
- <div class="fbmcc-buttonContainer">
121
- <button
122
- class="fbmcc-setupButton"
123
- type="button"
124
- onclick="fbmcc_setupCustomerChat()"
125
- >
126
- <?php
127
- if( get_option( 'fbmcc_pageID' ) == "" ) {
128
- _e( 'Setup Chat Plugin' );
129
- } else {
130
- _e( 'Edit Chat Plugin' );
131
- }
132
- ?>
133
- </button>
134
- </div>
135
- </div>
136
  </div>
137
- <div
138
- id="fbmcc-page-params"
139
- class="fbmcc-card card"
140
- <?php if( get_option( 'fbmcc_pageID' ) == "" ) {
141
- _e( 'style="display:none;"' );
142
- } ?>>
143
- <div>
144
- <p class="fbmcc-instructions">The plugin code has already been added
145
- into your website. You can always go back through the setup process
146
- to customize the plugin.
147
- </p>
148
- </div>
149
- </div>
150
- <div class="fbmcc-card card">
151
- <div class="intro">
152
- <p class="fbmcc-instructions">
153
- Use of this plugin is subject to
154
- <a href='https://developers.facebook.com/terms/'>
155
- Facebook's Platform Terms</a><br><br>
156
- Having a problem setting up or using the Chat Plugin?<br>
157
- <ul>
158
- <li>Please consult our <a href='https://www.facebook.com/business/help/789975831794468'>
159
- Troubleshooting Guide.</a>
160
- </li>
161
- <li>If the troubleshooting steps in the guide do not solve your problem, please post in the plugin <a href='https://wordpress.org/support/plugin/facebook-messenger-customer-chat/'>
162
- support forum.</a>
163
- </li>
164
- </ul>
165
- </p>
166
- </div>
167
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  </div>
 
169
  <?php }
170
  ?>
103
 
104
  function fbmcc_integration_settings() {
105
  ?>
106
+ <div class="wrap">
107
+ <h2>Facebook Chat Plugin Settings</h2>
108
+ <div class="fbmcc-card card">
109
+ <div class="intro">
110
+ <div>
111
+ <h2>Getting Started?</h2>
112
+ <p class="fbmcc-instructions">Let people start a conversation on
113
+ your website and continue in Messenger. It's easy to set up. Chats
114
+ started on your website can be continued in the customers'
115
+ Messenger app, so you never lose connections with your customers.
116
+ Even those without a Facebook Messenger account can chat with you
117
+ in guest mode, so you can reach more customers than ever.
118
+ </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  </div>
120
+ <div class="fbmcc-buttonContainer">
121
+ <button
122
+ class="fbmcc-setupButton"
123
+ type="button"
124
+ onclick="fbmcc_setupCustomerChat()"
125
+ >
126
+ <?php
127
+ if( get_option( 'fbmcc_pageID' ) == "" ) {
128
+ _e( 'Setup Chat Plugin' );
129
+ } else {
130
+ _e( 'Edit Chat Plugin' );
131
+ }
132
+ ?>
133
+ </button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  </div>
135
+ </div>
136
+ </div>
137
+ <div
138
+ id="fbmcc-page-params"
139
+ class="fbmcc-card card"
140
+ <?php if( get_option( 'fbmcc_pageID' ) == "" ) {
141
+ _e( 'style="display:none;"' );
142
+ } ?>>
143
+ <div>
144
+ <p class="fbmcc-instructions">The plugin code has already been added
145
+ into your website. You can always go back through the setup process
146
+ to customize the plugin.
147
+ </p>
148
+ </div>
149
+ </div>
150
+ <div class="fbmcc-card card">
151
+ <div class="intro">
152
+ <p class="fbmcc-instructions">
153
+ Use of this plugin is subject to
154
+ <a href='https://developers.facebook.com/terms/'>
155
+ Facebook's Platform Terms</a><br><br>
156
+ Having a problem setting up or using the Chat Plugin?<br>
157
+ <ul>
158
+ <li>Please consult our <a href='https://www.facebook.com/business/help/789975831794468'>
159
+ Troubleshooting Guide.</a>
160
+ </li>
161
+ <li>If the troubleshooting steps in the guide do not solve your problem, please post in the plugin <a href='https://wordpress.org/support/plugin/facebook-messenger-customer-chat/'>
162
+ support forum.</a>
163
+ </li>
164
+ </ul>
165
+ </p>
166
+ </div>
167
  </div>
168
+ </div>
169
  <?php }
170
  ?>
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: facebook
3
  Tags: Facebook, Messenger, Customer Care, Chat, Messaging, Chat Plugin
4
  Requires at least: 3.9
5
  Tested up to: 5.5.3
6
- Stable tag: 1.9
7
  Requires PHP: 5.2.4
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -89,6 +89,10 @@ If you get stuck, or have any questions, you can ask for help in the [Messenger
89
 
90
  == Changelog ==
91
 
 
 
 
 
92
  = 1.9 - Nov 3, 2020 =
93
  * Tested up to WordPress 5.5.3
94
  * Added troubleshooting links in plugin settings page and faq's
@@ -129,6 +133,9 @@ If you get stuck, or have any questions, you can ask for help in the [Messenger
129
 
130
  == Upgrade Notice ==
131
 
 
 
 
132
  = 1.9 =
133
  * Added troubleshooting links in plugin settings page and faq's. Tested up to WordPress 5.5.3
134
 
3
  Tags: Facebook, Messenger, Customer Care, Chat, Messaging, Chat Plugin
4
  Requires at least: 3.9
5
  Tested up to: 5.5.3
6
+ Stable tag: 2.0
7
  Requires PHP: 5.2.4
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
89
 
90
  == Changelog ==
91
 
92
+ = 2.0 - Dec 1, 2020 =
93
+ * Tested up to WordPress 5.5.3
94
+ * Added translations for strings on admin panel settings and css fix
95
+
96
  = 1.9 - Nov 3, 2020 =
97
  * Tested up to WordPress 5.5.3
98
  * Added troubleshooting links in plugin settings page and faq's
133
 
134
  == Upgrade Notice ==
135
 
136
+ = 2.0 =
137
+ * Added translations for strings on admin panel settings and css fix. Tested up to WordPress 5.5.3
138
+
139
  = 1.9 =
140
  * Added troubleshooting links in plugin settings page and faq's. Tested up to WordPress 5.5.3
141
 
script.js CHANGED
@@ -16,9 +16,9 @@ function fbmcc_setupCustomerChat() {
16
  var baseURL = "https://www.facebook.com/customer_chat/dialog/?domain=";
17
  var urlParam = encodeURI(
18
  window.location.protocol
19
- + '//'
20
- + window.location.hostname
21
- + (window.location.port ? ':' + window.location.port : '')
22
  );
23
  var customerWindow = window.open(
24
  baseURL + urlParam,
16
  var baseURL = "https://www.facebook.com/customer_chat/dialog/?domain=";
17
  var urlParam = encodeURI(
18
  window.location.protocol
19
+ + '//'
20
+ + window.location.hostname
21
+ + (window.location.port ? ':' + window.location.port : '')
22
  );
23
  var customerWindow = window.open(
24
  baseURL + urlParam,
settings.css CHANGED
@@ -7,53 +7,53 @@
7
  */
8
 
9
  .fbmcc-card {
10
- background-color: #fff;
11
- width: 600px;
12
  }
13
 
14
  .fbmcc-settings {
15
- text-align: left;
16
  }
17
 
18
  .fbmcc-instructions,
19
  .fbmcc-buttonContainer {
20
- color: #444444;
21
- margin-bottom: 10px;
22
  }
23
 
24
  .fbmcc-code-area {
25
- margin-top: 10px;
26
- width: 100%;
27
  }
28
 
29
  .fbmcc-setupButton,
30
  .fbmcc-editButton {
31
- background-color: #f7f7f7;
32
- border-radius: 4px;
33
- box-shadow: 0 1px 0 #aaa;
34
- color: #555555;
35
  }
36
 
37
  .fbmcc-codeTitle{
38
- float: left;
39
  }
40
 
41
  .fbmcc-setupButton {
42
- height: 28px;
43
- width: 148px;
44
  }
45
 
46
  .fbmcc-editButton {
47
- float: right;
48
- height: 28px;
49
- position: absolute;
50
- right: 5px;
51
- top: 15px;
52
- width: 88px;
53
  }
54
 
55
  .fbmcc-codeContainer {
56
- position: relative;
57
  }
58
 
59
  .fbmcc-setupButton:hover {
@@ -62,71 +62,61 @@
62
  }
63
 
64
  .fbmcc-setupButton:active {
65
- background-color: #eeeeee;
66
- transform: translateY(1px);
67
- }
68
-
69
- td {
70
- padding: 0 20px 0 20px;
71
- }
72
-
73
- table
74
- {
75
- border-collapse:separate;
76
- border-spacing:0 10px;
77
  }
78
 
79
  .fbmcc-switch {
80
- position: relative;
81
- display: inline-block;
82
- width: 30px;
83
- height: 17px;
84
  }
85
 
86
  .fbmcc-switch input {display:none;}
87
 
88
  .fbmcc-slider {
89
- position: absolute;
90
- cursor: pointer;
91
- top: 0;
92
- left: 0;
93
- right: 0;
94
- bottom: 0;
95
- background-color: #ccc;
96
- -webkit-transition: .4s;
97
- transition: .4s;
98
  }
99
 
100
  .fbmcc-slider:before {
101
- position: absolute;
102
- content: "";
103
- height: 13px;
104
- width: 13px;
105
- left: 2px;
106
- bottom: 2px;
107
- background-color: white;
108
- -webkit-transition: .4s;
109
- transition: .4s;
110
  }
111
 
112
  input:checked + .fbmcc-slider {
113
- background-color: #2196F3;
114
  }
115
 
116
  input:focus + .fbmcc-slider {
117
- box-shadow: 0 0 1px #2196F3;
118
  }
119
 
120
  input:checked + .fbmcc-slider:before {
121
- -webkit-transform: translateX(13px);
122
- -ms-transform: translateX(13px);
123
- transform: translateX(13px);
124
  }
125
 
126
  .fbmcc-slider.round {
127
- border-radius: 17px;
128
  }
129
 
130
  .fbmcc-slider.round:before {
131
- border-radius: 50%;
132
  }
7
  */
8
 
9
  .fbmcc-card {
10
+ background-color: #fff;
11
+ width: 600px;
12
  }
13
 
14
  .fbmcc-settings {
15
+ text-align: left;
16
  }
17
 
18
  .fbmcc-instructions,
19
  .fbmcc-buttonContainer {
20
+ color: #444444;
21
+ margin-bottom: 10px;
22
  }
23
 
24
  .fbmcc-code-area {
25
+ margin-top: 10px;
26
+ width: 100%;
27
  }
28
 
29
  .fbmcc-setupButton,
30
  .fbmcc-editButton {
31
+ background-color: #f7f7f7;
32
+ border-radius: 4px;
33
+ box-shadow: 0 1px 0 #aaa;
34
+ color: #555555;
35
  }
36
 
37
  .fbmcc-codeTitle{
38
+ float: left;
39
  }
40
 
41
  .fbmcc-setupButton {
42
+ height: 28px;
43
+ width: 148px;
44
  }
45
 
46
  .fbmcc-editButton {
47
+ float: right;
48
+ height: 28px;
49
+ position: absolute;
50
+ right: 5px;
51
+ top: 15px;
52
+ width: 88px;
53
  }
54
 
55
  .fbmcc-codeContainer {
56
+ position: relative;
57
  }
58
 
59
  .fbmcc-setupButton:hover {
62
  }
63
 
64
  .fbmcc-setupButton:active {
65
+ background-color: #eeeeee;
66
+ transform: translateY(1px);
 
 
 
 
 
 
 
 
 
 
67
  }
68
 
69
  .fbmcc-switch {
70
+ position: relative;
71
+ display: inline-block;
72
+ width: 30px;
73
+ height: 17px;
74
  }
75
 
76
  .fbmcc-switch input {display:none;}
77
 
78
  .fbmcc-slider {
79
+ position: absolute;
80
+ cursor: pointer;
81
+ top: 0;
82
+ left: 0;
83
+ right: 0;
84
+ bottom: 0;
85
+ background-color: #ccc;
86
+ -webkit-transition: .4s;
87
+ transition: .4s;
88
  }
89
 
90
  .fbmcc-slider:before {
91
+ position: absolute;
92
+ content: "";
93
+ height: 13px;
94
+ width: 13px;
95
+ left: 2px;
96
+ bottom: 2px;
97
+ background-color: white;
98
+ -webkit-transition: .4s;
99
+ transition: .4s;
100
  }
101
 
102
  input:checked + .fbmcc-slider {
103
+ background-color: #2196F3;
104
  }
105
 
106
  input:focus + .fbmcc-slider {
107
+ box-shadow: 0 0 1px #2196F3;
108
  }
109
 
110
  input:checked + .fbmcc-slider:before {
111
+ -webkit-transform: translateX(13px);
112
+ -ms-transform: translateX(13px);
113
+ transform: translateX(13px);
114
  }
115
 
116
  .fbmcc-slider.round {
117
+ border-radius: 17px;
118
  }
119
 
120
  .fbmcc-slider.round:before {
121
+ border-radius: 50%;
122
  }
uninstall.php CHANGED
@@ -16,9 +16,9 @@
16
 
17
  // if uninstall.php is not called by WordPress, die
18
  if (!defined('WP_UNINSTALL_PLUGIN')) {
19
- die;
20
  }
21
-
22
  delete_option('fbmcc_pageID');
23
  delete_option('fbmcc_locale');
24
  delete_option('fbmcc_generatedCode');
16
 
17
  // if uninstall.php is not called by WordPress, die
18
  if (!defined('WP_UNINSTALL_PLUGIN')) {
19
+ die;
20
  }
21
+
22
  delete_option('fbmcc_pageID');
23
  delete_option('fbmcc_locale');
24
  delete_option('fbmcc_generatedCode');