Messenger Customer Chat - Version 2.1

Version Description

  • Added new configuration options for admin to specify which pages to deploy the plugin on. Tested up to WordPress 5.7.1
Download this release

Release Info

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

Code changes from version 2.0 to 2.1

Files changed (59) hide show
  1. facebook-messenger-customer-chat.php +125 -9
  2. images/chevron-down.png +0 -0
  3. images/chevron-right.png +0 -0
  4. images/chevron.png +0 -0
  5. languages/facebook-messenger-customer-chat-ar.mo +0 -0
  6. languages/facebook-messenger-customer-chat-ar.po +129 -36
  7. languages/facebook-messenger-customer-chat-cs_CZ.mo +0 -0
  8. languages/facebook-messenger-customer-chat-cs_CZ.po +128 -34
  9. languages/facebook-messenger-customer-chat-da_DK.mo +0 -0
  10. languages/facebook-messenger-customer-chat-da_DK.po +128 -34
  11. languages/facebook-messenger-customer-chat-de_DE.mo +0 -0
  12. languages/facebook-messenger-customer-chat-de_DE.po +129 -35
  13. languages/facebook-messenger-customer-chat-es_ES.mo +0 -0
  14. languages/facebook-messenger-customer-chat-es_ES.po +129 -35
  15. languages/facebook-messenger-customer-chat-fi.mo +0 -0
  16. languages/facebook-messenger-customer-chat-fi.po +205 -0
  17. languages/facebook-messenger-customer-chat-fr_CA.mo +0 -0
  18. languages/facebook-messenger-customer-chat-fr_CA.po +130 -36
  19. languages/facebook-messenger-customer-chat-fr_FR.mo +0 -0
  20. languages/facebook-messenger-customer-chat-fr_FR.po +130 -36
  21. languages/facebook-messenger-customer-chat-he_IL.mo +0 -0
  22. languages/facebook-messenger-customer-chat-he_IL.po +127 -33
  23. languages/facebook-messenger-customer-chat-hi_IN.mo +0 -0
  24. languages/facebook-messenger-customer-chat-hi_IN.po +138 -48
  25. languages/facebook-messenger-customer-chat-it_IT.mo +0 -0
  26. languages/facebook-messenger-customer-chat-it_IT.po +129 -35
  27. languages/facebook-messenger-customer-chat-ja.mo +0 -0
  28. languages/facebook-messenger-customer-chat-ja.po +203 -0
  29. languages/facebook-messenger-customer-chat-ko_KR.mo +0 -0
  30. languages/facebook-messenger-customer-chat-ko_KR.po +128 -34
  31. languages/facebook-messenger-customer-chat-nb_NO.mo +0 -0
  32. languages/facebook-messenger-customer-chat-nb_NO.po +129 -35
  33. languages/facebook-messenger-customer-chat-nl_NL.mo +0 -0
  34. languages/facebook-messenger-customer-chat-nl_NL.po +129 -35
  35. languages/facebook-messenger-customer-chat-pl_PL.mo +0 -0
  36. languages/facebook-messenger-customer-chat-pl_PL.po +130 -36
  37. languages/facebook-messenger-customer-chat-pt_BR.mo +0 -0
  38. languages/facebook-messenger-customer-chat-pt_BR.po +129 -35
  39. languages/facebook-messenger-customer-chat-pt_PT.mo +0 -0
  40. languages/facebook-messenger-customer-chat-pt_PT.po +129 -35
  41. languages/facebook-messenger-customer-chat-ru_RU.mo +0 -0
  42. languages/facebook-messenger-customer-chat-ru_RU.po +129 -35
  43. languages/facebook-messenger-customer-chat-sv_SE.mo +0 -0
  44. languages/facebook-messenger-customer-chat-sv_SE.po +129 -35
  45. languages/facebook-messenger-customer-chat-th.mo +0 -0
  46. languages/facebook-messenger-customer-chat-th.po +190 -0
  47. languages/facebook-messenger-customer-chat-tr_TR.mo +0 -0
  48. languages/facebook-messenger-customer-chat-tr_TR.po +129 -35
  49. languages/facebook-messenger-customer-chat-vi.mo +0 -0
  50. languages/facebook-messenger-customer-chat-vi.po +203 -0
  51. languages/facebook-messenger-customer-chat-zh_CN.mo +0 -0
  52. languages/facebook-messenger-customer-chat-zh_CN.po +126 -32
  53. languages/facebook-messenger-customer-chat-zh_TW.mo +0 -0
  54. languages/facebook-messenger-customer-chat-zh_TW.po +126 -32
  55. languages/facebook-messenger-customer-chat.pot +111 -20
  56. options.php +181 -41
  57. readme.txt +9 -2
  58. script.js +212 -0
  59. settings.css +151 -1
facebook-messenger-customer-chat.php CHANGED
@@ -4,9 +4,9 @@ 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
  /*
@@ -25,16 +25,25 @@ Domain Path: /languages/
25
  class Facebook_Messenger_Customer_Chat {
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 ) {
@@ -51,7 +60,7 @@ class Facebook_Messenger_Customer_Chat {
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' ) ) {
@@ -77,8 +86,62 @@ class Facebook_Messenger_Customer_Chat {
77
  return $links;
78
  }
79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  function fbmcc_inject_messenger() {
81
- if( get_option( 'fbmcc_pageID' ) != '' ) {
 
 
 
 
 
82
  $genCode = "";
83
  $genCode .= "
84
  <div id='fb-root'></div>
@@ -99,9 +162,62 @@ class Facebook_Messenger_Customer_Chat {
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();
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.1
8
  Text Domain: facebook-messenger-customer-chat
9
+ Domain Path: /languages
10
  */
11
 
12
  /*
25
  class Facebook_Messenger_Customer_Chat {
26
  function __construct() {
27
  include( plugin_dir_path( __FILE__ ) . 'options.php' );
28
+ add_action( 'current_screen', array( $this, 'show_deactivation_feedback_form' ) );
29
  add_action( 'wp_footer', array( $this, 'fbmcc_inject_messenger' ) );
30
  add_filter( 'plugin_action_links',
31
+ array( $this, 'fbmcc_plugin_action_links'), 10, 2 );
32
  add_filter( 'plugin_row_meta',
33
+ array( $this, 'fbmcc_register_plugin_links'), 10, 2 );
34
+ add_action( 'plugins_loaded', array($this, 'fbmcc_i18n') );
35
+ }
36
+
37
+ public function show_deactivation_feedback_form() {
38
+ if ( get_current_screen()->id !== 'plugins' ) {
39
+ return;
40
+ }
41
+
42
+ add_action( 'in_admin_header', array($this, 'render_feedback_form'));
43
  }
44
 
45
  function fbmcc_plugin_action_links( $links, $file ) {
46
+ $settings_url = 'admin.php?page=facebook-messenger-customer-chat';
47
  if ( current_user_can( 'manage_options' ) ) {
48
  $base = plugin_basename(__FILE__);
49
  if ( $file == $base ) {
60
  }
61
 
62
  function fbmcc_register_plugin_links( $links, $file ) {
63
+ $settings_url = 'admin.php?page=facebook-messenger-customer-chat';
64
  $base = plugin_basename(__FILE__);
65
  if ( $file == $base ) {
66
  if ( current_user_can( 'manage_options' ) ) {
86
  return $links;
87
  }
88
 
89
+ function fbmcc_should_display() {
90
+ $fbmcc_page_types = get_option( 'fbmcc_page_types' );
91
+ global $wp_query;
92
+
93
+ if( !$fbmcc_page_types || $fbmcc_page_types['all'] == "1") {
94
+ return true;
95
+ }
96
+
97
+ if (
98
+ $fbmcc_page_types['front_page'] == "1" &&
99
+ (is_home() || is_front_page())
100
+ ) {
101
+ return true;
102
+ }
103
+
104
+ if($fbmcc_page_types['posts'] == "1" && is_single()) {
105
+ return true;
106
+ }
107
+
108
+ if($fbmcc_page_types['product_pages'] == "1") {
109
+ if ( function_exists ( 'is_product' ) && is_product() ) {
110
+ return true;
111
+ }
112
+ }
113
+
114
+ $active_pages = $fbmcc_page_types["pages"];
115
+ $current_page = $wp_query->get_queried_object()->ID;
116
+ $pages_all = $fbmcc_page_types['pages_all'];
117
+ if(is_page()) {
118
+ if( $pages_all == "1" ) {
119
+ return true;
120
+ } else {
121
+ if( $active_pages && in_array( $current_page, $active_pages) ) {
122
+ return true;
123
+ }
124
+ }
125
+ }
126
+
127
+ if( ($fbmcc_page_types['category_index'] == "1") && is_category() ) {
128
+ return true;
129
+ }
130
+
131
+ if( $fbmcc_page_types['tag_index'] == "1" && is_tag() ) {
132
+ return true;
133
+ }
134
+
135
+ return false;
136
+ }
137
+
138
  function fbmcc_inject_messenger() {
139
+ if( !get_option( 'fbmcc_pageID' ) ||
140
+ get_option( 'fbmcc_pageID' ) == '' ) {
141
+ return;
142
+ }
143
+
144
+ if( $this->fbmcc_should_display() ) {
145
  $genCode = "";
146
  $genCode .= "
147
  <div id='fb-root'></div>
162
  }
163
  }
164
 
165
+ function fbmcc_i18n() {
166
  load_plugin_textdomain( 'facebook-messenger-customer-chat', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
167
  }
168
+
169
+ function render_feedback_form() {
170
+ ?>
171
+ <div id="fbmcc-deactivationModalOverlay">
172
+ <div id="fbmcc-deactivationModalContainer">
173
+ <button title="<?php esc_html_e( 'Cancel', 'facebook-messenger-customer-chat' ); ?>" class="fbmcc-deactivationModal-closeButton">
174
+ <svg
175
+ xmlns="http://www.w3.org/2000/svg"
176
+ width="24px"
177
+ height="24px"
178
+ viewBox="0 0 24 24"
179
+ fill="#424D57"
180
+ class="material material-close-icon undefined"
181
+ >
182
+ <path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" />
183
+ </svg>
184
+ </button>
185
+ <div id="fbmcc-deactivationModal">
186
+ <div id="fbmcc-deactivationFormContainer">
187
+ <h3><?=esc_html__( 'We value your feedback.', 'facebook-messenger-customer-chat' )?></h3>
188
+ <p><?=esc_html__( 'Please let us know why you’re deactivating Facebook Chat Plugin.', 'facebook-messenger-customer-chat' )?></p>
189
+ <form id="fbmcc-deactivationForm">
190
+ <ul>
191
+ <li><input type="radio" name="fbmcc-deactivationReason" value="1" /> <?=esc_html__( 'I’m unable to get the plugin to work', 'facebook-messenger-customer-chat' )?></li>
192
+ <li><input type="radio" name="fbmcc-deactivationReason" value="2" /> <?=esc_html__( 'I no longer need a live chat feature', 'facebook-messenger-customer-chat' )?></li>
193
+ <li><input type="radio" name="fbmcc-deactivationReason" value="3" /> <?=esc_html__( 'I’m using a different live chat plugin', 'facebook-messenger-customer-chat' )?>
194
+ <div
195
+ class="fbmcc-deactivationReason-commentContainer"
196
+ id="fbmcc-deactivationReason-commentContainer3"
197
+ >
198
+ <?=esc_html__( 'Name of plugin:', 'facebook-messenger-customer-chat' )?> <input type="text" id="fbmcc-deactivationReason-preferredPluginName" /></div></li>
199
+ <li><input type="radio" name="fbmcc-deactivationReason" value="4" /> <?=esc_html__( 'This is a temporary deactivation. I’ll be back!', 'facebook-messenger-customer-chat' )?></li>
200
+ <li><input type="radio" name="fbmcc-deactivationReason" value="5" /> <?=esc_html__( 'Other', 'facebook-messenger-customer-chat' )?>
201
+ <div
202
+ class="fbmcc-deactivationReason-commentContainer"
203
+ id="fbmcc-deactivationReason-commentContainer5"
204
+ >
205
+ <?=esc_html__( 'Comments:', 'facebook-messenger-customer-chat' )?> <input type="text" id="fbmcc-deactivationReason-other" /></div></li>
206
+ <li>
207
+ <input type="hidden" id="fbmcc-deactivationForm-pageId" value="<?php echo fbmcc_sanitize_page_id(get_option( 'fbmcc_pageID' )); ?>" />
208
+ <input id="fbmcc-deactivationFormSubmit" type="button" value="<?=esc_html__( 'Submit', 'facebook-messenger-customer-chat' )?>" />
209
+ </li>
210
+ </ul>
211
+ </form>
212
+ </div>
213
+ <div id="fbmcc-deactivationModal-thankYou" class="hidden">
214
+ <h3><?=esc_html__( 'Thank you. We appreciate your feedback.', 'facebook-messenger-customer-chat' )?></h3>
215
+ </div>
216
+ </div>
217
+ </div>
218
+ </div>
219
+ <?php
220
+ }
221
  }
222
 
223
  new Facebook_Messenger_Customer_Chat();
images/chevron-down.png ADDED
Binary file
images/chevron-right.png ADDED
Binary file
images/chevron.png ADDED
Binary file
languages/facebook-messenger-customer-chat-ar.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-ar.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -12,32 +14,108 @@ msgstr ""
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 "
@@ -49,8 +127,7 @@ msgstr ""
49
  "Messenger، فإعداد ذلك هو أمر سهل. ويمكن متابعة الدردشات التي بدأت على موقعك "
50
  "عل الويب في تطبيق Messenger الخاصة بالعملاء؛ لذا لن تفقد مطلقًا الاتصال مع "
51
  "عملائك، حتى الأشخاص الذين لا يملكون حسابًا على Facebook Messenger يمكنهم "
52
- "الدردشة معك في وضع الضيف؛ وبالتالي يمكنك الوصول إلى عملاء أكثر من أي وقت "
53
- "سابق."
54
 
55
  #: options.php:128
56
  msgid "Setup Chat Plugin"
@@ -61,6 +138,10 @@ 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."
@@ -68,42 +149,54 @@ 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 "المكون الإضافي دردشة فيسبوك الرسمية"
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: 2021-05-11 23:53+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: ar\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
15
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_html__\n"
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-messenger-customer-chat.php:3
20
+ msgid "The Official Facebook Chat Plugin"
21
+ msgstr "المكون الإضافي دردشة فيسبوك الرسمية"
22
+
23
+ #: facebook-messenger-customer-chat.php:4
24
+ msgid ""
25
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
26
+ "enabling customers to message you while browsing your website. To see and "
27
+ "reply to those messages, simply use the same messaging tools you use for your "
28
+ "Facebook messaging, on desktop at facebook.com, Facebook Page Manager App "
29
+ "(available on iOS and Android), or by adding your page account to Messenger. "
30
+ "It's free, easy to install and comes with a user interface your customers are "
31
+ "already familiar with."
32
+ msgstr ""
33
+ "من خلال بضع نقرات يمكنك إضافة المكون الإضافي \"دردشة فيسبوك\" إلى الموقع "
34
+ "الويب الخاص بك وهو ما يُمكّن العملاء من مراسلتك أثناء تصفح موقعك على الويب. "
35
+ "لعرض تلك الرسائل والرد عليها ما عليك إلا استخدام نفس أدوات المراسلة التي "
36
+ "تستخدمها لمراسلاتك على فيسبوك على أجهزة الكمبيوتر على موقع facebook.com تطبيق "
37
+ "مدير الصفحات على فيسبوك (متاح لنظامي iOS وAndroid) أو عن طريق إضافة حساب "
38
+ "صفحتك إلى تطبيق Messenger. إنه مجاني يمكن تثبيته بسهولة، ويتميز بواجهة مستخدم "
39
+ "تُعد مألوفة لعملائك بالفعل.\""
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
  msgid "Settings"
44
  msgstr "الإعدادات"
45
 
46
+ #: facebook-messenger-customer-chat.php:77
47
  msgid "FAQ"
48
  msgstr "الأسئلة المتكررة"
49
 
50
+ #: facebook-messenger-customer-chat.php:83
51
  msgid "Support"
52
  msgstr "الدعم"
53
 
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "نحن نقدر ملاحظاتك."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "يرجى إخبارنا بسبب إلغاء تنشيط المكون الإضافي ""دردشة"" على فيسبوك."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "لا يمكنني تشغيل المكون الإضافي"
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "أستخدم مكونًا إضافيًا مختلفًا للدردشة المباشرة"
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "اسم المكون الإضافي:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "هذا إلغاء تنشيط مؤقت. سأستخدم المكون الإضافي مرة أخرى قريبًا!"
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "أخرى"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "التعليقات:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "إرسال"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "شكرًا. نقدر ملاحظاتك."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
  msgid "Facebook Chat Plugin Settings"
112
  msgstr "إعدادات المكون الإضافي دردشة فيسبوك"
113
 
114
+ #: options.php:110
115
  msgid "Getting Started?"
116
  msgstr "هل تريد بدء الاستخدام؟"
117
 
118
+ #: options.php:111
119
  msgid ""
120
  "Let people start a conversation on your website and continue in Messenger. "
121
  "It's easy to set up. Chats started on your website can be continued in the "
127
  "Messenger، فإعداد ذلك هو أمر سهل. ويمكن متابعة الدردشات التي بدأت على موقعك "
128
  "عل الويب في تطبيق Messenger الخاصة بالعملاء؛ لذا لن تفقد مطلقًا الاتصال مع "
129
  "عملائك، حتى الأشخاص الذين لا يملكون حسابًا على Facebook Messenger يمكنهم "
130
+ "الدردشة معك في وضع الضيف؛ وبالتالي يمكنك الوصول إلى عملاء أكثر من أي وقت سابق."
 
131
 
132
  #: options.php:128
133
  msgid "Setup Chat Plugin"
138
  msgstr "لمكوّن الإضافي تعديل الدردشة"
139
 
140
  #: options.php:144
141
+ msgid "Setup status"
142
+ msgstr ""
143
+
144
+ #: options.php:145
145
  msgid ""
146
  "The plugin code has already been added into your website. You can always go "
147
  "back through the setup process to customize the plugin."
149
  "لقد تمت بالفعل إضافة المكون الإضافي إلى موقعك على الويب. ويمكنك دائمًا العودة "
150
  "إلى الخلف في عملية الإعداد من أجل تخصيص المكون الإضافي."
151
 
152
+ #: options.php:149
153
+ msgid "Advanced Configuration"
154
+ msgstr "تكوين متقدم"
155
+
156
+ #: options.php:159
157
+ msgid "Deploy Chat plugin on:"
158
+ msgstr "استخدام المكون الإضافي ""دردشة"" على..."
159
+ msgstr ""
160
+ #: options.php:164
161
+ msgid "All pages"
162
+ msgstr "كل الصفحات"
163
+
164
+ #: options.php:168
165
+ msgid "Custom pages"
166
+ msgstr "صفحات مخصصة"
167
+
168
+ #: options.php:260
169
+ msgid "Product pages"
170
+ msgstr "صفحات المنتجات"
171
+
172
+ #: options.php:268
173
+ msgid "Error saving settings."
174
+ msgstr ""
175
+
176
+ #: options.php:270
177
+ msgid "Settings saved."
178
+ msgstr ""
179
+
180
+ #: options.php:272
181
+ msgid "Saving settings..."
182
+ msgstr ""
183
+
184
+ #: options.php:285
185
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
186
  msgstr "استخدام هذا المكون الإضافي يخضع لشروط منصة فيسبوك"
187
 
188
+ #: options.php:287
189
  msgid "Having a problem setting up or using the Chat Plugin?"
190
  msgstr "هل تواجه مشكلات في إعداد أو استخدام المكون الإضافي \"دردشة\"؟"
191
 
192
+ #: options.php:291
193
  msgid "Please consult our Troubleshooting Guide."
194
  msgstr "يرجى الاطلاع على دليل اكتشاف الأخطاء وحلها الخاص بنا."
195
 
196
+ #: options.php:294
197
  msgid ""
198
  "If the troubleshooting steps in the guide do not solve your problem, please "
199
  "post in the plugin support forum."
200
  msgstr ""
201
  "إذا لم تجد حلاً في خطوات اكتشاف المشكلات وحلها في الدليل، يرجى النشر في منتدى "
202
  "دعم المكون الإضافي."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-cs_CZ.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-cs_CZ.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,108 @@ msgstr ""
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 "
@@ -59,6 +137,10 @@ 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."
@@ -66,43 +148,55 @@ 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"
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: 2021-05-11 23:54+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: cs_CZ\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n"
15
  "X-Poedit-KeywordsList: __;_e;esc_html__\n"
 
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: facebook-messenger-customer-chat.php:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Oficiální Facebook plugin pro chat"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Pomocí několika kliknutí můžete na svůj web přidat Facebook plugin pro chat, "
33
+ "který zákazníkům umožní vám během procházení webu poslat zprávu. Chcete-li "
34
+ "tyto zprávy zobrazit a odpovídat na ně, jednoduše použijte stejné nástroje "
35
+ "pro posílání zpráv, které používáte k posílání zpráv z Facebooku na počítači "
36
+ "na facebook.com, Aplikace Facebook Správce stránek (k dispozici pro iOS "
37
+ "a Android) nebo přidáním účtu stránky do Messengeru. Instalace je jednoduchá "
38
+ "a bezplatná a zahrnuje uživatelské rozhraní, které už zákazníci znají."
39
+
40
+ #: facebook-messenger-customer-chat.php:53
41
+ #: facebook-messenger-customer-chat.php:70
42
  msgid "Settings"
43
  msgstr "Nastavení"
44
 
45
+ #: facebook-messenger-customer-chat.php:77
46
  msgid "FAQ"
47
  msgstr "Časté dotazy"
48
 
49
+ #: facebook-messenger-customer-chat.php:83
50
  msgid "Support"
51
  msgstr "Podpora"
52
 
53
+ #: facebook-messenger-customer-chat.php:173
54
+ msgid "Cancel"
55
+ msgstr ""
56
+
57
+ #: facebook-messenger-customer-chat.php:183
58
+ msgid "We value your feedback."
59
+ msgstr "Váš názor je pro nás důležitý."
60
+
61
+ #: facebook-messenger-customer-chat.php:188
62
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
63
+ msgstr "Dejte nám vědět, proč si deaktivujete plugin pro Facebook chat."
64
+
65
+ #: facebook-messenger-customer-chat.php:191
66
+ msgid "I’m unable to get the plugin to work"
67
+ msgstr "Nedaří se mi plugin zprovoznit."
68
+
69
+ #: facebook-messenger-customer-chat.php:192
70
+ msgid "I no longer need a live chat feature"
71
+ msgstr ""
72
+
73
+ #: facebook-messenger-customer-chat.php:193
74
+ msgid "I’m using a different live chat plugin"
75
+ msgstr "Používám plugin pro jiný živý chat."
76
+
77
+ #: facebook-messenger-customer-chat.php:198
78
+ msgid "Name of plugin:"
79
+ msgstr "Název pluginu:"
80
+
81
+ #: facebook-messenger-customer-chat.php:199
82
+ msgid "This is a temporary deactivation. I’ll be back!"
83
+ msgstr "Deaktivace je jen dočasná, zase si ho aktivuji."
84
+
85
+ #: facebook-messenger-customer-chat.php:200
86
+ msgid "Other"
87
+ msgstr "Něco jiného"
88
+
89
+ #: facebook-messenger-customer-chat.php:205
90
+ msgid "Comments:"
91
+ msgstr "Komentáře:"
92
+
93
+ #: facebook-messenger-customer-chat.php:208
94
+ msgid "Submit"
95
+ msgstr "Odeslat"
96
+
97
+ #: facebook-messenger-customer-chat.php:214
98
+ msgid "Thank you. We appreciate your feedback."
99
+ msgstr "Děkujeme. Ceníme si vaší zpětné vazby."
100
+
101
+ #: options.php:22
102
+ msgid "Plugin Settings"
103
+ msgstr ""
104
+
105
+ #: options.php:23
106
+ msgid "Facebook Chat"
107
+ msgstr ""
108
+
109
+ #: options.php:106
110
  msgid "Facebook Chat Plugin Settings"
111
  msgstr "Nastavení Facebook pluginu pro chat"
112
 
113
+ #: options.php:110
114
  msgid "Getting Started?"
115
  msgstr "Jak začít?"
116
 
117
+ #: options.php:111
118
  msgid ""
119
  "Let people start a conversation on your website and continue in Messenger. "
120
  "It's easy to set up. Chats started on your website can be continued in the "
137
  msgstr "Upravit plugin pro chat"
138
 
139
  #: options.php:144
140
+ msgid "Setup status"
141
+ msgstr ""
142
+
143
+ #: options.php:145
144
  msgid ""
145
  "The plugin code has already been added into your website. You can always go "
146
  "back through the setup process to customize the plugin."
148
  "Kód pluginu už byl na váš web přidán. V krocích nastavení se vždy můžete "
149
  "vrátit zpět a plugin si přizpůsobit."
150
 
151
+ #: options.php:149
152
+ msgid "Advanced Configuration"
153
+ msgstr "Pokročilá konfigurace"
154
+
155
+ #: options.php:159
156
+ msgid "Deploy Chat plugin on:"
157
+ msgstr "Nasadit plugin chatu do…"
158
+ msgstr ""
159
+ #: options.php:164
160
+ msgid "All pages"
161
+ msgstr "Všechny stránky"
162
+
163
+ #: options.php:168
164
+ msgid "Custom pages"
165
+ msgstr "Vlastní stránky"
166
+
167
+ #: options.php:260
168
+ msgid "Product pages"
169
+ msgstr "Stránky produktů"
170
+
171
+ #: options.php:268
172
+ msgid "Error saving settings."
173
+ msgstr ""
174
+
175
+ #: options.php:270
176
+ msgid "Settings saved."
177
+ msgstr ""
178
+
179
+ #: options.php:272
180
+ msgid "Saving settings..."
181
+ msgstr ""
182
+
183
+ #: options.php:285
184
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
185
  msgstr ""
186
  "Používání tohoto pluginu podléhá smluvním podmínkám platformy Facebooku"
187
 
188
+ #: options.php:287
189
  msgid "Having a problem setting up or using the Chat Plugin?"
190
  msgstr "Máte potíže s nastavením nebo používáním pluginu pro chat?"
191
 
192
+ #: options.php:291
193
  msgid "Please consult our Troubleshooting Guide."
194
  msgstr "Přečtěte si našeho průvodce řešením potíží."
195
 
196
+ #: options.php:294
197
  msgid ""
198
  "If the troubleshooting steps in the guide do not solve your problem, please "
199
  "post in the plugin support forum."
200
  msgstr ""
201
  "Pokud postup řešení potíží v průvodci váš problém nevyřeší, napište "
202
  "příspěvek ve fóru podpory pluginů. "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-da_DK.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-da_DK.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,108 @@ msgstr ""
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 "
@@ -59,6 +137,10 @@ 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."
@@ -66,42 +148,54 @@ 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"
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: 2021-05-11 23:55+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: da_DK\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Det officielle Facebook Chat-plugin"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Med et par klik kan du tilføje Facebook Chat-pluginet til dit website, så "
33
+ "kunderne kan sende en besked til dig, mens de kigger på dit website. For at "
34
+ "se og svare på disse beskeder skal du blot bruge de samme beskedværktøjer, "
35
+ "som du bruger til din Facebook-besked på computeren på facebook.com "
36
+ "Facebooks sideadministrator-app (tilgængelig på iOS og Android) eller ved at "
37
+ "tilføje din sidekonto til Messenger. Det er gratis, let at installere og "
38
+ "leveres med en brugergrænseflade, som dine kunder allerede kender.\""
39
+
40
+ #: facebook-messenger-customer-chat.php:53
41
+ #: facebook-messenger-customer-chat.php:70
42
  msgid "Settings"
43
  msgstr "Indstillinger"
44
 
45
+ #: facebook-messenger-customer-chat.php:77
46
  msgid "FAQ"
47
  msgstr "OFTE STILLEDE SPØRGSMÅL"
48
 
49
+ #: facebook-messenger-customer-chat.php:83
50
  msgid "Support"
51
  msgstr "Support"
52
 
53
+ #: facebook-messenger-customer-chat.php:173
54
+ msgid "Cancel"
55
+ msgstr ""
56
+
57
+ #: facebook-messenger-customer-chat.php:183
58
+ msgid "We value your feedback."
59
+ msgstr "Vi sætter pris på din feedback."
60
+
61
+ #: facebook-messenger-customer-chat.php:188
62
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
63
+ msgstr "Fortæl os, hvorfor du deaktiverer Facebooks chatplugin."
64
+
65
+ #: facebook-messenger-customer-chat.php:191
66
+ msgid "I’m unable to get the plugin to work"
67
+ msgstr "Jeg kan ikke få plugin'et til at fungere"
68
+
69
+ #: facebook-messenger-customer-chat.php:192
70
+ msgid "I no longer need a live chat feature"
71
+ msgstr ""
72
+
73
+ #: facebook-messenger-customer-chat.php:193
74
+ msgid "I’m using a different live chat plugin"
75
+ msgstr "Jeg bruger et andet plugin til livechat"
76
+
77
+ #: facebook-messenger-customer-chat.php:198
78
+ msgid "Name of plugin:"
79
+ msgstr "Navn på plugin:"
80
+
81
+ #: facebook-messenger-customer-chat.php:199
82
+ msgid "This is a temporary deactivation. I’ll be back!"
83
+ msgstr "Dette er en midlertidig deaktivering. Jeg er snart tilbage!"
84
+
85
+ #: facebook-messenger-customer-chat.php:200
86
+ msgid "Other"
87
+ msgstr "Andet"
88
+
89
+ #: facebook-messenger-customer-chat.php:205
90
+ msgid "Comments:"
91
+ msgstr "Kommentarer:"
92
+
93
+ #: facebook-messenger-customer-chat.php:208
94
+ msgid "Submit"
95
+ msgstr "Indsend"
96
+
97
+ #: facebook-messenger-customer-chat.php:214
98
+ msgid "Thank you. We appreciate your feedback."
99
+ msgstr "Tak! Vi sætter pris på din feedback."
100
+
101
+ #: options.php:22
102
+ msgid "Plugin Settings"
103
+ msgstr ""
104
+
105
+ #: options.php:23
106
+ msgid "Facebook Chat"
107
+ msgstr ""
108
+
109
+ #: options.php:106
110
  msgid "Facebook Chat Plugin Settings"
111
  msgstr "Indstillinger for Facebooks chat-plugin"
112
 
113
+ #: options.php:110
114
  msgid "Getting Started?"
115
  msgstr "Ved at komme i gang?"
116
 
117
+ #: options.php:111
118
  msgid ""
119
  "Let people start a conversation on your website and continue in Messenger. "
120
  "It's easy to set up. Chats started on your website can be continued in the "
137
  msgstr "Rediger chat-pluginet"
138
 
139
  #: options.php:144
140
+ msgid "Setup status"
141
+ msgstr ""
142
+
143
+ #: options.php:145
144
  msgid ""
145
  "The plugin code has already been added into your website. You can always go "
146
  "back through the setup process to customize the plugin."
148
  "Pluginkoden er allerede føjet til dit website. Du kan altid gå tilbage "
149
  "gennem installationsprocessen for at tilpasse pluginet."
150
 
151
+ #: options.php:149
152
+ msgid "Advanced Configuration"
153
+ msgstr "Avanceret konfiguration"
154
+
155
+ #: options.php:159
156
+ msgid "Deploy Chat plugin on:"
157
+ msgstr "Anvend chatplugin på..."
158
+ msgstr ""
159
+ #: options.php:164
160
+ msgid "All pages"
161
+ msgstr "Alle sider"
162
+
163
+ #: options.php:168
164
+ msgid "Custom pages"
165
+ msgstr "Brugerdefinerede sider"
166
+
167
+ #: options.php:260
168
+ msgid "Product pages"
169
+ msgstr "Produktsider"
170
+
171
+ #: options.php:268
172
+ msgid "Error saving settings."
173
+ msgstr ""
174
+
175
+ #: options.php:270
176
+ msgid "Settings saved."
177
+ msgstr ""
178
+
179
+ #: options.php:272
180
+ msgid "Saving settings..."
181
+ msgstr ""
182
+
183
+ #: options.php:285
184
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
185
  msgstr "Brug af dette plugin er underlagt Facebooks platformsvilkår"
186
 
187
+ #: options.php:287
188
  msgid "Having a problem setting up or using the Chat Plugin?"
189
  msgstr "Har du et problem med at konfigurere eller bruge Chat-pluginet?"
190
 
191
+ #: options.php:291
192
  msgid "Please consult our Troubleshooting Guide."
193
  msgstr "Se vores fejlfindingsvejledning."
194
 
195
+ #: options.php:294
196
  msgid ""
197
  "If the troubleshooting steps in the guide do not solve your problem, please "
198
  "post in the plugin support forum."
199
  msgstr ""
200
  "Hvis fejlfindingstrinene i vejledningen ikke løser dit problem, bedes du slå "
201
  "det op i plugin-supportforummet."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-de_DE.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-de_DE.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,109 @@ msgstr ""
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 "
@@ -61,6 +140,10 @@ 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."
@@ -68,46 +151,57 @@ 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"
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: 2021-05-11 23:55+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: de_DE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Das offizielle Facebook-Chat-Plugin"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Du kannst das Facebook Chat-Plugin mit nur wenigen Klicks zu deiner Website "
33
+ "hinzufügen. Kunden können dir dann beim Stöbern auf deiner Website "
34
+ "Nachrichten senden. Wenn du diese Nachrichten sehen und beantworten "
35
+ "möchtest, kannst du dieselben Messaging-Tools verwenden, die du auch für "
36
+ "dein Facebook-Messaging unter Facebook.com verwendest. Seitenmanager-App von "
37
+ "Facebook (für iOS und Android verfügbar) Du kannst auch dein Seitenkonto zum "
38
+ "Messenger hinzufügen. Kostenlos. Einfach zu installieren und mit einer "
39
+ "Benutzeroberfläche, die deine Kunden bereits kennen."
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
  msgid "Settings"
44
  msgstr "Einstellungen"
45
 
46
+ #: facebook-messenger-customer-chat.php:77
47
  msgid "FAQ"
48
  msgstr "FAQ"
49
 
50
+ #: facebook-messenger-customer-chat.php:83
51
  msgid "Support"
52
  msgstr "Support"
53
 
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "Wir schätzen dein Feedback."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Bitte lass uns wissen, warum du das Facebook-Chat-Plugin deaktivieren möchtest."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "Es gelingt mir nicht, das Plugin einzurichten."
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Ich nutze ein anderes Plugin für Live-Chats."
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Name des Plugins:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "Die Deaktivierung ist nur vorübergehend. Ich bin bald zurück!"
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Sonstiges"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Kommentare:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Senden"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Vielen Dank! Wir schätzen dein Feedback."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
  msgid "Facebook Chat Plugin Settings"
112
  msgstr "Einstellungen für das Facebook-Chat-Plugin"
113
 
114
+ #: options.php:110
115
  msgid "Getting Started?"
116
  msgstr "Erste Schritte?"
117
 
118
+ #: options.php:111
119
  msgid ""
120
  "Let people start a conversation on your website and continue in Messenger. "
121
  "It's easy to set up. Chats started on your website can be continued in the "
140
  msgstr "Chat-Plugin bearbeiten"
141
 
142
  #: options.php:144
143
+ msgid "Setup status"
144
+ msgstr ""
145
+
146
+ #: options.php:145
147
  msgid ""
148
  "The plugin code has already been added into your website. You can always go "
149
  "back through the setup process to customize the plugin."
151
  "Wir haben den Plugin-Code bereits zu deiner Website hinzugefügt. Du kannst "
152
  "jederzeit zum Einrichtungsprozess zurückkehren und das Plugin anpassen."
153
 
154
+ #: options.php:149
155
+ msgid "Advanced Configuration"
156
+ msgstr "Erweiterte Konfiguration"
157
+
158
+ #: options.php:159
159
+ msgid "Deploy Chat plugin on:"
160
+ msgstr "Chat-Plugin bereitstellen auf ..."
161
+ msgstr ""
162
+ #: options.php:164
163
+ msgid "All pages"
164
+ msgstr "Allen Seiten"
165
+
166
+ #: options.php:168
167
+ msgid "Custom pages"
168
+ msgstr "Benutzerdefinierten Seiten"
169
+
170
+ #: options.php:260
171
+ msgid "Product pages"
172
+ msgstr "Produktseiten"
173
+
174
+ #: options.php:268
175
+ msgid "Error saving settings."
176
+ msgstr ""
177
+
178
+ #: options.php:270
179
+ msgid "Settings saved."
180
+ msgstr ""
181
+
182
+ #: options.php:272
183
+ msgid "Saving settings..."
184
+ msgstr ""
185
+
186
+ #: options.php:285
187
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
188
  msgstr ""
189
  "Für die Nutzung dieses Plugins gelten die Nutzungsbedingungen für die "
190
  "Facebook-Plattform."
191
 
192
+ #: options.php:287
193
  msgid "Having a problem setting up or using the Chat Plugin?"
194
  msgstr ""
195
  "Beim Einrichten oder Verwenden des Chat-Plugins ist ein Problem aufgetreten?"
196
 
197
+ #: options.php:291
198
  msgid "Please consult our Troubleshooting Guide."
199
  msgstr "Versuche es mit unserem Leitfaden zur Fehlerbehebung"
200
 
201
+ #: options.php:294
202
  msgid ""
203
  "If the troubleshooting steps in the guide do not solve your problem, please "
204
  "post in the plugin support forum."
205
  msgstr ""
206
  "Solltest du das Problem damit nicht beheben können, poste eine Frage im "
207
  "Plugin-Support-Forum."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-es_ES.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-es_ES.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,109 @@ msgstr ""
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 "
@@ -60,6 +139,10 @@ 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."
@@ -67,45 +150,56 @@ 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"
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: 2021-05-11 23:56+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: es_ES\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Plugin de chat oficial de Facebook"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Con tan solo unos clics puedes añadir el plugin de chat de Facebook a tu "
33
+ "sitio web para que los clientes puedan enviarte mensajes mientras navegan "
34
+ "por él. Para ver y responder esos mensajes solo tienes que utilizar las "
35
+ "mismas herramientas de mensajería que usas para tus mensajes de Facebook en "
36
+ "el ordenador en facebook.com, la aplicación Administrador de páginas de "
37
+ "Facebook (disponible en iOS y Android) o al añadir la cuenta de tu página a "
38
+ "Messenger. Es gratis y fácil de instalar e incorpora una interfaz de usuario "
39
+ "con la que tus clientes ya están familiarizados."
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
  msgid "Settings"
44
  msgstr "Configuración"
45
 
46
+ #: facebook-messenger-customer-chat.php:77
47
  msgid "FAQ"
48
  msgstr "PREGUNTAS FRECUENTES"
49
 
50
+ #: facebook-messenger-customer-chat.php:83
51
  msgid "Support"
52
  msgstr "Ayuda"
53
 
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "Valoramos tus comentarios."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Indícanos por qué quieres desactivar el plugin de chat de Facebook."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "No consigo que el plugin funcione"
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Uso otro plugin de chat en directo"
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Nombre del plugin:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "Quiero desactivarlo temporalmente. Volveré a activarlo más adelante"
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Otro"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Comentarios:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Enviar"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Gracias por enviarnos tus comentarios."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
  msgid "Facebook Chat Plugin Settings"
112
  msgstr "Configuración del plugin de chat de Facebook"
113
 
114
+ #: options.php:110
115
  msgid "Getting Started?"
116
  msgstr "¿Estas empezando?"
117
 
118
+ #: options.php:111
119
  msgid ""
120
  "Let people start a conversation on your website and continue in Messenger. "
121
  "It's easy to set up. Chats started on your website can be continued in the "
139
  msgstr "Editar el plugin de chat"
140
 
141
  #: options.php:144
142
+ msgid "Setup status"
143
+ msgstr ""
144
+
145
+ #: options.php:145
146
  msgid ""
147
  "The plugin code has already been added into your website. You can always go "
148
  "back through the setup process to customize the plugin."
150
  "El código del plugin ya se ha añadido a tu sitio web. Siempre puedes "
151
  "retroceder durante el proceso de configuración para personalizar el plugin."
152
 
153
+ #: options.php:149
154
+ msgid "Advanced Configuration"
155
+ msgstr "Configuración avanzada"
156
+
157
+ #: options.php:159
158
+ msgid "Deploy Chat plugin on:"
159
+ msgstr "Instalar plugin de chat en…"
160
+ msgstr ""
161
+ #: options.php:164
162
+ msgid "All pages"
163
+ msgstr "Todas las páginas"
164
+
165
+ #: options.php:168
166
+ msgid "Custom pages"
167
+ msgstr "Páginas personalizadas"
168
+
169
+ #: options.php:260
170
+ msgid "Product pages"
171
+ msgstr "Páginas de producto"
172
+
173
+ #: options.php:268
174
+ msgid "Error saving settings."
175
+ msgstr ""
176
+
177
+ #: options.php:270
178
+ msgid "Settings saved."
179
+ msgstr ""
180
+
181
+ #: options.php:272
182
+ msgid "Saving settings..."
183
+ msgstr ""
184
+
185
+ #: options.php:285
186
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
187
  msgstr ""
188
  "El uso de este plugin está sujeto a las condiciones de la plataforma de "
189
  "Facebook"
190
 
191
+ #: options.php:287
192
  msgid "Having a problem setting up or using the Chat Plugin?"
193
  msgstr "¿Tienes problemas al configurar o usar el plugin de chat?"
194
 
195
+ #: options.php:291
196
  msgid "Please consult our Troubleshooting Guide."
197
  msgstr "Consulta nuestra guía de solución de problemas."
198
 
199
+ #: options.php:294
200
  msgid ""
201
  "If the troubleshooting steps in the guide do not solve your problem, please "
202
  "post in the plugin support forum."
203
  msgstr ""
204
  "Si los pasos de solución de problemas de la guía no resuelven el problema,"
205
  "publícalo en el foro de ayuda del plugin."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-fi.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-fi.po ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2021-05-11 23:56+0800\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Facebook\n"
8
+ "Language: fi\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Virallinen Facebook-keskusteluliitännäinen"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Voit muutamalla klikkauksella lisätä Facebook-keskusteluliitännäisen "
33
+ "sivustollesi, jolloin asiakkaat voivat lähettää sinulle viestejä sivustoasi "
34
+ "selatessaan. Voit katsoa asiakkaiden viestit ja vastata niihin helposti "
35
+ "käyttämällä samoja viestintätyökaluja, joita käytät Facebook-viestintään "
36
+ "tietokoneella osoitteessa facebook.com tai Facebook Pages Manager -"
37
+ "sovelluksessa (saatavilla iOS:sille ja Androidille). Vaihtoehtoisesti voit "
38
+ "lisätä sivutilisi Messengeriin. Liitännäinen on ilmainen. Sen asentaminen on "
39
+ "helppoa, ja sen mukana tulee asiakkaille entuudestaan tuttu käyttöliittymä.\""
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
+ msgid "Settings"
44
+ msgstr "Asetukset"
45
+
46
+ #: facebook-messenger-customer-chat.php:77
47
+ msgid "FAQ"
48
+ msgstr "UKK"
49
+
50
+ #: facebook-messenger-customer-chat.php:83
51
+ msgid "Support"
52
+ msgstr "Tuki"
53
+
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "Arvostamme palautettasi."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Kerro, miksi poistat Facebookin keskusteluliitännäisen käytöstä."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "En saa liitännäistä toimimaan."
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Käytän jotakin muuta keskusteluliitännäistä."
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Liitännäisen nimi:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "Poistan sen käytöstä vain tilapäisesti. Aion jatkossa vielä käyttää sitä."
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Muu"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Kommentteja:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Lähetä"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Kiitos. Arvostamme palautettasi."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
+ msgid "Facebook Chat Plugin Settings"
112
+ msgstr "Facebook-keskusteluliitännäisen asetukset"
113
+
114
+ #: options.php:110
115
+ msgid "Getting Started?"
116
+ msgstr "Aloittaminen"
117
+
118
+ #: options.php:111
119
+ msgid ""
120
+ "Let people start a conversation on your website and continue in Messenger. "
121
+ "It's easy to set up. Chats started on your website can be continued in the "
122
+ "customers' Messenger app, so you never lose connections with your customers. "
123
+ "Even those without a Facebook Messenger account can chat with you in guest "
124
+ "mode, so you can reach more customers than ever."
125
+ msgstr ""
126
+ "Salli ihmisten aloittaa keskustelu sivustollasi ja jatkaa sitä "
127
+ "Messengerissä. Määrittäminen on helppoa. Sivustollasi aloitettuja "
128
+ "keskusteluja voidaan jatkaa asiakkaiden Messenger-sovelluksessa, joten et "
129
+ "koskaan menetä yhteyttä asiakkaisiisi. Lisäksi asiakkaat, joilla ei ole "
130
+ "Facebook Messengeriä, voivat keskustella kanssasi vierastilassa, jolloin "
131
+ "tavoitat useampia asiakkaita kuin koskaan ennen."
132
+
133
+ #: options.php:128
134
+ msgid "Setup Chat Plugin"
135
+ msgstr "Määritä keskusteluliitännäinen"
136
+
137
+ #: options.php:130
138
+ msgid "Edit Chat Plugin"
139
+ msgstr "Muokkaa keskusteluliitännäistä"
140
+
141
+ #: options.php:144
142
+ msgid "Setup status"
143
+ msgstr ""
144
+
145
+ #: options.php:145
146
+ msgid ""
147
+ "The plugin code has already been added into your website. You can always go "
148
+ "back through the setup process to customize the plugin."
149
+ msgstr ""
150
+ "Liitännäisen koodi on jo lisätty sivustollesi. Voit aina palata takaisin "
151
+ "määritysprosessiin mukauttaaksesi liitännäistä."
152
+
153
+ #: options.php:149
154
+ msgid "Advanced Configuration"
155
+ msgstr "Lisämääritys"
156
+
157
+ #: options.php:159
158
+ msgid "Deploy Chat plugin on:"
159
+ msgstr "Ota keskusteluliitännäinen käyttöön..."
160
+ msgstr ""
161
+ #: options.php:164
162
+ msgid "All pages"
163
+ msgstr "Kaikilla sivuilla"
164
+
165
+ #: options.php:168
166
+ msgid "Custom pages"
167
+ msgstr "Tietyillä sivuilla"
168
+
169
+ #: options.php:260
170
+ msgid "Product pages"
171
+ msgstr "Tuotesivuilla"
172
+
173
+ #: options.php:268
174
+ msgid "Error saving settings."
175
+ msgstr ""
176
+
177
+ #: options.php:270
178
+ msgid "Settings saved."
179
+ msgstr ""
180
+
181
+ #: options.php:272
182
+ msgid "Saving settings..."
183
+ msgstr ""
184
+
185
+ #: options.php:285
186
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
187
+ msgstr "Liitännäisen käyttöön sovelletaan Facebook-alustan käyttöehtoja"
188
+
189
+ #: options.php:287
190
+ msgid "Having a problem setting up or using the Chat Plugin?"
191
+ msgstr ""
192
+ "Onko sinulla ongelmia keskusteluliitännäisen määrittämisessä tai "
193
+ "käyttämisessä?"
194
+
195
+ #: options.php:291
196
+ msgid "Please consult our Troubleshooting Guide."
197
+ msgstr "Katso apua vianmääritysoppaastamme."
198
+
199
+ #: options.php:294
200
+ msgid ""
201
+ "If the troubleshooting steps in the guide do not solve your problem, please "
202
+ "post in the plugin support forum."
203
+ msgstr ""
204
+ "Jos vianmääritysoppaan ohjeet eivät auta ongelman ratkaisemisessa,tee "
205
+ "asiasta julkaisu liitännäisen tukifoorumiin."
languages/facebook-messenger-customer-chat-fr_CA.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-fr_CA.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,110 @@ msgstr ""
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 "
@@ -61,6 +141,10 @@ 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."
@@ -69,23 +153,55 @@ msgstr ""
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."
@@ -93,25 +209,3 @@ 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"
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: 2021-05-11 23:57+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: fr_CA\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Le module d’extension de discussion officiel de Facebook"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "À l’aide de seulement quelques clics, vous pouvez ajouter le module "
33
+ "d’extension de discussion Facebook à votre site Web, ce qui permet aux "
34
+ "clients de vous envoyer des messages pendant qu’ils parcourent votre site "
35
+ "Web. Pour lire ces messages et y répondre, utilisez simplement les mêmes "
36
+ "outils de messagerie que vous utilisez pour la messagerie Facebook sur votre "
37
+ "ordinateur à l’adresse facebook.com, sur l’application Gestionnaire de Pages "
38
+ "Facebook (disponible sur iOS et Android) ou en ajoutant le compte de votre "
39
+ "Page à Messenger. C’est gratuit, facile à installer et vos clients "
40
+ "connaissent déjà l’interface utilisateur."
41
+
42
+ #: facebook-messenger-customer-chat.php:53
43
+ #: facebook-messenger-customer-chat.php:70
44
  msgid "Settings"
45
  msgstr "Paramètres"
46
 
47
+ #: facebook-messenger-customer-chat.php:77
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
+ #: facebook-messenger-customer-chat.php:83
52
  msgid "Support"
53
  msgstr "Assistance"
54
 
55
+ #: facebook-messenger-customer-chat.php:173
56
+ msgid "Cancel"
57
+ msgstr ""
58
+
59
+ #: facebook-messenger-customer-chat.php:183
60
+ msgid "We value your feedback."
61
+ msgstr "Votre rétroaction est importante pour nous."
62
+
63
+ #: facebook-messenger-customer-chat.php:188
64
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
65
+ msgstr "Indiquez-nous pourquoi vous désactivez le module d’extension de discussion de Facebook."
66
+
67
+ #: facebook-messenger-customer-chat.php:191
68
+ msgid "I’m unable to get the plugin to work"
69
+ msgstr "Je ne suis pas en mesure d’obtenir le module d’extension pour travailler"
70
+
71
+ #: facebook-messenger-customer-chat.php:192
72
+ msgid "I no longer need a live chat feature"
73
+ msgstr ""
74
+
75
+ #: facebook-messenger-customer-chat.php:193
76
+ msgid "I’m using a different live chat plugin"
77
+ msgstr "J’utilise un autre module d’extension de discussion en direct"
78
+
79
+ #: facebook-messenger-customer-chat.php:198
80
+ msgid "Name of plugin:"
81
+ msgstr "Nom du module d’extension :"
82
+
83
+ #: facebook-messenger-customer-chat.php:199
84
+ msgid "This is a temporary deactivation. I’ll be back!"
85
+ msgstr "La désactivation est temporaire. Je vais revenir!"
86
+
87
+ #: facebook-messenger-customer-chat.php:200
88
+ msgid "Other"
89
+ msgstr "Autre"
90
+
91
+ #: facebook-messenger-customer-chat.php:205
92
+ msgid "Comments:"
93
+ msgstr "Commentaires :"
94
+
95
+ #: facebook-messenger-customer-chat.php:208
96
+ msgid "Submit"
97
+ msgstr "Envoyer"
98
+
99
+ #: facebook-messenger-customer-chat.php:214
100
+ msgid "Thank you. We appreciate your feedback."
101
+ msgstr "Merci. Votre rétroaction est importante pour nous."
102
+
103
+ #: options.php:22
104
+ msgid "Plugin Settings"
105
+ msgstr ""
106
+
107
+ #: options.php:23
108
+ msgid "Facebook Chat"
109
+ msgstr ""
110
+
111
+ #: options.php:106
112
  msgid "Facebook Chat Plugin Settings"
113
  msgstr "Paramètres du module d’extension de discussion Facebook"
114
 
115
+ #: options.php:110
116
  msgid "Getting Started?"
117
  msgstr "Vous débutez?"
118
 
119
+ #: options.php:111
120
  msgid ""
121
  "Let people start a conversation on your website and continue in Messenger. "
122
  "It's easy to set up. Chats started on your website can be continued in the "
141
  msgstr "Modifier le module d’extension de discussion"
142
 
143
  #: options.php:144
144
+ msgid "Setup status"
145
+ msgstr ""
146
+
147
+ #: options.php:145
148
  msgid ""
149
  "The plugin code has already been added into your website. You can always go "
150
  "back through the setup process to customize the plugin."
153
  "Web. Vous pouvez toujours revenir au processus de configuration afin de "
154
  "personnaliser le module d’extension."
155
 
156
+ #: options.php:149
157
+ msgid "Advanced Configuration"
158
+ msgstr "Configuration avancée"
159
+
160
+ #: options.php:159
161
+ msgid "Deploy Chat plugin on:"
162
+ msgstr "Installer le module d’extension de discussion sur..."
163
+ msgstr ""
164
+ #: options.php:164
165
+ msgid "All pages"
166
+ msgstr "Toutes les pages"
167
+
168
+ #: options.php:168
169
+ msgid "Custom pages"
170
+ msgstr "Pages personnalisées"
171
+
172
+ #: options.php:260
173
+ msgid "Product pages"
174
+ msgstr "Pages de produits"
175
+
176
+ #: options.php:268
177
+ msgid "Error saving settings."
178
+ msgstr ""
179
+
180
+ #: options.php:270
181
+ msgid "Settings saved."
182
+ msgstr ""
183
+
184
+ #: options.php:272
185
+ msgid "Saving settings..."
186
+ msgstr ""
187
+
188
+ #: options.php:285
189
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
190
  msgstr ""
191
  "L’utilisation de ce module d’extension est assujettie aux conditions de la "
192
  "plateforme Facebook"
193
 
194
+ #: options.php:287
195
  msgid "Having a problem setting up or using the Chat Plugin?"
196
  msgstr ""
197
  "Avez-vous de la difficulté à configurer ou à utiliser le module d’extension "
198
  "de discussion?"
199
 
200
+ #: options.php:291
201
  msgid "Please consult our Troubleshooting Guide."
202
  msgstr "Veuillez consulter notre guide de résolution de problèmes."
203
 
204
+ #: options.php:294
205
  msgid ""
206
  "If the troubleshooting steps in the guide do not solve your problem, please "
207
  "post in the plugin support forum."
209
  "Si les étapes mentionnées dans le guide de résolution de problèmes ne vous "
210
  "permettent pas de régler votre problème, veuillez faire une publication dans "
211
  "le forum d’assistance pour les modules d’extension."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-fr_FR.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-fr_FR.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,110 @@ msgstr ""
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 "
@@ -61,6 +141,10 @@ 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."
@@ -69,48 +153,58 @@ msgstr ""
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"
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: 2021-05-11 23:57+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: fr_FR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Le plugin de discussion officiel de Facebook"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Vous pouvez ajouter le plugin de discussion Facebook sur votre site web en "
33
+ "quelques clics seulement, permettant ainsi à vos clients de vous envoyer un "
34
+ "message lorsqu’ils naviguent sur votre site web. Pour lire ces messages et y "
35
+ "répondre, il vous suffit d’utiliser les mêmes outils que vous utilisez pour "
36
+ "votre messagerie Facebook sur votre ordinateur à l’adresse Facebook.com "
37
+ "Application Gestionnaire de Pages Facebook (disponible sur Android et iOS) "
38
+ "ou en ajoutant le compte de votre page à Messenger. C’est gratuit, facile à "
39
+ "installer et comprend une interface utilisateur avec laquelle vos clients "
40
+ "sont déjà familiarisés.\""
41
+
42
+ #: facebook-messenger-customer-chat.php:53
43
+ #: facebook-messenger-customer-chat.php:70
44
  msgid "Settings"
45
  msgstr "Original \"Paramètres\""
46
 
47
+ #: facebook-messenger-customer-chat.php:77
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
+ #: facebook-messenger-customer-chat.php:83
52
  msgid "Support"
53
  msgstr "Assistance"
54
 
55
+ #: facebook-messenger-customer-chat.php:173
56
+ msgid "Cancel"
57
+ msgstr ""
58
+
59
+ #: facebook-messenger-customer-chat.php:183
60
+ msgid "We value your feedback."
61
+ msgstr "Vos commentaires sont importants pour nous."
62
+
63
+ #: facebook-messenger-customer-chat.php:188
64
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
65
+ msgstr "Veuillez nous indiquer pourquoi vous désactivez le plugin de discussion Facebook."
66
+
67
+ #: facebook-messenger-customer-chat.php:191
68
+ msgid "I’m unable to get the plugin to work"
69
+ msgstr "Je n’arrive pas à faire fonctionner le plugin"
70
+
71
+ #: facebook-messenger-customer-chat.php:192
72
+ msgid "I no longer need a live chat feature"
73
+ msgstr ""
74
+
75
+ #: facebook-messenger-customer-chat.php:193
76
+ msgid "I’m using a different live chat plugin"
77
+ msgstr "J’utilise un plugin de discussion en direct différent"
78
+
79
+ #: facebook-messenger-customer-chat.php:198
80
+ msgid "Name of plugin:"
81
+ msgstr "Nom du plugin :"
82
+
83
+ #: facebook-messenger-customer-chat.php:199
84
+ msgid "This is a temporary deactivation. I’ll be back!"
85
+ msgstr "Cette désactivation est temporaire. Je reviens vite !"
86
+
87
+ #: facebook-messenger-customer-chat.php:200
88
+ msgid "Other"
89
+ msgstr "Autre"
90
+
91
+ #: facebook-messenger-customer-chat.php:205
92
+ msgid "Comments:"
93
+ msgstr "Commentaires :"
94
+
95
+ #: facebook-messenger-customer-chat.php:208
96
+ msgid "Submit"
97
+ msgstr "Envoyer"
98
+
99
+ #: facebook-messenger-customer-chat.php:214
100
+ msgid "Thank you. We appreciate your feedback."
101
+ msgstr "Cordialement, Nous vous remercions pour votre participation."
102
+
103
+ #: options.php:22
104
+ msgid "Plugin Settings"
105
+ msgstr ""
106
+
107
+ #: options.php:23
108
+ msgid "Facebook Chat"
109
+ msgstr ""
110
+
111
+ #: options.php:106
112
  msgid "Facebook Chat Plugin Settings"
113
  msgstr "Paramètres du plugin de discussion Facebook"
114
 
115
+ #: options.php:110
116
  msgid "Getting Started?"
117
  msgstr "Premiers pas"
118
 
119
+ #: options.php:111
120
  msgid ""
121
  "Let people start a conversation on your website and continue in Messenger. "
122
  "It's easy to set up. Chats started on your website can be continued in the "
141
  msgstr "Modifier le plugin de discussion"
142
 
143
  #: options.php:144
144
+ msgid "Setup status"
145
+ msgstr ""
146
+
147
+ #: options.php:145
148
  msgid ""
149
  "The plugin code has already been added into your website. You can always go "
150
  "back through the setup process to customize the plugin."
153
  "revenir en arrière dans le processus de configuration pour personnaliser le "
154
  "plugin."
155
 
156
+ #: options.php:149
157
+ msgid "Advanced Configuration"
158
+ msgstr "Configuration avancée"
159
+
160
+ #: options.php:159
161
+ msgid "Deploy Chat plugin on:"
162
+ msgstr "Déployer le plugin de discussion sur..."
163
+ msgstr ""
164
+ #: options.php:164
165
+ msgid "All pages"
166
+ msgstr "Toutes les pages"
167
+
168
+ #: options.php:168
169
+ msgid "Custom pages"
170
+ msgstr "Les pages personnalisées"
171
+
172
+ #: options.php:260
173
+ msgid "Product pages"
174
+ msgstr "Les pages produits"
175
+
176
+ #: options.php:268
177
+ msgid "Error saving settings."
178
+ msgstr ""
179
+
180
+ #: options.php:270
181
+ msgid "Settings saved."
182
+ msgstr ""
183
+
184
+ #: options.php:272
185
+ msgid "Saving settings..."
186
+ msgstr ""
187
+
188
+ #: options.php:285
189
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
190
  msgstr ""
191
  "L’utilisation de ce plugin est sujette aux Conditions générales de la plate-"
192
  "forme de Facebook "
193
 
194
+ #: options.php:287
195
  msgid "Having a problem setting up or using the Chat Plugin?"
196
  msgstr ""
197
  "Un problème lors de la configuration ou de l’utilisation du plugin de "
198
  "discussion ?"
199
 
200
+ #: options.php:291
201
  msgid "Please consult our Troubleshooting Guide."
202
  msgstr "Veuillez consulter notre guide de résolution des problèmes."
203
 
204
+ #: options.php:294
205
  msgid ""
206
  "If the troubleshooting steps in the guide do not solve your problem, please "
207
  "post in the plugin support forum."
208
  msgstr ""
209
  "Si les étapes indiquées dans ce guide ne permettent pas de résoudre votre "
210
  "problème, veuillez publier un sujet sur le forum d’assistance du plugin."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-he_IL.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-he_IL.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -12,32 +14,107 @@ msgstr ""
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 "
@@ -59,6 +136,10 @@ 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."
@@ -66,43 +147,56 @@ 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 "פלאגין הצ'אט הרשמי של פייסבוק"
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: 2021-05-11 23:58+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: he_IL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? "
15
  "2 : 3);\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_html__\n"
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-messenger-customer-chat.php:3
20
+ msgid "The Official Facebook Chat Plugin"
21
+ msgstr "פלאגין הצ'אט הרשמי של פייסבוק"
22
+
23
+ #: facebook-messenger-customer-chat.php:4
24
+ msgid ""
25
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
26
+ "enabling customers to message you while browsing your website. To see and "
27
+ "reply to those messages, simply use the same messaging tools you use for "
28
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
29
+ "App (available on iOS and Android), or by adding your page account to "
30
+ "Messenger. It's free, easy to install and comes with a user interface your "
31
+ "customers are already familiar with."
32
+ msgstr ""
33
+ "באמצעות קליקים ספורים תוכל להוסיף לאתר שלך את הפלאגין של הצ'אט של פייסבוק מה "
34
+ "שיאפשר ללקוחות לשלוח לך הודעות במהלך הגלישה באתר שלך. כדי לראות את ההודעות "
35
+ "האלה ולהשיב להן פשוט השתמש באותם כלים לשליחה וקבלה של הודעות המשמשים אותך "
36
+ "להודעות בפייסבוק במחשב בכתובת facebook.com האפליקציה Pages Manager של "
37
+ "פייסבוק (זמינה ב-iOS וב-Android) או על ידי הוספת חשבון הדף שלך ל-Messenger "
38
+ "זה בחינם קל להתקנה ומגיע עם ממשק משתמש שהלקוחות שלך כבר מכירים.\""
39
+
40
+ #: facebook-messenger-customer-chat.php:53
41
+ #: facebook-messenger-customer-chat.php:70
42
  msgid "Settings"
43
  msgstr "הגדרות"
44
 
45
+ #: facebook-messenger-customer-chat.php:77
46
  msgid "FAQ"
47
  msgstr "שאלות נפוצות"
48
 
49
+ #: facebook-messenger-customer-chat.php:83
50
  msgid "Support"
51
  msgstr "תמיכה"
52
 
53
+ #: facebook-messenger-customer-chat.php:173
54
+ msgid "Cancel"
55
+ msgstr ""
56
+
57
+ #: facebook-messenger-customer-chat.php:183
58
+ msgid "We value your feedback."
59
+ msgstr "אנחנו מעריכים את המשוב שלך."
60
+
61
+ #: facebook-messenger-customer-chat.php:188
62
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
63
+ msgstr "ספר לנו בבקשה למה אתה משבית את הפלאגין של הצ'אט של פייסבוק."
64
+
65
+ #: facebook-messenger-customer-chat.php:191
66
+ msgid "I’m unable to get the plugin to work"
67
+ msgstr "אני לא מצליח לגרום לפלאגין לעבוד"
68
+
69
+ #: facebook-messenger-customer-chat.php:192
70
+ msgid "I no longer need a live chat feature"
71
+ msgstr ""
72
+
73
+ #: facebook-messenger-customer-chat.php:193
74
+ msgid "I’m using a different live chat plugin"
75
+ msgstr "אני משתמש בפלאגין אחר של צ'אט חי"
76
+
77
+ #: facebook-messenger-customer-chat.php:198
78
+ msgid "Name of plugin:"
79
+ msgstr "שם הפלאגין:"
80
+
81
+ #: facebook-messenger-customer-chat.php:199
82
+ msgid "This is a temporary deactivation. I’ll be back!"
83
+ msgstr "זוהי השבתה זמנית. אני אחזור!"
84
+
85
+ #: facebook-messenger-customer-chat.php:200
86
+ msgid "Other"
87
+ msgstr "אחר"
88
+
89
+ #: facebook-messenger-customer-chat.php:205
90
+ msgid "Comments:"
91
+ msgstr "הערות:"
92
+
93
+ #: facebook-messenger-customer-chat.php:208
94
+ msgid "Submit"
95
+ msgstr "שלח"
96
+
97
+ #: facebook-messenger-customer-chat.php:214
98
+ msgid "Thank you. We appreciate your feedback."
99
+ msgstr "תודה. אנחנו מעריכים את המשוב שלך."
100
+
101
+ #: options.php:22
102
+ msgid "Plugin Settings"
103
+ msgstr ""
104
+
105
+ #: options.php:23
106
+ msgid "Facebook Chat"
107
+ msgstr ""
108
+
109
+ #: options.php:106
110
  msgid "Facebook Chat Plugin Settings"
111
  msgstr "ההגדרות של פלאגין הצ'אט של פייסבוק"
112
 
113
+ #: options.php:110
114
  msgid "Getting Started?"
115
  msgstr "תחילת העבודה"
116
 
117
+ #: options.php:111
118
  msgid ""
119
  "Let people start a conversation on your website and continue in Messenger. "
120
  "It's easy to set up. Chats started on your website can be continued in the "
136
  msgstr "עריכת הפלאגין של הצ'אט"
137
 
138
  #: options.php:144
139
+ msgid "Setup status"
140
+ msgstr ""
141
+
142
+ #: options.php:145
143
  msgid ""
144
  "The plugin code has already been added into your website. You can always go "
145
  "back through the setup process to customize the plugin."
147
  "קוד הפלאגין כבר נוסף לאתר שלך. אתה תמיד יכול לחזור לתהליך ההגדרה כדי להתאים "
148
  "אישית את הפלאגין."
149
 
150
+ #: options.php:149
151
+ msgid "Advanced Configuration"
152
+ msgstr "תצורה מתקדמת"
153
+
154
+ #: options.php:159
155
+ msgid "Deploy Chat plugin on:"
156
+ msgstr "הטמעת פלאגין של צ'אט ב..."
157
+ msgstr ""
158
+ #: options.php:164
159
+ msgid "All pages"
160
+ msgstr "כל הדפים"
161
+
162
+ #: options.php:168
163
+ msgid "Custom pages"
164
+ msgstr "דפים מותאמים אישית"
165
+
166
+ #: options.php:260
167
+ msgid "Product pages"
168
+ msgstr "דפי מוצרים"
169
+
170
+ #: options.php:268
171
+ msgid "Error saving settings."
172
+ msgstr ""
173
+
174
+ #: options.php:270
175
+ msgid "Settings saved."
176
+ msgstr ""
177
+
178
+ #: options.php:272
179
+ msgid "Saving settings..."
180
+ msgstr ""
181
+
182
+ #: options.php:285
183
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
184
  msgstr ""
185
  "קוד הפלאגין כבר נוסף לאתר שלך. אתה תמיד יכול לחזור לתהליך ההגדרה כדי להתאים "
186
  "אישית את הפלאגין."
187
 
188
+ #: options.php:287
189
  msgid "Having a problem setting up or using the Chat Plugin?"
190
  msgstr "השימוש בפלאגין זה כפוף לתנאי הפלטפורמה של פייסבוק"
191
 
192
+ #: options.php:291
193
  msgid "Please consult our Troubleshooting Guide."
194
  msgstr "יש לך בעיה בהגדרה או בשימוש בפלאגין של הצ'אט?"
195
 
196
+ #: options.php:294
197
  msgid ""
198
  "If the troubleshooting steps in the guide do not solve your problem, please "
199
  "post in the plugin support forum."
200
  msgstr ""
201
  "אם שלבי פתרון הבעיות במדריך לא יפתרו את הבעיה שלך, פרסם פוסט בפורום התמיכה "
202
  "של הפלאגין."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-hi_IN.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-hi_IN.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,42 +13,113 @@ msgstr ""
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
  "अतिथि मोड में, ताकि आप पहले से कहीं अधिक ग्राहकों तक पहुंच सकें।"
@@ -60,48 +133,65 @@ 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 "आधिकारिक फेसबुक चैट प्लगइन"
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: 2021-05-11 23:58+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: hi_IN\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
15
  "X-Poedit-KeywordsList: __;_e;esc_html__\n"
 
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: facebook-messenger-customer-chat.php:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "आधिकारिक फेसबुक चैट प्लगइन"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, enabling customers to "
25
+ "message you while browsing your website. To see and reply to those messages, simply use the "
26
+ "same messaging tools you use for your Facebook messaging, on desktop at facebook.com, Facebook "
27
+ "Page Manager App (available on iOS and Android), or by adding your page account to Messenger. "
28
+ "It's free, easy to install and comes with a user interface your customers are already familiar "
29
+ "with."
30
+ msgstr ""
31
+ "कुछ क्लिकों के साथ, आप अपनी वेबसाइट पर फेसबुक चैट प्लगइन जोड़ सकते हैं, जिससे ग्राहक आपकी वेबसाइट ब्राउज़ करते "
32
+ "समय आपको संदेश दे सकेंगे। उन संदेशों को देखने और उनका जवाब देने के लिए, बस उन्हीं मैसेजिंग टूल्स का उपयोग करें, जिन्हें "
33
+ "आप अपने फेसबुक मैसेजिंग के लिए उपयोग करते हैं, फेसबुक पर डेस्कटॉप पर, फेसबुक पेज मैनेजर ऐप (आईओएस और एंड्रॉइड पर "
34
+ "उपलब्ध), या मैसेंजर पर अपने पेज अकाउंट को जोड़कर। यह मुफ़्त है, स्थापित करना आसान है और एक उपयोगकर्ता इंटरफ़ेस के "
35
+ "साथ आता है जो आपके ग्राहक पहले से परिचित हैं।"
36
+
37
+ #: facebook-messenger-customer-chat.php:53 facebook-messenger-customer-chat.php:70
38
  msgid "Settings"
39
  msgstr "सेटिंग्स"
40
 
41
+ #: facebook-messenger-customer-chat.php:77
42
  msgid "FAQ"
43
  msgstr "सामान्य प्रश्न"
44
 
45
+ #: facebook-messenger-customer-chat.php:83
46
  msgid "Support"
47
  msgstr "सहयता मंच"
48
 
49
+ #: facebook-messenger-customer-chat.php:173
50
+ msgid "Cancel"
51
+ msgstr ""
52
+
53
+ #: facebook-messenger-customer-chat.php:183
54
+ msgid "We value your feedback."
55
+ msgstr "आपका फ़ीडबैक हमारे लिए महत्वपूर्ण है."
56
+
57
+ #: facebook-messenger-customer-chat.php:188
58
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
59
+ msgstr "कृपया हमें बताएँ कि आप Facebook चैट प्लग-इन डीएक्टिवेट क्यों कर रहे हैं."
60
+
61
+ #: facebook-messenger-customer-chat.php:191
62
+ msgid "I’m unable to get the plugin to work"
63
+ msgstr "मेरे डिवाइस पर प्लग-इन काम नहीं कर रहा है"
64
+
65
+ #: facebook-messenger-customer-chat.php:192
66
+ msgid "I no longer need a live chat feature"
67
+ msgstr ""
68
+
69
+ #: facebook-messenger-customer-chat.php:193
70
+ msgid "I’m using a different live chat plugin"
71
+ msgstr "मैं किसी दूसरे लाइव चैट प्लग-इन का उपयोग कर रहा/रही हूँ"
72
+
73
+ #: facebook-messenger-customer-chat.php:198
74
+ msgid "Name of plugin:"
75
+ msgstr "प्लग-इन का नाम:"
76
+
77
+ #: facebook-messenger-customer-chat.php:199
78
+ msgid "This is a temporary deactivation. I’ll be back!"
79
+ msgstr "यह डीएक्टिवेशन कुछ समय के लिए है. मैं इसका फिर से उपयोग करूँगा/करूँगी!"
80
+
81
+ #: facebook-messenger-customer-chat.php:200
82
+ msgid "Other"
83
+ msgstr "अन्य"
84
+
85
+ #: facebook-messenger-customer-chat.php:205
86
+ msgid "Comments:"
87
+ msgstr "कमेंट:"
88
+
89
+ #: facebook-messenger-customer-chat.php:208
90
+ msgid "Submit"
91
+ msgstr "सबमिट करें"
92
+
93
+ #: facebook-messenger-customer-chat.php:214
94
+ msgid "Thank you. We appreciate your feedback."
95
+ msgstr "धन्यवाद. हम आपके फ़ीडबैक की प्रशंसा करते हैं."
96
+
97
+ #: options.php:22
98
+ msgid "Plugin Settings"
99
+ msgstr ""
100
+
101
+ #: options.php:23
102
+ msgid "Facebook Chat"
103
+ msgstr ""
104
+
105
+ #: options.php:106
106
  msgid "Facebook Chat Plugin Settings"
107
  msgstr "फेसबुक चैट प्लगइन सेटिंग्स"
108
 
109
+ #: options.php:110
110
  msgid "Getting Started?"
111
  msgstr "शुरू करना?"
112
 
113
+ #: options.php:111
114
  msgid ""
115
+ "Let people start a conversation on your website and continue in Messenger. It's easy to set "
116
+ "up. Chats started on your website can be continued in the customers' Messenger app, so you "
117
+ "never lose connections with your customers. Even those without a Facebook Messenger account "
118
+ "can chat with you in guest mode, so you can reach more customers than ever."
 
119
  msgstr ""
120
  "लोगों को बातचीत शुरू करने दें\n"
121
+ "अपनी वेबसाइट और मैसेंजर में जारी रखें। इसे स्थापित करना आसान है। आपकी वेबसाइट पर शुरू की गई चैट को ग्राहकों में "
122
+ "जारी रखा जा सकता है।\n"
123
  "मैसेंजर ऐप, ताकि आप अपने ग्राहकों के साथ कभी भी कनेक्शन न खोएं।\n"
124
  "यहां तक ​​कि बिना फेसबुक मैसेंजर अकाउंट वाले भी आपसे चैट कर सकते हैं\n"
125
  "अतिथि मोड में, ताकि आप पहले से कहीं अधिक ग्राहकों तक पहुंच सकें।"
133
  msgstr "चैट प्लगइन संपादित करें"
134
 
135
  #: options.php:144
136
+ msgid "Setup status"
137
+ msgstr ""
138
+
139
+ #: options.php:145
140
  msgid ""
141
+ "The plugin code has already been added into your website. You can always go back through the "
142
+ "setup process to customize the plugin."
143
  msgstr ""
144
+ "प्लगइन कोड आपकी वेबसाइट में पहले ही जोड़ा जा चुका है। आप प्लगइन को कस्टमाइज़ करने के लिए हमेशा सेटअप प्रक्रिया "
145
+ "के माध्यम से वापस जा सकते हैं।"
146
 
147
+ #: options.php:149
148
+ msgid "Advanced Configuration"
149
+ msgstr "एडवांस कॉन्फ़िगरेशन"
150
+
151
+ #: options.php:159
152
+ msgid "Deploy Chat plugin on:"
153
+ msgstr "यहाँ चैट प्लग-इन को काम में लें..."
154
+ msgstr ""
155
+ #: options.php:164
156
+ msgid "All pages"
157
+ msgstr "सभी पेज"
158
+
159
+ #: options.php:168
160
+ msgid "Custom pages"
161
+ msgstr "कस्टम पेज"
162
+
163
+ #: options.php:260
164
+ msgid "Product pages"
165
+ msgstr "प्रोडक्ट पेज"
166
+
167
+ #: options.php:268
168
+ msgid "Error saving settings."
169
+ msgstr ""
170
+
171
+ #: options.php:270
172
+ msgid "Settings saved."
173
+ msgstr ""
174
+
175
+ #: options.php:272
176
+ msgid "Saving settings..."
177
+ msgstr ""
178
+
179
+ #: options.php:285
180
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
181
  msgstr "इस प्लगइन का उपयोग फेसबुक के प्लेटफ़ॉर्म शर्तों के अधीन है"
182
 
183
+ #: options.php:287
184
  msgid "Having a problem setting up or using the Chat Plugin?"
185
  msgstr "चैट प्लगइन स्थापित करने या उपयोग करने में कोई समस्या है?"
186
 
187
+ #: options.php:291
188
  msgid "Please consult our Troubleshooting Guide."
189
  msgstr "कृपया हमारे समस्या निवारण गाइड से परामर्श करें।"
190
 
191
+ #: options.php:294
 
 
 
 
 
 
 
192
  msgid ""
193
+ "If the troubleshooting steps in the guide do not solve your problem, please post in the plugin "
194
+ "support forum."
 
 
 
 
 
195
  msgstr ""
196
+ "यदि मार्गदर्शिका के समस्या निवारण चरण आपकी समस्या का समाधान नहीं करते हैं, तो कृपया प्लगइन समर्थन फोरम में "
197
+ "पोस्ट करें।"
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-it_IT.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-it_IT.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,109 @@ msgstr ""
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 "
@@ -60,6 +139,10 @@ 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."
@@ -68,47 +151,58 @@ msgstr ""
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"
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: 2021-05-11 23:59+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: it_IT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Il plug-in per la chat di Facebook ufficiale"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "In pochi clic puoi aggiungere il plug-in per la chat di Facebook al tuo sito "
33
+ "web, consentendo ai clienti di inviarti un messaggio mentre esplorano il "
34
+ "sito web. Per vedere e rispondere a tali messaggi, basta usare gli stessi "
35
+ "strumenti di messaggistica che usi per i messaggi di Facebook dal computer "
36
+ "su facebook.com con l'app Gestore delle Pagine di Facebook (disponibile su "
37
+ "iOS e Android) oppure puoi aggiungere l'account della tua Pagina su "
38
+ "Messenger. È gratis, facile da installare ed è dotato di un'interfaccia "
39
+ "utente che i tuoi clienti già conoscono."
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
  msgid "Settings"
44
  msgstr "Impostazioni"
45
 
46
+ #: facebook-messenger-customer-chat.php:77
47
  msgid "FAQ"
48
  msgstr "FAQ"
49
 
50
+ #: facebook-messenger-customer-chat.php:83
51
  msgid "Support"
52
  msgstr "Assistenza"
53
 
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "Il tuo feedback è importante."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Indica perché vuoi disattivare il plug-in Facebook Chat."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "Non riesco a far funzionare il plug-in"
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Sto usando un altro plug-in di chat in diretta"
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Nome del plug-in:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "È una disattivazione temporanea. Tornerò presto!"
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Altro"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Commenti:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Invia"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Grazie! Apprezziamo il tuo feedback."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
  msgid "Facebook Chat Plugin Settings"
112
  msgstr "Impostazioni del plug-in per la chat di Facebook"
113
 
114
+ #: options.php:110
115
  msgid "Getting Started?"
116
  msgstr "Primi passi"
117
 
118
+ #: options.php:111
119
  msgid ""
120
  "Let people start a conversation on your website and continue in Messenger. "
121
  "It's easy to set up. Chats started on your website can be continued in the "
139
  msgstr "Modifica il plug-in per la chat"
140
 
141
  #: options.php:144
142
+ msgid "Setup status"
143
+ msgstr ""
144
+
145
+ #: options.php:145
146
  msgid ""
147
  "The plugin code has already been added into your website. You can always go "
148
  "back through the setup process to customize the plugin."
151
  "personalizzare il plug-in, puoi sempre tornare alla procedura di "
152
  "configurazione."
153
 
154
+ #: options.php:149
155
+ msgid "Advanced Configuration"
156
+ msgstr "Configurazione avanzata"
157
+
158
+ #: options.php:159
159
+ msgid "Deploy Chat plugin on:"
160
+ msgstr "Implementa plug-in Chat su..."
161
+ msgstr ""
162
+ #: options.php:164
163
+ msgid "All pages"
164
+ msgstr "Tutte le Pagine"
165
+
166
+ #: options.php:168
167
+ msgid "Custom pages"
168
+ msgstr "Pagine personalizzate"
169
+
170
+ #: options.php:260
171
+ msgid "Product pages"
172
+ msgstr "Pagine prodotto"
173
+
174
+ #: options.php:268
175
+ msgid "Error saving settings."
176
+ msgstr ""
177
+
178
+ #: options.php:270
179
+ msgid "Settings saved."
180
+ msgstr ""
181
+
182
+ #: options.php:272
183
+ msgid "Saving settings..."
184
+ msgstr ""
185
+
186
+ #: options.php:285
187
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
188
  msgstr ""
189
  "L'utilizzo di questo plug-in è soggetto alle Condizioni della Piattaforma "
190
  "Facebook"
191
 
192
+ #: options.php:287
193
  msgid "Having a problem setting up or using the Chat Plugin?"
194
  msgstr ""
195
  "Stai riscontrando un problema con la configurazione o l'utilizzo del plug-in "
196
  "per la chat?"
197
 
198
+ #: options.php:291
199
  msgid "Please consult our Troubleshooting Guide."
200
  msgstr "Consulta la nostra guida alla risoluzione dei problemi."
201
 
202
+ #: options.php:294
203
  msgid ""
204
  "If the troubleshooting steps in the guide do not solve your problem, please "
205
  "post in the plugin support forum."
206
  msgstr ""
207
  "Se i passaggi per la risoluzione dei problemi indicati nella guida non "
208
  "risolvono il problema, pubblica un post nel forum di supporto per il plug-in."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-ja.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-ja.po ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2021-05-11 16:59+0800\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Facebook\n"
8
+ "Language: ja\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=1; plural=0;\n"
15
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Facebookチャット公式プラグイン"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "数クリックの簡単な操作で ウェブサイトにFacebookチャットプラグインを追加すれ"
33
+ "ば、 顧客はウェブサイトの閲覧中にあなたにメッセージを送信できるようになりま"
34
+ "す。メッセージを確認し、返信するには、 Facebookのメッセージで使用しているのと"
35
+ "同じメッセージツールを デスクトップで、facebook.comの Facebookページマネー"
36
+ "ジャアプリ(iOSおよびAndroidで利用可能)で使うか、 Messengerにページアカウント"
37
+ "を追加してください。無料で利用できます インストールは簡単で、顧客がすでに使い"
38
+ "慣れているユーザーインターフェイスを利用できます。"
39
+
40
+ #: facebook-messenger-customer-chat.php:53
41
+ #: facebook-messenger-customer-chat.php:70
42
+ msgid "Settings"
43
+ msgstr "設定"
44
+
45
+ #: facebook-messenger-customer-chat.php:77
46
+ msgid "FAQ"
47
+ msgstr "よくある質問"
48
+
49
+ #: facebook-messenger-customer-chat.php:83
50
+ msgid "Support"
51
+ msgstr "サポート"
52
+
53
+ #: facebook-messenger-customer-chat.php:173
54
+ msgid "Cancel"
55
+ msgstr ""
56
+
57
+ #: facebook-messenger-customer-chat.php:183
58
+ msgid "We value your feedback."
59
+ msgstr "皆さまからのご意見は非常に貴重です。"
60
+
61
+ #: facebook-messenger-customer-chat.php:188
62
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
63
+ msgstr "Facebookチャットプラグインを無効にする理由をお聞かせください。"
64
+
65
+ #: facebook-messenger-customer-chat.php:191
66
+ msgid "I’m unable to get the plugin to work"
67
+ msgstr "プラグインがうまく動作しない"
68
+
69
+ #: facebook-messenger-customer-chat.php:192
70
+ msgid "I no longer need a live chat feature"
71
+ msgstr ""
72
+
73
+ #: facebook-messenger-customer-chat.php:193
74
+ msgid "I’m using a different live chat plugin"
75
+ msgstr "別のライブチャットプラグインを使用している"
76
+
77
+ #: facebook-messenger-customer-chat.php:198
78
+ msgid "Name of plugin:"
79
+ msgstr "プラグインの名称:"
80
+
81
+ #: facebook-messenger-customer-chat.php:199
82
+ msgid "This is a temporary deactivation. I’ll be back!"
83
+ msgstr "一時的に無効化するが、使用を再開する"
84
+
85
+ #: facebook-messenger-customer-chat.php:200
86
+ msgid "Other"
87
+ msgstr "その他"
88
+
89
+ #: facebook-messenger-customer-chat.php:205
90
+ msgid "Comments:"
91
+ msgstr "コメント:"
92
+
93
+ #: facebook-messenger-customer-chat.php:208
94
+ msgid "Submit"
95
+ msgstr "送信"
96
+
97
+ #: facebook-messenger-customer-chat.php:214
98
+ msgid "Thank you. We appreciate your feedback."
99
+ msgstr "ありがとうございました。ご意見をお寄せいただき感謝いたします。"
100
+
101
+ #: options.php:22
102
+ #, fuzzy
103
+ #| msgid "Settings"
104
+ msgid "Plugin Settings"
105
+ msgstr "設定"
106
+
107
+ #: options.php:23
108
+ msgid "Facebook Chat"
109
+ msgstr "Facebookチャット"
110
+
111
+ #: options.php:106
112
+ msgid "Facebook Chat Plugin Settings"
113
+ msgstr "Facebookチャットプラグインの設定"
114
+
115
+ #: options.php:110
116
+ msgid "Getting Started?"
117
+ msgstr "スタートガイド"
118
+
119
+ #: options.php:111
120
+ msgid ""
121
+ "Let people start a conversation on your website and continue in Messenger. "
122
+ "It's easy to set up. Chats started on your website can be continued in the "
123
+ "customers' Messenger app, so you never lose connections with your customers. "
124
+ "Even those without a Facebook Messenger account can chat with you in guest "
125
+ "mode, so you can reach more customers than ever."
126
+ msgstr ""
127
+ "ウェブサイトでスレッドを開始し、Messengerでスレッドを継続できます。設定は簡単"
128
+ "です。ウェブサイトで開始したチャットを顧客のMessengerアプリで継続できるため、"
129
+ "顧客とのつながりが途絶えません。Facebook Messengerアカウントを持っていない人"
130
+ "でもゲストモードでチャットできるため、これまで以上に多くの顧客にリーチできま"
131
+ "す。"
132
+
133
+ #: options.php:128
134
+ msgid "Setup Chat Plugin"
135
+ msgstr "チャットプラグインの設定"
136
+
137
+ #: options.php:130
138
+ msgid "Edit Chat Plugin"
139
+ msgstr "チャットプラグインの編集"
140
+
141
+ #: options.php:144
142
+ msgid "Setup status"
143
+ msgstr ""
144
+
145
+ #: options.php:145
146
+ msgid ""
147
+ "The plugin code has already been added into your website. You can always go "
148
+ "back through the setup process to customize the plugin."
149
+ msgstr ""
150
+ "プラグインコードはすでにウェブサイトに追加されています。いつでも設定プロセス"
151
+ "に戻り、プラグインをカスタマイズできます。"
152
+
153
+ #: options.php:149
154
+ msgid "Advanced Configuration"
155
+ msgstr "詳細設定"
156
+
157
+ #: options.php:159
158
+ msgid "Deploy Chat plugin on:"
159
+ msgstr "次の場所にチャットプラグインを実装する…"
160
+
161
+ #: options.php:164
162
+ msgid "All pages"
163
+ msgstr "すべてのページ"
164
+
165
+ #: options.php:168
166
+ msgid "Custom pages"
167
+ msgstr "カスタムページ"
168
+
169
+ #: options.php:260
170
+ msgid "Product pages"
171
+ msgstr "商品ページ"
172
+
173
+ #: options.php:268
174
+ msgid "Error saving settings."
175
+ msgstr ""
176
+
177
+ #: options.php:270
178
+ msgid "Settings saved."
179
+ msgstr ""
180
+
181
+ #: options.php:272
182
+ msgid "Saving settings..."
183
+ msgstr ""
184
+
185
+ #: options.php:285
186
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
187
+ msgstr "プラグインの利用には、Facebookのプラットフォーム規約が適用されます"
188
+
189
+ #: options.php:287
190
+ msgid "Having a problem setting up or using the Chat Plugin?"
191
+ msgstr "チャットプラグインの設定または利用に問題がある場合"
192
+
193
+ #: options.php:291
194
+ msgid "Please consult our Troubleshooting Guide."
195
+ msgstr "トラブルシューティングガイドをご覧ください。"
196
+
197
+ #: options.php:294
198
+ msgid ""
199
+ "If the troubleshooting steps in the guide do not solve your problem, please "
200
+ "post in the plugin support forum."
201
+ msgstr ""
202
+ "ガイド記載のトラブルシューティングの手順を実行しても問題が解決しない場合は、"
203
+ "プラグインのサポートフォーラムに投稿してください。"
languages/facebook-messenger-customer-chat-ko_KR.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-ko_KR.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,108 @@ msgstr ""
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 "
@@ -59,6 +137,10 @@ 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."
@@ -66,42 +148,54 @@ 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 채팅 플러그인"
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: 2021-05-11 23:59+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: ko_KR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __;_e;esc_html__\n"
 
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: facebook-messenger-customer-chat.php:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "공식 Facebook 채팅 플러그인"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "클릭 몇 번으로 웹사이트에 Facebook 채팅 플러그인을 추가하면 고객이 웹사이트"
33
+ "를 둘러보면서 비즈니스에 메시지를 보낼 수 있습니다. 고객 메시지를 확인하고 답"
34
+ "장을 보내려면 데스크톱의 경우 facebook.com에서 Facebook 메시지 전송에 사용하"
35
+ "는 동일한 도구를 사용하고 모바일의 경우 Facebook 페이지 관리자 앱(iOS 및 "
36
+ "Android 다운로드 가능)을 이용하거나 Messenger에 페이지 계정을 추가하면 됩니"
37
+ "다. 무료로 사용 가능하며 간편하게 설치할 수 있습니다. 고객에게 친숙한 사용자 "
38
+ "인터페이스로 친근하게 다가가 보세요.\""
39
+
40
+ #: facebook-messenger-customer-chat.php:53
41
+ #: facebook-messenger-customer-chat.php:70
42
  msgid "Settings"
43
  msgstr "설정"
44
 
45
+ #: facebook-messenger-customer-chat.php:77
46
  msgid "FAQ"
47
  msgstr "FAQ"
48
 
49
+ #: facebook-messenger-customer-chat.php:83
50
  msgid "Support"
51
  msgstr "지원"
52
 
53
+ #: facebook-messenger-customer-chat.php:173
54
+ msgid "Cancel"
55
+ msgstr ""
56
+
57
+ #: facebook-messenger-customer-chat.php:183
58
+ msgid "We value your feedback."
59
+ msgstr "Facebook은 회원님의 의견을 소중하게 생각합니다."
60
+
61
+ #: facebook-messenger-customer-chat.php:188
62
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
63
+ msgstr "Facebook 채팅 플로그인을 비활성화하려는 이유를 알려주세요."
64
+
65
+ #: facebook-messenger-customer-chat.php:191
66
+ msgid "I’m unable to get the plugin to work"
67
+ msgstr "플러그인을 실행할 수 없음"
68
+
69
+ #: facebook-messenger-customer-chat.php:192
70
+ msgid "I no longer need a live chat feature"
71
+ msgstr ""
72
+
73
+ #: facebook-messenger-customer-chat.php:193
74
+ msgid "I’m using a different live chat plugin"
75
+ msgstr "다른 실시간 채팅 플러그인을 사용 중임"
76
+
77
+ #: facebook-messenger-customer-chat.php:198
78
+ msgid "Name of plugin:"
79
+ msgstr "플러그인 이름:"
80
+
81
+ #: facebook-messenger-customer-chat.php:199
82
+ msgid "This is a temporary deactivation. I’ll be back!"
83
+ msgstr "잠시 동안 비활성화하고 다시 사용할 예정임"
84
+
85
+ #: facebook-messenger-customer-chat.php:200
86
+ msgid "Other"
87
+ msgstr "기타"
88
+
89
+ #: facebook-messenger-customer-chat.php:205
90
+ msgid "Comments:"
91
+ msgstr "댓글:"
92
+
93
+ #: facebook-messenger-customer-chat.php:208
94
+ msgid "Submit"
95
+ msgstr "제출"
96
+
97
+ #: facebook-messenger-customer-chat.php:214
98
+ msgid "Thank you. We appreciate your feedback."
99
+ msgstr "의견을 제공해주셔서 감사합니다."
100
+
101
+ #: options.php:22
102
+ msgid "Plugin Settings"
103
+ msgstr ""
104
+
105
+ #: options.php:23
106
+ msgid "Facebook Chat"
107
+ msgstr ""
108
+
109
+ #: options.php:106
110
  msgid "Facebook Chat Plugin Settings"
111
  msgstr "Facebook 채팅 플러그인 설정"
112
 
113
+ #: options.php:110
114
  msgid "Getting Started?"
115
  msgstr "시작하기"
116
 
117
+ #: options.php:111
118
  msgid ""
119
  "Let people start a conversation on your website and continue in Messenger. "
120
  "It's easy to set up. Chats started on your website can be continued in the "
137
  msgstr "채팅 플러그인 수정"
138
 
139
  #: options.php:144
140
+ msgid "Setup status"
141
+ msgstr ""
142
+
143
+ #: options.php:145
144
  msgid ""
145
  "The plugin code has already been added into your website. You can always go "
146
  "back through the setup process to customize the plugin."
148
  "플러그인 코드가 웹사이트에 이미 추가되었습니다. 언제든지 설정 절차로 돌아가 "
149
  "플러그인을 맞춤 설정할 수 있습니다."
150
 
151
+ #: options.php:149
152
+ msgid "Advanced Configuration"
153
+ msgstr "고급 구성"
154
+
155
+ #: options.php:159
156
+ msgid "Deploy Chat plugin on:"
157
+ msgstr "다음 위치에 채팅 플러그인 배포..."
158
+ msgstr ""
159
+ #: options.php:164
160
+ msgid "All pages"
161
+ msgstr "전체 페이지"
162
+
163
+ #: options.php:168
164
+ msgid "Custom pages"
165
+ msgstr "맞춤 페이지"
166
+
167
+ #: options.php:260
168
+ msgid "Product pages"
169
+ msgstr "제품 페이지"
170
+
171
+ #: options.php:268
172
+ msgid "Error saving settings."
173
+ msgstr ""
174
+
175
+ #: options.php:270
176
+ msgid "Settings saved."
177
+ msgstr ""
178
+
179
+ #: options.php:272
180
+ msgid "Saving settings..."
181
+ msgstr ""
182
+
183
+ #: options.php:285
184
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
185
  msgstr "이 플러그인의 사용에는 Facebook의 플랫폼 약관이 적용됩니다"
186
 
187
+ #: options.php:287
188
  msgid "Having a problem setting up or using the Chat Plugin?"
189
  msgstr "채팅 플러그인 설정 또는 사용에 문제가 있으신가요?"
190
 
191
+ #: options.php:291
192
  msgid "Please consult our Troubleshooting Guide."
193
  msgstr "문제 해결 가이드를 참조하세요."
194
 
195
+ #: options.php:294
196
  msgid ""
197
  "If the troubleshooting steps in the guide do not solve your problem, please "
198
  "post in the plugin support forum."
199
  msgstr ""
200
  "문제 해결 가이드에 제시된 방법으로도 문제가 해결되지 않는 경우 플러그인 지원 "
201
  "포럼에 문의글을 게시하세요."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-nb_NO.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-nb_NO.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,109 @@ msgstr ""
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 "
@@ -59,6 +138,10 @@ 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."
@@ -67,46 +150,57 @@ msgstr ""
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"
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: 2021-05-12 00:00+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: nb_NO\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Facebooks offisielle programtillegg for chat"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Med et par klikk kan du legge programtillegget for Facebook-chat til "
33
+ "nettstedet ditt, og gi kundene muligheten til å sende meldinger mens de "
34
+ "besøker nettstedet ditt. For å se og svare på meldingene, bruker du ganske "
35
+ "enkelt de samme meldingstjenestene som når du sender Facebook-meldinger på "
36
+ "facebook.com Facebooks Sideadministrasjon-app (tilgjengelig for iOS og "
37
+ "Android) eller ved å legge sidekontoen din til Messenger. Det er gratis, "
38
+ "enkelt å installere, og har et brukergrensesnitt kundene dine allerede er "
39
+ "vant til å bruke."
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
  msgid "Settings"
44
  msgstr "Innstillinger"
45
 
46
+ #: facebook-messenger-customer-chat.php:77
47
  msgid "FAQ"
48
  msgstr "Vanlige spørsmål"
49
 
50
+ #: facebook-messenger-customer-chat.php:83
51
  msgid "Support"
52
  msgstr "Støtte"
53
 
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "Vi setter pris på tilbakemeldingen din."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Fortell oss hvorfor du deaktiverer Facebooks programtillegg for chat."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "Jeg klarer ikke å få programtillegget til å fungere"
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Jeg bruker et annet programtillegg for direktesending"
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Navn på programtillegg:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "Dette er en midlertidig deaktivering. Jeg er snart tilbake!"
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Annet"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Kommentarer:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Send inn"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Takk. Vi setter pris på tilbakemeldingen din."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
  msgid "Facebook Chat Plugin Settings"
112
  msgstr "Innstillinger for programtillegg for Facebook-chat"
113
 
114
+ #: options.php:110
115
  msgid "Getting Started?"
116
  msgstr "Komme i gang?"
117
 
118
+ #: options.php:111
119
  msgid ""
120
  "Let people start a conversation on your website and continue in Messenger. "
121
  "It's easy to set up. Chats started on your website can be continued in the "
138
  msgstr "Redigere programtillegg for chat"
139
 
140
  #: options.php:144
141
+ msgid "Setup status"
142
+ msgstr ""
143
+
144
+ #: options.php:145
145
  msgid ""
146
  "The plugin code has already been added into your website. You can always go "
147
  "back through the setup process to customize the plugin."
150
  "kan alltid gå tilbake i konfigureringsprosessen for å tilpasse "
151
  "programtillegget."
152
 
153
+ #: options.php:149
154
+ msgid "Advanced Configuration"
155
+ msgstr "Avansert konfigurering"
156
+
157
+ #: options.php:159
158
+ msgid "Deploy Chat plugin on:"
159
+ msgstr "Bruk programtillegg for chat på ..."
160
+ msgstr ""
161
+ #: options.php:164
162
+ msgid "All pages"
163
+ msgstr "Alle sider"
164
+
165
+ #: options.php:168
166
+ msgid "Custom pages"
167
+ msgstr "Egendefinerte sider"
168
+
169
+ #: options.php:260
170
+ msgid "Product pages"
171
+ msgstr "Produktsider"
172
+
173
+ #: options.php:268
174
+ msgid "Error saving settings."
175
+ msgstr ""
176
+
177
+ #: options.php:270
178
+ msgid "Settings saved."
179
+ msgstr ""
180
+
181
+ #: options.php:272
182
+ msgid "Saving settings..."
183
+ msgstr ""
184
+
185
+ #: options.php:285
186
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
187
  msgstr ""
188
  "Bruk av dette programtillegget er underlagt retningslinjene for Facebook-"
189
  "plattformen"
190
 
191
+ #: options.php:287
192
  msgid "Having a problem setting up or using the Chat Plugin?"
193
  msgstr ""
194
  "Har du problemer med konfigurering eller bruk av programtillegget for chat?"
195
 
196
+ #: options.php:291
197
  msgid "Please consult our Troubleshooting Guide."
198
  msgstr "Ta en titt på feilsøkingsveiledningen vår."
199
 
200
+ #: options.php:294
201
  msgid ""
202
  "If the troubleshooting steps in the guide do not solve your problem, please "
203
  "post in the plugin support forum."
204
  msgstr ""
205
  "Hvis trinnene i feilsøkingsveiledningen ikke løser problemet ditt, kan du "
206
  "publisere et innlegg i støtteforumet for programtillegg."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-nl_NL.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-nl_NL.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,109 @@ msgstr ""
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 "
@@ -60,6 +139,10 @@ 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."
@@ -67,46 +150,57 @@ 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\""
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: 2021-05-12 00:00+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: nl_NL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "De officiële plug-in voor Facebook Chat\""
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "In enkele klikken kun je de plug-in voor Facebook Chat toevoegen aan je "
33
+ "website zodat klanten chatberichten naar je kunnen sturen terwijl ze door je "
34
+ "website bladeren. Als je deze chatberichten wilt bekijken en beantwoorden, "
35
+ "gebruik je dezelfde chatberichtentools die je gebruikt voor je Facebook-"
36
+ "chatberichten op een computer op facebook.com, gebruik je de Facebook-app "
37
+ "Paginabeheer (beschikbaar op iOS en Android) of voeg je je pagina-account "
38
+ "toe aan Messenger. De plug-in is gratis, eenvoudig te installeren en bevat "
39
+ "een gebruikersinterface waarmee je klanten al bekend zijn."
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
  msgid "Settings"
44
  msgstr "Instellingen"
45
 
46
+ #: facebook-messenger-customer-chat.php:77
47
  msgid "FAQ"
48
  msgstr "Veelgestelde vragen"
49
 
50
+ #: facebook-messenger-customer-chat.php:83
51
  msgid "Support"
52
  msgstr "Ondersteuning"
53
 
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "We waarderen je feedback."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Laat ons weten waarom je de plug-in voor Facebook Chat deactiveert."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "De plug-in werkt niet"
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Ik gebruik een andere plug-in voor livechat"
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Naam van de plug-in:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "Dit is een tijdelijke deactivering. Ik ben van plan de plug-in weer te activeren."
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Overig"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Opmerkingen:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Verzenden"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Bedankt. We waarderen je feedback."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
  msgid "Facebook Chat Plugin Settings"
112
  msgstr "Instellingen de plug-in voor Facebook Chat"
113
 
114
+ #: options.php:110
115
  msgid "Getting Started?"
116
  msgstr "Aan de slag?"
117
 
118
+ #: options.php:111
119
  msgid ""
120
  "Let people start a conversation on your website and continue in Messenger. "
121
  "It's easy to set up. Chats started on your website can be continued in the "
139
  msgstr "Chatplug-in bewerken"
140
 
141
  #: options.php:144
142
+ msgid "Setup status"
143
+ msgstr ""
144
+
145
+ #: options.php:145
146
  msgid ""
147
  "The plugin code has already been added into your website. You can always go "
148
  "back through the setup process to customize the plugin."
150
  "De plug-incode is al toegevoegd aan je website. Je kunt altijd terugkeren in "
151
  "het configuratieproces om de plug-in aan te passen."
152
 
153
+ #: options.php:149
154
+ msgid "Advanced Configuration"
155
+ msgstr "Geavanceerde configuratie"
156
+
157
+ #: options.php:159
158
+ msgid "Deploy Chat plugin on:"
159
+ msgstr "Chatplug-in implementeren op..."
160
+ msgstr ""
161
+ #: options.php:164
162
+ msgid "All pages"
163
+ msgstr "Alle pagina's"
164
+
165
+ #: options.php:168
166
+ msgid "Custom pages"
167
+ msgstr "Aangepaste pagina's"
168
+
169
+ #: options.php:260
170
+ msgid "Product pages"
171
+ msgstr "Productpagina's"
172
+
173
+ #: options.php:268
174
+ msgid "Error saving settings."
175
+ msgstr ""
176
+
177
+ #: options.php:270
178
+ msgid "Settings saved."
179
+ msgstr ""
180
+
181
+ #: options.php:272
182
+ msgid "Saving settings..."
183
+ msgstr ""
184
+
185
+ #: options.php:285
186
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
187
  msgstr ""
188
  "Het gebruik van deze plug-in is onderhevig aan de platformvoorwaarden van "
189
  "Facebook "
190
 
191
+ #: options.php:287
192
  msgid "Having a problem setting up or using the Chat Plugin?"
193
  msgstr ""
194
  "Ondervind je problemen met het instellen of gebruiken van de chatplug-in?"
195
 
196
+ #: options.php:291
197
  msgid "Please consult our Troubleshooting Guide."
198
  msgstr "Raadpleeg onze gids voor het oplossen van problemen."
199
 
200
+ #: options.php:294
201
  msgid ""
202
  "If the troubleshooting steps in the guide do not solve your problem, please "
203
  "post in the plugin support forum."
204
  msgstr ""
205
  "Als de stappen in de gids om het probleem op te lossen niet werken, plaats "
206
  "dan een bericht in het forum voor plug-inondersteuning."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-pl_PL.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-pl_PL.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -12,32 +14,110 @@ msgstr ""
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 "
@@ -61,6 +141,10 @@ 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."
@@ -68,44 +152,54 @@ 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"
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: 2021-05-12 00:01+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: pl_PL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
15
  "|| n%100>14) ? 1 : 2);\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_html__\n"
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-messenger-customer-chat.php:3
20
+ msgid "The Official Facebook Chat Plugin"
21
+ msgstr "Oficjalna wtyczka Czatu Facebooka"
22
+
23
+ #: facebook-messenger-customer-chat.php:4
24
+ msgid ""
25
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
26
+ "enabling customers to message you while browsing your website. To see and "
27
+ "reply to those messages, simply use the same messaging tools you use for "
28
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
29
+ "App (available on iOS and Android), or by adding your page account to "
30
+ "Messenger. It's free, easy to install and comes with a user interface your "
31
+ "customers are already familiar with."
32
+ msgstr ""
33
+ "Wystarczy kilka kliknięć, aby dodać do witryny wtyczkę Czat Facebooka, która "
34
+ "umożliwi klientom wysyłanie do Ciebie wiadomości podczas przeglądania "
35
+ "witryny. Aby przeglądać te wiadomości i odpowiadać na nie, skorzystaj z tych "
36
+ "samych narzędzi do wysyłania wiadomości, których używasz na potrzeby "
37
+ "wiadomości na Facebooku na komputerze, dostępnych pod adresem facebook.com, "
38
+ "lub w aplikacji Menedżer stron na Facebooku (dostępnej na urządzenia z "
39
+ "systemem iOS lub Android), lub dodaj konto swojej strony do Messengera. "
40
+ "Opcja jest bezpłatna, łatwa do zainstalowania i ma interfejs użytkownika, "
41
+ "który dobrze znają klienci."
42
+
43
+ #: facebook-messenger-customer-chat.php:53
44
+ #: facebook-messenger-customer-chat.php:70
45
  msgid "Settings"
46
  msgstr "Ustawienia"
47
 
48
+ #: facebook-messenger-customer-chat.php:77
49
  msgid "FAQ"
50
  msgstr "NAJCZĘŚCIEJ ZADAWANE PYTANIA"
51
 
52
+ #: facebook-messenger-customer-chat.php:83
53
  msgid "Support"
54
  msgstr "Pomoc"
55
 
56
+ #: facebook-messenger-customer-chat.php:173
57
+ msgid "Cancel"
58
+ msgstr ""
59
+
60
+ #: facebook-messenger-customer-chat.php:183
61
+ msgid "We value your feedback."
62
+ msgstr "Cenimy Twoją opinię."
63
+
64
+ #: facebook-messenger-customer-chat.php:188
65
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
66
+ msgstr "Daj nam znać, dlaczego wyłączasz wtyczkę czatu na Facebooku."
67
+
68
+ #: facebook-messenger-customer-chat.php:191
69
+ msgid "I’m unable to get the plugin to work"
70
+ msgstr "Nie jestem w stanie uruchomić wtyczki"
71
+
72
+ #: facebook-messenger-customer-chat.php:192
73
+ msgid "I no longer need a live chat feature"
74
+ msgstr ""
75
+
76
+ #: facebook-messenger-customer-chat.php:193
77
+ msgid "I’m using a different live chat plugin"
78
+ msgstr "Używam innej wtyczki do czatu na żywo"
79
+
80
+ #: facebook-messenger-customer-chat.php:198
81
+ msgid "Name of plugin:"
82
+ msgstr "Nazwa wtyczki:"
83
+
84
+ #: facebook-messenger-customer-chat.php:199
85
+ msgid "This is a temporary deactivation. I’ll be back!"
86
+ msgstr "To tymczasowa dezaktywacja. Wrócę!"
87
+
88
+ #: facebook-messenger-customer-chat.php:200
89
+ msgid "Other"
90
+ msgstr "Inny powód"
91
+
92
+ #: facebook-messenger-customer-chat.php:205
93
+ msgid "Comments:"
94
+ msgstr "Komentarze:"
95
+
96
+ #: facebook-messenger-customer-chat.php:208
97
+ msgid "Submit"
98
+ msgstr "Prześlij"
99
+
100
+ #: facebook-messenger-customer-chat.php:214
101
+ msgid "Thank you. We appreciate your feedback."
102
+ msgstr "Dziękujemy. Dziękujemy za przesłanie opinii."
103
+
104
+ #: options.php:22
105
+ msgid "Plugin Settings"
106
+ msgstr ""
107
+
108
+ #: options.php:23
109
+ msgid "Facebook Chat"
110
+ msgstr ""
111
+
112
+ #: options.php:106
113
  msgid "Facebook Chat Plugin Settings"
114
  msgstr "Ustawienia wtyczki Czatu Facebooka"
115
 
116
+ #: options.php:110
117
  msgid "Getting Started?"
118
  msgstr "Pierwsze kroki"
119
 
120
+ #: options.php:111
121
  msgid ""
122
  "Let people start a conversation on your website and continue in Messenger. "
123
  "It's easy to set up. Chats started on your website can be continued in the "
141
  msgstr "Edytowanie wtyczki do czatu"
142
 
143
  #: options.php:144
144
+ msgid "Setup status"
145
+ msgstr ""
146
+
147
+ #: options.php:145
148
  msgid ""
149
  "The plugin code has already been added into your website. You can always go "
150
  "back through the setup process to customize the plugin."
152
  "Kod wtyczki został już dodany do Twojej witryny internetowej. Zawsze możesz "
153
  "wrócić do procesu konfiguracji, aby dostosować wtyczkę."
154
 
155
+ #: options.php:149
156
+ msgid "Advanced Configuration"
157
+ msgstr "Konfiguracja zaawansowana"
158
+
159
+ #: options.php:159
160
+ msgid "Deploy Chat plugin on:"
161
+ msgstr "Wdrożenie wtyczki czatu..."
162
+ msgstr ""
163
+ #: options.php:164
164
+ msgid "All pages"
165
+ msgstr "Wszystkie strony"
166
+
167
+ #: options.php:168
168
+ msgid "Custom pages"
169
+ msgstr "Niestandardowe strony"
170
+
171
+ #: options.php:260
172
+ msgid "Product pages"
173
+ msgstr "Strony produktów"
174
+
175
+ #: options.php:268
176
+ msgid "Error saving settings."
177
+ msgstr ""
178
+
179
+ #: options.php:270
180
+ msgid "Settings saved."
181
+ msgstr ""
182
+
183
+ #: options.php:272
184
+ msgid "Saving settings..."
185
+ msgstr ""
186
+
187
+ #: options.php:285
188
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
189
  msgstr "Korzystanie z tej wtyczki podlega Regulaminowi platformy Facebook"
190
 
191
+ #: options.php:287
192
  msgid "Having a problem setting up or using the Chat Plugin?"
193
  msgstr "Masz problem z konfigurowaniem wtyczki czatu lub korzystaniem z niej?"
194
 
195
+ #: options.php:291
196
  msgid "Please consult our Troubleshooting Guide."
197
  msgstr "Skorzystaj z przewodnika po rozwiązywaniu problemów."
198
 
199
+ #: options.php:294
200
  msgid ""
201
  "If the troubleshooting steps in the guide do not solve your problem, please "
202
  "post in the plugin support forum."
203
  msgstr ""
204
  "Jeżeli propozycje rozwiązania problemu opisane w przewodniku nie rozwiązują "
205
  "Twojego problemu,opisz go na forum pomocy dotyczącej wtyczki."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-pt_BR.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-pt_BR.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,109 @@ msgstr ""
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 "
@@ -60,6 +139,10 @@ 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."
@@ -67,43 +150,54 @@ 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"
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: 2021-05-12 00:01+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "O plugin de bate-papo oficial do Facebook"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Com alguns cliques, você pode adicionar o plugin de bate-papo do Facebook ao "
33
+ "site, o que permite que os clientes enviem mensagens para você enquanto "
34
+ "navegam nele. Para ver essas mensagens e responder a elas, basta usar as "
35
+ "mesmas ferramentas de mensagem usadas para o Facebook no desktop em facebook."
36
+ "com ou no Aplicativo Gerenciador de Páginas do Facebook (disponível no iOS "
37
+ "ou no Android) ou adicionar a conta da sua Página ao Messenger. O plugin é "
38
+ "gratuito e fácil de instalar. Além disso, ele tem uma interface do usuário "
39
+ "com a qual os clientes já estão acostumados."
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
  msgid "Settings"
44
  msgstr "Configurações"
45
 
46
+ #: facebook-messenger-customer-chat.php:77
47
  msgid "FAQ"
48
  msgstr "Perguntas frequentes"
49
 
50
+ #: facebook-messenger-customer-chat.php:83
51
  msgid "Support"
52
  msgstr "Suporte"
53
 
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "Seu feedback é muito importante para nós."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Informe-nos por que você está desativando o plugin de bate-papo do Facebook."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "O plugin não está funcionando"
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Estou usando um plugin de bate-papo ao vivo diferente"
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Nome do plugin:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "Esta é uma desativação temporária. Voltarei em breve!"
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Outros"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Comentários:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Enviar"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Obrigado. Agradecemos seu feedback."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
  msgid "Facebook Chat Plugin Settings"
112
  msgstr "Configurações do plugin de bate-papo do Facebook"
113
 
114
+ #: options.php:110
115
  msgid "Getting Started?"
116
  msgstr "Dando os primeiros passos?"
117
 
118
+ #: options.php:111
119
  msgid ""
120
  "Let people start a conversation on your website and continue in Messenger. "
121
  "It's easy to set up. Chats started on your website can be continued in the "
139
  msgstr "Editar plugin de bate-papo"
140
 
141
  #: options.php:144
142
+ msgid "Setup status"
143
+ msgstr ""
144
+
145
+ #: options.php:145
146
  msgid ""
147
  "The plugin code has already been added into your website. You can always go "
148
  "back through the setup process to customize the plugin."
150
  "O código do plugin já foi adicionado ao site. É possível retornar ao "
151
  "processo de configuração para personalizar o plugin."
152
 
153
+ #: options.php:149
154
+ msgid "Advanced Configuration"
155
+ msgstr "Configuração avançada"
156
+
157
+ #: options.php:159
158
+ msgid "Deploy Chat plugin on:"
159
+ msgstr "Implementar o plugin de bate-papo em..."
160
+ msgstr ""
161
+ #: options.php:164
162
+ msgid "All pages"
163
+ msgstr "Todas as páginas"
164
+
165
+ #: options.php:168
166
+ msgid "Custom pages"
167
+ msgstr "Páginas personalizadas"
168
+
169
+ #: options.php:260
170
+ msgid "Product pages"
171
+ msgstr "Páginas do produto"
172
+
173
+ #: options.php:268
174
+ msgid "Error saving settings."
175
+ msgstr ""
176
+
177
+ #: options.php:270
178
+ msgid "Settings saved."
179
+ msgstr ""
180
+
181
+ #: options.php:272
182
+ msgid "Saving settings..."
183
+ msgstr ""
184
+
185
+ #: options.php:285
186
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
187
  msgstr "O uso do plugin está sujeito aos Termos da Plataforma do Facebook"
188
 
189
+ #: options.php:287
190
  msgid "Having a problem setting up or using the Chat Plugin?"
191
  msgstr "Com problemas para configurar ou usar o plugin de bate-papo?"
192
 
193
+ #: options.php:291
194
  msgid "Please consult our Troubleshooting Guide."
195
  msgstr "Confira nosso guia de solução de problemas."
196
 
197
+ #: options.php:294
198
  msgid ""
199
  "If the troubleshooting steps in the guide do not solve your problem, please "
200
  "post in the plugin support forum."
201
  msgstr ""
202
  "Caso as etapas de solução de problemas do guia não resolvam seu problema, "
203
  "faça uma publicação no fórum de suporte ao plugin."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-pt_PT.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-pt_PT.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,109 @@ msgstr ""
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 "
@@ -60,6 +139,10 @@ 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."
@@ -67,44 +150,55 @@ 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"
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: 2021-05-12 00:01+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: pt_PT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Plug-in de chat oficial do Facebook"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Com alguns cliques podes adicionar o plug-in de chat do Facebook ao teu "
33
+ "site, o que permite que os clientes te enviem mensagens enquanto navegam no "
34
+ "teu site. Para veres e responderes a essas mensagens, utiliza as mesmas "
35
+ "ferramentas de mensagens que utilizas para as mensagens do Facebook no "
36
+ "computador em facebook.com e na app Gestor de Páginas do Facebook "
37
+ "(disponível para iOS e Android) ou adiciona a conta da tua Página ao "
38
+ "Messenger. É gratuito, fácil de instalar e tem uma interface de utilizador "
39
+ "que os teus clientes já conhecem."
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
  msgid "Settings"
44
  msgstr "Definições"
45
 
46
+ #: facebook-messenger-customer-chat.php:77
47
  msgid "FAQ"
48
  msgstr "Perguntas frequentes"
49
 
50
+ #: facebook-messenger-customer-chat.php:83
51
  msgid "Support"
52
  msgstr "Suporte"
53
 
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "Valorizamos o teu feedback."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Informa-nos o motivo pelo qual estás a desativar o plug-in de chat do Facebook."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "O plug-in não está a funcionar"
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Estou a utilizar um plug-in de chat em direto diferente"
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Nome do plug-in:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "Esta desativação é temporária. Voltarei em breve!"
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Outro"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Comentários:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Enviar:"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Obrigado. Agradecemos o teu feedback."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
  msgid "Facebook Chat Plugin Settings"
112
  msgstr "Definições do plug-in de chat do Facebook"
113
 
114
+ #: options.php:110
115
  msgid "Getting Started?"
116
  msgstr "Como começar"
117
 
118
+ #: options.php:111
119
  msgid ""
120
  "Let people start a conversation on your website and continue in Messenger. "
121
  "It's easy to set up. Chats started on your website can be continued in the "
139
  msgstr "Editar plug-in de chat"
140
 
141
  #: options.php:144
142
+ msgid "Setup status"
143
+ msgstr ""
144
+
145
+ #: options.php:145
146
  msgid ""
147
  "The plugin code has already been added into your website. You can always go "
148
  "back through the setup process to customize the plugin."
150
  "O código de plug-in já foi adicionado ao teu site. Podes sempre percorrer o "
151
  "processo de configuração para personalizares o plug-in."
152
 
153
+ #: options.php:149
154
+ msgid "Advanced Configuration"
155
+ msgstr "Configuração avançada"
156
+
157
+ #: options.php:159
158
+ msgid "Deploy Chat plugin on:"
159
+ msgstr "Implementar plug-in de chat a…"
160
+ msgstr ""
161
+ #: options.php:164
162
+ msgid "All pages"
163
+ msgstr "Todas as páginas"
164
+
165
+ #: options.php:168
166
+ msgid "Custom pages"
167
+ msgstr "Páginas personalizadas"
168
+
169
+ #: options.php:260
170
+ msgid "Product pages"
171
+ msgstr "Páginas de produtos"
172
+
173
+ #: options.php:268
174
+ msgid "Error saving settings."
175
+ msgstr ""
176
+
177
+ #: options.php:270
178
+ msgid "Settings saved."
179
+ msgstr ""
180
+
181
+ #: options.php:272
182
+ msgid "Saving settings..."
183
+ msgstr ""
184
+
185
+ #: options.php:285
186
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
187
  msgstr ""
188
  "A utilização deste plug-in está sujeita aos Termos da Plataforma do Facebook"
189
 
190
+ #: options.php:287
191
  msgid "Having a problem setting up or using the Chat Plugin?"
192
  msgstr "Estás a ter problemas em configurar ou utilizar o plug-in de chat?"
193
 
194
+ #: options.php:291
195
  msgid "Please consult our Troubleshooting Guide."
196
  msgstr "Consulta o nosso guia de resolução de problemas."
197
 
198
+ #: options.php:294
199
  msgid ""
200
  "If the troubleshooting steps in the guide do not solve your problem, please "
201
  "post in the plugin support forum."
202
  msgstr ""
203
  "Se os passos de resolução de problemas no guia não resolverem o teu problema,"
204
  "publica no fórum de suporte do plug-in."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-ru_RU.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-ru_RU.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -12,32 +14,109 @@ msgstr ""
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 "
@@ -60,6 +139,10 @@ 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."
@@ -67,45 +150,56 @@ 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"
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: 2021-05-12 00:01+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: ru_RU\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
  "%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_html__\n"
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: facebook-messenger-customer-chat.php:3
20
+ msgid "The Official Facebook Chat Plugin"
21
+ msgstr "Официальный плагин чата Facebook"
22
+
23
+ #: facebook-messenger-customer-chat.php:4
24
+ msgid ""
25
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
26
+ "enabling customers to message you while browsing your website. To see and "
27
+ "reply to those messages, simply use the same messaging tools you use for "
28
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
29
+ "App (available on iOS and Android), or by adding your page account to "
30
+ "Messenger. It's free, easy to install and comes with a user interface your "
31
+ "customers are already familiar with."
32
+ msgstr ""
33
+ "Всего в несколько кликов плагин чата Facebook можно добавить на сайт, чтобы "
34
+ "клиенты могли отправить вам сообщение, не покидая сайт. Чтобы просмотреть "
35
+ "сообщения и ответить на них, используйте те же инструменты обмена "
36
+ "сообщениями, которые используете для приложения Facebook, Facebook для ПК "
37
+ "(facebook.com), приложения Facebook Pages Manager (доступного для iOS и "
38
+ "Android) или добавьте аккаунт Страницы в Messenger. Плагин бесплатный, его "
39
+ "легко установить, и для него используется уже знакомый вашим клиентам "
40
+ "интерфейс."
41
+
42
+ #: facebook-messenger-customer-chat.php:53
43
+ #: facebook-messenger-customer-chat.php:70
44
  msgid "Settings"
45
  msgstr "Настройки"
46
 
47
+ #: facebook-messenger-customer-chat.php:77
48
  msgid "FAQ"
49
  msgstr "Часто задаваемые вопросы"
50
 
51
+ #: facebook-messenger-customer-chat.php:83
52
  msgid "Support"
53
  msgstr "Поддержка"
54
 
55
+ #: facebook-messenger-customer-chat.php:173
56
+ msgid "Cancel"
57
+ msgstr ""
58
+
59
+ #: facebook-messenger-customer-chat.php:183
60
+ msgid "We value your feedback."
61
+ msgstr "Мы ценим ваше мнение."
62
+
63
+ #: facebook-messenger-customer-chat.php:188
64
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
65
+ msgstr "Сообщите нам, почему вы решили деактивировать плагин чата Facebook."
66
+
67
+ #: facebook-messenger-customer-chat.php:191
68
+ msgid "I’m unable to get the plugin to work"
69
+ msgstr "Плагин не работает."
70
+
71
+ #: facebook-messenger-customer-chat.php:192
72
+ msgid "I no longer need a live chat feature"
73
+ msgstr ""
74
+
75
+ #: facebook-messenger-customer-chat.php:193
76
+ msgid "I’m using a different live chat plugin"
77
+ msgstr "Я использую другой плагин чата."
78
+
79
+ #: facebook-messenger-customer-chat.php:198
80
+ msgid "Name of plugin:"
81
+ msgstr "Название плагина:"
82
+
83
+ #: facebook-messenger-customer-chat.php:199
84
+ msgid "This is a temporary deactivation. I’ll be back!"
85
+ msgstr "Мы деактивировали плагин временно. Мы планируем использовать его в будущем."
86
+
87
+ #: facebook-messenger-customer-chat.php:200
88
+ msgid "Other"
89
+ msgstr "Другое"
90
+
91
+ #: facebook-messenger-customer-chat.php:205
92
+ msgid "Comments:"
93
+ msgstr "Комментарий:"
94
+
95
+ #: facebook-messenger-customer-chat.php:208
96
+ msgid "Submit"
97
+ msgstr "Отправить"
98
+
99
+ #: facebook-messenger-customer-chat.php:214
100
+ msgid "Thank you. We appreciate your feedback."
101
+ msgstr "Спасибо! Мы ценим ваши отзывы."
102
+
103
+ #: options.php:22
104
+ msgid "Plugin Settings"
105
+ msgstr ""
106
+
107
+ #: options.php:23
108
+ msgid "Facebook Chat"
109
+ msgstr ""
110
+
111
+ #: options.php:106
112
  msgid "Facebook Chat Plugin Settings"
113
  msgstr "Настройки плагина чата Facebook"
114
 
115
+ #: options.php:110
116
  msgid "Getting Started?"
117
  msgstr "Вы только начинаете?"
118
 
119
+ #: options.php:111
120
  msgid ""
121
  "Let people start a conversation on your website and continue in Messenger. "
122
  "It's easy to set up. Chats started on your website can be continued in the "
139
  msgstr "Редактировать плагин чата"
140
 
141
  #: options.php:144
142
+ msgid "Setup status"
143
+ msgstr ""
144
+
145
+ #: options.php:145
146
  msgid ""
147
  "The plugin code has already been added into your website. You can always go "
148
  "back through the setup process to customize the plugin."
150
  "Код плагина уже добавлен на ваш сайт. Вы в любое время можете вернуться к "
151
  "настройкам, чтобы скорректировать плагин."
152
 
153
+ #: options.php:149
154
+ msgid "Advanced Configuration"
155
+ msgstr "Расширенные настройки"
156
+
157
+ #: options.php:159
158
+ msgid "Deploy Chat plugin on:"
159
+ msgstr "Использовать плагин чата для..."
160
+ msgstr ""
161
+ #: options.php:164
162
+ msgid "All pages"
163
+ msgstr "Всех страниц"
164
+
165
+ #: options.php:168
166
+ msgid "Custom pages"
167
+ msgstr "Некоторых страниц"
168
+
169
+ #: options.php:260
170
+ msgid "Product pages"
171
+ msgstr "Страниц товаров"
172
+
173
+ #: options.php:268
174
+ msgid "Error saving settings."
175
+ msgstr ""
176
+
177
+ #: options.php:270
178
+ msgid "Settings saved."
179
+ msgstr ""
180
+
181
+ #: options.php:272
182
+ msgid "Saving settings..."
183
+ msgstr ""
184
+
185
+ #: options.php:285
186
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
187
  msgstr ""
188
  "На использование этого плагина распространяются Условия использования "
189
  "платформы Facebook"
190
 
191
+ #: options.php:287
192
  msgid "Having a problem setting up or using the Chat Plugin?"
193
  msgstr "Возникли проблемы с настройкой или использованием плагина чата?"
194
 
195
+ #: options.php:291
196
  msgid "Please consult our Troubleshooting Guide."
197
  msgstr "Обратитесь к нашему руководству по устранению неполадок."
198
 
199
+ #: options.php:294
200
  msgid ""
201
  "If the troubleshooting steps in the guide do not solve your problem, please "
202
  "post in the plugin support forum."
203
  msgstr ""
204
  "Если приведенные в руководстве рекомендации не помогают решить проблему, "
205
  "сделайте публикацию на форуме поддержки плагина."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-sv_SE.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-sv_SE.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,109 @@ msgstr ""
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 "
@@ -59,6 +138,10 @@ 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."
@@ -66,44 +149,55 @@ 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"
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: 2021-05-12 00:02+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: sv_SE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Det officiella pluginprogrammet för Facebook-chatt"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Med bara några få klick kan du lägga till Facebooks Chatt- pluginprogram på "
33
+ "din webbplats och göra det möjligt för kunder att skicka meddelanden till "
34
+ "dig när de surfar på din webbplats. För att se och svara på dessa "
35
+ "meddelanden använder du helt enkelt samma meddelandeverktyg som du använder "
36
+ "för dina Facebook-meddelanden på facebook.com på från en dator, Facebook-"
37
+ "appen Sidhanteraren (finns på iOS och Android) eller genom att lägga till "
38
+ "ditt sidkonto i Messenger. Det är gratis, enkelt att installera och "
39
+ "levereras med ett användargränssnitt som dina kunder redan är vana vid."
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
  msgid "Settings"
44
  msgstr "Inställningar"
45
 
46
+ #: facebook-messenger-customer-chat.php:77
47
  msgid "FAQ"
48
  msgstr "VANLIGA FRÅGOR"
49
 
50
+ #: facebook-messenger-customer-chat.php:83
51
  msgid "Support"
52
  msgstr "Support"
53
 
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "Vi värdesätter din feedback."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Berätta varför du inaktiverar pluginprogrammet för Facebook-chatt."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "Jag kan inte få pluginprogrammet att fungera"
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Jag använder ett annat pluginprogram för livechatt"
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Pluginprogrammets namn:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "Detta är en tillfällig inaktivering. Jag återkommer!"
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Övrigt"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Kommentarer:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Skicka"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Tack. Vi uppskattar dina synpunkter."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
  msgid "Facebook Chat Plugin Settings"
112
  msgstr "Inställningar för pluginprogrammet för Facebook-chatt"
113
 
114
+ #: options.php:110
115
  msgid "Getting Started?"
116
  msgstr "Dags att komma igång?"
117
 
118
+ #: options.php:111
119
  msgid ""
120
  "Let people start a conversation on your website and continue in Messenger. "
121
  "It's easy to set up. Chats started on your website can be continued in the "
138
  msgstr "Redigera chatt-pluginprogrammet"
139
 
140
  #: options.php:144
141
+ msgid "Setup status"
142
+ msgstr ""
143
+
144
+ #: options.php:145
145
  msgid ""
146
  "The plugin code has already been added into your website. You can always go "
147
  "back through the setup process to customize the plugin."
149
  "Pluginprogramskoden har redan lagts till på din webbplats. Du kan alltid gå "
150
  "tillbaka till installationsprocessen för att anpassa pluginprogrammet."
151
 
152
+ #: options.php:149
153
+ msgid "Advanced Configuration"
154
+ msgstr "Avancerad konfiguration"
155
+
156
+ #: options.php:159
157
+ msgid "Deploy Chat plugin on:"
158
+ msgstr "Implementera pluginprogram för Chat på ..."
159
+ msgstr ""
160
+ #: options.php:164
161
+ msgid "All pages"
162
+ msgstr "Alla sidor"
163
+
164
+ #: options.php:168
165
+ msgid "Custom pages"
166
+ msgstr "Anpassade sidor"
167
+
168
+ #: options.php:260
169
+ msgid "Product pages"
170
+ msgstr "Produktsidor"
171
+
172
+ #: options.php:268
173
+ msgid "Error saving settings."
174
+ msgstr ""
175
+
176
+ #: options.php:270
177
+ msgid "Settings saved."
178
+ msgstr ""
179
+
180
+ #: options.php:272
181
+ msgid "Saving settings..."
182
+ msgstr ""
183
+
184
+ #: options.php:285
185
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
186
  msgstr ""
187
  "Användningen av detta pluginprogram lyder under Facebooks Plattformsvillkor"
188
 
189
+ #: options.php:287
190
  msgid "Having a problem setting up or using the Chat Plugin?"
191
  msgstr "Har du problem med att konfigurera eller använda Chat Plugin?"
192
 
193
+ #: options.php:291
194
  msgid "Please consult our Troubleshooting Guide."
195
  msgstr "Ta en titt i vår Felsökningsguide."
196
 
197
+ #: options.php:294
198
  msgid ""
199
  "If the troubleshooting steps in the guide do not solve your problem, please "
200
  "post in the plugin support forum."
201
  msgstr ""
202
  "Om felsökningsstegen i guiden inte löser ditt problem kan du göra ett inlägg "
203
  "i pluginprogrammets supportforum."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-th.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-th.po ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2021-05-12 00:02+0800\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Facebook\n"
8
+ "Language: th\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=1; plural=0;\n"
15
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "ปลั๊กอินแชทของ Facebook อย่างเป็นทางการ"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, enabling customers to "
25
+ "message you while browsing your website. To see and reply to those messages, simply use the same "
26
+ "messaging tools you use for your Facebook messaging, on desktop at facebook.com, Facebook Page "
27
+ "Manager App (available on iOS and Android), or by adding your page account to Messenger. It's "
28
+ "free, easy to install and comes with a user interface your customers are already familiar with."
29
+ msgstr ""
30
+ "ด้วยการคลิกเพียงไม่กี่ครั้ง คุณจะสามารถเพิ่มปลั๊กอินแชทของ Facebook ลงในเว็บไซต์ได้ "
31
+ "ซึ่งจะช่วยให้ลูกค้าสามารถส่งข้อความถึงคุณได้ในขณะที่ดูเว็บไซต์ของคุณ หากต้องการดูและตอบกลับข้อความเหล่านั้น "
32
+ "เพียงแค่ใช้เครื่องมือส่งข้อความเดียวกันกับที่คุณใช้ส่งข้อความผ่าน Facebook บนเดสก์ท็อปที่ facebook.com แอพตัวจัดการเพจ "
33
+ "Facebook (พร้อมให้ใช้งานได้บน iOS และ Android) หรือโดยเพิ่มบัญชีเพจของคุณลงใน Messenger ไม่มีค่าใช้จ่าย "
34
+ "ติดตั้งได้ง่ายและมาพร้อมกับอินเทอร์เฟซผู้ใช้ที่ลูกค้าของคุณคุ้นเคยดีอยู่แล้ว"
35
+
36
+ #: facebook-messenger-customer-chat.php:53 facebook-messenger-customer-chat.php:70
37
+ msgid "Settings"
38
+ msgstr "การตั้งค่า"
39
+
40
+ #: facebook-messenger-customer-chat.php:77
41
+ msgid "FAQ"
42
+ msgstr "คำถามที่พบบ่อย"
43
+
44
+ #: facebook-messenger-customer-chat.php:83
45
+ msgid "Support"
46
+ msgstr "การสนับสนุน"
47
+
48
+ #: facebook-messenger-customer-chat.php:173
49
+ msgid "Cancel"
50
+ msgstr ""
51
+
52
+ #: facebook-messenger-customer-chat.php:183
53
+ msgid "We value your feedback."
54
+ msgstr "ความเห็นของคุณมีค่า"
55
+
56
+ #: facebook-messenger-customer-chat.php:188
57
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
58
+ msgstr "โปรดแจ้งให้เราทราบถึงเหตุผลที่คุณปิดใช้งานปลั๊กอินแชทของ Facebook"
59
+
60
+ #: facebook-messenger-customer-chat.php:191
61
+ msgid "I’m unable to get the plugin to work"
62
+ msgstr "ฉันไม่สามารถใช้งานปลั๊กอินได้"
63
+
64
+ #: facebook-messenger-customer-chat.php:192
65
+ msgid "I no longer need a live chat feature"
66
+ msgstr ""
67
+
68
+ #: facebook-messenger-customer-chat.php:193
69
+ msgid "I’m using a different live chat plugin"
70
+ msgstr "ฉันกำลังใช้ปลั๊กอินแชทสดอื่นอยู่"
71
+
72
+ #: facebook-messenger-customer-chat.php:198
73
+ msgid "Name of plugin:"
74
+ msgstr "ชื่อปลั๊กอิน:"
75
+
76
+ #: facebook-messenger-customer-chat.php:199
77
+ msgid "This is a temporary deactivation. I’ll be back!"
78
+ msgstr "นี่เป็นการปิดใช้งานชั่วคราว ฉันจะกลับมาใช้ใหม่!"
79
+
80
+ #: facebook-messenger-customer-chat.php:200
81
+ msgid "Other"
82
+ msgstr "อื่นๆ"
83
+
84
+ #: facebook-messenger-customer-chat.php:205
85
+ msgid "Comments:"
86
+ msgstr "ความคิดเห็น:"
87
+
88
+ #: facebook-messenger-customer-chat.php:208
89
+ msgid "Submit"
90
+ msgstr "ส่ง"
91
+
92
+ #: facebook-messenger-customer-chat.php:214
93
+ msgid "Thank you. We appreciate your feedback."
94
+ msgstr "ขอบคุณ เรายินดีรับฟังความเห็นของคุณ"
95
+
96
+ #: options.php:22
97
+ msgid "Plugin Settings"
98
+ msgstr ""
99
+
100
+ #: options.php:23
101
+ msgid "Facebook Chat"
102
+ msgstr ""
103
+
104
+ #: options.php:106
105
+ msgid "Facebook Chat Plugin Settings"
106
+ msgstr "การตั้งค่าปลั๊กอินแชทของ Facebook"
107
+
108
+ #: options.php:110
109
+ msgid "Getting Started?"
110
+ msgstr "การเริ่มต้นใช้งาน"
111
+
112
+ #: options.php:111
113
+ msgid ""
114
+ "Let people start a conversation on your website and continue in Messenger. It's easy to set up. "
115
+ "Chats started on your website can be continued in the customers' Messenger app, so you never lose "
116
+ "connections with your customers. Even those without a Facebook Messenger account can chat with you "
117
+ "in guest mode, so you can reach more customers than ever."
118
+ msgstr ""
119
+ "ผู้คนสามารถเริ่มสนทนาบนเว็บไซต์ของคุณและดำเนินการต่อได้ใน Messenger ซึ่งตั้งค่าได้ง่าย "
120
+ "แชทที่เริ่มจากบนเว็บไซต์ของคุณสามารถดำเนินการต่อได้ในแอพ Messenger ของลูกค้า "
121
+ "ดังนั้นคุณจะไม่สูญเสียการติดต่อกับลูกค้าแม้ว่าลูกค้าจะไม่มีบัญชี Facebook Messenger ก็ตาม "
122
+ "ลูกค้าจะสามารถแชทกับคุณได้ในโหมดผู้ได้รับเชิญ คุณจะสามารถเข้าถึงลูกค้าได้มากกว่าที่เคย"
123
+
124
+ #: options.php:128
125
+ msgid "Setup Chat Plugin"
126
+ msgstr "ตั้งค่าปลั๊กอินแชท"
127
+
128
+ #: options.php:130
129
+ msgid "Edit Chat Plugin"
130
+ msgstr "แก้ไขปลั๊กอินแชท"
131
+
132
+ #: options.php:144
133
+ msgid "Setup status"
134
+ msgstr ""
135
+
136
+ #: options.php:145
137
+ msgid ""
138
+ "The plugin code has already been added into your website. You can always go back through the setup "
139
+ "process to customize the plugin."
140
+ msgstr "ได้มีการเพิ่มรหัสปลั๊กอินลงในเว็บไซต์ของคุณแล้ว คุณสามารถย้อนกลับไปผ่านขั้นตอนการตั้งค่าเพื่อปรับแต่งปลั๊กอินได้ทุกเมื่อ"
141
+
142
+ #: options.php:149
143
+ msgid "Advanced Configuration"
144
+ msgstr "การกำหนดค่าขั้นสูง"
145
+
146
+ #: options.php:159
147
+ msgid "Deploy Chat plugin on:"
148
+ msgstr "ใช้งานปลั๊กอินแชทกับ..."
149
+ msgstr ""
150
+ #: options.php:164
151
+ msgid "All pages"
152
+ msgstr "เพจทั้งหมด"
153
+
154
+ #: options.php:168
155
+ msgid "Custom pages"
156
+ msgstr "เพจที่กำหนดเอง"
157
+
158
+ #: options.php:260
159
+ msgid "Product pages"
160
+ msgstr "หน้าสินค้า"
161
+
162
+ #: options.php:268
163
+ msgid "Error saving settings."
164
+ msgstr ""
165
+
166
+ #: options.php:270
167
+ msgid "Settings saved."
168
+ msgstr ""
169
+
170
+ #: options.php:272
171
+ msgid "Saving settings..."
172
+ msgstr ""
173
+
174
+ #: options.php:285
175
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
176
+ msgstr "การใช้ปลั๊กอินนี้เป็นไปตามข้อกำหนดแพลตฟอร์มของ Facebook"
177
+
178
+ #: options.php:287
179
+ msgid "Having a problem setting up or using the Chat Plugin?"
180
+ msgstr "หากมีปัญหาเกี่ยวกับการตั้งค่าหรือการใช้ปลั๊กอินแชท"
181
+
182
+ #: options.php:291
183
+ msgid "Please consult our Troubleshooting Guide."
184
+ msgstr "โปรดดูคู่มือการแก้ไขปัญหาของเรา"
185
+
186
+ #: options.php:294
187
+ msgid ""
188
+ "If the troubleshooting steps in the guide do not solve your problem, please post in the plugin "
189
+ "support forum."
190
+ msgstr "หากขั้นตอนการแก้ไขปัญหาในคู่มือนี้ไม่ได้แก้ไขปัญหาของคุณ โปรด โพสต์ในฟอรั่มการสนับสนุนปลั๊กอิน"
languages/facebook-messenger-customer-chat-tr_TR.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-tr_TR.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,109 @@ msgstr ""
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 "
@@ -60,6 +139,10 @@ 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."
@@ -67,44 +150,55 @@ 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"
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: 2021-05-12 00:03+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: tr_TR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\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:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Resmi Facebook Sohbet Eklentisi"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Sadece birkaç tıklamayla Facebook Sohbet Eklentisini internet sitenize "
33
+ "ekleyebilir ve müşterilerin internet sitenizde gezerken size mesaj "
34
+ "göndermesini sağlayabilirsiniz. Bu mesajları görmek ve yanıtlamak için "
35
+ "facebook.com adresinde, Facebook Sayfa Yöneticisi Uygulaması'nda (iOS ve "
36
+ "Android'de kullanılabilir) veya sayfa hesabınızı Messenger'a eklediğinizde "
37
+ "Facebook mesajlarınız için kullandığınız aynı mesajlaşma araçlarını "
38
+ "kullanın. Yüklemesi ücretsiz ve kolaydır ve müşterilerin zaten bildiği bir "
39
+ "kullanıcı arayüzüne sahiptir."
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
  msgid "Settings"
44
  msgstr "Ayarlar"
45
 
46
+ #: facebook-messenger-customer-chat.php:77
47
  msgid "FAQ"
48
  msgstr "SSS"
49
 
50
+ #: facebook-messenger-customer-chat.php:83
51
  msgid "Support"
52
  msgstr "Destek"
53
 
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "Görüşleriniz bizim için değerlidir."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Facebook Sohbet Eklentisini neden devre dışı bıraktığınızı lütfen bize bildirin."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "Eklentiyi çalıştıramıyorum"
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Farklı bir canlı sohbet eklentisi kullanıyorum"
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Eklentinin adı:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "Geçici olarak devre dışı bırakıyorum. Geri döneceğim!"
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Diğer"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Yorumlar:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Gönder"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Teşekkür ederiz. Görüşleriniz için teşekkürler."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
  msgid "Facebook Chat Plugin Settings"
112
  msgstr "Facebook Sohbet Eklentisi Ayarları"
113
 
114
+ #: options.php:110
115
  msgid "Getting Started?"
116
  msgstr "Kullanmaya Başlama"
117
 
118
+ #: options.php:111
119
  msgid ""
120
  "Let people start a conversation on your website and continue in Messenger. "
121
  "It's easy to set up. Chats started on your website can be continued in the "
139
  msgstr "Sohbet Eklentisini Düzenleme"
140
 
141
  #: options.php:144
142
+ msgid "Setup status"
143
+ msgstr ""
144
+
145
+ #: options.php:145
146
  msgid ""
147
  "The plugin code has already been added into your website. You can always go "
148
  "back through the setup process to customize the plugin."
150
  "Eklenti kodu zaten internet sitenize eklenmiş. İstediğiniz zaman kurulum "
151
  "sürecine dönerek eklentiyi özelleştirebilirsiniz."
152
 
153
+ #: options.php:149
154
+ msgid "Advanced Configuration"
155
+ msgstr "Gelişmiş Yapılandırma"
156
+
157
+ #: options.php:159
158
+ msgid "Deploy Chat plugin on:"
159
+ msgstr "Sohbet eklentisini şurada kullanıma al:"
160
+ msgstr ""
161
+ #: options.php:164
162
+ msgid "All pages"
163
+ msgstr "Tüm sayfalar"
164
+
165
+ #: options.php:168
166
+ msgid "Custom pages"
167
+ msgstr "Özel sayfalar"
168
+
169
+ #: options.php:260
170
+ msgid "Product pages"
171
+ msgstr "Ürün sayfaları"
172
+
173
+ #: options.php:268
174
+ msgid "Error saving settings."
175
+ msgstr ""
176
+
177
+ #: options.php:270
178
+ msgid "Settings saved."
179
+ msgstr ""
180
+
181
+ #: options.php:272
182
+ msgid "Saving settings..."
183
+ msgstr ""
184
+
185
+ #: options.php:285
186
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
187
  msgstr "Bu eklentinin kullanımı Facebook'un Platform Koşulları'na tabidir"
188
 
189
+ #: options.php:287
190
  msgid "Having a problem setting up or using the Chat Plugin?"
191
  msgstr ""
192
  "Sohbet Eklentisini kurma veya kullanma konusunda sorun mu yaşıyorsunuz?"
193
 
194
+ #: options.php:291
195
  msgid "Please consult our Troubleshooting Guide."
196
  msgstr "Lütfen Sorun Giderme Kılavuzumuza başvurun."
197
 
198
+ #: options.php:294
199
  msgid ""
200
  "If the troubleshooting steps in the guide do not solve your problem, please "
201
  "post in the plugin support forum."
202
  msgstr ""
203
  "Kılavuzdaki bu sorun giderme adımları sorununuzu çözmüyorsa, lütfen eklenti "
204
  "destek forumunda paylaşım yapın."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-vi.mo ADDED
Binary file
languages/facebook-messenger-customer-chat-vi.po ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2021-05-12 00:03+0800\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Facebook\n"
8
+ "Language: vi\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=1; plural=0;\n"
15
+ "X-Poedit-KeywordsList: __;_e;esc_html__\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: facebook-messenger-customer-chat.php:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "Plugin chat trên Facebook chính thức"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "Chỉ bằng một vài lượt click bạn có thể thêm plugin chat trên Facebook vào "
33
+ "trang web của mình để khách hàng nhắn tin cho bạn trong khi lướt xem trang "
34
+ "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 "
35
+ "công cụ nhắn tin như khi nhắn tin trên Facebook bằng máy tính tại facebook."
36
+ "com Ứng dụng Trình quản lý Trang Facebook (có trên iOS và Android) hoặc bằng "
37
+ "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 "
38
+ "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 "
39
+ "thuộc."
40
+
41
+ #: facebook-messenger-customer-chat.php:53
42
+ #: facebook-messenger-customer-chat.php:70
43
+ msgid "Settings"
44
+ msgstr "Cài đặt"
45
+
46
+ #: facebook-messenger-customer-chat.php:77
47
+ msgid "FAQ"
48
+ msgstr "CÂU HỎI THƯỜNG GẶP"
49
+
50
+ #: facebook-messenger-customer-chat.php:83
51
+ msgid "Support"
52
+ msgstr "Hỗ trợ"
53
+
54
+ #: facebook-messenger-customer-chat.php:173
55
+ msgid "Cancel"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:183
59
+ msgid "We value your feedback."
60
+ msgstr "Chúng tôi rất trân trọng phản hồi của bạn."
61
+
62
+ #: facebook-messenger-customer-chat.php:188
63
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
64
+ msgstr "Vui lòng cho chúng tôi biết lý do bạn hủy kích hoạt plugin Chat của Facebook."
65
+
66
+ #: facebook-messenger-customer-chat.php:191
67
+ msgid "I’m unable to get the plugin to work"
68
+ msgstr "Plugin này không hoạt động"
69
+
70
+ #: facebook-messenger-customer-chat.php:192
71
+ msgid "I no longer need a live chat feature"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:193
75
+ msgid "I’m using a different live chat plugin"
76
+ msgstr "Tôi đang dùng một plugin chat trực tiếp khác"
77
+
78
+ #: facebook-messenger-customer-chat.php:198
79
+ msgid "Name of plugin:"
80
+ msgstr "Tên của plugin:"
81
+
82
+ #: facebook-messenger-customer-chat.php:199
83
+ msgid "This is a temporary deactivation. I’ll be back!"
84
+ msgstr "Tôi hủy kích hoạt tạm thời thôi. Tôi sẽ kích hoạt lại sau!"
85
+
86
+ #: facebook-messenger-customer-chat.php:200
87
+ msgid "Other"
88
+ msgstr "Lý do khác"
89
+
90
+ #: facebook-messenger-customer-chat.php:205
91
+ msgid "Comments:"
92
+ msgstr "Bình luận:"
93
+
94
+ #: facebook-messenger-customer-chat.php:208
95
+ msgid "Submit"
96
+ msgstr "Gửi"
97
+
98
+ #: facebook-messenger-customer-chat.php:214
99
+ msgid "Thank you. We appreciate your feedback."
100
+ msgstr "Cảm ơn bạn! Chúng tôi đánh giá cao phản hồi của bạn."
101
+
102
+ #: options.php:22
103
+ msgid "Plugin Settings"
104
+ msgstr ""
105
+
106
+ #: options.php:23
107
+ msgid "Facebook Chat"
108
+ msgstr ""
109
+
110
+ #: options.php:106
111
+ msgid "Facebook Chat Plugin Settings"
112
+ msgstr "Cài đặt plugin chat trên Facebook"
113
+
114
+ #: options.php:110
115
+ msgid "Getting Started?"
116
+ msgstr "Bắt đầu?"
117
+
118
+ #: options.php:111
119
+ msgid ""
120
+ "Let people start a conversation on your website and continue in Messenger. "
121
+ "It's easy to set up. Chats started on your website can be continued in the "
122
+ "customers' Messenger app, so you never lose connections with your customers. "
123
+ "Even those without a Facebook Messenger account can chat with you in guest "
124
+ "mode, so you can reach more customers than ever."
125
+ msgstr ""
126
+ "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 "
127
+ "trên Messenger. Quá trình thiết lập thật dễ dàng. Các đoạn chat trên trang "
128
+ "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 "
129
+ "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 "
130
+ "không có tài khoản Facebook Messenger cũng có thể chat với bạn ở chế độ "
131
+ "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."
132
+
133
+ #: options.php:128
134
+ msgid "Setup Chat Plugin"
135
+ msgstr "Thiết lập plugin chat"
136
+
137
+ #: options.php:130
138
+ msgid "Edit Chat Plugin"
139
+ msgstr "Chỉnh sửa plugin chat"
140
+
141
+ #: options.php:144
142
+ msgid "Setup status"
143
+ msgstr ""
144
+
145
+ #: options.php:145
146
+ msgid ""
147
+ "The plugin code has already been added into your website. You can always go "
148
+ "back through the setup process to customize the plugin."
149
+ msgstr ""
150
+ "Mã plug đã được thêm vào trang web của bạn. Bạn luôn có thể quay lại quy "
151
+ "trình thiết lập để tùy chỉnh plugin."
152
+
153
+ #: options.php:149
154
+ msgid "Advanced Configuration"
155
+ msgstr "Cấu hình nâng cao"
156
+
157
+ #: options.php:159
158
+ msgid "Deploy Chat plugin on:"
159
+ msgstr "Triển khai plugin Chat trên..."
160
+ msgstr ""
161
+ #: options.php:164
162
+ msgid "All pages"
163
+ msgstr "Tất cả các trang"
164
+
165
+ #: options.php:168
166
+ msgid "Custom pages"
167
+ msgstr "Trang tùy chỉnh"
168
+
169
+ #: options.php:260
170
+ msgid "Product pages"
171
+ msgstr "Trang sản phẩm"
172
+
173
+ #: options.php:268
174
+ msgid "Error saving settings."
175
+ msgstr ""
176
+
177
+ #: options.php:270
178
+ msgid "Settings saved."
179
+ msgstr ""
180
+
181
+ #: options.php:272
182
+ msgid "Saving settings..."
183
+ msgstr ""
184
+
185
+ #: options.php:285
186
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
187
+ 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"
188
+
189
+ #: options.php:287
190
+ msgid "Having a problem setting up or using the Chat Plugin?"
191
+ msgstr "Bạn gặp sự cố khi thiết lập hoặc sử dụng plugin chat?"
192
+
193
+ #: options.php:291
194
+ msgid "Please consult our Troubleshooting Guide."
195
+ msgstr "Vui lòng tham khảo Hướng dẫn khắc phục sự cố của chúng tôi."
196
+
197
+ #: options.php:294
198
+ msgid ""
199
+ "If the troubleshooting steps in the guide do not solve your problem, please "
200
+ "post in the plugin support forum."
201
+ msgstr ""
202
+ "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 "
203
+ "đề của bạn, vui lòng đăng lên diễn đàn hỗ trợ plugin."
languages/facebook-messenger-customer-chat-zh_CN.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-zh_CN.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,106 @@ msgstr ""
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 "
@@ -58,43 +134,61 @@ 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 聊天插件"
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: 2021-05-11 17:26+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: zh_CN\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __;_e;esc_html__\n"
 
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: facebook-messenger-customer-chat.php:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "官方 Facebook 聊天插件"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "只需几次点击 您可以将 Facebook 聊天插件添加到您的网站 让客户能够在浏览您的网"
33
+ "站时向您发消息。要查看和回复这些消息 只需使用用于 Facebook 消息服务的相同消息"
34
+ "工具即可 在台式电脑上访问 facebook.com Facebook 主页管理应用(适用于 iOS 和 "
35
+ "Android 系统) 或者将您的主页帐户添加到 Messenger。完全免费 易于安装,并且采"
36
+ "用您的客户所熟悉的用户界面。"
37
+
38
+ #: facebook-messenger-customer-chat.php:53
39
+ #: facebook-messenger-customer-chat.php:70
40
  msgid "Settings"
41
  msgstr "设置"
42
 
43
+ #: facebook-messenger-customer-chat.php:77
44
  msgid "FAQ"
45
  msgstr "常见问题"
46
 
47
+ #: facebook-messenger-customer-chat.php:83
48
  msgid "Support"
49
  msgstr "支持"
50
 
51
+ #: facebook-messenger-customer-chat.php:173
52
+ msgid "Cancel"
53
+ msgstr ""
54
+
55
+ #: facebook-messenger-customer-chat.php:183
56
+ msgid "We value your feedback."
57
+ msgstr "我们很重视您的反馈。"
58
+
59
+ #: facebook-messenger-customer-chat.php:188
60
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
61
+ msgstr "请告诉我们,您为什么要停用 Facebook 聊天插件。"
62
+
63
+ #: facebook-messenger-customer-chat.php:191
64
+ msgid "I’m unable to get the plugin to work"
65
+ msgstr "插件无法正常工作"
66
+
67
+ #: facebook-messenger-customer-chat.php:192
68
+ msgid "I no longer need a live chat feature"
69
+ msgstr ""
70
+
71
+ #: facebook-messenger-customer-chat.php:193
72
+ msgid "I’m using a different live chat plugin"
73
+ msgstr "我在使用另外一款实时聊天插件"
74
+
75
+ #: facebook-messenger-customer-chat.php:198
76
+ msgid "Name of plugin:"
77
+ msgstr "插件名称:"
78
+
79
+ #: facebook-messenger-customer-chat.php:199
80
+ msgid "This is a temporary deactivation. I’ll be back!"
81
+ msgstr "只是暂时停用。我后面会重新启用!"
82
+
83
+ #: facebook-messenger-customer-chat.php:200
84
+ msgid "Other"
85
+ msgstr "其他"
86
+
87
+ #: facebook-messenger-customer-chat.php:205
88
+ msgid "Comments:"
89
+ msgstr "评论:"
90
+
91
+ #: facebook-messenger-customer-chat.php:208
92
+ msgid "Submit"
93
+ msgstr "提交"
94
+
95
+ #: facebook-messenger-customer-chat.php:214
96
+ msgid "Thank you. We appreciate your feedback."
97
+ msgstr "谢谢!我们非常感谢您的反馈。"
98
+
99
+ #: options.php:22
100
+ msgid "Plugin Settings"
101
+ msgstr ""
102
+
103
+ #: options.php:23
104
+ msgid "Facebook Chat"
105
+ msgstr ""
106
+
107
+ #: options.php:106
108
  msgid "Facebook Chat Plugin Settings"
109
  msgstr "Facebook 聊天插件设置"
110
 
111
+ #: options.php:110
112
  msgid "Getting Started?"
113
  msgstr "开始使用"
114
 
115
+ #: options.php:111
116
  msgid ""
117
  "Let people start a conversation on your website and continue in Messenger. "
118
  "It's easy to set up. Chats started on your website can be continued in the "
134
  msgstr "编辑聊天插件"
135
 
136
  #: options.php:144
137
+ msgid "Setup status"
138
+ msgstr ""
139
+
140
+ #: options.php:145
141
  msgid ""
142
  "The plugin code has already been added into your website. You can always go "
143
  "back through the setup process to customize the plugin."
144
  msgstr "插件代码已添加到您的网站上。您随时可以返回设置流程来定制插件。"
145
 
146
+ #: options.php:149
147
+ msgid "Advanced Configuration"
148
+ msgstr "高级配置"
149
+
150
+ #: options.php:159
151
+ msgid "Deploy Chat plugin on:"
152
+ msgstr "为...配置聊天插件"
153
+ msgstr ""
154
+ #: options.php:164
155
+ msgid "All pages"
156
+ msgstr "所有页面"
157
+
158
+ #: options.php:168
159
+ msgid "Custom pages"
160
+ msgstr "自定义页面"
161
+
162
+ #: options.php:260
163
+ msgid "Product pages"
164
+ msgstr "商品页面"
165
+
166
+ #: options.php:268
167
+ msgid "Error saving settings."
168
+ msgstr ""
169
+
170
+ #: options.php:270
171
+ msgid "Settings saved."
172
+ msgstr ""
173
+
174
+ #: options.php:272
175
+ msgid "Saving settings..."
176
+ msgstr ""
177
+
178
+ #: options.php:285
179
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
180
  msgstr "使用此插件需遵守 Facebook 开放平台条款"
181
 
182
+ #: options.php:287
183
  msgid "Having a problem setting up or using the Chat Plugin?"
184
  msgstr "在设置或使用聊天插件时遇到问题?"
185
 
186
+ #: options.php:291
187
  msgid "Please consult our Troubleshooting Guide."
188
  msgstr "请参阅我们的疑难解答指南。"
189
 
190
+ #: options.php:294
191
  msgid ""
192
  "If the troubleshooting steps in the guide do not solve your problem, please "
193
  "post in the plugin support forum."
194
  msgstr "如果采用指南中的所述步骤后仍无法解决问题,请 在插件支持论坛中发帖。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat-zh_TW.mo CHANGED
Binary file
languages/facebook-messenger-customer-chat-zh_TW.po CHANGED
@@ -2,8 +2,10 @@ 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"
@@ -11,32 +13,106 @@ msgstr ""
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 "
@@ -58,45 +134,63 @@ 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 洽談外掛程式"
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: 2021-05-12 00:04+0800\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
8
+ "Language: zh_TW\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-KeywordsList: __;_e;esc_html__\n"
 
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: facebook-messenger-customer-chat.php:3
19
+ msgid "The Official Facebook Chat Plugin"
20
+ msgstr "官方版 Facebook 洽談外掛程式"
21
+
22
+ #: facebook-messenger-customer-chat.php:4
23
+ msgid ""
24
+ "With a few clicks, you can add the Facebook Chat Plugin to your website, "
25
+ "enabling customers to message you while browsing your website. To see and "
26
+ "reply to those messages, simply use the same messaging tools you use for "
27
+ "your Facebook messaging, on desktop at facebook.com, Facebook Page Manager "
28
+ "App (available on iOS and Android), or by adding your page account to "
29
+ "Messenger. It's free, easy to install and comes with a user interface your "
30
+ "customers are already familiar with."
31
+ msgstr ""
32
+ "只需點擊幾下, 您就能將 Facebook 洽談外掛程式加到您的網站, 讓瀏覽網站的顧客"
33
+ "可以立即向您發送訊息。若要查看及回覆這些訊息, 只需使用您在 Facebook 桌面版"
34
+ "(facebook.com)收發訊息時所用的 訊息工具、 Facebook 專頁小助手應用程式(iOS "
35
+ "版和 Android 版), 或者將您的粉絲專頁帳號加到 Messenger 也可以。此工具完全免"
36
+ "費 且安裝簡單,用戶介面對顧客來說既熟悉又好上手。"
37
+
38
+ #: facebook-messenger-customer-chat.php:53
39
+ #: facebook-messenger-customer-chat.php:70
40
  msgid "Settings"
41
  msgstr "設定"
42
 
43
+ #: facebook-messenger-customer-chat.php:77
44
  msgid "FAQ"
45
  msgstr "常見問題"
46
 
47
+ #: facebook-messenger-customer-chat.php:83
48
  msgid "Support"
49
  msgstr "支援服務"
50
 
51
+ #: facebook-messenger-customer-chat.php:173
52
+ msgid "Cancel"
53
+ msgstr ""
54
+
55
+ #: facebook-messenger-customer-chat.php:183
56
+ msgid "We value your feedback."
57
+ msgstr "我們非常重視您的意見回饋。"
58
+
59
+ #: facebook-messenger-customer-chat.php:188
60
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
61
+ msgstr "請告訴我們您要停用 Facebook 洽談外掛程式的原因。"
62
+
63
+ #: facebook-messenger-customer-chat.php:191
64
+ msgid "I’m unable to get the plugin to work"
65
+ msgstr "我的外掛程式無法正常運作"
66
+
67
+ #: facebook-messenger-customer-chat.php:192
68
+ msgid "I no longer need a live chat feature"
69
+ msgstr ""
70
+
71
+ #: facebook-messenger-customer-chat.php:193
72
+ msgid "I’m using a different live chat plugin"
73
+ msgstr "我目前在用其他即時聊天外掛程式"
74
+
75
+ #: facebook-messenger-customer-chat.php:198
76
+ msgid "Name of plugin:"
77
+ msgstr "外掛程式名稱:"
78
+
79
+ #: facebook-messenger-customer-chat.php:199
80
+ msgid "This is a temporary deactivation. I’ll be back!"
81
+ msgstr "現在只是暫時停用,以後還會繼續使用!"
82
+
83
+ #: facebook-messenger-customer-chat.php:200
84
+ msgid "Other"
85
+ msgstr "其他"
86
+
87
+ #: facebook-messenger-customer-chat.php:205
88
+ msgid "Comments:"
89
+ msgstr "留言:"
90
+
91
+ #: facebook-messenger-customer-chat.php:208
92
+ msgid "Submit"
93
+ msgstr "提交"
94
+
95
+ #: facebook-messenger-customer-chat.php:214
96
+ msgid "Thank you. We appreciate your feedback."
97
+ msgstr "感謝您!我們非常感謝您提供寶貴意見。"
98
+
99
+ #: options.php:22
100
+ msgid "Plugin Settings"
101
+ msgstr ""
102
+
103
+ #: options.php:23
104
+ msgid "Facebook Chat"
105
+ msgstr ""
106
+
107
+ #: options.php:106
108
  msgid "Facebook Chat Plugin Settings"
109
  msgstr "Facebook 洽談外掛程式設定"
110
 
111
+ #: options.php:110
112
  msgid "Getting Started?"
113
  msgstr "剛開始使用?"
114
 
115
+ #: options.php:111
116
  msgid ""
117
  "Let people start a conversation on your website and continue in Messenger. "
118
  "It's easy to set up. Chats started on your website can be continued in the "
134
  msgstr "編輯洽談外掛程式"
135
 
136
  #: options.php:144
137
+ msgid "Setup status"
138
+ msgstr ""
139
+
140
+ #: options.php:145
141
  msgid ""
142
  "The plugin code has already been added into your website. You can always go "
143
  "back through the setup process to customize the plugin."
144
  msgstr "外掛程式已加到您的網站。您隨時可以返回設定程序自訂外掛程式。"
145
 
146
+ #: options.php:149
147
+ msgid "Advanced Configuration"
148
+ msgstr "進階設定"
149
+
150
+ #: options.php:159
151
+ msgid "Deploy Chat plugin on:"
152
+ msgstr "部署洽談外掛程式……"
153
+ msgstr ""
154
+ #: options.php:164
155
+ msgid "All pages"
156
+ msgstr "所有粉絲專頁"
157
+
158
+ #: options.php:168
159
+ msgid "Custom pages"
160
+ msgstr "自訂頁面"
161
+
162
+ #: options.php:260
163
+ msgid "Product pages"
164
+ msgstr "商品頁面"
165
+
166
+ #: options.php:268
167
+ msgid "Error saving settings."
168
+ msgstr ""
169
+
170
+ #: options.php:270
171
+ msgid "Settings saved."
172
+ msgstr ""
173
+
174
+ #: options.php:272
175
+ msgid "Saving settings..."
176
+ msgstr ""
177
+
178
+ #: options.php:285
179
  msgid "Use of this plugin is subject to Facebook's Platform Terms"
180
  msgstr "使用此外掛程式須遵守《Facebook 開放平台使用條款》的規定"
181
 
182
+ #: options.php:287
183
  msgid "Having a problem setting up or using the Chat Plugin?"
184
  msgstr "設定或使用洽談外掛程式時遇到問題嗎?"
185
 
186
+ #: options.php:291
187
  msgid "Please consult our Troubleshooting Guide."
188
  msgstr "請查閱我們的疑難排解指南。"
189
 
190
+ #: options.php:294
191
  msgid ""
192
  "If the troubleshooting steps in the guide do not solve your problem, please "
193
  "post in the plugin support forum."
194
  msgstr ""
195
  "若按照指南所列的疑難排解步驟操作後,問題仍未解決,請 將問題發佈到外掛程式支援"
196
  "論壇。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/facebook-messenger-customer-chat.pot CHANGED
@@ -5,7 +5,6 @@ msgstr ""
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"
@@ -15,28 +14,92 @@ msgstr ""
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
 
@@ -49,29 +112,57 @@ 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 ""
5
  "PO-Revision-Date: 2020-11-13 16:39-0800\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Facebook\n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-KeywordsList: __;_e;esc_html__\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: facebook-messenger-customer-chat.php:3
18
+ msgid "The Official Facebook Chat Plugin"
19
+ msgstr ""
20
+
21
+ #: facebook-messenger-customer-chat.php:4
22
+ 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."
23
+ msgstr ""
24
+
25
+ #: facebook-messenger-customer-chat.php:53
26
+ #: facebook-messenger-customer-chat.php:70
27
  msgid "Settings"
28
  msgstr ""
29
 
30
+ #: facebook-messenger-customer-chat.php:77
31
  msgid "FAQ"
32
  msgstr ""
33
 
34
+ #: facebook-messenger-customer-chat.php:83
35
  msgid "Support"
36
  msgstr ""
37
 
38
+ #: facebook-messenger-customer-chat.php:173
39
+ msgid "Cancel"
40
+ msgstr ""
41
+
42
+ #: facebook-messenger-customer-chat.php:183
43
+ msgid "We value your feedback."
44
+ msgstr ""
45
+
46
+ #: facebook-messenger-customer-chat.php:188
47
+ msgid "Please let us know why you’re deactivating Facebook Chat Plugin."
48
+ msgstr ""
49
+
50
+ #: facebook-messenger-customer-chat.php:191
51
+ msgid "I’m unable to get the plugin to work"
52
+ msgstr ""
53
+
54
+ #: facebook-messenger-customer-chat.php:192
55
+ msgid "I no longer need a live chat feature"
56
+ msgstr ""
57
+
58
+ #: facebook-messenger-customer-chat.php:193
59
+ msgid "I’m using a different live chat plugin"
60
+ msgstr ""
61
+
62
+ #: facebook-messenger-customer-chat.php:198
63
+ msgid "Name of plugin:"
64
+ msgstr ""
65
+
66
+ #: facebook-messenger-customer-chat.php:199
67
+ msgid "This is a temporary deactivation. I’ll be back!"
68
+ msgstr ""
69
+
70
+ #: facebook-messenger-customer-chat.php:200
71
+ msgid "Other"
72
+ msgstr ""
73
+
74
+ #: facebook-messenger-customer-chat.php:205
75
+ msgid "Comments:"
76
+ msgstr ""
77
+
78
+ #: facebook-messenger-customer-chat.php:208
79
+ msgid "Submit"
80
+ msgstr ""
81
+
82
+ #: facebook-messenger-customer-chat.php:214
83
+ msgid "Thank you. We appreciate your feedback."
84
+ msgstr ""
85
+
86
+ #: options.php:22
87
+ msgid "Plugin Settings"
88
+ msgstr ""
89
+
90
+ #: options.php:23
91
+ msgid "Facebook Chat"
92
+ msgstr ""
93
+
94
+ #: options.php:106
95
  msgid "Facebook Chat Plugin Settings"
96
  msgstr ""
97
 
98
+ #: options.php:110
99
  msgid "Getting Started?"
100
  msgstr ""
101
 
102
+ #: options.php:111
103
  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."
104
  msgstr ""
105
 
112
  msgstr ""
113
 
114
  #: options.php:144
115
+ msgid "Setup status"
116
+ msgstr ""
117
+
118
+ #: options.php:145
119
  msgid "The plugin code has already been added into your website. You can always go back through the setup process to customize the plugin."
120
  msgstr ""
121
 
122
+ #: options.php:149
123
+ msgid "Advanced Configuration"
124
  msgstr ""
125
 
126
+ #: options.php:159
127
+ msgid "Deploy Chat plugin on:"
128
  msgstr ""
129
 
130
+ #: options.php:164
131
+ msgid "All pages"
132
  msgstr ""
133
 
134
+ #: options.php:168
135
+ msgid "Custom pages"
 
 
136
  msgstr ""
137
 
138
+ #: options.php:260
139
+ msgid "Product pages"
140
  msgstr ""
141
 
142
+ #: options.php:268
143
+ msgid "Error saving settings."
144
+ msgstr ""
145
+
146
+ #: options.php:270
147
+ msgid "Settings saved."
148
+ msgstr ""
149
+
150
+ #: options.php:272
151
+ msgid "Saving settings..."
152
+ msgstr ""
153
+
154
+ #: options.php:285
155
+ msgid "Use of this plugin is subject to Facebook's Platform Terms"
156
+ msgstr ""
157
+
158
+ #: options.php:287
159
+ msgid "Having a problem setting up or using the Chat Plugin?"
160
+ msgstr ""
161
+
162
+ #: options.php:291
163
+ msgid "Please consult our Troubleshooting Guide."
164
+ msgstr ""
165
+
166
+ #: options.php:294
167
+ msgid "If the troubleshooting steps in the guide do not solve your problem, please post in the plugin support forum."
168
  msgstr ""
options.php CHANGED
@@ -13,19 +13,16 @@
13
  */
14
 
15
  // Settings page
 
 
 
16
  add_action( 'admin_menu', function() {
17
- wp_register_script(
18
- 'launch_script',
19
- plugins_url( '/script.js?2', __FILE__ ),
20
- array( 'jquery' )
21
- );
22
- wp_enqueue_script( 'launch_script' );
23
 
24
  add_menu_page(
25
  'Plugin settings',
26
- 'Customer Chat',
27
  'manage_options',
28
- 'messenger-customer-chat-plugin',
29
  'fbmcc_integration_settings',
30
  'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgi'
31
  . 'Pz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRw'
@@ -45,17 +42,18 @@ add_action( 'admin_menu', function() {
45
  );
46
  });
47
 
48
- add_action( 'admin_enqueue_scripts', 'fbmcc_add_styles' );
49
- add_action( 'admin_enqueue_scripts', 'fmcc_localize_ajax' );
50
-
51
  add_action( 'wp_ajax_fbmcc_update_options', 'fbmcc_update_options');
 
 
52
 
53
  function fbmcc_update_options() {
54
 
55
  if ( current_user_can( 'manage_options' ) ) {
56
  check_ajax_referer( 'update_fmcc_code' );
57
- update_option( 'fbmcc_pageID', fbmcc_sanitize_page_id($_POST['pageID']));
58
- update_option( 'fbmcc_locale', fbmcc_sanitize_locale($_POST['locale']));
 
 
59
  }
60
  wp_die();
61
  }
@@ -81,40 +79,47 @@ function fbmcc_add_styles() {
81
  'fbmcc-admin-styles',
82
  plugins_url( '/settings.css', __FILE__ ),
83
  false,
84
- '1.0',
85
  'all'
86
  );
87
  }
88
 
89
  function fmcc_localize_ajax() {
90
 
 
 
 
91
  if ( current_user_can( 'manage_options' ) ) {
92
  $ajax_object = array(
93
  'nonce' => wp_create_nonce( 'update_fmcc_code' )
94
  );
95
-
96
- wp_register_script( 'code_script',
97
- plugin_dir_url( __FILE__ ) . 'script.js' );
98
  wp_localize_script( 'code_script', 'ajax_object', $ajax_object );
99
- wp_enqueue_script( 'code_script' );
100
  }
101
 
 
 
 
 
 
 
102
  }
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">
@@ -125,9 +130,9 @@ function fbmcc_integration_settings() {
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>
@@ -136,30 +141,164 @@ function fbmcc_integration_settings() {
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>
@@ -167,4 +306,5 @@ function fbmcc_integration_settings() {
167
  </div>
168
  </div>
169
  <?php }
 
170
  ?>
13
  */
14
 
15
  // Settings page
16
+
17
+ add_action( 'admin_enqueue_scripts', 'fbmcc_add_styles' );
18
+ add_action( 'admin_enqueue_scripts', 'fmcc_localize_ajax' );
19
  add_action( 'admin_menu', function() {
 
 
 
 
 
 
20
 
21
  add_menu_page(
22
  'Plugin settings',
23
+ 'Facebook Chat',
24
  'manage_options',
25
+ 'facebook-messenger-customer-chat',
26
  'fbmcc_integration_settings',
27
  'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgi'
28
  . 'Pz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRw'
42
  );
43
  });
44
 
 
 
 
45
  add_action( 'wp_ajax_fbmcc_update_options', 'fbmcc_update_options');
46
+ add_action( 'current_screen', array( $this, 'show_deactivation_feedback_form' ) );
47
+ add_action( 'plugins_loaded', array( $this, 'fbmcc_i18n' ) );
48
 
49
  function fbmcc_update_options() {
50
 
51
  if ( current_user_can( 'manage_options' ) ) {
52
  check_ajax_referer( 'update_fmcc_code' );
53
+
54
+ if ($_POST['pageTypes']) { update_option( 'fbmcc_page_types', $_POST['pageTypes']); }
55
+ if ($_POST['pageID']) { update_option( 'fbmcc_pageID', fbmcc_sanitize_page_id($_POST['pageID'])); }
56
+ if ($_POST['locale']) { update_option( 'fbmcc_locale', fbmcc_sanitize_locale($_POST['locale'])); }
57
  }
58
  wp_die();
59
  }
79
  'fbmcc-admin-styles',
80
  plugins_url( '/settings.css', __FILE__ ),
81
  false,
82
+ '2.1',
83
  'all'
84
  );
85
  }
86
 
87
  function fmcc_localize_ajax() {
88
 
89
+ wp_register_script( 'code_script',
90
+ plugin_dir_url( __FILE__ ) . 'script.js', '', '2.1' );
91
+
92
  if ( current_user_can( 'manage_options' ) ) {
93
  $ajax_object = array(
94
  'nonce' => wp_create_nonce( 'update_fmcc_code' )
95
  );
 
 
 
96
  wp_localize_script( 'code_script', 'ajax_object', $ajax_object );
 
97
  }
98
 
99
+ wp_enqueue_script( 'code_script' );
100
+
101
+ }
102
+
103
+ function fbmcc_i18n() {
104
+ load_plugin_textdomain( 'facebook-messenger-customer-chat', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
105
  }
106
 
107
  function fbmcc_integration_settings() {
108
+ $pages_arr = get_pages();
109
  ?>
110
  <div class="wrap">
111
+ <h2><?=esc_html__( 'Facebook Chat Plugin Settings', 'facebook-messenger-customer-chat' )?></h2>
112
  <div class="fbmcc-card card">
113
  <div class="intro">
114
  <div>
115
+ <h2><?=esc_html__( 'Getting Started?', 'facebook-messenger-customer-chat' )?></h2>
116
+ <p class="fbmcc-instructions"><?=esc_html__( 'Let people start a conversation on '.
117
+ 'your website and continue in Messenger. It\'s easy to set up. Chats '.
118
+ 'started on your website can be continued in the customers\' '.
119
+ 'Messenger app, so you never lose connections with your customers. '.
120
+ 'Even those without a Facebook Messenger account can chat with you '.
121
+ 'in guest mode, so you can reach more customers than ever.',
122
+ 'facebook-messenger-customer-chat' )?>
123
  </p>
124
  </div>
125
  <div class="fbmcc-buttonContainer">
130
  >
131
  <?php
132
  if( get_option( 'fbmcc_pageID' ) == "" ) {
133
+ _e( 'Setup Chat Plugin', 'facebook-messenger-customer-chat' );
134
  } else {
135
+ _e( 'Edit Chat Plugin', 'facebook-messenger-customer-chat' );
136
  }
137
  ?>
138
  </button>
141
  </div>
142
  <div
143
  id="fbmcc-page-params"
144
+ class="fbmcc-card card
145
  <?php if( get_option( 'fbmcc_pageID' ) == "" ) {
146
+ 'hidden';
147
+ } ?>">
148
  <div>
149
+ <h2><?=esc_html__( 'Setup status', 'facebook-messenger-customer-chat' )?></h2>
150
+ <p class="fbmcc-instructions"><?=esc_html__( 'The plugin code has already been added '.
151
+ 'into your website. You can always go back through the setup process '.
152
+ 'to customize the plugin.', 'facebook-messenger-customer-chat' )?>
153
  </p>
154
+ <h2><?=esc_html__( 'Advanced Configuration', 'facebook-messenger-customer-chat' )?></h2>
155
+ <?php
156
+ $fbmcc_page_types = get_option( 'fbmcc_page_types' );
157
+ $active_pages = $fbmcc_page_types['pages'];
158
+ if (!$active_pages) { $active_pages = Array(); }
159
+ ?>
160
+ <ul>
161
+ <li>
162
+ <table>
163
+ <tr>
164
+ <td><?=esc_html__( 'Deploy Chat plugin on:', 'facebook-messenger-customer-chat' )?></td>
165
+ <td>
166
+ <select id="fbmcc-deploymentSelector" class="fbmcc-displaySetting">
167
+ <option value="1"
168
+ <?php if ((!$fbmcc_page_types) || ($fbmcc_page_types['all'] == "1")) { echo "selected"; } ?>>
169
+ <?=esc_html__( 'All pages', 'facebook-messenger-customer-chat' )?>
170
+ </option>
171
+ <option value="2"
172
+ <?php if ($fbmcc_page_types['all'] == "0") { echo "selected"; } ?>>
173
+ <?=esc_html__( 'Custom pages', 'facebook-messenger-customer-chat' )?>
174
+ </option>
175
+ </select>
176
+ </td>
177
+ </tr>
178
+ <tr>
179
+ <td></td>
180
+ <td>
181
+ <div class="fbmcc-deploymentMenu
182
+ <?php if ((!$fbmcc_page_types) || ($fbmcc_page_types['all'] == "1")) { echo "hidden"; } ?>">
183
+ <ul>
184
+ <li>
185
+ <input type="checkbox" id="cbShowFrontPage" class="fbmcc-displaySetting"
186
+ <?php echo
187
+ ( isset($fbmcc_page_types['front_page'])
188
+ && ($fbmcc_page_types['front_page'] == "1") )
189
+ ? 'checked' : '';?>/>
190
+ Homepage
191
+ </li>
192
+ <li>
193
+ <input type="checkbox" id="cbShowPosts" class="fbmcc-displaySetting fbmcc-menuParentItem" />
194
+ <a
195
+ href="javascript:;"
196
+ id="fbmcc-postsSubmenuLink"
197
+ class="fbmcc-menuParentLink"
198
+ title="Click for granular options">
199
+ Posts
200
+ <img
201
+ src="<?=plugin_dir_url( __FILE__ ) . 'images/chevron-right.png';?>"
202
+ class="fbmcc-chevron" alt="&gt;" /></a>
203
+ <ul class="fbmcc-submenu hidden">
204
+ <li>
205
+ <input type="checkbox" id="cbShowSinglePostView" class="fbmcc-displaySetting fbmcc-submenuOption"
206
+ <?php echo
207
+ ( isset($fbmcc_page_types['posts'])
208
+ && ($fbmcc_page_types['posts'] == "1") )
209
+ ? 'checked' : '';?>/> Single post view
210
+ </li>
211
+ <li>
212
+ <input type="checkbox" id="cbShowCategoryIndex" class="fbmcc-displaySetting fbmcc-submenuOption"
213
+ <?php echo
214
+ ( isset($fbmcc_page_types['category_index'])
215
+ && ($fbmcc_page_types['category_index'] == "1") )
216
+ ? 'checked' : '';?>/> Category view
217
+ </li>
218
+ <li>
219
+ <input type="checkbox" id="cbShowTagsIndex" class="fbmcc-displaySetting fbmcc-submenuOption"
220
+ <?php echo
221
+ ( isset($fbmcc_page_types['tag_index'])
222
+ && ($fbmcc_page_types['tag_index'] == "1") )
223
+ ? 'checked' : '';?>/> Tags view
224
+ </li>
225
+ </ul>
226
+ </li>
227
+ <li>
228
+ <input type="checkbox" id="cbShowPages" class="fbmcc-displaySetting fbmcc-menuParentItem"
229
+ <?php echo
230
+ ( isset($fbmcc_page_types['pages_all'])
231
+ && ($fbmcc_page_types['pages_all'] == "1") )
232
+ ? 'checked' : '';?> />
233
+ <?php
234
+ if (empty($pages_arr)) {
235
+ ?>Pages<?php
236
+ } else {
237
+ ?><a href="javascript:;" id="fbmcc-pagesSubmenuLink" class="fbmcc-menuParentLink" title="Click for granular options">Pages <img src="<?php echo plugin_dir_url( __FILE__ ) . 'images/chevron-right.png'; ?>" class="fbmcc-chevron" alt="&gt;" /></a><?php
238
+ }
239
+ ?>
240
+ <ul class="fbmcc-submenu hidden">
241
+ <?php
242
+ foreach($pages_arr as $page) {
243
+ ?>
244
+ <li>
245
+ <input type="checkbox" id="pageid_<?php echo $page->ID; ?>" class="fbmcc-displaySetting fbmcc-submenuOption fbmcc-activePageOption"<?php
246
+ if( ($fbmcc_page_types['pages_all'] == "1") || (in_array( $page->ID, $active_pages )) ) {
247
+ echo 'checked';
248
+ }
249
+ ?>/> <?php echo $page->post_title; ?>
250
+ </li>
251
+ <?php
252
+ }
253
+ ?>
254
+ </ul>
255
+ </li>
256
+ <?php
257
+ if ( is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
258
+ ?>
259
+ <li>
260
+ <input type="checkbox" id="cbShowProductPages" class="fbmcc-displaySetting"
261
+ <?php echo
262
+ ( isset($fbmcc_page_types['product_pages'])
263
+ && ($fbmcc_page_types['product_pages'] == "1") )
264
+ ? 'checked' : '';?>/> WooCommerce
265
+ <?=esc_html__( 'Product pages', 'facebook-messenger-customer-chat' )?>
266
+ </li>
267
+ <?php
268
+ }
269
+ ?>
270
+ </ul>
271
+ </div>
272
+ <div id="fbmcc-saveStatus">
273
+ <div class="hidden" id="fbmcc-saveStatus-error">
274
+ <?=esc_html__( 'Error saving settings.', 'facebook-messenger-customer-chat' )?></div>
275
+ <div class="hidden" id="fbmcc-saveStatus-saved">
276
+ <?=esc_html__( 'Settings saved.', 'facebook-messenger-customer-chat' )?></div>
277
+ <div class="hidden" id="fbmcc-saveStatus-saving">
278
+ <?=esc_html__( 'Saving settings...', 'facebook-messenger-customer-chat' )?></div>
279
+ </div>
280
+ </td>
281
+ </tr>
282
+ </table>
283
+ </li>
284
+ </ul>
285
  </div>
286
  </div>
287
  <div class="fbmcc-card card">
288
  <div class="intro">
289
  <p class="fbmcc-instructions">
 
290
  <a href='https://developers.facebook.com/terms/'>
291
+ <?=esc_html__( 'Use of this plugin is subject to Facebook\'s Platform Terms',
292
+ 'facebook-messenger-customer-chat' )?></a><br><br>
293
+ <?=esc_html__( 'Having a problem setting up or using the Chat Plugin?',
294
+ 'facebook-messenger-customer-chat' )?><br>
295
  <ul>
296
+ <li><a href='https://www.facebook.com/business/help/789975831794468'>
297
+ <?=esc_html__( 'Please consult our Troubleshooting Guide.', 'facebook-messenger-customer-chat' )?></a>
298
  </li>
299
+ <li><a href='https://wordpress.org/support/plugin/facebook-messenger-customer-chat/'>
300
+ <?=esc_html__( 'If the troubleshooting steps in the guide do not solve your problem, please post '.
301
+ 'in the plugin support forum.', 'facebook-messenger-customer-chat' )?></a>
302
  </li>
303
  </ul>
304
  </p>
306
  </div>
307
  </div>
308
  <?php }
309
+
310
  ?>
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  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: 2.0
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
  = 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
@@ -133,6 +137,9 @@ If you get stuck, or have any questions, you can ask for help in the [Messenger
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
 
2
  Contributors: facebook
3
  Tags: Facebook, Messenger, Customer Care, Chat, Messaging, Chat Plugin
4
  Requires at least: 3.9
5
+ Tested up to: 5.7.1
6
+ Stable tag: 2.1
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.1 - May 1, 2021 =
93
+ * Tested up to WordPress 5.7.1
94
+ * Added new configuration options for admin to specify which pages to deploy the plugin on
95
+
96
  = 2.0 - Dec 1, 2020 =
97
  * Tested up to WordPress 5.5.3
98
  * Added translations for strings on admin panel settings and css fix
137
 
138
  == Upgrade Notice ==
139
 
140
+ = 2.1 =
141
+ * Added new configuration options for admin to specify which pages to deploy the plugin on. Tested up to WordPress 5.7.1
142
+
143
  = 2.0 =
144
  * Added translations for strings on admin panel settings and css fix. Tested up to WordPress 5.5.3
145
 
script.js CHANGED
@@ -62,3 +62,215 @@ function fbmcc_sanitizeLocale( locale ) {
62
  return '';
63
  }
64
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  return '';
63
  }
64
  }
65
+
66
+ (function($)
67
+ {
68
+ var ChatPlugin =
69
+ {
70
+ init: function()
71
+ {
72
+ this.advancedConfigDeploymentSelectorHandler();
73
+ this.advancedConfigMenuHandler();
74
+ this.advancedConfigWriteHandler();
75
+ this.deactivationFormSubmit();
76
+ this.deactivationModalOpenHandler();
77
+ this.deactivationModalCloseHandler();
78
+ this.deactivationModalFreetextOptionOpenHandler();
79
+
80
+ },
81
+
82
+ advancedConfigDeploymentSelectorHandler: function() {
83
+ $('#fbmcc-deploymentSelector').change( function () {
84
+ if ($(this).val() == 1) {
85
+ $('div.fbmcc-deploymentMenu').addClass("hidden");
86
+ } else {
87
+ $('div.fbmcc-deploymentMenu').removeClass("hidden");
88
+ }
89
+ })
90
+ },
91
+ advancedConfigMenuHandler: function() {
92
+ $('li .fbmcc-menuParentLink').click(
93
+ function () {
94
+ if ($(this).parent().find('ul.fbmcc-submenu').css("display") === "none") {
95
+ $(this).parent().find('img.fbmcc-chevron').attr("src", $(this).parent().find('img.fbmcc-chevron').attr("src").replace("chevron-right", "chevron-down"));
96
+ $(this).parent().find('ul.fbmcc-submenu').slideDown('slow', 'swing');
97
+ } else {
98
+ $(this).parent().find('img.fbmcc-chevron').attr("src", $(this).parent().find('img.fbmcc-chevron').attr("src").replace("chevron-down", "chevron-right"));
99
+ $(this).parent().find('ul.fbmcc-submenu').slideUp('slow', 'swing');
100
+ }
101
+ }
102
+ )
103
+ },
104
+ advancedConfigWriteHandler: function() {
105
+ $('div#fbmcc-page-params ul li .fbmcc-displaySetting').on('change',
106
+ function () {
107
+ var pages = [];
108
+ if ($(this).hasClass("fbmcc-menuParentItem")) {
109
+ that = $(this);
110
+ $(this).parent().find('ul.fbmcc-submenu').find('input:checkbox').each(function() {
111
+ if (that.is(":checked")) {
112
+ $(this).prop("checked", true);
113
+ } else {
114
+ $(this).prop("checked", false);
115
+ }
116
+ });
117
+ } else if ($(this).hasClass("fbmcc-submenuOption")) {
118
+ var has_selected_item = false;
119
+ var has_unselected_item = false;
120
+
121
+ $(this).parent().parent().find('input:checkbox.fbmcc-submenuOption').each(function() {
122
+ if ($(this).is(":checked")) {
123
+ has_selected_item = true;
124
+ if ($(this).hasClass("fbmcc-activePageOption")) {
125
+ pages.push($(this).attr('id').replace('pageid_', ''));
126
+ }
127
+ } else {
128
+ has_unselected_item = true;
129
+ }
130
+ });
131
+ if (has_selected_item && has_unselected_item) {
132
+ $(this).parent().parent().parent().find('input:checkbox.fbmcc-menuParentItem').prop({
133
+ checked: false,
134
+ indeterminate: true
135
+ });
136
+ }
137
+ }
138
+
139
+ var data = {
140
+ 'action' : 'fbmcc_update_options',
141
+ 'pageTypes' : {
142
+ all: $('#fbmcc-deploymentSelector').val() == 1 ? 1 : 0,
143
+ category_index : $("#cbShowCategoryIndex").is(":checked") ? 1 : 0,
144
+ front_page : $("#cbShowFrontPage").is(":checked") ? 1 : 0,
145
+ pages : $("#cbShowPages").is(":checked") ? [] : pages,
146
+ pages_all : $("#cbShowPages").is(":checked") ? 1 : 0,
147
+ posts : $("#cbShowSinglePostView").is(":checked") ? 1 : 0,
148
+ product_pages : $("#cbShowProductPages").is(":checked") ? 1 : 0,
149
+ tag_index : $("#cbShowTagsIndex").is(":checked") ? 1 : 0,
150
+ },
151
+ '_wpnonce' : ajax_object.nonce,
152
+ };
153
+ if (!$('div.fbmcc-deploymentMenu').hasClass("hidden")) {
154
+ $('#fbmcc-saveStatus-error').addClass('hidden');
155
+ $('#fbmcc-saveStatus-saved').addClass('hidden');
156
+ $('#fbmcc-saveStatus-saving').removeClass('hidden');
157
+ $('#fbmcc-saveStatus-saving').delay(2000).fadeOut();
158
+ }
159
+ jQuery.ajax({
160
+ type: 'POST',
161
+ url: ajaxurl,
162
+ data: data,
163
+ error: function(results) {
164
+ if (!$('div.fbmcc-deploymentMenu').hasClass("hidden")) {
165
+ $('#fbmcc-saveStatus-error').removeClass('hidden');
166
+ $('#fbmcc-saveStatus-saved').addClass('hidden');
167
+ $('#fbmcc-saveStatus-saving').addClass('hidden');
168
+ $('#fbmcc-saveStatus-error').delay(2000).fadeOut();
169
+ }
170
+ },
171
+ success: function(results) {
172
+ if (!$('div.fbmcc-deploymentMenu').hasClass("hidden")) {
173
+ $('#fbmcc-saveStatus-error').addClass('hidden');
174
+ $('#fbmcc-saveStatus-saved').removeClass('hidden');
175
+ $('#fbmcc-saveStatus-saving').addClass('hidden');
176
+ $('#fbmcc-saveStatus-saved').delay(2000).fadeOut();
177
+ }
178
+ }
179
+ });
180
+ }
181
+ )
182
+ },
183
+ deactivationFormSubmit: function() {
184
+ $( '#fbmcc-deactivationFormSubmit' ).click(
185
+ function () {
186
+ $('#fbmcc-deactivationFormSubmit').attr('disabled','disabled');
187
+ var reason = "";
188
+ if ($('input[name=fbmcc-deactivationReason]:checked', '#fbmcc-deactivationForm').val() == 3) {
189
+ reason = $('#fbmcc-deactivationReason-preferredPluginName').val();
190
+ } else if ($('input[name=fbmcc-deactivationReason]:checked', '#fbmcc-deactivationForm').val() == 5) {
191
+ reason = $('#fbmcc-deactivationReason-other').val();
192
+ }
193
+ $.ajax(
194
+ {
195
+ method: 'POST',
196
+ url: 'https://www.facebook.com/plugins/chat/wordpress_deactivation/',
197
+ data: $.param(
198
+ {
199
+ page_id: $('#fbmcc-deactivationForm-pageId').val(),
200
+ reason: reason,
201
+ selected_option: $('input[name=fbmcc-deactivationReason]:checked', '#fbmcc-deactivationForm').val()
202
+ }
203
+ ),
204
+ complete: function () {
205
+ $('#fbmcc-deactivationFormContainer').addClass('hidden');
206
+ $('#fbmcc-deactivationModal-thankYou').removeClass('hidden');
207
+ },
208
+ error: function () {
209
+ $('#fbmcc-deactivationFormContainer').addClass('hidden');
210
+ $('#fbmcc-deactivationModal-thankYou').removeClass('hidden');
211
+ }
212
+ }
213
+ );
214
+ }
215
+ )
216
+ },
217
+ deactivationModalOpenHandler: function() {
218
+ $('table.plugins tr[data-slug=facebook-messenger-customer-chat] span.deactivate a').click(
219
+ function (e) {
220
+ e.preventDefault();
221
+ $( '#fbmcc-deactivationModalOverlay' ).toggleClass( 'fbmcc-deactivationModalOverlay-display' );
222
+ }
223
+ )
224
+ },
225
+ deactivationModalCloseHandler: function() {
226
+ $('#fbmcc-deactivationModalOverlay').click(
227
+ function (e) {
228
+ if (
229
+ $('#fbmcc-deactivationModalOverlay').hasClass( 'fbmcc-deactivationModalOverlay-display' ) &&
230
+ (
231
+ ! $( e.target ).closest( '#fbmcc-deactivationModalContainer' ).length ||
232
+ $( e.target ).closest( '.fbmcc-deactivationModal-closeButton' ).length
233
+ )
234
+ ) {
235
+ $( '#fbmcc-deactivationModalOverlay' ).toggleClass( 'fbmcc-deactivationModalOverlay-display' );
236
+ return window.location.replace(
237
+ $( 'table.plugins tr[data-slug=facebook-messenger-customer-chat] span.deactivate a' ).attr( 'href' )
238
+ );
239
+ }
240
+ }
241
+ );
242
+ },
243
+ deactivationModalFreetextOptionOpenHandler: function() {
244
+ $("#fbmcc-deactivationModal ul li input[name='fbmcc-deactivationReason']").click(
245
+ function () {
246
+ $('div.fbmcc-deactivationReason-commentContainer').removeClass( 'fbmcc-display' );
247
+ $( '#fbmcc-deactivationReason-commentContainer'
248
+ + $('input[name=fbmcc-deactivationReason]:checked', '#fbmcc-deactivationForm').val() ).toggleClass( 'fbmcc-display' );
249
+ }
250
+ )
251
+ },
252
+ };
253
+
254
+ $( document ).ready(
255
+ function() {
256
+ ChatPlugin.init();
257
+ $('ul.fbmcc-submenu').each(function() {
258
+ var has_selected_item = false;
259
+ var has_unselected_item = false;
260
+
261
+ $(this).find('input:checkbox').each(function() {
262
+ if ($(this).is(":checked")) {
263
+ has_selected_item = true;
264
+ } else {
265
+ has_unselected_item = true;
266
+ }
267
+ });
268
+ if (has_selected_item && has_unselected_item) {
269
+ $(this).parent().find('input:checkbox.fbmcc-menuParentItem').prop({
270
+ checked: false,
271
+ indeterminate: true
272
+ });
273
+ }
274
+ })
275
+ });
276
+ })( jQuery );
settings.css CHANGED
@@ -40,7 +40,7 @@
40
 
41
  .fbmcc-setupButton {
42
  height: 28px;
43
- width: 148px;
44
  }
45
 
46
  .fbmcc-editButton {
@@ -120,3 +120,153 @@ input:checked + .fbmcc-slider:before {
120
  .fbmcc-slider.round:before {
121
  border-radius: 50%;
122
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
  .fbmcc-setupButton {
42
  height: 28px;
43
+ min-width: 148px;
44
  }
45
 
46
  .fbmcc-editButton {
120
  .fbmcc-slider.round:before {
121
  border-radius: 50%;
122
  }
123
+
124
+ .fbmcc-submenu {
125
+ background-color: #eee;
126
+ border-bottom: 1px solid #ccc;
127
+ border-top: 1px solid #ccc;
128
+ color: #777;
129
+ margin: 0;
130
+ padding: 2px 0;
131
+ }
132
+
133
+ #fbmcc-page-params input[type=checkbox] {
134
+ border-radius: 2px;
135
+ box-shadow: none;
136
+ margin-left: 20px;
137
+ }
138
+
139
+ #fbmcc-page-params input[type=checkbox]:indeterminate {
140
+ -webkit-appearance: auto;
141
+ }
142
+
143
+ a.fbmcc-menuParentLink {
144
+ font-weight: bold;
145
+ text-decoration: none;
146
+ }
147
+
148
+ .fbmcc-deploymentMenu {
149
+ border: 1px solid #ccc;
150
+ height: 300px;
151
+ overflow-y: scroll;
152
+ padding: 10px 0;
153
+ width: 260px;
154
+ }
155
+
156
+ .fbmcc-deploymentMenu li {
157
+ margin: 0;
158
+ padding: 4px 0;
159
+ }
160
+
161
+ #fbmcc-deactivationModal {
162
+ padding: 30px;
163
+ }
164
+
165
+ #fbmcc-deactivationModal h3 {
166
+ margin: 1em 0 0 0;
167
+ }
168
+
169
+ #fbmcc-deactivationModal p {
170
+ font-size: 12pt;
171
+ margin: 0.5em 0;
172
+ }
173
+
174
+ #fbmcc-deactivationModal form ul li {
175
+ font-size: 11pt;
176
+ padding-top: 5px;
177
+ }
178
+
179
+ #fbmcc-deactivationModalOverlay {
180
+ -webkit-box-align: center;
181
+ -webkit-box-pack: center;
182
+ align-items: center;
183
+ background-color: rgba(0,0,0,.5);
184
+ display: none;
185
+ height: 100%;
186
+ justify-content: center;
187
+ left: 0;
188
+ position: fixed;
189
+ top: 0;
190
+ width: 100%;
191
+ z-index: 2147483644;
192
+ }
193
+
194
+ #fbmcc-deactivationModalContainer {
195
+ position: relative;
196
+ display: -webkit-box;
197
+ display: flex;
198
+ -webkit-box-orient: vertical;
199
+ -webkit-box-direction: normal;
200
+ flex-direction: column;
201
+ margin: 10px;
202
+ max-width: 800px;
203
+ min-width: 400px;
204
+ border-radius: 4px;
205
+ box-shadow: 0 20px 60px 0 rgb(0 0 0 / 30%);
206
+ overflow: hidden;
207
+ background-color: #fff;
208
+ color: #424d57;
209
+ }
210
+
211
+ #fbmcc-deactivationModalOverlay.fbmcc-deactivationModalOverlay-display {
212
+ display: flex !important;
213
+ opacity: 1;
214
+ transition: opacity 1s;
215
+ }
216
+
217
+ .fbmcc-deactivationReason-commentContainer {
218
+ display: none;
219
+ margin: 4px 0 0 25px;
220
+ font-size: 11pt;
221
+ }
222
+
223
+ .fbmcc-deactivationReason-commentContainer input {
224
+ width: 250px;
225
+ }
226
+
227
+ .fbmcc-display {
228
+ display: block !important;
229
+ }
230
+
231
+ #fbmcc-saveStatus {
232
+ height: 12px;
233
+ }
234
+
235
+ #fbmcc-saveStatus div {
236
+ padding: 2px 5px;
237
+ }
238
+
239
+ #fbmcc-saveStatus-error {
240
+ background-color: #fbb;
241
+ color: #700;
242
+ }
243
+
244
+ #fbmcc-saveStatus-saved {
245
+ background-color: #bfb;
246
+ color: #070;
247
+ }
248
+
249
+ #fbmcc-saveStatus-saving {
250
+ background-color: #ffb;
251
+ color: #770;
252
+ }
253
+
254
+ .fbmcc-deactivationModal-closeButton {
255
+ position: absolute;
256
+ z-index: 1;
257
+ right: 18px;
258
+ top: 18px;
259
+ -webkit-box-pack: center;
260
+ justify-content: center;
261
+ -webkit-box-align: center;
262
+ align-items: center;
263
+ width: 24px;
264
+ height: 24px;
265
+ padding: 0;
266
+ border: none;
267
+ background-color: transparent;
268
+ box-shadow: none;
269
+ opacity: .5;
270
+ outline: none;
271
+ cursor: pointer;
272
+ }