Version Description
- Minor bug fixes.
Download this release
Release Info
Developer | sitewit |
Plugin | Google Ads & Marketing by Kliken |
Version | 1.0.7 |
Comparing to | |
See all releases |
Code changes from version 1.0.6 to 1.0.7
- changelog.txt +1 -1
- classes/class-helper.php +2 -2
- classes/class-plugin.php +3 -3
- classes/class-wc-integration.php +1 -1
- kliken-marketing-for-google.php +3 -3
- languages/kliken-marketing-for-google-cs_CZ.mo +0 -0
- languages/kliken-marketing-for-google-da_DK.mo +0 -0
- languages/kliken-marketing-for-google-de_CH.mo +0 -0
- languages/kliken-marketing-for-google-de_DE.mo +0 -0
- languages/kliken-marketing-for-google-es_ES.mo +0 -0
- languages/kliken-marketing-for-google-fi.mo +0 -0
- languages/kliken-marketing-for-google-fr_FR.mo +0 -0
- languages/kliken-marketing-for-google-he_IL.mo +0 -0
- languages/kliken-marketing-for-google-hu_HU.mo +0 -0
- languages/kliken-marketing-for-google-id_ID.mo +0 -0
- languages/kliken-marketing-for-google-it_IT.mo +0 -0
- languages/kliken-marketing-for-google-ja.mo +0 -0
- languages/kliken-marketing-for-google-nb_NO.mo +0 -0
- languages/kliken-marketing-for-google-nl_NL.mo +0 -0
- languages/kliken-marketing-for-google-pl_PL.mo +0 -0
- languages/kliken-marketing-for-google-pt_BR.mo +0 -0
- languages/kliken-marketing-for-google-pt_PT.mo +0 -0
- languages/kliken-marketing-for-google-ru_RU.mo +0 -0
- languages/kliken-marketing-for-google-sk_SK.mo +0 -0
- languages/kliken-marketing-for-google-sv_SE.mo +0 -0
- languages/kliken-marketing-for-google-zh_CN.mo +0 -0
- languages/kliken-marketing-for-google.pot +194 -195
- pages/dashboard.php +1 -1
- pages/getstarted.php +1 -1
- readme.txt +7 -4
- vendor/autoload.php +1 -1
- vendor/composer/ClassLoader.php +1 -1
- vendor/composer/LICENSE +17 -52
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +2 -2
changelog.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
*** Google Ads
|
2 |
|
3 |
2020-02-20 - version 1.0.3
|
4 |
* Added shopping cart actions and product view support.
|
1 |
+
*** Google Ads & Marketing by Kliken Changelog ***
|
2 |
|
3 |
2020-02-20 - version 1.0.3
|
4 |
* Added shopping cart actions and product view support.
|
classes/class-helper.php
CHANGED
@@ -373,7 +373,7 @@ class Helper {
|
|
373 |
}
|
374 |
|
375 |
$authorization_url = get_site_url() . '/wc-auth/v1/authorize'
|
376 |
-
. '?app_name=' . rawurlencode(
|
377 |
. '&scope=read_write'
|
378 |
. '&user_id=' . base64_encode( $account_id . ':' . $application_token )
|
379 |
. '&return_url=' . rawurlencode( 'bit.ly/2OweS8h' ) // This links back to woo.kliken.com. We just need to do this to shorten the link because some WordPress hostings seem to dislike long links.
|
@@ -462,7 +462,7 @@ class Helper {
|
|
462 |
return sprintf(
|
463 |
wp_kses(
|
464 |
/* translators: %s: A hyperlink */
|
465 |
-
__( '<strong>Google Ads
|
466 |
[
|
467 |
'strong' => [],
|
468 |
'a' => [ 'href' => [] ],
|
373 |
}
|
374 |
|
375 |
$authorization_url = get_site_url() . '/wc-auth/v1/authorize'
|
376 |
+
. '?app_name=' . rawurlencode( KK_WC_AUTH_APP_NAME )
|
377 |
. '&scope=read_write'
|
378 |
. '&user_id=' . base64_encode( $account_id . ':' . $application_token )
|
379 |
. '&return_url=' . rawurlencode( 'bit.ly/2OweS8h' ) // This links back to woo.kliken.com. We just need to do this to shorten the link because some WordPress hostings seem to dislike long links.
|
462 |
return sprintf(
|
463 |
wp_kses(
|
464 |
/* translators: %s: A hyperlink */
|
465 |
+
__( '<strong>Google Ads & Marketing by Kliken plugin is almost ready.</strong> <a href="%s">Click here</a> to get started.', 'kliken-marketing-for-google' ),
|
466 |
[
|
467 |
'strong' => [],
|
468 |
'a' => [ 'href' => [] ],
|
classes/class-plugin.php
CHANGED
@@ -52,7 +52,7 @@ class Plugin {
|
|
52 |
load_plugin_textdomain( 'kliken-marketing-for-google', false, KK_WC_PLUGIN_REL_PATH . '/languages' );
|
53 |
|
54 |
if ( $this->_bootstrapped ) {
|
55 |
-
throw new \Exception( __( 'Google Ads
|
56 |
}
|
57 |
|
58 |
$this->check_dependencies();
|
@@ -270,13 +270,13 @@ class Plugin {
|
|
270 |
*/
|
271 |
private function check_dependencies() {
|
272 |
if ( ! function_exists( 'wc' ) ) {
|
273 |
-
throw new \Exception( __( 'Google Ads
|
274 |
}
|
275 |
|
276 |
$required_woo_version = '3.0';
|
277 |
if ( version_compare( wc()->version, $required_woo_version, '<' ) ) {
|
278 |
/* translators: %s: Version number of WooCommerce required to run plugin. Do not translate. */
|
279 |
-
throw new \Exception( sprintf( __( 'Google Ads
|
280 |
}
|
281 |
}
|
282 |
|
52 |
load_plugin_textdomain( 'kliken-marketing-for-google', false, KK_WC_PLUGIN_REL_PATH . '/languages' );
|
53 |
|
54 |
if ( $this->_bootstrapped ) {
|
55 |
+
throw new \Exception( __( 'Google Ads & Marketing by Kliken plugin can only be called once', 'kliken-marketing-for-google' ), self::ALREADY_BOOTSTRAPED );
|
56 |
}
|
57 |
|
58 |
$this->check_dependencies();
|
270 |
*/
|
271 |
private function check_dependencies() {
|
272 |
if ( ! function_exists( 'wc' ) ) {
|
273 |
+
throw new \Exception( __( 'Google Ads & Marketing by Kliken requires WooCommerce to be activated', 'kliken-marketing-for-google' ), self::DEPENDENCIES_UNSATISFIED );
|
274 |
}
|
275 |
|
276 |
$required_woo_version = '3.0';
|
277 |
if ( version_compare( wc()->version, $required_woo_version, '<' ) ) {
|
278 |
/* translators: %s: Version number of WooCommerce required to run plugin. Do not translate. */
|
279 |
+
throw new \Exception( sprintf( __( 'Google Ads & Marketing by Kliken requires WooCommerce version %s or greater', 'kliken-marketing-for-google' ), $required_woo_version ), self::DEPENDENCIES_UNSATISFIED );
|
280 |
}
|
281 |
}
|
282 |
|
classes/class-wc-integration.php
CHANGED
@@ -22,7 +22,7 @@ class WC_Integration extends \WC_Integration {
|
|
22 |
global $woocommerce;
|
23 |
|
24 |
$this->id = KK_WC_INTEGRATION_PAGE_ID;
|
25 |
-
$this->method_title = __( 'Google Ads
|
26 |
|
27 |
if ( true === $init ) {
|
28 |
// Load the settings.
|
22 |
global $woocommerce;
|
23 |
|
24 |
$this->id = KK_WC_INTEGRATION_PAGE_ID;
|
25 |
+
$this->method_title = __( 'Google Ads & Marketing by Kliken', 'kliken-marketing-for-google' ); // This is for the sub-section text.
|
26 |
|
27 |
if ( true === $init ) {
|
28 |
// Load the settings.
|
kliken-marketing-for-google.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Google Ads & Marketing by Kliken
|
4 |
Plugin URI: https://woo.kliken.com/
|
5 |
Description: The automated Google Shopping solution to get your products found on Google, and grow your WooCommerce Store!
|
6 |
-
Version: 1.0.
|
7 |
Author: Kliken
|
8 |
Author URI: http://kliken.com/
|
9 |
Developer: Kliken
|
@@ -29,7 +29,7 @@ define( 'KK_WC_PLUGIN_REL_PATH', basename( dirname( __FILE__ ) ) );
|
|
29 |
define( 'KK_WC_AFFILIATE_ID', '82E7B644-DB42-40E9-9EDF-6FD10A4BAFB3' );
|
30 |
define( 'KK_WC_WOOKLIKEN_BASE_URL', 'https://woo.kliken.com/' );
|
31 |
define( 'KK_WC_AUTH_CALLBACK_URL', 'https://app.mysite-analytics.com/WebHooks/WooCommerceAuth/' );
|
32 |
-
define( 'KK_WC_AUTH_APP_NAME', 'Google Ads
|
33 |
|
34 |
define( 'KK_WC_INTEGRATION_PAGE_ID', 'kk_wcintegration' );
|
35 |
|
@@ -42,7 +42,7 @@ define( 'KK_WC_TRANSIENT_AUTH_REDIRECT', 'kk_wc_activation_redirect' );
|
|
42 |
define( 'KK_WC_WELCOME_MESSAGE', 'kk_wc_welcome_message' );
|
43 |
define( 'KK_WC_BOOTSTRAP_MESSAGE', 'kk_wc_bootstrap_message' );
|
44 |
|
45 |
-
require 'vendor/autoload.php';
|
46 |
|
47 |
/**
|
48 |
* Starting point. Try to initiate the main instance of the plugin.
|
3 |
Plugin Name: Google Ads & Marketing by Kliken
|
4 |
Plugin URI: https://woo.kliken.com/
|
5 |
Description: The automated Google Shopping solution to get your products found on Google, and grow your WooCommerce Store!
|
6 |
+
Version: 1.0.7
|
7 |
Author: Kliken
|
8 |
Author URI: http://kliken.com/
|
9 |
Developer: Kliken
|
29 |
define( 'KK_WC_AFFILIATE_ID', '82E7B644-DB42-40E9-9EDF-6FD10A4BAFB3' );
|
30 |
define( 'KK_WC_WOOKLIKEN_BASE_URL', 'https://woo.kliken.com/' );
|
31 |
define( 'KK_WC_AUTH_CALLBACK_URL', 'https://app.mysite-analytics.com/WebHooks/WooCommerceAuth/' );
|
32 |
+
define( 'KK_WC_AUTH_APP_NAME', 'Google Ads & Marketing by Kliken' );
|
33 |
|
34 |
define( 'KK_WC_INTEGRATION_PAGE_ID', 'kk_wcintegration' );
|
35 |
|
42 |
define( 'KK_WC_WELCOME_MESSAGE', 'kk_wc_welcome_message' );
|
43 |
define( 'KK_WC_BOOTSTRAP_MESSAGE', 'kk_wc_bootstrap_message' );
|
44 |
|
45 |
+
require KK_WC_PLUGIN_DIR . 'vendor/autoload.php';
|
46 |
|
47 |
/**
|
48 |
* Starting point. Try to initiate the main instance of the plugin.
|
languages/kliken-marketing-for-google-cs_CZ.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-da_DK.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-de_CH.mo
CHANGED
Binary file
|
languages/kliken-marketing-for-google-de_DE.mo
CHANGED
Binary file
|
languages/kliken-marketing-for-google-es_ES.mo
CHANGED
Binary file
|
languages/kliken-marketing-for-google-fi.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-fr_FR.mo
CHANGED
Binary file
|
languages/kliken-marketing-for-google-he_IL.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-hu_HU.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-id_ID.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-it_IT.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-ja.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-nb_NO.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-nl_NL.mo
CHANGED
Binary file
|
languages/kliken-marketing-for-google-pl_PL.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-pt_BR.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-pt_PT.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-ru_RU.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-sk_SK.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-sv_SE.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google-zh_CN.mo
ADDED
Binary file
|
languages/kliken-marketing-for-google.pot
CHANGED
@@ -1,195 +1,194 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the GNU General Public License v3.0.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: Google Ads
|
6 |
-
"Report-Msgid-Bugs-To: http://www.sitewit.com/contact/\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"MIME-Version: 1.0\n"
|
9 |
-
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
-
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
-
"Last-Translator: SiteWit <wordpress@sitewit.com>\n"
|
13 |
-
"Language-Team: SiteWit <wordpress@sitewit.com>\n"
|
14 |
-
"Language: en\n"
|
15 |
-
"Plural-Forms: nplurals=2; plural=n !=\n"
|
16 |
-
"X-Poedit-Country: United States\n"
|
17 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
|
19 |
-
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
|
20 |
-
"esc_html_x:1,2c;\n"
|
21 |
-
"X-Poedit-Basepath: ../\n"
|
22 |
-
"X-Poedit-SearchPath-0: .\n"
|
23 |
-
"X-Poedit-Bookmarks: \n"
|
24 |
-
"X-Textdomain-Support: yes\n"
|
25 |
-
"X-Generator: grunt-wp-i18n1.0.2\n"
|
26 |
-
|
27 |
-
#. translators: %s: A hyperlink
|
28 |
-
#: classes/class-helper.php:465
|
29 |
-
msgid ""
|
30 |
-
"<strong>Google Ads
|
31 |
-
"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: classes/class-plugin.php:55
|
35 |
-
msgid "Google Ads
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: classes/class-plugin.php:122
|
39 |
-
msgid "Dashboard"
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
#: classes/class-plugin.php:125
|
43 |
-
msgid "Support"
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: classes/class-plugin.php:208
|
47 |
-
msgid "This will dismiss the message permanently. Are you sure?"
|
48 |
-
msgstr ""
|
49 |
-
|
50 |
-
#: classes/class-plugin.php:273
|
51 |
-
msgid "Google Ads
|
52 |
-
msgstr ""
|
53 |
-
|
54 |
-
#. translators: %s: Version number of WooCommerce required to run plugin. Do
|
55 |
-
#. not translate.
|
56 |
-
#: classes/class-plugin.php:279
|
57 |
-
msgid "
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
#: classes/class-rest-misc-controller.php:
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
#. Plugin Name of the plugin/theme
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
"
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
"
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
"
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
msgstr ""
|
1 |
+
# Copyright (C) 2021 Kliken
|
2 |
+
# This file is distributed under the GNU General Public License v3.0.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Google Ads & Marketing by Kliken 1.0.7\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://www.sitewit.com/contact/\n"
|
7 |
+
"POT-Creation-Date: 2021-01-27 18:58:01+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: SiteWit <wordpress@sitewit.com>\n"
|
13 |
+
"Language-Team: SiteWit <wordpress@sitewit.com>\n"
|
14 |
+
"Language: en\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=n !=\n"
|
16 |
+
"X-Poedit-Country: United States\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
|
19 |
+
"_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
|
20 |
+
"esc_html_x:1,2c;\n"
|
21 |
+
"X-Poedit-Basepath: ../\n"
|
22 |
+
"X-Poedit-SearchPath-0: .\n"
|
23 |
+
"X-Poedit-Bookmarks: \n"
|
24 |
+
"X-Textdomain-Support: yes\n"
|
25 |
+
"X-Generator: grunt-wp-i18n1.0.2\n"
|
26 |
+
|
27 |
+
#. translators: %s: A hyperlink
|
28 |
+
#: classes/class-helper.php:465
|
29 |
+
msgid ""
|
30 |
+
"<strong>Google Ads & Marketing by Kliken plugin is almost ready.</strong> <a "
|
31 |
+
"href=\"%s\">Click here</a> to get started."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: classes/class-plugin.php:55
|
35 |
+
msgid "Google Ads & Marketing by Kliken plugin can only be called once"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: classes/class-plugin.php:122
|
39 |
+
msgid "Dashboard"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: classes/class-plugin.php:125
|
43 |
+
msgid "Support"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: classes/class-plugin.php:208
|
47 |
+
msgid "This will dismiss the message permanently. Are you sure?"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: classes/class-plugin.php:273
|
51 |
+
msgid "Google Ads & Marketing by Kliken requires WooCommerce to be activated"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#. translators: %s: Version number of WooCommerce required to run plugin. Do
|
55 |
+
#. not translate.
|
56 |
+
#: classes/class-plugin.php:279
|
57 |
+
msgid ""
|
58 |
+
"Google Ads & Marketing by Kliken requires WooCommerce version %s or greater"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: classes/class-rest-misc-controller.php:63
|
62 |
+
#: classes/class-rest-misc-controller.php:91
|
63 |
+
msgid "Invalid Data"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: classes/class-rest-misc-controller.php:128
|
67 |
+
msgid "Sorry, you cannot list resources."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#. Plugin Name of the plugin/theme
|
71 |
+
msgid "Google Ads & Marketing by Kliken"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: classes/class-wc-integration.php:47
|
75 |
+
msgid "Account Id"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: classes/class-wc-integration.php:52
|
79 |
+
msgid "Application Token"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: classes/class-wc-integration.php:57
|
83 |
+
msgid "Google Verification Token"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: classes/class-wc-integration.php:63
|
87 |
+
msgid "What are these options?"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: pages/dashboard.php:15
|
91 |
+
msgid "Launch Google Shopping ads and get your products found online easily."
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: pages/dashboard.php:26
|
95 |
+
msgid "Your store is connected."
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: pages/dashboard.php:28
|
99 |
+
msgid "Your WooCommerce store is connected to your Kliken account."
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: pages/dashboard.php:34
|
103 |
+
msgid "Campaign Dashboard"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: pages/dashboard.php:36
|
107 |
+
msgid "Open your dashboard to review your campaign's performance"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: pages/dashboard.php:41
|
111 |
+
msgid "Create a New Google Shopping Campaign"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: pages/dashboard.php:43
|
115 |
+
msgid ""
|
116 |
+
"Build a campaign in a few minutes, and sell to customers as they search for "
|
117 |
+
"your products on Google."
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: pages/dashboard.php:48
|
121 |
+
msgid "Manage Campaigns"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: pages/dashboard.php:50
|
125 |
+
msgid ""
|
126 |
+
"Make changes to your active campaigns, purchase one you built, or reinstate "
|
127 |
+
"your cancelled campaigns."
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: pages/dashboard.php:56
|
131 |
+
msgid "Advanced Options"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: pages/dashboard.php:67
|
135 |
+
msgid "Enable Edit"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: pages/dashboard.php:68
|
139 |
+
msgid "Save Changes"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: pages/dashboard.php:72
|
143 |
+
msgid "Authorize API Access"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: pages/getstarted.php:30
|
147 |
+
msgid "Launch Google Shopping Ads and get your products found online easily."
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: pages/getstarted.php:41
|
151 |
+
msgid "Increase sales and revenue with Google Shopping Ads"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: pages/getstarted.php:43
|
155 |
+
msgid "Use this WooCommerce and Google Ads integration to:"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: pages/getstarted.php:45
|
159 |
+
msgid "Find more customers on Google"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: pages/getstarted.php:46
|
163 |
+
msgid "Automate bidding to maximize sales for your marketing budget"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: pages/getstarted.php:47
|
167 |
+
msgid "Keep your marketing and store in sync"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: pages/getstarted.php:48
|
171 |
+
msgid "Create perfect shopping campaigns in minutes"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: pages/getstarted.php:51
|
175 |
+
msgid "Get Started"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#. Plugin URI of the plugin/theme
|
179 |
+
msgid "https://woo.kliken.com/"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#. Description of the plugin/theme
|
183 |
+
msgid ""
|
184 |
+
"The automated Google Shopping solution to get your products found on Google, "
|
185 |
+
"and grow your WooCommerce Store!"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#. Author of the plugin/theme
|
189 |
+
msgid "Kliken"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#. Author URI of the plugin/theme
|
193 |
+
msgid "http://kliken.com/"
|
194 |
+
msgstr ""
|
|
pages/dashboard.php
CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) || exit;
|
|
10 |
?>
|
11 |
|
12 |
<div class="wrap kk-wrapper">
|
13 |
-
<h2><?php esc_html_e( 'Google Ads
|
14 |
|
15 |
<p><?php esc_html_e( 'Launch Google Shopping ads and get your products found online easily.', 'kliken-marketing-for-google' ); ?></p>
|
16 |
|
10 |
?>
|
11 |
|
12 |
<div class="wrap kk-wrapper">
|
13 |
+
<h2><?php esc_html_e( 'Google Ads & Marketing by Kliken', 'kliken-marketing-for-google' ); ?></h2>
|
14 |
|
15 |
<p><?php esc_html_e( 'Launch Google Shopping ads and get your products found online easily.', 'kliken-marketing-for-google' ); ?></p>
|
16 |
|
pages/getstarted.php
CHANGED
@@ -25,7 +25,7 @@ defined( 'ABSPATH' ) || exit;
|
|
25 |
</style>
|
26 |
|
27 |
<div class="wrap kk-wrapper">
|
28 |
-
<h2><?php esc_html_e( 'Google Ads
|
29 |
|
30 |
<p><?php esc_html_e( 'Launch Google Shopping Ads and get your products found online easily.', 'kliken-marketing-for-google' ); ?></p>
|
31 |
|
25 |
</style>
|
26 |
|
27 |
<div class="wrap kk-wrapper">
|
28 |
+
<h2><?php esc_html_e( 'Google Ads & Marketing by Kliken', 'kliken-marketing-for-google' ); ?></h2>
|
29 |
|
30 |
<p><?php esc_html_e( 'Launch Google Shopping Ads and get your products found online easily.', 'kliken-marketing-for-google' ); ?></p>
|
31 |
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: sitewit
|
3 |
Tags: advertising, adwords, analytics, bing, google, leads, marketing, marketing platform, metrics, online advertising, online marketing, plugin, ppc, PPC, google shopping, shopping ads, product ads, ROI, conversions
|
4 |
Requires at least: 4.4
|
5 |
-
Tested up to: 5.
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv3 or later License
|
9 |
URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -107,7 +107,7 @@ Please be aware that Automattic and our partners SiteWit/Kliken and Google have
|
|
107 |
|
108 |
= What if my store is not approved and I have already paid? =
|
109 |
We offer a 100% Money Back Guarantee
|
110 |
-
If we can
|
111 |
|
112 |
= What countries are available for Google Ads & Marketing? =
|
113 |
Learn more about which countries offer Google Ads & Marketing at this time [here](https://support.google.com/merchants/answer/160637#countrytable).
|
@@ -119,7 +119,7 @@ If you are running a Smart Shopping campaign your ads will start serving as soon
|
|
119 |
|
120 |
Your subscription auto renews 30 days after your ads start generating clicks unless you cancel it.
|
121 |
|
122 |
-
If for some reason your store does not get approved we will refund you 100% of your money.
|
123 |
|
124 |
= How do I cancel my subscription? =
|
125 |
Google Ads & Marketing for WooCommerce is a contract free service. You can cancel your subscription at any time under the Manage section. When a campaign is cancelled, it will continue to run the remainder of the billed month, or until it has used the remaining Google Ads & Marketing balance.
|
@@ -136,6 +136,9 @@ Google Ads & Marketing for WooCommerce is a contract free service. You can cance
|
|
136 |
|
137 |
== Changelog ==
|
138 |
|
|
|
|
|
|
|
139 |
= 1.0.6 =
|
140 |
* Minor bug fixes.
|
141 |
|
2 |
Contributors: sitewit
|
3 |
Tags: advertising, adwords, analytics, bing, google, leads, marketing, marketing platform, metrics, online advertising, online marketing, plugin, ppc, PPC, google shopping, shopping ads, product ads, ROI, conversions
|
4 |
Requires at least: 4.4
|
5 |
+
Tested up to: 5.8
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 1.0.7
|
8 |
License: GPLv3 or later License
|
9 |
URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
107 |
|
108 |
= What if my store is not approved and I have already paid? =
|
109 |
We offer a 100% Money Back Guarantee
|
110 |
+
If we can't get your store approved on Google Ads & Marketing in 30 days we will refund 100% of your money. This does not apply in situations where the customer refuses to come into compliance with the stated policies and requirements of Google to get the store approved for Google Shopping. Disapprovals resulting from customer refusal to abide by the policies and requirements of Google will result in refunds being limited to unused Ad Spend.
|
111 |
|
112 |
= What countries are available for Google Ads & Marketing? =
|
113 |
Learn more about which countries offer Google Ads & Marketing at this time [here](https://support.google.com/merchants/answer/160637#countrytable).
|
119 |
|
120 |
Your subscription auto renews 30 days after your ads start generating clicks unless you cancel it.
|
121 |
|
122 |
+
If for some reason your store does not get approved we will refund you 100% of your money. This does not apply in situations where the customer refuses to come into compliance with the stated policies and requirements of Google to get the store approved for Google Shopping. Disapprovals resulting from customer refusal to abide by the policies and requirements of Google will result in refunds being limited to unused Ad Spend.
|
123 |
|
124 |
= How do I cancel my subscription? =
|
125 |
Google Ads & Marketing for WooCommerce is a contract free service. You can cancel your subscription at any time under the Manage section. When a campaign is cancelled, it will continue to run the remainder of the billed month, or until it has used the remaining Google Ads & Marketing balance.
|
136 |
|
137 |
== Changelog ==
|
138 |
|
139 |
+
= 1.0.7 =
|
140 |
+
* Minor bug fixes.
|
141 |
+
|
142 |
= 1.0.6 =
|
143 |
* Minor bug fixes.
|
144 |
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit3189846b77ba157bf806f2ea8cf80c49::getLoader();
|
vendor/composer/ClassLoader.php
CHANGED
@@ -377,7 +377,7 @@ class ClassLoader
|
|
377 |
$subPath = $class;
|
378 |
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
379 |
$subPath = substr($subPath, 0, $lastPos);
|
380 |
-
$search = $subPath.'\\';
|
381 |
if (isset($this->prefixDirsPsr4[$search])) {
|
382 |
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
383 |
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
377 |
$subPath = $class;
|
378 |
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
379 |
$subPath = substr($subPath, 0, $lastPos);
|
380 |
+
$search = $subPath . '\\';
|
381 |
if (isset($this->prefixDirsPsr4[$search])) {
|
382 |
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
383 |
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
vendor/composer/LICENSE
CHANGED
@@ -1,56 +1,21 @@
|
|
1 |
-
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
2 |
-
Upstream-Name: Composer
|
3 |
-
Upstream-Contact: Jordi Boggiano <j.boggiano@seld.be>
|
4 |
-
Source: https://github.com/composer/composer
|
5 |
|
6 |
-
|
7 |
-
Copyright: 2016, Nils Adermann <naderman@naderman.de>
|
8 |
-
2016, Jordi Boggiano <j.boggiano@seld.be>
|
9 |
-
License: Expat
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
|
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
.
|
28 |
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
29 |
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
30 |
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
31 |
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
32 |
-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
33 |
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
34 |
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
35 |
-
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
36 |
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
37 |
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
38 |
|
39 |
-
License: Expat
|
40 |
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
41 |
-
of this software and associated documentation files (the "Software"), to deal
|
42 |
-
in the Software without restriction, including without limitation the rights
|
43 |
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
44 |
-
copies of the Software, and to permit persons to whom the Software is furnished
|
45 |
-
to do so, subject to the following conditions:
|
46 |
-
.
|
47 |
-
The above copyright notice and this permission notice shall be included in all
|
48 |
-
copies or substantial portions of the Software.
|
49 |
-
.
|
50 |
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
51 |
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
52 |
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
53 |
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
54 |
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
55 |
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
56 |
-
THE SOFTWARE.
|
|
|
|
|
|
|
|
|
1 |
|
2 |
+
Copyright (c) Nils Adermann, Jordi Boggiano
|
|
|
|
|
|
|
3 |
|
4 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
5 |
+
of this software and associated documentation files (the "Software"), to deal
|
6 |
+
in the Software without restriction, including without limitation the rights
|
7 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8 |
+
copies of the Software, and to permit persons to whom the Software is furnished
|
9 |
+
to do so, subject to the following conditions:
|
10 |
|
11 |
+
The above copyright notice and this permission notice shall be included in all
|
12 |
+
copies or substantial portions of the Software.
|
13 |
+
|
14 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20 |
+
THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitd033502741110464bbead21e67961d98
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit3189846b77ba157bf806f2ea8cf80c49
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit3189846b77ba157bf806f2ea8cf80c49', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit3189846b77ba157bf806f2ea8cf80c49', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit3189846b77ba157bf806f2ea8cf80c49::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $classMap = array (
|
10 |
'Kliken\\WcPlugin\\Helper' => __DIR__ . '/../..' . '/classes/class-helper.php',
|
@@ -21,7 +21,7 @@ class ComposerStaticInitd033502741110464bbead21e67961d98
|
|
21 |
public static function getInitializer(ClassLoader $loader)
|
22 |
{
|
23 |
return \Closure::bind(function () use ($loader) {
|
24 |
-
$loader->classMap =
|
25 |
|
26 |
}, null, ClassLoader::class);
|
27 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit3189846b77ba157bf806f2ea8cf80c49
|
8 |
{
|
9 |
public static $classMap = array (
|
10 |
'Kliken\\WcPlugin\\Helper' => __DIR__ . '/../..' . '/classes/class-helper.php',
|
21 |
public static function getInitializer(ClassLoader $loader)
|
22 |
{
|
23 |
return \Closure::bind(function () use ($loader) {
|
24 |
+
$loader->classMap = ComposerStaticInit3189846b77ba157bf806f2ea8cf80c49::$classMap;
|
25 |
|
26 |
}, null, ClassLoader::class);
|
27 |
}
|