Version Description
- Option to disable the use of cookies.
- Fix some notices.
Download this release
Release Info
Developer | joostdevalk |
Plugin | Clicky by Yoast |
Version | 1.4.2 |
Comparing to | |
See all releases |
Code changes from version 1.4.1.3 to 1.4.2
- clicky.php +33 -18
- lang/clicky.pot +128 -133
- readme.txt +7 -1
- yst_plugin_tools.php +1 -0
clicky.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Clicky for WordPress
|
4 |
-
Version: 1.4.
|
5 |
-
Plugin URI: http://
|
6 |
Description: Integrates Clicky on your blog!
|
7 |
Author: Joost de Valk
|
8 |
Author URI: http://yoast.com/
|
@@ -58,7 +58,9 @@ if ( ! class_exists( 'Clicky_Admin' ) ) {
|
|
58 |
echo '</table>';
|
59 |
}
|
60 |
|
61 |
-
function
|
|
|
|
|
62 |
add_action( 'admin_menu', array( &$this, 'register_settings_page' ) );
|
63 |
add_action( 'admin_menu', array( &$this, 'register_dashboard_page' ) );
|
64 |
|
@@ -111,7 +113,7 @@ if ( ! class_exists( 'Clicky_Admin' ) ) {
|
|
111 |
$options[$option_name] = '';
|
112 |
}
|
113 |
|
114 |
-
foreach (array('ignore_admin', 'track_names') as $option_name) {
|
115 |
if (isset($_POST[$option_name]))
|
116 |
$options[$option_name] = true;
|
117 |
else
|
@@ -177,6 +179,13 @@ if ( ! class_exists( 'Clicky_Admin' ) ) {
|
|
177 |
'desc' => __('If you are using a caching plugin, such as W3 Total Cache or WP-Supercache, please ensure that you have it configured to NOT use the cache for logged in users. Otherwise, admin users <em>will still</em> be tracked.', 'clicky'),
|
178 |
'content' => '<input type="checkbox" '.checked($options['ignore_admin'],true,false).' name="ignore_admin" id="ignore_admin"/>',
|
179 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
|
181 |
$rows[] = array(
|
182 |
'id' => 'track_names',
|
@@ -359,6 +368,7 @@ function clicky_defaults() {
|
|
359 |
'outbound_pattern' => '',
|
360 |
'ignore_admin' => false,
|
361 |
'track_names' => true,
|
|
|
362 |
);
|
363 |
add_option('clicky',$options);
|
364 |
}
|
@@ -376,9 +386,9 @@ function clicky_script() {
|
|
376 |
}
|
377 |
|
378 |
|
379 |
-
//
|
380 |
?>
|
381 |
-
<!-- Clicky Web Analytics - http://getclicky.com, WordPress Plugin by Yoast - http://yoast.com -->
|
382 |
<?php
|
383 |
// Track commenter name if track_names is true
|
384 |
if( $options['track_names'] ) {
|
@@ -399,20 +409,20 @@ var clicky_custom_session = {
|
|
399 |
<?php
|
400 |
}
|
401 |
|
|
|
|
|
402 |
// Goal tracking
|
403 |
if (is_singular()) {
|
404 |
global $post;
|
405 |
$clicky_goal = get_post_meta($post->ID,'_clicky_goal',true);
|
406 |
if (is_array($clicky_goal) && !empty($clicky_goal['id'])) {
|
407 |
-
|
408 |
-
echo 'var clicky_goal = { id: "'.trim($clicky_goal['id']).'"';
|
409 |
if (isset($clicky_goal['value']) && !empty($clicky_goal['value']))
|
410 |
-
|
411 |
-
|
412 |
-
echo '</script>';
|
413 |
}
|
414 |
}
|
415 |
-
|
416 |
if ( isset( $options['outbound_pattern'] ) && trim( $options['outbound_pattern'] ) != '' ) {
|
417 |
$patterns = explode( ',', $options['outbound_pattern'] );
|
418 |
$pattern = '';
|
@@ -422,15 +432,20 @@ var clicky_custom_session = {
|
|
422 |
$pat = trim( str_replace( '"', '', str_replace( "'", "", $pat ) ) );
|
423 |
$pattern .= "'".$pat."'";
|
424 |
}
|
425 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
426 |
<script type="text/javascript">
|
427 |
var clicky_custom = {};
|
428 |
-
|
429 |
</script>
|
430 |
-
<?php
|
431 |
-
}
|
432 |
-
// Display the script
|
433 |
-
?>
|
434 |
<script type="text/javascript">
|
435 |
var clicky = { log: function(){ return; }, goal: function(){ return; }};
|
436 |
var clicky_site_id = <?php echo $options['site_id']; ?>;
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Clicky for WordPress
|
4 |
+
Version: 1.4.2
|
5 |
+
Plugin URI: http://yoast.com/wordpress/clicky/
|
6 |
Description: Integrates Clicky on your blog!
|
7 |
Author: Joost de Valk
|
8 |
Author URI: http://yoast.com/
|
58 |
echo '</table>';
|
59 |
}
|
60 |
|
61 |
+
function __construct() {
|
62 |
+
$this->filename = __FILE__;
|
63 |
+
|
64 |
add_action( 'admin_menu', array( &$this, 'register_settings_page' ) );
|
65 |
add_action( 'admin_menu', array( &$this, 'register_dashboard_page' ) );
|
66 |
|
113 |
$options[$option_name] = '';
|
114 |
}
|
115 |
|
116 |
+
foreach (array('ignore_admin', 'track_names','cookies_disable') as $option_name) {
|
117 |
if (isset($_POST[$option_name]))
|
118 |
$options[$option_name] = true;
|
119 |
else
|
179 |
'desc' => __('If you are using a caching plugin, such as W3 Total Cache or WP-Supercache, please ensure that you have it configured to NOT use the cache for logged in users. Otherwise, admin users <em>will still</em> be tracked.', 'clicky'),
|
180 |
'content' => '<input type="checkbox" '.checked($options['ignore_admin'],true,false).' name="ignore_admin" id="ignore_admin"/>',
|
181 |
);
|
182 |
+
|
183 |
+
$rows[] = array(
|
184 |
+
'id' => 'cookies_disable',
|
185 |
+
'label' => __('Disable cookies', 'clicky'),
|
186 |
+
'desc' => __('If you don\'t want Clicky to use cookies on your site, check this button. By doing so, uniques will instead be determined based on their IP address.', 'clicky'),
|
187 |
+
'content' => '<input type="checkbox" '.checked($options['cookies_disable'],true,false).' name="cookies_disable" id="cookies_disable"/>',
|
188 |
+
);
|
189 |
|
190 |
$rows[] = array(
|
191 |
'id' => 'track_names',
|
368 |
'outbound_pattern' => '',
|
369 |
'ignore_admin' => false,
|
370 |
'track_names' => true,
|
371 |
+
'cookies_disable' => false,
|
372 |
);
|
373 |
add_option('clicky',$options);
|
374 |
}
|
386 |
}
|
387 |
|
388 |
|
389 |
+
// Debug
|
390 |
?>
|
391 |
+
<!-- Clicky Web Analytics - http://getclicky.com, WordPress Plugin by Yoast - http://yoast.com/wordpress/clicky/ -->
|
392 |
<?php
|
393 |
// Track commenter name if track_names is true
|
394 |
if( $options['track_names'] ) {
|
409 |
<?php
|
410 |
}
|
411 |
|
412 |
+
$clicky_extra = '';
|
413 |
+
|
414 |
// Goal tracking
|
415 |
if (is_singular()) {
|
416 |
global $post;
|
417 |
$clicky_goal = get_post_meta($post->ID,'_clicky_goal',true);
|
418 |
if (is_array($clicky_goal) && !empty($clicky_goal['id'])) {
|
419 |
+
$clicky_extra .= 'var clicky_goal = { id: "'.trim($clicky_goal['id']).'"';
|
|
|
420 |
if (isset($clicky_goal['value']) && !empty($clicky_goal['value']))
|
421 |
+
$clicky_extra .= ', revenue: "'.$clicky_goal['value'].'"';
|
422 |
+
$clicky_extra .= ' };'."\n";
|
|
|
423 |
}
|
424 |
}
|
425 |
+
|
426 |
if ( isset( $options['outbound_pattern'] ) && trim( $options['outbound_pattern'] ) != '' ) {
|
427 |
$patterns = explode( ',', $options['outbound_pattern'] );
|
428 |
$pattern = '';
|
432 |
$pat = trim( str_replace( '"', '', str_replace( "'", "", $pat ) ) );
|
433 |
$pattern .= "'".$pat."'";
|
434 |
}
|
435 |
+
$clicky_extra .= 'clicky_custom.outbound_pattern = ['.$pattern.'];'."\n";
|
436 |
+
}
|
437 |
+
|
438 |
+
if ( isset( $options['cookies_disable'] ) && $options['cookies_disable'] ) {
|
439 |
+
$clicky_extra .= "clicky_custom.cookies_disable = 1;\n";
|
440 |
+
}
|
441 |
+
|
442 |
+
if ( !empty( $clicky_extra ) ) {
|
443 |
+
?>
|
444 |
<script type="text/javascript">
|
445 |
var clicky_custom = {};
|
446 |
+
<?php echo $clicky_extra; ?>
|
447 |
</script>
|
448 |
+
<?php } ?>
|
|
|
|
|
|
|
449 |
<script type="text/javascript">
|
450 |
var clicky = { log: function(){ return; }, goal: function(){ return; }};
|
451 |
var clicky_site_id = <?php echo $options['site_id']; ?>;
|
lang/clicky.pot
CHANGED
@@ -1,266 +1,261 @@
|
|
1 |
-
#
|
2 |
-
#
|
3 |
-
# This file is distributed under the same license as the PACKAGE package.
|
4 |
-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5 |
-
#
|
6 |
-
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version:
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/clicky\n"
|
11 |
-
"POT-Creation-Date:
|
12 |
-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
-
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
-
"Content-Type: text/plain; charset=
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
|
|
18 |
|
19 |
-
#: clicky.php:
|
|
|
|
|
|
|
|
|
20 |
msgid "Clicky is almost ready. "
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: clicky.php:
|
24 |
-
#, php-format
|
25 |
msgid ""
|
26 |
"You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s for "
|
27 |
"it to work."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: clicky.php:
|
31 |
-
msgid "Clicky needs a bit more info. "
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: clicky.php:50
|
35 |
-
#, php-format
|
36 |
-
msgid ""
|
37 |
-
"You must %1$s enter your Clicky Database server%2$s for this plugin to be "
|
38 |
-
"able to track comments."
|
39 |
-
msgstr ""
|
40 |
-
|
41 |
-
#: clicky.php:71 clicky.php:79
|
42 |
-
msgid "Twitter"
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
#: clicky.php:73
|
46 |
-
msgid "The Clicky.me short URL for this post is"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#: clicky.php:75
|
50 |
-
msgid "Tweet this post"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: clicky.php:81
|
54 |
-
msgid ""
|
55 |
-
"This post is not published yet, a short URL will be created for it once the "
|
56 |
-
"post is published. Do you want it to be tweeted automatically too?"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: clicky.php:83
|
60 |
-
msgid "Tweet post on publish"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: clicky.php:88
|
64 |
-
msgid "Goal Tracking"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: clicky.php:90
|
68 |
-
#, php-format
|
69 |
msgid ""
|
70 |
"Clicky can track Goals for you too, %1$sread the documentation here%2$s. To "
|
71 |
"be able to track a goal on this post, you need to specify the goal ID here. "
|
72 |
"Optionally, you can also provide the goal revenue."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: clicky.php:
|
76 |
msgid "Goal ID"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: clicky.php:
|
80 |
msgid "Goal Revenue"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: clicky.php:
|
84 |
msgid "Stats"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: clicky.php:
|
88 |
msgid "You cannot edit the Clicky settings."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: clicky.php:
|
92 |
msgid "Clicky settings have been updated."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: clicky.php:
|
96 |
msgid "Configuration"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: clicky.php:
|
100 |
-
#, php-format
|
101 |
msgid ""
|
102 |
"Go to your %1$suser homepage on Clicky%2$s and click "Preferences" "
|
103 |
"under the name of the domain, you will find the Site ID, Site Key, Admin "
|
104 |
"Site Key and Database Server under Site information."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: clicky.php:
|
108 |
msgid "Site ID"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: clicky.php:
|
112 |
msgid "Site Key"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: clicky.php:
|
116 |
msgid "Admin Site Key"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: clicky.php:
|
120 |
-
msgid "Database Server"
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
#: clicky.php:221
|
124 |
msgid "Clicky Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: clicky.php:
|
128 |
-
#, php-format
|
129 |
msgid ""
|
130 |
-
"This plugin allows you to automatically create short URLs through the
|
131 |
-
"$sClicky.me service%2$s"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: clicky.php:
|
135 |
msgid ""
|
136 |
"and tweet your post immediately when you publish it. To do that, this plugin "
|
137 |
"will need your Twitter username and pass."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: clicky.php:
|
141 |
msgid "Ignore Admin users"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: clicky.php:
|
145 |
msgid ""
|
146 |
-
"If you are using a caching plugin, such as WP-Supercache,
|
147 |
-
"you have it configured to NOT use the cache for logged in
|
148 |
-
"admin users <em>will still</em> be tracked."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: clicky.php:
|
152 |
-
msgid "
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: clicky.php:
|
156 |
-
msgid "
|
|
|
|
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: clicky.php:
|
160 |
-
msgid "
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: clicky.php:
|
164 |
-
msgid "
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: clicky.php:
|
168 |
msgid ""
|
169 |
-
"
|
170 |
-
"
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
msgid "Twitter username"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: clicky.php:266
|
178 |
-
msgid "Twitter password"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: clicky.php:
|
182 |
-
msgid "
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: clicky.php:
|
186 |
-
msgid ""
|
187 |
-
"This text will be put in front of Tweets that are published when a blog post "
|
188 |
-
"is published"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: clicky.php:
|
192 |
-
msgid "Clicky
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: clicky.php:
|
196 |
-
msgid "
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: clicky.php:
|
200 |
msgid ""
|
201 |
"Clicky tracking not shown because you're an administrator and you've "
|
202 |
"configured Clicky to ignore administrators."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: clicky.php:
|
206 |
msgid "Posted a comment"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: yst_plugin_tools.php:
|
210 |
msgid "Settings"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: yst_plugin_tools.php:
|
214 |
msgid "Why not do any or all of the following:"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: yst_plugin_tools.php:
|
218 |
msgid "Link to it so other folks can find out about it."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: yst_plugin_tools.php:
|
222 |
-
msgid "Give it a
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: yst_plugin_tools.php:
|
226 |
-
msgid "
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: yst_plugin_tools.php:
|
230 |
msgid "Like this plugin?"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: yst_plugin_tools.php:
|
234 |
msgid ""
|
235 |
-
"If you
|
236 |
-
"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: yst_plugin_tools.php:
|
240 |
-
msgid "Support
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: yst_plugin_tools.php:
|
244 |
-
msgid "
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: yst_plugin_tools.php:
|
248 |
-
msgid "Subscribe"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: yst_plugin_tools.php:
|
252 |
msgid "Latest news from Clicky"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: yst_plugin_tools.php:
|
256 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
msgstr ""
|
258 |
|
259 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid "Clicky for WordPress"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#.
|
|
|
|
|
|
|
|
|
264 |
msgid "Integrates Clicky on your blog!"
|
265 |
msgstr ""
|
266 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2012 Clicky for WordPress
|
2 |
+
# This file is distributed under the same license as the Clicky for WordPress package.
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Clicky for WordPress 1.4.1.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/clicky\n"
|
7 |
+
"POT-Creation-Date: 2012-06-10 05:39:17+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: 2012-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: clicky.php:27
|
16 |
+
msgid "Clicky Goal Tracking"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: clicky.php:36
|
20 |
msgid "Clicky is almost ready. "
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: clicky.php:38
|
|
|
24 |
msgid ""
|
25 |
"You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s for "
|
26 |
"it to work."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: clicky.php:53
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
msgid ""
|
31 |
"Clicky can track Goals for you too, %1$sread the documentation here%2$s. To "
|
32 |
"be able to track a goal on this post, you need to specify the goal ID here. "
|
33 |
"Optionally, you can also provide the goal revenue."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: clicky.php:56
|
37 |
msgid "Goal ID"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: clicky.php:57
|
41 |
msgid "Goal Revenue"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: clicky.php:91
|
45 |
msgid "Stats"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: clicky.php:106
|
49 |
msgid "You cannot edit the Clicky settings."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: clicky.php:125
|
53 |
msgid "Clicky settings have been updated."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: clicky.php:138
|
57 |
msgid "Configuration"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: clicky.php:146
|
|
|
61 |
msgid ""
|
62 |
"Go to your %1$suser homepage on Clicky%2$s and click "Preferences" "
|
63 |
"under the name of the domain, you will find the Site ID, Site Key, Admin "
|
64 |
"Site Key and Database Server under Site information."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: clicky.php:151
|
68 |
msgid "Site ID"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: clicky.php:158
|
72 |
msgid "Site Key"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: clicky.php:165
|
76 |
msgid "Admin Site Key"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: clicky.php:171
|
|
|
|
|
|
|
|
|
80 |
msgid "Clicky Settings"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: clicky.php:173
|
|
|
84 |
msgid ""
|
85 |
+
"This plugin allows you to automatically create short URLs through the "
|
86 |
+
"%1$sClicky.me service%2$s"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: clicky.php:173
|
90 |
msgid ""
|
91 |
"and tweet your post immediately when you publish it. To do that, this plugin "
|
92 |
"will need your Twitter username and pass."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: clicky.php:178
|
96 |
msgid "Ignore Admin users"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: clicky.php:179
|
100 |
msgid ""
|
101 |
+
"If you are using a caching plugin, such as W3 Total Cache or WP-Supercache, "
|
102 |
+
"please ensure that you have it configured to NOT use the cache for logged in "
|
103 |
+
"users. Otherwise, admin users <em>will still</em> be tracked."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: clicky.php:185
|
107 |
+
msgid "Disable cookies"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: clicky.php:186
|
111 |
+
msgid ""
|
112 |
+
"If you don't want Clicky to use cookies on your site, check this button. By "
|
113 |
+
"doing so, uniques will instead be determined based on their IP address."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: clicky.php:192
|
117 |
+
msgid "Track names of commenters"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: clicky.php:199
|
121 |
+
msgid "Outbound Link Pattern"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: clicky.php:200
|
125 |
msgid ""
|
126 |
+
"If your site uses redirects for outbound links, instead of links that point "
|
127 |
+
"directly to their external source (this is popular with affiliate links, for "
|
128 |
+
"example), then you'll need to use this variable to tell our tracking code "
|
129 |
+
"additional patterns to look for when automatically tracking outbound links. "
|
130 |
+
"%1$sRead more here%1$s."
|
|
|
|
|
|
|
|
|
|
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: clicky.php:201
|
134 |
+
msgid "For instance: <code>/out/,/go/</code>"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: clicky.php:204
|
138 |
+
msgid "Advanced Settings"
|
|
|
|
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: clicky.php:208
|
142 |
+
msgid "Update Clicky Settings"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: clicky.php:251
|
146 |
+
msgid "Visitors over 48 hours. Click for more Clicky Site Stats."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: clicky.php:384
|
150 |
msgid ""
|
151 |
"Clicky tracking not shown because you're an administrator and you've "
|
152 |
"configured Clicky to ignore administrators."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: clicky.php:539
|
156 |
msgid "Posted a comment"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: yst_plugin_tools.php:41
|
160 |
msgid "Settings"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: yst_plugin_tools.php:122
|
164 |
msgid "Why not do any or all of the following:"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: yst_plugin_tools.php:124
|
168 |
msgid "Link to it so other folks can find out about it."
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: yst_plugin_tools.php:125
|
172 |
+
msgid "Give it a 5 star rating on WordPress.org."
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: yst_plugin_tools.php:126
|
176 |
+
msgid "Let other people know that it works with your WordPress setup."
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: yst_plugin_tools.php:128 yst_plugin_tools.php:196
|
180 |
msgid "Like this plugin?"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: yst_plugin_tools.php:138
|
184 |
msgid ""
|
185 |
+
"If you're in need of support with Clicky and / or this plugin, please visit "
|
186 |
+
"the <a href='https://secure.getclicky.com/forums/'>Clicky forums</a>."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: yst_plugin_tools.php:139
|
190 |
+
msgid "Need Support?"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: yst_plugin_tools.php:151 yst_plugin_tools.php:174
|
194 |
+
msgid "No news items, feed might be broken..."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: yst_plugin_tools.php:160 yst_plugin_tools.php:186
|
198 |
+
msgid "Subscribe with RSS"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: yst_plugin_tools.php:162
|
202 |
msgid "Latest news from Clicky"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: yst_plugin_tools.php:183
|
206 |
+
msgid "Like Yoast on Facebook"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: yst_plugin_tools.php:184
|
210 |
+
msgid "Follow Yoast on Twitter"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: yst_plugin_tools.php:185
|
214 |
+
msgid "Circle Yoast on Google+"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: yst_plugin_tools.php:187
|
218 |
+
msgid "Subscribe by email"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: yst_plugin_tools.php:189
|
222 |
+
msgid "Latest news from Yoast"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: yst_plugin_tools.php:196
|
226 |
+
msgid ""
|
227 |
+
"Want to help make it better? All donations are used to improve this plugin, "
|
228 |
+
"so donate $10, $20 or $50 now!"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: yst_plugin_tools.php:202
|
232 |
+
msgid "Or you could:"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: yst_plugin_tools.php:204
|
236 |
+
msgid "Rate the plugin 5★ on WordPress.org"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: yst_plugin_tools.php:205
|
240 |
+
msgid "Blog about it & link to the plugin page"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#. Plugin Name of the plugin/theme
|
244 |
msgid "Clicky for WordPress"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#. Plugin URI of the plugin/theme
|
248 |
+
msgid "http://getclicky.com/goodies/#wordpress"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#. Description of the plugin/theme
|
252 |
msgid "Integrates Clicky on your blog!"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#. Author of the plugin/theme
|
256 |
+
msgid "Joost de Valk"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#. Author URI of the plugin/theme
|
260 |
+
msgid "http://yoast.com/"
|
261 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://yoast.com/donate/
|
|
4 |
Tags: analytics, statistics, clicky, getclicky, affiliate, outbound links, analysis, Joost de Valk, Yoast
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.3
|
7 |
-
Stable tag: 1.4.
|
8 |
|
9 |
Integrates the Clicky (from getClicky.com) web analytics service into your blog.
|
10 |
|
@@ -15,6 +15,7 @@ Integrates the [Clicky web analytics](http://getclicky.com/145844) service into
|
|
15 |
* Automatically adding your Clicky (from getClicky.com) tracking code everywhere.
|
16 |
* Option to ignore admins.
|
17 |
* Option to store names of commenters.
|
|
|
18 |
* Stores comments as an action using the getClicky [internal data logging API](https://secure.getclicky.com/help/customization/manual#internal). This requires a [pro account](http://getclicky.com/145844) to work.
|
19 |
* Option to track posts & pages as goals and assign a revenue to that page or post.
|
20 |
* An overview of your site's statistics on your dashboard.
|
@@ -38,6 +39,11 @@ Read the authors [review of Clicky Analytics](http://yoast.com/clicky-analytics-
|
|
38 |
|
39 |
== Changelog ==
|
40 |
|
|
|
|
|
|
|
|
|
|
|
41 |
= 1.4.1.3 =
|
42 |
|
43 |
* Fix for another "possible" error.
|
4 |
Tags: analytics, statistics, clicky, getclicky, affiliate, outbound links, analysis, Joost de Valk, Yoast
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.3
|
7 |
+
Stable tag: 1.4.2
|
8 |
|
9 |
Integrates the Clicky (from getClicky.com) web analytics service into your blog.
|
10 |
|
15 |
* Automatically adding your Clicky (from getClicky.com) tracking code everywhere.
|
16 |
* Option to ignore admins.
|
17 |
* Option to store names of commenters.
|
18 |
+
* Option to disable the use of cookies.
|
19 |
* Stores comments as an action using the getClicky [internal data logging API](https://secure.getclicky.com/help/customization/manual#internal). This requires a [pro account](http://getclicky.com/145844) to work.
|
20 |
* Option to track posts & pages as goals and assign a revenue to that page or post.
|
21 |
* An overview of your site's statistics on your dashboard.
|
39 |
|
40 |
== Changelog ==
|
41 |
|
42 |
+
= 1.4.2 =
|
43 |
+
|
44 |
+
* Option to disable the use of cookies.
|
45 |
+
* Fix some notices.
|
46 |
+
|
47 |
= 1.4.1.3 =
|
48 |
|
49 |
* Fix for another "possible" error.
|
yst_plugin_tools.php
CHANGED
@@ -14,6 +14,7 @@ if (!class_exists('Clicky_Base_Plugin_Admin')) {
|
|
14 |
var $ozhicon = '';
|
15 |
var $optionname = '';
|
16 |
var $homepage = '';
|
|
|
17 |
var $accesslvl = 'manage_options';
|
18 |
|
19 |
function config_page_styles() {
|
14 |
var $ozhicon = '';
|
15 |
var $optionname = '';
|
16 |
var $homepage = '';
|
17 |
+
var $filename = '';
|
18 |
var $accesslvl = 'manage_options';
|
19 |
|
20 |
function config_page_styles() {
|