Google Ads & Marketing by Kliken - Version 1.0.7

Version Description

  • Minor bug fixes.
Download this release

Release Info

Developer sitewit
Plugin Icon 128x128 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

Files changed (35) hide show
  1. changelog.txt +1 -1
  2. classes/class-helper.php +2 -2
  3. classes/class-plugin.php +3 -3
  4. classes/class-wc-integration.php +1 -1
  5. kliken-marketing-for-google.php +3 -3
  6. languages/kliken-marketing-for-google-cs_CZ.mo +0 -0
  7. languages/kliken-marketing-for-google-da_DK.mo +0 -0
  8. languages/kliken-marketing-for-google-de_CH.mo +0 -0
  9. languages/kliken-marketing-for-google-de_DE.mo +0 -0
  10. languages/kliken-marketing-for-google-es_ES.mo +0 -0
  11. languages/kliken-marketing-for-google-fi.mo +0 -0
  12. languages/kliken-marketing-for-google-fr_FR.mo +0 -0
  13. languages/kliken-marketing-for-google-he_IL.mo +0 -0
  14. languages/kliken-marketing-for-google-hu_HU.mo +0 -0
  15. languages/kliken-marketing-for-google-id_ID.mo +0 -0
  16. languages/kliken-marketing-for-google-it_IT.mo +0 -0
  17. languages/kliken-marketing-for-google-ja.mo +0 -0
  18. languages/kliken-marketing-for-google-nb_NO.mo +0 -0
  19. languages/kliken-marketing-for-google-nl_NL.mo +0 -0
  20. languages/kliken-marketing-for-google-pl_PL.mo +0 -0
  21. languages/kliken-marketing-for-google-pt_BR.mo +0 -0
  22. languages/kliken-marketing-for-google-pt_PT.mo +0 -0
  23. languages/kliken-marketing-for-google-ru_RU.mo +0 -0
  24. languages/kliken-marketing-for-google-sk_SK.mo +0 -0
  25. languages/kliken-marketing-for-google-sv_SE.mo +0 -0
  26. languages/kliken-marketing-for-google-zh_CN.mo +0 -0
  27. languages/kliken-marketing-for-google.pot +194 -195
  28. pages/dashboard.php +1 -1
  29. pages/getstarted.php +1 -1
  30. readme.txt +7 -4
  31. vendor/autoload.php +1 -1
  32. vendor/composer/ClassLoader.php +1 -1
  33. vendor/composer/LICENSE +17 -52
  34. vendor/composer/autoload_real.php +4 -4
  35. vendor/composer/autoload_static.php +2 -2
changelog.txt CHANGED
@@ -1,4 +1,4 @@
1
- *** Google Ads for WooCommerce Changelog ***
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( 'Google Ads for WooCommerce' )
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 for WooCommerce plugin is almost ready.</strong> <a href="%s">Click here</a> to get started.', 'kliken-marketing-for-google' ),
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 for WooCommerce plugin can only be called once', 'kliken-marketing-for-google' ), self::ALREADY_BOOTSTRAPED );
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 for WooCommerce 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 for WooCommerce requires WooCommerce version %s or greater', 'kliken-marketing-for-google' ), $required_woo_version ), self::DEPENDENCIES_UNSATISFIED );
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 for WooCommerce', 'kliken-marketing-for-google' ); // This is for the sub-section text.
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.6
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 for WooCommerce' );
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) 2020 Kliken
2
- # This file is distributed under the GNU General Public License v3.0.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Google Ads for WooCommerce 1.0.6\n"
6
- "Report-Msgid-Bugs-To: http://www.sitewit.com/contact/\n"
7
- "POT-Creation-Date: 2020-10-22 15:52:39+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: 2020-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 for WooCommerce plugin is almost ready.</strong> <a href="
31
- "\"%s\">Click here</a> to get started."
32
- msgstr ""
33
-
34
- #: classes/class-plugin.php:55
35
- msgid "Google Ads for WooCommerce 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 for WooCommerce 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 "Google Ads for WooCommerce requires WooCommerce version %s or greater"
58
- msgstr ""
59
-
60
- #: classes/class-rest-misc-controller.php:63
61
- #: classes/class-rest-misc-controller.php:91
62
- msgid "Invalid Data"
63
- msgstr ""
64
-
65
- #: classes/class-rest-misc-controller.php:128
66
- msgid "Sorry, you cannot list resources."
67
- msgstr ""
68
-
69
- #. #-#-#-#-# kliken-marketing-for-google.pot (Google Ads for WooCommerce 1.0.6) #-#-#-#-#
70
- #. Plugin Name of the plugin/theme
71
- #: pages/dashboard.php:13 pages/getstarted.php:28
72
- msgid "Google Ads for WooCommerce"
73
- msgstr ""
74
-
75
- #: classes/class-wc-integration.php:47
76
- msgid "Account Id"
77
- msgstr ""
78
-
79
- #: classes/class-wc-integration.php:52
80
- msgid "Application Token"
81
- msgstr ""
82
-
83
- #: classes/class-wc-integration.php:57
84
- msgid "Google Verification Token"
85
- msgstr ""
86
-
87
- #: classes/class-wc-integration.php:63
88
- msgid "What are these options?"
89
- msgstr ""
90
-
91
- #: pages/dashboard.php:15
92
- msgid "Launch Google Shopping ads and get your products found online easily."
93
- msgstr ""
94
-
95
- #: pages/dashboard.php:26
96
- msgid "Your store is connected."
97
- msgstr ""
98
-
99
- #: pages/dashboard.php:28
100
- msgid "Your WooCommerce store is connected to your Kliken account."
101
- msgstr ""
102
-
103
- #: pages/dashboard.php:34
104
- msgid "Campaign Dashboard"
105
- msgstr ""
106
-
107
- #: pages/dashboard.php:36
108
- msgid "Open your dashboard to review your campaign's performance"
109
- msgstr ""
110
-
111
- #: pages/dashboard.php:41
112
- msgid "Create a New Google Shopping Campaign"
113
- msgstr ""
114
-
115
- #: pages/dashboard.php:43
116
- msgid ""
117
- "Build a campaign in a few minutes, and sell to customers as they search for "
118
- "your products on Google."
119
- msgstr ""
120
-
121
- #: pages/dashboard.php:48
122
- msgid "Manage Campaigns"
123
- msgstr ""
124
-
125
- #: pages/dashboard.php:50
126
- msgid ""
127
- "Make changes to your active campaigns, purchase one you built, or reinstate "
128
- "your cancelled campaigns."
129
- msgstr ""
130
-
131
- #: pages/dashboard.php:56
132
- msgid "Advanced Options"
133
- msgstr ""
134
-
135
- #: pages/dashboard.php:67
136
- msgid "Enable Edit"
137
- msgstr ""
138
-
139
- #: pages/dashboard.php:68
140
- msgid "Save Changes"
141
- msgstr ""
142
-
143
- #: pages/dashboard.php:72
144
- msgid "Authorize API Access"
145
- msgstr ""
146
-
147
- #: pages/getstarted.php:30
148
- msgid "Launch Google Shopping Ads and get your products found online easily."
149
- msgstr ""
150
-
151
- #: pages/getstarted.php:41
152
- msgid "Increase sales and revenue with Google Shopping Ads"
153
- msgstr ""
154
-
155
- #: pages/getstarted.php:43
156
- msgid "Use this WooCommerce and Google Ads integration to:"
157
- msgstr ""
158
-
159
- #: pages/getstarted.php:45
160
- msgid "Find more customers on Google"
161
- msgstr ""
162
-
163
- #: pages/getstarted.php:46
164
- msgid "Automate bidding to maximize sales for your marketing budget"
165
- msgstr ""
166
-
167
- #: pages/getstarted.php:47
168
- msgid "Keep your marketing and store in sync"
169
- msgstr ""
170
-
171
- #: pages/getstarted.php:48
172
- msgid "Create perfect shopping campaigns in minutes"
173
- msgstr ""
174
-
175
- #: pages/getstarted.php:51
176
- msgid "Get Started"
177
- msgstr ""
178
-
179
- #. Plugin URI of the plugin/theme
180
- msgid "https://woo.kliken.com/"
181
- msgstr ""
182
-
183
- #. Description of the plugin/theme
184
- msgid ""
185
- "The automated Google Shopping solution to get your products found on Google, "
186
- "and grow your WooCommerce Store!"
187
- msgstr ""
188
-
189
- #. Author of the plugin/theme
190
- msgid "Kliken"
191
- msgstr ""
192
-
193
- #. Author URI of the plugin/theme
194
- msgid "http://kliken.com/"
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 for WooCommerce', '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
 
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 for WooCommerce', '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
 
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
6
  Requires PHP: 5.6
7
- Stable tag: 1.0.6
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 cant get your store approved on Google Ads & Marketing in 30 days we will refund 100% of your money.
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 ComposerAutoloaderInitd033502741110464bbead21e67961d98::getLoader();
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
- Files: *
7
- Copyright: 2016, Nils Adermann <naderman@naderman.de>
8
- 2016, Jordi Boggiano <j.boggiano@seld.be>
9
- License: Expat
10
 
11
- Files: src/Composer/Util/TlsHelper.php
12
- Copyright: 2016, Nils Adermann <naderman@naderman.de>
13
- 2016, Jordi Boggiano <j.boggiano@seld.be>
14
- 2013, Evan Coury <me@evancoury.com>
15
- License: Expat and BSD-2-Clause
 
16
 
17
- License: BSD-2-Clause
18
- Redistribution and use in source and binary forms, with or without modification,
19
- are permitted provided that the following conditions are met:
20
- .
21
- * Redistributions of source code must retain the above copyright notice,
22
- this list of conditions and the following disclaimer.
23
- .
24
- * Redistributions in binary form must reproduce the above copyright notice,
25
- this list of conditions and the following disclaimer in the documentation
26
- and/or other materials provided with the distribution.
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 ComposerAutoloaderInitd033502741110464bbead21e67961d98
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitd033502741110464bbead21e67961d98
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInitd033502741110464bbead21e67961d98', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitd033502741110464bbead21e67961d98', '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\ComposerStaticInitd033502741110464bbead21e67961d98::getInitializer($loader));
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 ComposerStaticInitd033502741110464bbead21e67961d98
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 = ComposerStaticInitd033502741110464bbead21e67961d98::$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
  }