Version Description
Download this release
Release Info
Developer | |
Plugin | Official Facebook Pixel |
Version | 1.7.18 |
Comparing to | |
See all releases |
Code changes from version 1.7.17 to 1.7.18
- FacebookForWordpress.php +5 -1
- changelog.txt +3 -0
- core/FacebookPluginConfig.php +2 -1
- core/FacebookWordpressOptions.php +1 -1
- languages/official-facebook-pixel-ar_AR.mo +0 -0
- languages/official-facebook-pixel-ar_AR.po +10 -10
- languages/official-facebook-pixel-cs_CZ.mo +0 -0
- languages/official-facebook-pixel-cs_CZ.po +10 -10
- languages/official-facebook-pixel-da_DK.mo +0 -0
- languages/official-facebook-pixel-da_DK.po +10 -10
- languages/official-facebook-pixel-de_DE.mo +0 -0
- languages/official-facebook-pixel-de_DE.po +10 -10
- languages/official-facebook-pixel-en_GB.mo +0 -0
- languages/official-facebook-pixel-en_GB.po +10 -10
- languages/official-facebook-pixel-es_ES.mo +0 -0
- languages/official-facebook-pixel-es_ES.po +10 -10
- languages/official-facebook-pixel-es_LA.mo +0 -0
- languages/official-facebook-pixel-es_LA.po +10 -10
- languages/official-facebook-pixel-fi_FI.mo +0 -0
- languages/official-facebook-pixel-fi_FI.po +10 -10
- languages/official-facebook-pixel-fr_CA.mo +0 -0
- languages/official-facebook-pixel-fr_CA.po +10 -10
- languages/official-facebook-pixel-fr_FR.mo +0 -0
- languages/official-facebook-pixel-fr_FR.po +10 -10
- languages/official-facebook-pixel-he_IL.mo +0 -0
- languages/official-facebook-pixel-he_IL.po +10 -10
- languages/official-facebook-pixel-it_IT.mo +0 -0
- languages/official-facebook-pixel-it_IT.po +10 -10
- languages/official-facebook-pixel-ja_JP.mo +0 -0
- languages/official-facebook-pixel-ja_JP.po +10 -10
- languages/official-facebook-pixel-ko_KR.mo +0 -0
- languages/official-facebook-pixel-ko_KR.po +10 -10
- languages/official-facebook-pixel-nb_NO.mo +0 -0
- languages/official-facebook-pixel-nb_NO.po +10 -10
- languages/official-facebook-pixel-nl_NL.mo +0 -0
- languages/official-facebook-pixel-nl_NL.po +10 -10
- languages/official-facebook-pixel-pl_PL.mo +0 -0
- languages/official-facebook-pixel-pl_PL.po +10 -10
- languages/official-facebook-pixel-pt_BR.mo +0 -0
- languages/official-facebook-pixel-pt_BR.po +10 -10
- languages/official-facebook-pixel-pt_PT.mo +0 -0
- languages/official-facebook-pixel-pt_PT.po +10 -10
- languages/official-facebook-pixel-ru_RU.mo +0 -0
- languages/official-facebook-pixel-ru_RU.po +10 -10
- languages/official-facebook-pixel-sv_SE.mo +0 -0
- languages/official-facebook-pixel-sv_SE.po +10 -10
- languages/official-facebook-pixel-th_TH.mo +0 -0
- languages/official-facebook-pixel-th_TH.po +10 -10
- languages/official-facebook-pixel-tr_TR.mo +0 -0
- languages/official-facebook-pixel-tr_TR.po +10 -10
- languages/official-facebook-pixel-vi_VN.mo +0 -0
- languages/official-facebook-pixel-vi_VN.po +10 -10
- languages/official-facebook-pixel-zh_CN.mo +0 -0
- languages/official-facebook-pixel-zh_CN.po +10 -10
- languages/official-facebook-pixel-zh_TW.mo +0 -0
- languages/official-facebook-pixel-zh_TW.po +10 -10
- languages/official-facebook-pixel.pot +10 -11
- readme.txt +4 -1
FacebookForWordpress.php
CHANGED
@@ -5,7 +5,7 @@
|
|
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 |
|
@@ -32,6 +32,7 @@ defined('ABSPATH') or die('Direct access not allowed');
|
|
32 |
require_once plugin_dir_path(__FILE__).'vendor/autoload.php';
|
33 |
|
34 |
use FacebookPixelPlugin\Core\FacebookPixel;
|
|
|
35 |
use FacebookPixelPlugin\Core\FacebookWordpressOptions;
|
36 |
use FacebookPixelPlugin\Core\FacebookWordpressPixelInjection;
|
37 |
use FacebookPixelPlugin\Core\FacebookWordpressSettingsPage;
|
@@ -41,6 +42,9 @@ class FacebookForWordpress {
|
|
41 |
// initialize options
|
42 |
FacebookWordpressOptions::initialize();
|
43 |
|
|
|
|
|
|
|
44 |
// initialize pixel
|
45 |
$options = FacebookWordpressOptions::getOptions();
|
46 |
FacebookPixel::initialize(FacebookWordpressOptions::getPixelId());
|
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.18
|
9 |
* Text Domain: official-facebook-pixel
|
10 |
*/
|
11 |
|
32 |
require_once plugin_dir_path(__FILE__).'vendor/autoload.php';
|
33 |
|
34 |
use FacebookPixelPlugin\Core\FacebookPixel;
|
35 |
+
use FacebookPixelPlugin\Core\FacebookPluginConfig;
|
36 |
use FacebookPixelPlugin\Core\FacebookWordpressOptions;
|
37 |
use FacebookPixelPlugin\Core\FacebookWordpressPixelInjection;
|
38 |
use FacebookPixelPlugin\Core\FacebookWordpressSettingsPage;
|
42 |
// initialize options
|
43 |
FacebookWordpressOptions::initialize();
|
44 |
|
45 |
+
// load textdomain
|
46 |
+
load_plugin_textdomain(FacebookPluginConfig::TEXT_DOMAIN, false, dirname(plugin_basename(__FILE__)) . '/languages/');
|
47 |
+
|
48 |
// initialize pixel
|
49 |
$options = FacebookWordpressOptions::getOptions();
|
50 |
FacebookPixel::initialize(FacebookWordpressOptions::getPixelId());
|
changelog.txt
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
*** Facebook for WordPress Changelog ***
|
|
|
|
|
|
|
2 |
2018-11-09 version 1.7.17
|
3 |
* Fix Lead event
|
4 |
|
1 |
*** Facebook for WordPress Changelog ***
|
2 |
+
2018-11-16 version 1.7.18
|
3 |
+
* Fix translation and set the advanced matching on by default
|
4 |
+
|
5 |
2018-11-09 version 1.7.17
|
6 |
* Fix Lead event
|
7 |
|
core/FacebookPluginConfig.php
CHANGED
@@ -20,7 +20,7 @@ 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 |
|
@@ -38,6 +38,7 @@ class FacebookPluginConfig {
|
|
38 |
const PIXEL_ID_KEY = 'pixel_id';
|
39 |
const SETTINGS_KEY = 'facebook_config';
|
40 |
const USE_PII_KEY = 'use_pii';
|
|
|
41 |
|
42 |
const IS_PIXEL_RENDERED = 'is_pixel_rendered';
|
43 |
const IS_NOSCRIPT_RENDERED = 'is_noscript_rendered';
|
20 |
defined('ABSPATH') or die('Direct access not allowed');
|
21 |
|
22 |
class FacebookPluginConfig {
|
23 |
+
const PLUGIN_VERSION = '1.7.18';
|
24 |
const SOURCE = 'wordpress';
|
25 |
const TEXT_DOMAIN = 'official-facebook-pixel';
|
26 |
|
38 |
const PIXEL_ID_KEY = 'pixel_id';
|
39 |
const SETTINGS_KEY = 'facebook_config';
|
40 |
const USE_PII_KEY = 'use_pii';
|
41 |
+
const USE_ADVANCED_MATCHING_DEFAULT = '1';
|
42 |
|
43 |
const IS_PIXEL_RENDERED = 'is_pixel_rendered';
|
44 |
const IS_NOSCRIPT_RENDERED = 'is_noscript_rendered';
|
core/FacebookWordpressOptions.php
CHANGED
@@ -40,7 +40,7 @@ class FacebookWordpressOptions {
|
|
40 |
array(
|
41 |
FacebookPluginConfig::PIXEL_ID_KEY =>
|
42 |
is_null(FacebookPluginConfig::DEFAULT_PIXEL_ID) ? '' : FacebookPluginConfig::DEFAULT_PIXEL_ID,
|
43 |
-
FacebookPluginConfig::USE_PII_KEY =>
|
44 |
));
|
45 |
// we need esc_js because the id is set through the form
|
46 |
self::$options[FacebookPluginConfig::PIXEL_ID_KEY] =
|
40 |
array(
|
41 |
FacebookPluginConfig::PIXEL_ID_KEY =>
|
42 |
is_null(FacebookPluginConfig::DEFAULT_PIXEL_ID) ? '' : FacebookPluginConfig::DEFAULT_PIXEL_ID,
|
43 |
+
FacebookPluginConfig::USE_PII_KEY => FacebookPluginConfig::USE_ADVANCED_MATCHING_DEFAULT,
|
44 |
));
|
45 |
// we need esc_js because the id is set through the form
|
46 |
self::$options[FacebookPluginConfig::PIXEL_ID_KEY] =
|
languages/official-facebook-pixel-ar_AR.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-ar_AR.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ar_AR\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "لا تمتلك أذونات كافية للوصول إلى هذه الصفحة"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "المعرف الفريد لبيكسل فيسبوك."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,11 +41,11 @@ msgstr ""
|
|
41 |
"الموافقة على ملفات تعريف الارتباط للمواقع والتطبيقات</a> للحصول على مقترحات "
|
42 |
"بشأن الالتزام بمتطلبات الخصوصية الخاصة بالاتحاد الأوروبي."
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "يؤدي تمكين المطابقة المتقدمة إلى تحسين عملية إنشاء الجمهور."
|
47 |
|
48 |
-
#: core/FacebookWordpressSettingsPage.php:
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
@@ -53,7 +53,7 @@ msgstr ""
|
|
53 |
"يتطلب المكون الإضافي لبيكسل فيسبوك معرف بيكسل. انقر <a href=\"%s\">هنا</a> "
|
54 |
"لتكوين المكون الإضافي."
|
55 |
|
56 |
-
#: core/FacebookWordpressSettingsPage.php:
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "تجاهل هذا الإشعار."
|
59 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ar_AR\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "لا تمتلك أذونات كافية للوصول إلى هذه الصفحة"
|
21 |
|
22 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "المعرف الفريد لبيكسل فيسبوك."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"الموافقة على ملفات تعريف الارتباط للمواقع والتطبيقات</a> للحصول على مقترحات "
|
42 |
"بشأن الالتزام بمتطلبات الخصوصية الخاصة بالاتحاد الأوروبي."
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "يؤدي تمكين المطابقة المتقدمة إلى تحسين عملية إنشاء الجمهور."
|
47 |
|
48 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
53 |
"يتطلب المكون الإضافي لبيكسل فيسبوك معرف بيكسل. انقر <a href=\"%s\">هنا</a> "
|
54 |
"لتكوين المكون الإضافي."
|
55 |
|
56 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "تجاهل هذا الإشعار."
|
59 |
|
languages/official-facebook-pixel-cs_CZ.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-cs_CZ.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: cs_CZ\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "Nemáte dostatečná oprávnění k přístupu na tuto stránku"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Jedinečný identifikátor vašeho Facebook pixelu."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,11 +41,11 @@ msgstr ""
|
|
41 |
"s používáním cookies na webech a v aplikacích</a>, kde najdete návrhy "
|
42 |
"ohledně dodržování požadavků EU na ochranu soukromí."
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "Zapnutí Pokročilého párování zkvalitňuje sestavování okruhu uživatelů."
|
47 |
|
48 |
-
#: core/FacebookWordpressSettingsPage.php:
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
@@ -53,7 +53,7 @@ msgstr ""
|
|
53 |
"Plugin pro Facebook pixel vyžaduje ID pixelu. Plugin můžete nakonfigurovat "
|
54 |
"kliknutím <a href=\"%s\">sem</a>."
|
55 |
|
56 |
-
#: core/FacebookWordpressSettingsPage.php:
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "Toto upozornění ignorujte."
|
59 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: cs_CZ\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Jedinečný identifikátor vašeho Facebook pixelu."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"s používáním cookies na webech a v aplikacích</a>, kde najdete návrhy "
|
42 |
"ohledně dodržování požadavků EU na ochranu soukromí."
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "Zapnutí Pokročilého párování zkvalitňuje sestavování okruhu uživatelů."
|
47 |
|
48 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
53 |
"Plugin pro Facebook pixel vyžaduje ID pixelu. Plugin můžete nakonfigurovat "
|
54 |
"kliknutím <a href=\"%s\">sem</a>."
|
55 |
|
56 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "Toto upozornění ignorujte."
|
59 |
|
languages/official-facebook-pixel-da_DK.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-da_DK.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: da_DK\n"
|
@@ -15,22 +15,22 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Du har ikke tilstrækkelige tilladelser til at få adgang til denne side."
|
22 |
|
23 |
-
#: core/FacebookWordpressSettingsPage.php:
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: core/FacebookWordpressSettingsPage.php:
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "Det unikke id for din Facebook-pixel."
|
32 |
|
33 |
-
#: core/FacebookWordpressSettingsPage.php:
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -42,11 +42,11 @@ msgstr ""
|
|
42 |
"cookiesamtykke for sites og apps</a> for at finde forslag til at overholde "
|
43 |
"EU's krav til beskyttelse af personlige oplysninger."
|
44 |
|
45 |
-
#: core/FacebookWordpressSettingsPage.php:
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr "Aktivering af avanceret matchning forbedrer målgruppeopbygningen."
|
48 |
|
49 |
-
#: core/FacebookWordpressSettingsPage.php:
|
50 |
msgid ""
|
51 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
52 |
"to configure the plugin."
|
@@ -54,7 +54,7 @@ msgstr ""
|
|
54 |
"Facebook-pixelpluginet kræver et pixel-id. Klik <a href=\"%s\">her</a> for "
|
55 |
"at konfigurere pluginet."
|
56 |
|
57 |
-
#: core/FacebookWordpressSettingsPage.php:
|
58 |
msgid "Dismiss this notice."
|
59 |
msgstr "Afvis meddelelsen."
|
60 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: da_DK\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Du har ikke tilstrækkelige tilladelser til at få adgang til denne side."
|
22 |
|
23 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "Det unikke id for din Facebook-pixel."
|
32 |
|
33 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
42 |
"cookiesamtykke for sites og apps</a> for at finde forslag til at overholde "
|
43 |
"EU's krav til beskyttelse af personlige oplysninger."
|
44 |
|
45 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr "Aktivering af avanceret matchning forbedrer målgruppeopbygningen."
|
48 |
|
49 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
50 |
msgid ""
|
51 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
52 |
"to configure the plugin."
|
54 |
"Facebook-pixelpluginet kræver et pixel-id. Klik <a href=\"%s\">her</a> for "
|
55 |
"at konfigurere pluginet."
|
56 |
|
57 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
58 |
msgid "Dismiss this notice."
|
59 |
msgstr "Afvis meddelelsen."
|
60 |
|
languages/official-facebook-pixel-de_DE.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-de_DE.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: de_DE\n"
|
@@ -15,22 +15,22 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Du besitzt nicht die nötigen Berechtigungen, um auf diese Seite zuzugreifen"
|
22 |
|
23 |
-
#: core/FacebookWordpressSettingsPage.php:
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: core/FacebookWordpressSettingsPage.php:
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "Die individuelle ID für dein Facebook-Pixel."
|
32 |
|
33 |
-
#: core/FacebookWordpressSettingsPage.php:
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -42,13 +42,13 @@ msgstr ""
|
|
42 |
"Datenschutzbestimmungen findest du im <a href=\"%s\" target=\"_blank"
|
43 |
"\">Leitfaden für die Cookie-Zustimmung für Webseiten und Apps</a>."
|
44 |
|
45 |
-
#: core/FacebookWordpressSettingsPage.php:
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr ""
|
48 |
"Durch die Aktivierung des erweiterten Abgleichs kannst du den Aufbau deiner "
|
49 |
"Zielgruppe optimieren."
|
50 |
|
51 |
-
#: core/FacebookWordpressSettingsPage.php:
|
52 |
msgid ""
|
53 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
54 |
"to configure the plugin."
|
@@ -56,7 +56,7 @@ msgstr ""
|
|
56 |
"Zur Nutzung des Facebook-Pixel-Plugins benötigst du eine Pixel-ID. Klicke <a "
|
57 |
"href=\"%s\">hier</a>, um das Plugin zu konfigurieren."
|
58 |
|
59 |
-
#: core/FacebookWordpressSettingsPage.php:
|
60 |
msgid "Dismiss this notice."
|
61 |
msgstr "Diese Nachricht schließen."
|
62 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: de_DE\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Du besitzt nicht die nötigen Berechtigungen, um auf diese Seite zuzugreifen"
|
22 |
|
23 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "Die individuelle ID für dein Facebook-Pixel."
|
32 |
|
33 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
42 |
"Datenschutzbestimmungen findest du im <a href=\"%s\" target=\"_blank"
|
43 |
"\">Leitfaden für die Cookie-Zustimmung für Webseiten und Apps</a>."
|
44 |
|
45 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr ""
|
48 |
"Durch die Aktivierung des erweiterten Abgleichs kannst du den Aufbau deiner "
|
49 |
"Zielgruppe optimieren."
|
50 |
|
51 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
52 |
msgid ""
|
53 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
54 |
"to configure the plugin."
|
56 |
"Zur Nutzung des Facebook-Pixel-Plugins benötigst du eine Pixel-ID. Klicke <a "
|
57 |
"href=\"%s\">hier</a>, um das Plugin zu konfigurieren."
|
58 |
|
59 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
60 |
msgid "Dismiss this notice."
|
61 |
msgstr "Diese Nachricht schließen."
|
62 |
|
languages/official-facebook-pixel-en_GB.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-en_GB.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: en_GB\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "You do not have sufficient permissions to access this Page"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "The unique identifier for your Facebook pixel."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,11 +41,11 @@ msgstr ""
|
|
41 |
"Guide for Sites and Apps</a> for suggestions on complying with EU privacy "
|
42 |
"requirements."
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "Enabling advanced matching improves audience building."
|
47 |
|
48 |
-
#: core/FacebookWordpressSettingsPage.php:
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
@@ -53,7 +53,7 @@ msgstr ""
|
|
53 |
"The Facebook pixel plugin requires a pixel ID. Click <a href=\"%s\">here</a> "
|
54 |
"to configure the plugin."
|
55 |
|
56 |
-
#: core/FacebookWordpressSettingsPage.php:
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "Dismiss this notice."
|
59 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: en_GB\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "The unique identifier for your Facebook pixel."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"Guide for Sites and Apps</a> for suggestions on complying with EU privacy "
|
42 |
"requirements."
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "Enabling advanced matching improves audience building."
|
47 |
|
48 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
53 |
"The Facebook pixel plugin requires a pixel ID. Click <a href=\"%s\">here</a> "
|
54 |
"to configure the plugin."
|
55 |
|
56 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "Dismiss this notice."
|
59 |
|
languages/official-facebook-pixel-es_ES.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-es_ES.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: es_ES\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "No tienes suficientes permisos para acceder a esta página."
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "El identificador único para tu píxel de Facebook."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -42,13 +42,13 @@ msgstr ""
|
|
42 |
"aplicaciones</a>, que incluye sugerencias en relación con el cumplimiento de "
|
43 |
"los requisitos de privacidad de la UE."
|
44 |
|
45 |
-
#: core/FacebookWordpressSettingsPage.php:
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr ""
|
48 |
"La habilitación de las coincidencias avanzadas contribuye a formar una "
|
49 |
"audiencia."
|
50 |
|
51 |
-
#: core/FacebookWordpressSettingsPage.php:
|
52 |
msgid ""
|
53 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
54 |
"to configure the plugin."
|
@@ -56,7 +56,7 @@ msgstr ""
|
|
56 |
"El plugin de Píxel de Facebook requiere un identificador de Píxel. Haz clic "
|
57 |
"<a href=\"%s\">aquí</a> para configurar el plugin."
|
58 |
|
59 |
-
#: core/FacebookWordpressSettingsPage.php:
|
60 |
msgid "Dismiss this notice."
|
61 |
msgstr "Ignorar este aviso."
|
62 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: es_ES\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "El identificador único para tu píxel de Facebook."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
42 |
"aplicaciones</a>, que incluye sugerencias en relación con el cumplimiento de "
|
43 |
"los requisitos de privacidad de la UE."
|
44 |
|
45 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr ""
|
48 |
"La habilitación de las coincidencias avanzadas contribuye a formar una "
|
49 |
"audiencia."
|
50 |
|
51 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
52 |
msgid ""
|
53 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
54 |
"to configure the plugin."
|
56 |
"El plugin de Píxel de Facebook requiere un identificador de Píxel. Haz clic "
|
57 |
"<a href=\"%s\">aquí</a> para configurar el plugin."
|
58 |
|
59 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
60 |
msgid "Dismiss this notice."
|
61 |
msgstr "Ignorar este aviso."
|
62 |
|
languages/official-facebook-pixel-es_LA.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-es_LA.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: es_LA\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "No tienes permisos suficientes para acceder a esta página"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "El identificador único de tu píxel de Facebook."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -42,11 +42,11 @@ msgstr ""
|
|
42 |
"quieres obtener sugerencias sobre el cumplimiento de los requisitos de "
|
43 |
"privacidad de la Unión Europea."
|
44 |
|
45 |
-
#: core/FacebookWordpressSettingsPage.php:
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr "Activar las coincidencias avanzadas mejora la creación de públicos."
|
48 |
|
49 |
-
#: core/FacebookWordpressSettingsPage.php:
|
50 |
msgid ""
|
51 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
52 |
"to configure the plugin."
|
@@ -54,7 +54,7 @@ msgstr ""
|
|
54 |
"El plugin del píxel de Facebook necesita un identificador del píxel. Haz "
|
55 |
"clic <a href=\"%s\">aquí</a> para configurar el plugin."
|
56 |
|
57 |
-
#: core/FacebookWordpressSettingsPage.php:
|
58 |
msgid "Dismiss this notice."
|
59 |
msgstr "Ignorar este aviso."
|
60 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: es_LA\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "El identificador único de tu píxel de Facebook."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
42 |
"quieres obtener sugerencias sobre el cumplimiento de los requisitos de "
|
43 |
"privacidad de la Unión Europea."
|
44 |
|
45 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr "Activar las coincidencias avanzadas mejora la creación de públicos."
|
48 |
|
49 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
50 |
msgid ""
|
51 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
52 |
"to configure the plugin."
|
54 |
"El plugin del píxel de Facebook necesita un identificador del píxel. Haz "
|
55 |
"clic <a href=\"%s\">aquí</a> para configurar el plugin."
|
56 |
|
57 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
58 |
msgid "Dismiss this notice."
|
59 |
msgstr "Ignorar este aviso."
|
60 |
|
languages/official-facebook-pixel-fi_FI.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-fi_FI.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fi_FI\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "Sinulla ei ole riittävää käyttölupaa tälle sivulle."
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Yksittäinen tunniste Facebook-pikseliä varten."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,12 +41,12 @@ msgstr ""
|
|
41 |
"href=\"%s\" target=\"_blank\">evästelupaoppaasta sivustoille ja "
|
42 |
"sovelluksille</a>."
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr ""
|
47 |
"Edistyneen vastaavuuksien haun käyttöönotto helpottaa kohderyhmien luomista."
|
48 |
|
49 |
-
#: core/FacebookWordpressSettingsPage.php:
|
50 |
msgid ""
|
51 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
52 |
"to configure the plugin."
|
@@ -54,7 +54,7 @@ msgstr ""
|
|
54 |
"Facebook-pikselin liitännäinen vaatii pikselin tunnisteen. Määritä "
|
55 |
"liitännäinen klikkaamalla <a href=\"%s\">tästä</a>."
|
56 |
|
57 |
-
#: core/FacebookWordpressSettingsPage.php:
|
58 |
msgid "Dismiss this notice."
|
59 |
msgstr "Ohita tämä ilmoitus."
|
60 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fi_FI\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Yksittäinen tunniste Facebook-pikseliä varten."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"href=\"%s\" target=\"_blank\">evästelupaoppaasta sivustoille ja "
|
42 |
"sovelluksille</a>."
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr ""
|
47 |
"Edistyneen vastaavuuksien haun käyttöönotto helpottaa kohderyhmien luomista."
|
48 |
|
49 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
50 |
msgid ""
|
51 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
52 |
"to configure the plugin."
|
54 |
"Facebook-pikselin liitännäinen vaatii pikselin tunnisteen. Määritä "
|
55 |
"liitännäinen klikkaamalla <a href=\"%s\">tästä</a>."
|
56 |
|
57 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
58 |
msgid "Dismiss this notice."
|
59 |
msgstr "Ohita tämä ilmoitus."
|
60 |
|
languages/official-facebook-pixel-fr_CA.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-fr_CA.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fr_CA\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "Vous n’avez pas d’autorisations suffisantes pour accéder à cette page"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "L’identifiant unique de votre pixel Facebook."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -42,13 +42,13 @@ msgstr ""
|
|
42 |
"connexion pour les sites et les applications</a> pour savoir comment vous "
|
43 |
"conformer aux exigences européennes en matière de confidentialité."
|
44 |
|
45 |
-
#: core/FacebookWordpressSettingsPage.php:
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr ""
|
48 |
"L’activation de la mise en correspondance avancée améliore la création des "
|
49 |
"auditoires."
|
50 |
|
51 |
-
#: core/FacebookWordpressSettingsPage.php:
|
52 |
msgid ""
|
53 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
54 |
"to configure the plugin."
|
@@ -56,7 +56,7 @@ msgstr ""
|
|
56 |
"Le module complémentaire du pixel Facebook nécessite un identifiant de "
|
57 |
"pixel. Cliquez <a href=\"%s\">ici</a> pour configurer le module."
|
58 |
|
59 |
-
#: core/FacebookWordpressSettingsPage.php:
|
60 |
msgid "Dismiss this notice."
|
61 |
msgstr "Ignorer cet avis"
|
62 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fr_CA\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "Vous n’avez pas d’autorisations suffisantes pour accéder à cette page"
|
21 |
|
22 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "L’identifiant unique de votre pixel Facebook."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
42 |
"connexion pour les sites et les applications</a> pour savoir comment vous "
|
43 |
"conformer aux exigences européennes en matière de confidentialité."
|
44 |
|
45 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr ""
|
48 |
"L’activation de la mise en correspondance avancée améliore la création des "
|
49 |
"auditoires."
|
50 |
|
51 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
52 |
msgid ""
|
53 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
54 |
"to configure the plugin."
|
56 |
"Le module complémentaire du pixel Facebook nécessite un identifiant de "
|
57 |
"pixel. Cliquez <a href=\"%s\">ici</a> pour configurer le module."
|
58 |
|
59 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
60 |
msgid "Dismiss this notice."
|
61 |
msgstr "Ignorer cet avis"
|
62 |
|
languages/official-facebook-pixel-fr_FR.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-fr_FR.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fr_FR\n"
|
@@ -15,22 +15,22 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Vous ne disposez pas des autorisations requises pour accéder à cette page"
|
22 |
|
23 |
-
#: core/FacebookWordpressSettingsPage.php:
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: core/FacebookWordpressSettingsPage.php:
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "L’identifiant unique de votre pixel Facebook."
|
32 |
|
33 |
-
#: core/FacebookWordpressSettingsPage.php:
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -44,12 +44,12 @@ msgstr ""
|
|
44 |
"conformité avec les exigences de l’Union européenne en matière de "
|
45 |
"confidentialité."
|
46 |
|
47 |
-
#: core/FacebookWordpressSettingsPage.php:
|
48 |
msgid "Enabling Advanced Matching improves audience building."
|
49 |
msgstr ""
|
50 |
"Activer la correspondance avancée permet d’améliorer la création d’audiences."
|
51 |
|
52 |
-
#: core/FacebookWordpressSettingsPage.php:
|
53 |
msgid ""
|
54 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
55 |
"to configure the plugin."
|
@@ -57,7 +57,7 @@ msgstr ""
|
|
57 |
"Le plugin du pixel Facebook requiert un ID de pixel. Cliquez <a href=\"%s"
|
58 |
"\">ici</a> pour configurer le plugin."
|
59 |
|
60 |
-
#: core/FacebookWordpressSettingsPage.php:
|
61 |
msgid "Dismiss this notice."
|
62 |
msgstr "Ignorer cet avertissement."
|
63 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: fr_FR\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Vous ne disposez pas des autorisations requises pour accéder à cette page"
|
22 |
|
23 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "L’identifiant unique de votre pixel Facebook."
|
32 |
|
33 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
44 |
"conformité avec les exigences de l’Union européenne en matière de "
|
45 |
"confidentialité."
|
46 |
|
47 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
48 |
msgid "Enabling Advanced Matching improves audience building."
|
49 |
msgstr ""
|
50 |
"Activer la correspondance avancée permet d’améliorer la création d’audiences."
|
51 |
|
52 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
53 |
msgid ""
|
54 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
55 |
"to configure the plugin."
|
57 |
"Le plugin du pixel Facebook requiert un ID de pixel. Cliquez <a href=\"%s"
|
58 |
"\">ici</a> pour configurer le plugin."
|
59 |
|
60 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
61 |
msgid "Dismiss this notice."
|
62 |
msgstr "Ignorer cet avertissement."
|
63 |
|
languages/official-facebook-pixel-he_IL.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-he_IL.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: he_IL\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "אין לך הרשאות מספיקות כדי לגשת לדף זה"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "המזהה הייחודי של פיקסל פייסבוק שלך."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -40,11 +40,11 @@ msgstr ""
|
|
40 |
"\"%s\" target=\"_blank\">מדריך ההסכמה לקובצי Cookie באתרים ובאפליקציות</a> "
|
41 |
"לקבלת הצעות לציות לדרישות הפרטיות של האיחוד האירופי."
|
42 |
|
43 |
-
#: core/FacebookWordpressSettingsPage.php:
|
44 |
msgid "Enabling Advanced Matching improves audience building."
|
45 |
msgstr "הפעלת התאמה מתקדמת משפרת את בניית הקהלים."
|
46 |
|
47 |
-
#: core/FacebookWordpressSettingsPage.php:
|
48 |
msgid ""
|
49 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
50 |
"to configure the plugin."
|
@@ -52,7 +52,7 @@ msgstr ""
|
|
52 |
"הפלאגין של פיקסל פייסבוק מחייב מזהה פיקסל. לחץ <a href=\"%s\">כאן</a> כדי "
|
53 |
"להגדיר את הפלאגין."
|
54 |
|
55 |
-
#: core/FacebookWordpressSettingsPage.php:
|
56 |
msgid "Dismiss this notice."
|
57 |
msgstr "התעלם מהודעה זו."
|
58 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: he_IL\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "אין לך הרשאות מספיקות כדי לגשת לדף זה"
|
21 |
|
22 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "המזהה הייחודי של פיקסל פייסבוק שלך."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
40 |
"\"%s\" target=\"_blank\">מדריך ההסכמה לקובצי Cookie באתרים ובאפליקציות</a> "
|
41 |
"לקבלת הצעות לציות לדרישות הפרטיות של האיחוד האירופי."
|
42 |
|
43 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
44 |
msgid "Enabling Advanced Matching improves audience building."
|
45 |
msgstr "הפעלת התאמה מתקדמת משפרת את בניית הקהלים."
|
46 |
|
47 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
48 |
msgid ""
|
49 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
50 |
"to configure the plugin."
|
52 |
"הפלאגין של פיקסל פייסבוק מחייב מזהה פיקסל. לחץ <a href=\"%s\">כאן</a> כדי "
|
53 |
"להגדיר את הפלאגין."
|
54 |
|
55 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
56 |
msgid "Dismiss this notice."
|
57 |
msgstr "התעלם מהודעה זו."
|
58 |
|
languages/official-facebook-pixel-it_IT.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-it_IT.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: it_IT\n"
|
@@ -15,22 +15,22 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Non disponi delle autorizzazioni sufficienti per accedere a questa pagina"
|
22 |
|
23 |
-
#: core/FacebookWordpressSettingsPage.php:
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: core/FacebookWordpressSettingsPage.php:
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "L'identificativo unico per il tuo pixel di Facebook."
|
32 |
|
33 |
-
#: core/FacebookWordpressSettingsPage.php:
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -42,13 +42,13 @@ msgstr ""
|
|
42 |
"\">Guida al consenso per l'uso di cookie per siti e app</a> per avere "
|
43 |
"suggerimenti su come rispettare i requisiti relativi alla privacy dell'UE."
|
44 |
|
45 |
-
#: core/FacebookWordpressSettingsPage.php:
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr ""
|
48 |
"L'abilitazione della ricerca delle corrispondenze avanzata migliora la "
|
49 |
"creazione del pubblico."
|
50 |
|
51 |
-
#: core/FacebookWordpressSettingsPage.php:
|
52 |
msgid ""
|
53 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
54 |
"to configure the plugin."
|
@@ -56,7 +56,7 @@ msgstr ""
|
|
56 |
"Il plug-in del pixel di Facebook richiede un ID pixel. Clicca <a href=\"%s"
|
57 |
"\">qui</a> per configurare il plug-in."
|
58 |
|
59 |
-
#: core/FacebookWordpressSettingsPage.php:
|
60 |
msgid "Dismiss this notice."
|
61 |
msgstr "Ignora questa notifica."
|
62 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: it_IT\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Non disponi delle autorizzazioni sufficienti per accedere a questa pagina"
|
22 |
|
23 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "L'identificativo unico per il tuo pixel di Facebook."
|
32 |
|
33 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
42 |
"\">Guida al consenso per l'uso di cookie per siti e app</a> per avere "
|
43 |
"suggerimenti su come rispettare i requisiti relativi alla privacy dell'UE."
|
44 |
|
45 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr ""
|
48 |
"L'abilitazione della ricerca delle corrispondenze avanzata migliora la "
|
49 |
"creazione del pubblico."
|
50 |
|
51 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
52 |
msgid ""
|
53 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
54 |
"to configure the plugin."
|
56 |
"Il plug-in del pixel di Facebook richiede un ID pixel. Clicca <a href=\"%s"
|
57 |
"\">qui</a> per configurare il plug-in."
|
58 |
|
59 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
60 |
msgid "Dismiss this notice."
|
61 |
msgstr "Ignora questa notifica."
|
62 |
|
languages/official-facebook-pixel-ja_JP.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-ja_JP.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ja_JP\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "このページにアクセスするための十分な権限がありません"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Facebookのピクセルの一意の識別子。"
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,11 +41,11 @@ msgstr ""
|
|
41 |
"target=\"_blank\">サイトおよびアプリのCookieの同意に関するガイド</a>をお読み"
|
42 |
"ください。"
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "詳細マッチングを有効にすると、オーディエンスの構築が向上します。"
|
47 |
|
48 |
-
#: core/FacebookWordpressSettingsPage.php:
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
@@ -53,7 +53,7 @@ msgstr ""
|
|
53 |
"FacebookピクセルプラグインにはピクセルIDが必要です。プラグインを設定するに"
|
54 |
"は、<a href=\"%s\">こちら</a>をクリックしてください。"
|
55 |
|
56 |
-
#: core/FacebookWordpressSettingsPage.php:
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "この通知を破棄します。"
|
59 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ja_JP\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "このページにアクセスするための十分な権限がありません"
|
21 |
|
22 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Facebookのピクセルの一意の識別子。"
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"target=\"_blank\">サイトおよびアプリのCookieの同意に関するガイド</a>をお読み"
|
42 |
"ください。"
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "詳細マッチングを有効にすると、オーディエンスの構築が向上します。"
|
47 |
|
48 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
53 |
"FacebookピクセルプラグインにはピクセルIDが必要です。プラグインを設定するに"
|
54 |
"は、<a href=\"%s\">こちら</a>をクリックしてください。"
|
55 |
|
56 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "この通知を破棄します。"
|
59 |
|
languages/official-facebook-pixel-ko_KR.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-ko_KR.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ko_KR\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "이 페이지 액세스를 위한 권한이 충분하지 않습니다."
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "회원님의 Facebook 픽셀에 대한 고유 식별자입니다."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -40,11 +40,11 @@ msgstr ""
|
|
40 |
"EU 개인정보처리방침 요구 사항 준수에 관한 제안 사항은 <a href=\"%s\" target="
|
41 |
"\"_blank\">사이트 및 앱에 대한 쿠키 동의 가이드</a>에서 확인하세요."
|
42 |
|
43 |
-
#: core/FacebookWordpressSettingsPage.php:
|
44 |
msgid "Enabling Advanced Matching improves audience building."
|
45 |
msgstr "고급 매칭을 사용하면 타겟 구축을 개선할 수 있습니다."
|
46 |
|
47 |
-
#: core/FacebookWordpressSettingsPage.php:
|
48 |
msgid ""
|
49 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
50 |
"to configure the plugin."
|
@@ -52,7 +52,7 @@ msgstr ""
|
|
52 |
"Facebook 픽셀 플러그인에는 픽셀 ID가 필요합니다. 플러그인을 구성하려면 <a "
|
53 |
"href=\"%s\">여기</a>를 클릭하세요."
|
54 |
|
55 |
-
#: core/FacebookWordpressSettingsPage.php:
|
56 |
msgid "Dismiss this notice."
|
57 |
msgstr "이 공지를 무시합니다."
|
58 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ko_KR\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "이 페이지 액세스를 위한 권한이 충분하지 않습니다."
|
21 |
|
22 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "회원님의 Facebook 픽셀에 대한 고유 식별자입니다."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
40 |
"EU 개인정보처리방침 요구 사항 준수에 관한 제안 사항은 <a href=\"%s\" target="
|
41 |
"\"_blank\">사이트 및 앱에 대한 쿠키 동의 가이드</a>에서 확인하세요."
|
42 |
|
43 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
44 |
msgid "Enabling Advanced Matching improves audience building."
|
45 |
msgstr "고급 매칭을 사용하면 타겟 구축을 개선할 수 있습니다."
|
46 |
|
47 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
48 |
msgid ""
|
49 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
50 |
"to configure the plugin."
|
52 |
"Facebook 픽셀 플러그인에는 픽셀 ID가 필요합니다. 플러그인을 구성하려면 <a "
|
53 |
"href=\"%s\">여기</a>를 클릭하세요."
|
54 |
|
55 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
56 |
msgid "Dismiss this notice."
|
57 |
msgstr "이 공지를 무시합니다."
|
58 |
|
languages/official-facebook-pixel-nb_NO.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-nb_NO.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: nb_NO\n"
|
@@ -15,22 +15,22 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Du har ikke de nødvendige tillatelsene til å få tilgang til denne siden"
|
22 |
|
23 |
-
#: core/FacebookWordpressSettingsPage.php:
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: core/FacebookWordpressSettingsPage.php:
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "Den unike identifikatoren for Facebook-pikselen din."
|
32 |
|
33 |
-
#: core/FacebookWordpressSettingsPage.php:
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -42,11 +42,11 @@ msgstr ""
|
|
42 |
"samtykke til informasjonskapsler for nettsteder og apper</a> for å få "
|
43 |
"forslag til hvordan du kan overholde EUs krav til personvern."
|
44 |
|
45 |
-
#: core/FacebookWordpressSettingsPage.php:
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr "Aktivering av Avansert matching gir bedre oppbygging av publikum."
|
48 |
|
49 |
-
#: core/FacebookWordpressSettingsPage.php:
|
50 |
msgid ""
|
51 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
52 |
"to configure the plugin."
|
@@ -54,7 +54,7 @@ msgstr ""
|
|
54 |
"Programtillegget for Facebook-pikselen krever en piksel-ID. Klikk <a href="
|
55 |
"\"%s\">her</a> for å konfigurere programtillegget."
|
56 |
|
57 |
-
#: core/FacebookWordpressSettingsPage.php:
|
58 |
msgid "Dismiss this notice."
|
59 |
msgstr "Avvis dette varselet."
|
60 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: nb_NO\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Du har ikke de nødvendige tillatelsene til å få tilgang til denne siden"
|
22 |
|
23 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "Den unike identifikatoren for Facebook-pikselen din."
|
32 |
|
33 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
42 |
"samtykke til informasjonskapsler for nettsteder og apper</a> for å få "
|
43 |
"forslag til hvordan du kan overholde EUs krav til personvern."
|
44 |
|
45 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr "Aktivering av Avansert matching gir bedre oppbygging av publikum."
|
48 |
|
49 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
50 |
msgid ""
|
51 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
52 |
"to configure the plugin."
|
54 |
"Programtillegget for Facebook-pikselen krever en piksel-ID. Klikk <a href="
|
55 |
"\"%s\">her</a> for å konfigurere programtillegget."
|
56 |
|
57 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
58 |
msgid "Dismiss this notice."
|
59 |
msgstr "Avvis dette varselet."
|
60 |
|
languages/official-facebook-pixel-nl_NL.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-nl_NL.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: nl_NL\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "Je hebt niet voldoende toestemmingen om deze pagina te bekijken."
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "De unieke identifier van je Facebook-pixel."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,13 +41,13 @@ msgstr ""
|
|
41 |
"betreffende toestemming voor het plaatsen van cookies op websites en in "
|
42 |
"apps</a> voor suggesties om te voldoen aan de privacyvereisten van de EU."
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr ""
|
47 |
"Als je Geavanceerd overeenkomsten zoeken inschakelt, kan je doelgroep beter "
|
48 |
"worden opgebouwd."
|
49 |
|
50 |
-
#: core/FacebookWordpressSettingsPage.php:
|
51 |
msgid ""
|
52 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
53 |
"to configure the plugin."
|
@@ -55,7 +55,7 @@ msgstr ""
|
|
55 |
"De Facebook-pixelplug-in vereist een pixel-ID. Klik <a href=\"%s\">hier</a> "
|
56 |
"om de plug-in te configureren."
|
57 |
|
58 |
-
#: core/FacebookWordpressSettingsPage.php:
|
59 |
msgid "Dismiss this notice."
|
60 |
msgstr "Deze kennisgeving negeren."
|
61 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: nl_NL\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "De unieke identifier van je Facebook-pixel."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"betreffende toestemming voor het plaatsen van cookies op websites en in "
|
42 |
"apps</a> voor suggesties om te voldoen aan de privacyvereisten van de EU."
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr ""
|
47 |
"Als je Geavanceerd overeenkomsten zoeken inschakelt, kan je doelgroep beter "
|
48 |
"worden opgebouwd."
|
49 |
|
50 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
51 |
msgid ""
|
52 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
53 |
"to configure the plugin."
|
55 |
"De Facebook-pixelplug-in vereist een pixel-ID. Klik <a href=\"%s\">hier</a> "
|
56 |
"om de plug-in te configureren."
|
57 |
|
58 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
59 |
msgid "Dismiss this notice."
|
60 |
msgstr "Deze kennisgeving negeren."
|
61 |
|
languages/official-facebook-pixel-pl_PL.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-pl_PL.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pl_PL\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "Nie masz wystarczających uprawnień, żeby przejść do tej strony"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Unikatowy identyfikator piksela Facebooka."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -42,12 +42,12 @@ msgstr ""
|
|
42 |
"witrynach i aplikacjach</a>, aby uzyskać sugestie w zakresie zachowania "
|
43 |
"zgodności z wymogami ochrony prywatności w Unii Europejskiej."
|
44 |
|
45 |
-
#: core/FacebookWordpressSettingsPage.php:
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr ""
|
48 |
"Włączenie zaawansowanego dopasowywania usprawnia tworzenie grup odbiorców."
|
49 |
|
50 |
-
#: core/FacebookWordpressSettingsPage.php:
|
51 |
msgid ""
|
52 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
53 |
"to configure the plugin."
|
@@ -55,7 +55,7 @@ msgstr ""
|
|
55 |
"Wtyczka piksela Facebooka wymaga identyfikatora piksela. Kliknij <a href=\"%s"
|
56 |
"\">tutaj</a>, żeby skonfigurować wtyczkę."
|
57 |
|
58 |
-
#: core/FacebookWordpressSettingsPage.php:
|
59 |
msgid "Dismiss this notice."
|
60 |
msgstr "Odrzuć to powiadomienie."
|
61 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pl_PL\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Unikatowy identyfikator piksela Facebooka."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
42 |
"witrynach i aplikacjach</a>, aby uzyskać sugestie w zakresie zachowania "
|
43 |
"zgodności z wymogami ochrony prywatności w Unii Europejskiej."
|
44 |
|
45 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
46 |
msgid "Enabling Advanced Matching improves audience building."
|
47 |
msgstr ""
|
48 |
"Włączenie zaawansowanego dopasowywania usprawnia tworzenie grup odbiorców."
|
49 |
|
50 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
51 |
msgid ""
|
52 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
53 |
"to configure the plugin."
|
55 |
"Wtyczka piksela Facebooka wymaga identyfikatora piksela. Kliknij <a href=\"%s"
|
56 |
"\">tutaj</a>, żeby skonfigurować wtyczkę."
|
57 |
|
58 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
59 |
msgid "Dismiss this notice."
|
60 |
msgstr "Odrzuć to powiadomienie."
|
61 |
|
languages/official-facebook-pixel-pt_BR.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-pt_BR.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pt_BR\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "Você não tem permissões suficientes para acessar esta página"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "O identificador exclusivo de seu pixel do Facebook."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,11 +41,11 @@ msgstr ""
|
|
41 |
"consentimento de cookies para sites e aplicativos</a> para ver sugestões "
|
42 |
"sobre o cumprimento dos requisitos de privacidade da UE."
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "Ativar a correspondência avançada melhora a criação de público."
|
47 |
|
48 |
-
#: core/FacebookWordpressSettingsPage.php:
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
@@ -53,7 +53,7 @@ msgstr ""
|
|
53 |
"O plugin do pixel do Facebook requer uma identificação do pixel. Clique <a "
|
54 |
"href=\"%s\">aqui</a> para configurar o plugin."
|
55 |
|
56 |
-
#: core/FacebookWordpressSettingsPage.php:
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "Ignore esta notificação."
|
59 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pt_BR\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "O identificador exclusivo de seu pixel do Facebook."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"consentimento de cookies para sites e aplicativos</a> para ver sugestões "
|
42 |
"sobre o cumprimento dos requisitos de privacidade da UE."
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "Ativar a correspondência avançada melhora a criação de público."
|
47 |
|
48 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
53 |
"O plugin do pixel do Facebook requer uma identificação do pixel. Clique <a "
|
54 |
"href=\"%s\">aqui</a> para configurar o plugin."
|
55 |
|
56 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "Ignore esta notificação."
|
59 |
|
languages/official-facebook-pixel-pt_PT.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-pt_PT.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pt_PT\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "Não tens permissões suficientes para aceder a esta página"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "O identificador único do teu Píxel do Facebook."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,11 +41,11 @@ msgstr ""
|
|
41 |
"Cookies para Sites e Apps</a>, que tem sugestões para o cumprimento dos "
|
42 |
"requisitos de privacidade da UE."
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "Ativar a correspondência avançada melhora a criação de públicos."
|
47 |
|
48 |
-
#: core/FacebookWordpressSettingsPage.php:
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
@@ -53,7 +53,7 @@ msgstr ""
|
|
53 |
"O plug-in do Píxel do Facebook requer a identificação do Píxel. Clica <a "
|
54 |
"href=\"%s\">aqui</a> para configurar o plug-in."
|
55 |
|
56 |
-
#: core/FacebookWordpressSettingsPage.php:
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "Ignora esta notificação."
|
59 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: pt_PT\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "O identificador único do teu Píxel do Facebook."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"Cookies para Sites e Apps</a>, que tem sugestões para o cumprimento dos "
|
42 |
"requisitos de privacidade da UE."
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "Ativar a correspondência avançada melhora a criação de públicos."
|
47 |
|
48 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
53 |
"O plug-in do Píxel do Facebook requer a identificação do Píxel. Clica <a "
|
54 |
"href=\"%s\">aqui</a> para configurar o plug-in."
|
55 |
|
56 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "Ignora esta notificação."
|
59 |
|
languages/official-facebook-pixel-ru_RU.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-ru_RU.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ru_RU\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "У вас нет разрешения на просмотр этой страницы"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Уникальный идентификатор пикселя Facebook."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -40,11 +40,11 @@ msgstr ""
|
|
40 |
"Подробнее о требованиях к конфиденциальности, действующих в ЕС, см. в <a "
|
41 |
"href=\"%s\" target=\"_blank\">этом руководстве</a>."
|
42 |
|
43 |
-
#: core/FacebookWordpressSettingsPage.php:
|
44 |
msgid "Enabling Advanced Matching improves audience building."
|
45 |
msgstr "Расширенный поиск совпадений для создания аудиторий."
|
46 |
|
47 |
-
#: core/FacebookWordpressSettingsPage.php:
|
48 |
msgid ""
|
49 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
50 |
"to configure the plugin."
|
@@ -52,7 +52,7 @@ msgstr ""
|
|
52 |
"Плагин пикселя Facebook требует ID пикселя. Чтобы настроить плагин, нажмите "
|
53 |
"<a href=\"%s\">здесь</a>."
|
54 |
|
55 |
-
#: core/FacebookWordpressSettingsPage.php:
|
56 |
msgid "Dismiss this notice."
|
57 |
msgstr "Пропустить напоминание."
|
58 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: ru_RU\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "У вас нет разрешения на просмотр этой страницы"
|
21 |
|
22 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Уникальный идентификатор пикселя Facebook."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
40 |
"Подробнее о требованиях к конфиденциальности, действующих в ЕС, см. в <a "
|
41 |
"href=\"%s\" target=\"_blank\">этом руководстве</a>."
|
42 |
|
43 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
44 |
msgid "Enabling Advanced Matching improves audience building."
|
45 |
msgstr "Расширенный поиск совпадений для создания аудиторий."
|
46 |
|
47 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
48 |
msgid ""
|
49 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
50 |
"to configure the plugin."
|
52 |
"Плагин пикселя Facebook требует ID пикселя. Чтобы настроить плагин, нажмите "
|
53 |
"<a href=\"%s\">здесь</a>."
|
54 |
|
55 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
56 |
msgid "Dismiss this notice."
|
57 |
msgstr "Пропустить напоминание."
|
58 |
|
languages/official-facebook-pixel-sv_SE.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-sv_SE.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: sv_SE\n"
|
@@ -15,22 +15,22 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Du har inte tillräcklig behörighet för att få åtkomst till den här sidan"
|
22 |
|
23 |
-
#: core/FacebookWordpressSettingsPage.php:
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: core/FacebookWordpressSettingsPage.php:
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "Det unika id:t för din Facebook-pixel."
|
32 |
|
33 |
-
#: core/FacebookWordpressSettingsPage.php:
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,11 +41,11 @@ msgstr ""
|
|
41 |
"href=\"%s\" target=\"_blank\">Vägledning för cookiegodkännande för "
|
42 |
"webbplatser och appar</a> för förslag om hur du följer EU:s sekretesskrav."
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "Du kan skapa bättre målgrupper genom att aktivera Avancerad matchning."
|
47 |
|
48 |
-
#: core/FacebookWordpressSettingsPage.php:
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
@@ -53,7 +53,7 @@ msgstr ""
|
|
53 |
"Pluginprogrammet för Facebook-pixeln kräver ett pixel-id. Klicka <a href=\"%s"
|
54 |
"\">här</a> för att konfigurera pluginprogrammet."
|
55 |
|
56 |
-
#: core/FacebookWordpressSettingsPage.php:
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "Stäng den här aviseringen."
|
59 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: sv_SE\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr ""
|
21 |
"Du har inte tillräcklig behörighet för att få åtkomst till den här sidan"
|
22 |
|
23 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
24 |
msgid ""
|
25 |
"Please note that we are now also supporting upper funnel pixel events for "
|
26 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
30 |
msgid "The unique identifier for your Facebook pixel."
|
31 |
msgstr "Det unika id:t för din Facebook-pixel."
|
32 |
|
33 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
34 |
msgid ""
|
35 |
"For businesses that operate in the European Union, you may need to take "
|
36 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"href=\"%s\" target=\"_blank\">Vägledning för cookiegodkännande för "
|
42 |
"webbplatser och appar</a> för förslag om hur du följer EU:s sekretesskrav."
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr "Du kan skapa bättre målgrupper genom att aktivera Avancerad matchning."
|
47 |
|
48 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
49 |
msgid ""
|
50 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
51 |
"to configure the plugin."
|
53 |
"Pluginprogrammet för Facebook-pixeln kräver ett pixel-id. Klicka <a href=\"%s"
|
54 |
"\">här</a> för att konfigurera pluginprogrammet."
|
55 |
|
56 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
57 |
msgid "Dismiss this notice."
|
58 |
msgstr "Stäng den här aviseringen."
|
59 |
|
languages/official-facebook-pixel-th_TH.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-th_TH.po
CHANGED
@@ -2,10 +2,10 @@
|
|
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-
|
8 |
-
"PO-Revision-Date: 2018-
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: th_TH\n"
|
@@ -14,21 +14,21 @@ msgstr ""
|
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
|
17 |
-
#: core/FacebookWordpressSettingsPage.php:
|
18 |
msgid "You do not have sufficient permissions to access this page"
|
19 |
msgstr "คุณไม่มีสิทธิ์เข้าถึงเพียงพอสำหรับหน้านี้"
|
20 |
|
21 |
-
#: core/FacebookWordpressSettingsPage.php:
|
22 |
msgid ""
|
23 |
"Please note that we are now also supporting upper funnel pixel events for Contact Form 7, "
|
24 |
"Easy Digital Downloads, Ninja Forms and WP Forms"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: core/FacebookWordpressSettingsPage.php:
|
28 |
msgid "The unique identifier for your Facebook pixel."
|
29 |
msgstr "ตัวระบุที่ไม่ซ้ำกันสำหรับพิกเซลของ Facebook"
|
30 |
|
31 |
-
#: core/FacebookWordpressSettingsPage.php:
|
32 |
msgid ""
|
33 |
"For businesses that operate in the European Union, you may need to take additional action. "
|
34 |
"Read the <a href=\"%s\" target=\"_blank\">Cookie Consent Guide for Sites and Apps</a> for "
|
@@ -38,17 +38,17 @@ msgstr ""
|
|
38 |
"โปรดอ่านคำแนะนำในการปฏิบัติตามข้อกำหนดสำหรับความเป็นส่วนตัวของสหภาพยุโรปใน<a href=\"%s\" target=\"_blank"
|
39 |
"\">คู่มือเกี่ยวกับความยินยอมให้ติดตั้งคุกกี้สำหรับเว็บไซต์และแอพ</a>"
|
40 |
|
41 |
-
#: core/FacebookWordpressSettingsPage.php:
|
42 |
msgid "Enabling Advanced Matching improves audience building."
|
43 |
msgstr "การเปิดใช้การจับคู่ขั้นสูงช่วยปรับปรุงการสร้างกลุ่มเป้าหมายได้"
|
44 |
|
45 |
-
#: core/FacebookWordpressSettingsPage.php:
|
46 |
msgid ""
|
47 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> to configure the "
|
48 |
"plugin."
|
49 |
msgstr "ปลั๊กอินพิกเซลของ Facebook ต้องมี ID พิกเซล คลิก<a href=\"%s\">ที่นี่</a>เพื่อกำหนดค่าปลั๊กอิน"
|
50 |
|
51 |
-
#: core/FacebookWordpressSettingsPage.php:
|
52 |
msgid "Dismiss this notice."
|
53 |
msgstr "ข้ามประกาศนี้"
|
54 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-pixel\n"
|
7 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
8 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: th_TH\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
|
17 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
18 |
msgid "You do not have sufficient permissions to access this page"
|
19 |
msgstr "คุณไม่มีสิทธิ์เข้าถึงเพียงพอสำหรับหน้านี้"
|
20 |
|
21 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
22 |
msgid ""
|
23 |
"Please note that we are now also supporting upper funnel pixel events for Contact Form 7, "
|
24 |
"Easy Digital Downloads, Ninja Forms and WP Forms"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
28 |
msgid "The unique identifier for your Facebook pixel."
|
29 |
msgstr "ตัวระบุที่ไม่ซ้ำกันสำหรับพิกเซลของ Facebook"
|
30 |
|
31 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
32 |
msgid ""
|
33 |
"For businesses that operate in the European Union, you may need to take additional action. "
|
34 |
"Read the <a href=\"%s\" target=\"_blank\">Cookie Consent Guide for Sites and Apps</a> for "
|
38 |
"โปรดอ่านคำแนะนำในการปฏิบัติตามข้อกำหนดสำหรับความเป็นส่วนตัวของสหภาพยุโรปใน<a href=\"%s\" target=\"_blank"
|
39 |
"\">คู่มือเกี่ยวกับความยินยอมให้ติดตั้งคุกกี้สำหรับเว็บไซต์และแอพ</a>"
|
40 |
|
41 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
42 |
msgid "Enabling Advanced Matching improves audience building."
|
43 |
msgstr "การเปิดใช้การจับคู่ขั้นสูงช่วยปรับปรุงการสร้างกลุ่มเป้าหมายได้"
|
44 |
|
45 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
46 |
msgid ""
|
47 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> to configure the "
|
48 |
"plugin."
|
49 |
msgstr "ปลั๊กอินพิกเซลของ Facebook ต้องมี ID พิกเซล คลิก<a href=\"%s\">ที่นี่</a>เพื่อกำหนดค่าปลั๊กอิน"
|
50 |
|
51 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
52 |
msgid "Dismiss this notice."
|
53 |
msgstr "ข้ามประกาศนี้"
|
54 |
|
languages/official-facebook-pixel-tr_TR.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-tr_TR.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: tr_TR\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "Bu sayfaya erişmek için yeterli izniniz yok"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Facebook pikseliniz için benzersiz tanımlayıcı."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,13 +41,13 @@ msgstr ""
|
|
41 |
"için <a href=\"%s\" target=\"_blank\">Siteler ve Uygulamalar İçin Çerez Onay "
|
42 |
"Kılavuzu</a>'nu okuyun."
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr ""
|
47 |
"Gelişmiş Eşleştirmeyi etkinleştirmek, hedef kitle oluşturma performansını "
|
48 |
"iyileştirir."
|
49 |
|
50 |
-
#: core/FacebookWordpressSettingsPage.php:
|
51 |
msgid ""
|
52 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
53 |
"to configure the plugin."
|
@@ -55,7 +55,7 @@ msgstr ""
|
|
55 |
"Facebook Pikseli eklentisi bir Piksel Kimliği gerektirir. Eklentiyi "
|
56 |
"yapılandırmak için <a href=\"%s\">buraya</a> tıklayın."
|
57 |
|
58 |
-
#: core/FacebookWordpressSettingsPage.php:
|
59 |
msgid "Dismiss this notice."
|
60 |
msgstr "Bu uyarıyı yok sayın."
|
61 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: tr_TR\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Facebook pikseliniz için benzersiz tanımlayıcı."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"için <a href=\"%s\" target=\"_blank\">Siteler ve Uygulamalar İçin Çerez Onay "
|
42 |
"Kılavuzu</a>'nu okuyun."
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr ""
|
47 |
"Gelişmiş Eşleştirmeyi etkinleştirmek, hedef kitle oluşturma performansını "
|
48 |
"iyileştirir."
|
49 |
|
50 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
51 |
msgid ""
|
52 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
53 |
"to configure the plugin."
|
55 |
"Facebook Pikseli eklentisi bir Piksel Kimliği gerektirir. Eklentiyi "
|
56 |
"yapılandırmak için <a href=\"%s\">buraya</a> tıklayın."
|
57 |
|
58 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
59 |
msgid "Dismiss this notice."
|
60 |
msgstr "Bu uyarıyı yok sayın."
|
61 |
|
languages/official-facebook-pixel-vi_VN.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-vi_VN.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: vi_VN\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "Bạn không có đủ quyền truy cập trang này"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Số nhận dạng duy nhất cho Facebook pixel của bạn."
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -41,13 +41,13 @@ msgstr ""
|
|
41 |
"cho trang web và ứng dụng</a> để biết gợi ý về việc tuân thủ các yêu cầu về "
|
42 |
"quyền riêng tư tại EU."
|
43 |
|
44 |
-
#: core/FacebookWordpressSettingsPage.php:
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr ""
|
47 |
"Khi bật tính năng Khớp nâng cao, bạn sẽ cải thiện được quá trình xây dựng "
|
48 |
"đối tượng."
|
49 |
|
50 |
-
#: core/FacebookWordpressSettingsPage.php:
|
51 |
msgid ""
|
52 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
53 |
"to configure the plugin."
|
@@ -55,7 +55,7 @@ msgstr ""
|
|
55 |
"Plugin Facebook Pixel yêu cầu ID Pixel. Hãy nhấp vào <a href=\"%s\">đây</a> "
|
56 |
"để cấu hình plugin này."
|
57 |
|
58 |
-
#: core/FacebookWordpressSettingsPage.php:
|
59 |
msgid "Dismiss this notice."
|
60 |
msgstr "Loại bỏ thông báo này."
|
61 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: vi_VN\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
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 upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Số nhận dạng duy nhất cho Facebook pixel của bạn."
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
41 |
"cho trang web và ứng dụng</a> để biết gợi ý về việc tuân thủ các yêu cầu về "
|
42 |
"quyền riêng tư tại EU."
|
43 |
|
44 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
45 |
msgid "Enabling Advanced Matching improves audience building."
|
46 |
msgstr ""
|
47 |
"Khi bật tính năng Khớp nâng cao, bạn sẽ cải thiện được quá trình xây dựng "
|
48 |
"đối tượng."
|
49 |
|
50 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
51 |
msgid ""
|
52 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
53 |
"to configure the plugin."
|
55 |
"Plugin Facebook Pixel yêu cầu ID Pixel. Hãy nhấp vào <a href=\"%s\">đây</a> "
|
56 |
"để cấu hình plugin này."
|
57 |
|
58 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
59 |
msgid "Dismiss this notice."
|
60 |
msgstr "Loại bỏ thông báo này."
|
61 |
|
languages/official-facebook-pixel-zh_CN.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-zh_CN.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: zh_CN\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "您的权限不足,无法访问此页面"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "您的 Facebook 像素的唯一标识符。"
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -39,17 +39,17 @@ msgstr ""
|
|
39 |
"在欧盟地区开展业务的商家可能需要采取额外行动。请阅读<a href=\"%s\" target="
|
40 |
"\"_blank\">网站和应用的 Cookie 同意指南</a>,了解关于遵守欧盟隐私规定的建议。"
|
41 |
|
42 |
-
#: core/FacebookWordpressSettingsPage.php:
|
43 |
msgid "Enabling Advanced Matching improves audience building."
|
44 |
msgstr "启用“高级匹配”功能可改善受众的创建。"
|
45 |
|
46 |
-
#: core/FacebookWordpressSettingsPage.php:
|
47 |
msgid ""
|
48 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
49 |
"to configure the plugin."
|
50 |
msgstr "Facebook 像素插件需要像素编号。点击<a href=\"%s\">此处</a>配置插件。"
|
51 |
|
52 |
-
#: core/FacebookWordpressSettingsPage.php:
|
53 |
msgid "Dismiss this notice."
|
54 |
msgstr "关闭此通知。"
|
55 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: zh_CN\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "您的权限不足,无法访问此页面"
|
21 |
|
22 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "您的 Facebook 像素的唯一标识符。"
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
39 |
"在欧盟地区开展业务的商家可能需要采取额外行动。请阅读<a href=\"%s\" target="
|
40 |
"\"_blank\">网站和应用的 Cookie 同意指南</a>,了解关于遵守欧盟隐私规定的建议。"
|
41 |
|
42 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
43 |
msgid "Enabling Advanced Matching improves audience building."
|
44 |
msgstr "启用“高级匹配”功能可改善受众的创建。"
|
45 |
|
46 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
47 |
msgid ""
|
48 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
49 |
"to configure the plugin."
|
50 |
msgstr "Facebook 像素插件需要像素编号。点击<a href=\"%s\">此处</a>配置插件。"
|
51 |
|
52 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
53 |
msgid "Dismiss this notice."
|
54 |
msgstr "关闭此通知。"
|
55 |
|
languages/official-facebook-pixel-zh_TW.mo
CHANGED
Binary file
|
languages/official-facebook-pixel-zh_TW.po
CHANGED
@@ -2,11 +2,11 @@
|
|
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-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: zh_TW\n"
|
@@ -15,21 +15,21 @@ msgstr ""
|
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
-
#: core/FacebookWordpressSettingsPage.php:
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "您沒有足夠的權限存取此頁面"
|
21 |
|
22 |
-
#: core/FacebookWordpressSettingsPage.php:
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: core/FacebookWordpressSettingsPage.php:
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Facebook 像素的唯一識別碼。"
|
31 |
|
32 |
-
#: core/FacebookWordpressSettingsPage.php:
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -40,11 +40,11 @@ msgstr ""
|
|
40 |
"target=\"_blank\">網站和應用程式:取得 Cookie 許可指南</a>,瞭解遵守歐盟隱私"
|
41 |
"規定的相關建議。"
|
42 |
|
43 |
-
#: core/FacebookWordpressSettingsPage.php:
|
44 |
msgid "Enabling Advanced Matching improves audience building."
|
45 |
msgstr "啟用「進階配對」功能有助於建立理想的廣告受眾。"
|
46 |
|
47 |
-
#: core/FacebookWordpressSettingsPage.php:
|
48 |
msgid ""
|
49 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
50 |
"to configure the plugin."
|
@@ -52,7 +52,7 @@ msgstr ""
|
|
52 |
"Facebook 像素外掛程式需要一組像素編號。請點擊<a href=\"%s\">這裡</a>設定外掛"
|
53 |
"程式。"
|
54 |
|
55 |
-
#: core/FacebookWordpressSettingsPage.php:
|
56 |
msgid "Dismiss this notice."
|
57 |
msgstr "關閉這則通知。"
|
58 |
|
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.18\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-"
|
7 |
"pixel\n"
|
8 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-11-16 22:00-0700\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
12 |
"Language: zh_TW\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 2.2\n"
|
17 |
|
18 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
19 |
msgid "You do not have sufficient permissions to access this page"
|
20 |
msgstr "您沒有足夠的權限存取此頁面"
|
21 |
|
22 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
23 |
msgid ""
|
24 |
"Please note that we are now also supporting upper funnel pixel events for "
|
25 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
29 |
msgid "The unique identifier for your Facebook pixel."
|
30 |
msgstr "Facebook 像素的唯一識別碼。"
|
31 |
|
32 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
33 |
msgid ""
|
34 |
"For businesses that operate in the European Union, you may need to take "
|
35 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
40 |
"target=\"_blank\">網站和應用程式:取得 Cookie 許可指南</a>,瞭解遵守歐盟隱私"
|
41 |
"規定的相關建議。"
|
42 |
|
43 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
44 |
msgid "Enabling Advanced Matching improves audience building."
|
45 |
msgstr "啟用「進階配對」功能有助於建立理想的廣告受眾。"
|
46 |
|
47 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
48 |
msgid ""
|
49 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
50 |
"to configure the plugin."
|
52 |
"Facebook 像素外掛程式需要一組像素編號。請點擊<a href=\"%s\">這裡</a>設定外掛"
|
53 |
"程式。"
|
54 |
|
55 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
56 |
msgid "Dismiss this notice."
|
57 |
msgstr "關閉這則通知。"
|
58 |
|
languages/official-facebook-pixel.pot
CHANGED
@@ -2,10 +2,9 @@
|
|
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 |
-
"POT-Creation-Date: 2018-10-26 03:38:26+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -13,21 +12,21 @@ msgstr ""
|
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
|
16 |
-
#: core/FacebookWordpressSettingsPage.php:
|
17 |
msgid "You do not have sufficient permissions to access this page"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: core/FacebookWordpressSettingsPage.php:
|
21 |
msgid ""
|
22 |
"Please note that we are now also supporting lower funnel pixel events for "
|
23 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: core/FacebookWordpressSettingsPage.php:
|
27 |
msgid "The unique identifier for your Facebook pixel."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: core/FacebookWordpressSettingsPage.php:
|
31 |
msgid ""
|
32 |
"For businesses that operate in the European Union, you may need to take "
|
33 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
@@ -35,17 +34,17 @@ msgid ""
|
|
35 |
"requirements."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: core/FacebookWordpressSettingsPage.php:
|
39 |
msgid "Enabling Advanced Matching improves audience building."
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: core/FacebookWordpressSettingsPage.php:
|
43 |
msgid ""
|
44 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
45 |
"to configure the plugin."
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: core/FacebookWordpressSettingsPage.php:
|
49 |
msgid "Dismiss this notice."
|
50 |
msgstr ""
|
51 |
|
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.18\n"
|
6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/official-facebook-pixel\n"
|
7 |
+
"POT-Creation-Date: 2018-11-16 21:59:22+00:00\n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: core/FacebookWordpressSettingsPage.php:47
|
16 |
msgid "You do not have sufficient permissions to access this page"
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: core/FacebookWordpressSettingsPage.php:109
|
20 |
msgid ""
|
21 |
"Please note that we are now also supporting lower funnel pixel events for "
|
22 |
"Contact Form 7, Easy Digital Downloads, Ninja Forms and WP Forms"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: core/FacebookWordpressSettingsPage.php:115
|
26 |
msgid "The unique identifier for your Facebook pixel."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: core/FacebookWordpressSettingsPage.php:136
|
30 |
msgid ""
|
31 |
"For businesses that operate in the European Union, you may need to take "
|
32 |
"additional action. Read the <a href=\"%s\" target=\"_blank\">Cookie Consent "
|
34 |
"requirements."
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: core/FacebookWordpressSettingsPage.php:161
|
38 |
msgid "Enabling Advanced Matching improves audience building."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: core/FacebookWordpressSettingsPage.php:191
|
42 |
msgid ""
|
43 |
"The Facebook Pixel plugin requires a Pixel ID. Click <a href=\"%s\">here</a> "
|
44 |
"to configure the plugin."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: core/FacebookWordpressSettingsPage.php:210
|
48 |
msgid "Dismiss this notice."
|
49 |
msgstr ""
|
50 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.6
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -38,6 +38,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-09 version 1.7.17 =
|
42 |
* Fix Lead event
|
43 |
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 4.9.8
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 1.7.18
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
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-09 version 1.7.18 =
|
42 |
+
* Fix translation and set the advanced matching on by default
|
43 |
+
|
44 |
= 2018-11-09 version 1.7.17 =
|
45 |
* Fix Lead event
|
46 |
|