Version Description
Download this release
Release Info
Developer | |
Plugin | Official Facebook Pixel |
Version | 1.7.20 |
Comparing to | |
See all releases |
Code changes from version 1.7.19 to 1.7.20
- changelog.txt +3 -0
- core/FacebookPluginConfig.php +4 -2
- FacebookForWordpress.php → facebook-for-wordpress.php +2 -2
- integration/FacebookWordpressMailchimpForWp.php +57 -0
- integration/FacebookWordpressWPECommerce.php +168 -0
- languages/official-facebook-pixel-ar_AR.mo +0 -0
- languages/official-facebook-pixel-ar_AR.po +20 -10
- languages/official-facebook-pixel-cs_CZ.mo +0 -0
- languages/official-facebook-pixel-cs_CZ.po +19 -11
- languages/official-facebook-pixel-da_DK.mo +0 -0
- languages/official-facebook-pixel-da_DK.po +19 -11
- languages/official-facebook-pixel-de_DE.mo +0 -0
- languages/official-facebook-pixel-de_DE.po +19 -11
- languages/official-facebook-pixel-en_GB.mo +0 -0
- languages/official-facebook-pixel-en_GB.po +19 -11
- languages/official-facebook-pixel-es_ES.mo +0 -0
- languages/official-facebook-pixel-es_ES.po +20 -10
- languages/official-facebook-pixel-es_LA.mo +0 -0
- languages/official-facebook-pixel-es_LA.po +20 -10
- languages/official-facebook-pixel-fi_FI.mo +0 -0
- languages/official-facebook-pixel-fi_FI.po +20 -10
- languages/official-facebook-pixel-fr_CA.mo +0 -0
- languages/official-facebook-pixel-fr_CA.po +20 -10
- languages/official-facebook-pixel-fr_FR.mo +0 -0
- languages/official-facebook-pixel-fr_FR.po +20 -10
- languages/official-facebook-pixel-he_IL.mo +0 -0
- languages/official-facebook-pixel-he_IL.po +20 -10
- languages/official-facebook-pixel-it_IT.mo +0 -0
- languages/official-facebook-pixel-it_IT.po +20 -10
- languages/official-facebook-pixel-ja_JP.mo +0 -0
- languages/official-facebook-pixel-ja_JP.po +20 -10
- languages/official-facebook-pixel-ko_KR.mo +0 -0
- languages/official-facebook-pixel-ko_KR.po +20 -10
- languages/official-facebook-pixel-nb_NO.mo +0 -0
- languages/official-facebook-pixel-nb_NO.po +20 -10
- languages/official-facebook-pixel-nl_NL.mo +0 -0
- languages/official-facebook-pixel-nl_NL.po +20 -10
- languages/official-facebook-pixel-pl_PL.mo +0 -0
- languages/official-facebook-pixel-pl_PL.po +20 -10
- languages/official-facebook-pixel-pt_BR.mo +0 -0
- languages/official-facebook-pixel-pt_BR.po +20 -10
- languages/official-facebook-pixel-pt_PT.mo +0 -0
- languages/official-facebook-pixel-pt_PT.po +20 -10
- languages/official-facebook-pixel-ru_RU.mo +0 -0
- languages/official-facebook-pixel-ru_RU.po +20 -10
- languages/official-facebook-pixel-sv_SE.mo +0 -0
- languages/official-facebook-pixel-sv_SE.po +20 -10
- languages/official-facebook-pixel-th_TH.mo +0 -0
- languages/official-facebook-pixel-th_TH.po +18 -9
- languages/official-facebook-pixel-tr_TR.mo +0 -0
- languages/official-facebook-pixel-tr_TR.po +20 -10
- languages/official-facebook-pixel-vi_VN.mo +0 -0
- languages/official-facebook-pixel-vi_VN.po +20 -10
- languages/official-facebook-pixel-zh_CN.mo +0 -0
- languages/official-facebook-pixel-zh_CN.po +20 -10
- languages/official-facebook-pixel-zh_TW.mo +0 -0
- languages/official-facebook-pixel-zh_TW.po +20 -10
- languages/official-facebook-pixel.pot +13 -10
- readme.txt +16 -3
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +3 -3
changelog.txt
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
*** Facebook for WordPress Changelog ***
|
|
|
|
|
|
|
2 |
2018-11-20 version 1.7.19
|
3 |
* Support php 5.3 onwards
|
4 |
|
1 |
*** Facebook for WordPress Changelog ***
|
2 |
+
2018-11-28 version 1.7.20
|
3 |
+
* Change plugin file name, Add Supports for MailChimp for WordPress and WP eCommerce
|
4 |
+
|
5 |
2018-11-20 version 1.7.19
|
6 |
* Support php 5.3 onwards
|
7 |
|
core/FacebookPluginConfig.php
CHANGED
@@ -20,14 +20,14 @@ namespace FacebookPixelPlugin\Core;
|
|
20 |
defined('ABSPATH') or die('Direct access not allowed');
|
21 |
|
22 |
class FacebookPluginConfig {
|
23 |
-
const PLUGIN_VERSION = '1.7.
|
24 |
const SOURCE = 'wordpress';
|
25 |
const TEXT_DOMAIN = 'official-facebook-pixel';
|
26 |
|
27 |
const ADMIN_CAPABILITY = 'manage_options';
|
28 |
const ADMIN_DISMISS_PIXEL_ID_NOTICE = 'dismiss_pixel_id_notice';
|
29 |
const ADMIN_IGNORE_PIXEL_ID_NOTICE = 'ignore_pixel_id_notice';
|
30 |
-
const ADMIN_MENU_SLUG = '
|
31 |
const ADMIN_MENU_TITLE = 'Facebook Pixel';
|
32 |
const ADMIN_OPTION_GROUP = 'facebook_option_group';
|
33 |
const ADMIN_PAGE_TITLE = 'Facebook Pixel Settings';
|
@@ -48,8 +48,10 @@ class FacebookPluginConfig {
|
|
48 |
return array(
|
49 |
'CONTACT_FORM_7' => 'FacebookWordpressContactForm7',
|
50 |
'EASY_DIGITAL_DOWNLOAD' => 'FacebookWordpressEasyDigitalDownloads',
|
|
|
51 |
'NINJA_FORMS' => 'FacebookWordpressNinjaForms',
|
52 |
'WPFORMS' => 'FacebookWordpressWPForms',
|
|
|
53 |
);
|
54 |
}
|
55 |
}
|
20 |
defined('ABSPATH') or die('Direct access not allowed');
|
21 |
|
22 |
class FacebookPluginConfig {
|
23 |
+
const PLUGIN_VERSION = '1.7.20';
|
24 |
const SOURCE = 'wordpress';
|
25 |
const TEXT_DOMAIN = 'official-facebook-pixel';
|
26 |
|
27 |
const ADMIN_CAPABILITY = 'manage_options';
|
28 |
const ADMIN_DISMISS_PIXEL_ID_NOTICE = 'dismiss_pixel_id_notice';
|
29 |
const ADMIN_IGNORE_PIXEL_ID_NOTICE = 'ignore_pixel_id_notice';
|
30 |
+
const ADMIN_MENU_SLUG = 'facebook_pixel_options';
|
31 |
const ADMIN_MENU_TITLE = 'Facebook Pixel';
|
32 |
const ADMIN_OPTION_GROUP = 'facebook_option_group';
|
33 |
const ADMIN_PAGE_TITLE = 'Facebook Pixel Settings';
|
48 |
return array(
|
49 |
'CONTACT_FORM_7' => 'FacebookWordpressContactForm7',
|
50 |
'EASY_DIGITAL_DOWNLOAD' => 'FacebookWordpressEasyDigitalDownloads',
|
51 |
+
'MAILCHIMP_FOR_WP' => 'FacebookWordpressMailchimpForWp',
|
52 |
'NINJA_FORMS' => 'FacebookWordpressNinjaForms',
|
53 |
'WPFORMS' => 'FacebookWordpressWPForms',
|
54 |
+
'WP_E_COMMERCE' => 'FacebookWordpressWPECommerce',
|
55 |
);
|
56 |
}
|
57 |
}
|
FacebookForWordpress.php → facebook-for-wordpress.php
RENAMED
@@ -2,10 +2,10 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Official Facebook Pixel
|
4 |
* Plugin URI: https://www.facebook.com/business/help/881403525362441
|
5 |
-
* Description: The Facebook pixel is an analytics tool that helps you measure the effectiveness of your advertising. You can use the Facebook pixel to understand the actions people are taking on your website and reach audiences you care about.
|
6 |
* Author: Facebook
|
7 |
* Author URI: https://www.facebook.com/
|
8 |
-
* Version: 1.7.
|
9 |
* Text Domain: official-facebook-pixel
|
10 |
*/
|
11 |
|
2 |
/**
|
3 |
* Plugin Name: Official Facebook Pixel
|
4 |
* Plugin URI: https://www.facebook.com/business/help/881403525362441
|
5 |
+
* Description: <strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to a known issue, to workaround please refresh this page and activate plugin.***</em></strong> The Facebook pixel is an analytics tool that helps you measure the effectiveness of your advertising. You can use the Facebook pixel to understand the actions people are taking on your website and reach audiences you care about.
|
6 |
* Author: Facebook
|
7 |
* Author URI: https://www.facebook.com/
|
8 |
+
* Version: 1.7.20
|
9 |
* Text Domain: official-facebook-pixel
|
10 |
*/
|
11 |
|
integration/FacebookWordpressMailchimpForWp.php
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
* Copyright (C) 2017-present, Facebook, Inc.
|
4 |
+
*
|
5 |
+
* This program is free software; you can redistribute it and/or modify
|
6 |
+
* it under the terms of the GNU General Public License as published by
|
7 |
+
* the Free Software Foundation; version 2 of the License.
|
8 |
+
* This program is distributed in the hope that it will be useful,
|
9 |
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10 |
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11 |
+
* GNU General Public License for more details.
|
12 |
+
*/
|
13 |
+
|
14 |
+
/**
|
15 |
+
* @package FacebookPixelPlugin
|
16 |
+
*/
|
17 |
+
|
18 |
+
namespace FacebookPixelPlugin\Integration;
|
19 |
+
|
20 |
+
defined('ABSPATH') or die('Direct access not allowed');
|
21 |
+
|
22 |
+
use FacebookPixelPlugin\Core\FacebookPixel;
|
23 |
+
|
24 |
+
class FacebookWordpressMailchimpForWp extends FacebookWordpressIntegrationBase {
|
25 |
+
const PLUGIN_FILE = 'mailchimp-for-wp/mailchimp-for-wp.php';
|
26 |
+
const TRACKING_NAME = 'mailchimp-for-wp';
|
27 |
+
|
28 |
+
public static function injectPixelCode() {
|
29 |
+
add_action(
|
30 |
+
'mc4wp_form_subscribed',
|
31 |
+
array(__CLASS__, 'injectLeadEventHook'),
|
32 |
+
11);
|
33 |
+
}
|
34 |
+
|
35 |
+
public static function injectLeadEventHook() {
|
36 |
+
add_action(
|
37 |
+
'wp_footer',
|
38 |
+
array(__CLASS__, 'injectLeadEvent'),
|
39 |
+
11);
|
40 |
+
}
|
41 |
+
|
42 |
+
public static function injectLeadEvent() {
|
43 |
+
if (is_admin()) {
|
44 |
+
return;
|
45 |
+
}
|
46 |
+
|
47 |
+
$code = FacebookPixel::getPixelLeadCode(array(), self::TRACKING_NAME, false);
|
48 |
+
printf("
|
49 |
+
<!-- Facebook Pixel Event Code -->
|
50 |
+
<script>
|
51 |
+
%s
|
52 |
+
</script>
|
53 |
+
<!-- End Facebook Pixel Event Code -->
|
54 |
+
",
|
55 |
+
$code);
|
56 |
+
}
|
57 |
+
}
|
integration/FacebookWordpressWPECommerce.php
ADDED
@@ -0,0 +1,168 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
* Copyright (C) 2017-present, Facebook, Inc.
|
4 |
+
*
|
5 |
+
* This program is free software; you can redistribute it and/or modify
|
6 |
+
* it under the terms of the GNU General Public License as published by
|
7 |
+
* the Free Software Foundation; version 2 of the License.
|
8 |
+
* This program is distributed in the hope that it will be useful,
|
9 |
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10 |
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11 |
+
* GNU General Public License for more details.
|
12 |
+
*/
|
13 |
+
|
14 |
+
/**
|
15 |
+
* @package FacebookPixelPlugin
|
16 |
+
*/
|
17 |
+
|
18 |
+
namespace FacebookPixelPlugin\Integration;
|
19 |
+
|
20 |
+
defined('ABSPATH') or die('Direct access not allowed');
|
21 |
+
|
22 |
+
use FacebookPixelPlugin\Core\FacebookPixel;
|
23 |
+
|
24 |
+
class FacebookWordpressWPECommerce extends FacebookWordpressIntegrationBase {
|
25 |
+
const PLUGIN_FILE = 'wp-e-commerce/wp-e-commerce.php';
|
26 |
+
const TRACKING_NAME = 'wp-e-commerce';
|
27 |
+
|
28 |
+
private static $addToCartJS = "
|
29 |
+
jQuery(function($) {
|
30 |
+
$('.wpsc_buy_button').click(function() {
|
31 |
+
var item_group = $(this).parents('.group');
|
32 |
+
var form = item_group.find('.product_form');
|
33 |
+
var content_id = form[0].attributes['name'].value;
|
34 |
+
|
35 |
+
var prodtitle = item_group.find('.wpsc_product_title');
|
36 |
+
var content_name = prodtitle[0].innerText;
|
37 |
+
|
38 |
+
var current_price = item_group.find('.currentprice');
|
39 |
+
var value = current_price[0].innerText.slice(1);
|
40 |
+
|
41 |
+
var param = {
|
42 |
+
'content_ids': [content_id],
|
43 |
+
'content_name': content_name,
|
44 |
+
'content_type': 'product',
|
45 |
+
'%s': '%s',
|
46 |
+
'value': value
|
47 |
+
};
|
48 |
+
if (value) {
|
49 |
+
param['currency'] = 'USD';
|
50 |
+
}
|
51 |
+
|
52 |
+
%s
|
53 |
+
})
|
54 |
+
})
|
55 |
+
";
|
56 |
+
|
57 |
+
public static function injectPixelCode() {
|
58 |
+
// AddToCart
|
59 |
+
add_action(
|
60 |
+
'wpsc_product_form_fields_begin',
|
61 |
+
array(__CLASS__, 'injectAddToCartEventHook'),
|
62 |
+
11);
|
63 |
+
|
64 |
+
|
65 |
+
// InitiateCheckout
|
66 |
+
add_action(
|
67 |
+
'wpsc_before_shopping_cart_page',
|
68 |
+
array(__CLASS__, 'injectInitiateCheckoutEventHook'),
|
69 |
+
11);
|
70 |
+
|
71 |
+
// Purchase
|
72 |
+
add_action(
|
73 |
+
'wpsc_transaction_results_shutdown',
|
74 |
+
array(__CLASS__, 'injectPurchaseEvent'), 11, 3);
|
75 |
+
}
|
76 |
+
|
77 |
+
// Event hook for AddToCart.
|
78 |
+
public static function injectAddToCartEventHook() {
|
79 |
+
add_action(
|
80 |
+
'wp_footer',
|
81 |
+
array(__CLASS__, 'injectAddToCartEvent'),
|
82 |
+
11);
|
83 |
+
}
|
84 |
+
|
85 |
+
public static function injectAddToCartEvent() {
|
86 |
+
if (is_admin()) {
|
87 |
+
return;
|
88 |
+
}
|
89 |
+
|
90 |
+
$pixel_code = FacebookPixel::getPixelAddToCartCode('param', self::TRACKING_NAME, false);
|
91 |
+
$listener_code = sprintf(
|
92 |
+
self::$addToCartJS,
|
93 |
+
FacebookPixel::FB_INTEGRATION_TRACKING_KEY,
|
94 |
+
self::TRACKING_NAME,
|
95 |
+
$pixel_code);
|
96 |
+
|
97 |
+
printf("
|
98 |
+
<!-- Facebook Pixel Event Code -->
|
99 |
+
<script>
|
100 |
+
%s
|
101 |
+
</script>
|
102 |
+
<!-- End Facebook Pixel Event Code -->
|
103 |
+
",
|
104 |
+
$listener_code);
|
105 |
+
}
|
106 |
+
|
107 |
+
// Event hook for InitiateCheckout.
|
108 |
+
public static function injectInitiateCheckoutEventHook() {
|
109 |
+
add_action(
|
110 |
+
'wp_footer',
|
111 |
+
array(__CLASS__, 'injectInitiateCheckoutEvent'),
|
112 |
+
11);
|
113 |
+
}
|
114 |
+
|
115 |
+
public static function injectInitiateCheckoutEvent() {
|
116 |
+
if (is_admin()) {
|
117 |
+
return;
|
118 |
+
}
|
119 |
+
|
120 |
+
$code = FacebookPixel::getPixelInitiateCheckoutCode(array(), self::TRACKING_NAME, false);
|
121 |
+
printf("
|
122 |
+
<!-- Facebook Pixel Event Code -->
|
123 |
+
<script>
|
124 |
+
%s
|
125 |
+
</script>
|
126 |
+
<!-- End Facebook Pixel Event Code -->
|
127 |
+
",
|
128 |
+
$code);
|
129 |
+
}
|
130 |
+
|
131 |
+
public static function injectPurchaseEvent($purchase_log_object, $session_id, $display_to_screen) {
|
132 |
+
if (is_admin() || !$display_to_screen) {
|
133 |
+
return;
|
134 |
+
}
|
135 |
+
|
136 |
+
$params = self::getParameters($purchase_log_object);
|
137 |
+
$code = FacebookPixel::getPixelPurchaseCode($params, self::TRACKING_NAME, true);
|
138 |
+
|
139 |
+
printf("
|
140 |
+
<!-- Facebook Pixel Event Code -->
|
141 |
+
%s
|
142 |
+
<!-- End Facebook Pixel Event Code -->
|
143 |
+
",
|
144 |
+
$code);
|
145 |
+
}
|
146 |
+
|
147 |
+
private static function getParameters($purchase_log_object) {
|
148 |
+
$cart_items = $purchase_log_object->get_items();
|
149 |
+
$total_price = $purchase_log_object->get_total();
|
150 |
+
$currency = function_exists('\wpsc_get_currency_code') ? \wpsc_get_currency_code() : 'Unknown';
|
151 |
+
$item_ids = array();
|
152 |
+
|
153 |
+
foreach ($cart_items as $item) {
|
154 |
+
// This is for backwards compatibility
|
155 |
+
$item_array = (array) $item;
|
156 |
+
$item_ids[] = $item_array['prodid'];
|
157 |
+
}
|
158 |
+
|
159 |
+
$params = array(
|
160 |
+
'content_ids' => $item_ids,
|
161 |
+
'content_type' => 'product',
|
162 |
+
'currency' => $currency,
|
163 |
+
'value' => $total_price,
|
164 |
+
);
|
165 |
+
|
166 |
+
return $params;
|
167 |
+
}
|
168 |
+
}
|
languages/official-facebook-pixel-ar_AR.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-ar_AR.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ar_AR\n"
|
@@ -21,7 +21,7 @@ msgstr "لا تمتلك أذونات كافية للوصول إلى هذه ال
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -58,7 +58,9 @@ msgid "Dismiss this notice."
|
|
58 |
msgstr "تجاهل هذا الإشعار."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
-
|
|
|
|
|
62 |
msgstr "بيكسل فيسبوك"
|
63 |
|
64 |
#. Plugin URI of the plugin/theme
|
@@ -66,11 +68,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
66 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
67 |
|
68 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid ""
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
|
|
|
|
74 |
msgstr ""
|
75 |
"يعتبر بيكسل فيسبوك أداة تحليلات تساعدك على قياس فاعلية إعلانك. يمكنك استخدام "
|
76 |
"بيكسل فيسبوك في التعرف على الإجراءات التي يتخذها الأشخاص على موقعك على ا "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:47-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ar_AR\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
58 |
msgstr "تجاهل هذا الإشعار."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
+
#, fuzzy
|
62 |
+
#| msgid "Facebook Pixel"
|
63 |
+
msgid "Official Facebook Pixel"
|
64 |
msgstr "بيكسل فيسبوك"
|
65 |
|
66 |
#. Plugin URI of the plugin/theme
|
68 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
69 |
|
70 |
#. Description of the plugin/theme
|
71 |
+
#, fuzzy
|
72 |
+
#| msgid ""
|
73 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
74 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
75 |
+
#| "understand the actions people are taking on your website and reach "
|
76 |
+
#| "audiences you care about."
|
77 |
msgid ""
|
78 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
79 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
80 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
81 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
82 |
+
"pixel to understand the actions people are taking on your website and reach "
|
83 |
+
"audiences you care about."
|
84 |
msgstr ""
|
85 |
"يعتبر بيكسل فيسبوك أداة تحليلات تساعدك على قياس فاعلية إعلانك. يمكنك استخدام "
|
86 |
"بيكسل فيسبوك في التعرف على الإجراءات التي يتخذها الأشخاص على موقعك على ا "
|
languages/official-facebook-pixel-cs_CZ.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-cs_CZ.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: cs_CZ\n"
|
@@ -21,7 +21,7 @@ msgstr "Nemáte dostatečná oprávnění k přístupu na tuto stránku"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -58,19 +58,27 @@ msgid "Dismiss this notice."
|
|
58 |
msgstr "Toto upozornění ignorujte."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
-
msgid "Facebook Pixel"
|
62 |
-
msgstr "Facebook pixel"
|
63 |
|
64 |
#. Plugin URI of the plugin/theme
|
65 |
msgid "https://www.facebook.com/business/help/881403525362441"
|
66 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
67 |
|
68 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid ""
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
|
|
|
|
74 |
msgstr ""
|
75 |
"Facebook pixel je analytický nástroj, který vám pomůže měřit efektivitu "
|
76 |
"vašich reklam. Pomocí něho porozumíte akcím, které lidé na vašem webu "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:31-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: cs_CZ\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
58 |
msgstr "Toto upozornění ignorujte."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
+
msgid "Official Facebook Pixel"
|
62 |
+
msgstr "Official Facebook pixel"
|
63 |
|
64 |
#. Plugin URI of the plugin/theme
|
65 |
msgid "https://www.facebook.com/business/help/881403525362441"
|
66 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
67 |
|
68 |
#. Description of the plugin/theme
|
69 |
+
#, fuzzy
|
70 |
+
#| msgid ""
|
71 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
72 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
73 |
+
#| "understand the actions people are taking on your website and reach "
|
74 |
+
#| "audiences you care about."
|
75 |
msgid ""
|
76 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
77 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
78 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
79 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
80 |
+
"pixel to understand the actions people are taking on your website and reach "
|
81 |
+
"audiences you care about."
|
82 |
msgstr ""
|
83 |
"Facebook pixel je analytický nástroj, který vám pomůže měřit efektivitu "
|
84 |
"vašich reklam. Pomocí něho porozumíte akcím, které lidé na vašem webu "
|
languages/official-facebook-pixel-da_DK.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-da_DK.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: da_DK\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
-
"Please note that we are now also supporting
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
@@ -59,19 +59,27 @@ msgid "Dismiss this notice."
|
|
59 |
msgstr "Afvis meddelelsen."
|
60 |
|
61 |
#. Plugin Name of the plugin/theme
|
62 |
-
msgid "Facebook Pixel"
|
63 |
-
msgstr "Facebook-pixel"
|
64 |
|
65 |
#. Plugin URI of the plugin/theme
|
66 |
msgid "https://www.facebook.com/business/help/881403525362441"
|
67 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
68 |
|
69 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
msgid ""
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
74 |
-
"
|
|
|
|
|
75 |
msgstr ""
|
76 |
"Facebook-pixlen er et analyseværktøj, der hjælper dig med at måle "
|
77 |
"effektiviteten af din annoncering. Du kan bruge Facebook-pixlen til at "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:31-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: da_DK\n"
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
59 |
msgstr "Afvis meddelelsen."
|
60 |
|
61 |
#. Plugin Name of the plugin/theme
|
62 |
+
msgid "Official Facebook Pixel"
|
63 |
+
msgstr "Official Facebook-pixel"
|
64 |
|
65 |
#. Plugin URI of the plugin/theme
|
66 |
msgid "https://www.facebook.com/business/help/881403525362441"
|
67 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
68 |
|
69 |
#. Description of the plugin/theme
|
70 |
+
#, fuzzy
|
71 |
+
#| msgid ""
|
72 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
73 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
74 |
+
#| "understand the actions people are taking on your website and reach "
|
75 |
+
#| "audiences you care about."
|
76 |
msgid ""
|
77 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
78 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
79 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
80 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
81 |
+
"pixel to understand the actions people are taking on your website and reach "
|
82 |
+
"audiences you care about."
|
83 |
msgstr ""
|
84 |
"Facebook-pixlen er et analyseværktøj, der hjælper dig med at måle "
|
85 |
"effektiviteten af din annoncering. Du kan bruge Facebook-pixlen til at "
|
languages/official-facebook-pixel-de_DE.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-de_DE.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: de_DE\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
-
"Please note that we are now also supporting
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
@@ -61,19 +61,27 @@ msgid "Dismiss this notice."
|
|
61 |
msgstr "Diese Nachricht schließen."
|
62 |
|
63 |
#. Plugin Name of the plugin/theme
|
64 |
-
msgid "Facebook Pixel"
|
65 |
-
msgstr "Facebook-Pixel"
|
66 |
|
67 |
#. Plugin URI of the plugin/theme
|
68 |
msgid "https://www.facebook.com/business/help/881403525362441"
|
69 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
70 |
|
71 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
msgid ""
|
73 |
-
"
|
74 |
-
"
|
75 |
-
"
|
76 |
-
"
|
|
|
|
|
77 |
msgstr ""
|
78 |
"Das Facebook-Pixel ist ein Analysetool, mit dem du die Effektivität deiner "
|
79 |
"Werbemaßnahmen messen kannst. Verwende das Facebook-Pixel, um zu verstehen, "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:31-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: de_DE\n"
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
61 |
msgstr "Diese Nachricht schließen."
|
62 |
|
63 |
#. Plugin Name of the plugin/theme
|
64 |
+
msgid "Official Facebook Pixel"
|
65 |
+
msgstr "Official Facebook-Pixel"
|
66 |
|
67 |
#. Plugin URI of the plugin/theme
|
68 |
msgid "https://www.facebook.com/business/help/881403525362441"
|
69 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
70 |
|
71 |
#. Description of the plugin/theme
|
72 |
+
#, fuzzy
|
73 |
+
#| msgid ""
|
74 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
75 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
76 |
+
#| "understand the actions people are taking on your website and reach "
|
77 |
+
#| "audiences you care about."
|
78 |
msgid ""
|
79 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
80 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
81 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
82 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
83 |
+
"pixel to understand the actions people are taking on your website and reach "
|
84 |
+
"audiences you care about."
|
85 |
msgstr ""
|
86 |
"Das Facebook-Pixel ist ein Analysetool, mit dem du die Effektivität deiner "
|
87 |
"Werbemaßnahmen messen kannst. Verwende das Facebook-Pixel, um zu verstehen, "
|
languages/official-facebook-pixel-en_GB.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-en_GB.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: en_GB\n"
|
@@ -21,7 +21,7 @@ msgstr "You do not have sufficient permissions to access this Page"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -58,19 +58,27 @@ msgid "Dismiss this notice."
|
|
58 |
msgstr "Dismiss this notice."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
-
msgid "Facebook Pixel"
|
62 |
-
msgstr "Facebook pixel"
|
63 |
|
64 |
#. Plugin URI of the plugin/theme
|
65 |
msgid "https://www.facebook.com/business/help/881403525362441"
|
66 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
67 |
|
68 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid ""
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
|
|
|
|
74 |
msgstr ""
|
75 |
"The Facebook pixel is an analytics tool that helps you measure the "
|
76 |
"effectiveness of your advertising. You can use the Facebook pixel to "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:32-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: en_GB\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
58 |
msgstr "Dismiss this notice."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
+
msgid "Official Facebook Pixel"
|
62 |
+
msgstr "Official Facebook pixel"
|
63 |
|
64 |
#. Plugin URI of the plugin/theme
|
65 |
msgid "https://www.facebook.com/business/help/881403525362441"
|
66 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
67 |
|
68 |
#. Description of the plugin/theme
|
69 |
+
#, fuzzy
|
70 |
+
#| msgid ""
|
71 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
72 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
73 |
+
#| "understand the actions people are taking on your website and reach "
|
74 |
+
#| "audiences you care about."
|
75 |
msgid ""
|
76 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
77 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
78 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
79 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
80 |
+
"pixel to understand the actions people are taking on your website and reach "
|
81 |
+
"audiences you care about."
|
82 |
msgstr ""
|
83 |
"The Facebook pixel is an analytics tool that helps you measure the "
|
84 |
"effectiveness of your advertising. You can use the Facebook pixel to "
|
languages/official-facebook-pixel-es_ES.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-es_ES.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: es_ES\n"
|
@@ -21,7 +21,7 @@ msgstr "No tienes suficientes permisos para acceder a esta página."
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -61,7 +61,9 @@ msgid "Dismiss this notice."
|
|
61 |
msgstr "Ignorar este aviso."
|
62 |
|
63 |
#. Plugin Name of the plugin/theme
|
64 |
-
|
|
|
|
|
65 |
msgstr "Píxel de Facebook"
|
66 |
|
67 |
#. Plugin URI of the plugin/theme
|
@@ -69,11 +71,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
69 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
70 |
|
71 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
msgid ""
|
73 |
-
"
|
74 |
-
"
|
75 |
-
"
|
76 |
-
"
|
|
|
|
|
77 |
msgstr ""
|
78 |
"El píxel de Facebook es una herramienta de análisis que te ayuda a "
|
79 |
"determinar la eficacia de tu publicidad. Puedes utilizar el píxel de "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:33-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: es_ES\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
61 |
msgstr "Ignorar este aviso."
|
62 |
|
63 |
#. Plugin Name of the plugin/theme
|
64 |
+
#, fuzzy
|
65 |
+
#| msgid "Facebook Pixel"
|
66 |
+
msgid "Official Facebook Pixel"
|
67 |
msgstr "Píxel de Facebook"
|
68 |
|
69 |
#. Plugin URI of the plugin/theme
|
71 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
72 |
|
73 |
#. Description of the plugin/theme
|
74 |
+
#, fuzzy
|
75 |
+
#| msgid ""
|
76 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
77 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
78 |
+
#| "understand the actions people are taking on your website and reach "
|
79 |
+
#| "audiences you care about."
|
80 |
msgid ""
|
81 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
82 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
83 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
84 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
85 |
+
"pixel to understand the actions people are taking on your website and reach "
|
86 |
+
"audiences you care about."
|
87 |
msgstr ""
|
88 |
"El píxel de Facebook es una herramienta de análisis que te ayuda a "
|
89 |
"determinar la eficacia de tu publicidad. Puedes utilizar el píxel de "
|
languages/official-facebook-pixel-es_LA.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-es_LA.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: es_LA\n"
|
@@ -21,7 +21,7 @@ msgstr "No tienes permisos suficientes para acceder a esta página"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -59,7 +59,9 @@ msgid "Dismiss this notice."
|
|
59 |
msgstr "Ignorar este aviso."
|
60 |
|
61 |
#. Plugin Name of the plugin/theme
|
62 |
-
|
|
|
|
|
63 |
msgstr "Píxel de Facebook"
|
64 |
|
65 |
#. Plugin URI of the plugin/theme
|
@@ -67,11 +69,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
67 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
68 |
|
69 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
msgid ""
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
74 |
-
"
|
|
|
|
|
75 |
msgstr ""
|
76 |
"El píxel de Facebook es una herramienta de análisis con la que podrás medir "
|
77 |
"la eficacia de tu publicidad. Puedes usar el píxel de Facebook para conocer "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:33-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: es_LA\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
59 |
msgstr "Ignorar este aviso."
|
60 |
|
61 |
#. Plugin Name of the plugin/theme
|
62 |
+
#, fuzzy
|
63 |
+
#| msgid "Facebook Pixel"
|
64 |
+
msgid "Official Facebook Pixel"
|
65 |
msgstr "Píxel de Facebook"
|
66 |
|
67 |
#. Plugin URI of the plugin/theme
|
69 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
70 |
|
71 |
#. Description of the plugin/theme
|
72 |
+
#, fuzzy
|
73 |
+
#| msgid ""
|
74 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
75 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
76 |
+
#| "understand the actions people are taking on your website and reach "
|
77 |
+
#| "audiences you care about."
|
78 |
msgid ""
|
79 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
80 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
81 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
82 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
83 |
+
"pixel to understand the actions people are taking on your website and reach "
|
84 |
+
"audiences you care about."
|
85 |
msgstr ""
|
86 |
"El píxel de Facebook es una herramienta de análisis con la que podrás medir "
|
87 |
"la eficacia de tu publicidad. Puedes usar el píxel de Facebook para conocer "
|
languages/official-facebook-pixel-fi_FI.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-fi_FI.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fi_FI\n"
|
@@ -21,7 +21,7 @@ msgstr "Sinulla ei ole riittävää käyttölupaa tälle sivulle."
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -59,7 +59,9 @@ msgid "Dismiss this notice."
|
|
59 |
msgstr "Ohita tämä ilmoitus."
|
60 |
|
61 |
#. Plugin Name of the plugin/theme
|
62 |
-
|
|
|
|
|
63 |
msgstr "Facebook-pikseli"
|
64 |
|
65 |
#. Plugin URI of the plugin/theme
|
@@ -67,11 +69,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
67 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
68 |
|
69 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
msgid ""
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
74 |
-
"
|
|
|
|
|
75 |
msgstr ""
|
76 |
"Facebook-pikseli on analytiikkatyökalu, joka auttaa sinua mittaamaan "
|
77 |
"mainontasi tehokkuutta. Voit käyttää Facebook-pikseliä, jotta voit selvittää "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:33-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fi_FI\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
59 |
msgstr "Ohita tämä ilmoitus."
|
60 |
|
61 |
#. Plugin Name of the plugin/theme
|
62 |
+
#, fuzzy
|
63 |
+
#| msgid "Facebook Pixel"
|
64 |
+
msgid "Official Facebook Pixel"
|
65 |
msgstr "Facebook-pikseli"
|
66 |
|
67 |
#. Plugin URI of the plugin/theme
|
69 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
70 |
|
71 |
#. Description of the plugin/theme
|
72 |
+
#, fuzzy
|
73 |
+
#| msgid ""
|
74 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
75 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
76 |
+
#| "understand the actions people are taking on your website and reach "
|
77 |
+
#| "audiences you care about."
|
78 |
msgid ""
|
79 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
80 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
81 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
82 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
83 |
+
"pixel to understand the actions people are taking on your website and reach "
|
84 |
+
"audiences you care about."
|
85 |
msgstr ""
|
86 |
"Facebook-pikseli on analytiikkatyökalu, joka auttaa sinua mittaamaan "
|
87 |
"mainontasi tehokkuutta. Voit käyttää Facebook-pikseliä, jotta voit selvittää "
|
languages/official-facebook-pixel-fr_CA.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-fr_CA.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fr_CA\n"
|
@@ -21,7 +21,7 @@ msgstr "Vous n’avez pas d’autorisations suffisantes pour accéder à cette p
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -61,7 +61,9 @@ msgid "Dismiss this notice."
|
|
61 |
msgstr "Ignorer cet avis"
|
62 |
|
63 |
#. Plugin Name of the plugin/theme
|
64 |
-
|
|
|
|
|
65 |
msgstr "Pixel Facebook"
|
66 |
|
67 |
#. Plugin URI of the plugin/theme
|
@@ -69,11 +71,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
69 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
70 |
|
71 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
msgid ""
|
73 |
-
"
|
74 |
-
"
|
75 |
-
"
|
76 |
-
"
|
|
|
|
|
77 |
msgstr ""
|
78 |
"Le pixel Facebook est un outil d’analyse qui vous aide à mesurer "
|
79 |
"l’efficacité de vos publicités. Vous pouvez l’utiliser pour comprendre les "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:33-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fr_CA\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
61 |
msgstr "Ignorer cet avis"
|
62 |
|
63 |
#. Plugin Name of the plugin/theme
|
64 |
+
#, fuzzy
|
65 |
+
#| msgid "Facebook Pixel"
|
66 |
+
msgid "Official Facebook Pixel"
|
67 |
msgstr "Pixel Facebook"
|
68 |
|
69 |
#. Plugin URI of the plugin/theme
|
71 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
72 |
|
73 |
#. Description of the plugin/theme
|
74 |
+
#, fuzzy
|
75 |
+
#| msgid ""
|
76 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
77 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
78 |
+
#| "understand the actions people are taking on your website and reach "
|
79 |
+
#| "audiences you care about."
|
80 |
msgid ""
|
81 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
82 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
83 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
84 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
85 |
+
"pixel to understand the actions people are taking on your website and reach "
|
86 |
+
"audiences you care about."
|
87 |
msgstr ""
|
88 |
"Le pixel Facebook est un outil d’analyse qui vous aide à mesurer "
|
89 |
"l’efficacité de vos publicités. Vous pouvez l’utiliser pour comprendre les "
|
languages/official-facebook-pixel-fr_FR.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-fr_FR.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fr_FR\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
-
"Please note that we are now also supporting
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
@@ -62,7 +62,9 @@ msgid "Dismiss this notice."
|
|
62 |
msgstr "Ignorer cet avertissement."
|
63 |
|
64 |
#. Plugin Name of the plugin/theme
|
65 |
-
|
|
|
|
|
66 |
msgstr "PixelFacebook"
|
67 |
|
68 |
#. Plugin URI of the plugin/theme
|
@@ -70,11 +72,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
70 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
71 |
|
72 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
msgid ""
|
74 |
-
"
|
75 |
-
"
|
76 |
-
"
|
77 |
-
"
|
|
|
|
|
78 |
msgstr ""
|
79 |
"Le pixel Facebook est un outil d’analyse qui vous permet de mesurer "
|
80 |
"l’efficacité de vos publicités. Vous pouvez utiliser le pixel Facebook pour "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:34-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fr_FR\n"
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
62 |
msgstr "Ignorer cet avertissement."
|
63 |
|
64 |
#. Plugin Name of the plugin/theme
|
65 |
+
#, fuzzy
|
66 |
+
#| msgid "Facebook Pixel"
|
67 |
+
msgid "Official Facebook Pixel"
|
68 |
msgstr "PixelFacebook"
|
69 |
|
70 |
#. Plugin URI of the plugin/theme
|
72 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
73 |
|
74 |
#. Description of the plugin/theme
|
75 |
+
#, fuzzy
|
76 |
+
#| msgid ""
|
77 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
78 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
79 |
+
#| "understand the actions people are taking on your website and reach "
|
80 |
+
#| "audiences you care about."
|
81 |
msgid ""
|
82 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
83 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
84 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
85 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
86 |
+
"pixel to understand the actions people are taking on your website and reach "
|
87 |
+
"audiences you care about."
|
88 |
msgstr ""
|
89 |
"Le pixel Facebook est un outil d’analyse qui vous permet de mesurer "
|
90 |
"l’efficacité de vos publicités. Vous pouvez utiliser le pixel Facebook pour "
|
languages/official-facebook-pixel-he_IL.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-he_IL.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: he_IL\n"
|
@@ -21,7 +21,7 @@ msgstr "אין לך הרשאות מספיקות כדי לגשת לדף זה"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -57,7 +57,9 @@ msgid "Dismiss this notice."
|
|
57 |
msgstr "התעלם מהודעה זו."
|
58 |
|
59 |
#. Plugin Name of the plugin/theme
|
60 |
-
|
|
|
|
|
61 |
msgstr "פיקסל פייסבוק"
|
62 |
|
63 |
#. Plugin URI of the plugin/theme
|
@@ -65,11 +67,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
65 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
66 |
|
67 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid ""
|
69 |
-
"
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
|
|
|
|
73 |
msgstr ""
|
74 |
"פיקסל פייסבוק הוא כלי ניתוח שעוזר לך למדוד את האפקטיביות של הפרסום שלך. ניתן "
|
75 |
"להשתמש בפיקסל פייסבוק כדי להבין את הפעולות שאנשים מבצעים באתר שלך ולהגיע "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:34-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: he_IL\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
57 |
msgstr "התעלם מהודעה זו."
|
58 |
|
59 |
#. Plugin Name of the plugin/theme
|
60 |
+
#, fuzzy
|
61 |
+
#| msgid "Facebook Pixel"
|
62 |
+
msgid "Official Facebook Pixel"
|
63 |
msgstr "פיקסל פייסבוק"
|
64 |
|
65 |
#. Plugin URI of the plugin/theme
|
67 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
68 |
|
69 |
#. Description of the plugin/theme
|
70 |
+
#, fuzzy
|
71 |
+
#| msgid ""
|
72 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
73 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
74 |
+
#| "understand the actions people are taking on your website and reach "
|
75 |
+
#| "audiences you care about."
|
76 |
msgid ""
|
77 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
78 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
79 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
80 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
81 |
+
"pixel to understand the actions people are taking on your website and reach "
|
82 |
+
"audiences you care about."
|
83 |
msgstr ""
|
84 |
"פיקסל פייסבוק הוא כלי ניתוח שעוזר לך למדוד את האפקטיביות של הפרסום שלך. ניתן "
|
85 |
"להשתמש בפיקסל פייסבוק כדי להבין את הפעולות שאנשים מבצעים באתר שלך ולהגיע "
|
languages/official-facebook-pixel-it_IT.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-it_IT.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: it_IT\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
-
"Please note that we are now also supporting
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
@@ -61,7 +61,9 @@ msgid "Dismiss this notice."
|
|
61 |
msgstr "Ignora questa notifica."
|
62 |
|
63 |
#. Plugin Name of the plugin/theme
|
64 |
-
|
|
|
|
|
65 |
msgstr "Pixel di Facebook"
|
66 |
|
67 |
#. Plugin URI of the plugin/theme
|
@@ -69,11 +71,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
69 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
70 |
|
71 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
msgid ""
|
73 |
-
"
|
74 |
-
"
|
75 |
-
"
|
76 |
-
"
|
|
|
|
|
77 |
msgstr ""
|
78 |
"Il pixel di Facebook è uno strumento per la raccolta di dati statistici che "
|
79 |
"ti consente di misurare l'efficacia della tua pubblicità. Puoi usare il "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:34-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: it_IT\n"
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
61 |
msgstr "Ignora questa notifica."
|
62 |
|
63 |
#. Plugin Name of the plugin/theme
|
64 |
+
#, fuzzy
|
65 |
+
#| msgid "Facebook Pixel"
|
66 |
+
msgid "Official Facebook Pixel"
|
67 |
msgstr "Pixel di Facebook"
|
68 |
|
69 |
#. Plugin URI of the plugin/theme
|
71 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
72 |
|
73 |
#. Description of the plugin/theme
|
74 |
+
#, fuzzy
|
75 |
+
#| msgid ""
|
76 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
77 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
78 |
+
#| "understand the actions people are taking on your website and reach "
|
79 |
+
#| "audiences you care about."
|
80 |
msgid ""
|
81 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
82 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
83 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
84 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
85 |
+
"pixel to understand the actions people are taking on your website and reach "
|
86 |
+
"audiences you care about."
|
87 |
msgstr ""
|
88 |
"Il pixel di Facebook è uno strumento per la raccolta di dati statistici che "
|
89 |
"ti consente di misurare l'efficacia della tua pubblicità. Puoi usare il "
|
languages/official-facebook-pixel-ja_JP.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-ja_JP.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ja_JP\n"
|
@@ -21,7 +21,7 @@ msgstr "このページにアクセスするための十分な権限がありま
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -58,7 +58,9 @@ msgid "Dismiss this notice."
|
|
58 |
msgstr "この通知を破棄します。"
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
-
|
|
|
|
|
62 |
msgstr "Facebookピクセル"
|
63 |
|
64 |
#. Plugin URI of the plugin/theme
|
@@ -66,11 +68,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
66 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
67 |
|
68 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid ""
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
|
|
|
|
74 |
msgstr ""
|
75 |
"Facebookピクセルは、広告の効果を測定できる分析ツールです。Facebookピクセルを"
|
76 |
"利用すると、ウェブサイト利用者のアクションを把握したり、狙いどおりのターゲッ"
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:32-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ja_JP\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
58 |
msgstr "この通知を破棄します。"
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
+
#, fuzzy
|
62 |
+
#| msgid "Facebook Pixel"
|
63 |
+
msgid "Official Facebook Pixel"
|
64 |
msgstr "Facebookピクセル"
|
65 |
|
66 |
#. Plugin URI of the plugin/theme
|
68 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
69 |
|
70 |
#. Description of the plugin/theme
|
71 |
+
#, fuzzy
|
72 |
+
#| msgid ""
|
73 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
74 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
75 |
+
#| "understand the actions people are taking on your website and reach "
|
76 |
+
#| "audiences you care about."
|
77 |
msgid ""
|
78 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
79 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
80 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
81 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
82 |
+
"pixel to understand the actions people are taking on your website and reach "
|
83 |
+
"audiences you care about."
|
84 |
msgstr ""
|
85 |
"Facebookピクセルは、広告の効果を測定できる分析ツールです。Facebookピクセルを"
|
86 |
"利用すると、ウェブサイト利用者のアクションを把握したり、狙いどおりのターゲッ"
|
languages/official-facebook-pixel-ko_KR.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-ko_KR.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ko_KR\n"
|
@@ -21,7 +21,7 @@ msgstr "이 페이지 액세스를 위한 권한이 충분하지 않습니다."
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -57,7 +57,9 @@ msgid "Dismiss this notice."
|
|
57 |
msgstr "이 공지를 무시합니다."
|
58 |
|
59 |
#. Plugin Name of the plugin/theme
|
60 |
-
|
|
|
|
|
61 |
msgstr "Facebook 픽셀"
|
62 |
|
63 |
#. Plugin URI of the plugin/theme
|
@@ -65,11 +67,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
65 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
66 |
|
67 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid ""
|
69 |
-
"
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
|
|
|
|
73 |
msgstr ""
|
74 |
"Facebook 픽셀은 광고 효과를 측정하도록 도와주는 분석 도구입니다. Facebook 픽"
|
75 |
"셀을 사용하여 웹사이트에서 사람들이 취하는 행동을 이해하고 중요한 타겟에 도달"
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:34-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ko_KR\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
57 |
msgstr "이 공지를 무시합니다."
|
58 |
|
59 |
#. Plugin Name of the plugin/theme
|
60 |
+
#, fuzzy
|
61 |
+
#| msgid "Facebook Pixel"
|
62 |
+
msgid "Official Facebook Pixel"
|
63 |
msgstr "Facebook 픽셀"
|
64 |
|
65 |
#. Plugin URI of the plugin/theme
|
67 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
68 |
|
69 |
#. Description of the plugin/theme
|
70 |
+
#, fuzzy
|
71 |
+
#| msgid ""
|
72 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
73 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
74 |
+
#| "understand the actions people are taking on your website and reach "
|
75 |
+
#| "audiences you care about."
|
76 |
msgid ""
|
77 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
78 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
79 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
80 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
81 |
+
"pixel to understand the actions people are taking on your website and reach "
|
82 |
+
"audiences you care about."
|
83 |
msgstr ""
|
84 |
"Facebook 픽셀은 광고 효과를 측정하도록 도와주는 분석 도구입니다. Facebook 픽"
|
85 |
"셀을 사용하여 웹사이트에서 사람들이 취하는 행동을 이해하고 중요한 타겟에 도달"
|
languages/official-facebook-pixel-nb_NO.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-nb_NO.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: nb_NO\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
-
"Please note that we are now also supporting
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
@@ -59,7 +59,9 @@ msgid "Dismiss this notice."
|
|
59 |
msgstr "Avvis dette varselet."
|
60 |
|
61 |
#. Plugin Name of the plugin/theme
|
62 |
-
|
|
|
|
|
63 |
msgstr "Facebook-piksel"
|
64 |
|
65 |
#. Plugin URI of the plugin/theme
|
@@ -67,11 +69,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
67 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
68 |
|
69 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
msgid ""
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
74 |
-
"
|
|
|
|
|
75 |
msgstr ""
|
76 |
"Facebook-pikselen er et analyseverktøy som hjelper deg med å måle virkningen "
|
77 |
"av annonseringen din. Du kan bruke Facebook-pikselen til å forstå "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:35-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: nb_NO\n"
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
59 |
msgstr "Avvis dette varselet."
|
60 |
|
61 |
#. Plugin Name of the plugin/theme
|
62 |
+
#, fuzzy
|
63 |
+
#| msgid "Facebook Pixel"
|
64 |
+
msgid "Official Facebook Pixel"
|
65 |
msgstr "Facebook-piksel"
|
66 |
|
67 |
#. Plugin URI of the plugin/theme
|
69 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
70 |
|
71 |
#. Description of the plugin/theme
|
72 |
+
#, fuzzy
|
73 |
+
#| msgid ""
|
74 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
75 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
76 |
+
#| "understand the actions people are taking on your website and reach "
|
77 |
+
#| "audiences you care about."
|
78 |
msgid ""
|
79 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
80 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
81 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
82 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
83 |
+
"pixel to understand the actions people are taking on your website and reach "
|
84 |
+
"audiences you care about."
|
85 |
msgstr ""
|
86 |
"Facebook-pikselen er et analyseverktøy som hjelper deg med å måle virkningen "
|
87 |
"av annonseringen din. Du kan bruke Facebook-pikselen til å forstå "
|
languages/official-facebook-pixel-nl_NL.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-nl_NL.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: nl_NL\n"
|
@@ -21,7 +21,7 @@ msgstr "Je hebt niet voldoende toestemmingen om deze pagina te bekijken."
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -60,7 +60,9 @@ msgid "Dismiss this notice."
|
|
60 |
msgstr "Deze kennisgeving negeren."
|
61 |
|
62 |
#. Plugin Name of the plugin/theme
|
63 |
-
|
|
|
|
|
64 |
msgstr "Facebook-pixel"
|
65 |
|
66 |
#. Plugin URI of the plugin/theme
|
@@ -68,11 +70,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
68 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
69 |
|
70 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
msgid ""
|
72 |
-
"
|
73 |
-
"
|
74 |
-
"
|
75 |
-
"
|
|
|
|
|
76 |
msgstr ""
|
77 |
"De Facebook-pixel is een hulpmiddel voor analyse waarmee je de effectiviteit "
|
78 |
"van je advertenties kunt meten. Je kunt de Facebook-pixel gebruiken om "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:36-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: nl_NL\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
60 |
msgstr "Deze kennisgeving negeren."
|
61 |
|
62 |
#. Plugin Name of the plugin/theme
|
63 |
+
#, fuzzy
|
64 |
+
#| msgid "Facebook Pixel"
|
65 |
+
msgid "Official Facebook Pixel"
|
66 |
msgstr "Facebook-pixel"
|
67 |
|
68 |
#. Plugin URI of the plugin/theme
|
70 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
71 |
|
72 |
#. Description of the plugin/theme
|
73 |
+
#, fuzzy
|
74 |
+
#| msgid ""
|
75 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
76 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
77 |
+
#| "understand the actions people are taking on your website and reach "
|
78 |
+
#| "audiences you care about."
|
79 |
msgid ""
|
80 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
81 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
82 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
83 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
84 |
+
"pixel to understand the actions people are taking on your website and reach "
|
85 |
+
"audiences you care about."
|
86 |
msgstr ""
|
87 |
"De Facebook-pixel is een hulpmiddel voor analyse waarmee je de effectiviteit "
|
88 |
"van je advertenties kunt meten. Je kunt de Facebook-pixel gebruiken om "
|
languages/official-facebook-pixel-pl_PL.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-pl_PL.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pl_PL\n"
|
@@ -21,7 +21,7 @@ msgstr "Nie masz wystarczających uprawnień, żeby przejść do tej strony"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -60,7 +60,9 @@ msgid "Dismiss this notice."
|
|
60 |
msgstr "Odrzuć to powiadomienie."
|
61 |
|
62 |
#. Plugin Name of the plugin/theme
|
63 |
-
|
|
|
|
|
64 |
msgstr "Piksel Facebooka"
|
65 |
|
66 |
#. Plugin URI of the plugin/theme
|
@@ -68,11 +70,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
68 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
69 |
|
70 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
msgid ""
|
72 |
-
"
|
73 |
-
"
|
74 |
-
"
|
75 |
-
"
|
|
|
|
|
76 |
msgstr ""
|
77 |
"Piksel Facebooka jest narzędziem analitycznym ułatwiającym mierzenie "
|
78 |
"skuteczności reklam. Piksel Facebooka pomaga lepiej zrozumieć działania "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:36-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pl_PL\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
60 |
msgstr "Odrzuć to powiadomienie."
|
61 |
|
62 |
#. Plugin Name of the plugin/theme
|
63 |
+
#, fuzzy
|
64 |
+
#| msgid "Facebook Pixel"
|
65 |
+
msgid "Official Facebook Pixel"
|
66 |
msgstr "Piksel Facebooka"
|
67 |
|
68 |
#. Plugin URI of the plugin/theme
|
70 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
71 |
|
72 |
#. Description of the plugin/theme
|
73 |
+
#, fuzzy
|
74 |
+
#| msgid ""
|
75 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
76 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
77 |
+
#| "understand the actions people are taking on your website and reach "
|
78 |
+
#| "audiences you care about."
|
79 |
msgid ""
|
80 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
81 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
82 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
83 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
84 |
+
"pixel to understand the actions people are taking on your website and reach "
|
85 |
+
"audiences you care about."
|
86 |
msgstr ""
|
87 |
"Piksel Facebooka jest narzędziem analitycznym ułatwiającym mierzenie "
|
88 |
"skuteczności reklam. Piksel Facebooka pomaga lepiej zrozumieć działania "
|
languages/official-facebook-pixel-pt_BR.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-pt_BR.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pt_BR\n"
|
@@ -21,7 +21,7 @@ msgstr "Você não tem permissões suficientes para acessar esta página"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -58,7 +58,9 @@ msgid "Dismiss this notice."
|
|
58 |
msgstr "Ignore esta notificação."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
-
|
|
|
|
|
62 |
msgstr "Pixel do Facebook"
|
63 |
|
64 |
#. Plugin URI of the plugin/theme
|
@@ -66,11 +68,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
66 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
67 |
|
68 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid ""
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
|
|
|
|
74 |
msgstr ""
|
75 |
"O pixel do Facebook é uma ferramenta de análise que ajuda a mensurar a "
|
76 |
"eficácia de sua publicidade. Você pode usar o pixel do Facebook para "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:36-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pt_BR\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
58 |
msgstr "Ignore esta notificação."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
+
#, fuzzy
|
62 |
+
#| msgid "Facebook Pixel"
|
63 |
+
msgid "Official Facebook Pixel"
|
64 |
msgstr "Pixel do Facebook"
|
65 |
|
66 |
#. Plugin URI of the plugin/theme
|
68 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
69 |
|
70 |
#. Description of the plugin/theme
|
71 |
+
#, fuzzy
|
72 |
+
#| msgid ""
|
73 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
74 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
75 |
+
#| "understand the actions people are taking on your website and reach "
|
76 |
+
#| "audiences you care about."
|
77 |
msgid ""
|
78 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
79 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
80 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
81 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
82 |
+
"pixel to understand the actions people are taking on your website and reach "
|
83 |
+
"audiences you care about."
|
84 |
msgstr ""
|
85 |
"O pixel do Facebook é uma ferramenta de análise que ajuda a mensurar a "
|
86 |
"eficácia de sua publicidade. Você pode usar o pixel do Facebook para "
|
languages/official-facebook-pixel-pt_PT.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-pt_PT.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pt_PT\n"
|
@@ -21,7 +21,7 @@ msgstr "Não tens permissões suficientes para aceder a esta página"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -58,7 +58,9 @@ msgid "Dismiss this notice."
|
|
58 |
msgstr "Ignora esta notificação."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
-
|
|
|
|
|
62 |
msgstr "Píxel do Facebook"
|
63 |
|
64 |
#. Plugin URI of the plugin/theme
|
@@ -66,11 +68,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
66 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
67 |
|
68 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid ""
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
|
|
|
|
74 |
msgstr ""
|
75 |
"O Píxel do Facebook é uma ferramenta de análise que te ajuda a medir a "
|
76 |
"eficácia da tua publicidade. Podes utilizar o Píxel do Facebook para saber "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:36-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pt_PT\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
58 |
msgstr "Ignora esta notificação."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
+
#, fuzzy
|
62 |
+
#| msgid "Facebook Pixel"
|
63 |
+
msgid "Official Facebook Pixel"
|
64 |
msgstr "Píxel do Facebook"
|
65 |
|
66 |
#. Plugin URI of the plugin/theme
|
68 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
69 |
|
70 |
#. Description of the plugin/theme
|
71 |
+
#, fuzzy
|
72 |
+
#| msgid ""
|
73 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
74 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
75 |
+
#| "understand the actions people are taking on your website and reach "
|
76 |
+
#| "audiences you care about."
|
77 |
msgid ""
|
78 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
79 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
80 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
81 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
82 |
+
"pixel to understand the actions people are taking on your website and reach "
|
83 |
+
"audiences you care about."
|
84 |
msgstr ""
|
85 |
"O Píxel do Facebook é uma ferramenta de análise que te ajuda a medir a "
|
86 |
"eficácia da tua publicidade. Podes utilizar o Píxel do Facebook para saber "
|
languages/official-facebook-pixel-ru_RU.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-ru_RU.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ru_RU\n"
|
@@ -21,7 +21,7 @@ msgstr "У вас нет разрешения на просмотр этой с
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -57,7 +57,9 @@ msgid "Dismiss this notice."
|
|
57 |
msgstr "Пропустить напоминание."
|
58 |
|
59 |
#. Plugin Name of the plugin/theme
|
60 |
-
|
|
|
|
|
61 |
msgstr "Пиксель Facebook"
|
62 |
|
63 |
#. Plugin URI of the plugin/theme
|
@@ -65,11 +67,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
65 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
66 |
|
67 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid ""
|
69 |
-
"
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
|
|
|
|
73 |
msgstr ""
|
74 |
"Пиксель Facebook — это инструмент аналитики, позволяющий измерять "
|
75 |
"эффективность рекламы. С его помощью вы сможете лучше отслеживать действия "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:37-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ru_RU\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
57 |
msgstr "Пропустить напоминание."
|
58 |
|
59 |
#. Plugin Name of the plugin/theme
|
60 |
+
#, fuzzy
|
61 |
+
#| msgid "Facebook Pixel"
|
62 |
+
msgid "Official Facebook Pixel"
|
63 |
msgstr "Пиксель Facebook"
|
64 |
|
65 |
#. Plugin URI of the plugin/theme
|
67 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
68 |
|
69 |
#. Description of the plugin/theme
|
70 |
+
#, fuzzy
|
71 |
+
#| msgid ""
|
72 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
73 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
74 |
+
#| "understand the actions people are taking on your website and reach "
|
75 |
+
#| "audiences you care about."
|
76 |
msgid ""
|
77 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
78 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
79 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
80 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
81 |
+
"pixel to understand the actions people are taking on your website and reach "
|
82 |
+
"audiences you care about."
|
83 |
msgstr ""
|
84 |
"Пиксель Facebook — это инструмент аналитики, позволяющий измерять "
|
85 |
"эффективность рекламы. С его помощью вы сможете лучше отслеживать действия "
|
languages/official-facebook-pixel-sv_SE.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-sv_SE.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: sv_SE\n"
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
-
"Please note that we are now also supporting
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
@@ -58,7 +58,9 @@ msgid "Dismiss this notice."
|
|
58 |
msgstr "Stäng den här aviseringen."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
-
|
|
|
|
|
62 |
msgstr "Facebook-pixel"
|
63 |
|
64 |
#. Plugin URI of the plugin/theme
|
@@ -66,11 +68,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
66 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
67 |
|
68 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid ""
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"
|
|
|
|
|
74 |
msgstr ""
|
75 |
"Facebook-pixeln är ett analysverktyg som hjälper dig mäta hur effektiva dina "
|
76 |
"annonser är. Du kan använda Facebook-pixeln för att förstå vilka aktiviteter "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:37-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: sv_SE\n"
|
22 |
|
23 |
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
58 |
msgstr "Stäng den här aviseringen."
|
59 |
|
60 |
#. Plugin Name of the plugin/theme
|
61 |
+
#, fuzzy
|
62 |
+
#| msgid "Facebook Pixel"
|
63 |
+
msgid "Official Facebook Pixel"
|
64 |
msgstr "Facebook-pixel"
|
65 |
|
66 |
#. Plugin URI of the plugin/theme
|
68 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
69 |
|
70 |
#. Description of the plugin/theme
|
71 |
+
#, fuzzy
|
72 |
+
#| msgid ""
|
73 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
74 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
75 |
+
#| "understand the actions people are taking on your website and reach "
|
76 |
+
#| "audiences you care about."
|
77 |
msgid ""
|
78 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
79 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
80 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
81 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
82 |
+
"pixel to understand the actions people are taking on your website and reach "
|
83 |
+
"audiences you care about."
|
84 |
msgstr ""
|
85 |
"Facebook-pixeln är ett analysverktyg som hjälper dig mäta hur effektiva dina "
|
86 |
"annonser är. Du kan använda Facebook-pixeln för att förstå vilka aktiviteter "
|
languages/official-facebook-pixel-th_TH.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-th_TH.po
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-pixel\n"
|
7 |
-
"POT-Creation-Date: 2018-11-
|
8 |
-
"PO-Revision-Date: 2018-11-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: th_TH\n"
|
@@ -20,7 +20,7 @@ msgstr "คุณไม่มีสิทธิ์เข้าถึงเพี
|
|
20 |
|
21 |
#: core/FacebookWordpressSettingsPage.php:109
|
22 |
msgid ""
|
23 |
-
"Please note that we are now also supporting
|
24 |
"Easy Digital Downloads, Ninja Forms and WP Forms"
|
25 |
msgstr ""
|
26 |
|
@@ -53,7 +53,9 @@ msgid "Dismiss this notice."
|
|
53 |
msgstr "ข้ามประกาศนี้"
|
54 |
|
55 |
#. Plugin Name of the plugin/theme
|
56 |
-
|
|
|
|
|
57 |
msgstr "พิกเซลของ Facebook"
|
58 |
|
59 |
#. Plugin URI of the plugin/theme
|
@@ -61,10 +63,17 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
61 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
62 |
|
63 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
64 |
msgid ""
|
65 |
-
"
|
66 |
-
"
|
67 |
-
"
|
|
|
|
|
68 |
msgstr ""
|
69 |
"พิกเซลของ Facebook เป็นเครื่องมือการวิเคราะห์ที่ช่วยให้คุณสามารถวัดประสิทธิภาพของการโฆษณา คุณสามารถใช้พิกเซลของ "
|
70 |
"Facebook ในการทำความเข้าใจถึงการดำเนินการที่ผู้คนทำบนเว็บไซต์และเข้าถึงกลุ่มเป้าหมายที่คุณสนใจ"
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-pixel\n"
|
7 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
8 |
+
"PO-Revision-Date: 2018-11-28 17:37-0800\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: th_TH\n"
|
20 |
|
21 |
#: core/FacebookWordpressSettingsPage.php:109
|
22 |
msgid ""
|
23 |
+
"Please note that we are now also supporting lower funnel pixel events for Contact Form 7, "
|
24 |
"Easy Digital Downloads, Ninja Forms and WP Forms"
|
25 |
msgstr ""
|
26 |
|
53 |
msgstr "ข้ามประกาศนี้"
|
54 |
|
55 |
#. Plugin Name of the plugin/theme
|
56 |
+
#, fuzzy
|
57 |
+
#| msgid "Facebook Pixel"
|
58 |
+
msgid "Official Facebook Pixel"
|
59 |
msgstr "พิกเซลของ Facebook"
|
60 |
|
61 |
#. Plugin URI of the plugin/theme
|
63 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
64 |
|
65 |
#. Description of the plugin/theme
|
66 |
+
#, fuzzy
|
67 |
+
#| msgid ""
|
68 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the effectiveness of your "
|
69 |
+
#| "advertising. You can use the Facebook pixel to understand the actions people are taking on "
|
70 |
+
#| "your website and reach audiences you care about."
|
71 |
msgid ""
|
72 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to a known issue, "
|
73 |
+
"to workaround please refresh this page and activate plugin.***</em></strong> The Facebook "
|
74 |
+
"pixel is an analytics tool that helps you measure the effectiveness of your advertising. You "
|
75 |
+
"can use the Facebook pixel to understand the actions people are taking on your website and "
|
76 |
+
"reach audiences you care about."
|
77 |
msgstr ""
|
78 |
"พิกเซลของ Facebook เป็นเครื่องมือการวิเคราะห์ที่ช่วยให้คุณสามารถวัดประสิทธิภาพของการโฆษณา คุณสามารถใช้พิกเซลของ "
|
79 |
"Facebook ในการทำความเข้าใจถึงการดำเนินการที่ผู้คนทำบนเว็บไซต์และเข้าถึงกลุ่มเป้าหมายที่คุณสนใจ"
|
languages/official-facebook-pixel-tr_TR.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-tr_TR.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: tr_TR\n"
|
@@ -21,7 +21,7 @@ msgstr "Bu sayfaya erişmek için yeterli izniniz yok"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -60,7 +60,9 @@ msgid "Dismiss this notice."
|
|
60 |
msgstr "Bu uyarıyı yok sayın."
|
61 |
|
62 |
#. Plugin Name of the plugin/theme
|
63 |
-
|
|
|
|
|
64 |
msgstr "Facebook Pikseli"
|
65 |
|
66 |
#. Plugin URI of the plugin/theme
|
@@ -68,11 +70,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
68 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
69 |
|
70 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
msgid ""
|
72 |
-
"
|
73 |
-
"
|
74 |
-
"
|
75 |
-
"
|
|
|
|
|
76 |
msgstr ""
|
77 |
"Facebook pikseli, reklamlarınızın etkisini ölçmenize yardımcı olan bir "
|
78 |
"analiz aracıdır. Facebook pikselini insanların internet sitenizde "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:37-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: tr_TR\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
60 |
msgstr "Bu uyarıyı yok sayın."
|
61 |
|
62 |
#. Plugin Name of the plugin/theme
|
63 |
+
#, fuzzy
|
64 |
+
#| msgid "Facebook Pixel"
|
65 |
+
msgid "Official Facebook Pixel"
|
66 |
msgstr "Facebook Pikseli"
|
67 |
|
68 |
#. Plugin URI of the plugin/theme
|
70 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
71 |
|
72 |
#. Description of the plugin/theme
|
73 |
+
#, fuzzy
|
74 |
+
#| msgid ""
|
75 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
76 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
77 |
+
#| "understand the actions people are taking on your website and reach "
|
78 |
+
#| "audiences you care about."
|
79 |
msgid ""
|
80 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
81 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
82 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
83 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
84 |
+
"pixel to understand the actions people are taking on your website and reach "
|
85 |
+
"audiences you care about."
|
86 |
msgstr ""
|
87 |
"Facebook pikseli, reklamlarınızın etkisini ölçmenize yardımcı olan bir "
|
88 |
"analiz aracıdır. Facebook pikselini insanların internet sitenizde "
|
languages/official-facebook-pixel-vi_VN.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-vi_VN.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: vi_VN\n"
|
@@ -21,7 +21,7 @@ msgstr "Bạn không có đủ quyền truy cập trang này"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -60,7 +60,9 @@ msgid "Dismiss this notice."
|
|
60 |
msgstr "Loại bỏ thông báo này."
|
61 |
|
62 |
#. Plugin Name of the plugin/theme
|
63 |
-
|
|
|
|
|
64 |
msgstr "Facebook Pixel"
|
65 |
|
66 |
#. Plugin URI of the plugin/theme
|
@@ -68,11 +70,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
68 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
69 |
|
70 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
msgid ""
|
72 |
-
"
|
73 |
-
"
|
74 |
-
"
|
75 |
-
"
|
|
|
|
|
76 |
msgstr ""
|
77 |
"Facebook pixel là một công cụ phân tích để bạn đo lường hiệu quả của quảng "
|
78 |
"cáo. Bạn có thể sử dụng Facebook pixel để nắm được hành động mà mọi người "
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:37-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: vi_VN\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
60 |
msgstr "Loại bỏ thông báo này."
|
61 |
|
62 |
#. Plugin Name of the plugin/theme
|
63 |
+
#, fuzzy
|
64 |
+
#| msgid "Facebook Pixel"
|
65 |
+
msgid "Official Facebook Pixel"
|
66 |
msgstr "Facebook Pixel"
|
67 |
|
68 |
#. Plugin URI of the plugin/theme
|
70 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
71 |
|
72 |
#. Description of the plugin/theme
|
73 |
+
#, fuzzy
|
74 |
+
#| msgid ""
|
75 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
76 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
77 |
+
#| "understand the actions people are taking on your website and reach "
|
78 |
+
#| "audiences you care about."
|
79 |
msgid ""
|
80 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
81 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
82 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
83 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
84 |
+
"pixel to understand the actions people are taking on your website and reach "
|
85 |
+
"audiences you care about."
|
86 |
msgstr ""
|
87 |
"Facebook pixel là một công cụ phân tích để bạn đo lường hiệu quả của quảng "
|
88 |
"cáo. Bạn có thể sử dụng Facebook pixel để nắm được hành động mà mọi người "
|
languages/official-facebook-pixel-zh_CN.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-zh_CN.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: zh_CN\n"
|
@@ -21,7 +21,7 @@ msgstr "您的权限不足,无法访问此页面"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -54,7 +54,9 @@ msgid "Dismiss this notice."
|
|
54 |
msgstr "关闭此通知。"
|
55 |
|
56 |
#. Plugin Name of the plugin/theme
|
57 |
-
|
|
|
|
|
58 |
msgstr "Facebook 像素"
|
59 |
|
60 |
#. Plugin URI of the plugin/theme
|
@@ -62,11 +64,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
62 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
63 |
|
64 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
msgid ""
|
66 |
-
"
|
67 |
-
"
|
68 |
-
"
|
69 |
-
"
|
|
|
|
|
70 |
msgstr ""
|
71 |
"Facebook 像素是一种分析工具,可帮助您衡量广告成效。您可以借助 Facebook 像素了"
|
72 |
"解用户在您网站采取的操作,并向您关注的受众营销。"
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:38-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: zh_CN\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
54 |
msgstr "关闭此通知。"
|
55 |
|
56 |
#. Plugin Name of the plugin/theme
|
57 |
+
#, fuzzy
|
58 |
+
#| msgid "Facebook Pixel"
|
59 |
+
msgid "Official Facebook Pixel"
|
60 |
msgstr "Facebook 像素"
|
61 |
|
62 |
#. Plugin URI of the plugin/theme
|
64 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
65 |
|
66 |
#. Description of the plugin/theme
|
67 |
+
#, fuzzy
|
68 |
+
#| msgid ""
|
69 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
70 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
71 |
+
#| "understand the actions people are taking on your website and reach "
|
72 |
+
#| "audiences you care about."
|
73 |
msgid ""
|
74 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
75 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
76 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
77 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
78 |
+
"pixel to understand the actions people are taking on your website and reach "
|
79 |
+
"audiences you care about."
|
80 |
msgstr ""
|
81 |
"Facebook 像素是一种分析工具,可帮助您衡量广告成效。您可以借助 Facebook 像素了"
|
82 |
"解用户在您网站采取的操作,并向您关注的受众营销。"
|
languages/official-facebook-pixel-zh_TW.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-zh_TW.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
-
"POT-Creation-Date: 2018-11-
|
9 |
-
"PO-Revision-Date: 2018-11-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: zh_TW\n"
|
@@ -21,7 +21,7 @@ msgstr "您沒有足夠的權限存取此頁面"
|
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
-
"Please note that we are now also supporting
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
@@ -57,7 +57,9 @@ msgid "Dismiss this notice."
|
|
57 |
msgstr "關閉這則通知。"
|
58 |
|
59 |
#. Plugin Name of the plugin/theme
|
60 |
-
|
|
|
|
|
61 |
msgstr "Facebook 像素"
|
62 |
|
63 |
#. Plugin URI of the plugin/theme
|
@@ -65,11 +67,19 @@ msgid "https://www.facebook.com/business/help/881403525362441"
|
|
65 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
66 |
|
67 |
#. Description of the plugin/theme
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid ""
|
69 |
-
"
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
|
|
|
|
73 |
msgstr ""
|
74 |
"Facebook 像素是一項分析工具,可協助您衡量廣告成效。您可以透過 Facebook 像素瞭"
|
75 |
"解用戶在您網站上採取的動作,進而觸及理想客群。"
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-28 17:38-0800\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: zh_TW\n"
|
21 |
|
22 |
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
+
"Please note that we are now also supporting lower funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
57 |
msgstr "關閉這則通知。"
|
58 |
|
59 |
#. Plugin Name of the plugin/theme
|
60 |
+
#, fuzzy
|
61 |
+
#| msgid "Facebook Pixel"
|
62 |
+
msgid "Official Facebook Pixel"
|
63 |
msgstr "Facebook 像素"
|
64 |
|
65 |
#. Plugin URI of the plugin/theme
|
67 |
msgstr "https://www.facebook.com/business/help/881403525362441"
|
68 |
|
69 |
#. Description of the plugin/theme
|
70 |
+
#, fuzzy
|
71 |
+
#| msgid ""
|
72 |
+
#| "The Facebook pixel is an analytics tool that helps you measure the "
|
73 |
+
#| "effectiveness of your advertising. You can use the Facebook pixel to "
|
74 |
+
#| "understand the actions people are taking on your website and reach "
|
75 |
+
#| "audiences you care about."
|
76 |
msgid ""
|
77 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
78 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
79 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
80 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
81 |
+
"pixel to understand the actions people are taking on your website and reach "
|
82 |
+
"audiences you care about."
|
83 |
msgstr ""
|
84 |
"Facebook 像素是一項分析工具,可協助您衡量廣告成效。您可以透過 Facebook 像素瞭"
|
85 |
"解用戶在您網站上採取的動作,進而觸及理想客群。"
|
languages/official-facebook-pixel.pot
CHANGED
@@ -1,10 +1,11 @@
|
|
1 |
-
# Copyright (C) 2018 Facebook Pixel
|
2 |
-
# This file is distributed under the same license as the Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Facebook Pixel 1.7.
|
6 |
-
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-
|
7 |
-
"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -49,7 +50,7 @@ msgid "Dismiss this notice."
|
|
49 |
msgstr ""
|
50 |
|
51 |
#. Plugin Name of the plugin/theme
|
52 |
-
msgid "Facebook Pixel"
|
53 |
msgstr ""
|
54 |
|
55 |
#. Plugin URI of the plugin/theme
|
@@ -58,10 +59,12 @@ msgstr ""
|
|
58 |
|
59 |
#. Description of the plugin/theme
|
60 |
msgid ""
|
61 |
-
"
|
62 |
-
"
|
63 |
-
"
|
64 |
-
"
|
|
|
|
|
65 |
msgstr ""
|
66 |
|
67 |
#. Author of the plugin/theme
|
1 |
+
# Copyright (C) 2018 Official Facebook Pixel
|
2 |
+
# This file is distributed under the same license as the Official Facebook Pixel package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Official Facebook Pixel 1.7.20\n"
|
6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
+
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-29 01:26:28+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
50 |
msgstr ""
|
51 |
|
52 |
#. Plugin Name of the plugin/theme
|
53 |
+
msgid "Official Facebook Pixel"
|
54 |
msgstr ""
|
55 |
|
56 |
#. Plugin URI of the plugin/theme
|
59 |
|
60 |
#. Description of the plugin/theme
|
61 |
msgid ""
|
62 |
+
"<strong><em>***ATTENTION: After upgrade the plugin may be deactivated due to "
|
63 |
+
"a known issue, to workaround please refresh this page and activate plugin."
|
64 |
+
"***</em></strong> The Facebook pixel is an analytics tool that helps you "
|
65 |
+
"measure the effectiveness of your advertising. You can use the Facebook "
|
66 |
+
"pixel to understand the actions people are taking on your website and reach "
|
67 |
+
"audiences you care about."
|
68 |
msgstr ""
|
69 |
|
70 |
#. Author of the plugin/theme
|
readme.txt
CHANGED
@@ -4,14 +4,24 @@ Tags: Facebook, Facebook Conversion Pixel, Facebook Pixel, Facebook Pixel Events
|
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 4.9.8
|
6 |
Requires PHP: 5.3
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
Grow your business with Official Facebook Pixel!
|
12 |
|
13 |
== Description ==
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
== Installation ==
|
17 |
__To install from your WordPress site__ <br />
|
@@ -38,6 +48,9 @@ If you get stuck, or have any questions, you can ask for help in the [Official F
|
|
38 |
Of course! This plugin is open sourced on the Facebook Incubator GitHub. You can find the code and contribution instructions in the [plugin repository](https://github.com/facebookincubator/Facebook-Pixel-for-WordPress).
|
39 |
|
40 |
== Changelog ==
|
|
|
|
|
|
|
41 |
= 2018-11-20 version 1.7.19 =
|
42 |
* Support php 5.3 onwards
|
43 |
|
@@ -51,4 +64,4 @@ Of course! This plugin is open sourced on the Facebook Incubator GitHub. You can
|
|
51 |
* Fix advance matching
|
52 |
|
53 |
== Upgrade Notice ==
|
54 |
-
By upgrading to latest version you will have built in support to fire lower funnel events: Lead, ViewContent, AddToCart, InitiateCheckout and Purchase out of the most popular plugins
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 4.9.8
|
6 |
Requires PHP: 5.3
|
7 |
+
Stable tag: 1.7.20
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
Grow your business with Official Facebook Pixel!
|
12 |
|
13 |
== Description ==
|
14 |
+
***ATTENTION: Due to a known issue, upgrading this plugin may result in plugin deactivation (especially if you are upgrading from version 1.7.10 - 1.7.19). Please go to your site's 'Plugins' tab, refresh the page, and activate the plugin if it's deactivated to prevent losing your future pixel events!***
|
15 |
+
|
16 |
+
This plugin will install a Facebook Pixel for your page. There is also built in support for other WordPress plugins. The Official Facebook Pixel allows you to fire lower funnel events: Lead, ViewContent, AddToCart, InitiateCheckout and Purchase. Tracking lower funnel events can help you understand the actions people are taking on your website. You can then use this information to make adjustments accordingly in your advertising campaigns.
|
17 |
+
|
18 |
+
Current plugins that we supports:
|
19 |
+
* Contact Form 7
|
20 |
+
* Easy Digital Downloads
|
21 |
+
* Ninja Forms
|
22 |
+
* WPForms
|
23 |
+
* MailChimp for WordPress
|
24 |
+
* WP eCommerce
|
25 |
|
26 |
== Installation ==
|
27 |
__To install from your WordPress site__ <br />
|
48 |
Of course! This plugin is open sourced on the Facebook Incubator GitHub. You can find the code and contribution instructions in the [plugin repository](https://github.com/facebookincubator/Facebook-Pixel-for-WordPress).
|
49 |
|
50 |
== Changelog ==
|
51 |
+
= 2018-11-28 version 1.7.20 =
|
52 |
+
* Change plugin file name, Add Supports for MailChimp for WordPress and WP eCommerce
|
53 |
+
|
54 |
= 2018-11-20 version 1.7.19 =
|
55 |
* Support php 5.3 onwards
|
56 |
|
64 |
* Fix advance matching
|
65 |
|
66 |
== Upgrade Notice ==
|
67 |
+
By upgrading to latest version you will have built in support to fire lower funnel events: Lead, ViewContent, AddToCart, InitiateCheckout and Purchase out of the most popular plugins.
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit062181e1f714313dfc798fb77b88d036::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit28de4c422bbf6a3ac80b2095623a78a6
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit062181e1f714313dfc798fb77b88d036
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit062181e1f714313dfc798fb77b88d036', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit062181e1f714313dfc798fb77b88d036', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit062181e1f714313dfc798fb77b88d036::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'F' =>
|
@@ -33,8 +33,8 @@ class ComposerStaticInit28de4c422bbf6a3ac80b2095623a78a6
|
|
33 |
public static function getInitializer(ClassLoader $loader)
|
34 |
{
|
35 |
return \Closure::bind(function () use ($loader) {
|
36 |
-
$loader->prefixLengthsPsr4 =
|
37 |
-
$loader->prefixDirsPsr4 =
|
38 |
|
39 |
}, null, ClassLoader::class);
|
40 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit062181e1f714313dfc798fb77b88d036
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'F' =>
|
33 |
public static function getInitializer(ClassLoader $loader)
|
34 |
{
|
35 |
return \Closure::bind(function () use ($loader) {
|
36 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit062181e1f714313dfc798fb77b88d036::$prefixLengthsPsr4;
|
37 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit062181e1f714313dfc798fb77b88d036::$prefixDirsPsr4;
|
38 |
|
39 |
}, null, ClassLoader::class);
|
40 |
}
|