Clicky by Yoast - Version 1.4.2.3

Version Description

  • Don't overwrite the clicky_custom variable when it's already there.
  • Added phpDoc
  • Use https instead of http for showing stats page
  • The
  • Added Turkish (tr_TK)
Download this release

Release Info

Developer joostdevalk
Plugin Icon 128x128 Clicky by Yoast
Version 1.4.2.3
Comparing to
See all releases

Code changes from version 1.4.2.2 to 1.4.2.3

clicky.php CHANGED
@@ -1,37 +1,104 @@
1
  <?php
2
  /*
3
  Plugin Name: Clicky for WordPress
4
- Version: 1.4.2.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/
9
  */
10
 
11
- load_plugin_textdomain( 'clicky', '', '/clicky/lang/' );
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  if ( !class_exists( 'Clicky_Admin' ) ) {
14
 
15
  require_once( 'yst_plugin_tools.php' );
16
-
17
- class Clicky_Admin extends Clicky_Base_Plugin_Admin {
18
-
19
- var $hook = 'clicky';
20
- var $longname = 'Clicky Configuration';
21
- var $shortname = 'Clicky';
22
- var $homepage = 'http://yoast.com/wordpress/clicky/';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  var $feed = 'http://getclicky.com/blog/rss';
24
 
25
- function meta_box() {
 
 
 
 
 
 
26
  foreach ( get_post_types() as $pt ) {
27
  add_meta_box( 'clicky', __( 'Clicky Goal Tracking', 'clicky' ), array( 'Clicky_Admin', 'clicky_meta_box' ), $pt, 'side' );
28
  }
29
  }
30
 
31
- function clicky_admin_warnings() {
 
 
 
 
 
 
 
32
  $options = clicky_get_options();
33
  if ( ( !$options['site_id'] || empty( $options['site_id'] ) || !$options['site_key'] || empty( $options['site_key'] ) || !$options['admin_site_key'] || empty( $options['admin_site_key'] ) ) && !$_POST ) {
34
- function clicky_warning() {
 
 
 
35
  echo "<div id='clickywarning' class='updated fade'><p><strong>";
36
  _e( 'Clicky is almost ready. ', 'clicky' );
37
  echo "</strong>";
@@ -45,7 +112,12 @@ if ( !class_exists( 'Clicky_Admin' ) ) {
45
  }
46
  }
47
 
48
- function clicky_meta_box() {
 
 
 
 
 
49
  global $post;
50
  $clicky_goal = get_post_meta( $post->ID, '_clicky_goal', true );
51
 
@@ -58,7 +130,14 @@ if ( !class_exists( 'Clicky_Admin' ) ) {
58
  echo '</table>';
59
  }
60
 
61
- function __construct() {
 
 
 
 
 
 
 
62
  $this->filename = __FILE__;
63
 
64
  add_action( 'admin_menu', array( &$this, 'register_settings_page' ) );
@@ -76,7 +155,14 @@ if ( !class_exists( 'Clicky_Admin' ) ) {
76
  $this->clicky_admin_warnings();
77
  }
78
 
79
- function clicky_insert_post( $pID ) {
 
 
 
 
 
 
 
80
  $clicky_goal = array(
81
  'id' => $_POST['clicky_goal_id'],
82
  'value' => $_POST['clicky_goal_value']
@@ -85,20 +171,39 @@ if ( !class_exists( 'Clicky_Admin' ) ) {
85
  add_post_meta( $pID, '_clicky_goal', $clicky_goal, true );
86
  }
87
 
88
- function register_dashboard_page() {
 
 
 
 
 
89
  add_dashboard_page( $this->shortname . ' ' . __( 'Stats', 'clicky' ), $this->shortname . ' ' . __( 'Stats', 'clicky' ), $this->accesslvl, $this->hook, array( &$this, 'dashboard_page' ) );
90
  }
91
 
92
- function dashboard_page() {
 
 
 
 
 
93
  $options = clicky_get_options();
94
  ?>
95
  <br/>
96
  <iframe style="margin-left: 20px; width: 850px; height: 1000px;"
97
- src="http://getclicky.com/stats/wp-iframe?site_id=<?php echo $options['site_id']; ?>&amp;sitekey=<?php echo $options['site_key']; ?>"></iframe>
98
  <?php
99
  }
100
 
101
- function config_page() {
 
 
 
 
 
 
 
 
 
102
  $options = clicky_get_options();
103
 
104
  if ( isset( $_POST['submit'] ) ) {
@@ -133,7 +238,7 @@ if ( !class_exists( 'Clicky_Admin' ) ) {
133
  }
134
  ?>
135
  <div class="wrap">
136
- <a href="http://getclicky.com/145844">
137
  <div id="clicky-icon"
138
  style="background: url('<?php echo plugins_url( '', __FILE__ ); ?>/images/clicky-32x32.png') no-repeat;"
139
  class="icon32"><br/></div>
@@ -234,7 +339,12 @@ if ( !class_exists( 'Clicky_Admin' ) ) {
234
  <?php
235
  }
236
 
237
- function stats_admin_bar_head() {
 
 
 
 
 
238
  add_action( 'admin_bar_menu', array( &$this, 'stats_admin_bar_menu' ), 1200 );
239
  ?>
240
 
@@ -257,7 +367,15 @@ if ( !class_exists( 'Clicky_Admin' ) ) {
257
  <?php
258
  }
259
 
260
- function stats_admin_bar_menu( &$wp_admin_bar ) {
 
 
 
 
 
 
 
 
261
  $options = clicky_get_options();
262
 
263
  $img_src = $this->create_graph();
@@ -271,7 +389,15 @@ if ( !class_exists( 'Clicky_Admin' ) ) {
271
  $wp_admin_bar->add_menu( $menu );
272
  }
273
 
274
- function create_graph() {
 
 
 
 
 
 
 
 
275
  $options = clicky_get_options();
276
 
277
  if ( !function_exists( 'imagecreate' ) )
@@ -366,6 +492,14 @@ if ( !class_exists( 'Clicky_Admin' ) ) {
366
  $clicky_admin = new Clicky_Admin();
367
  }
368
 
 
 
 
 
 
 
 
 
369
  function clicky_get_options() {
370
  $options = get_option( 'clicky' );
371
  if ( !is_array( $options ) ) {
@@ -378,6 +512,11 @@ function clicky_get_options() {
378
  return $options;
379
  }
380
 
 
 
 
 
 
381
  function clicky_defaults() {
382
  $options = array(
383
  'site_id' => '',
@@ -391,6 +530,11 @@ function clicky_defaults() {
391
  add_option( 'clicky', $options );
392
  }
393
 
 
 
 
 
 
394
  function clicky_script() {
395
  $options = clicky_get_options();
396
 
@@ -459,8 +603,8 @@ function clicky_script() {
459
  if ( !empty( $clicky_extra ) ) {
460
  ?>
461
  <script type="text/javascript">
462
- var clicky_custom = {};
463
- <?php echo $clicky_extra; ?>
464
  </script>
465
  <?php } ?>
466
  <script type="text/javascript">
@@ -479,13 +623,21 @@ function clicky_script() {
479
  })();
480
  </script>
481
  <noscript><p><img alt="Clicky" width="1" height="1"
482
- src="http://in.getclicky.com/<?php echo $options['site_id']; ?>ns.gif"/></p></noscript>
483
  <!-- End Clicky Tracking -->
484
  <?php
485
  }
486
 
487
  add_action( 'wp_footer', 'clicky_script', 90 );
488
 
 
 
 
 
 
 
 
 
489
  function clicky_log( $a ) {
490
  $options = clicky_get_options();
491
 
@@ -550,6 +702,12 @@ function clicky_log( $a ) {
550
  return wp_remote_get( $file ) ? true : false;
551
  }
552
 
 
 
 
 
 
 
553
  function clicky_track_comment( $commentID, $comment_status ) {
554
  // Make sure to only track the comment if it's not spam (but do it for moderated comments).
555
  if ( $comment_status != 'spam' ) {
@@ -573,4 +731,4 @@ function clicky_track_comment( $commentID, $comment_status ) {
573
  }
574
  }
575
 
576
- add_action( 'comment_post', 'clicky_track_comment', 10, 2 );
1
  <?php
2
  /*
3
  Plugin Name: Clicky for WordPress
4
+ Version: 1.4.2.3
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/
9
  */
10
 
11
+ /**
12
+ * The Clicky for WordPress plugin by Yoast makes it easy for you to add your Clicky analytics tracking code to your WordPress install, while also giving you some advanced tracking options.
13
+ *
14
+ * @link http://yoast.com/wordpress/clicky/
15
+ */
16
+
17
+ /**
18
+ * Load the proper text domain
19
+ */
20
+ function clicky_init() {
21
+ load_plugin_textdomain( 'clicky', false, dirname( plugin_basename( __FILE__ ) ) . '/lang/' );
22
+ }
23
+
24
+ add_action( 'plugins_loaded', 'clicky_init' );
25
 
26
  if ( !class_exists( 'Clicky_Admin' ) ) {
27
 
28
  require_once( 'yst_plugin_tools.php' );
29
+ /**
30
+ * Class Clicky_Admin
31
+ *
32
+ * Creates the admin for the Clicky for WordPress plugin by Yoast
33
+ */
34
+ class Clicky_Admin extends Clicky_Base_Plugin_Admin {
35
+
36
+ /**
37
+ * Menu slug for WordPress admin
38
+ *
39
+ * @access private
40
+ * @var string
41
+ */
42
+ var $hook = 'clicky';
43
+
44
+ /**
45
+ * Name of the plugin (long version)
46
+ *
47
+ * @access private
48
+ * @var string
49
+ */
50
+ var $longname = 'Clicky Configuration';
51
+
52
+ /**
53
+ * Name of the plugin (short version)
54
+ *
55
+ * @access private
56
+ * @var string
57
+ */
58
+ var $shortname = 'Clicky';
59
+
60
+ /**
61
+ * Link to Clicky homepage
62
+ *
63
+ * @access private
64
+ * @var string
65
+ */
66
+ var $homepage = 'http://yoast.com/wordpress/clicky/';
67
+
68
+ /**
69
+ * Link to Clicky RSS feed
70
+ *
71
+ * @access private
72
+ * @var string
73
+ */
74
  var $feed = 'http://getclicky.com/blog/rss';
75
 
76
+ /**
77
+ * Adds meta boxes to the Admin interface
78
+ *
79
+ * @link http://codex.wordpress.org/Function_Reference/add_meta_box
80
+ * @link http://codex.wordpress.org/Function_Reference/get_post_types
81
+ */
82
+ function meta_box() {
83
  foreach ( get_post_types() as $pt ) {
84
  add_meta_box( 'clicky', __( 'Clicky Goal Tracking', 'clicky' ), array( 'Clicky_Admin', 'clicky_meta_box' ), $pt, 'side' );
85
  }
86
  }
87
 
88
+ /**
89
+ * Creates warnings for empty fields in the admin
90
+ *
91
+ * @uses clicky_get_options()
92
+ * @uses clicky_warning()
93
+ * @link http://codex.wordpress.org/Function_Reference/add_action
94
+ */
95
+ function clicky_admin_warnings() {
96
  $options = clicky_get_options();
97
  if ( ( !$options['site_id'] || empty( $options['site_id'] ) || !$options['site_key'] || empty( $options['site_key'] ) || !$options['admin_site_key'] || empty( $options['admin_site_key'] ) ) && !$_POST ) {
98
+ /**
99
+ * Outputs a warning
100
+ */
101
+ function clicky_warning() {
102
  echo "<div id='clickywarning' class='updated fade'><p><strong>";
103
  _e( 'Clicky is almost ready. ', 'clicky' );
104
  echo "</strong>";
112
  }
113
  }
114
 
115
+ /**
116
+ * Add meta box for entering specific goals
117
+ *
118
+ * @link http://codex.wordpress.org/Function_Reference/get_post_meta
119
+ */
120
+ function clicky_meta_box() {
121
  global $post;
122
  $clicky_goal = get_post_meta( $post->ID, '_clicky_goal', true );
123
 
130
  echo '</table>';
131
  }
132
 
133
+ /**
134
+ * Construct of class Clicky_admin
135
+ *
136
+ * @access private
137
+ * @link http://codex.wordpress.org/Function_Reference/add_action
138
+ * @link http://codex.wordpress.org/Function_Reference/add_filter
139
+ */
140
+ function __construct() {
141
  $this->filename = __FILE__;
142
 
143
  add_action( 'admin_menu', array( &$this, 'register_settings_page' ) );
155
  $this->clicky_admin_warnings();
156
  }
157
 
158
+ /**
159
+ * Updates post meta for '_clicky_goal' with goal ID and value
160
+ *
161
+ * @param int $pID The post ID
162
+ * @link http://codex.wordpress.org/Function_Reference/delete_post_meta
163
+ * @link http://codex.wordpress.org/Function_Reference/add_post_meta
164
+ */
165
+ function clicky_insert_post( $pID ) {
166
  $clicky_goal = array(
167
  'id' => $_POST['clicky_goal_id'],
168
  'value' => $_POST['clicky_goal_value']
171
  add_post_meta( $pID, '_clicky_goal', $clicky_goal, true );
172
  }
173
 
174
+ /**
175
+ * Creates the dashboard page for Clicky for WordPress plugin by Yoast
176
+ *
177
+ * @link http://codex.wordpress.org/Function_Reference/add_dashboard_page
178
+ */
179
+ function register_dashboard_page() {
180
  add_dashboard_page( $this->shortname . ' ' . __( 'Stats', 'clicky' ), $this->shortname . ' ' . __( 'Stats', 'clicky' ), $this->accesslvl, $this->hook, array( &$this, 'dashboard_page' ) );
181
  }
182
 
183
+ /**
184
+ * Loads (external) stats page in an iframe
185
+ *
186
+ * @uses clicky_get_options()
187
+ */
188
+ function dashboard_page() {
189
  $options = clicky_get_options();
190
  ?>
191
  <br/>
192
  <iframe style="margin-left: 20px; width: 850px; height: 1000px;"
193
+ src="https://clicky.com/stats/wp-iframe?site_id=<?php echo $options['site_id']; ?>&amp;sitekey=<?php echo $options['site_key']; ?>"></iframe>
194
  <?php
195
  }
196
 
197
+ /**
198
+ * Creates the configuration page for Clicky for WordPress by Yoast
199
+ *
200
+ * @uses clicky_get_options()
201
+ * @link http://codex.wordpress.org/Function_Reference/current_user_can
202
+ * @link http://codex.wordpress.org/Function_Reference/check_admin_referer
203
+ * @link http://codex.wordpress.org/Function_Reference/update_option
204
+ * @link http://codex.wordpress.org/Function_Reference/wp_nonce_field
205
+ */
206
+ function config_page() {
207
  $options = clicky_get_options();
208
 
209
  if ( isset( $_POST['submit'] ) ) {
238
  }
239
  ?>
240
  <div class="wrap">
241
+ <a href="http://clicky.com/145844">
242
  <div id="clicky-icon"
243
  style="background: url('<?php echo plugins_url( '', __FILE__ ); ?>/images/clicky-32x32.png') no-repeat;"
244
  class="icon32"><br/></div>
339
  <?php
340
  }
341
 
342
+ /**
343
+ * Creates (CSS for) head for the admin menu bar
344
+ *
345
+ * @link http://codex.wordpress.org/Function_Reference/add_action
346
+ */
347
+ function stats_admin_bar_head() {
348
  add_action( 'admin_bar_menu', array( &$this, 'stats_admin_bar_menu' ), 1200 );
349
  ?>
350
 
367
  <?php
368
  }
369
 
370
+ /**
371
+ * Adds Clicky (graph) to the admin bar of the website
372
+ *
373
+ * @param obj $wp_admin_bar Class that contains all information for the admin bar. Passed by reference.
374
+ * @uses clicky_get_options()
375
+ * @uses create_graph()
376
+ * @link http://codex.wordpress.org/Class_Reference/WP_Admin_Bar
377
+ */
378
+ function stats_admin_bar_menu( &$wp_admin_bar ) {
379
  $options = clicky_get_options();
380
 
381
  $img_src = $this->create_graph();
389
  $wp_admin_bar->add_menu( $menu );
390
  }
391
 
392
+ /**
393
+ * Creates the graph to be used in the admin bar
394
+ *
395
+ * @uses clicky_get_options()
396
+ * @link http://codex.wordpress.org/Function_Reference/wp_remote_get
397
+ * @link http://codex.wordpress.org/Function_Reference/is_wp_error
398
+ * @return bool|string Returns base64-encoded image on succes (String) or fail (boolean) on failure
399
+ */
400
+ function create_graph() {
401
  $options = clicky_get_options();
402
 
403
  if ( !function_exists( 'imagecreate' ) )
492
  $clicky_admin = new Clicky_Admin();
493
  }
494
 
495
+ /**
496
+ * Loads Clicky-options set in WordPress.
497
+ * If already set: trim some option. Otherwise load defaults.
498
+ *
499
+ * @link http://codex.wordpress.org/Function_Reference/get_option
500
+ * @uses clicky_defaults()
501
+ * @return array Returns the trimmed/default options for clicky
502
+ */
503
  function clicky_get_options() {
504
  $options = get_option( 'clicky' );
505
  if ( !is_array( $options ) ) {
512
  return $options;
513
  }
514
 
515
+ /**
516
+ * Default options for Clicky for WordPress plugin by Yoast
517
+ *
518
+ * @link http://codex.wordpress.org/Function_Reference/add_option
519
+ */
520
  function clicky_defaults() {
521
  $options = array(
522
  'site_id' => '',
530
  add_option( 'clicky', $options );
531
  }
532
 
533
+ /**
534
+ * Add clicky scripts to footer
535
+ *
536
+ * @link http://codex.wordpress.org/Function_Reference/current_user_can
537
+ */
538
  function clicky_script() {
539
  $options = clicky_get_options();
540
 
603
  if ( !empty( $clicky_extra ) ) {
604
  ?>
605
  <script type="text/javascript">
606
+ var clicky_custom = clicky_custom || {};
607
+ <?php echo $clicky_extra; ?>
608
  </script>
609
  <?php } ?>
610
  <script type="text/javascript">
623
  })();
624
  </script>
625
  <noscript><p><img alt="Clicky" width="1" height="1"
626
+ src="//in.getclicky.com/<?php echo $options['site_id']; ?>ns.gif"/></p></noscript>
627
  <!-- End Clicky Tracking -->
628
  <?php
629
  }
630
 
631
  add_action( 'wp_footer', 'clicky_script', 90 );
632
 
633
+ /**
634
+ * Create the log for clicky
635
+ *
636
+ * @uses clicky_get_options()
637
+ * @link http://codex.wordpress.org/Function_Reference/wp_remote_get
638
+ * @param array $a The array with basic log-data
639
+ * @return bool Returns true on success or false on failure
640
+ */
641
  function clicky_log( $a ) {
642
  $options = clicky_get_options();
643
 
702
  return wp_remote_get( $file ) ? true : false;
703
  }
704
 
705
+ /**
706
+ * Tracks comments that are not spam and not ping- or trackbacks
707
+ *
708
+ * @param int $commentID The ID of the comment that needs to be tracked
709
+ * @param int $comment_status Status of the comment (e.g. spam)
710
+ */
711
  function clicky_track_comment( $commentID, $comment_status ) {
712
  // Make sure to only track the comment if it's not spam (but do it for moderated comments).
713
  if ( $comment_status != 'spam' ) {
731
  }
732
  }
733
 
734
+ add_action( 'comment_post', 'clicky_track_comment', 10, 2 );
lang/clicky-fa_IR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Clicky WordPress plugin package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2012-06-28 16:29:23+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -20,11 +20,11 @@ msgstr "شما باید%1$s آی دی کیلیکی سایت ،کلید سایت
20
 
21
  #: clicky.php:48
22
  msgid "Clicky needs a bit more info. "
23
- msgstr "کیلیکی نیازمند به ادامه است."
24
 
25
  #: clicky.php:50
26
  msgid "You must %1$s enter your Clicky Database server%2$s for this plugin to be able to track comments."
27
- msgstr ""
28
 
29
  #: clicky.php:71 clicky.php:79
30
  msgid "Twitter"
@@ -52,7 +52,7 @@ msgstr "پیگیری دروازه"
52
 
53
  #: clicky.php:90
54
  msgid "Clicky can track Goals for you too, %1$sread the documentation here%2$s. To be able to track a goal on this post, you need to specify the goal ID here. Optionally, you can also provide the goal revenue."
55
- msgstr ""
56
 
57
  #: clicky.php:93
58
  msgid "Goal ID"
@@ -80,7 +80,7 @@ msgstr "پیکربندی"
80
 
81
  #: clicky.php:189
82
  msgid "Go to your %1$suser homepage on Clicky%2$s and click &quot;Preferences&quot; under the name of the domain, you will find the Site ID, Site Key, Admin Site Key and Database Server under Site information."
83
- msgstr ""
84
 
85
  #: clicky.php:194
86
  msgid "Site ID"
2
  # This file is distributed under the same license as the Clicky WordPress plugin package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 09:50:20+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
20
 
21
  #: clicky.php:48
22
  msgid "Clicky needs a bit more info. "
23
+ msgstr "کلیکی نیازمند به ادامه است."
24
 
25
  #: clicky.php:50
26
  msgid "You must %1$s enter your Clicky Database server%2$s for this plugin to be able to track comments."
27
+ msgstr "شما باید %1$s آدرس یک دیتابیس سرور را وارد کنید %2$s تا این افزونه قادر به بازخورد باشد."
28
 
29
  #: clicky.php:71 clicky.php:79
30
  msgid "Twitter"
52
 
53
  #: clicky.php:90
54
  msgid "Clicky can track Goals for you too, %1$sread the documentation here%2$s. To be able to track a goal on this post, you need to specify the goal ID here. Optionally, you can also provide the goal revenue."
55
+ msgstr "کلیکی می تواند ردیابی اهداف شما را به بیش از،%1$s اسناد خوانده شده در اینجا %2$s . برای ردیابی هدف در این پست، شما نیاز به مشخص کردن آی دی ورود در اینجا دارید. همچنین شما می توانید در صورت تمایل، بازده هدف را تعیین کنید."
56
 
57
  #: clicky.php:93
58
  msgid "Goal ID"
80
 
81
  #: clicky.php:189
82
  msgid "Go to your %1$suser homepage on Clicky%2$s and click &quot;Preferences&quot; under the name of the domain, you will find the Site ID, Site Key, Admin Site Key and Database Server under Site information."
83
+ msgstr "برو به s1% پیام خصوصی کاربر s$2% و کلیک کن &quot;تنظیمات&quot; تحت نام دامنه، شما می توانید ID سایت، کلید سایت، مدیریت کلید سایت و سرور پایگاه داده تحت عنوان اطلاعات سایت را پیدا کنید."
84
 
85
  #: clicky.php:194
86
  msgid "Site ID"
lang/clicky-fr_FR.mo CHANGED
Binary file
lang/clicky-hu_HU.mo ADDED
Binary file
lang/clicky-hu_HU.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Hungarian
2
+ # This file is distributed under the same license as the Clicky WordPress plugin package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 09:59:29+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Clicky WordPress plugin\n"
12
+
13
+ #: clicky.php:37
14
+ msgid "Clicky is almost ready. "
15
+ msgstr "Clicky majdnem készen van."
16
+
17
+ #: clicky.php:39
18
+ msgid "You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s for it to work."
19
+ msgstr "Be kell %1$s ütnöd a Clicky oldal azonosítódat, az oldal kulcsot és az admin kulcsot%2$s , hogy működjön."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky-nek kicsit több információra van szüksége."
24
+
25
+ #: clicky.php:50
26
+ msgid "You must %1$s enter your Clicky Database server%2$s for this plugin to be able to track comments."
27
+ msgstr "Be kell %1$s a Clicky adatbázis szervert%2$s ehhez a pluginhez, hogy követni tudja a kommenteket."
28
+
29
+ #: clicky.php:71 clicky.php:79
30
+ msgid "Twitter"
31
+ msgstr "Twitter"
32
+
33
+ #: clicky.php:73
34
+ msgid "The Clicky.me short URL for this post is"
35
+ msgstr "A Clicky.me rövid URL-je ehhez a poszthoz:"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Tweeteld ki ezt a posztot"
40
+
41
+ #: clicky.php:81
42
+ msgid "This post is not published yet, a short URL will be created for it once the post is published. Do you want it to be tweeted automatically too?"
43
+ msgstr "Ez a poszt még nincsen publikálva, egy rövidített URL készül hozzá, amint publikálásra kerül. Szeretnéd majd te is azonnal ki tweetelni?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Tweeteld a posztot a publikáláskor"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Célkövetés"
52
+
53
+ #: clicky.php:90
54
+ msgid "Clicky can track Goals for you too, %1$sread the documentation here%2$s. To be able to track a goal on this post, you need to specify the goal ID here. Optionally, you can also provide the goal revenue."
55
+ msgstr ""
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "Cél azonosító"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr ""
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Statisztika"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr ""
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "A Clicky beállítások mentésre kerültek."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Konfiguráció"
80
+
81
+ #: clicky.php:189
82
+ msgid "Go to your %1$suser homepage on Clicky%2$s and click &quot;Preferences&quot; under the name of the domain, you will find the Site ID, Site Key, Admin Site Key and Database Server under Site information."
83
+ msgstr "Menj a %1$sfelhasználói oldal a Clicky-n%2$s és klikkelj &quot;Beállítások&quot;ra a domain név alatt, az oldal információk alatt találod az oldal azonosítót, az oldal kulcsot, az admin oldal kulcsát és az adatbázis szervert is."
84
+
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "oldal azonosító"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "oldal kulcs"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "admin oldal kulcs"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "adatbázis szerver"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Clicky beállítások"
104
+
105
+ #: clicky.php:223
106
+ msgid "This plugin allows you to automatically create short URLs through the %1$sClicky.me service%2$s"
107
+ msgstr "Ez a plugin segít neked abban, hogy automatikusan rövidített URL-t készítsd a %1$sClicky.me szolgáltatáson%2$s keresztül."
108
+
109
+ #: clicky.php:223
110
+ msgid "and tweet your post immediately when you publish it. To do that, this plugin will need your Twitter username and pass."
111
+ msgstr "és posztodat azonnal tweetelhesd, amint publikáltad. Ehhez a pluginnak szüksége van a Twitter felhasználó nevedre és jelszavadra. "
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr ""
116
+
117
+ #: clicky.php:229
118
+ msgid "If you are using a caching plugin, such as 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."
119
+ msgstr ""
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr ""
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr ""
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr ""
132
+
133
+ #: clicky.php:252
134
+ msgid "Auto Tweet"
135
+ msgstr ""
136
+
137
+ #: clicky.php:253
138
+ msgid "No need to check the box on each post, by checking this box, each post get's tweeted automatically."
139
+ msgstr ""
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr ""
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr ""
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr ""
152
+
153
+ #: clicky.php:274
154
+ msgid "This text will be put in front of Tweets that are published when a blog post is published"
155
+ msgstr ""
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr ""
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr ""
164
+
165
+ #: clicky.php:392
166
+ msgid "Clicky tracking not shown because you're an administrator and you've configured Clicky to ignore administrators."
167
+ msgstr ""
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr ""
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr ""
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr ""
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr ""
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr ""
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr ""
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr ""
196
+
197
+ #: yst_plugin_tools.php:151
198
+ msgid "If you have any problems with this plugin or good ideas for improvements or new features, please talk about them in the"
199
+ msgstr ""
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr ""
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr ""
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr ""
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr ""
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr ""
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr ""
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr ""
lang/clicky-pl_PL.mo ADDED
Binary file
lang/clicky-pl_PL.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Polish
2
+ # This file is distributed under the same license as the Clicky WordPress plugin package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 09:55:29+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Clicky WordPress plugin\n"
12
+
13
+ #: clicky.php:37
14
+ msgid "Clicky is almost ready. "
15
+ msgstr "Clicky jest już prawie gotowy."
16
+
17
+ #: clicky.php:39
18
+ msgid "You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s for it to work."
19
+ msgstr ""
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky potrzebuje trochę więcej informacji."
24
+
25
+ #: clicky.php:50
26
+ msgid "You must %1$s enter your Clicky Database server%2$s for this plugin to be able to track comments."
27
+ msgstr ""
28
+
29
+ #: clicky.php:71 clicky.php:79
30
+ msgid "Twitter"
31
+ msgstr "Twitter"
32
+
33
+ #: clicky.php:73
34
+ msgid "The Clicky.me short URL for this post is"
35
+ msgstr "Krótki adres URL Clicky.me dla tego wpisu to"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Tweetuj ten post"
40
+
41
+ #: clicky.php:81
42
+ msgid "This post is not published yet, a short URL will be created for it once the post is published. Do you want it to be tweeted automatically too?"
43
+ msgstr "Ten post nie jest jeszcze opublikowany, krótki adres URL zostanie utworzony kiedy zostanie opublikowany. Chcesz aby był także automatycznie tweetnięty?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Tweetuj na opublikowanie"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr ""
52
+
53
+ #: clicky.php:90
54
+ msgid "Clicky can track Goals for you too, %1$sread the documentation here%2$s. To be able to track a goal on this post, you need to specify the goal ID here. Optionally, you can also provide the goal revenue."
55
+ msgstr ""
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr ""
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr ""
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Statystyki"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Nie możesz edytować ustawień Clicky ."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Ustawienia Clicky zostały zaktualizowane."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Konfiguracja"
80
+
81
+ #: clicky.php:189
82
+ msgid "Go to your %1$suser homepage on Clicky%2$s and click &quot;Preferences&quot; under the name of the domain, you will find the Site ID, Site Key, Admin Site Key and Database Server under Site information."
83
+ msgstr ""
84
+
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "ID strony"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "Klucz strony"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Klucz strony administratora"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Serwer bazy danych"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Ustawienia Clicky"
104
+
105
+ #: clicky.php:223
106
+ msgid "This plugin allows you to automatically create short URLs through the %1$sClicky.me service%2$s"
107
+ msgstr "Ta wtyczna pozwana na automatyczne tworzenie krótkich adresów URL przy pomocy usługi %1$sClicky.me %2$s"
108
+
109
+ #: clicky.php:223
110
+ msgid "and tweet your post immediately when you publish it. To do that, this plugin will need your Twitter username and pass."
111
+ msgstr "I Tweetuj swój wpis natychmiastowo po opublikowaniu. Żeby to zrobić, ta wtyczka potrzebuje Twojej nazwy użytkownika i hasła do Tweetera."
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Ignoruj Administratorów"
116
+
117
+ #: clicky.php:229
118
+ msgid "If you are using a caching plugin, such as 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."
119
+ msgstr ""
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Śledzenie nazw komentujących."
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Ustawienia zaawansowane"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Pozwól Clicky.me na integrację"
132
+
133
+ #: clicky.php:252
134
+ msgid "Auto Tweet"
135
+ msgstr "Auto Tweet"
136
+
137
+ #: clicky.php:253
138
+ msgid "No need to check the box on each post, by checking this box, each post get's tweeted automatically."
139
+ msgstr "Nie ma potrzeby sprawdzać skrzynki na każdy wpis, przez naciśniecie skrzynki, każdy wpis Tweetuje się automatycznie."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Twitter Użytkownik"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Twitter hasło"
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr "Prefix dla Tweetów"
152
+
153
+ #: clicky.php:274
154
+ msgid "This text will be put in front of Tweets that are published when a blog post is published"
155
+ msgstr "Ten ten będzie na początku Tweetów, które upubliczniłeś kiedy wpis na blogu jest upubliczniony."
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Integracja Clicky.me i Twitter "
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Ustawienia aktualizacji Clicky"
164
+
165
+ #: clicky.php:392
166
+ msgid "Clicky tracking not shown because you're an administrator and you've configured Clicky to ignore administrators."
167
+ msgstr "Śledzenie Clicky nie pokazane, ponieważ jesteś administratorem i skonfigurowałeś Clicky na ignorowanie administratorów."
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "Wysłany komentarz"
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr "Ustawienia"
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr "Czemu nie zrobić czegoś albo wszystkiego z następujących:"
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr "Linkuj to aby znajomi mogli się o tym dowiedzieć."
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Daj dobrą ocenę na WordPress.org."
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr "Darowizna na znak uznania."
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "Podoba Ci się ten plugin?"
196
+
197
+ #: yst_plugin_tools.php:151
198
+ msgid "If you have any problems with this plugin or good ideas for improvements or new features, please talk about them in the"
199
+ msgstr "Jeśli masz jakieś problemy z tą wtyczką lub dobre pomysły dotyczące poprawę wtyczki lub nowych funkcji, należy o nich mówić w"
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Forum pomocy technicznej"
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr "Potrzebujesz wsparcia?"
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr "Subskrybować"
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Najnowsze wiadomości od Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Nic do powiedzenia ..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky na WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Integracja Clicky na swoim blogu!"
lang/clicky-pt_PT.mo ADDED
Binary file
lang/clicky-pt_PT.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Portuguese (Portugal)
2
+ # This file is distributed under the same license as the Clicky WordPress plugin package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 09:58:32+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Clicky WordPress plugin\n"
12
+
13
+ #: clicky.php:37
14
+ msgid "Clicky is almost ready. "
15
+ msgstr "Clicky está quase pronto."
16
+
17
+ #: clicky.php:39
18
+ msgid "You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s for it to work."
19
+ msgstr "Deve %1$s indicar o ID do seu site no Clicky, a chave do site e a chave do admin %2$s para que funcione."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky precisa de um pouco mais de informação."
24
+
25
+ #: clicky.php:50
26
+ msgid "You must %1$s enter your Clicky Database server%2$s for this plugin to be able to track comments."
27
+ msgstr "Deve %1$s indicar o seu servidor de base de dados do Clicky%2$s para que o plugin possa monitorizar os seus comentários."
28
+
29
+ #: clicky.php:71 clicky.php:79
30
+ msgid "Twitter"
31
+ msgstr "Twitter"
32
+
33
+ #: clicky.php:73
34
+ msgid "The Clicky.me short URL for this post is"
35
+ msgstr "A URL do link encurtado do Clicky.me para este post é"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Tweet este post"
40
+
41
+ #: clicky.php:81
42
+ msgid "This post is not published yet, a short URL will be created for it once the post is published. Do you want it to be tweeted automatically too?"
43
+ msgstr "Este post não foi publicado ainda, uma URL encurtada será criada uma vez que for publicado. Quer que ela seja tweeted automaticamente também?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Tweet este post quando publicar"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Monitorização do Objetivo"
52
+
53
+ #: clicky.php:90
54
+ msgid "Clicky can track Goals for you too, %1$sread the documentation here%2$s. To be able to track a goal on this post, you need to specify the goal ID here. Optionally, you can also provide the goal revenue."
55
+ msgstr "Clicky pode monitorizar Objetivos, %1$sleia a documentação aqui%2$s. Para ser capaz de monitorizar um Objetivo neste post, precisa especificar o ID da meta aqui. Opcionalmente, pode informar o lucro do Objetivo."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "Lucro do Objetivo"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Lucro do Objetivo"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Estatísticas"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Não pode editar as configurações do Clicky."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Aas configurações do Clicky foram atualizadas."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Configuração"
80
+
81
+ #: clicky.php:189
82
+ msgid "Go to your %1$suser homepage on Clicky%2$s and click &quot;Preferences&quot; under the name of the domain, you will find the Site ID, Site Key, Admin Site Key and Database Server under Site information."
83
+ msgstr "Vá até a %1$spágina inicial do Clicky%2$s e clique em preferências, dentro do nome do domínio, você encontrará o ID do site, chave do site, chave do administrador do site e servidor de base de dados."
84
+
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "ID do site"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "Chave do site"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Chave do Admin do site"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Configuração"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Definições do Clicky"
104
+
105
+ #: clicky.php:223
106
+ msgid "This plugin allows you to automatically create short URLs through the %1$sClicky.me service%2$s"
107
+ msgstr "Este plugin permite encurtar automáticamente as URLs através do %1$sserviço Clicky.me%2$s"
108
+
109
+ #: clicky.php:223
110
+ msgid "and tweet your post immediately when you publish it. To do that, this plugin will need your Twitter username and pass."
111
+ msgstr "e tuitar o post imediatamente assim que publicar. Para fazer isso, este plugin precisa do seu login e password do Twitter."
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Ignorar utilizadores Admin"
116
+
117
+ #: clicky.php:229
118
+ msgid "If you are using a caching plugin, such as 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."
119
+ msgstr "Se estiver usando um plugin de cache como o WP-Supercache, certifique-se de estar configurado para NÃO usar o cache para utilizadores ligados. Senão, utilizadores administradores <em>ainda serão</em> monitorizados."
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Monitorizar o nome dos comentadores"
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Definições Avançadas"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Permitir Integração do Clicky.me"
132
+
133
+ #: clicky.php:252
134
+ msgid "Auto Tweet"
135
+ msgstr "Auto Tweet"
136
+
137
+ #: clicky.php:253
138
+ msgid "No need to check the box on each post, by checking this box, each post get's tweeted automatically."
139
+ msgstr "Não precisa desmarcar a caixa de seleção em cada post, ao marcar esta caixa, todo post será tuitado automaticamente."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Utilizador Twitter"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Password Twitter"
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr "Prefixo para Tweets"
152
+
153
+ #: clicky.php:274
154
+ msgid "This text will be put in front of Tweets that are published when a blog post is published"
155
+ msgstr "Este texto aparece à frente dos Tweets que estão publicados, quando o post do blog é publicado"
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Integração Clicky.me &amp; Twitter"
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Atualizar Definições Clicky"
164
+
165
+ #: clicky.php:392
166
+ msgid "Clicky tracking not shown because you're an administrator and you've configured Clicky to ignore administrators."
167
+ msgstr "O monitorizamento do Clicky não está sendo mostrado porque você é um administrador e configurou o Clicky para ignorar administradores."
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "Colocar um comentário"
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr "Definições"
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr "Por que não fazer um ou todos dos itens abaixo:"
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr "Linkar para que outras pessoas saibam mais sobre o plugin."
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Dê uma boa avaliação no Wordpress.org"
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr "Mostre o seu agrado doando."
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "Gosta deste plugin?"
196
+
197
+ #: yst_plugin_tools.php:151
198
+ msgid "If you have any problems with this plugin or good ideas for improvements or new features, please talk about them in the"
199
+ msgstr "Caso tenha alguns problemas com este plugin ou boas ideias de melhoramento ou novas funcionalidades, por favor fale delas em"
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Suportar forums"
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr "Precisa de suporte?"
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr "Subscrever"
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Últimas notícias para o Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Nada a dizer..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky for WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Integre o Clicky no seu blog!"
lang/clicky-tr_TK.mo ADDED
Binary file
lang/clicky-tr_TK.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Turkish
2
+ # This file is distributed under the same license as the Clicky WordPress plugin package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2014-01-06 09:56:13+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Clicky WordPress plugin\n"
12
+
13
+ #: clicky.php:37
14
+ msgid "Clicky is almost ready. "
15
+ msgstr "Clicky neredeyse hazır."
16
+
17
+ #: clicky.php:39
18
+ msgid "You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s for it to work."
19
+ msgstr ""
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky biraz daha bilgiye ihtiyaç duyuyor."
24
+
25
+ #: clicky.php:50
26
+ msgid "You must %1$s enter your Clicky Database server%2$s for this plugin to be able to track comments."
27
+ msgstr ""
28
+
29
+ #: clicky.php:71 clicky.php:79
30
+ msgid "Twitter"
31
+ msgstr "Twitter"
32
+
33
+ #: clicky.php:73
34
+ msgid "The Clicky.me short URL for this post is"
35
+ msgstr "Bu yazı için Clicky.me kısa URL'si"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Bu yazıyı tweetle"
40
+
41
+ #: clicky.php:81
42
+ msgid "This post is not published yet, a short URL will be created for it once the post is published. Do you want it to be tweeted automatically too?"
43
+ msgstr ""
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Yazı yayınladığında tweet at"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Hedef İzleme"
52
+
53
+ #: clicky.php:90
54
+ msgid "Clicky can track Goals for you too, %1$sread the documentation here%2$s. To be able to track a goal on this post, you need to specify the goal ID here. Optionally, you can also provide the goal revenue."
55
+ msgstr ""
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "Hedef ID"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Hedef Kazancı"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "İstatistikler"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Clicky ayarlarını düzenleyemezsiniz."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Clicky ayarları güncellendi."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Yapılandırma"
80
+
81
+ #: clicky.php:189
82
+ msgid "Go to your %1$suser homepage on Clicky%2$s and click &quot;Preferences&quot; under the name of the domain, you will find the Site ID, Site Key, Admin Site Key and Database Server under Site information."
83
+ msgstr ""
84
+
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "Site ID"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "Site Anahtarı"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Yönetici Site Anahtarı"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Veritabanı Sunucusu"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Clicky Ayarları"
104
+
105
+ #: clicky.php:223
106
+ msgid "This plugin allows you to automatically create short URLs through the %1$sClicky.me service%2$s"
107
+ msgstr ""
108
+
109
+ #: clicky.php:223
110
+ msgid "and tweet your post immediately when you publish it. To do that, this plugin will need your Twitter username and pass."
111
+ msgstr ""
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr ""
116
+
117
+ #: clicky.php:229
118
+ msgid "If you are using a caching plugin, such as 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."
119
+ msgstr ""
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Yorumcu isimlerini takip et"
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Gelişmiş Ayarlar"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Clicky.me entegrasyonuna izin ver"
132
+
133
+ #: clicky.php:252
134
+ msgid "Auto Tweet"
135
+ msgstr "Oto Tweet"
136
+
137
+ #: clicky.php:253
138
+ msgid "No need to check the box on each post, by checking this box, each post get's tweeted automatically."
139
+ msgstr "Her yazıdaki kutuyu işaretlemeye gerek yok, bu kutuyu işaretleyerek her yazı otomatik olarak tweetlenir."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Twitter kullanıcı adı"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Twitter şifresi"
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr ""
152
+
153
+ #: clicky.php:274
154
+ msgid "This text will be put in front of Tweets that are published when a blog post is published"
155
+ msgstr ""
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr ""
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Clicky Ayarlarını Güncelle"
164
+
165
+ #: clicky.php:392
166
+ msgid "Clicky tracking not shown because you're an administrator and you've configured Clicky to ignore administrators."
167
+ msgstr ""
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "Bir yorum yazdı"
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr ""
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr ""
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr ""
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr ""
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr ""
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "Eklentiyi beğendiniz mi?"
196
+
197
+ #: yst_plugin_tools.php:151
198
+ msgid "If you have any problems with this plugin or good ideas for improvements or new features, please talk about them in the"
199
+ msgstr ""
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Destek forumları"
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr "Destek mi lazım?"
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr ""
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Clicky'den son haberler"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Söyleyecek bir şey yok..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Wordpress için Clicky"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ 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.5
7
- Stable tag: 1.4.2.2
8
 
9
  Integrates the Clicky (from getClicky.com) web analytics service into your blog.
10
 
@@ -39,6 +39,14 @@ Read the authors [review of Clicky Analytics](http://yoast.com/clicky-analytics-
39
 
40
  == Changelog ==
41
 
 
 
 
 
 
 
 
 
42
  = 1.4.2.2 =
43
 
44
  * Prevent collission with utm username param.
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.5
7
+ Stable tag: 1.4.2.3
8
 
9
  Integrates the Clicky (from getClicky.com) web analytics service into your blog.
10
 
39
 
40
  == Changelog ==
41
 
42
+ = 1.4.2.3 =
43
+
44
+ * Don't overwrite the `clicky_custom` variable when it's already there.
45
+ * Added phpDoc
46
+ * Use https instead of http for showing stats page
47
+ * The <noscript>-part now uses // instead of http:// so it can switch to https.
48
+ * Added Turkish (tr_TK)
49
+
50
  = 1.4.2.2 =
51
 
52
  * Prevent collission with utm username param.