Clicky by Yoast - Version 1.4.2.1

Version Description

  • Fixed a few notices.
  • Fixed a possible crash due to not having imagemagick compiled in.
  • Added a whole bunch of translations.
Download this release

Release Info

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

Code changes from version 1.4.2 to 1.4.2.1

clicky.php CHANGED
@@ -1,438 +1,456 @@
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/
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>";
38
- printf (__('You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s for it to work.', 'clicky'), "<a href='options-general.php?page=clicky'>", "</a>");
39
  echo "</p></div>";
40
  echo "<script type=\"text/javascript\">setTimeout(function(){jQuery('#clickywarning').hide('slow');}, 10000);</script>";
41
  }
42
- add_action('admin_notices', 'clicky_warning');
 
43
  return;
44
- }
45
  }
46
 
47
  function clicky_meta_box() {
48
  global $post;
49
- $options = clicky_get_options();
50
- $clicky_goal = get_post_meta($post->ID,'_clicky_goal',true);
51
-
52
  echo '<p>';
53
- printf(__('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.', 'clicky'),'<a href="http://getclicky.com/stats/goals-setup">','</a>');
54
  echo '</p>';
55
  echo '<table>';
56
- echo '<tr><th style="text-align:left;"><label for="clicky_goal_id">'.__('Goal ID', 'clicky').':</label></th><td><input type="text" name="clicky_goal_id" id="clicky_goal_id" value="'.$clicky_goal['id'].'"/></td></tr>';
57
- echo '<tr><th style="text-align:left;"><label for="clicky_goal_value">'.__('Goal Revenue', 'clicky').': &nbsp;</label></th><td><input type="text" name="clicky_goal_value" id="clicky_goal_value" value="'.$clicky_goal['value'].'"/></td></tr>';
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
-
67
  add_filter( 'plugin_action_links', array( &$this, 'add_action_link' ), 10, 2 );
68
-
69
- add_action( 'admin_print_styles', array( &$this,'config_page_styles' ) );
70
-
71
  add_action( 'admin_menu', array( &$this, 'meta_box' ) );
72
  add_action( 'publish_post', array( &$this, 'clicky_insert_post' ) );
73
-
74
- add_action( 'wp_head', array( &$this, 'stats_admin_bar_head') );
75
-
76
  $this->clicky_admin_warnings();
77
  }
78
 
79
- function clicky_insert_post($pID) {
80
- global $_POST;
81
- $options = clicky_get_options();
82
- extract($_POST);
83
- $clicky_goal = array();
84
- $clicky_goal['id'] = $clicky_goal_id;
85
- $clicky_goal['value'] = $clicky_goal_value;
86
- delete_post_meta($pID,'_clicky_goal');
87
- add_post_meta($pID,'_clicky_goal',$clicky_goal, true);
88
  }
89
 
90
  function register_dashboard_page() {
91
- add_dashboard_page($this->shortname.' '.__('Stats', 'clicky'), $this->shortname.' '.__('Stats', 'clicky'), $this->accesslvl, $this->hook, array(&$this,'dashboard_page'));
92
  }
93
-
94
  function dashboard_page() {
95
  $options = clicky_get_options();
96
- ?>
97
  <br/>
98
- <iframe style="margin-left: 20px; width: 850px; height: 1000px;" src="http://getclicky.com/stats/wp-iframe?site_id=<?php echo $options['site_id']; ?>&amp;sitekey=<?php echo $options['site_key']; ?>"></iframe>
99
- <?php
 
100
  }
101
-
102
  function config_page() {
103
  $options = clicky_get_options();
104
-
105
- if ( isset($_POST['submit']) ) {
106
- if (!current_user_can('manage_options')) die(__('You cannot edit the Clicky settings.', 'clicky'));
107
- check_admin_referer('clicky-config');
108
-
109
- foreach (array('site_id', 'site_key', 'admin_site_key', 'outbound_pattern') as $option_name) {
110
- if (isset($_POST[$option_name]))
111
  $options[$option_name] = $_POST[$option_name];
112
  else
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
120
  $options[$option_name] = false;
121
  }
122
-
123
- if (clicky_get_options() != $options) {
124
- update_option('clicky', $options);
125
- $message = "<p>".__('Clicky settings have been updated.', 'clicky')."</p>";
126
  }
127
  }
128
-
129
- if (isset($error) && $error != "") {
130
  echo "<div id=\"message\" class=\"error\">$error</div>\n";
131
- } elseif (isset($message) && $message != "") {
132
  echo "<div id=\"updatemessage\" class=\"updated fade\">$message</div>\n";
133
  echo "<script type=\"text/javascript\">setTimeout(function(){jQuery('#updatemessage').hide('slow');}, 3000);</script>";
134
  }
135
  ?>
136
- <div class="wrap">
137
- <a href="http://getclicky.com/145844"><div id="clicky-icon" style="background: url(<?php echo plugins_url('',__FILE__); ?>/images/clicky-32x32.png) no-repeat;" class="icon32"><br /></div></a>
138
- <h2>Clicky <?php _e("Configuration",'clicky'); ?></h2>
139
- <div class="postbox-container" style="width:70%;">
140
- <div class="metabox-holder">
141
- <div class="meta-box-sortables">
142
- <form action="" method="post" id="clicky-conf" enctype="multipart/form-data">
143
- <?php
144
- wp_nonce_field('clicky-config');
145
-
146
- $content = '<p style="text-align:left; margin: 0 10px; font-size: 13px; line-height: 150%;">'.sprintf(__('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.', 'clicky'),'<a href="http://getclicky.com/145844">','</a>').'</p>';
147
-
148
- $rows = array ();
149
- $rows[] = array(
150
- 'id' => 'site_id',
151
- 'label' => __('Site ID', 'clicky'),
152
- 'desc' => '',
153
- 'content' => '<input class="text" type="text" value="'.$options['site_id'].'" name="site_id" id="site_id"/>',
154
- );
155
-
156
- $rows[] = array(
157
- 'id' => 'site_key',
158
- 'label' => __('Site Key', 'clicky'),
159
- 'desc' => '',
160
- 'content' => '<input class="text" type="text" value="'.$options['site_key'].'" name="site_key" id="site_key"/>',
161
- );
162
-
163
- $rows[] = array(
164
- 'id' => 'admin_site_key',
165
- 'label' => __('Admin Site Key', 'clicky'),
166
- 'desc' => '',
167
- 'content' => '<input class="text" type="text" value="'.$options['admin_site_key'].'" name="admin_site_key" id="admin_site_key"/>',
168
- );
169
-
170
- $content .= ' '.$this->form_table($rows);
171
- $this->postbox('clicky_settings',__('Clicky Settings', 'clicky'), $content);
172
-
173
- $content = '<p style="text-align:left; margin: 0 10px; font-size: 13px; line-height: 150%;">'.sprintf(__('This plugin allows you to automatically create short URLs through the %1$sClicky.me service%2$s', 'clicky'),'<a href="http://clicky.me">','</a>,').' '.__('and tweet your post immediately when you publish it. To do that, this plugin will need your Twitter username and pass.', 'clicky').'</p>';
174
-
175
- $rows = array();
176
- $rows[] = array(
177
- 'id' => 'ignore_admin',
178
- 'label' => __('Ignore Admin users', 'clicky'),
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',
192
- 'label' => __('Track names of commenters', 'clicky'),
193
- 'desc' => '',
194
- 'content' => '<input type="checkbox" '.checked($options['track_names'],true,false).' name="track_names" id="track_names"/>'
195
- );
196
-
197
- $rows[] = array(
198
- 'id' => 'outbound_pattern',
199
- 'label' => __('Outbound Link Pattern', 'clicky'),
200
- 'desc' => sprintf( __('If your site uses redirects for outbound links, instead of links that point directly to their external source (this is popular with affiliate links, for example), then you\'ll need to use this variable to tell our tracking code additional patterns to look for when automatically tracking outbound links. %1$sRead more here%1$s.','clicky'), '<a href="https://secure.getclicky.com/helpy?type=customization#outbound_pattern">', '</a>'),
201
- 'content' => '<input class="text" type="text" value="'.$options['outbound_pattern'].'" name="outbound_pattern" id="outbound_pattern"/> '.__('For instance: <code>/out/,/go/</code>','clicky'),
202
- );
203
-
204
- $this->postbox('clicky_settings',__('Advanced Settings', 'clicky'), $this->form_table($rows));
205
-
206
- ?>
207
- <div class="submit">
208
- <input type="submit" class="button-primary" name="submit" value="<?php _e("Update Clicky Settings", 'clicky'); ?> &raquo;" />
209
- </div>
210
- </form>
211
- </div>
212
- </div>
213
- </div>
214
- <div class="postbox-container" style="width:20%;">
215
- <div class="metabox-holder">
216
- <div class="meta-box-sortables">
217
  <?php
218
- $this->donate();
219
- $this->plugin_support();
220
- $this->yoast_news();
221
- $this->news();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
  ?>
223
- </div>
224
- <br/><br/><br/>
 
 
 
225
  </div>
226
  </div>
227
  </div>
228
- <?php
229
- }
230
-
231
- function stats_admin_bar_head() {
232
- add_action( 'admin_bar_menu', array(&$this, 'stats_admin_bar_menu'), 1200 );
233
- ?>
234
-
235
- <style type='text/css'>
236
- #wpadminbar .quicklinks li#wp-admin-bar-clickystats {height:28px}
237
- #wpadminbar .quicklinks li#wp-admin-bar-clickystats a {height:28px;padding:0}
238
- #wpadminbar .quicklinks li#wp-admin-bar-clickystats a img {padding:4px 5px; height: 20px; width: 99px;
 
 
 
 
 
 
 
 
 
 
 
 
 
239
  }
240
- </style>
241
- <?php
 
 
242
  }
243
-
244
- function stats_admin_bar_menu( &$wp_admin_bar ) {
245
- $options = clicky_get_options();
246
-
247
- $img_src = $this->create_graph();
248
-
249
- $url = 'https://secure.getclicky.com/stats/?site_id='.$options['site_id'];
250
-
251
- $title = __( 'Visitors over 48 hours. Click for more Clicky Site Stats.', 'clicky' );
252
-
253
- $menu = array( 'id' => 'clickystats', 'title' => "<img width='99' height='20' src='$img_src' alt='$title' title='$title' />", 'href' => $url );
254
-
255
- $wp_admin_bar->add_menu( $menu );
256
  }
257
-
258
- function create_graph() {
259
- $options = clicky_get_options();
260
-
261
- $resp = wp_remote_get("http://api.getclicky.com/api/stats/4?site_id=".$options['site_id']."&sitekey=".$options['site_key']."&type=visitors&hourly=1&date=last-3-days");
262
-
263
- if ( is_wp_error($resp) || !isset($resp['response']['code']) || $resp['response']['code'] != 200 )
264
- return;
265
-
266
- $xml = simplexml_load_string( $resp['body'] );
267
-
268
- $i=0;
269
- $j=0;
270
- $k=0;
271
- $values=array();
272
- foreach($xml->type->date as $value)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  {
274
- foreach($xml->type->date[$i]->item->value as $art)//nested loop for multiple values in tag
275
- {
276
-
277
- $data=(int)($xml->type->date[$i]->item->value[$j]);//$i and $j is used to iterate multiples of both tags respectively
278
- array_push($values,$data);
279
- $j=$j+1;
280
- $k++;
281
- if ($k == 48)
282
- break 2;
283
- }
284
- $j=0; //so that in next item it starts from 0(zero)
285
- $i++;
286
- }
287
- if ( count($values) == 0 ) {
288
- return;
289
- }
290
- $values = array_reverse($values);
291
- //-----------------------------------------------------------------------------------------------------------------------------
292
- //for graph
293
- $img_width=99;
294
- $img_height=20;
295
- $margins=0;
296
-
297
-
298
- # ---- Find the size of graph by substracting the size of borders
299
- $graph_width=$img_width - $margins * 2;
300
- $graph_height=$img_height - $margins * 2;
301
- $img=imagecreate($img_width,$img_height);
302
-
303
-
304
- $bar_width=0.01;
305
- $total_bars=count($values);
306
- $gap= ($graph_width- $total_bars * $bar_width ) / ($total_bars +1);
307
-
308
- # ------- Define Colors ----------------
309
- $bar_color=imagecolorallocate($img,220,220,220);
310
-
311
- $black = imagecolorallocate($img, 0, 0, 0);
312
- $background_color=imagecolortransparent($img, $black);
313
- $border_color=imagecolorallocate($img,50,50,50);
314
-
315
- # ------ Create the border around the graph ------
316
-
317
- imagefilledrectangle($img,1,1,$img_width-2,$img_height-2,$border_color);
318
- imagefilledrectangle($img,$margins,$margins,$img_width-1-$margins,$img_height-1-$margins,$background_color);
319
-
320
- # ------- Max value is required to adjust the scale -------
321
- $max_value=max($values);
322
- if ($max_value == 0)
323
- $max_value = 1;
324
- $ratio= $graph_height/$max_value;
325
-
326
-
327
- # ----------- Draw the bars here ------
328
- for($i=0;$i< $total_bars; $i++)
329
- {
330
- # ------ Extract key and value pair from the current pointer position
331
- list($key,$value)=each($values);
332
- $x1= $margins + $gap + $i * ($gap+$bar_width) ;
333
- $x2= $x1 + $bar_width;
334
- $y1=$margins +$graph_height- intval($value * $ratio) ;
335
- $y2=$img_height-$margins;
336
- imagefilledrectangle($img,$x1,$y1,$x2,$y2,$bar_color);
337
  }
338
-
339
- ob_start();
340
- imagepng($img);
341
- $image = ob_get_contents();
342
- ob_end_clean();
343
-
344
- return 'data:image/png;base64,'.base64_encode($image);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
  }
346
-
 
 
 
 
 
 
 
 
347
  }
 
348
  $clicky_admin = new Clicky_Admin();
349
  }
350
 
351
  function clicky_get_options() {
352
- $options = get_option('clicky');
353
- if (!is_array($options)) {
354
  clicky_defaults();
355
  } else {
356
- $options['site_id'] = trim($options['site_id']);
357
- $options['site_key'] = trim($options['site_key']);
358
- $options['admin_site_key'] = trim($options['admin_site_key']);
359
  }
360
  return $options;
361
  }
362
 
363
  function clicky_defaults() {
364
  $options = array(
365
- 'site_id' => '',
366
- 'site_key' => '',
367
- 'admin_site_key' => '',
368
- 'outbound_pattern' => '',
369
- 'ignore_admin' => false,
370
- 'track_names' => true,
371
- 'cookies_disable' => false,
372
  );
373
- add_option('clicky',$options);
374
  }
375
 
376
  function clicky_script() {
377
  $options = clicky_get_options();
378
-
379
  if ( is_preview() )
380
  return;
381
-
382
  // Bail early if current user is admin and ignore admin is true
383
- if( $options['ignore_admin'] && current_user_can("manage_options") ) {
384
- echo "\n<!-- ".__("Clicky tracking not shown because you're an administrator and you've configured Clicky to ignore administrators.", 'clicky')." -->\n";
385
  return;
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'] ) {
395
- ?>
396
- <script type='text/javascript'>
397
- function clicky_gc( name ) {
398
- var ca = document.cookie.split(';');
399
- for( var i in ca ) {
400
- if( ca[i].indexOf( name+'=' ) != -1 )
401
- return decodeURIComponent( ca[i].split('=')[1] );
402
- }
403
- return '';
404
- }
405
- var clicky_custom_session = {
406
- username: clicky_gc( 'comment_author_<?php echo md5( get_option("siteurl") ); ?>' )
407
- };
408
  </script>
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 = '';
429
  foreach ( $patterns as $pat ) {
430
  if ( $pattern != '' )
431
  $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'] ) {
@@ -440,112 +458,120 @@ var clicky_custom_session = {
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']; ?>;
452
- (function() {
453
  var s = document.createElement('script');
454
- s.type = 'text/javascript'; s.async = true;
 
455
  s.src = '//static.getclicky.com/js';
456
- ( document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0] ).appendChild( s );
457
  })();
458
  </script>
459
- <noscript><p><img alt="Clicky" width="1" height="1" src="http://in.getclicky.com/<?php echo $options['site_id']; ?>ns.gif" /></p></noscript>
 
460
  <!-- End Clicky Tracking -->
461
  <?php
462
  }
463
- add_action('wp_footer','clicky_script',90);
 
464
 
465
  function clicky_log( $a ) {
466
  $options = clicky_get_options();
467
 
468
- if (!isset($options['site_id']) || empty($options['site_id']) || !isset($options['admin_site_key']) || empty($options['admin_site_key']))
469
  return;
470
 
471
  $type = $a['type'];
472
- if( !in_array( $type, array( "pageview", "download", "outbound", "click", "custom", "goal" )))
473
  $type = "pageview";
474
 
475
- $file = "http://in.getclicky.com/in.php?site_id=".$options['site_id']."&sitekey_admin=".$options['admin_site_key']."&type=".$type;
476
 
477
  # referrer and user agent - will only be logged if this is the very first action of this session
478
- if( $a['ref'] )
479
- $file .= "&ref=".urlencode( $a['ref'] );
480
-
481
- if( $a['ua'] )
482
- $file .= "&ua=". urlencode( $a['ua'] );
483
 
484
  # we need either a session_id or an ip_address...
485
- if( is_numeric( $a['session_id'] )) {
486
- $file .= "&session_id=".$a['session_id'];
487
  } else {
488
- if( !$a['ip_address'] )
489
  $a['ip_address'] = $_SERVER['REMOTE_ADDR']; # automatically grab IP that PHP gives us.
490
- if( !preg_match( "#^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$#", $a['ip_address'] ))
491
  return false;
492
- $file .= "&ip_address=".$a['ip_address'];
493
  }
494
 
495
  # goals can come in as integer or array, for convenience
496
- if( $a['goal'] ) {
497
- if( is_numeric( $a['goal'] )) {
498
- $file .= "&goal[id]=".$a['goal'];
499
  } else {
500
- if( !is_numeric( $a['goal']['id'] ))
501
  return false;
502
- foreach( $a['goal'] as $key => $value )
503
- $file .= "&goal[".urlencode( $key )."]=".urlencode( $value );
504
  }
505
  }
506
 
507
  # custom data, must come in as array of key=>values
508
- foreach( $a['custom'] as $key => $value )
509
- $file .= "&custom[".urlencode( $key )."]=".urlencode( $value );
510
 
511
- if( $type == "goal" || $type == "custom" ) {
512
  # dont do anything, data has already been cat'd
513
  } else {
514
- if( $type == "outbound" ) {
515
- if( !preg_match( "#^(https?|telnet|ftp)#", $a['href'] ))
516
  return false;
517
  } else {
518
  # all other action types must start with either a / or a #
519
- if( !preg_match( "#^(/|\#)#", $a['href'] ))
520
  $a['href'] = "/" . $a['href'];
521
  }
522
- $file .= "&href=".urlencode( $a['href'] );
523
- if( $a['title'] )
524
- $file .= "&title=".urlencode( $a['title'] );
525
  }
526
- return wp_remote_get( $file ) ? true:false;
527
  }
528
 
529
- function clicky_track_comment($commentID, $comment_status) {
530
  // Make sure to only track the comment if it's not spam (but do it for moderated comments).
531
- if ($comment_status != 'spam') {
532
- $comment = get_comment($commentID);
533
  // Only do this for normal comments, not for pingbacks or trackbacks
534
- if ($comment->comment_type != 'pingback' && $comment->comment_type != 'trackback') {
535
- clicky_log(
536
- array(
537
- "type" => "click",
538
- "href" => "/wp-comments-post.php",
539
- "title" => __("Posted a comment",'clicky'),
540
- "ua" => $comment->comment_agent,
541
- "ip_address" => $comment->comment_author_IP,
542
- "custom" => array(
543
- "username" => $comment->comment_author,
544
- "email" => $comment->comment_author_email,
545
  )
546
- )
547
  );
548
  }
549
  }
550
  }
551
- add_action('comment_post','clicky_track_comment',10,2);
 
1
  <?php
2
  /*
3
  Plugin Name: Clicky for WordPress
4
+ Version: 1.4.2.1
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>";
38
+ printf( __( 'You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s for it to work.', 'clicky' ), "<a href='" . admin_url( 'options-general.php?page=clicky' ) . "'>", "</a>" );
39
  echo "</p></div>";
40
  echo "<script type=\"text/javascript\">setTimeout(function(){jQuery('#clickywarning').hide('slow');}, 10000);</script>";
41
  }
42
+
43
+ add_action( 'admin_notices', 'clicky_warning' );
44
  return;
45
+ }
46
  }
47
 
48
  function clicky_meta_box() {
49
  global $post;
50
+ $clicky_goal = get_post_meta( $post->ID, '_clicky_goal', true );
51
+
 
52
  echo '<p>';
53
+ printf( __( '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.', 'clicky' ), '<a href="http://getclicky.com/stats/goals-setup">', '</a>' );
54
  echo '</p>';
55
  echo '<table>';
56
+ echo '<tr><th style="text-align:left;"><label for="clicky_goal_id">' . __( 'Goal ID', 'clicky' ) . ':</label></th><td><input type="text" name="clicky_goal_id" id="clicky_goal_id" value="' . ( isset( $clicky_goal['id'] ) ? $clicky_goal['id'] : '' ) . '"/></td></tr>';
57
+ echo '<tr><th style="text-align:left;"><label for="clicky_goal_value">' . __( 'Goal Revenue', 'clicky' ) . ': &nbsp;</label></th><td><input type="text" name="clicky_goal_value" id="clicky_goal_value" value="' . ( isset( $clicky_goal['value'] ) ? $clicky_goal['value'] : '' ) . '"/></td></tr>';
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
+
67
  add_filter( 'plugin_action_links', array( &$this, 'add_action_link' ), 10, 2 );
68
+
69
+ add_action( 'admin_print_styles', array( &$this, 'config_page_styles' ) );
70
+
71
  add_action( 'admin_menu', array( &$this, 'meta_box' ) );
72
  add_action( 'publish_post', array( &$this, 'clicky_insert_post' ) );
73
+
74
+ add_action( 'wp_head', array( &$this, 'stats_admin_bar_head' ) );
75
+
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']
83
+ );
84
+ delete_post_meta( $pID, '_clicky_goal' );
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'] ) ) {
105
+ if ( !current_user_can( 'manage_options' ) ) die( __( 'You cannot edit the Clicky settings.', 'clicky' ) );
106
+ check_admin_referer( 'clicky-config' );
107
+
108
+ foreach ( array( 'site_id', 'site_key', 'admin_site_key', 'outbound_pattern' ) as $option_name ) {
109
+ if ( isset( $_POST[$option_name] ) )
110
  $options[$option_name] = $_POST[$option_name];
111
  else
112
  $options[$option_name] = '';
113
  }
114
+
115
+ foreach ( array( 'ignore_admin', 'track_names', 'cookies_disable' ) as $option_name ) {
116
+ if ( isset( $_POST[$option_name] ) )
117
  $options[$option_name] = true;
118
  else
119
  $options[$option_name] = false;
120
  }
121
+
122
+ if ( clicky_get_options() != $options ) {
123
+ update_option( 'clicky', $options );
124
+ $message = "<p>" . __( 'Clicky settings have been updated.', 'clicky' ) . "</p>";
125
  }
126
  }
127
+
128
+ if ( isset( $error ) && $error != "" ) {
129
  echo "<div id=\"message\" class=\"error\">$error</div>\n";
130
+ } elseif ( isset( $message ) && $message != "" ) {
131
  echo "<div id=\"updatemessage\" class=\"updated fade\">$message</div>\n";
132
  echo "<script type=\"text/javascript\">setTimeout(function(){jQuery('#updatemessage').hide('slow');}, 3000);</script>";
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>
140
+ </a>
141
+
142
+ <h2>Clicky <?php _e( "Configuration", 'clicky' ); ?></h2>
143
+
144
+ <div class="postbox-container" style="width:70%;">
145
+ <div class="metabox-holder">
146
+ <div class="meta-box-sortables">
147
+ <form action="" method="post" id="clicky-conf" enctype="multipart/form-data">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  <?php
149
+ wp_nonce_field( 'clicky-config' );
150
+
151
+ $content = '<p style="text-align:left; margin: 0 10px; font-size: 13px; line-height: 150%;">' . sprintf( __( '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.', 'clicky' ), '<a href="http://getclicky.com/145844">', '</a>' ) . '</p>';
152
+
153
+ $rows = array();
154
+ $rows[] = array(
155
+ 'id' => 'site_id',
156
+ 'label' => __( 'Site ID', 'clicky' ),
157
+ 'desc' => '',
158
+ 'content' => '<input class="text" type="text" value="' . $options['site_id'] . '" name="site_id" id="site_id"/>',
159
+ );
160
+
161
+ $rows[] = array(
162
+ 'id' => 'site_key',
163
+ 'label' => __( 'Site Key', 'clicky' ),
164
+ 'desc' => '',
165
+ 'content' => '<input class="text" type="text" value="' . $options['site_key'] . '" name="site_key" id="site_key"/>',
166
+ );
167
+
168
+ $rows[] = array(
169
+ 'id' => 'admin_site_key',
170
+ 'label' => __( 'Admin Site Key', 'clicky' ),
171
+ 'desc' => '',
172
+ 'content' => '<input class="text" type="text" value="' . $options['admin_site_key'] . '" name="admin_site_key" id="admin_site_key"/>',
173
+ );
174
+
175
+ $content .= ' ' . $this->form_table( $rows );
176
+ $this->postbox( 'clicky_settings', __( 'Clicky Settings', 'clicky' ), $content );
177
+
178
+ $content = '<p style="text-align:left; margin: 0 10px; font-size: 13px; line-height: 150%;">' . sprintf( __( 'This plugin allows you to automatically create short URLs through the %1$sClicky.me service%2$s', 'clicky' ), '<a href="http://clicky.me">', '</a>,' ) . ' ' . __( 'and tweet your post immediately when you publish it. To do that, this plugin will need your Twitter username and pass.', 'clicky' ) . '</p>';
179
+
180
+ $rows = array();
181
+ $rows[] = array(
182
+ 'id' => 'ignore_admin',
183
+ 'label' => __( 'Ignore Admin users', 'clicky' ),
184
+ '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' ),
185
+ 'content' => '<input type="checkbox" ' . checked( $options['ignore_admin'], true, false ) . ' name="ignore_admin" id="ignore_admin"/>',
186
+ );
187
+
188
+ $rows[] = array(
189
+ 'id' => 'cookies_disable',
190
+ 'label' => __( 'Disable cookies', 'clicky' ),
191
+ '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' ),
192
+ 'content' => '<input type="checkbox" ' . checked( $options['cookies_disable'], true, false ) . ' name="cookies_disable" id="cookies_disable"/>',
193
+ );
194
+
195
+ $rows[] = array(
196
+ 'id' => 'track_names',
197
+ 'label' => __( 'Track names of commenters', 'clicky' ),
198
+ 'desc' => '',
199
+ 'content' => '<input type="checkbox" ' . checked( $options['track_names'], true, false ) . ' name="track_names" id="track_names"/>'
200
+ );
201
+
202
+ $rows[] = array(
203
+ 'id' => 'outbound_pattern',
204
+ 'label' => __( 'Outbound Link Pattern', 'clicky' ),
205
+ 'desc' => sprintf( __( 'If your site uses redirects for outbound links, instead of links that point directly to their external source (this is popular with affiliate links, for example), then you\'ll need to use this variable to tell our tracking code additional patterns to look for when automatically tracking outbound links. %1$sRead more here%1$s.', 'clicky' ), '<a href="https://secure.getclicky.com/helpy?type=customization#outbound_pattern">', '</a>' ),
206
+ 'content' => '<input class="text" type="text" value="' . $options['outbound_pattern'] . '" name="outbound_pattern" id="outbound_pattern"/> ' . __( 'For instance: <code>/out/,/go/</code>', 'clicky' ),
207
+ );
208
+
209
+ $this->postbox( 'clicky_settings', __( 'Advanced Settings', 'clicky' ), $this->form_table( $rows ) );
210
+
211
  ?>
212
+ <div class="submit">
213
+ <input type="submit" class="button-primary" name="submit"
214
+ value="<?php _e( "Update Clicky Settings", 'clicky' ); ?> &raquo;"/>
215
+ </div>
216
+ </form>
217
  </div>
218
  </div>
219
  </div>
220
+ <div class="postbox-container" style="width:20%;">
221
+ <div class="metabox-holder">
222
+ <div class="meta-box-sortables">
223
+ <?php
224
+ $this->donate();
225
+ $this->plugin_support();
226
+ $this->yoast_news();
227
+ $this->news();
228
+ ?>
229
+ </div>
230
+ <br/><br/><br/>
231
+ </div>
232
+ </div>
233
+ </div>
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
+
241
+ <style type='text/css'>
242
+ #wpadminbar .quicklinks li#wp-admin-bar-clickystats {
243
+ height: 28px
244
  }
245
+
246
+ #wpadminbar .quicklinks li#wp-admin-bar-clickystats a {
247
+ height: 28px;
248
+ padding: 0
249
  }
250
+
251
+ #wpadminbar .quicklinks li#wp-admin-bar-clickystats a img {
252
+ padding: 4px 5px;
253
+ height: 20px;
254
+ width: 99px;
 
 
 
 
 
 
 
 
255
  }
256
+ </style>
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();
264
+
265
+ $url = 'https://secure.getclicky.com/stats/?site_id=' . $options['site_id'];
266
+
267
+ $title = __( 'Visitors over 48 hours. Click for more Clicky Site Stats.', 'clicky' );
268
+
269
+ $menu = array( 'id' => 'clickystats', 'title' => "<img width='99' height='20' src='${img_src}' alt='$title' title='$title' />", 'href' => $url );
270
+
271
+ $wp_admin_bar->add_menu( $menu );
272
+ }
273
+
274
+ function create_graph() {
275
+ $options = clicky_get_options();
276
+
277
+ if ( !function_exists( 'imagecreate' ) )
278
+ return false;
279
+
280
+ $resp = wp_remote_get( "http://api.getclicky.com/api/stats/4?site_id=" . $options['site_id'] . "&sitekey=" . $options['site_key'] . "&type=visitors&hourly=1&date=last-3-days" );
281
+
282
+ if ( is_wp_error( $resp ) || !isset( $resp['response']['code'] ) || $resp['response']['code'] != 200 )
283
+ return;
284
+
285
+ $xml = simplexml_load_string( $resp['body'] );
286
+
287
+ $i = 0;
288
+ $j = 0;
289
+ $k = 0;
290
+ $values = array();
291
+ foreach ( $xml->type->date as $value ) {
292
+ foreach ( $xml->type->date[$i]->item->value as $art ) //nested loop for multiple values in tag
293
  {
294
+
295
+ $data = (int) ( $xml->type->date[$i]->item->value[$j] ); //$i and $j is used to iterate multiples of both tags respectively
296
+ array_push( $values, $data );
297
+ $j = $j + 1;
298
+ $k++;
299
+ if ( $k == 48 )
300
+ break 2;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  }
302
+ $j = 0; //so that in next item it starts from 0(zero)
303
+ $i++;
304
+ }
305
+ if ( count( $values ) == 0 ) {
306
+ return;
307
+ }
308
+ $values = array_reverse( $values );
309
+ //-----------------------------------------------------------------------------------------------------------------------------
310
+ //for graph
311
+ $img_width = 99;
312
+ $img_height = 20;
313
+ $margins = 0;
314
+
315
+
316
+ # ---- Find the size of graph by substracting the size of borders
317
+ $graph_width = $img_width - $margins * 2;
318
+ $graph_height = $img_height - $margins * 2;
319
+ $img = imagecreate( $img_width, $img_height );
320
+
321
+
322
+ $bar_width = 0.01;
323
+ $total_bars = count( $values );
324
+ $gap = ( $graph_width - $total_bars * $bar_width ) / ( $total_bars + 1 );
325
+
326
+ # ------- Define Colors ----------------
327
+ $bar_color = imagecolorallocate( $img, 220, 220, 220 );
328
+
329
+ $black = imagecolorallocate( $img, 0, 0, 0 );
330
+ $background_color = imagecolortransparent( $img, $black );
331
+ $border_color = imagecolorallocate( $img, 50, 50, 50 );
332
+
333
+ # ------ Create the border around the graph ------
334
+
335
+ imagefilledrectangle( $img, 1, 1, $img_width - 2, $img_height - 2, $border_color );
336
+ imagefilledrectangle( $img, $margins, $margins, $img_width - 1 - $margins, $img_height - 1 - $margins, $background_color );
337
+
338
+ # ------- Max value is required to adjust the scale -------
339
+ $max_value = max( $values );
340
+ if ( $max_value == 0 )
341
+ $max_value = 1;
342
+ $ratio = $graph_height / $max_value;
343
+
344
+
345
+ # ----------- Draw the bars here ------
346
+ for ( $i = 0; $i < $total_bars; $i++ ) {
347
+ # ------ Extract key and value pair from the current pointer position
348
+ list( $key, $value ) = each( $values );
349
+ $x1 = $margins + $gap + $i * ( $gap + $bar_width );
350
+ $x2 = $x1 + $bar_width;
351
+ $y1 = $margins + $graph_height - intval( $value * $ratio );
352
+ $y2 = $img_height - $margins;
353
+ imagefilledrectangle( $img, $x1, $y1, $x2, $y2, $bar_color );
354
  }
355
+
356
+ ob_start();
357
+ imagepng( $img );
358
+ $image = ob_get_contents();
359
+ ob_end_clean();
360
+
361
+ return 'data:image/png;base64,' . base64_encode( $image );
362
+ }
363
+
364
  }
365
+
366
  $clicky_admin = new Clicky_Admin();
367
  }
368
 
369
  function clicky_get_options() {
370
+ $options = get_option( 'clicky' );
371
+ if ( !is_array( $options ) ) {
372
  clicky_defaults();
373
  } else {
374
+ $options['site_id'] = trim( $options['site_id'] );
375
+ $options['site_key'] = trim( $options['site_key'] );
376
+ $options['admin_site_key'] = trim( $options['admin_site_key'] );
377
  }
378
  return $options;
379
  }
380
 
381
  function clicky_defaults() {
382
  $options = array(
383
+ 'site_id' => '',
384
+ 'site_key' => '',
385
+ 'admin_site_key' => '',
386
+ 'outbound_pattern' => '',
387
+ 'ignore_admin' => false,
388
+ 'track_names' => true,
389
+ 'cookies_disable' => false,
390
  );
391
+ add_option( 'clicky', $options );
392
  }
393
 
394
  function clicky_script() {
395
  $options = clicky_get_options();
396
+
397
  if ( is_preview() )
398
  return;
399
+
400
  // Bail early if current user is admin and ignore admin is true
401
+ if ( $options['ignore_admin'] && current_user_can( "manage_options" ) ) {
402
+ echo "\n<!-- " . __( "Clicky tracking not shown because you're an administrator and you've configured Clicky to ignore administrators.", 'clicky' ) . " -->\n";
403
  return;
404
  }
405
+
406
 
407
  // Debug
408
+ ?>
409
  <!-- Clicky Web Analytics - http://getclicky.com, WordPress Plugin by Yoast - http://yoast.com/wordpress/clicky/ -->
410
  <?php
411
  // Track commenter name if track_names is true
412
+ if ( $options['track_names'] ) {
413
+ ?>
414
+ <script type='text/javascript'>
415
+ function clicky_gc(name) {
416
+ var ca = document.cookie.split(';');
417
+ for (var i in ca) {
418
+ if (ca[i].indexOf(name + '=') != -1)
419
+ return decodeURIComponent(ca[i].split('=')[1]);
420
+ }
421
+ return '';
422
+ }
423
+ var clicky_custom_session = {
424
+ username:clicky_gc('comment_author_<?php echo md5( get_option( "siteurl" ) ); ?>')
425
+ };
426
  </script>
427
+ <?php
428
  }
429
+
430
  $clicky_extra = '';
431
+
432
  // Goal tracking
433
+ if ( is_singular() ) {
434
  global $post;
435
+ $clicky_goal = get_post_meta( $post->ID, '_clicky_goal', true );
436
+ if ( is_array( $clicky_goal ) && !empty( $clicky_goal['id'] ) ) {
437
+ $clicky_extra .= 'var clicky_goal = { id: "' . trim( $clicky_goal['id'] ) . '"';
438
+ if ( isset( $clicky_goal['value'] ) && !empty( $clicky_goal['value'] ) )
439
+ $clicky_extra .= ', revenue: "' . $clicky_goal['value'] . '"';
440
+ $clicky_extra .= ' };' . "\n";
441
  }
442
  }
443
+
444
  if ( isset( $options['outbound_pattern'] ) && trim( $options['outbound_pattern'] ) != '' ) {
445
  $patterns = explode( ',', $options['outbound_pattern'] );
446
+ $pattern = '';
447
  foreach ( $patterns as $pat ) {
448
  if ( $pattern != '' )
449
  $pattern .= ',';
450
  $pat = trim( str_replace( '"', '', str_replace( "'", "", $pat ) ) );
451
+ $pattern .= "'" . $pat . "'";
452
  }
453
+ $clicky_extra .= 'clicky_custom.outbound_pattern = [' . $pattern . '];' . "\n";
454
  }
455
 
456
  if ( isset( $options['cookies_disable'] ) && $options['cookies_disable'] ) {
458
  }
459
 
460
  if ( !empty( $clicky_extra ) ) {
461
+ ?>
462
+ <script type="text/javascript">
463
+ var clicky_custom = {};
464
+ <?php echo $clicky_extra; ?>
465
+ </script>
466
+ <?php } ?>
467
  <script type="text/javascript">
468
+ var clicky = { log:function () {
469
+ return;
470
+ }, goal:function () {
471
+ return;
472
+ }};
473
  var clicky_site_id = <?php echo $options['site_id']; ?>;
474
+ (function () {
475
  var s = document.createElement('script');
476
+ s.type = 'text/javascript';
477
+ s.async = true;
478
  s.src = '//static.getclicky.com/js';
479
+ ( document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0] ).appendChild(s);
480
  })();
481
  </script>
482
+ <noscript><p><img alt="Clicky" width="1" height="1"
483
+ src="http://in.getclicky.com/<?php echo $options['site_id']; ?>ns.gif"/></p></noscript>
484
  <!-- End Clicky Tracking -->
485
  <?php
486
  }
487
+
488
+ add_action( 'wp_footer', 'clicky_script', 90 );
489
 
490
  function clicky_log( $a ) {
491
  $options = clicky_get_options();
492
 
493
+ if ( !isset( $options['site_id'] ) || empty( $options['site_id'] ) || !isset( $options['admin_site_key'] ) || empty( $options['admin_site_key'] ) )
494
  return;
495
 
496
  $type = $a['type'];
497
+ if ( !in_array( $type, array( "pageview", "download", "outbound", "click", "custom", "goal" ) ) )
498
  $type = "pageview";
499
 
500
+ $file = "http://in.getclicky.com/in.php?site_id=" . $options['site_id'] . "&sitekey_admin=" . $options['admin_site_key'] . "&type=" . $type;
501
 
502
  # referrer and user agent - will only be logged if this is the very first action of this session
503
+ if ( $a['ref'] )
504
+ $file .= "&ref=" . urlencode( $a['ref'] );
505
+
506
+ if ( $a['ua'] )
507
+ $file .= "&ua=" . urlencode( $a['ua'] );
508
 
509
  # we need either a session_id or an ip_address...
510
+ if ( is_numeric( $a['session_id'] ) ) {
511
+ $file .= "&session_id=" . $a['session_id'];
512
  } else {
513
+ if ( !$a['ip_address'] )
514
  $a['ip_address'] = $_SERVER['REMOTE_ADDR']; # automatically grab IP that PHP gives us.
515
+ if ( !preg_match( "#^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$#", $a['ip_address'] ) )
516
  return false;
517
+ $file .= "&ip_address=" . $a['ip_address'];
518
  }
519
 
520
  # goals can come in as integer or array, for convenience
521
+ if ( $a['goal'] ) {
522
+ if ( is_numeric( $a['goal'] ) ) {
523
+ $file .= "&goal[id]=" . $a['goal'];
524
  } else {
525
+ if ( !is_numeric( $a['goal']['id'] ) )
526
  return false;
527
+ foreach ( $a['goal'] as $key => $value )
528
+ $file .= "&goal[" . urlencode( $key ) . "]=" . urlencode( $value );
529
  }
530
  }
531
 
532
  # custom data, must come in as array of key=>values
533
+ foreach ( $a['custom'] as $key => $value )
534
+ $file .= "&custom[" . urlencode( $key ) . "]=" . urlencode( $value );
535
 
536
+ if ( $type == "goal" || $type == "custom" ) {
537
  # dont do anything, data has already been cat'd
538
  } else {
539
+ if ( $type == "outbound" ) {
540
+ if ( !preg_match( "#^(https?|telnet|ftp)#", $a['href'] ) )
541
  return false;
542
  } else {
543
  # all other action types must start with either a / or a #
544
+ if ( !preg_match( "#^(/|\#)#", $a['href'] ) )
545
  $a['href'] = "/" . $a['href'];
546
  }
547
+ $file .= "&href=" . urlencode( $a['href'] );
548
+ if ( $a['title'] )
549
+ $file .= "&title=" . urlencode( $a['title'] );
550
  }
551
+ return wp_remote_get( $file ) ? true : false;
552
  }
553
 
554
+ function clicky_track_comment( $commentID, $comment_status ) {
555
  // Make sure to only track the comment if it's not spam (but do it for moderated comments).
556
+ if ( $comment_status != 'spam' ) {
557
+ $comment = get_comment( $commentID );
558
  // Only do this for normal comments, not for pingbacks or trackbacks
559
+ if ( $comment->comment_type != 'pingback' && $comment->comment_type != 'trackback' ) {
560
+ clicky_log(
561
+ array(
562
+ "type" => "click",
563
+ "href" => "/wp-comments-post.php",
564
+ "title" => __( "Posted a comment", 'clicky' ),
565
+ "ua" => $comment->comment_agent,
566
+ "ip_address" => $comment->comment_author_IP,
567
+ "custom" => array(
568
+ "username" => $comment->comment_author,
569
+ "email" => $comment->comment_author_email,
570
  )
571
+ )
572
  );
573
  }
574
  }
575
  }
576
+
577
+ add_action( 'comment_post', 'clicky_track_comment', 10, 2 );
lang/clicky-bg_BG.mo ADDED
Binary file
lang/clicky-bg_BG.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Bulgarian
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:27:28+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 е почти готов."
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 "Трябва да %1$s въведете Вашият Clicky Site ID, Site Key и Admin site Key%2$s за да работи."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky се нуждае от малко повече информация."
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 въведете Вашият Clicky Database server%2$s за този плъгин, за да може да проследи коментарите."
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 "Краткия Clicky.me URL за тази публикация е"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Пусни Tweet за този пост"
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 "Този пост все още не е публикуван. Ще му бъде създаден кратък URL, в момента в който бъде публикуван. Искате ли да изпратите автоматично Tweet, когато това се случи?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Tweet-ни за тази публикация при публикуването ѝ"
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 "Clicky може да проследи целите за вас, също. %1$Прочете документацията тук%2$s. За да можете да проследите цел в този пост, трябва да посочите ID на целта. Като алтернатива можете да предоставите името на целта."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "ID на цел"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Цена на приходите."
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Статус"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Не може да променяте настройките на Clicky."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Настройките на Clicky бяха обновени."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ 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 "Посетете %1$страницата с проблеми в Clicky%2$s и кликнете на &quot;Предпочитания&quot; под името на домейна, ще откриете ID на сайта, Ключ на сайта, Ключ на администрацията на сайта и сървърът с база данни под информацията за сайта."
84
+
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "ID на сайта"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "Ключ на сайта"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Ключ на администрацията на сайта"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Сървър с база данни"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Настройки на 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 "Този плъгин ви дава възможност да създавате автоматично кратки URL-и чрез %1$sуслугата 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 "и публикувай коментара си в twitter, веднага щом го пуснеш. За да се случи това, този плъгин има нужда от Twitter потребителско име и парола."
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 "Ако използвате плъгин за кеширане, като например WP-Supercache, моля, уверете се, че сте го настроили да НЕ кешира информация за логнатите потребители. В противен случай, действията на администраторите <em>ще бъдат</em> проследявани."
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 "Позволи интеграцията на Clicky.me"
132
+
133
+ #: clicky.php:252
134
+ msgid "Auto Tweet"
135
+ msgstr "Автоматично 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 "Няма нужда да маркирате тази отметка на всяка публикация, чрез тази отметка всичките публикации автоматично се постват в twitter."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Потребителско име в Twitter"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Парола за Twitter"
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 "Clicky.me &amp; интеграция в Twitter"
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Обнови настройките на 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 "Следенето чрез Clicky не се отчита, защото вие сте администратор и сте настроили Clicky да игнорира администраторите."
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 "Дайте му добър рейтинг в WordPress.org."
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 "Последните новини от Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Нямам какво да кажа ..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky за WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Интегрирайте Clicky във вашия блог!"
lang/clicky-bs_BA.mo ADDED
Binary file
lang/clicky-bs_BA.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Bosnian
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:26:54+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%10==1 && n%100!=11 ? 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 je skoro spreman."
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 "Morate %1$s unijeti vaš Clicky ID stranice, ključ stranice i administratorski ključ stranice%2$s da bi sve funkcionisalo."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky treba još informacija."
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 "Morate %1$s upisati vaš Clicky server za bazu podataka%2$s da bi ovaj plugin mogao pratiti komentare."
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 "Clicky.me kratki URL za ovaj članak je"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Tweetaj ovaj članak"
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 "Ovaj članak još nije objavljane, kratki URL će biti kreiran nakon objavljivanja. Da li želite da automatski izvršite i objavljivanje na Twitteru?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Twwetaj članak nakon objavljivanja"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Praćenje ciljeva"
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 za vas može pratiti i ciljeve. %1$sPročitajte dokumentaciju da saznate više o ovome%2$s. Da biste mogli pratiti ciljeve na ovom članku, ovdje morate unijeti ID cilja. Također, možete upisati i konačnu vrijednost za završetak cilja."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "ID cilja"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Prihod cilja"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Statistike"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Ne možete uređivati Clicky postavke."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Clicky postavke su ažurirane."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Konfiguracija"
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 "Otvorite vašu %1$skorisničku Clicky početnu stranicu%2$s i klknite na &quot;Preferences&quot; ispod naziva domene. Tu ćete, u odjeljku za informacije o stranici, pronaći vaš ID stranice, ključ stranice, administratorski ključ stranice i server baze podataka."
84
+
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "ID stranice"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "Ključ stranice"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Administratorski ključ stranice"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Server baze podataka"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Clicky postavke"
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 "Ovaj plugin vam omogućava automatsko kreiranje kratkih URL-ova pomoću %1$sClicky.me servisa%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 tweetanje vaših članaka odmah nakon njihovog objavljivanja. Da biste izvršili aktivaciju tweetanja, ovom pluginu je potrebno vaše Tweeter korisničko ime i šifra."
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Zanemari administratore"
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 "Ako koristite plugine za keširanje, kao naprimjer WP-Supercache, molimo vas da ih konfigurišete da NE VRŠE keširanje za prijavljene korisnike. U suprotnom, <em>i dalje</em> će biti vršeno praćenje administratora."
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Prati imena komentatora"
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Napredne postavke"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Dozvoli Clicky.me integraciju"
132
+
133
+ #: clicky.php:252
134
+ msgid "Auto Tweet"
135
+ msgstr "Automatsko Tweetanje"
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 "Nema potrebe za označavanjem ovog okvira na svakom članku. Nakon jednog označavanja, svaki članak će biti automatski objavljen na Twitteru."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Twitter korisničko ime"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Twitter šifra"
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr "Prefiks za Tweetove"
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 "Ovaj tekst će biti stavljen ispred Tweetova koji će se objavljivati prilikom objavljivanja članaka"
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Clicky.me &amp; Twitter integracija"
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Ažuriraj Clicky postavke"
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 "Clicky praćenje nije prikazano zbog toga što ste vi administrator a odabrali ste opciju da Clicky zanemari administratore."
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "Objavljen komentar"
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr "Postavke"
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr "Zašto ne učinite nešto ili sve od sljedećeg: "
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr "Šaljite linkove kako bi druge osobe saznale o ovom."
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Ocijenite ga dobro na WordPress.org."
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr "Donirajte određenu sumu novca pomoću dugmeta ispod."
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "Sviđa vam se ovaj 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 "Ako imate problema prilikom korištenja ovog plugina ili imate dobre ideje za njegovo poboljšanje, molimo vas da nam to i napišete na"
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Forumima za podršku"
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr "Trebate pomoć?"
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr "Pretplata"
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Najnovije vijesti vezane za Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Ništa novo..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky za WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Integriše Clicky sa vašim blogom!"
lang/clicky-da_DK.mo ADDED
Binary file
lang/clicky-da_DK.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Danish
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:28:30+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 er næsten klar."
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 "Du skal %1$s angive dit Clicky Site ID, Site Key og Admin Site Key%2$s for at få det til at virke."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky behøver lidt mere information."
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 "Du skal %1$s angive din Clicky database server%2$s for at dette plugin kan tracke kommentarer."
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 "Clicky.me kort-URL'en for dette indlæg er"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Tweet dette indlæg"
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 "Dette indlæg er ikke publiseret endnu. Der bliver oprettet en kort-URL så snart indlægget bliver publiseret. Vil du også Tweete indlægget automatisk?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Tweet dette indlæg ved publisering"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Målsporing"
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 kan også tracke dine mål for dig - %1$læs vejledningen her%2$. For at kunne tracke et mål på dette indlæg, skal du indtaste et mål-ID. Du kan også indtaste indtjeningen for målet. "
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "Mål-ID"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Mål indtjening"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Statistik"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Du kan ikke rette Clicky indstillingerne."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Indstillinger for Clicky er opdateret."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Konfiguration"
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 "Åbn din %1$sbruger homepage på Clicky%2$s og klik &quot;Indstillinger&quot; under dit domænenavn. Dit Site ID, din Site Key, Admin Site Key og Database server finder du under Site information."
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 Key"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Admin Site Key"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Database server"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Clicky indstillinger"
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 "Dette plugin giver dig mulighed for at lave automatiske kort-URL'er via %1$sClicky.me servicen%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 "og Tweet dit indlæg samtidig med at du publiserer det. For at gøre det, har plugin'et brug for dit Twitter brugernavn og password."
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Ignorér administratorer "
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 "Hvis du bruger et cache plugin som f.eks. WP-Supercache, så sørg for at det er konfigureret til IKKE at cache brugere, der er logget ind. Ellers vil administratorer <em>stadig</em> blive tracket."
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Gem navne på kommentatorer"
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Avancerede indstillinger"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Tillad Clicky.me integration"
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 "Du behøver ikke at markere en checkbox for hvert indlæg. Ved at markere denne checkbox, bliver hvert indlæg Tweeted automatisk."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Twitter brugernavn"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Twitter password"
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr "Prefix for 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 "Denne tekst vil blive tilføjet foran de Tweets, der bliver sendt når et blogindlæg publiseres "
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Clicky.me & Twitter integration"
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Opdatér Clicky indstillinger"
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 "Clicky tracking bliver ikke vist, fordi du er adminstrator og du har konfigureret Clicky til at ignorere administratorer."
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "Indsendte en kommentar"
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr "Indstillinger"
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr "Hvorfor ikke gøre en eller flere af følgende ting:"
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr "Link til det, så andre også kan finde det."
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Giv det en god anmeldelse på WordPress.org"
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr "Giv en erkendtlighed"
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "Synes du godt om dette 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 "Hvis du har problemer med dette plugin eller gode idéer til forbedringer eller nye funktionaliteter, så skriv om dem på"
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Supportfora"
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr "Brug for hjælp?"
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr "Abonnér"
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Nyheder fra Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Intet at sige..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky til WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Integrerer Clicky på din blog!"
lang/clicky-de_DE.mo ADDED
Binary file
lang/clicky-de_DE.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in German
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:21:07+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 ist fast fertig."
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 "Du musst %1$s für Clicky deine Clicky Site ID, deinen Site Key und deinen Admin Site Key%2$s angeben, damit Clicky funktioniert."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky braucht ein paar mehr Informationen."
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 "Du musst %1$s für Clicky eine Datenbankverbindung%2$s angeben, damit dieses Plugin die Kommentare verfolgen kann."
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 "Der Clicky.me Kurzlink für diesen Beitrag lautet"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Twittere diesen Beitrag"
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 "Dieser Beitrag wurde noch nicht publiziert. Ein Kurzlink wird erzeugt, sobald der Beitrag publiziert wird. Möchtest du auch, dass dieser Beitrag automatisch getwittert wird?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Twittere Beitrag bei Veröffentlichung"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Ziel-Tracking"
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 kann auch Ziele für dich aufzeichnen, %1$ssiehe Dokumentation%2$s.Um ein Ziel für einen Beitrag aufzuzeichnen, musst du hier eine ID für das Ziel festlegen. Optional kannst du auch den Ertrag des Ziels angeben."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "Ziel ID"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Ziel Etrag"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Statistiken"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Du kannst die Clicky Einstellungen nicht bearbeiten."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Die Clicky Einstellungen wurden aktualisiert."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Konfiguration"
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 "Gehe auf deine %1$sClicky Benutzerseite%2$s und klicke auf &quot;Einstellungen&quot;. Unter dem Namen deiner Domain findest du dann bei den Seiteninformationen deine Seiten-ID, deinen Seiten-Schlüssel und deinen Admin-Seiten-Schlüssel sowie Angaben zu deinem Datenbank-Server."
84
+
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "Seiten-ID"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "Seiten-Schlüssel"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Admin-Seiten-Schlüssel"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Datenbank-Server"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Clicky Einstellungen"
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 "Dieses Plugin ermöglicht dir die automatische Erzeugung von Kurzlinks durch den %1$sClicky.me Service%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 "und twittere den Beitrag sofort bei Veröffentlichung. Um das zu tun, benötigt das Plugin deinen Twitter Benutzernamen und Twitter Passwort."
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Ignoriere Administratoren"
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 "Wenn du ein Caching-Plugin verwendest, wie etwa WP-Supercache, dann stelle bitte sicher, dass dieses Plugin NICHT für angemeldete Benutzer cached. Andernfalls werden <em>auch</em> Administratoren aufgezeichnet."
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Zeichne Namen von Kommentatoren auf"
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Erweiterte Einstellungen"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Erlaube Clicky.me Einbindung"
132
+
133
+ #: clicky.php:252
134
+ msgid "Auto Tweet"
135
+ msgstr "Automatische Tweets"
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 "Dieser Kasten muss nicht für jeden Beitrag aktiviert werden, bei einmaliger Aktivierung wird jeder Beitrag automatisch getwittert."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Twitter Benutzername"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Twitter Passwort"
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr "Präfix für Twitter"
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 "Dieser Text wird an Tweets vorangestellt, die bei der Veröffentlichung eines Beitrags getwittert werden."
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Clicky.me &amp; Twitter Einbindung"
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Aktualisiere Clicky Einstellungen"
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 "Die Clicky Aufzeichnungen werden nicht angezeigt, weil du Administrator bist und eingestellt hast, dass Administratoren nicht aufgezeichnet werden."
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "Kommentar geschrieben"
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr "Einstellungen"
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr "Warum nicht etwas (oder alles?) hiervon tun:"
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr "Verlinke es, damit andere etwas darüber erfahren."
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Gebe eine gute Bewertung auf WordPress.org ab."
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr "Spende etwas als Zeichen deiner Anerkennung."
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "Gefällt dir dieses 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 "Wenn du Probleme mit dem Plugin; Verbesserungsvorschläge oder den Wunsch nach weiteren Funktionen hast, dann lass uns darüber sprechen im"
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Support Forum"
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr "Hilfe benötigt?"
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr "Abonnieren"
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Aktuelle News von Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Nichts zu sagen..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky für WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Integriere Clicky auf deinem Blog!"
lang/clicky-el_GR.mo ADDED
Binary file
lang/clicky-el_GR.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Greek
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:20:06+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 είναι σχεδόν έτοιμο."
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 "Πρέπει να %1$s καταχωρήσετε το Clicky Site ID, Site Key και Admin Site Key%2$s σας για να λειτουργήσει."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Το Clicky χρειάζεται κάποιες ακόμα πληροφορίες."
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 καταχωρήσετε τον Clicky Database server%2$s σας για να μπορεί το plugin να ανιχνεύει σχόλια."
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 "Το Clicky.me short URL αυτού του άρθρου είναι"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Κάντε tweet αυτό το άρθρο"
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 "Το άρθρο αυτό δεν έχει δημοσιευτεί ακόμα, ένα short URL θα δημιουργηθεί ταυτόχρονα με την δημοσίευση. Θέλετε να το κάνετε και tweet αυτόματα;"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Κάντε tweet το άρθρο ταυτόχρονα με την δημοσίευση"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Goal Tracking"
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 μπορεί να παρακολουθεί στόχους για σας, %1$sδιαβάστε τις οδηγίες εδω%2$s. Για να μπορεί να παρακολουθεί στόχους πρέπει να του ορίσετε το goal ID εδω. Προαιρετικά μπορείτε να ορίσετε και το goal revenue."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "Goal ID"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Goal Revenue"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Στατιστικά"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Δεν μπορείτε να αλλάξετε τις παραμέτρους του Clicky."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Οι ρυθμίσεις του Clicky ενημερώθηκαν."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ 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 "Πήγαινε στην αρχική σελίδα του χρήστη %1$suser στο Clicky%2$s και κάνε κλικ στο &quot;Preferences&quot; κάτω από το όνομα του domain σου: εκεί θα βρείς τα Site ID, Site Key, Admin Site Key και Database Server κάτω απο την επιλογή Site information."
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 Key"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Admin Site Key"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Database Server"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Παράμετροι 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 "Το plugin αυτό επιτρέπει την αυτόματη δημιουργία short URLs μέσω του %1$sClicky.me service%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 "και αυτόματο tweet ταυτόχρονα με την δημοσίευση του άρθρου. Για να γίνει αυτό, το plugin χρειάζεται το Twitter username και password σας."
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Αγνόησε χρήστες με δικαιώματα 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 "Αν χρησιμοποιείτε κάποιο caching plugin, όπως το WP-Supercache, παρακαλώ φροντίστε να είναι ρυθμισμένο ωστε να ΜΗΝ χρησιμοποιεί την cache για logged in χρήστες. Αλλιώς θα καταχωρούνται <em>και οι</em> admins."
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 "Επέτρεψε την ενσωμάτωση του 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 "Για να μην τσεκάρετε του κουτί σε κάθε άρθρο, τσεκάρετε αυτό του κουτί, και όλα τα άρθρα θα γίνονται tweeted αυτόματα."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Twitter username"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Twitter password"
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr "Prefix για τα 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 "Αυτό το κείμενο θα εμφανίζεται μπροστά στα tweets που θα δημοσιεύονται με την δημοσίευση το κάθε άρθρου."
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Ενσωμάτωση Clicky.me &amp; Twitter "
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Ενημέρωση ρυθμίσεων 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 "Το Clicky tracking δεν εμφανίζεται επειδή είστε administrator, και έχετε ρυθμίσει το Clicky έτσι ώστε να αγνοεί τους administrators."
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 "Δώστε καλή βαθμολογία στο WordPress.org "
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 "Σας αρέσει αυτό το 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 "Αν έχετε κάποιο πρόβλημα με το plugin ή κάποιες καλές ιδέες για την βελτίωση του ή την ενσωμάτωση νέων λειτουργίων παρακαλώ συζητήστε τα στα"
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Support forums"
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 "Τελευταία νέα από το Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Τίποτα..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky για WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Ενσωματώνει το Clicky στο blog σας!"
lang/clicky-es_ES.mo ADDED
Binary file
lang/clicky-es_ES.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Spanish (Spain)
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:19:20+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á casi listo."
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 "Debes %1$s ingresar el ID de tu sitio en Clicky, la Site Key y Admin Site Key%2$s para que funcione."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky necesita más información."
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 "Debes %1$s ingresar tu servidor de base de datos de Clicky%2$s para que este plugin pueda rastrear los comentarios."
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 "La URL corta de Clicky.me para esta entrada es"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Haz tweet en esta entrada"
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 "Esta entrada no está publicada todavía, una URL corta será creada para ella una vez que la entrada esté publicada. ¿También quieres enviarla a Twitter automáticamente?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Tweetear entrada en publicar"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Rastreo del 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 puede rastrear Objetivos para ti, %1$slee la documentación aquí%2$s. Para quepuedas rastrear un objetivo en esta entrada, necesitas especificar la ID del objetivo aquí. Opcionalmente, también puedes proporcionar las ganancias del objetivo."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "ID del Objetivo"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Ganancias del Objetivo"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Estadísticas"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "No puedes editar la configuración de Clicky."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "La configuración de Clicky ha sido actualizada"
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Configuración"
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 "Ve a tu %1$spágina de inicio en Clicky%2$s y haz click en Preferencias con el nombre de dominio, encontrarás el Site ID, Site Key, Admin Site Key y el Servidor de Base de Datos en Información del Sitio."
84
+
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "ID del Sitio"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "Site Key"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Admin Site Key"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Servidor de Base de Datos"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Configuración de 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 te permite crear URL's cortas por medio de el %1$sservicio de 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 "y tweetea tu entrada inmediatamente cuando la publicas. Para hacer eso, este plugin necesitará tu Nombre de Usuario y Contraseña en Twitter."
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Ignorar a los Admin Users"
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 "Si estás usando un plugin de caché, como WP-Supercache, por favor asegúrate de que lo tienes configurado para no usar la caché con los usuarios que han iniciado sesión. De otra forma, los admin users <em>seguirán</em> siendo rastreados."
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Rastrear los nombre de los que comentan"
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Configuración avanzada"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Permitir integración con Clicky.me"
132
+
133
+ #: clicky.php:252
134
+ msgid "Auto Tweet"
135
+ msgstr "Tweetear automáticamente"
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 "No hay necesidad de activar la casilla en cada entrada, activando esta casilla, cada entrada se tweetéa automáticamente"
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Nombre de Usuario en Twitter"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Contraseña de Twitter"
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr "Prefijo para los 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 será puesto antes de los tweets que son publicados cuando una entrada de blog es publicada"
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Clicky.me &amp; Integración con Twitter"
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Actualizar la configuración de 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 "Rastreo de Clicky no es mostrado por que eres un administrador y haz configurado Clicky para ignorar a los administradores."
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "Publicado un comentario"
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr "Configuración"
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr "Por qué no haces algo o todo lo siguiente:"
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr "Enlaza a esto, así otros se enterarán."
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Dale una buena calificación en WordPress.org"
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr "Dona algo como muestra de tu aprecio."
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "¿Te gusta este 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 "Si tienes algún problema(s) con este plugin, ideas para mejorarlo o nuevas funciónes, por favor difunde la palabra en el"
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Foros de soporte"
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr "¿Necesitas ayuda?"
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr "Suscribirse"
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Últimas noticias de Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Nada que decir..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky para WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "¡Esto integra Clicky a tu blog!"
lang/clicky-fa_IR.mo ADDED
Binary file
lang/clicky-fa_IR.po ADDED
@@ -0,0 +1,227 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Persian
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"
9
+ "Plural-Forms: nplurals=1; plural=0;\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 "کلیکی تقریبا آماده است."
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 "شما باید%1$s آی دی کیلیکی سایت ،کلید سایت،کلید مدیریت سایت بزنید %2$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"
31
+ msgstr "توییتر"
32
+
33
+ #: clicky.php:73
34
+ msgid "The Clicky.me short URL for this post is"
35
+ msgstr "آدرس کوتاه Clicky.me برای این پست عبارت است از "
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "توییت این پست"
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 "توییت کردن پست برای اشتراک"
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 "آمار"
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 "تنظیمات کیلیکی به روز شد."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ 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"
87
+ msgstr "آی دی سایت"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "کلید سایت"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "کلید مدیریت سایت"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "سرور پایگاه داده"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "تنظیمات کیلیکی"
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 ".این افزونه به شما اجازه می دهد از طریق %1$sسرویس کلیکی %1$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 "و پست شما را فورا بعد از انتشار توییت می کند.این افزونه به نام کاربری و رمز عبور توییتر نیاز دارد."
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
+ "اگر شما از پلاگین کش استفاده می کنید،همچنین هز WP-Supercache، لطفاً مطمئین شوید که شما آن را تغییر داده اید یا نه برای استفادهاز این آدرس\n"
121
+ "راه دیگر Otherwise, admin users <em>will still</em> تراک شود"
122
+
123
+ #: clicky.php:235
124
+ msgid "Track names of commenters"
125
+ msgstr "پیگیری نام نظر دهندگان"
126
+
127
+ #: clicky.php:240
128
+ msgid "Advanced Settings"
129
+ msgstr "تنظیمات پیشرفته"
130
+
131
+ #: clicky.php:245
132
+ msgid "Allow Clicky.me integration"
133
+ msgstr "اجازه کلیک: افزودن من"
134
+
135
+ #: clicky.php:252
136
+ msgid "Auto Tweet"
137
+ msgstr "توییت اتوماتیک"
138
+
139
+ #: clicky.php:253
140
+ msgid "No need to check the box on each post, by checking this box, each post get's tweeted automatically."
141
+ msgstr "بوسیله ی این جعبه نیازی به چک کردن توئیت هایتان نخواهید داشت و اتومات انجام می شود"
142
+
143
+ #: clicky.php:259
144
+ msgid "Twitter username"
145
+ msgstr "نام کاربری توییتر"
146
+
147
+ #: clicky.php:266
148
+ msgid "Twitter password"
149
+ msgstr "رمز عبور توییتر"
150
+
151
+ #: clicky.php:273
152
+ msgid "Prefix for Tweets"
153
+ msgstr "پیشوند برای توییت ها"
154
+
155
+ #: clicky.php:274
156
+ msgid "This text will be put in front of Tweets that are published when a blog post is published"
157
+ msgstr "این متن نمایش داده خواهد شد در مقابل تویت ها شما هنگامی که یک پست وبلاگ منتشرمی شود"
158
+
159
+ #: clicky.php:278
160
+ msgid "Clicky.me &amp; Twitter Integration"
161
+ msgstr "Clicky.me &amp : ادغام با توئیتر"
162
+
163
+ #: clicky.php:283
164
+ msgid "Update Clicky Settings"
165
+ msgstr "بروز رسانی تنظیمات"
166
+
167
+ #: clicky.php:392
168
+ msgid "Clicky tracking not shown because you're an administrator and you've configured Clicky to ignore administrators."
169
+ msgstr "ردیابی آمار نشان داده شده است دلیل این که شما یک مدیر هستید و شما پیکربندی قالب به چشم پوشی از مدیران است."
170
+
171
+ #: clicky.php:513
172
+ msgid "Posted a comment"
173
+ msgstr "نظری ارسال کرده"
174
+
175
+ #: yst_plugin_tools.php:64
176
+ msgid "Settings"
177
+ msgstr "تنظیمات"
178
+
179
+ #: yst_plugin_tools.php:138
180
+ msgid "Why not do any or all of the following:"
181
+ msgstr "چرا انجام ندهید یا دنبال نکنید"
182
+
183
+ #: yst_plugin_tools.php:140
184
+ msgid "Link to it so other folks can find out about it."
185
+ msgstr "لینکی اضافه کنید تا دیگران آن را پیدا کنند"
186
+
187
+ #: yst_plugin_tools.php:141
188
+ msgid "Give it a good rating on WordPress.org."
189
+ msgstr "بدست آوردن رتبه ی خوب در WordPress.org."
190
+
191
+ #: yst_plugin_tools.php:142
192
+ msgid "Donate a token of your appreciation."
193
+ msgstr "اهدا کنید برای قدردانی خود"
194
+
195
+ #: yst_plugin_tools.php:144
196
+ msgid "Like this plugin?"
197
+ msgstr "این افزونه را دوست دارید؟"
198
+
199
+ #: yst_plugin_tools.php:151
200
+ msgid "If you have any problems with this plugin or good ideas for improvements or new features, please talk about them in the"
201
+ msgstr "اگر شما مسئله ایی با این افزونه دارید (پیشتهاد و انتقاد)چه خوب و چه بد برای پروژه های آینده لطفاً آن را با ما در میان بگذارید"
202
+
203
+ #: yst_plugin_tools.php:151
204
+ msgid "Support forums"
205
+ msgstr "انجمن های پشتیبانی"
206
+
207
+ #: yst_plugin_tools.php:152
208
+ msgid "Need support?"
209
+ msgstr "آیا احتیاج به پشتیبانی دارید؟"
210
+
211
+ #: yst_plugin_tools.php:168
212
+ msgid "Subscribe"
213
+ msgstr "اشتراک"
214
+
215
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
216
+ msgid "Latest news from Clicky"
217
+ msgstr "آخرین اخبار از کلیکی"
218
+
219
+ #: yst_plugin_tools.php:171
220
+ msgid "Nothing to say..."
221
+ msgstr "چیزی برای گفتن نیست..."
222
+
223
+ msgid "Clicky for WordPress"
224
+ msgstr "کلیکی برای وردپرس"
225
+
226
+ msgid "Integrates Clicky on your blog!"
227
+ msgstr "کلیکی در وبلاگ شما"
lang/clicky-fr_FR.mo CHANGED
Binary file
lang/clicky-fr_FR.po CHANGED
@@ -1,208 +1,216 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Clicky WordPress Plugin 1.0.4\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/clicky\n"
5
- "POT-Creation-Date: 2009-11-03 10:13+0000\n"
6
- "PO-Revision-Date: 2009-11-05 11:23-0000\n"
7
- "Last-Translator: Léo Ludwig <blog@referenceurfreelance.com>\n"
8
- "Language-Team: Léo Ludwig <blog@referenceurfreelance.com>\n"
9
  "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Français\n"
13
- "X-Poedit-Country: FRANCE\n"
 
14
 
15
  #: clicky.php:37
16
  msgid "Clicky is almost ready. "
17
- msgstr "Clicky est presque prêt. "
18
 
19
  #: clicky.php:39
20
- #, php-format
21
  msgid "You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s for it to work."
22
- msgstr "Veuillez saisir votre %1$s Site ID, Site Key and Admin Site Key%2$s pour compléter l'installation."
23
 
24
- #: clicky.php:60
25
- #: clicky.php:68
 
 
 
 
 
 
 
26
  msgid "Twitter"
27
  msgstr "Twitter"
28
 
29
- #: clicky.php:62
30
  msgid "The Clicky.me short URL for this post is"
31
- msgstr "L'URL raccourcie Clicky.me pour ce billet est "
32
 
33
- #: clicky.php:64
34
  msgid "Tweet this post"
35
- msgstr "Twittez ce billet"
36
 
37
- #: clicky.php:70
38
  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?"
39
- msgstr "Ce billet n'est pas encore publié, une URL raccourcie sera créé après sa publication. Souhaitez-vous également qu'il soit Twitté automatiquement ?"
40
 
41
- #: clicky.php:72
42
  msgid "Tweet post on publish"
43
- msgstr "Twitter ce billet lors de sa publication"
44
 
45
- #: clicky.php:77
46
  msgid "Goal Tracking"
47
- msgstr "Suivi d'Objectif / Goal Tracking"
48
 
49
- #: clicky.php:79
50
- #, php-format
51
  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."
52
- msgstr "Clicky peut suivre des objectifs (goals) pour vous, %1$slire la documentation ici%2$s. Pour pouvoir suivre les objectifs sur ce billet, veuillez préciser l'ID de cet objectif (Goal ID) ici. Vous pouvez aussi renseigner la valeur de l'objectif (Goal Revenue)."
53
 
54
- #: clicky.php:82
55
  msgid "Goal ID"
56
- msgstr "ID de l'Objectif / Goal ID"
57
 
58
- #: clicky.php:83
59
  msgid "Goal Revenue"
60
- msgstr "Valeur de l'Objectif / Goal Revenue"
61
 
62
- #: clicky.php:123
63
  msgid "Stats"
64
  msgstr "Statistiques"
65
 
66
- #: clicky.php:138
67
  msgid "You cannot edit the Clicky settings."
68
- msgstr "Vous ne pouvez pas éditer les paramètres de Clicky."
69
 
70
- #: clicky.php:157
71
  msgid "Clicky settings have been updated."
72
- msgstr "Les paramètres de Clicky ont été mis à jour."
73
 
74
- #: clicky.php:170
75
  msgid "Configuration"
76
  msgstr "Configuration"
77
 
78
- #: clicky.php:183
79
- msgid "Site ID"
80
- msgstr "ID du Site / Site ID"
81
 
82
- #: clicky.php:184
83
- #, php-format
84
- 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 and Admin Site Key under Site information."
85
- msgstr "Rendez-vous sur %1$svotre profil utilisateur Clicky%2$s et cliquez sur &quot;Preferences&quot; sous l'adresse de votre site. C'est là que vous trouverez les informations relatives au Site ID, Site Key and Admin Site Key."
86
 
87
- #: clicky.php:190
88
  msgid "Site Key"
89
- msgstr "Clé du Site / Site Key"
90
 
91
- #: clicky.php:197
92
  msgid "Admin Site Key"
93
- msgstr "Clé Admin du Site / Admin Site Key"
94
 
95
- #: clicky.php:203
 
 
 
 
96
  msgid "Clicky Settings"
97
- msgstr "Paramètres Clicky"
98
 
99
- #: clicky.php:205
100
- #, php-format
101
  msgid "This plugin allows you to automatically create short URLs through the %1$sClicky.me service%2$s"
102
- msgstr "Ce plug-in permet de créer automatiquement des URL raccourcies grâce au %1$sservice Clicky.me%2$s"
103
 
104
- #: clicky.php:205
105
  msgid "and tweet your post immediately when you publish it. To do that, this plugin will need your Twitter username and pass."
106
- msgstr "et tweet votre billet immédiatement après sa publication. Mais pour cela, il a besoin des détails de connexion de votre compte Twitter."
107
 
108
- #: clicky.php:210
109
  msgid "Ignore Admin users"
110
- msgstr "Ignorer les Administrateurs"
111
 
112
- #: clicky.php:211
113
  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."
114
- msgstr "Si vous utilisez un plug-in de cache, par exemple WP-Supercache, veuillez vous assurer qu'il soit configuré pour NE PAS utiliser le cache pour les utilisateurs connectés. Sinon, les administrateurs <em>seront comptabilisés</em> dans les statistiques."
115
 
116
- #: clicky.php:217
117
  msgid "Track names of commenters"
118
- msgstr "Suivre les noms des commentateurs"
119
 
120
- #: clicky.php:222
121
  msgid "Advanced Settings"
122
- msgstr "Paramètres Avancés"
123
 
124
- #: clicky.php:227
125
  msgid "Allow Clicky.me integration"
126
- msgstr "Activer l'intégration avec Clicky.me"
127
 
128
- #: clicky.php:234
129
  msgid "Auto Tweet"
130
- msgstr "Tweet Automatique"
131
 
132
- #: clicky.php:235
133
  msgid "No need to check the box on each post, by checking this box, each post get's tweeted automatically."
134
- msgstr "Il n'est pas nécessaire de cocher la case sur tous les billets, en cochant celle-ci, chaque billet sera automatiquement twitté."
135
 
136
- #: clicky.php:241
137
  msgid "Twitter username"
138
- msgstr "Twitter : nom du compte"
139
 
140
- #: clicky.php:248
141
  msgid "Twitter password"
142
- msgstr "Twitter : mot de passe"
143
 
144
- #: clicky.php:255
145
  msgid "Prefix for Tweets"
146
- msgstr "Faire précéder mes Tweets de "
147
 
148
- #: clicky.php:256
149
  msgid "This text will be put in front of Tweets that are published when a blog post is published"
150
- msgstr "Ce texte précédera les Tweets envoyés lorsque votre billet sera publié"
151
 
152
- #: clicky.php:260
153
  msgid "Clicky.me &amp; Twitter Integration"
154
- msgstr "Integration Clicky.me &amp; Twitter"
155
 
156
- #: clicky.php:265
157
  msgid "Update Clicky Settings"
158
- msgstr "Enregistrer les paramètres Clicky"
159
 
160
- #: clicky.php:373
161
  msgid "Clicky tracking not shown because you're an administrator and you've configured Clicky to ignore administrators."
162
- msgstr "Le code de suivi Clicky n'apparaît pas parce que vous êtes un administrateur et que vous avez configuré Clicky pour qu'il n'enregistre pas les visites des administrateurs"
 
 
 
 
163
 
164
  #: yst_plugin_tools.php:64
165
  msgid "Settings"
166
- msgstr "Paramètres"
167
 
168
  #: yst_plugin_tools.php:138
169
  msgid "Why not do any or all of the following:"
170
- msgstr "Choisissez de faire une ou toutes des actions suivantes :"
171
 
172
  #: yst_plugin_tools.php:140
173
  msgid "Link to it so other folks can find out about it."
174
- msgstr "Créer un lien pour informer vos visiteurs."
175
 
176
  #: yst_plugin_tools.php:141
177
  msgid "Give it a good rating on WordPress.org."
178
- msgstr "Donner une bonne note sur WordPress.org."
179
 
180
  #: yst_plugin_tools.php:142
181
  msgid "Donate a token of your appreciation."
182
- msgstr "Montrer un signe de votre appréciation."
183
 
184
  #: yst_plugin_tools.php:144
185
  msgid "Like this plugin?"
186
- msgstr "Vous aimez ce plug-in ?"
187
 
188
  #: yst_plugin_tools.php:151
189
  msgid "If you have any problems with this plugin or good ideas for improvements or new features, please talk about them in the"
190
- msgstr "Si vous avez le moindre problème avec ce plug-in, ou si vous avez des idées d'améliorations ou de nouvelles fonctionnalités, faites-nous en part sur le "
191
 
192
  #: yst_plugin_tools.php:151
193
  msgid "Support forums"
194
- msgstr "Forum de Support"
195
 
196
  #: yst_plugin_tools.php:152
197
  msgid "Need support?"
198
- msgstr "Vous avez besoin de d'aide ?"
199
 
200
  #: yst_plugin_tools.php:168
201
  msgid "Subscribe"
202
- msgstr "Vous abonnez"
203
 
204
- #: yst_plugin_tools.php:169
205
- #: yst_plugin_tools.php:171
206
  msgid "Latest news from Clicky"
207
  msgstr "Les dernières nouvelles de Clicky"
208
 
@@ -210,23 +218,8 @@ msgstr "Les dernières nouvelles de Clicky"
210
  msgid "Nothing to say..."
211
  msgstr "Rien à dire..."
212
 
213
- #. Plugin Name of an extension
214
  msgid "Clicky for WordPress"
215
  msgstr "Clicky pour WordPress"
216
 
217
- #. Plugin URI of an extension
218
- msgid "http://getclicky.com/goodies/#wordpress"
219
- msgstr "http://getclicky.com/goodies/#wordpress"
220
-
221
- #. Description of an extension
222
  msgid "Integrates Clicky on your blog!"
223
- msgstr "Intégrer Clicky à votre blog !"
224
-
225
- #. Author of an extension
226
- msgid "Joost de Valk"
227
- msgstr "Joost de Valk"
228
-
229
- #. Author URI of an extension
230
- msgid "http://yoast.com/"
231
- msgstr "http://yoast.com/"
232
-
1
+ # Translation of Clicky WordPress plugin in French (France)
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:25:44+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 presque prêt."
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 "Vous devez %1$s entrer votre ID du site Clicky, la clé du site et la clé d'administration%2$s pour que l'extension fonctionne."
20
 
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "L'extension Clicky a besoin d'un peu plus d'informations."
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 "Vous devez %1$s entrer vos informations de base de données Clicky%2$s pour que cette extension puisse suivre les commentaires."
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 "Le lien URL raccourci Clicky.me pour cet article est "
36
 
37
+ #: clicky.php:75
38
  msgid "Tweet this post"
39
+ msgstr "Tweeter cet article"
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 "Cet article n'est pas encore publié. Un lien URL raccourci sera créé une fois que l'article sera publié. Voulez-vous également qu'il soit tweeté automatiquement ?"
44
 
45
+ #: clicky.php:83
46
  msgid "Tweet post on publish"
47
+ msgstr "Tweeter l'article dès sa publication"
48
 
49
+ #: clicky.php:88
50
  msgid "Goal Tracking"
51
+ msgstr "Suivi des objectifs"
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 peut aussi faire pour vous le suivi de vos objectifs, %1$slisez la documentation pour en savoir plus%2$s. Pour être en mesure de suivre un objectif pour cet article, vous devez spécifier l' ID de l'objectif ici. Optionnellement, vous pouvez aussi ajouter l'objectif de revenue."
56
 
57
+ #: clicky.php:93
58
  msgid "Goal ID"
59
+ msgstr "ID de l'objectif"
60
 
61
+ #: clicky.php:94
62
  msgid "Goal Revenue"
63
+ msgstr "Revenu de l'objectif"
64
 
65
+ #: clicky.php:134
66
  msgid "Stats"
67
  msgstr "Statistiques"
68
 
69
+ #: clicky.php:149
70
  msgid "You cannot edit the Clicky settings."
71
+ msgstr "Vous ne pouvez pas modifier les réglages de Clicky."
72
 
73
+ #: clicky.php:168
74
  msgid "Clicky settings have been updated."
75
+ msgstr "Les réglages de Clicky ont été mis à jour."
76
 
77
+ #: clicky.php:181
78
  msgid "Configuration"
79
  msgstr "Configuration"
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 "Allez sur votre %1$spage d'accueil utilisateur du site Clicky%2$s et cliquez sur &quot;Préférences&quot; sous le nom de domaine, vous y trouverez l'ID du site, sa clé, sa clé d'administration et les informations du serveur sous la section Information."
84
 
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "ID du site"
 
88
 
89
+ #: clicky.php:201
90
  msgid "Site Key"
91
+ msgstr "Clé du site"
92
 
93
+ #: clicky.php:208
94
  msgid "Admin Site Key"
95
+ msgstr "Clé du site de l'administrateur"
96
 
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Serveur de la base de données"
100
+
101
+ #: clicky.php:221
102
  msgid "Clicky Settings"
103
+ msgstr "Réglages de 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 "Cette extension vous permet de créer automatiquement des liens URL raccourcis par le biais du %1$sservice 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 "et de tweeter votre article immédiatement quand vous le publier. Pour cela, l'extension a besoin de votre nom d'utilisateur et de votre mot de passe Twitter."
112
 
113
+ #: clicky.php:228
114
  msgid "Ignore Admin users"
115
+ msgstr "Ignorer les utilisateurs Administrateurs"
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 "Si vous utilisez une extension de cache, comme WP-SuperCache, assurez-vous que vous l'avez configuré afin de ne pas utiliser le cache pour les utilisateurs connectés. Sinon, les administrateurs <em>vont encore</em> être suivis."
120
 
121
+ #: clicky.php:235
122
  msgid "Track names of commenters"
123
+ msgstr "Faire le suivi des noms des commentateurs "
124
 
125
+ #: clicky.php:240
126
  msgid "Advanced Settings"
127
+ msgstr "Paramètres avancés"
128
 
129
+ #: clicky.php:245
130
  msgid "Allow Clicky.me integration"
131
+ msgstr "Permettre l'intégration de Clicky.me"
132
 
133
+ #: clicky.php:252
134
  msgid "Auto Tweet"
135
+ msgstr "Tweeter automatiquement"
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 "En cochant cette case, vous n'aurez pas besoin de cocher la case sur chaque article, puisque chaque nouvel article sera tweeté automatiquement."
140
 
141
+ #: clicky.php:259
142
  msgid "Twitter username"
143
+ msgstr "Nom d'utilisateur Twitter"
144
 
145
+ #: clicky.php:266
146
  msgid "Twitter password"
147
+ msgstr "Mot de passe Twitter"
148
 
149
+ #: clicky.php:273
150
  msgid "Prefix for Tweets"
151
+ msgstr "Préfixe pour les 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 "Ce texte va être ajouté avant les tweets qui sont partagés quand un nouvel article est publié"
156
 
157
+ #: clicky.php:278
158
  msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Clicky.me &amp; l'intégration Twitter"
160
 
161
+ #: clicky.php:283
162
  msgid "Update Clicky Settings"
163
+ msgstr "Mettre à jour les paramètres 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 "Le suivi Clicky ne peut être affiché parce que vous êtes un administrateur et vous avez configuré Clicky pour ignorer les administrateurs."
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "Publié un commentaire"
172
 
173
  #: yst_plugin_tools.php:64
174
  msgid "Settings"
175
+ msgstr "Réglages"
176
 
177
  #: yst_plugin_tools.php:138
178
  msgid "Why not do any or all of the following:"
179
+ msgstr "Pourquoi ne pas essayer de :"
180
 
181
  #: yst_plugin_tools.php:140
182
  msgid "Link to it so other folks can find out about it."
183
+ msgstr "Faites un lien vers cette extension afin que d'autres puissent la découvrir."
184
 
185
  #: yst_plugin_tools.php:141
186
  msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Donnez-lui une bonne évaluation sur WordPress.org."
188
 
189
  #: yst_plugin_tools.php:142
190
  msgid "Donate a token of your appreciation."
191
+ msgstr "Donnez en gage de votre appréciation."
192
 
193
  #: yst_plugin_tools.php:144
194
  msgid "Like this plugin?"
195
+ msgstr "Vous aimez cette extension ?"
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 "Si vous avez des problèmes avec cette extension, ou vous avez des idées pour l'améliorer, vous pouvez en discuter dans le "
200
 
201
  #: yst_plugin_tools.php:151
202
  msgid "Support forums"
203
+ msgstr "Forums d'aide (en anglais)"
204
 
205
  #: yst_plugin_tools.php:152
206
  msgid "Need support?"
207
+ msgstr "Besoin d'aide ?"
208
 
209
  #: yst_plugin_tools.php:168
210
  msgid "Subscribe"
211
+ msgstr "Abonnez-vous"
212
 
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
 
214
  msgid "Latest news from Clicky"
215
  msgstr "Les dernières nouvelles de Clicky"
216
 
218
  msgid "Nothing to say..."
219
  msgstr "Rien à dire..."
220
 
 
221
  msgid "Clicky for WordPress"
222
  msgstr "Clicky pour WordPress"
223
 
 
 
 
 
 
224
  msgid "Integrates Clicky on your blog!"
225
+ msgstr "Intégrer Clicky à votre blog !"
 
 
 
 
 
 
 
 
 
lang/clicky-id_ID.mo ADDED
Binary file
lang/clicky-id_ID.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Indonesian
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:22:37+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 hampir siap."
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 "Agar dapat bekerja, Anda harus %1$s memasukkan ID Clicky Site, Site Key dan Admin Site Key%2$s."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky membutuhkan informasi lebih."
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 "Anda harus %1$s memasukkan server%2$s Clicky Database ke plugin ini agar dapat melacak komentar."
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 "URL pendek Clicky.me untuk posting ini"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Tweet post ini"
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 "Postingan ini belum dipublikasikan, URL pendek akan dibuat setelah dipublikasikan. Apakah Anda ingin ini di tweet secara otomatis juga?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Posting Tweet di publikasikan"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Tujuan Pelacakan"
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 dapat melacak Tujuan untuk Anda juga,%1$sbaca dokumentasi disini%2$s. Untuk dapat melacak tujuan pada posting ini, Anda perlu menentukan ID tujuan disini. Opsional, Anda juga dapat memberikan pendapatan tujuan."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "ID Tujuan"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Pendapatan Tujuan"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Statistik"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Anda tidak dapat mengedit pengaturan Clicky."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Pengaturan Clicky telah diperbarui."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Konfigurasi"
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 "Masuk ke %1$suser Halaman Utama anda di Clicky%2$s dan klik &quot;Preferences&quot; di bawah nama domain, Anda akan menemukan ID Site, Site Key, Admin Site Key dan Database Server dibawah informasi Situs."
84
+
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "ID Site"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "Site Key"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Admin Site Key"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Database Server"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Pengaturan 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 "Plugin ini mengijinkan Anda untuk secara otomatis membuat URL singkat melalui %1$sClicky.me service%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 "dan tweet posting Anda segera ketika Anda mempublikasikannya. Untuk melakukannya, plugin ini membutuhkan username dan pasword Twitter Anda."
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Abaikan Admin pengguna"
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 "Jika Anda menggunakan plugin caching, seperti WP-Supercache, pastikan bahwa Anda telah mengkonfigurasi untuk TIDAK menggunakan cache untuk login pengguna. Jika tidak, admin pengguna <em>masih bisa</em> dilacak."
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Melacak nama komentator"
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Pengaturan Lanjutan"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Mengijinkan integrasi 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 "Tidak perlu mencentang kotak pada setiap posting, dengan mencentang kotak ini, setiap posting di tweet secara otomatis."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Username 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 "Awalan untuk 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 "Teks ini akan diletakkan di depan Tweets yang dipublikasikan ketika postingan blog ini dipublikasikan."
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Integrasi Clicky.me &amp; Twitter"
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Perbarui Pengaturan 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 "Pelacakan Clicky tidak ditampilkan karena Anda adalah administrator dan Anda telah mengkonfigurasi Clicky untuk mengabaikan administrator."
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "Memposting komentar"
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr "Pengaturan"
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr "Mengapa tidak melakukan salah satu atau semua hal berikut:"
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr "Tautkan sehingga orang lain dapat mencari tahu."
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Berikan rating yang baik di Wordpress.org"
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr "Donasi tanda penghargaan Anda."
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "Suka plugin ini?"
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 "Jika Anda memiliki masalah dengan plugin ini atau punya ide bagus untuk perbaikan atau fitur baru, silakan menyampaikannya di"
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Support forum"
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr "Butuh dukungan?"
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr "Berlangganan"
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Kabar terbaru dari Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Tidak berkata apapun..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky untuk WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Mengintegrasikan Clicky di blog Anda!"
lang/clicky-it_IT.mo ADDED
Binary file
lang/clicky-it_IT.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Italian
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:23:48+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 è quasi 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 "Devi %1$s inserire il tuo Clicky Site ID, Site Key e Admin Site Key%2$s perchè funzioni."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky ha bisogno di qualche informazione in più."
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 "Devi %1$s inserire il tuo Clicky Database server%2$s per fare in modo che il plugin tracci i commenti."
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 "La URL accorciata da Clicky.me per questo post è"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Twitta questo 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 "Questo post non è ancora pubblicato, una URL accorciata verrà creata una volta che sarà pubblicato. Vuoi che venga anche twittato automaticamente?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Twitta il post alla pubblicazione"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Tracciamento dell'Obiettivo"
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 può anche tracciare gli obiettivi per te, %1$sleggi la documentazione qui%2$s. Per poter tracciare un obiettivo in questo post, devi specificare qui l'ID dell'Obiettivo.Se vuoi, puoi anche inserire il valore dell'obiettivo."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "ID dell' Obiettivo"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Valore dell'Obiettivo"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Statistiche"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Non puoi modificare le impostazioni di Clicky."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Le impostazioni di Clicky sono state aggiornate."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Configurazione"
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 "Vai alla tua %1$shomepage su Clicky%2$s e clicca &quot;Preferences&quot; sotto il nome del dominio, troverai il Site ID, SIte Key, Admin Site Key e Database Server sotto \"Site information\"."
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 Key"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Admin SIte Key"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Database Server"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Clicky Settings"
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 "Questo plugin ti permette di creare automaticamente le URL brevi usando il %1$sservizio 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 twitta il tuo post immediatamente quanto lo pubblica. Per fare questo, il plugin necessita del tuo username e password si Twitter"
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Ignora gli utenti 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 stai usando un plugin per la gestione della cache, come WP-Supercache, assicurati che sia configurato per NON usare la cache per gli utenti loggati. Altrimenti, gli admin<em> saranno sempre</em> tracciati."
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Traccia il nome di chi commenta"
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Advanced Settings"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Permetti l'integrazione con 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 "Non c'è bisogno di spuntare il box in ogni post, ogni post viene twittato automaticamente."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Twitter Username"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Twitter Password"
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr "Prefisso per i Tweet"
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 "Questo testo verrà inserito all'inizio dei Tweet che sono creati quanto un post del blog viene pubblicato."
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Integrazione tra Clicky.me e Twitter"
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Aggiorna le impostazioni di 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 "Il tracciamento di Clicky non viene visualizzato perchè tu sei un amministratore e hai configurato Clicky per non tracciare gli amministratori."
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "E' stato postato un commento."
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr "Impostazioni"
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr "Perchè non fare una o tutte le cose seguenti:"
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr "Fai un link verso di lui così altre persone possano trovarlo."
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Dagli un buon punteggio su WordPress.org."
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr "Dona un token per il tuo apprezzamento."
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "Piaciuto questo 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 "Se avessi qualche problema con questo plugin o idee per migliorarlo o nuove funzionalità, per favore scrivilo nel"
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Forum di Supporto"
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr "Bisogno di aiuto?"
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr "Sottoscrivi"
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Le ultime notizie da Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Nulla da dire..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky per WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Integra Clicky nel tuo blog!"
lang/clicky-nl_NL.mo CHANGED
Binary file
lang/clicky-nl_NL.po CHANGED
@@ -1,64 +1,58 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Clicky WordPress Plugin 1.0.3\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/clicky\n"
5
- "POT-Creation-Date: 2009-11-14 21:50+0000\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Joost de Valk <joost@yoast.com>\n"
8
- "Language-Team: Joost de Valk <joost@yoast.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Dutch\n"
13
- "X-Poedit-Country: NETHERLANDS\n"
 
14
 
15
  #: clicky.php:37
16
  msgid "Clicky is almost ready. "
17
- msgstr "Clicky is bijna klaar."
18
 
19
  #: clicky.php:39
20
- #, php-format
21
  msgid "You must %1$s enter your Clicky Site ID, Site Key and Admin Site Key%2$s for it to work."
22
- msgstr "Je moet %1$s je Clicky Site ID, Site Key en Admin Site Key invullen%2$s voor het werkt."
23
 
24
  #: clicky.php:48
25
  msgid "Clicky needs a bit more info. "
26
- msgstr "Clicky heeft nog een beetje info nodig."
27
 
28
  #: clicky.php:50
29
- #, php-format
30
  msgid "You must %1$s enter your Clicky Database server%2$s for this plugin to be able to track comments."
31
- msgstr "Je moet %1$s je Clicky Database Server invullen%2$s voor de plugin comments als actie kan tracken."
32
 
33
- #: clicky.php:71
34
- #: clicky.php:79
35
  msgid "Twitter"
36
  msgstr "Twitter"
37
 
38
  #: clicky.php:73
39
  msgid "The Clicky.me short URL for this post is"
40
- msgstr "De Clicky.me short URL voor deze post is"
41
 
42
  #: clicky.php:75
43
  msgid "Tweet this post"
44
- msgstr "Tweet deze post"
45
 
46
  #: clicky.php:81
47
  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?"
48
- msgstr "Deze post is nog niet gepubliceerd, zodra hij gepubliceerd is wordt er een short URL gemaakt. Wil je dat de post ook automatisch getweet wordt?"
49
 
50
  #: clicky.php:83
51
  msgid "Tweet post on publish"
52
- msgstr "Tweet deze post na publicatie"
53
 
54
  #: clicky.php:88
55
  msgid "Goal Tracking"
56
- msgstr "Doel tracking"
57
 
58
  #: clicky.php:90
59
- #, php-format
60
  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."
61
- msgstr "Clicky kan ook Doelen voor je tracken, %1$slees de documentatie hier%2$s. Om in deze post Doelen te kunnen tracken moet je hier een Doel ID specificeren. Eventueel kun je ook de doel waarde opgeven."
62
 
63
  #: clicky.php:93
64
  msgid "Goal ID"
@@ -66,85 +60,83 @@ msgstr "Doel ID"
66
 
67
  #: clicky.php:94
68
  msgid "Goal Revenue"
69
- msgstr "Doel Opbrengst"
70
 
71
  #: clicky.php:134
72
  msgid "Stats"
73
- msgstr "Stats"
74
 
75
  #: clicky.php:149
76
  msgid "You cannot edit the Clicky settings."
77
- msgstr "Je kunt de Clicky instellingen niet editen."
78
 
79
  #: clicky.php:168
80
  msgid "Clicky settings have been updated."
81
- msgstr "De instellingen van Clicky zijn ge&uuml;pdatet."
82
 
83
  #: clicky.php:181
84
  msgid "Configuration"
85
  msgstr "Configuratie"
86
 
87
  #: clicky.php:189
88
- #, php-format
89
  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."
90
- msgstr "Ga naar je %1$suser homepage bij Clicky%2$s en click &quot;Preferences&quot; onder de naam van het domein. Daar vind je je Site ID, Site Key, Admin Site Key en Database Server terug onder Site Informatie."
91
 
92
  #: clicky.php:194
93
  msgid "Site ID"
94
- msgstr "Site ID"
95
 
96
  #: clicky.php:201
97
  msgid "Site Key"
98
- msgstr "Site Key"
99
 
100
  #: clicky.php:208
101
  msgid "Admin Site Key"
102
- msgstr "Admin Site Key"
103
 
104
  #: clicky.php:215
105
  msgid "Database Server"
106
- msgstr "Database Server"
107
 
108
  #: clicky.php:221
109
  msgid "Clicky Settings"
110
- msgstr "Clicky Instellingen"
111
 
112
  #: clicky.php:223
113
- #, php-format
114
  msgid "This plugin allows you to automatically create short URLs through the %1$sClicky.me service%2$s"
115
- msgstr "Deze plugin staat je toe om automatisch Short URL's te cre&euml;ren door de %1$sClicky.me service%2$s"
116
 
117
  #: clicky.php:223
118
  msgid "and tweet your post immediately when you publish it. To do that, this plugin will need your Twitter username and pass."
119
- msgstr "en tweet je post onmiddellijk na het publiceren. Om dat te doen heeft deze plugin je Twitter gebruikersnaam en wachtwoord nodig."
120
 
121
  #: clicky.php:228
122
  msgid "Ignore Admin users"
123
- msgstr "Negeer Site beheerders"
124
 
125
  #: clicky.php:229
126
  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."
127
- msgstr "Als je een caching plugin gebruikt, zoals WP-Supercache, verifieer dan aub of deze geconfigureerd is om pagina's NIET te cachen for gebruikers die ingelogd zijn. Anders worden beheerders nog steeds getracked."
128
 
129
  #: clicky.php:235
130
  msgid "Track names of commenters"
131
- msgstr "Track namen van commenters"
132
 
133
  #: clicky.php:240
134
  msgid "Advanced Settings"
135
- msgstr "Geavanceerde Instellingen"
136
 
137
  #: clicky.php:245
138
  msgid "Allow Clicky.me integration"
139
- msgstr "Integreer Clicky.me"
140
 
141
  #: clicky.php:252
142
  msgid "Auto Tweet"
143
- msgstr "Automatisch Tweeten"
144
 
145
  #: clicky.php:253
146
  msgid "No need to check the box on each post, by checking this box, each post get's tweeted automatically."
147
- msgstr "Het is niet meer nodig om bij elke post de checkbox aan te vinken. Als je deze box aan vinkt wordt iedere post automatisch getweet."
148
 
149
  #: clicky.php:259
150
  msgid "Twitter username"
@@ -160,23 +152,23 @@ msgstr "Voorvoegsel voor Tweets"
160
 
161
  #: clicky.php:274
162
  msgid "This text will be put in front of Tweets that are published when a blog post is published"
163
- msgstr "Deze tekst wordt voor Tweets geplaatst die worden gepubliceerd als u een nieuwe blog post publiceert"
164
 
165
  #: clicky.php:278
166
  msgid "Clicky.me &amp; Twitter Integration"
167
- msgstr "Clicky.me &amp; Twitter Integratie"
168
 
169
  #: clicky.php:283
170
  msgid "Update Clicky Settings"
171
- msgstr "Update Clicky Instellingen"
172
 
173
  #: clicky.php:392
174
  msgid "Clicky tracking not shown because you're an administrator and you've configured Clicky to ignore administrators."
175
- msgstr "Clicky tracking niet getoond omdat je een beheerder bent en je Clicky ingesteld hebt om beheerders niet te tracken."
176
 
177
  #: clicky.php:513
178
  msgid "Posted a comment"
179
- msgstr "Heeft een reactie geplaatst"
180
 
181
  #: yst_plugin_tools.php:64
182
  msgid "Settings"
@@ -184,27 +176,27 @@ msgstr "Instellingen"
184
 
185
  #: yst_plugin_tools.php:138
186
  msgid "Why not do any or all of the following:"
187
- msgstr "Waarom doe je niet een van de volgende zaken:"
188
 
189
  #: yst_plugin_tools.php:140
190
  msgid "Link to it so other folks can find out about it."
191
- msgstr "Link er naar zodat andere mensen hem kunnen vinden."
192
 
193
  #: yst_plugin_tools.php:141
194
  msgid "Give it a good rating on WordPress.org."
195
- msgstr "Geef het een goede rating op WordPress.org"
196
 
197
  #: yst_plugin_tools.php:142
198
  msgid "Donate a token of your appreciation."
199
- msgstr "Doneer een teken van uw appreciatie."
200
 
201
  #: yst_plugin_tools.php:144
202
  msgid "Like this plugin?"
203
- msgstr "Vind je deze plugin goed?"
204
 
205
  #: yst_plugin_tools.php:151
206
  msgid "If you have any problems with this plugin or good ideas for improvements or new features, please talk about them in the"
207
- msgstr "Als je problemen hebt met deze plugin, of idee&euml;n hebt voor hoe je die kunt verbeteren, praat er dan ajb over in de"
208
 
209
  #: yst_plugin_tools.php:151
210
  msgid "Support forums"
@@ -212,38 +204,22 @@ msgstr "Support forums"
212
 
213
  #: yst_plugin_tools.php:152
214
  msgid "Need support?"
215
- msgstr "Heb je hulp nodig?"
216
 
217
  #: yst_plugin_tools.php:168
218
  msgid "Subscribe"
219
- msgstr "Abonneer"
220
 
221
- #: yst_plugin_tools.php:169
222
- #: yst_plugin_tools.php:171
223
  msgid "Latest news from Clicky"
224
- msgstr "Het laatste nieuws van Clicky"
225
 
226
  #: yst_plugin_tools.php:171
227
  msgid "Nothing to say..."
228
- msgstr "We hebben niks te zeggen"
229
 
230
- #. Plugin Name of an extension
231
  msgid "Clicky for WordPress"
232
  msgstr "Clicky voor WordPress"
233
 
234
- #. Plugin URI of an extension
235
- msgid "http://getclicky.com/goodies/#wordpress"
236
- msgstr "http://getclicky.com/goodies/#wordpress"
237
-
238
- #. Description of an extension
239
  msgid "Integrates Clicky on your blog!"
240
- msgstr "Integreer Clicky in je blog!"
241
-
242
- #. Author of an extension
243
- msgid "Joost de Valk"
244
- msgstr "Joost de Valk"
245
-
246
- #. Author URI of an extension
247
- msgid "http://yoast.com/"
248
- msgstr "http://yoast.com/"
249
-
1
+ # Translation of Clicky WordPress plugin in Dutch
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:25:01+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 is bijna klaar. "
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 "Je moet %1$s Clicky website ID, websitesleutel en Admin websitesleutel%2$s invullen om te zorgen dat het werkt."
20
 
21
  #: clicky.php:48
22
  msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky heeft nog wat meer info nodig. "
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 "Je moet %1$s je Clicky Database server invullen%2$s om te zorgen dat deze plugin reacties kan tracken."
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 "De Clicky.me korte URL voor dit bericht is"
36
 
37
  #: clicky.php:75
38
  msgid "Tweet this post"
39
+ msgstr "Tweet dit bericht"
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 "Dit bericht is nog niet gepubliceerd, een korte URL zal worden gegenereerd zodra het bericht is gepubliceerd. Wil je dat het ook automatisch wordt getweet?"
44
 
45
  #: clicky.php:83
46
  msgid "Tweet post on publish"
47
+ msgstr "Tweet bericht bij publicatie"
48
 
49
  #: clicky.php:88
50
  msgid "Goal Tracking"
51
+ msgstr "Doeltracking"
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 kan ook doelen voor je tracken, %1$slees de documentatie hier%2$s. Om een doel te kunnen tracken bij dit bericht, moet je hier een doel ID specificeren. Optioneel kan je hier ook de doel-inkomsten invullen."
56
 
57
  #: clicky.php:93
58
  msgid "Goal ID"
60
 
61
  #: clicky.php:94
62
  msgid "Goal Revenue"
63
+ msgstr "Doel-inkomsten"
64
 
65
  #: clicky.php:134
66
  msgid "Stats"
67
+ msgstr "Statistieken"
68
 
69
  #: clicky.php:149
70
  msgid "You cannot edit the Clicky settings."
71
+ msgstr "Je kan de Clicky-instellingen niet wijzigen."
72
 
73
  #: clicky.php:168
74
  msgid "Clicky settings have been updated."
75
+ msgstr "Clicky instellingen zijn bewaard."
76
 
77
  #: clicky.php:181
78
  msgid "Configuration"
79
  msgstr "Configuratie"
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 "Ga naar je %1$sgebruikers-homepage op Clicky%2$s en klik &quot;Preferences&quot; onder de naam van het domein, staat de website ID, website-sleutel, Admin website-sleutel en Database Server bij de website-informatie."
84
 
85
  #: clicky.php:194
86
  msgid "Site ID"
87
+ msgstr "Website ID"
88
 
89
  #: clicky.php:201
90
  msgid "Site Key"
91
+ msgstr "Website-sleutel"
92
 
93
  #: clicky.php:208
94
  msgid "Admin Site Key"
95
+ msgstr "Admin website sleutel"
96
 
97
  #: clicky.php:215
98
  msgid "Database Server"
99
+ msgstr "Database server"
100
 
101
  #: clicky.php:221
102
  msgid "Clicky Settings"
103
+ msgstr "Clicky-instellingen"
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 "Deze plugin zorgt ervoor dat je automatisch korte URL's kan genereren met de %1$sClicky.me service%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 "en tweet je bericht meteen als je het publiceert. Om dat te doen heeft deze plugin je Twitter gebruikersnaam en wachtwoord nodig."
112
 
113
  #: clicky.php:228
114
  msgid "Ignore Admin users"
115
+ msgstr "Negeer Admin-gebruikers"
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 "Als je een caching plugin gebruikt, zoals WP-Supercache, controleer dan of je het zo ingesteld hebt dat het NIET de ingelogde gebruikers cachet. Anders worden admin-gebruikers <em>nog steeds</em> getracked."
120
 
121
  #: clicky.php:235
122
  msgid "Track names of commenters"
123
+ msgstr "Track de namen van de reageerders"
124
 
125
  #: clicky.php:240
126
  msgid "Advanced Settings"
127
+ msgstr "Geavanceerde instellingen"
128
 
129
  #: clicky.php:245
130
  msgid "Allow Clicky.me integration"
131
+ msgstr "Sta Clicky.me integratie toe"
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 "Je hoeft het niet bij elk bericht te selecteren. Door het hier te selecteren, wordt elk bericht automatisch getweet."
140
 
141
  #: clicky.php:259
142
  msgid "Twitter username"
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 "Deze tekst komt te staan voor de Tweets die worden getweet als een bericht wordt gepubliceerd"
156
 
157
  #: clicky.php:278
158
  msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Clicky.me &amp; Twitter integratie"
160
 
161
  #: clicky.php:283
162
  msgid "Update Clicky Settings"
163
+ msgstr "Update Clicky instellingen"
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 "Clicky tracking wordt niet weergegeven, omdat je een administrator bent en je hebt ingesteld dat Clicky administrators moet negeren."
168
 
169
  #: clicky.php:513
170
  msgid "Posted a comment"
171
+ msgstr "Heeft een reactie achter gelaten"
172
 
173
  #: yst_plugin_tools.php:64
174
  msgid "Settings"
176
 
177
  #: yst_plugin_tools.php:138
178
  msgid "Why not do any or all of the following:"
179
+ msgstr "Waarom doe je niet een van de volgende dingen:"
180
 
181
  #: yst_plugin_tools.php:140
182
  msgid "Link to it so other folks can find out about it."
183
+ msgstr "Link ernaar, zodat anderen het kunnen vinden."
184
 
185
  #: yst_plugin_tools.php:141
186
  msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Geef het een goede waardering op WordPress.org."
188
 
189
  #: yst_plugin_tools.php:142
190
  msgid "Donate a token of your appreciation."
191
+ msgstr "Laat je waardering blijken."
192
 
193
  #: yst_plugin_tools.php:144
194
  msgid "Like this plugin?"
195
+ msgstr "Vind je dit een goed 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 "Als je problemen hebt met deze plugin, als je een goed idee hebt voor verbeteringen of nieuwe mogelijkheden, praat daar dan over in de"
200
 
201
  #: yst_plugin_tools.php:151
202
  msgid "Support forums"
204
 
205
  #: yst_plugin_tools.php:152
206
  msgid "Need support?"
207
+ msgstr "Hulp nodig?"
208
 
209
  #: yst_plugin_tools.php:168
210
  msgid "Subscribe"
211
+ msgstr "Inschrijven"
212
 
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
 
214
  msgid "Latest news from Clicky"
215
+ msgstr "Laatste nieuws van Clicky"
216
 
217
  #: yst_plugin_tools.php:171
218
  msgid "Nothing to say..."
219
+ msgstr "Niets te zeggen..."
220
 
 
221
  msgid "Clicky for WordPress"
222
  msgstr "Clicky voor WordPress"
223
 
 
 
 
 
 
224
  msgid "Integrates Clicky on your blog!"
225
+ msgstr "Integreert Clicky in je website!"
 
 
 
 
 
 
 
 
 
lang/clicky-pt-BR.mo ADDED
Binary file
lang/clicky-pt-BR.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Portuguese (Brazil)
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:23: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 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 "Você deve %1$s informar 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 "Você deve %1$s informar seu servidor de banco de dados do Clicky%2$s para que o plugin possa monitorar 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 "Twitter 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. Você quer que ela seja tuitada automaticamente também?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Twitter post ao publicar"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Monitoramento de metas"
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 monitorar metas para você também, %1$sleia a documentação aqui%2$s. Para ser capaz de monitorar uma meta neste post, você precisa especificar o ID da meta aqui. Opcionalmente, você pode informar o lucro da meta."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "ID da meta"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Lucro da meta"
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 "Você não pode editar as configurações do Clicky"
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "As 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á a ID do site, chave do site, chave do administrador do site e servidor de banco 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 admin site"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Servidor do banco de dados"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Configuraçõ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 automaticamente permite que você encurte 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 senha do Twitter."
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Ignorar usuários administradores"
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 usuários logados. Senão, usuários administradores <em>ainda serão</em> monitorados."
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Monitorar nome de comentaristas"
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Configurações avançadas"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Permitir integração com o Clicky.me"
132
+
133
+ #: clicky.php:252
134
+ msgid "Auto Tweet"
135
+ msgstr "Auto Twitter"
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 "Usuário Twitter"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Senha do 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 irá na frente de cada tweet publicados quando um post é 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 configurações do 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 monitoramento 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 "Postou um comentário"
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr "Configuraçõ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 "Dar uma boa avaliação do Wordpress.org"
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr "Mostrar um pouco de apreciação doando."
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "Gostou do 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 "Se você tiver problemas com este plugin ou ideias para melhorias ou novos recursos, por favor fale sobre elas no"
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Fórum de suporte"
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 "Assine"
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Últimas notícias do 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 para Wordpress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Integra o Clicky ao seu blog!"
lang/clicky-ru_RU.mo ADDED
Binary file
lang/clicky-ru_RU.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Russian
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:22:03+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%10==1 && n%100!=11 ? 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 почти готов."
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 "Вы должны %1$s ввести Clicky ID сайта, Ключ сайта и администратора сайта Ключ%2$s для его работы."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky нужно немного больше информации."
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 ввести ваш Clicky базы данных server%2$s для этого плагина, чтобы иметь возможность отслеживать комментарии."
28
+
29
+ #: clicky.php:71 clicky.php:79
30
+ msgid "Twitter"
31
+ msgstr "Щебетать"
32
+
33
+ #: clicky.php:73
34
+ msgid "The Clicky.me short URL for this post is"
35
+ msgstr "Clicky.me короткий URL для этого поста"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Tweet этот пост"
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 "Этот пост еще не опубликован, короткий URL будет создан сразу после его публикации. Вы хотите, чтобы он был твитит автоматически тоже?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Твит сообщение сразу после его публикации"
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 "Clicky может отслеживать цели для вас тоже, %1$s читайте документацию здесь %2$s. Чтобы иметь возможность отслеживать цель на этот пост, вам нужно указать цель ID здесь. При желании вы можете также указать цель доходов."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "Цель ID"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Цель Доходов"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Статистика"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Вы не можете редактировать Clicky настройки."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Clicky настройки были обновлены."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ 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 "Идите на %1$sдомашнию страницу пользователя на Clicky%2$ы и нажмите кнопку &quot;Настройки&quot; под именем домена, вы найдете ID сайта, Сайт ID, Администратор Сайт Ключ и базы данных сервера под информацией о сайте."
84
+
85
+ #: clicky.php:194
86
+ msgid "Site ID"
87
+ msgstr "Сайт ID"
88
+
89
+ #: clicky.php:201
90
+ msgid "Site Key"
91
+ msgstr "Ключ Сайта"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Ключ Сайта Администратора"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Сервер базы данных"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "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 "Этот плагин позволяет автоматически создавать короткие URL-адреса посредством%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 "и твит ваше сообщение сразу же после публикации его. Чтобы сделать это, плагину нужно Ваши твит имя пользователя и пароль."
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 "Если вы используете кэширование плагина, таких как WP-SuperCache, пожалуйста, убедитесь, что он настроен не использовать кэш для уже зашедших пользователей. В противном случае пользователи администраторы <em> по-прежнему </em> быдут отслежены."
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 "Разрешить Clicky.me интеграцию"
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 "Clicky.me &amp; твиттер интеграция"
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Обновить Настройки 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 "Clicky отслеживания не показаны, потому что вы администратор и вы настроили Clicky игнорировать администраторов."
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 "Дайте ему хорошую оценку на WordPress.org."
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 "Последние новости от Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Нечего сказать ..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky для WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Интегрируется Clicky на Вашем блоге!"
lang/clicky-sv_SE.mo ADDED
Binary file
lang/clicky-sv_SE.po ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Clicky WordPress plugin in Swedish
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:28:01+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 är nästan klart."
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 "Du måste %1$s skriva in ditt Clicky Site ID, Site Key och Admin Site Key%2$s för att det ska fungera."
20
+
21
+ #: clicky.php:48
22
+ msgid "Clicky needs a bit more info. "
23
+ msgstr "Clicky behöver lite mer information."
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 "Du måste %1$s skriva in din Clicky Databasserver%2$s för att det här plugin:et ska kunna spåra kommentarer."
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 "Den korta Clicky.me URL:en för det här inlägget är"
36
+
37
+ #: clicky.php:75
38
+ msgid "Tweet this post"
39
+ msgstr "Twittra det här inlägget"
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 "Det här inlägget är inte publicerat än, en kort URL kommer skapas för den så fort inlägget är publicerat. Vill du att det ska twittras automatiskt också?"
44
+
45
+ #: clicky.php:83
46
+ msgid "Tweet post on publish"
47
+ msgstr "Twittra inlägg vid publicering"
48
+
49
+ #: clicky.php:88
50
+ msgid "Goal Tracking"
51
+ msgstr "Målspårning"
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 kan spåra Mål för dig också, %1$sread dokumentationen här%2$s. För att kunna spåra ett mål för det här inlägget, måste du ange mål-ID här. Alternativt kan du även ange mål-intäkten."
56
+
57
+ #: clicky.php:93
58
+ msgid "Goal ID"
59
+ msgstr "Mål-ID"
60
+
61
+ #: clicky.php:94
62
+ msgid "Goal Revenue"
63
+ msgstr "Målintäkt"
64
+
65
+ #: clicky.php:134
66
+ msgid "Stats"
67
+ msgstr "Statistik"
68
+
69
+ #: clicky.php:149
70
+ msgid "You cannot edit the Clicky settings."
71
+ msgstr "Du kan inte redigera inställningarna för Clicky."
72
+
73
+ #: clicky.php:168
74
+ msgid "Clicky settings have been updated."
75
+ msgstr "Inställningarna för Clicky har uppdaterats."
76
+
77
+ #: clicky.php:181
78
+ msgid "Configuration"
79
+ msgstr "Konfigurering"
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 "Gå till din %1$sanvändarhemsida på Clicky%2$s och klicka på &quot;Preferences&quot; . Under domännamnet hittar du Site ID, Site Key, Admin Site Key och Databasserver under Site information."
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 Key"
92
+
93
+ #: clicky.php:208
94
+ msgid "Admin Site Key"
95
+ msgstr "Admin Site Key"
96
+
97
+ #: clicky.php:215
98
+ msgid "Database Server"
99
+ msgstr "Databasserver"
100
+
101
+ #: clicky.php:221
102
+ msgid "Clicky Settings"
103
+ msgstr "Clicky inställningar"
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 "Det här plugin:et låter dig automatiskt skapa korta URL:er genom %1$sClicky.me tjänsten%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 "och twittra ditt inlägg direkt när du publicerar det. För att göra det, måste plugin:et ha ditt användarnamn och lösenord till Twitter."
112
+
113
+ #: clicky.php:228
114
+ msgid "Ignore Admin users"
115
+ msgstr "Ignorera Admin användare"
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 "Om du använder ett cache-plugin, som t.e.x. WP-Supercache, kontrollera att du har ställt in det att INTE använda cache för inloggade användare. Annars kommer admin användare <em>fortfarande</em> spåras."
120
+
121
+ #: clicky.php:235
122
+ msgid "Track names of commenters"
123
+ msgstr "Spåra namn på de som kommenterar"
124
+
125
+ #: clicky.php:240
126
+ msgid "Advanced Settings"
127
+ msgstr "Avancerade inställningar"
128
+
129
+ #: clicky.php:245
130
+ msgid "Allow Clicky.me integration"
131
+ msgstr "Tillåt Clicky.me integrering"
132
+
133
+ #: clicky.php:252
134
+ msgid "Auto Tweet"
135
+ msgstr "Twittra automatiskt"
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 "Du behöver inte kryssa i rutan på varje inlägg. Genom att kryssa i den här rutan tweetas varje inlägg automatiskt."
140
+
141
+ #: clicky.php:259
142
+ msgid "Twitter username"
143
+ msgstr "Twitter användarnamn"
144
+
145
+ #: clicky.php:266
146
+ msgid "Twitter password"
147
+ msgstr "Twitter lösenord"
148
+
149
+ #: clicky.php:273
150
+ msgid "Prefix for Tweets"
151
+ msgstr "Prefix för 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 "Den här texten placeras i början av Tweets som publiceras när ett blogginlägg publiceras"
156
+
157
+ #: clicky.php:278
158
+ msgid "Clicky.me &amp; Twitter Integration"
159
+ msgstr "Clicky.me &amp; Twitter Integrering"
160
+
161
+ #: clicky.php:283
162
+ msgid "Update Clicky Settings"
163
+ msgstr "Uppdatera inställningarna för 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 "Clicky spårning visas inte för du är en administratör och du har konfigurerat Clicky att ignorera administratörer."
168
+
169
+ #: clicky.php:513
170
+ msgid "Posted a comment"
171
+ msgstr "Postade en kommentar"
172
+
173
+ #: yst_plugin_tools.php:64
174
+ msgid "Settings"
175
+ msgstr "Inställningar"
176
+
177
+ #: yst_plugin_tools.php:138
178
+ msgid "Why not do any or all of the following:"
179
+ msgstr "Varför inte göra något eller alla av följande:"
180
+
181
+ #: yst_plugin_tools.php:140
182
+ msgid "Link to it so other folks can find out about it."
183
+ msgstr "Länka till det, så andra personer kan höra talas om det."
184
+
185
+ #: yst_plugin_tools.php:141
186
+ msgid "Give it a good rating on WordPress.org."
187
+ msgstr "Ge det ett bra omdöme på WordPress.org"
188
+
189
+ #: yst_plugin_tools.php:142
190
+ msgid "Donate a token of your appreciation."
191
+ msgstr "Donera en slant som tecken på din uppskattning."
192
+
193
+ #: yst_plugin_tools.php:144
194
+ msgid "Like this plugin?"
195
+ msgstr "Gillar du det här plugin:et?"
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 "Om du har några problem med det här plugin:et eller bra idéer till förbättringar eller nya funktioner, diskutera dom i "
200
+
201
+ #: yst_plugin_tools.php:151
202
+ msgid "Support forums"
203
+ msgstr "Support forum"
204
+
205
+ #: yst_plugin_tools.php:152
206
+ msgid "Need support?"
207
+ msgstr "Behöver du hjälp?"
208
+
209
+ #: yst_plugin_tools.php:168
210
+ msgid "Subscribe"
211
+ msgstr "Prenumerera"
212
+
213
+ #: yst_plugin_tools.php:169 yst_plugin_tools.php:171
214
+ msgid "Latest news from Clicky"
215
+ msgstr "Senaste nytt från Clicky"
216
+
217
+ #: yst_plugin_tools.php:171
218
+ msgid "Nothing to say..."
219
+ msgstr "Ingenting att säga..."
220
+
221
+ msgid "Clicky for WordPress"
222
+ msgstr "Clicky till WordPress"
223
+
224
+ msgid "Integrates Clicky on your blog!"
225
+ msgstr "Integrerar Clicky på din blogg!"
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.2
8
 
9
  Integrates the Clicky (from getClicky.com) web analytics service into your blog.
10
 
@@ -39,6 +39,12 @@ Read the authors [review of Clicky Analytics](http://yoast.com/clicky-analytics-
39
 
40
  == Changelog ==
41
 
 
 
 
 
 
 
42
  = 1.4.2 =
43
 
44
  * Option to disable the use of cookies.
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.1
8
 
9
  Integrates the Clicky (from getClicky.com) web analytics service into your blog.
10
 
39
 
40
  == Changelog ==
41
 
42
+ = 1.4.2.1 =
43
+
44
+ * Fixed a few notices.
45
+ * Fixed a possible crash due to not having imagemagick compiled in.
46
+ * Added a whole bunch of translations.
47
+
48
  = 1.4.2 =
49
 
50
  * Option to disable the use of cookies.