Changeset 2515223
- Timestamp:
- 04/14/2021 11:25:08 PM (5 years ago)
- Location:
- humanized-statistics/trunk
- Files:
-
- 9 edited
-
google-chart-statistics.php (modified) (13 diffs)
-
pages-admin/admin-gcs.php (modified) (18 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-languages/gcs-fr_FR.PO (modified) (4 diffs)
-
wp-languages/gcs-fr_FR.POT (modified) (4 diffs)
-
wp-languages/gcs-fr_FR.mo (modified) (previous)
-
wp-languages/gcs.PO (modified) (4 diffs)
-
wp-languages/gcs.POT (modified) (5 diffs)
-
wp-languages/gcs.mo (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
humanized-statistics/trunk/google-chart-statistics.php
r603539 r2515223 5 5 Description: Statistics for wordpress by posts, by pages and for home page (sticky posts vs normal posts), and by categories 6 6 Author: Laurent (KwarK) Bertrand 7 Version: 0. 17 Version: 0.6 8 8 Author URI: http://kwark.allwebtuts.net 9 9 */ … … 110 110 111 111 foreach ($settings as $v) { 112 delete_option( ''.$v.'');112 delete_option($v); 113 113 } 114 114 //Delete remains … … 199 199 200 200 //Main function for all statistics collector 201 add_filter('the_content', 'gcs_ filter_statistics');202 203 function gcs_ filter_statistics($content)201 add_filter('the_content', 'gcs_recolt_datas'); 202 203 function gcs_recolt_datas($content) 204 204 { 205 if(!is_home() && !is_front_page()) 206 { 207 global $id; 205 if(is_single() || is_page()) 206 { 207 global $id, $user_ID, $blog_id, $wpdb; 208 209 $category = get_the_category(); 210 $cat = $category[0]->term_id; 208 211 209 212 $mule = get_option('gcs_request_divisor'); 210 213 214 $userlog = is_user_logged_in(); 215 211 216 if(!$mule) 212 $mule = 1;217 $mule = 1; 213 218 214 219 $hit = 0; … … 220 225 $counter = $hit / $mule; 221 226 222 //ONLY HERE FOR PERFORMANCE TEST ON LOCALHOST - LEAVE COMMENTED223 /*$before = (float)preg_replace('#,#', '.', timer_stop(0));*/224 225 227 if(is_int($counter)) //To make sur if gcs_hit > (int) 1... (after a php warning, or others problems) 226 228 { 227 global $user_ID, $blog_id, $is_iphone, $is_chrome, $is_safari, $is_NS4, $is_opera, $is_macIE, $is_winIE, $is_gecko, $is_lynx, $is_IE; 229 global $is_iphone, $is_chrome, $is_safari, $is_NS4, $is_opera, $is_macIE, $is_winIE, $is_gecko, $is_lynx, $is_IE; 230 228 231 //Get all meta (one request) 229 232 $gcs = get_post_meta($id); … … 237 240 238 241 //Filter IP and Total known visitors statistics + known users by browser languages 239 if( is_user_logged_in())242 if($userlog) 240 243 { 241 244 $user_ip = get_user_meta($user_ID, 'gcs_ip', true); … … 259 262 { 260 263 $count = 0; 261 $count = $gcs['gcs_total_known_'.$browser_language.''][0]; 262 263 $up = $count + $mule; 264 update_post_meta($id, 'gcs_total_known_'.$browser_language.'', $up); 265 } 266 267 //Update user meta prefered categories 268 $category = get_the_category(); 269 $cat = $category[0]->term_id; 270 271 if($cat) 272 { 273 //!\Here it's user_meta! 274 $count = 0; 275 $count = get_user_meta($user_ID, 'gcs_cat_'.$blog_id.'_'.$cat.'', true); 276 277 $up = $count + $mule; 278 update_user_meta($user_ID, 'gcs_cat_'.$blog_id.'_'.$cat.'', $up); 264 $count = $gcs['gcs_total_known_'.$browser_language][0]; 265 266 $up = $count + $mule; 267 update_post_meta($id, 'gcs_total_known_'.$browser_language, $up); 279 268 } 280 269 } 281 270 282 271 //Total unknown visitors statistics + unknown users by browser languages 283 if(! is_user_logged_in())272 if(!$userlog) 284 273 { 285 global $wpdb;286 287 274 $verif_ip = $wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->usermeta WHERE meta_key='gcs_ip' AND meta_value=%s", $userip)); 288 275 //Unknow user … … 300 287 { 301 288 $count = 0; 302 $count = $gcs['gcs_total_unknown_'.$browser_language .''][0];289 $count = $gcs['gcs_total_unknown_'.$browser_language][0]; 303 290 304 291 $up = $count + $mule; 305 update_post_meta($id, 'gcs_total_unknown_'.$browser_language .'', $up);292 update_post_meta($id, 'gcs_total_unknown_'.$browser_language, $up); 306 293 } 307 294 } … … 321 308 { 322 309 $count = 0; 323 $count = $gcs['gcs_total_known_'.$browser_language .''][0];310 $count = $gcs['gcs_total_known_'.$browser_language][0]; 324 311 325 312 $up = $count + $mule; 326 update_post_meta($id, 'gcs_total_known_'.$browser_language .'', $up);313 update_post_meta($id, 'gcs_total_known_'.$browser_language, $up); 327 314 } 328 315 … … 337 324 338 325 //Social networks vs Internal vs Organics 339 $referer = preg_replace('#/$#', '', wp_get_referer());326 $referer = preg_replace('#/$#', '', !empty(wp_get_referer()) ? wp_get_referer() : $_SERVER['HTTP_REFERER']); 340 327 /*var_dump($from);*/ 328 /* echo '<pre>'; 329 print_r($referer); 330 echo '</pre>'; */ 331 341 332 if($referer) 342 333 { 343 334 $temp = parse_url($referer); 344 335 $from = $temp['host']; 336 337 //var_dump($from); 345 338 346 339 //www + host name + extension … … 349 342 //host name + extension 350 343 $referer_full = preg_replace('#www\.#', '', $from); 351 /*var_dump($referer_full);*/352 344 353 345 //Update by social referers 354 346 $socials = get_option('gcs_social'); 355 $temp = explode(',', $socials); 356 357 foreach($temp as $dom) 358 { 359 if($dom == $referer_full) 347 $socials = explode(',', $socials); 348 349 $site_url = get_bloginfo('wpurl'); 350 351 //var_dump($site_url); 352 353 if($referer != $site_url) 354 { 355 foreach($socials as $dom) 360 356 { 361 //host name 362 $referer_name = preg_replace('#\.#', '_', $referer_full); 363 /*var_dump($referer_name);*/ 364 $count = 0; 365 $count = $gcs['gcs_social-'.$referer_name.''][0]; 366 367 $up = $count + $mule; 368 update_post_meta($id, 'gcs_social-'.$referer_name.'', $up); 357 if($dom == $referer_full) 358 { 359 //host name 360 $referer_name = preg_replace('#\.#', '_', $referer_full); 361 362 $count = 0; 363 $count = $gcs['gcs_social-'.$referer_name][0]; 364 365 $up = $count + $mule; 366 update_post_meta($id, 'gcs_social-'.$referer_name, $up); 367 368 break; 369 } 369 370 } 370 371 } 371 372 372 373 //Update internal referer 373 $site_url = get_bloginfo('wpurl');374 374 $internal_dom = preg_replace('#http://|https://|/$#', '', $site_url); 375 375 $current_url = preg_replace('#/$#', '', get_permalink()); … … 412 412 413 413 $count = 0; 414 $count = $gcs['gcs_organics-'.$name .''][0];415 416 $up = $count + $mule; 417 update_post_meta($id, 'gcs_organics-'.$name .'', $up);414 $count = $gcs['gcs_organics-'.$name][0]; 415 416 $up = $count + $mule; 417 update_post_meta($id, 'gcs_organics-'.$name, $up); 418 418 } 419 419 } 420 421 //Update post meta total by categories422 $category = get_the_category();423 $cat = $category[0]->term_id;424 420 425 421 if($cat) 426 422 { 427 423 $count = 0; 428 $count = $gcs['gcs_category_'.$cat .''][0];424 $count = $gcs['gcs_category_'.$cat][0]; 429 425 430 426 $up = $count + $mule; 431 update_post_meta($id, 'gcs_category_'.$cat .'', $up);427 update_post_meta($id, 'gcs_category_'.$cat, $up); 432 428 } 433 429 … … 459 455 460 456 $count = 0; 461 $count = $gcs['gcs_browser_'.$navigator .''][0];457 $count = $gcs['gcs_browser_'.$navigator][0]; 462 458 463 459 //Update counter by navigator 464 460 $up = $count + $mule; 465 update_post_meta($id, 'gcs_browser_'.$navigator .'', $up);461 update_post_meta($id, 'gcs_browser_'.$navigator, $up); 466 462 467 463 //Update number queries … … 475 471 476 472 //Update time to load by navigator 477 $count = $gcs['gcs_total_loadtime_when_'.$navigator.''][0];478 if(!$count)479 {480 $count = 10; //Cheating if no one first time up to date481 }482 473 $up = timer_stop(0); 483 484 if($up < $count) 485 { 486 update_post_meta($id, 'gcs_total_loadtime_when_'.$navigator.'', $up); 487 } 474 update_post_meta($id, 'gcs_total_loadtime_when_'.$navigator, $up); 488 475 } 489 //Update visitors by countries (LEAVE COMMENTED! GEOIP php extension needed! Chart for countries currently not builded!)490 /*$country = geoip_country_name_by_name($userip);491 if ($country)492 {493 $country = preg_replace(array('# #', '#%20#'), array('_', '_'), strtolower($country));494 $count = 0;495 $count = get_post_meta($id, 'gcs_geoip_'.$country.'', true);496 497 $up = $count + $mule;498 update_post_meta($id, 'gcs_geoip_'.$country.'', $up);499 }*/500 476 } 501 //ONLY HERE FOR PERFORMANCE TEST ON LOCALHOST - LEAVE COMMENTED 502 /*$after = (float)preg_replace('#,#', '.', timer_stop(0));*/ 503 504 } 505 //ONLY HERE FOR PERFORMANCE TEST ON LOCALHOST - LEAVE COMMENTED 506 /*echo $after - $before . ' seconde';*/ 477 478 //Update user meta prefered categories 479 if($userlog && $cat) 480 { 481 $count = 0; 482 $count = get_user_meta($user_ID, 'gcs_cat_'.$blog_id.'_'.$cat, true); 483 484 $up = $count + 1; 485 update_user_meta($user_ID, 'gcs_cat_'.$blog_id.'_'.$cat, $up); 486 } 487 } 507 488 return $content; 508 } //END main function statistics collector489 } 509 490 ?> -
humanized-statistics/trunk/pages-admin/admin-gcs.php
r603539 r2515223 32 32 if(isset($_POST['submitted']) && $_POST['submitted'] == "yes") 33 33 { 34 global $wpdb; 35 34 36 //Requests divisor 35 37 $gcs_request_divisor = stripslashes($_POST['gcs_request_divisor']); … … 76 78 $vk_referer = stripslashes($_POST['vk_referer']); 77 79 update_option('vk_referer', $vk_referer); 80 81 $gcs_personal_referers = stripslashes($_POST['gcs_personal_referers']); 82 update_option('gcs_personal_referers', $gcs_personal_referers); 78 83 79 84 //Construct referers … … 92 97 $temp[] = get_option('vk_referer'); 93 98 99 $other_referers = get_option('gcs_personal_referers'); 100 101 if($other_referers) 102 { 103 $other_referers = explode(',', $other_referers); 104 105 foreach($other_referers as $ref) 106 { 107 //var_dump($ref); 108 $ref_str = preg_replace(array('#www\.#', '#\.(.+)#'), array('', ''), $ref); 109 110 $personal_referer = stripslashes($_POST['' . $ref_str . '_referer']); 111 112 update_option('' . $ref_str . '_referer', $personal_referer); 113 114 $temp[] = get_option('' . $ref_str . '_referer'); 115 } 116 } 117 94 118 if($temp) 95 119 { … … 97 121 update_option('gcs_social', $gcs_social); 98 122 99 /*var_dump($gcs_social);*/ 123 //var_dump($gcs_social); 124 } 125 126 $reset_datas = stripslashes($_POST['resetpostspages']); 127 128 if($reset_datas == 'on') 129 { 130 $meta_key = 'gcs_%'; 131 $datas = $wpdb->query($wpdb->prepare("DELETE FROM $wpdb->postmeta WHERE meta_key LIKE '%s'", $meta_key)); 132 echo '<div id="message" class="updated fade"><p><strong>'; 133 _e('Posts and pages statistics have been resetted', 'gcs'); 134 echo '.</strong></p></div>'; 135 } 136 137 $reset_users = stripslashes($_POST['resetusers']); 138 139 if($reset_users == 'on') 140 { 141 $meta_key = 'gcs_%'; 142 $users = $wpdb->query($wpdb->prepare("DELETE FROM $wpdb->usermeta WHERE meta_key LIKE '%s'", $meta_key)); 143 echo '<div id="message" class="updated fade"><p><strong>'; 144 _e('Users statistics have been resetted', 'gcs'); 145 echo '.</strong></p></div>'; 100 146 } 101 147 … … 174 220 //Main Russia 175 221 $("#vk").buttonset(); 222 223 //Reset options 224 $("#resetpostspages").buttonset(); 225 $("#resetusers").buttonset(); 176 226 }); 177 227 </script> … … 192 242 <td scope="row"></td> 193 243 <td scope="row"> 194 <span class=" livetv_help" title="<?php _e('Themify your administration (bar, buttons,...)', 'gcs'); ?>"></span>244 <span class="gcs_help" title="<?php _e('Themify your administration (bar, buttons,...)', 'gcs'); ?>"></span> 195 245 </td> 196 246 </tr> … … 208 258 <td scope="row"></td> 209 259 <td scope="row"> 210 <span class=" livetv_help" title="<?php _e('Themify your visual datas with Chart 3D', 'gcs'); ?>"></span>260 <span class="gcs_help" title="<?php _e('Themify your visual datas with Chart 3D', 'gcs'); ?>"></span> 211 261 </td> 212 262 </tr> … … 221 271 </td> 222 272 <td scope="row"><input type="text" id="gcs_request_divisor" name="gcs_request_divisor" style="border:0; cursor:default; opacity:0.5; color: #0078AE; font-weight:bold; text-shadow:0.1em 0.1em #77D5F7;" /></td> 223 <td scope="row"><span class=" livetv_help" title="<?php _e('Decrease request if your site has a lot of visitors. This option don\'t affects any others statistics and the plugin creates an accurate assessment. You may leave 1 to disable this option and hit 1/1 user. You may use left and right arrow keys on your keyboard to decrease or increase this option.', 'gcs'); ?>"></span></td>273 <td scope="row"><span class="gcs_help" title="<?php _e('Decrease request if your site has a lot of visitors. This option don\'t affects any others statistics and the plugin creates an accurate assessment. You may leave 1 to disable this option and hit 1/1 user. You may use left and right arrow keys on your keyboard to decrease or increase this option.', 'gcs'); ?>"></span></td> 224 274 </tr> 225 275 </table><br /><table class="widefat options" style="width: 650px"> … … 237 287 <td scope="row"> </td> 238 288 <td scope="row"> 239 <span class=" livetv_help" title="<?php _e('Turn Off or On for statistics survey of facebook.com', 'gcs'); ?>"></span>289 <span class="gcs_help" title="<?php _e('Turn Off or On for statistics survey of facebook.com', 'gcs'); ?>"></span> 240 290 </td> 241 291 </tr> … … 252 302 <td scope="row"> </td> 253 303 <td scope="row"> 254 <span class=" livetv_help" title="<?php _e('Turn Off or On for statistics survey of twitter.com', 'gcs'); ?>"></span>304 <span class="gcs_help" title="<?php _e('Turn Off or On for statistics survey of twitter.com', 'gcs'); ?>"></span> 255 305 </td> 256 306 </tr> … … 267 317 <td scope="row"> </td> 268 318 <td scope="row"> 269 <span class=" livetv_help" title="<?php _e('Turn Off or On for statistics survey of plus.google.com', 'gcs'); ?>"></span>319 <span class="gcs_help" title="<?php _e('Turn Off or On for statistics survey of plus.google.com', 'gcs'); ?>"></span> 270 320 </td> 271 321 </tr> … … 282 332 <td scope="row"> </td> 283 333 <td scope="row"> 284 <span class=" livetv_help" title="<?php _e('Turn Off or On for statistics survey of linkedin.com', 'gcs'); ?>"></span>334 <span class="gcs_help" title="<?php _e('Turn Off or On for statistics survey of linkedin.com', 'gcs'); ?>"></span> 285 335 </td> 286 336 </tr> … … 298 348 <td scope="row"> </td> 299 349 <td scope="row"> 300 <span class=" livetv_help" title="<?php _e('Turn Off or On for statistics survey of pinterest.com', 'gcs'); ?>"></span>350 <span class="gcs_help" title="<?php _e('Turn Off or On for statistics survey of pinterest.com', 'gcs'); ?>"></span> 301 351 </td> 302 352 </tr> … … 313 363 <td scope="row"> </td> 314 364 <td scope="row"> 315 <span class=" livetv_help" title="<?php _e('Turn Off or On for statistics survey of scoop.it', 'gcs'); ?>"></span>365 <span class="gcs_help" title="<?php _e('Turn Off or On for statistics survey of scoop.it', 'gcs'); ?>"></span> 316 366 </td> 317 367 </tr> … … 329 379 <td scope="row"> </td> 330 380 <td scope="row"> 331 <span class=" livetv_help" title="<?php _e('Turn Off or On for statistics survey of qzone.qq.com', 'gcs'); ?>"></span>381 <span class="gcs_help" title="<?php _e('Turn Off or On for statistics survey of qzone.qq.com', 'gcs'); ?>"></span> 332 382 </td> 333 383 </tr> … … 344 394 <td scope="row"> </td> 345 395 <td scope="row"> 346 <span class=" livetv_help" title="<?php _e('Turn Off or On for statistics survey of weibo.com', 'gcs'); ?>"></span>396 <span class="gcs_help" title="<?php _e('Turn Off or On for statistics survey of weibo.com', 'gcs'); ?>"></span> 347 397 </td> 348 398 </tr> … … 360 410 <td scope="row"> </td> 361 411 <td scope="row"> 362 <span class="livetv_help" title="<?php _e('Turn Off or On for statistics survey of vk.com', 'gcs'); ?>"></span> 363 </td> 412 <span class="gcs_help" title="<?php _e('Turn Off or On for statistics survey of vk.com', 'gcs'); ?>"></span> 413 </td> 414 </tr> 415 416 <thead><tr><th colspan="4" class="dashboard-widget-title"><?php _e('Personal referers', 'gcs'); ?></th></tr></thead> 417 <tr valign="top"> 418 <td scope="row" style="width:380px;"><label> 419 <?php _e('Your personal referers', 'gcs'); 420 $temp = get_option('weibo_referer'); 421 ?> 422 </label></td> 423 <td scope="row"> 424 <div id="weibo"><input type="text" id="gcs_personal_referers" name="gcs_personal_referers" value="<?php echo get_option('gcs_personal_referers'); ?>" /></div> 425 </td> 426 <td scope="row"> </td> 427 <td scope="row"> 428 <span class="gcs_help" title="<?php _e('Add your personal referer seperate by coma (Add only domain.tld without http://www.)', 'gcs'); ?>"></span> 429 </td> 430 </tr> 431 <?php 432 $personal_referers = get_option('gcs_personal_referers'); 433 434 if($personal_referers) 435 { 436 $count_others = 0; 437 $personal_referers = explode(',', $personal_referers); 438 //var_dump($personal_referers); 439 foreach($personal_referers as $key => $referer) 440 { 441 $referer_str = preg_replace(array('#www\.#', '#\.(.+)#'), array('', ''), $referer); 442 $temp = get_option('' . $referer_str . '_referer'); 443 if($temp) 444 { 445 $count_others++; 446 } 447 if($count_others > 5) 448 { 449 echo '<div id="message" class="error fade"><p><strong>'; 450 _e('Please decrease your personal active referers or replace some oldest by newest for performance purpose (personal referers active in same time must be < or = to 5 to have already good site performance)', 'gcs'); 451 echo '.</strong></p></div>'; 452 } 453 //var_dump($referer_str . ' ' . $temp); 454 ?> 455 <tr valign="top"> 456 <td scope="row" style="width:380px;"><label> 457 <?php _e('Collect statistics for', 'gcs'); echo ' ' . $referer . ' '; _e('referer', 'gcs'); 458 ?> 459 </label></td> 460 <script type="text/javascript"> 461 jQuery(document).ready(function($){ 462 $("#<?php echo $referer_str; ?>").buttonset(); 463 }); 464 </script> 465 <td scope="row"> 466 <div id="<?php echo $referer_str; ?>"><input type="radio" id="<?php echo $referer_str; ?>1" name="<?php echo $referer_str; ?>_referer" value="<?php echo $referer; ?>" <?php if($temp == $referer){ echo 'checked="checked"';}?> /><label for="<?php echo $referer_str; ?>1">On</label> 467 <input type="radio" id="<?php echo $referer_str; ?>2" name="<?php echo $referer_str; ?>_referer" value="" <?php if($temp == ''){ echo 'checked="checked"';}?> /><label for="<?php echo $referer_str; ?>2">Off</label></div> 468 </td> 469 <td scope="row"> </td> 470 <td scope="row"> 471 <span class="gcs_help" title="<?php _e('Turn Off or On for statistics survey of', 'gcs'); echo ' ' . $referer; ?>"></span> 472 </td> 473 </tr> 474 <?php }} ?> 475 </table> 476 <br /><table class="widefat options" style="width: 650px"> 477 <thead><tr><th colspan="4" class="dashboard-widget-title"><?php _e('Reset Options', 'gcs'); ?></th></tr></thead> 478 <tr valign="top"> 479 <td scope="row" style="width:380px;"><label> 480 <?php _e('Reset posts and pages statistics', 'gcs'); 481 ?> 482 </label></td> 483 <td scope="row" style="vertical-align:middle"> 484 <div id="resetpostspages"><input type="radio" id="resetpostspages1" name="resetpostspages" value="on" /><label for="resetpostspages1">Yes</label> 485 <input type="radio" id="resetpostspages2" name="resetpostspages" value="" checked="checked" /><label for="resetpostspages2">No</label></div> 486 </td> 487 <td scope="row"> </td> 488 <td scope="row"> 489 <span class="gcs_help" title="<?php _e('Turn On to reset all statistics to zero on all posts and pages stats', 'gcs'); ?>"></span> 490 </td> 491 </tr> 492 <tr valign="top"> 493 <td scope="row" style="width:380px;"><label> 494 <?php _e('Reset users statistics', 'gcs'); 495 ?> 496 </label></td> 497 <td scope="row" style="vertical-align:middle"> 498 <div id="resetusers"><input type="radio" id="resetusers1" name="resetusers" value="on" /><label for="resetusers1">Yes</label> 499 <input type="radio" id="resetusers2" name="resetusers" value="" checked="checked" /><label for="resetusers2">No</label></div> 500 </td> 501 <td scope="row"> </td> 502 <td scope="row"> 503 <span class="gcs_help" title="<?php _e('Turn On to reset all statistics to zero for all users stats', 'gcs'); ?>"></span> 504 </td> 364 505 </tr> 365 506 </table> … … 495 636 $stat_name = strtoupper($stat_name[5]); 496 637 497 echo '[\''.$stat_name.'\', '.preg_replace('#, #', '.', $stat_value).'],';638 echo '[\''.$stat_name.'\', '.preg_replace('#, |,#', '.', $stat_value).'],'; 498 639 } 499 640 ?> -
humanized-statistics/trunk/readme.txt
r635459 r2515223 4 4 Donate link: http://kwark.allwebtuts.net/ 5 5 Tags: statistics users, statistics by page, statistics by categories, statistics for home page, wordpress plugin, Google chart tools, Api google Chart 6 Tested up to: 3.4.27 Stable tag: 0. 66 Tested up to: 5.6 7 Stable tag: 0.7 8 8 9 9 Recolt datas by post and page with post_meta and display it with the Api Google chart on each post and page … … 43 43 == Changelog == 44 44 45 = 0.7 = 46 47 * Bug correction where the datas collection from networks and organics was stopped. 48 45 49 = 0.6 = 46 50 -
humanized-statistics/trunk/wp-languages/gcs-fr_FR.PO
r603539 r2515223 3 3 "Project-Id-Version: gcs\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2012- 09-24 16:18+0100\n"6 "PO-Revision-Date: 2012- 09-24 16:19+0100\n"5 "POT-Creation-Date: 2012-11-04 12:59+0100\n" 6 "PO-Revision-Date: 2012-11-04 12:59+0100\n" 7 7 "Last-Translator: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n" 8 8 "Language-Team: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n" … … 24 24 msgstr "Désolé mais vous ne pouvez pas accéder à cette page directement." 25 25 26 #: google-chart-statistics.php:5 426 #: google-chart-statistics.php:51 27 27 msgid "Statistics" 28 28 msgstr "Statistiques" 29 29 30 #: google-chart-statistics.php:5 530 #: google-chart-statistics.php:52 31 31 msgid "General configuration" 32 32 msgstr "General configuration" … … 56 56 msgstr "Actuellement, pas de données pour les catégories préférées des utilisateurs connus" 57 57 58 #: pages-admin/admin-gcs.php:103 58 #: pages-admin/admin-gcs.php:133 59 msgid "Posts and pages statistics have been resetted" 60 msgstr "Les statistiques articles et pages ont été remis à zéro" 61 62 #: pages-admin/admin-gcs.php:144 63 msgid "Users statistics have been resetted" 64 msgstr "Users statistiques ont été remise à zéro" 65 66 #: pages-admin/admin-gcs.php:149 59 67 msgid "Your settings have been saved" 60 68 msgstr "Vos options ont été sauvegardées" 61 69 62 #: pages-admin/admin-gcs.php:1 1270 #: pages-admin/admin-gcs.php:158 63 71 msgid "Humanized statistics - General configuration" 64 72 msgstr "Humanized statistics - General configuration" 65 73 66 #: pages-admin/admin-gcs.php:1 1667 #: pages-admin/admin-gcs.php: 35574 #: pages-admin/admin-gcs.php:162 75 #: pages-admin/admin-gcs.php:509 68 76 msgid "Save Changes" 69 77 msgstr "Sauvegarder" 70 78 71 #: pages-admin/admin-gcs.php: 16679 #: pages-admin/admin-gcs.php:229 72 80 msgid "Options plugin theme in dashboard" 73 81 msgstr "Options theme du plugin dans le tableau de bord" 74 82 75 #: pages-admin/admin-gcs.php: 16983 #: pages-admin/admin-gcs.php:232 76 84 msgid "Themify the plugin with..." 77 85 msgstr "Themify le plugin avec..." 78 86 79 #: pages-admin/admin-gcs.php: 18187 #: pages-admin/admin-gcs.php:244 80 88 msgid "Themify your administration (bar, buttons,...)" 81 89 msgstr "Themify votre administration (barre, boutons,...)" 82 90 83 #: pages-admin/admin-gcs.php: 18691 #: pages-admin/admin-gcs.php:249 84 92 msgid "Themify datas with 3D Chart" 85 93 msgstr "Themify les données avec effet 3D Chart" 86 94 87 #: pages-admin/admin-gcs.php: 19795 #: pages-admin/admin-gcs.php:260 88 96 msgid "Themify your visual datas with Chart 3D" 89 97 msgstr "Themify les données visuelles avec Chart ayant un effet de bord en 3D" 90 98 91 #: pages-admin/admin-gcs.php:2 0199 #: pages-admin/admin-gcs.php:264 92 100 msgid "Options performance" 93 101 msgstr "Options performance" 94 102 95 #: pages-admin/admin-gcs.php:2 04103 #: pages-admin/admin-gcs.php:267 96 104 msgid "Collect statistics of 1 user every..." 97 105 msgstr "Collecter les statistiques d'1 user tout les..." 98 106 99 #: pages-admin/admin-gcs.php:2 10107 #: pages-admin/admin-gcs.php:273 100 108 msgid "Decrease request if your site has a lot of visitors. This option don't affects any others statistics and the plugin creates an accurate assessment. You may leave 1 to disable this option and hit 1/1 user. You may use left and right arrow keys on your keyboard to decrease or increase this option." 101 109 msgstr "Diminution des requêtes si votre site a beaucoup de visiteurs. Cette option ne porte pas atteinte aux autres statistiques et le plugin crée une évaluation précise. Vous pouvez laisser 1 pour désactiver cette option et avoir 1/1 utilisateur. Vous pouvez utiliser les touches fléchées gauche et droite de votre clavier pour augmenter ou diminuer cette option." 102 110 103 #: pages-admin/admin-gcs.php:2 13111 #: pages-admin/admin-gcs.php:276 104 112 msgid "Options social networks referers" 105 113 msgstr "Options social networks referers" 106 114 107 #: pages-admin/admin-gcs.php:2 13115 #: pages-admin/admin-gcs.php:276 108 116 msgid "World" 109 117 msgstr "World" 110 118 111 #: pages-admin/admin-gcs.php:2 16119 #: pages-admin/admin-gcs.php:279 112 120 msgid "Collect statistics for Facebook referer" 113 121 msgstr "Collecter les statistiques pour Facebook referer" 114 122 115 #: pages-admin/admin-gcs.php:2 26123 #: pages-admin/admin-gcs.php:289 116 124 msgid "Turn Off or On for statistics survey of facebook.com" 117 125 msgstr "Activer ou désactiver l'enquête statistique de facebook.com" 118 126 119 #: pages-admin/admin-gcs.php:2 31127 #: pages-admin/admin-gcs.php:294 120 128 msgid "Collect statistics for Twitter referer" 121 129 msgstr "Collecter les statistiques pour Twitter referer" 122 130 123 #: pages-admin/admin-gcs.php: 241131 #: pages-admin/admin-gcs.php:304 124 132 msgid "Turn Off or On for statistics survey of twitter.com" 125 133 msgstr "Activer ou désactiver l'enquête statistique de twitter.com" 126 134 127 #: pages-admin/admin-gcs.php: 246135 #: pages-admin/admin-gcs.php:309 128 136 msgid "Collect statistics for Google+ referer" 129 137 msgstr "Collecter les statistiques pour Google+ referer" 130 138 131 #: pages-admin/admin-gcs.php: 256139 #: pages-admin/admin-gcs.php:319 132 140 msgid "Turn Off or On for statistics survey of plus.google.com" 133 141 msgstr "Activer ou désactiver l'enquête statistique de plus.google.com" 134 142 135 #: pages-admin/admin-gcs.php: 261143 #: pages-admin/admin-gcs.php:324 136 144 msgid "Collect statistics for Linkedin referer" 137 145 msgstr "Collecter les statistiques pour Linkedin referer" 138 146 139 #: pages-admin/admin-gcs.php: 271147 #: pages-admin/admin-gcs.php:334 140 148 msgid "Turn Off or On for statistics survey of linkedin.com" 141 149 msgstr "Activer ou désactiver l'enquête statistique de linkedin.com" 142 150 143 #: pages-admin/admin-gcs.php: 274151 #: pages-admin/admin-gcs.php:337 144 152 msgid "Pinboard" 145 153 msgstr "Pinboard" 146 154 147 #: pages-admin/admin-gcs.php: 277155 #: pages-admin/admin-gcs.php:340 148 156 msgid "Collect statistics for Pinterest referer" 149 157 msgstr "Collecter les statistiques pour Pinterest referer" 150 158 151 #: pages-admin/admin-gcs.php: 287159 #: pages-admin/admin-gcs.php:350 152 160 msgid "Turn Off or On for statistics survey of pinterest.com" 153 161 msgstr "Activer ou désactiver l'enquête statistique de pinterest.com" 154 162 155 #: pages-admin/admin-gcs.php: 292163 #: pages-admin/admin-gcs.php:355 156 164 msgid "Collect statistics for Scoop.it referer" 157 165 msgstr "Collecter les statistiques pour Scoop.it referer" 158 166 159 #: pages-admin/admin-gcs.php:3 02167 #: pages-admin/admin-gcs.php:365 160 168 msgid "Turn Off or On for statistics survey of scoop.it" 161 169 msgstr "Activer ou désactiver l'enquête statistique de scoop.it" 162 170 163 #: pages-admin/admin-gcs.php:3 05171 #: pages-admin/admin-gcs.php:368 164 172 msgid "Main China" 165 173 msgstr "Main China" 166 174 167 #: pages-admin/admin-gcs.php:3 08175 #: pages-admin/admin-gcs.php:371 168 176 msgid "Collect statistics for Qzone referer" 169 177 msgstr "Collecter les statistiques pour Qzone referer" 170 178 171 #: pages-admin/admin-gcs.php:3 18179 #: pages-admin/admin-gcs.php:381 172 180 msgid "Turn Off or On for statistics survey of qzone.qq.com" 173 181 msgstr "Activer ou désactiver l'enquête statistique de qzone.qq.com" 174 182 175 #: pages-admin/admin-gcs.php:3 23183 #: pages-admin/admin-gcs.php:386 176 184 msgid "Collect statistics for Weibo referer" 177 185 msgstr "Collecter les statistiques pour Weibo referer" 178 186 179 #: pages-admin/admin-gcs.php:3 33187 #: pages-admin/admin-gcs.php:396 180 188 msgid "Turn Off or On for statistics survey of weibo.com" 181 189 msgstr "Activer ou désactiver l'enquête statistique de weibo.com" 182 190 183 #: pages-admin/admin-gcs.php:3 36191 #: pages-admin/admin-gcs.php:399 184 192 msgid "Main Russia" 185 193 msgstr "Main Russia" 186 194 187 #: pages-admin/admin-gcs.php: 339195 #: pages-admin/admin-gcs.php:402 188 196 msgid "Collect statistics for vk referer" 189 197 msgstr "Collecter les statistiques pour vk referer" 190 198 191 #: pages-admin/admin-gcs.php: 349199 #: pages-admin/admin-gcs.php:412 192 200 msgid "Turn Off or On for statistics survey of vk.com" 193 201 msgstr "Activer ou désactiver l'enquête statistique de vk.com" 194 202 195 #: pages-admin/admin-gcs.php:370 196 #: pages-admin/admin-gcs.php:376 203 #: pages-admin/admin-gcs.php:416 204 msgid "Personal referers" 205 msgstr "Personal referers" 206 207 #: pages-admin/admin-gcs.php:419 208 msgid "Your personal referers" 209 msgstr "Vos personal referers" 210 211 #: pages-admin/admin-gcs.php:428 212 msgid "Add your personal referer seperate by coma (Add only domain.tld without http://www.)" 213 msgstr "Ajoutez vos referer personnel séparé par une virgule (Ajouter seulement domain.tld sans http://www.)" 214 215 #: pages-admin/admin-gcs.php:450 216 msgid "Please decrease your personal active referers or replace some oldest by newest for performance purpose (personal referers active in same time must be < or = to 5 to have already good site performance)" 217 msgstr "Merci de diminuer vos referers personnel actif ou de remplacer certains anciens par des nouveaux pour des raisons de performance (referers actif personnel en même temps doit être < ou = à 5 pour avoir un site performant)" 218 219 #: pages-admin/admin-gcs.php:457 220 msgid "Collect statistics for" 221 msgstr "Collecter les statistiques pour" 222 223 #: pages-admin/admin-gcs.php:457 224 msgid "referer" 225 msgstr "referer" 226 227 #: pages-admin/admin-gcs.php:471 228 msgid "Turn Off or On for statistics survey of" 229 msgstr "Activer ou désactiver l'enquête statistique de" 230 231 #: pages-admin/admin-gcs.php:477 232 msgid "Reset Options" 233 msgstr "Reset Options" 234 235 #: pages-admin/admin-gcs.php:480 236 msgid "Reset posts and pages statistics" 237 msgstr "Reset articles et pages statistiques" 238 239 #: pages-admin/admin-gcs.php:489 240 msgid "Turn On to reset all statistics to zero on all posts and pages stats" 241 msgstr "Turn On pour reset toutes les statistiques à zéro sur tous les articles et pages" 242 243 #: pages-admin/admin-gcs.php:494 244 msgid "Reset users statistics" 245 msgstr "Reset users statistiques" 246 247 #: pages-admin/admin-gcs.php:503 248 msgid "Turn On to reset all statistics to zero for all users stats" 249 msgstr "Turn On pour reset toutes les statistiques à zéro pour tous les utilisateurs" 250 251 #: pages-admin/admin-gcs.php:524 252 #: pages-admin/admin-gcs.php:530 197 253 msgid "Statistics Performances" 198 254 msgstr "Statistiques Performances" 199 255 200 #: pages-admin/admin-gcs.php: 382201 #: pages-admin/admin-gcs.php: 388256 #: pages-admin/admin-gcs.php:536 257 #: pages-admin/admin-gcs.php:542 202 258 msgid "Statistics Organics" 203 259 msgstr "Statistiques Organics" 204 260 205 #: pages-admin/admin-gcs.php: 394206 #: pages-admin/admin-gcs.php: 400261 #: pages-admin/admin-gcs.php:548 262 #: pages-admin/admin-gcs.php:554 207 263 msgid "Statistics Networks" 208 264 msgstr "Statistiques Networks" 209 265 210 #: pages-admin/admin-gcs.php: 406211 #: pages-admin/admin-gcs.php: 412266 #: pages-admin/admin-gcs.php:560 267 #: pages-admin/admin-gcs.php:566 212 268 msgid "Statistics Users" 213 269 msgstr "Statistiques Users" 214 270 215 #: pages-admin/admin-gcs.php: 630216 #: pages-admin/admin-gcs.php: 737271 #: pages-admin/admin-gcs.php:784 272 #: pages-admin/admin-gcs.php:891 217 273 #: pages-admin/admin-home.php:109 218 274 #: pages-admin/admin-home.php:184 … … 221 277 msgstr "Actuellement, pas de données" 222 278 223 #: pages-admin/admin-gcs.php: 826279 #: pages-admin/admin-gcs.php:980 224 280 msgid "Normal" 225 281 msgstr "Normal" 226 282 227 #: pages-admin/admin-gcs.php: 828283 #: pages-admin/admin-gcs.php:982 228 284 msgid "Sticky" 229 285 msgstr "Sticky" 230 286 231 #: pages-admin/admin-gcs.php: 895287 #: pages-admin/admin-gcs.php:1049 232 288 msgid "Connected" 233 289 msgstr "Connectés" 234 290 235 #: pages-admin/admin-gcs.php: 896291 #: pages-admin/admin-gcs.php:1050 236 292 msgid "Disconnected" 237 293 msgstr "Déconnectés" 238 294 239 #: pages-admin/admin-gcs.php:1 110295 #: pages-admin/admin-gcs.php:1264 240 296 msgid "Known" 241 297 msgstr "Connus" 242 298 243 #: pages-admin/admin-gcs.php:1 112299 #: pages-admin/admin-gcs.php:1266 244 300 msgid "Unknown" 245 301 msgstr "Inconnus" -
humanized-statistics/trunk/wp-languages/gcs-fr_FR.POT
r603539 r2515223 3 3 "Project-Id-Version: gcs\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2012- 08-20 20:31+0100\n"6 "PO-Revision-Date: 2012- 08-20 20:33+0100\n"5 "POT-Creation-Date: 2012-11-04 12:54+0100\n" 6 "PO-Revision-Date: 2012-11-04 12:59+0100\n" 7 7 "Last-Translator: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n" 8 8 "Language-Team: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n" … … 17 17 "X-Poedit-SearchPath-0: .\n" 18 18 19 #: google-chart-statistics.php: 1819 #: google-chart-statistics.php:36 20 20 #: pages-admin/admin-cats.php:8 21 21 #: pages-admin/admin-gcs.php:8 22 22 #: pages-admin/admin-home.php:8 23 23 msgid "Sorry, but you cannot access this page directly." 24 msgstr "Désolé ,mais vous ne pouvez pas accéder à cette page directement."25 26 #: google-chart-statistics.php: 3524 msgstr "Désolé mais vous ne pouvez pas accéder à cette page directement." 25 26 #: google-chart-statistics.php:51 27 27 msgid "Statistics" 28 28 msgstr "Statistiques" 29 29 30 #: google-chart-statistics.php: 3630 #: google-chart-statistics.php:52 31 31 msgid "General configuration" 32 32 msgstr "General configuration" … … 37 37 38 38 #: pages-admin/admin-cats.php:29 39 msgid " Google chartstatistics - Categories statistics"40 msgstr " Google chart statistics - Categories statistics"41 42 #: pages-admin/admin-cats.php:3 339 msgid "Humanized statistics - Categories statistics" 40 msgstr "Humanized statistics - Statistiques des catégories" 41 42 #: pages-admin/admin-cats.php:37 43 43 msgid "Statistics categories most visited by all users" 44 msgstr "Statistiques catégories plus visitées par tous lesutilisateurs"45 46 #: pages-admin/admin-cats.php: 9044 msgstr "Statistiques catégories les plus visitées - tout utilisateurs" 45 46 #: pages-admin/admin-cats.php:101 47 47 msgid "Currently no datas for categories most visited" 48 msgstr "Actuellement ,aucune données pour les catégories les plus visitées"49 50 #: pages-admin/admin-cats.php: 9648 msgstr "Actuellement aucune données pour les catégories les plus visitées" 49 50 #: pages-admin/admin-cats.php:107 51 51 msgid "Statistics categories most prefered by known users" 52 msgstr "Statistiques catégories préférées par utilisateurs connus"53 54 #: pages-admin/admin-cats.php:1 5852 msgstr "Statistiques catégories préférées par les utilisateurs connus" 53 54 #: pages-admin/admin-cats.php:172 55 55 msgid "Currently no datas for categories prefered by known users" 56 56 msgstr "Actuellement, pas de données pour les catégories préférées des utilisateurs connus" 57 57 58 #: pages-admin/admin-gcs.php:103 58 #: pages-admin/admin-gcs.php:133 59 msgid "Posts and pages statistics have been resetted" 60 msgstr "Les statistiques articles et pages ont été remis à zéro" 61 62 #: pages-admin/admin-gcs.php:144 63 msgid "Users statistics have been resetted" 64 msgstr "Users statistiques ont été remise à zéro" 65 66 #: pages-admin/admin-gcs.php:149 59 67 msgid "Your settings have been saved" 60 68 msgstr "Vos options ont été sauvegardées" 61 69 62 #: pages-admin/admin-gcs.php:1 1263 msgid " Google chartstatistics - General configuration"64 msgstr " Google chartstatistics - General configuration"65 66 #: pages-admin/admin-gcs.php:1 1667 #: pages-admin/admin-gcs.php: 35570 #: pages-admin/admin-gcs.php:158 71 msgid "Humanized statistics - General configuration" 72 msgstr "Humanized statistics - General configuration" 73 74 #: pages-admin/admin-gcs.php:162 75 #: pages-admin/admin-gcs.php:509 68 76 msgid "Save Changes" 69 77 msgstr "Sauvegarder" 70 78 71 #: pages-admin/admin-gcs.php: 16679 #: pages-admin/admin-gcs.php:229 72 80 msgid "Options plugin theme in dashboard" 73 msgstr "Options plugin themedans le tableau de bord"74 75 #: pages-admin/admin-gcs.php: 16981 msgstr "Options theme du plugin dans le tableau de bord" 82 83 #: pages-admin/admin-gcs.php:232 76 84 msgid "Themify the plugin with..." 77 85 msgstr "Themify le plugin avec..." 78 86 79 #: pages-admin/admin-gcs.php: 18187 #: pages-admin/admin-gcs.php:244 80 88 msgid "Themify your administration (bar, buttons,...)" 81 89 msgstr "Themify votre administration (barre, boutons,...)" 82 90 83 #: pages-admin/admin-gcs.php: 18691 #: pages-admin/admin-gcs.php:249 84 92 msgid "Themify datas with 3D Chart" 85 msgstr "Themify datas avec3D Chart"86 87 #: pages-admin/admin-gcs.php: 19793 msgstr "Themify les données avec effet 3D Chart" 94 95 #: pages-admin/admin-gcs.php:260 88 96 msgid "Themify your visual datas with Chart 3D" 89 msgstr "Themify les données visuel avec Charten 3D"90 91 #: pages-admin/admin-gcs.php:2 0197 msgstr "Themify les données visuelles avec Chart ayant un effet de bord en 3D" 98 99 #: pages-admin/admin-gcs.php:264 92 100 msgid "Options performance" 93 101 msgstr "Options performance" 94 102 95 #: pages-admin/admin-gcs.php:2 04103 #: pages-admin/admin-gcs.php:267 96 104 msgid "Collect statistics of 1 user every..." 97 105 msgstr "Collecter les statistiques d'1 user tout les..." 98 106 99 #: pages-admin/admin-gcs.php:2 10107 #: pages-admin/admin-gcs.php:273 100 108 msgid "Decrease request if your site has a lot of visitors. This option don't affects any others statistics and the plugin creates an accurate assessment. You may leave 1 to disable this option and hit 1/1 user. You may use left and right arrow keys on your keyboard to decrease or increase this option." 101 109 msgstr "Diminution des requêtes si votre site a beaucoup de visiteurs. Cette option ne porte pas atteinte aux autres statistiques et le plugin crée une évaluation précise. Vous pouvez laisser 1 pour désactiver cette option et avoir 1/1 utilisateur. Vous pouvez utiliser les touches fléchées gauche et droite de votre clavier pour augmenter ou diminuer cette option." 102 110 103 #: pages-admin/admin-gcs.php:2 13111 #: pages-admin/admin-gcs.php:276 104 112 msgid "Options social networks referers" 105 113 msgstr "Options social networks referers" 106 114 107 #: pages-admin/admin-gcs.php:2 13115 #: pages-admin/admin-gcs.php:276 108 116 msgid "World" 109 117 msgstr "World" 110 118 111 #: pages-admin/admin-gcs.php:2 16119 #: pages-admin/admin-gcs.php:279 112 120 msgid "Collect statistics for Facebook referer" 113 121 msgstr "Collecter les statistiques pour Facebook referer" 114 122 115 #: pages-admin/admin-gcs.php:2 26123 #: pages-admin/admin-gcs.php:289 116 124 msgid "Turn Off or On for statistics survey of facebook.com" 117 125 msgstr "Activer ou désactiver l'enquête statistique de facebook.com" 118 126 119 #: pages-admin/admin-gcs.php:2 31127 #: pages-admin/admin-gcs.php:294 120 128 msgid "Collect statistics for Twitter referer" 121 129 msgstr "Collecter les statistiques pour Twitter referer" 122 130 123 #: pages-admin/admin-gcs.php: 241131 #: pages-admin/admin-gcs.php:304 124 132 msgid "Turn Off or On for statistics survey of twitter.com" 125 133 msgstr "Activer ou désactiver l'enquête statistique de twitter.com" 126 134 127 #: pages-admin/admin-gcs.php: 246135 #: pages-admin/admin-gcs.php:309 128 136 msgid "Collect statistics for Google+ referer" 129 137 msgstr "Collecter les statistiques pour Google+ referer" 130 138 131 #: pages-admin/admin-gcs.php: 256139 #: pages-admin/admin-gcs.php:319 132 140 msgid "Turn Off or On for statistics survey of plus.google.com" 133 141 msgstr "Activer ou désactiver l'enquête statistique de plus.google.com" 134 142 135 #: pages-admin/admin-gcs.php: 261143 #: pages-admin/admin-gcs.php:324 136 144 msgid "Collect statistics for Linkedin referer" 137 145 msgstr "Collecter les statistiques pour Linkedin referer" 138 146 139 #: pages-admin/admin-gcs.php: 271147 #: pages-admin/admin-gcs.php:334 140 148 msgid "Turn Off or On for statistics survey of linkedin.com" 141 149 msgstr "Activer ou désactiver l'enquête statistique de linkedin.com" 142 150 143 #: pages-admin/admin-gcs.php: 274151 #: pages-admin/admin-gcs.php:337 144 152 msgid "Pinboard" 145 153 msgstr "Pinboard" 146 154 147 #: pages-admin/admin-gcs.php: 277155 #: pages-admin/admin-gcs.php:340 148 156 msgid "Collect statistics for Pinterest referer" 149 157 msgstr "Collecter les statistiques pour Pinterest referer" 150 158 151 #: pages-admin/admin-gcs.php: 287159 #: pages-admin/admin-gcs.php:350 152 160 msgid "Turn Off or On for statistics survey of pinterest.com" 153 161 msgstr "Activer ou désactiver l'enquête statistique de pinterest.com" 154 162 155 #: pages-admin/admin-gcs.php: 292163 #: pages-admin/admin-gcs.php:355 156 164 msgid "Collect statistics for Scoop.it referer" 157 165 msgstr "Collecter les statistiques pour Scoop.it referer" 158 166 159 #: pages-admin/admin-gcs.php:3 02167 #: pages-admin/admin-gcs.php:365 160 168 msgid "Turn Off or On for statistics survey of scoop.it" 161 169 msgstr "Activer ou désactiver l'enquête statistique de scoop.it" 162 170 163 #: pages-admin/admin-gcs.php:3 05171 #: pages-admin/admin-gcs.php:368 164 172 msgid "Main China" 165 173 msgstr "Main China" 166 174 167 #: pages-admin/admin-gcs.php:3 08175 #: pages-admin/admin-gcs.php:371 168 176 msgid "Collect statistics for Qzone referer" 169 177 msgstr "Collecter les statistiques pour Qzone referer" 170 178 171 #: pages-admin/admin-gcs.php:3 18179 #: pages-admin/admin-gcs.php:381 172 180 msgid "Turn Off or On for statistics survey of qzone.qq.com" 173 181 msgstr "Activer ou désactiver l'enquête statistique de qzone.qq.com" 174 182 175 #: pages-admin/admin-gcs.php:3 23183 #: pages-admin/admin-gcs.php:386 176 184 msgid "Collect statistics for Weibo referer" 177 185 msgstr "Collecter les statistiques pour Weibo referer" 178 186 179 #: pages-admin/admin-gcs.php:3 33187 #: pages-admin/admin-gcs.php:396 180 188 msgid "Turn Off or On for statistics survey of weibo.com" 181 189 msgstr "Activer ou désactiver l'enquête statistique de weibo.com" 182 190 183 #: pages-admin/admin-gcs.php:3 36191 #: pages-admin/admin-gcs.php:399 184 192 msgid "Main Russia" 185 193 msgstr "Main Russia" 186 194 187 #: pages-admin/admin-gcs.php: 339195 #: pages-admin/admin-gcs.php:402 188 196 msgid "Collect statistics for vk referer" 189 197 msgstr "Collecter les statistiques pour vk referer" 190 198 191 #: pages-admin/admin-gcs.php: 349199 #: pages-admin/admin-gcs.php:412 192 200 msgid "Turn Off or On for statistics survey of vk.com" 193 201 msgstr "Activer ou désactiver l'enquête statistique de vk.com" 194 202 195 #: pages-admin/admin-gcs.php:370 196 #: pages-admin/admin-gcs.php:376 203 #: pages-admin/admin-gcs.php:416 204 msgid "Personal referers" 205 msgstr "Personal referers" 206 207 #: pages-admin/admin-gcs.php:419 208 msgid "Your personal referers" 209 msgstr "Vos personal referers" 210 211 #: pages-admin/admin-gcs.php:428 212 msgid "Add your personal referer seperate by coma (Add only domain.tld without http://www.)" 213 msgstr "Ajoutez vos referer personnel séparé par une virgule (Ajouter seulement domain.tld sans http://www.)" 214 215 #: pages-admin/admin-gcs.php:450 216 msgid "Please decrease your personal active referers or replace some oldest by newest for performance purpose (personal referers active in same time must be < or = to 5 to have already good site performance)" 217 msgstr "Merci de diminuer vos referers personnel actif ou de remplacer certains anciens par des nouveaux pour des raisons de performance (referers actif personnel en même temps doit être < ou = à 5 pour avoir un site performant)" 218 219 #: pages-admin/admin-gcs.php:457 220 msgid "Collect statistics for" 221 msgstr "Collecter les statistiques pour" 222 223 #: pages-admin/admin-gcs.php:457 224 msgid "referer" 225 msgstr "referer" 226 227 #: pages-admin/admin-gcs.php:471 228 msgid "Turn Off or On for statistics survey of" 229 msgstr "Activer ou désactiver l'enquête statistique de" 230 231 #: pages-admin/admin-gcs.php:477 232 msgid "Reset Options" 233 msgstr "Reset Options" 234 235 #: pages-admin/admin-gcs.php:480 236 msgid "Reset posts and pages statistics" 237 msgstr "Reset articles et pages statistiques" 238 239 #: pages-admin/admin-gcs.php:489 240 msgid "Turn On to reset all statistics to zero on all posts and pages stats" 241 msgstr "Turn On pour reset toutes les statistiques à zéro sur tous les articles et pages" 242 243 #: pages-admin/admin-gcs.php:494 244 msgid "Reset users statistics" 245 msgstr "Reset users statistiques" 246 247 #: pages-admin/admin-gcs.php:503 248 msgid "Turn On to reset all statistics to zero for all users stats" 249 msgstr "Turn On pour reset toutes les statistiques à zéro pour tous les utilisateurs" 250 251 #: pages-admin/admin-gcs.php:524 252 #: pages-admin/admin-gcs.php:530 197 253 msgid "Statistics Performances" 198 254 msgstr "Statistiques Performances" 199 255 200 #: pages-admin/admin-gcs.php: 382201 #: pages-admin/admin-gcs.php: 388256 #: pages-admin/admin-gcs.php:536 257 #: pages-admin/admin-gcs.php:542 202 258 msgid "Statistics Organics" 203 259 msgstr "Statistiques Organics" 204 260 205 #: pages-admin/admin-gcs.php: 394206 #: pages-admin/admin-gcs.php: 400261 #: pages-admin/admin-gcs.php:548 262 #: pages-admin/admin-gcs.php:554 207 263 msgid "Statistics Networks" 208 264 msgstr "Statistiques Networks" 209 265 210 #: pages-admin/admin-gcs.php: 406211 #: pages-admin/admin-gcs.php: 412266 #: pages-admin/admin-gcs.php:560 267 #: pages-admin/admin-gcs.php:566 212 268 msgid "Statistics Users" 213 269 msgstr "Statistiques Users" 214 270 215 #: pages-admin/admin-gcs.php:418 216 #: pages-admin/admin-gcs.php:424 217 msgid "Statistics Humanized" 218 msgstr "Statistiques Humanized" 219 220 #: pages-admin/admin-gcs.php:830 271 #: pages-admin/admin-gcs.php:784 272 #: pages-admin/admin-gcs.php:891 273 #: pages-admin/admin-home.php:109 274 #: pages-admin/admin-home.php:184 275 #: pages-admin/admin-home.php:259 276 msgid "Currently no datas" 277 msgstr "Actuellement, pas de données" 278 279 #: pages-admin/admin-gcs.php:980 221 280 msgid "Normal" 222 281 msgstr "Normal" 223 282 224 #: pages-admin/admin-gcs.php: 832283 #: pages-admin/admin-gcs.php:982 225 284 msgid "Sticky" 226 285 msgstr "Sticky" 227 286 228 #: pages-admin/admin-gcs.php: 899287 #: pages-admin/admin-gcs.php:1049 229 288 msgid "Connected" 230 289 msgstr "Connectés" 231 290 232 #: pages-admin/admin-gcs.php: 900291 #: pages-admin/admin-gcs.php:1050 233 292 msgid "Disconnected" 234 msgstr "D isconnectés"235 236 #: pages-admin/admin-gcs.php:1 114293 msgstr "Déconnectés" 294 295 #: pages-admin/admin-gcs.php:1264 237 296 msgid "Known" 238 297 msgstr "Connus" 239 298 240 #: pages-admin/admin-gcs.php:1 116299 #: pages-admin/admin-gcs.php:1266 241 300 msgid "Unknown" 242 301 msgstr "Inconnus" … … 247 306 248 307 #: pages-admin/admin-home.php:29 249 msgid " Google chartstatistics - Home statistics"250 msgstr " Google chartstatistics - Statistiques Home"251 252 #: pages-admin/admin-home.php:3 3308 msgid "Humanized statistics - Home statistics" 309 msgstr "Humanized statistics - Statistiques Home" 310 311 #: pages-admin/admin-home.php:37 253 312 msgid "Statistics home page total sticky VS normal" 254 msgstr "Statistiques home page total sticky VS normal" 255 256 #: pages-admin/admin-home.php:90 257 msgid "Currently no datas for home page" 258 msgstr "Actuellement, pas de données pour la home page" 259 313 msgstr "Statistiques home page total sticky VS total normal" 314 315 #: pages-admin/admin-home.php:115 316 msgid "Statistics home page from normal posts - user in bounce to" 317 msgstr "Statistiques home page from normal posts - user en rebond vers" 318 319 #: pages-admin/admin-home.php:190 320 msgid "Statistics home page from sticky posts - user in bounce to" 321 msgstr "Statistics home page from sticky posts - user en rebond vers" 322 323 #~ msgid "Collect statistics for Blizzard referer" 324 #~ msgstr "Collecter les statistiques pour Blizzard referer" 325 326 #~ msgid "Turn Off or On for statistics survey of battle.net" 327 #~ msgstr "Activer ou désactiver l'enquête statistique de battle.net" 328 329 #~ msgid "Statistics Humanized" 330 #~ msgstr "Statistiques Humanized" -
humanized-statistics/trunk/wp-languages/gcs.PO
r603539 r2515223 3 3 "Project-Id-Version: gcs\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2012- 09-24 16:18+0100\n"6 "PO-Revision-Date: 2012- 09-24 16:18+0100\n"5 "POT-Creation-Date: 2012-11-04 12:59+0100\n" 6 "PO-Revision-Date: 2012-11-04 12:59+0100\n" 7 7 "Last-Translator: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n" 8 8 "Language-Team: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n" … … 24 24 msgstr "" 25 25 26 #: google-chart-statistics.php:5 426 #: google-chart-statistics.php:51 27 27 msgid "Statistics" 28 28 msgstr "" 29 29 30 #: google-chart-statistics.php:5 530 #: google-chart-statistics.php:52 31 31 msgid "General configuration" 32 32 msgstr "" … … 56 56 msgstr "" 57 57 58 #: pages-admin/admin-gcs.php:103 58 #: pages-admin/admin-gcs.php:133 59 msgid "Posts and pages statistics have been resetted" 60 msgstr "" 61 62 #: pages-admin/admin-gcs.php:144 63 msgid "Users statistics have been resetted" 64 msgstr "" 65 66 #: pages-admin/admin-gcs.php:149 59 67 msgid "Your settings have been saved" 60 68 msgstr "" 61 69 62 #: pages-admin/admin-gcs.php:1 1270 #: pages-admin/admin-gcs.php:158 63 71 msgid "Humanized statistics - General configuration" 64 72 msgstr "" 65 73 66 #: pages-admin/admin-gcs.php:116 74 #: pages-admin/admin-gcs.php:162 75 #: pages-admin/admin-gcs.php:509 76 msgid "Save Changes" 77 msgstr "" 78 79 #: pages-admin/admin-gcs.php:229 80 msgid "Options plugin theme in dashboard" 81 msgstr "" 82 83 #: pages-admin/admin-gcs.php:232 84 msgid "Themify the plugin with..." 85 msgstr "" 86 87 #: pages-admin/admin-gcs.php:244 88 msgid "Themify your administration (bar, buttons,...)" 89 msgstr "" 90 91 #: pages-admin/admin-gcs.php:249 92 msgid "Themify datas with 3D Chart" 93 msgstr "" 94 95 #: pages-admin/admin-gcs.php:260 96 msgid "Themify your visual datas with Chart 3D" 97 msgstr "" 98 99 #: pages-admin/admin-gcs.php:264 100 msgid "Options performance" 101 msgstr "" 102 103 #: pages-admin/admin-gcs.php:267 104 msgid "Collect statistics of 1 user every..." 105 msgstr "" 106 107 #: pages-admin/admin-gcs.php:273 108 msgid "Decrease request if your site has a lot of visitors. This option don't affects any others statistics and the plugin creates an accurate assessment. You may leave 1 to disable this option and hit 1/1 user. You may use left and right arrow keys on your keyboard to decrease or increase this option." 109 msgstr "" 110 111 #: pages-admin/admin-gcs.php:276 112 msgid "Options social networks referers" 113 msgstr "" 114 115 #: pages-admin/admin-gcs.php:276 116 msgid "World" 117 msgstr "" 118 119 #: pages-admin/admin-gcs.php:279 120 msgid "Collect statistics for Facebook referer" 121 msgstr "" 122 123 #: pages-admin/admin-gcs.php:289 124 msgid "Turn Off or On for statistics survey of facebook.com" 125 msgstr "" 126 127 #: pages-admin/admin-gcs.php:294 128 msgid "Collect statistics for Twitter referer" 129 msgstr "" 130 131 #: pages-admin/admin-gcs.php:304 132 msgid "Turn Off or On for statistics survey of twitter.com" 133 msgstr "" 134 135 #: pages-admin/admin-gcs.php:309 136 msgid "Collect statistics for Google+ referer" 137 msgstr "" 138 139 #: pages-admin/admin-gcs.php:319 140 msgid "Turn Off or On for statistics survey of plus.google.com" 141 msgstr "" 142 143 #: pages-admin/admin-gcs.php:324 144 msgid "Collect statistics for Linkedin referer" 145 msgstr "" 146 147 #: pages-admin/admin-gcs.php:334 148 msgid "Turn Off or On for statistics survey of linkedin.com" 149 msgstr "" 150 151 #: pages-admin/admin-gcs.php:337 152 msgid "Pinboard" 153 msgstr "" 154 155 #: pages-admin/admin-gcs.php:340 156 msgid "Collect statistics for Pinterest referer" 157 msgstr "" 158 159 #: pages-admin/admin-gcs.php:350 160 msgid "Turn Off or On for statistics survey of pinterest.com" 161 msgstr "" 162 67 163 #: pages-admin/admin-gcs.php:355 68 msgid "Save Changes"69 msgstr ""70 71 #: pages-admin/admin-gcs.php:16672 msgid "Options plugin theme in dashboard"73 msgstr ""74 75 #: pages-admin/admin-gcs.php:16976 msgid "Themify the plugin with..."77 msgstr ""78 79 #: pages-admin/admin-gcs.php:18180 msgid "Themify your administration (bar, buttons,...)"81 msgstr ""82 83 #: pages-admin/admin-gcs.php:18684 msgid "Themify datas with 3D Chart"85 msgstr ""86 87 #: pages-admin/admin-gcs.php:19788 msgid "Themify your visual datas with Chart 3D"89 msgstr ""90 91 #: pages-admin/admin-gcs.php:20192 msgid "Options performance"93 msgstr ""94 95 #: pages-admin/admin-gcs.php:20496 msgid "Collect statistics of 1 user every..."97 msgstr ""98 99 #: pages-admin/admin-gcs.php:210100 msgid "Decrease request if your site has a lot of visitors. This option don't affects any others statistics and the plugin creates an accurate assessment. You may leave 1 to disable this option and hit 1/1 user. You may use left and right arrow keys on your keyboard to decrease or increase this option."101 msgstr ""102 103 #: pages-admin/admin-gcs.php:213104 msgid "Options social networks referers"105 msgstr ""106 107 #: pages-admin/admin-gcs.php:213108 msgid "World"109 msgstr ""110 111 #: pages-admin/admin-gcs.php:216112 msgid "Collect statistics for Facebook referer"113 msgstr ""114 115 #: pages-admin/admin-gcs.php:226116 msgid "Turn Off or On for statistics survey of facebook.com"117 msgstr ""118 119 #: pages-admin/admin-gcs.php:231120 msgid "Collect statistics for Twitter referer"121 msgstr ""122 123 #: pages-admin/admin-gcs.php:241124 msgid "Turn Off or On for statistics survey of twitter.com"125 msgstr ""126 127 #: pages-admin/admin-gcs.php:246128 msgid "Collect statistics for Google+ referer"129 msgstr ""130 131 #: pages-admin/admin-gcs.php:256132 msgid "Turn Off or On for statistics survey of plus.google.com"133 msgstr ""134 135 #: pages-admin/admin-gcs.php:261136 msgid "Collect statistics for Linkedin referer"137 msgstr ""138 139 #: pages-admin/admin-gcs.php:271140 msgid "Turn Off or On for statistics survey of linkedin.com"141 msgstr ""142 143 #: pages-admin/admin-gcs.php:274144 msgid "Pinboard"145 msgstr ""146 147 #: pages-admin/admin-gcs.php:277148 msgid "Collect statistics for Pinterest referer"149 msgstr ""150 151 #: pages-admin/admin-gcs.php:287152 msgid "Turn Off or On for statistics survey of pinterest.com"153 msgstr ""154 155 #: pages-admin/admin-gcs.php:292156 164 msgid "Collect statistics for Scoop.it referer" 157 165 msgstr "" 158 166 159 #: pages-admin/admin-gcs.php:3 02167 #: pages-admin/admin-gcs.php:365 160 168 msgid "Turn Off or On for statistics survey of scoop.it" 161 169 msgstr "" 162 170 163 #: pages-admin/admin-gcs.php:3 05171 #: pages-admin/admin-gcs.php:368 164 172 msgid "Main China" 165 173 msgstr "" 166 174 167 #: pages-admin/admin-gcs.php:3 08175 #: pages-admin/admin-gcs.php:371 168 176 msgid "Collect statistics for Qzone referer" 169 177 msgstr "" 170 178 171 #: pages-admin/admin-gcs.php:3 18179 #: pages-admin/admin-gcs.php:381 172 180 msgid "Turn Off or On for statistics survey of qzone.qq.com" 173 181 msgstr "" 174 182 175 #: pages-admin/admin-gcs.php:3 23183 #: pages-admin/admin-gcs.php:386 176 184 msgid "Collect statistics for Weibo referer" 177 185 msgstr "" 178 186 179 #: pages-admin/admin-gcs.php:3 33187 #: pages-admin/admin-gcs.php:396 180 188 msgid "Turn Off or On for statistics survey of weibo.com" 181 189 msgstr "" 182 190 183 #: pages-admin/admin-gcs.php:3 36191 #: pages-admin/admin-gcs.php:399 184 192 msgid "Main Russia" 185 193 msgstr "" 186 194 187 #: pages-admin/admin-gcs.php: 339195 #: pages-admin/admin-gcs.php:402 188 196 msgid "Collect statistics for vk referer" 189 197 msgstr "" 190 198 191 #: pages-admin/admin-gcs.php: 349199 #: pages-admin/admin-gcs.php:412 192 200 msgid "Turn Off or On for statistics survey of vk.com" 193 201 msgstr "" 194 202 195 #: pages-admin/admin-gcs.php:370 196 #: pages-admin/admin-gcs.php:376 203 #: pages-admin/admin-gcs.php:416 204 msgid "Personal referers" 205 msgstr "" 206 207 #: pages-admin/admin-gcs.php:419 208 msgid "Your personal referers" 209 msgstr "" 210 211 #: pages-admin/admin-gcs.php:428 212 msgid "Add your personal referer seperate by coma (Add only domain.tld without http://www.)" 213 msgstr "" 214 215 #: pages-admin/admin-gcs.php:450 216 msgid "Please decrease your personal active referers or replace some oldest by newest for performance purpose (personal referers active in same time must be < or = to 5 to have already good site performance)" 217 msgstr "" 218 219 #: pages-admin/admin-gcs.php:457 220 msgid "Collect statistics for" 221 msgstr "" 222 223 #: pages-admin/admin-gcs.php:457 224 msgid "referer" 225 msgstr "" 226 227 #: pages-admin/admin-gcs.php:471 228 msgid "Turn Off or On for statistics survey of" 229 msgstr "" 230 231 #: pages-admin/admin-gcs.php:477 232 msgid "Reset Options" 233 msgstr "" 234 235 #: pages-admin/admin-gcs.php:480 236 msgid "Reset posts and pages statistics" 237 msgstr "" 238 239 #: pages-admin/admin-gcs.php:489 240 msgid "Turn On to reset all statistics to zero on all posts and pages stats" 241 msgstr "" 242 243 #: pages-admin/admin-gcs.php:494 244 msgid "Reset users statistics" 245 msgstr "" 246 247 #: pages-admin/admin-gcs.php:503 248 msgid "Turn On to reset all statistics to zero for all users stats" 249 msgstr "" 250 251 #: pages-admin/admin-gcs.php:524 252 #: pages-admin/admin-gcs.php:530 197 253 msgid "Statistics Performances" 198 254 msgstr "" 199 255 200 #: pages-admin/admin-gcs.php: 382201 #: pages-admin/admin-gcs.php: 388256 #: pages-admin/admin-gcs.php:536 257 #: pages-admin/admin-gcs.php:542 202 258 msgid "Statistics Organics" 203 259 msgstr "" 204 260 205 #: pages-admin/admin-gcs.php: 394206 #: pages-admin/admin-gcs.php: 400261 #: pages-admin/admin-gcs.php:548 262 #: pages-admin/admin-gcs.php:554 207 263 msgid "Statistics Networks" 208 264 msgstr "" 209 265 210 #: pages-admin/admin-gcs.php: 406211 #: pages-admin/admin-gcs.php: 412266 #: pages-admin/admin-gcs.php:560 267 #: pages-admin/admin-gcs.php:566 212 268 msgid "Statistics Users" 213 269 msgstr "" 214 270 215 #: pages-admin/admin-gcs.php: 630216 #: pages-admin/admin-gcs.php: 737271 #: pages-admin/admin-gcs.php:784 272 #: pages-admin/admin-gcs.php:891 217 273 #: pages-admin/admin-home.php:109 218 274 #: pages-admin/admin-home.php:184 … … 221 277 msgstr "" 222 278 223 #: pages-admin/admin-gcs.php: 826279 #: pages-admin/admin-gcs.php:980 224 280 msgid "Normal" 225 281 msgstr "" 226 282 227 #: pages-admin/admin-gcs.php: 828283 #: pages-admin/admin-gcs.php:982 228 284 msgid "Sticky" 229 285 msgstr "" 230 286 231 #: pages-admin/admin-gcs.php: 895287 #: pages-admin/admin-gcs.php:1049 232 288 msgid "Connected" 233 289 msgstr "" 234 290 235 #: pages-admin/admin-gcs.php: 896291 #: pages-admin/admin-gcs.php:1050 236 292 msgid "Disconnected" 237 293 msgstr "" 238 294 239 #: pages-admin/admin-gcs.php:1 110295 #: pages-admin/admin-gcs.php:1264 240 296 msgid "Known" 241 297 msgstr "" 242 298 243 #: pages-admin/admin-gcs.php:1 112299 #: pages-admin/admin-gcs.php:1266 244 300 msgid "Unknown" 245 301 msgstr "" -
humanized-statistics/trunk/wp-languages/gcs.POT
r603539 r2515223 3 3 "Project-Id-Version: gcs\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2012- 08-20 20:22+0100\n"6 "PO-Revision-Date: 2012- 08-20 20:23+0100\n"5 "POT-Creation-Date: 2012-11-04 12:53+0100\n" 6 "PO-Revision-Date: 2012-11-04 12:54+0100\n" 7 7 "Last-Translator: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n" 8 8 "Language-Team: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "Language: en_US\n"13 12 "X-Poedit-KeywordsList: __;_e\n" 14 13 "X-Poedit-Basepath: ../\n" 14 "X-Poedit-Language: English\n" 15 "X-Poedit-Country: UNITED STATES\n" 15 16 "X-Poedit-SourceCharset: utf-8\n" 16 17 "X-Poedit-SearchPath-0: .\n" 17 18 18 #: google-chart-statistics.php: 1819 #: google-chart-statistics.php:36 19 20 #: pages-admin/admin-cats.php:8 20 21 #: pages-admin/admin-gcs.php:8 … … 23 24 msgstr "" 24 25 25 #: google-chart-statistics.php: 3526 #: google-chart-statistics.php:51 26 27 msgid "Statistics" 27 28 msgstr "" 28 29 29 #: google-chart-statistics.php: 3630 #: google-chart-statistics.php:52 30 31 msgid "General configuration" 31 32 msgstr "" … … 36 37 37 38 #: pages-admin/admin-cats.php:29 38 msgid " Google chartstatistics - Categories statistics"39 msgstr "" 40 41 #: pages-admin/admin-cats.php:3 339 msgid "Humanized statistics - Categories statistics" 40 msgstr "" 41 42 #: pages-admin/admin-cats.php:37 42 43 msgid "Statistics categories most visited by all users" 43 44 msgstr "" 44 45 45 #: pages-admin/admin-cats.php: 9046 #: pages-admin/admin-cats.php:101 46 47 msgid "Currently no datas for categories most visited" 47 48 msgstr "" 48 49 49 #: pages-admin/admin-cats.php: 9650 #: pages-admin/admin-cats.php:107 50 51 msgid "Statistics categories most prefered by known users" 51 52 msgstr "" 52 53 53 #: pages-admin/admin-cats.php:1 5854 #: pages-admin/admin-cats.php:172 54 55 msgid "Currently no datas for categories prefered by known users" 55 56 msgstr "" 56 57 57 #: pages-admin/admin-gcs.php:103 58 #: pages-admin/admin-gcs.php:133 59 msgid "Posts and pages statistics have been resetted" 60 msgstr "" 61 62 #: pages-admin/admin-gcs.php:144 63 msgid "Users statistics have been resetted" 64 msgstr "" 65 66 #: pages-admin/admin-gcs.php:149 58 67 msgid "Your settings have been saved" 59 68 msgstr "" 60 69 61 #: pages-admin/admin-gcs.php:112 62 msgid "Google chart statistics - General configuration" 63 msgstr "" 64 65 #: pages-admin/admin-gcs.php:116 70 #: pages-admin/admin-gcs.php:158 71 msgid "Humanized statistics - General configuration" 72 msgstr "" 73 74 #: pages-admin/admin-gcs.php:162 75 #: pages-admin/admin-gcs.php:509 76 msgid "Save Changes" 77 msgstr "" 78 79 #: pages-admin/admin-gcs.php:229 80 msgid "Options plugin theme in dashboard" 81 msgstr "" 82 83 #: pages-admin/admin-gcs.php:232 84 msgid "Themify the plugin with..." 85 msgstr "" 86 87 #: pages-admin/admin-gcs.php:244 88 msgid "Themify your administration (bar, buttons,...)" 89 msgstr "" 90 91 #: pages-admin/admin-gcs.php:249 92 msgid "Themify datas with 3D Chart" 93 msgstr "" 94 95 #: pages-admin/admin-gcs.php:260 96 msgid "Themify your visual datas with Chart 3D" 97 msgstr "" 98 99 #: pages-admin/admin-gcs.php:264 100 msgid "Options performance" 101 msgstr "" 102 103 #: pages-admin/admin-gcs.php:267 104 msgid "Collect statistics of 1 user every..." 105 msgstr "" 106 107 #: pages-admin/admin-gcs.php:273 108 msgid "Decrease request if your site has a lot of visitors. This option don't affects any others statistics and the plugin creates an accurate assessment. You may leave 1 to disable this option and hit 1/1 user. You may use left and right arrow keys on your keyboard to decrease or increase this option." 109 msgstr "" 110 111 #: pages-admin/admin-gcs.php:276 112 msgid "Options social networks referers" 113 msgstr "" 114 115 #: pages-admin/admin-gcs.php:276 116 msgid "World" 117 msgstr "" 118 119 #: pages-admin/admin-gcs.php:279 120 msgid "Collect statistics for Facebook referer" 121 msgstr "" 122 123 #: pages-admin/admin-gcs.php:289 124 msgid "Turn Off or On for statistics survey of facebook.com" 125 msgstr "" 126 127 #: pages-admin/admin-gcs.php:294 128 msgid "Collect statistics for Twitter referer" 129 msgstr "" 130 131 #: pages-admin/admin-gcs.php:304 132 msgid "Turn Off or On for statistics survey of twitter.com" 133 msgstr "" 134 135 #: pages-admin/admin-gcs.php:309 136 msgid "Collect statistics for Google+ referer" 137 msgstr "" 138 139 #: pages-admin/admin-gcs.php:319 140 msgid "Turn Off or On for statistics survey of plus.google.com" 141 msgstr "" 142 143 #: pages-admin/admin-gcs.php:324 144 msgid "Collect statistics for Linkedin referer" 145 msgstr "" 146 147 #: pages-admin/admin-gcs.php:334 148 msgid "Turn Off or On for statistics survey of linkedin.com" 149 msgstr "" 150 151 #: pages-admin/admin-gcs.php:337 152 msgid "Pinboard" 153 msgstr "" 154 155 #: pages-admin/admin-gcs.php:340 156 msgid "Collect statistics for Pinterest referer" 157 msgstr "" 158 159 #: pages-admin/admin-gcs.php:350 160 msgid "Turn Off or On for statistics survey of pinterest.com" 161 msgstr "" 162 66 163 #: pages-admin/admin-gcs.php:355 67 msgid "Save Changes"68 msgstr ""69 70 #: pages-admin/admin-gcs.php:16671 msgid "Options plugin theme in dashboard"72 msgstr ""73 74 #: pages-admin/admin-gcs.php:16975 msgid "Themify the plugin with..."76 msgstr ""77 78 #: pages-admin/admin-gcs.php:18179 msgid "Themify your administration (bar, buttons,...)"80 msgstr ""81 82 #: pages-admin/admin-gcs.php:18683 msgid "Themify datas with 3D Chart"84 msgstr ""85 86 #: pages-admin/admin-gcs.php:19787 msgid "Themify your visual datas with Chart 3D"88 msgstr ""89 90 #: pages-admin/admin-gcs.php:20191 msgid "Options performance"92 msgstr ""93 94 #: pages-admin/admin-gcs.php:20495 msgid "Collect statistics of 1 user every..."96 msgstr ""97 98 #: pages-admin/admin-gcs.php:21099 msgid "Decrease request if your site has a lot of visitors. This option don't affects any others statistics and the plugin creates an accurate assessment. You may leave 1 to disable this option and hit 1/1 user. You may use left and right arrow keys on your keyboard to decrease or increase this option."100 msgstr ""101 102 #: pages-admin/admin-gcs.php:213103 msgid "Options social networks referers"104 msgstr ""105 106 #: pages-admin/admin-gcs.php:213107 msgid "World"108 msgstr ""109 110 #: pages-admin/admin-gcs.php:216111 msgid "Collect statistics for Facebook referer"112 msgstr ""113 114 #: pages-admin/admin-gcs.php:226115 msgid "Turn Off or On for statistics survey of facebook.com"116 msgstr ""117 118 #: pages-admin/admin-gcs.php:231119 msgid "Collect statistics for Twitter referer"120 msgstr ""121 122 #: pages-admin/admin-gcs.php:241123 msgid "Turn Off or On for statistics survey of twitter.com"124 msgstr ""125 126 #: pages-admin/admin-gcs.php:246127 msgid "Collect statistics for Google+ referer"128 msgstr ""129 130 #: pages-admin/admin-gcs.php:256131 msgid "Turn Off or On for statistics survey of plus.google.com"132 msgstr ""133 134 #: pages-admin/admin-gcs.php:261135 msgid "Collect statistics for Linkedin referer"136 msgstr ""137 138 #: pages-admin/admin-gcs.php:271139 msgid "Turn Off or On for statistics survey of linkedin.com"140 msgstr ""141 142 #: pages-admin/admin-gcs.php:274143 msgid "Pinboard"144 msgstr ""145 146 #: pages-admin/admin-gcs.php:277147 msgid "Collect statistics for Pinterest referer"148 msgstr ""149 150 #: pages-admin/admin-gcs.php:287151 msgid "Turn Off or On for statistics survey of pinterest.com"152 msgstr ""153 154 #: pages-admin/admin-gcs.php:292155 164 msgid "Collect statistics for Scoop.it referer" 156 165 msgstr "" 157 166 158 #: pages-admin/admin-gcs.php:3 02167 #: pages-admin/admin-gcs.php:365 159 168 msgid "Turn Off or On for statistics survey of scoop.it" 160 169 msgstr "" 161 170 162 #: pages-admin/admin-gcs.php:3 05171 #: pages-admin/admin-gcs.php:368 163 172 msgid "Main China" 164 173 msgstr "" 165 174 166 #: pages-admin/admin-gcs.php:3 08175 #: pages-admin/admin-gcs.php:371 167 176 msgid "Collect statistics for Qzone referer" 168 177 msgstr "" 169 178 170 #: pages-admin/admin-gcs.php:3 18179 #: pages-admin/admin-gcs.php:381 171 180 msgid "Turn Off or On for statistics survey of qzone.qq.com" 172 181 msgstr "" 173 182 174 #: pages-admin/admin-gcs.php:3 23183 #: pages-admin/admin-gcs.php:386 175 184 msgid "Collect statistics for Weibo referer" 176 185 msgstr "" 177 186 178 #: pages-admin/admin-gcs.php:3 33187 #: pages-admin/admin-gcs.php:396 179 188 msgid "Turn Off or On for statistics survey of weibo.com" 180 189 msgstr "" 181 190 182 #: pages-admin/admin-gcs.php:3 36191 #: pages-admin/admin-gcs.php:399 183 192 msgid "Main Russia" 184 193 msgstr "" 185 194 186 #: pages-admin/admin-gcs.php: 339195 #: pages-admin/admin-gcs.php:402 187 196 msgid "Collect statistics for vk referer" 188 197 msgstr "" 189 198 190 #: pages-admin/admin-gcs.php: 349199 #: pages-admin/admin-gcs.php:412 191 200 msgid "Turn Off or On for statistics survey of vk.com" 192 201 msgstr "" 193 202 194 #: pages-admin/admin-gcs.php:370 195 #: pages-admin/admin-gcs.php:376 203 #: pages-admin/admin-gcs.php:416 204 msgid "Personal referers" 205 msgstr "" 206 207 #: pages-admin/admin-gcs.php:419 208 msgid "Your personal referers" 209 msgstr "" 210 211 #: pages-admin/admin-gcs.php:428 212 msgid "Add your personal referer seperate by coma (Add only domain.tld without http://www.)" 213 msgstr "" 214 215 #: pages-admin/admin-gcs.php:450 216 msgid "Please decrease your personal active referers or replace some oldest by newest for performance purpose (personal referers active in same time must be < or = to 5 to have already good site performance)" 217 msgstr "" 218 219 #: pages-admin/admin-gcs.php:457 220 msgid "Collect statistics for" 221 msgstr "" 222 223 #: pages-admin/admin-gcs.php:457 224 msgid "referer" 225 msgstr "" 226 227 #: pages-admin/admin-gcs.php:471 228 msgid "Turn Off or On for statistics survey of" 229 msgstr "" 230 231 #: pages-admin/admin-gcs.php:477 232 msgid "Reset Options" 233 msgstr "" 234 235 #: pages-admin/admin-gcs.php:480 236 msgid "Reset posts and pages statistics" 237 msgstr "" 238 239 #: pages-admin/admin-gcs.php:489 240 msgid "Turn On to reset all statistics to zero on all posts and pages stats" 241 msgstr "" 242 243 #: pages-admin/admin-gcs.php:494 244 msgid "Reset users statistics" 245 msgstr "" 246 247 #: pages-admin/admin-gcs.php:503 248 msgid "Turn On to reset all statistics to zero for all users stats" 249 msgstr "" 250 251 #: pages-admin/admin-gcs.php:524 252 #: pages-admin/admin-gcs.php:530 196 253 msgid "Statistics Performances" 197 254 msgstr "" 198 255 199 #: pages-admin/admin-gcs.php: 382200 #: pages-admin/admin-gcs.php: 388256 #: pages-admin/admin-gcs.php:536 257 #: pages-admin/admin-gcs.php:542 201 258 msgid "Statistics Organics" 202 259 msgstr "" 203 260 204 #: pages-admin/admin-gcs.php: 394205 #: pages-admin/admin-gcs.php: 400261 #: pages-admin/admin-gcs.php:548 262 #: pages-admin/admin-gcs.php:554 206 263 msgid "Statistics Networks" 207 264 msgstr "" 208 265 209 #: pages-admin/admin-gcs.php: 406210 #: pages-admin/admin-gcs.php: 412266 #: pages-admin/admin-gcs.php:560 267 #: pages-admin/admin-gcs.php:566 211 268 msgid "Statistics Users" 212 269 msgstr "" 213 270 214 #: pages-admin/admin-gcs.php:418 215 #: pages-admin/admin-gcs.php:424 216 msgid "Statistics Humanized" 217 msgstr "" 218 219 #: pages-admin/admin-gcs.php:830 271 #: pages-admin/admin-gcs.php:784 272 #: pages-admin/admin-gcs.php:891 273 #: pages-admin/admin-home.php:109 274 #: pages-admin/admin-home.php:184 275 #: pages-admin/admin-home.php:259 276 msgid "Currently no datas" 277 msgstr "" 278 279 #: pages-admin/admin-gcs.php:980 220 280 msgid "Normal" 221 281 msgstr "" 222 282 223 #: pages-admin/admin-gcs.php: 832283 #: pages-admin/admin-gcs.php:982 224 284 msgid "Sticky" 225 285 msgstr "" 226 286 227 #: pages-admin/admin-gcs.php: 899287 #: pages-admin/admin-gcs.php:1049 228 288 msgid "Connected" 229 289 msgstr "" 230 290 231 #: pages-admin/admin-gcs.php: 900291 #: pages-admin/admin-gcs.php:1050 232 292 msgid "Disconnected" 233 293 msgstr "" 234 294 235 #: pages-admin/admin-gcs.php:1 114295 #: pages-admin/admin-gcs.php:1264 236 296 msgid "Known" 237 297 msgstr "" 238 298 239 #: pages-admin/admin-gcs.php:1 116299 #: pages-admin/admin-gcs.php:1266 240 300 msgid "Unknown" 241 301 msgstr "" … … 246 306 247 307 #: pages-admin/admin-home.php:29 248 msgid " Google chartstatistics - Home statistics"249 msgstr "" 250 251 #: pages-admin/admin-home.php:3 3308 msgid "Humanized statistics - Home statistics" 309 msgstr "" 310 311 #: pages-admin/admin-home.php:37 252 312 msgid "Statistics home page total sticky VS normal" 253 313 msgstr "" 254 314 255 #: pages-admin/admin-home.php:90 256 msgid "Currently no datas for home page" 257 msgstr "" 258 315 #: pages-admin/admin-home.php:115 316 msgid "Statistics home page from normal posts - user in bounce to" 317 msgstr "" 318 319 #: pages-admin/admin-home.php:190 320 msgid "Statistics home page from sticky posts - user in bounce to" 321 msgstr "" 322
Note: See TracChangeset
for help on using the changeset viewer.