Plugin Directory

Changeset 2515223


Ignore:
Timestamp:
04/14/2021 11:25:08 PM (5 years ago)
Author:
KwarK
Message:

Bug correction where the datas collection from networks and organics was stopped.

Location:
humanized-statistics/trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • humanized-statistics/trunk/google-chart-statistics.php

    r603539 r2515223  
    55Description: Statistics for wordpress by posts, by pages and for home page (sticky posts vs normal posts), and by categories
    66Author: Laurent (KwarK) Bertrand
    7 Version: 0.1
     7Version: 0.6
    88Author URI: http://kwark.allwebtuts.net
    99*/
     
    110110   
    111111        foreach ($settings as $v) {
    112             delete_option( ''.$v.'' );
     112            delete_option($v);
    113113        }
    114114    //Delete remains
     
    199199
    200200//Main function for all statistics collector
    201 add_filter('the_content', 'gcs_filter_statistics');
    202 
    203 function gcs_filter_statistics($content)
     201add_filter('the_content', 'gcs_recolt_datas');
     202
     203function gcs_recolt_datas($content)
    204204{
    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;
    208211       
    209212        $mule = get_option('gcs_request_divisor');
    210213       
     214        $userlog = is_user_logged_in();
     215       
    211216        if(!$mule)
    212         $mule = 1;
     217            $mule = 1;
    213218       
    214219        $hit = 0;
     
    220225        $counter = $hit / $mule;
    221226       
    222         //ONLY HERE FOR PERFORMANCE TEST ON LOCALHOST - LEAVE COMMENTED
    223         /*$before = (float)preg_replace('#,#', '.', timer_stop(0));*/
    224        
    225227        if(is_int($counter)) //To make sur if gcs_hit > (int) 1... (after a php warning, or others problems)
    226228        {
    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           
    228231            //Get all meta (one request)
    229232            $gcs = get_post_meta($id);
     
    237240           
    238241            //Filter IP and Total known visitors statistics + known users by browser languages
    239             if(is_user_logged_in())
     242            if($userlog)
    240243            {
    241244                $user_ip = get_user_meta($user_ID, 'gcs_ip', true);
     
    259262                {
    260263                    $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);
    279268                }
    280269            }
    281270           
    282271            //Total unknown visitors statistics + unknown users by browser languages
    283             if(!is_user_logged_in())
     272            if(!$userlog)
    284273            {
    285                 global $wpdb;
    286                
    287274                $verif_ip = $wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->usermeta WHERE meta_key='gcs_ip' AND meta_value=%s", $userip));
    288275                //Unknow user
     
    300287                    {
    301288                        $count = 0;
    302                         $count = $gcs['gcs_total_unknown_'.$browser_language.''][0];
     289                        $count = $gcs['gcs_total_unknown_'.$browser_language][0];
    303290                       
    304291                        $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);
    306293                    }
    307294                }
     
    321308                    {
    322309                        $count = 0;
    323                         $count = $gcs['gcs_total_known_'.$browser_language.''][0];
     310                        $count = $gcs['gcs_total_known_'.$browser_language][0];
    324311                       
    325312                        $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);
    327314                    }
    328315                   
     
    337324           
    338325            //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']);
    340327            /*var_dump($from);*/
     328            /* echo '<pre>';
     329            print_r($referer);
     330            echo '</pre>'; */
     331
    341332            if($referer)
    342333            {
    343334                $temp = parse_url($referer);
    344335                $from = $temp['host'];
     336
     337                //var_dump($from);
    345338               
    346339                //www + host name + extension
     
    349342                //host name + extension
    350343                $referer_full = preg_replace('#www\.#', '', $from);
    351                 /*var_dump($referer_full);*/
    352344               
    353345                //Update by social referers
    354346                $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)
    360356                    {
    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                        }
    369370                    }
    370371                }
    371            
     372               
    372373                //Update internal referer
    373                 $site_url = get_bloginfo('wpurl');
    374374                $internal_dom = preg_replace('#http://|https://|/$#', '', $site_url);
    375375                $current_url = preg_replace('#/$#', '', get_permalink());
     
    412412                   
    413413                    $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);
    418418                }
    419419            }
    420            
    421             //Update post meta total by categories
    422             $category = get_the_category();
    423             $cat = $category[0]->term_id;
    424420           
    425421            if($cat)
    426422            {
    427423                $count = 0;
    428                 $count = $gcs['gcs_category_'.$cat.''][0];
     424                $count = $gcs['gcs_category_'.$cat][0];
    429425               
    430426                $up = $count + $mule;
    431                 update_post_meta($id, 'gcs_category_'.$cat.'', $up);
     427                update_post_meta($id, 'gcs_category_'.$cat, $up);
    432428            }
    433429           
     
    459455               
    460456                $count = 0;
    461                 $count = $gcs['gcs_browser_'.$navigator.''][0];
     457                $count = $gcs['gcs_browser_'.$navigator][0];
    462458               
    463459                //Update counter by navigator
    464460                $up = $count + $mule;
    465                 update_post_meta($id, 'gcs_browser_'.$navigator.'', $up);
     461                update_post_meta($id, 'gcs_browser_'.$navigator, $up);
    466462               
    467463                //Update number queries
     
    475471               
    476472                //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 date
    481                 }
    482473                $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);
    488475            }
    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             }*/
    500476        }
    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    }
    507488    return $content;
    508 }//END main function statistics collector
     489}
    509490?>
  • humanized-statistics/trunk/pages-admin/admin-gcs.php

    r603539 r2515223  
    3232    if(isset($_POST['submitted']) && $_POST['submitted'] == "yes")
    3333    {
     34        global $wpdb;
     35       
    3436        //Requests divisor
    3537        $gcs_request_divisor = stripslashes($_POST['gcs_request_divisor']);
     
    7678        $vk_referer = stripslashes($_POST['vk_referer']);
    7779        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);
    7883       
    7984        //Construct referers
     
    9297        $temp[] = get_option('vk_referer');
    9398       
     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       
    94118        if($temp)
    95119        {
     
    97121            update_option('gcs_social', $gcs_social);
    98122           
    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>';
    100146        }
    101147       
     
    174220            //Main Russia
    175221            $("#vk").buttonset();
     222           
     223            //Reset options
     224            $("#resetpostspages").buttonset();
     225            $("#resetusers").buttonset();
    176226        });
    177227        </script>
     
    192242         <td scope="row"></td>
    193243        <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>
    195245          </td>
    196246      </tr>
     
    208258         <td scope="row"></td>
    209259        <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>
    211261        </td>
    212262      </tr>
     
    221271        </td>
    222272        <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>
    224274      </tr>
    225275      </table><br /><table class="widefat options" style="width: 650px">
     
    237287         <td scope="row">&nbsp;</td>
    238288        <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>
    240290          </td>
    241291      </tr>
     
    252302         <td scope="row">&nbsp;</td>
    253303        <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>
    255305        </td>
    256306      </tr>
     
    267317         <td scope="row">&nbsp;</td>
    268318        <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>
    270320        </td>
    271321      </tr>
     
    282332         <td scope="row">&nbsp;</td>
    283333        <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>
    285335         </td>
    286336      </tr>
     
    298348         <td scope="row">&nbsp;</td>
    299349        <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>
    301351        </td>
    302352      </tr>
     
    313363         <td scope="row">&nbsp;</td>
    314364        <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>
    316366        </td>
    317367      </tr>
     
    329379         <td scope="row">&nbsp;</td>
    330380        <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>
    332382        </td>
    333383      </tr>
     
    344394         <td scope="row">&nbsp;</td>
    345395        <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>
    347397        </td>
    348398      </tr>
     
    360410         <td scope="row">&nbsp;</td>
    361411        <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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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>
    364505      </tr>
    365506      </table>
     
    495636                $stat_name = strtoupper($stat_name[5]);
    496637               
    497                 echo '[\''.$stat_name.'\', '.preg_replace('#,#', '.', $stat_value).'],';
     638                echo '[\''.$stat_name.'\', '.preg_replace('#, |,#', '.', $stat_value).'],';
    498639            }
    499640            ?>
  • humanized-statistics/trunk/readme.txt

    r635459 r2515223  
    44Donate link: http://kwark.allwebtuts.net/
    55Tags: 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.2
    7 Stable tag: 0.6
     6Tested up to: 5.6
     7Stable tag: 0.7
    88
    99Recolt datas by post and page with post_meta and display it with the Api Google chart on each post and page
     
    4343== Changelog ==
    4444
     45= 0.7 =
     46
     47* Bug correction where the datas collection from networks and organics was stopped.
     48
    4549= 0.6 =
    4650
  • humanized-statistics/trunk/wp-languages/gcs-fr_FR.PO

    r603539 r2515223  
    33"Project-Id-Version: gcs\n"
    44"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"
    77"Last-Translator: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n"
    88"Language-Team: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n"
     
    2424msgstr "Désolé mais vous ne pouvez pas accéder à cette page directement."
    2525
    26 #: google-chart-statistics.php:54
     26#: google-chart-statistics.php:51
    2727msgid "Statistics"
    2828msgstr "Statistiques"
    2929
    30 #: google-chart-statistics.php:55
     30#: google-chart-statistics.php:52
    3131msgid "General configuration"
    3232msgstr "General configuration"
     
    5656msgstr "Actuellement, pas de données pour les catégories préférées des utilisateurs connus"
    5757
    58 #: pages-admin/admin-gcs.php:103
     58#: pages-admin/admin-gcs.php:133
     59msgid "Posts and pages statistics have been resetted"
     60msgstr "Les statistiques articles et pages ont été remis à zéro"
     61
     62#: pages-admin/admin-gcs.php:144
     63msgid "Users statistics have been resetted"
     64msgstr "Users statistiques ont été remise à zéro"
     65
     66#: pages-admin/admin-gcs.php:149
    5967msgid "Your settings have been saved"
    6068msgstr "Vos options ont été sauvegardées"
    6169
    62 #: pages-admin/admin-gcs.php:112
     70#: pages-admin/admin-gcs.php:158
    6371msgid "Humanized statistics - General configuration"
    6472msgstr "Humanized statistics - General configuration"
    6573
    66 #: pages-admin/admin-gcs.php:116
    67 #: pages-admin/admin-gcs.php:355
     74#: pages-admin/admin-gcs.php:162
     75#: pages-admin/admin-gcs.php:509
    6876msgid "Save Changes"
    6977msgstr "Sauvegarder"
    7078
    71 #: pages-admin/admin-gcs.php:166
     79#: pages-admin/admin-gcs.php:229
    7280msgid "Options plugin theme in dashboard"
    7381msgstr "Options theme du plugin dans le tableau de bord"
    7482
    75 #: pages-admin/admin-gcs.php:169
     83#: pages-admin/admin-gcs.php:232
    7684msgid "Themify the plugin with..."
    7785msgstr "Themify le plugin avec..."
    7886
    79 #: pages-admin/admin-gcs.php:181
     87#: pages-admin/admin-gcs.php:244
    8088msgid "Themify your administration (bar, buttons,...)"
    8189msgstr "Themify votre administration (barre, boutons,...)"
    8290
    83 #: pages-admin/admin-gcs.php:186
     91#: pages-admin/admin-gcs.php:249
    8492msgid "Themify datas with 3D Chart"
    8593msgstr "Themify les données avec effet 3D Chart"
    8694
    87 #: pages-admin/admin-gcs.php:197
     95#: pages-admin/admin-gcs.php:260
    8896msgid "Themify your visual datas with Chart 3D"
    8997msgstr "Themify les données visuelles avec Chart ayant un effet de bord en 3D"
    9098
    91 #: pages-admin/admin-gcs.php:201
     99#: pages-admin/admin-gcs.php:264
    92100msgid "Options performance"
    93101msgstr "Options performance"
    94102
    95 #: pages-admin/admin-gcs.php:204
     103#: pages-admin/admin-gcs.php:267
    96104msgid "Collect statistics of 1 user every..."
    97105msgstr "Collecter les statistiques d'1 user tout les..."
    98106
    99 #: pages-admin/admin-gcs.php:210
     107#: pages-admin/admin-gcs.php:273
    100108msgid "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."
    101109msgstr "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."
    102110
    103 #: pages-admin/admin-gcs.php:213
     111#: pages-admin/admin-gcs.php:276
    104112msgid "Options social networks referers"
    105113msgstr "Options social networks referers"
    106114
    107 #: pages-admin/admin-gcs.php:213
     115#: pages-admin/admin-gcs.php:276
    108116msgid "World"
    109117msgstr "World"
    110118
    111 #: pages-admin/admin-gcs.php:216
     119#: pages-admin/admin-gcs.php:279
    112120msgid "Collect statistics for Facebook referer"
    113121msgstr "Collecter les statistiques pour Facebook referer"
    114122
    115 #: pages-admin/admin-gcs.php:226
     123#: pages-admin/admin-gcs.php:289
    116124msgid "Turn Off or On for statistics survey of facebook.com"
    117125msgstr "Activer ou désactiver l'enquête statistique de facebook.com"
    118126
    119 #: pages-admin/admin-gcs.php:231
     127#: pages-admin/admin-gcs.php:294
    120128msgid "Collect statistics for Twitter referer"
    121129msgstr "Collecter les statistiques pour Twitter referer"
    122130
    123 #: pages-admin/admin-gcs.php:241
     131#: pages-admin/admin-gcs.php:304
    124132msgid "Turn Off or On for statistics survey of twitter.com"
    125133msgstr "Activer ou désactiver l'enquête statistique de twitter.com"
    126134
    127 #: pages-admin/admin-gcs.php:246
     135#: pages-admin/admin-gcs.php:309
    128136msgid "Collect statistics for Google+ referer"
    129137msgstr "Collecter les statistiques pour Google+ referer"
    130138
    131 #: pages-admin/admin-gcs.php:256
     139#: pages-admin/admin-gcs.php:319
    132140msgid "Turn Off or On for statistics survey of plus.google.com"
    133141msgstr "Activer ou désactiver l'enquête statistique de plus.google.com"
    134142
    135 #: pages-admin/admin-gcs.php:261
     143#: pages-admin/admin-gcs.php:324
    136144msgid "Collect statistics for Linkedin referer"
    137145msgstr "Collecter les statistiques pour Linkedin referer"
    138146
    139 #: pages-admin/admin-gcs.php:271
     147#: pages-admin/admin-gcs.php:334
    140148msgid "Turn Off or On for statistics survey of linkedin.com"
    141149msgstr "Activer ou désactiver l'enquête statistique de linkedin.com"
    142150
    143 #: pages-admin/admin-gcs.php:274
     151#: pages-admin/admin-gcs.php:337
    144152msgid "Pinboard"
    145153msgstr "Pinboard"
    146154
    147 #: pages-admin/admin-gcs.php:277
     155#: pages-admin/admin-gcs.php:340
    148156msgid "Collect statistics for Pinterest referer"
    149157msgstr "Collecter les statistiques pour Pinterest referer"
    150158
    151 #: pages-admin/admin-gcs.php:287
     159#: pages-admin/admin-gcs.php:350
    152160msgid "Turn Off or On for statistics survey of pinterest.com"
    153161msgstr "Activer ou désactiver l'enquête statistique de pinterest.com"
    154162
    155 #: pages-admin/admin-gcs.php:292
     163#: pages-admin/admin-gcs.php:355
    156164msgid "Collect statistics for Scoop.it referer"
    157165msgstr "Collecter les statistiques pour Scoop.it referer"
    158166
    159 #: pages-admin/admin-gcs.php:302
     167#: pages-admin/admin-gcs.php:365
    160168msgid "Turn Off or On for statistics survey of scoop.it"
    161169msgstr "Activer ou désactiver l'enquête statistique de scoop.it"
    162170
    163 #: pages-admin/admin-gcs.php:305
     171#: pages-admin/admin-gcs.php:368
    164172msgid "Main China"
    165173msgstr "Main China"
    166174
    167 #: pages-admin/admin-gcs.php:308
     175#: pages-admin/admin-gcs.php:371
    168176msgid "Collect statistics for Qzone referer"
    169177msgstr "Collecter les statistiques pour Qzone referer"
    170178
    171 #: pages-admin/admin-gcs.php:318
     179#: pages-admin/admin-gcs.php:381
    172180msgid "Turn Off or On for statistics survey of qzone.qq.com"
    173181msgstr "Activer ou désactiver l'enquête statistique de qzone.qq.com"
    174182
    175 #: pages-admin/admin-gcs.php:323
     183#: pages-admin/admin-gcs.php:386
    176184msgid "Collect statistics for Weibo referer"
    177185msgstr "Collecter les statistiques pour Weibo referer"
    178186
    179 #: pages-admin/admin-gcs.php:333
     187#: pages-admin/admin-gcs.php:396
    180188msgid "Turn Off or On for statistics survey of weibo.com"
    181189msgstr "Activer ou désactiver l'enquête statistique de weibo.com"
    182190
    183 #: pages-admin/admin-gcs.php:336
     191#: pages-admin/admin-gcs.php:399
    184192msgid "Main Russia"
    185193msgstr "Main Russia"
    186194
    187 #: pages-admin/admin-gcs.php:339
     195#: pages-admin/admin-gcs.php:402
    188196msgid "Collect statistics for vk referer"
    189197msgstr "Collecter les statistiques pour vk referer"
    190198
    191 #: pages-admin/admin-gcs.php:349
     199#: pages-admin/admin-gcs.php:412
    192200msgid "Turn Off or On for statistics survey of vk.com"
    193201msgstr "Activer ou désactiver l'enquête statistique de vk.com"
    194202
    195 #: pages-admin/admin-gcs.php:370
    196 #: pages-admin/admin-gcs.php:376
     203#: pages-admin/admin-gcs.php:416
     204msgid "Personal referers"
     205msgstr "Personal referers"
     206
     207#: pages-admin/admin-gcs.php:419
     208msgid "Your personal referers"
     209msgstr "Vos personal referers"
     210
     211#: pages-admin/admin-gcs.php:428
     212msgid "Add your personal referer seperate by coma (Add only domain.tld without http://www.)"
     213msgstr "Ajoutez vos referer personnel séparé par une virgule (Ajouter seulement domain.tld sans http://www.)"
     214
     215#: pages-admin/admin-gcs.php:450
     216msgid "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)"
     217msgstr "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
     220msgid "Collect statistics for"
     221msgstr "Collecter les statistiques pour"
     222
     223#: pages-admin/admin-gcs.php:457
     224msgid "referer"
     225msgstr "referer"
     226
     227#: pages-admin/admin-gcs.php:471
     228msgid "Turn Off or On for statistics survey of"
     229msgstr "Activer ou désactiver l'enquête statistique de"
     230
     231#: pages-admin/admin-gcs.php:477
     232msgid "Reset Options"
     233msgstr "Reset Options"
     234
     235#: pages-admin/admin-gcs.php:480
     236msgid "Reset posts and pages statistics"
     237msgstr "Reset articles et pages statistiques"
     238
     239#: pages-admin/admin-gcs.php:489
     240msgid "Turn On to reset all statistics to zero on all posts and pages stats"
     241msgstr "Turn On pour reset toutes les statistiques à zéro sur tous les articles et pages"
     242
     243#: pages-admin/admin-gcs.php:494
     244msgid "Reset users statistics"
     245msgstr "Reset users statistiques"
     246
     247#: pages-admin/admin-gcs.php:503
     248msgid "Turn On to reset all statistics to zero for all users stats"
     249msgstr "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
    197253msgid "Statistics Performances"
    198254msgstr "Statistiques Performances"
    199255
    200 #: pages-admin/admin-gcs.php:382
    201 #: pages-admin/admin-gcs.php:388
     256#: pages-admin/admin-gcs.php:536
     257#: pages-admin/admin-gcs.php:542
    202258msgid "Statistics Organics"
    203259msgstr "Statistiques Organics"
    204260
    205 #: pages-admin/admin-gcs.php:394
    206 #: pages-admin/admin-gcs.php:400
     261#: pages-admin/admin-gcs.php:548
     262#: pages-admin/admin-gcs.php:554
    207263msgid "Statistics Networks"
    208264msgstr "Statistiques Networks"
    209265
    210 #: pages-admin/admin-gcs.php:406
    211 #: pages-admin/admin-gcs.php:412
     266#: pages-admin/admin-gcs.php:560
     267#: pages-admin/admin-gcs.php:566
    212268msgid "Statistics Users"
    213269msgstr "Statistiques Users"
    214270
    215 #: pages-admin/admin-gcs.php:630
    216 #: pages-admin/admin-gcs.php:737
     271#: pages-admin/admin-gcs.php:784
     272#: pages-admin/admin-gcs.php:891
    217273#: pages-admin/admin-home.php:109
    218274#: pages-admin/admin-home.php:184
     
    221277msgstr "Actuellement, pas de données"
    222278
    223 #: pages-admin/admin-gcs.php:826
     279#: pages-admin/admin-gcs.php:980
    224280msgid "Normal"
    225281msgstr "Normal"
    226282
    227 #: pages-admin/admin-gcs.php:828
     283#: pages-admin/admin-gcs.php:982
    228284msgid "Sticky"
    229285msgstr "Sticky"
    230286
    231 #: pages-admin/admin-gcs.php:895
     287#: pages-admin/admin-gcs.php:1049
    232288msgid "Connected"
    233289msgstr "Connectés"
    234290
    235 #: pages-admin/admin-gcs.php:896
     291#: pages-admin/admin-gcs.php:1050
    236292msgid "Disconnected"
    237293msgstr "Déconnectés"
    238294
    239 #: pages-admin/admin-gcs.php:1110
     295#: pages-admin/admin-gcs.php:1264
    240296msgid "Known"
    241297msgstr "Connus"
    242298
    243 #: pages-admin/admin-gcs.php:1112
     299#: pages-admin/admin-gcs.php:1266
    244300msgid "Unknown"
    245301msgstr "Inconnus"
  • humanized-statistics/trunk/wp-languages/gcs-fr_FR.POT

    r603539 r2515223  
    33"Project-Id-Version: gcs\n"
    44"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"
    77"Last-Translator: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n"
    88"Language-Team: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n"
     
    1717"X-Poedit-SearchPath-0: .\n"
    1818
    19 #: google-chart-statistics.php:18
     19#: google-chart-statistics.php:36
    2020#: pages-admin/admin-cats.php:8
    2121#: pages-admin/admin-gcs.php:8
    2222#: pages-admin/admin-home.php:8
    2323msgid "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:35
     24msgstr "Désolé mais vous ne pouvez pas accéder à cette page directement."
     25
     26#: google-chart-statistics.php:51
    2727msgid "Statistics"
    2828msgstr "Statistiques"
    2929
    30 #: google-chart-statistics.php:36
     30#: google-chart-statistics.php:52
    3131msgid "General configuration"
    3232msgstr "General configuration"
     
    3737
    3838#: pages-admin/admin-cats.php:29
    39 msgid "Google chart statistics - Categories statistics"
    40 msgstr "Google chart statistics - Categories statistics"
    41 
    42 #: pages-admin/admin-cats.php:33
     39msgid "Humanized statistics - Categories statistics"
     40msgstr "Humanized statistics - Statistiques des catégories"
     41
     42#: pages-admin/admin-cats.php:37
    4343msgid "Statistics categories most visited by all users"
    44 msgstr "Statistiques catégories plus visitées par tous les utilisateurs"
    45 
    46 #: pages-admin/admin-cats.php:90
     44msgstr "Statistiques catégories les plus visitées - tout utilisateurs"
     45
     46#: pages-admin/admin-cats.php:101
    4747msgid "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:96
     48msgstr "Actuellement aucune données pour les catégories les plus visitées"
     49
     50#: pages-admin/admin-cats.php:107
    5151msgid "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:158
     52msgstr "Statistiques catégories préférées par les utilisateurs connus"
     53
     54#: pages-admin/admin-cats.php:172
    5555msgid "Currently no datas for categories prefered by known users"
    5656msgstr "Actuellement, pas de données pour les catégories préférées des utilisateurs connus"
    5757
    58 #: pages-admin/admin-gcs.php:103
     58#: pages-admin/admin-gcs.php:133
     59msgid "Posts and pages statistics have been resetted"
     60msgstr "Les statistiques articles et pages ont été remis à zéro"
     61
     62#: pages-admin/admin-gcs.php:144
     63msgid "Users statistics have been resetted"
     64msgstr "Users statistiques ont été remise à zéro"
     65
     66#: pages-admin/admin-gcs.php:149
    5967msgid "Your settings have been saved"
    6068msgstr "Vos options ont été sauvegardées"
    6169
    62 #: pages-admin/admin-gcs.php:112
    63 msgid "Google chart statistics - General configuration"
    64 msgstr "Google chart statistics - General configuration"
    65 
    66 #: pages-admin/admin-gcs.php:116
    67 #: pages-admin/admin-gcs.php:355
     70#: pages-admin/admin-gcs.php:158
     71msgid "Humanized statistics - General configuration"
     72msgstr "Humanized statistics - General configuration"
     73
     74#: pages-admin/admin-gcs.php:162
     75#: pages-admin/admin-gcs.php:509
    6876msgid "Save Changes"
    6977msgstr "Sauvegarder"
    7078
    71 #: pages-admin/admin-gcs.php:166
     79#: pages-admin/admin-gcs.php:229
    7280msgid "Options plugin theme in dashboard"
    73 msgstr "Options plugin theme dans le tableau de bord"
    74 
    75 #: pages-admin/admin-gcs.php:169
     81msgstr "Options theme du plugin dans le tableau de bord"
     82
     83#: pages-admin/admin-gcs.php:232
    7684msgid "Themify the plugin with..."
    7785msgstr "Themify le plugin avec..."
    7886
    79 #: pages-admin/admin-gcs.php:181
     87#: pages-admin/admin-gcs.php:244
    8088msgid "Themify your administration (bar, buttons,...)"
    8189msgstr "Themify votre administration (barre, boutons,...)"
    8290
    83 #: pages-admin/admin-gcs.php:186
     91#: pages-admin/admin-gcs.php:249
    8492msgid "Themify datas with 3D Chart"
    85 msgstr "Themify datas avec 3D Chart"
    86 
    87 #: pages-admin/admin-gcs.php:197
     93msgstr "Themify les données avec effet 3D Chart"
     94
     95#: pages-admin/admin-gcs.php:260
    8896msgid "Themify your visual datas with Chart 3D"
    89 msgstr "Themify les données visuel avec Chart en 3D"
    90 
    91 #: pages-admin/admin-gcs.php:201
     97msgstr "Themify les données visuelles avec Chart ayant un effet de bord en 3D"
     98
     99#: pages-admin/admin-gcs.php:264
    92100msgid "Options performance"
    93101msgstr "Options performance"
    94102
    95 #: pages-admin/admin-gcs.php:204
     103#: pages-admin/admin-gcs.php:267
    96104msgid "Collect statistics of 1 user every..."
    97105msgstr "Collecter les statistiques d'1 user tout les..."
    98106
    99 #: pages-admin/admin-gcs.php:210
     107#: pages-admin/admin-gcs.php:273
    100108msgid "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."
    101109msgstr "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."
    102110
    103 #: pages-admin/admin-gcs.php:213
     111#: pages-admin/admin-gcs.php:276
    104112msgid "Options social networks referers"
    105113msgstr "Options social networks referers"
    106114
    107 #: pages-admin/admin-gcs.php:213
     115#: pages-admin/admin-gcs.php:276
    108116msgid "World"
    109117msgstr "World"
    110118
    111 #: pages-admin/admin-gcs.php:216
     119#: pages-admin/admin-gcs.php:279
    112120msgid "Collect statistics for Facebook referer"
    113121msgstr "Collecter les statistiques pour Facebook referer"
    114122
    115 #: pages-admin/admin-gcs.php:226
     123#: pages-admin/admin-gcs.php:289
    116124msgid "Turn Off or On for statistics survey of facebook.com"
    117125msgstr "Activer ou désactiver l'enquête statistique de facebook.com"
    118126
    119 #: pages-admin/admin-gcs.php:231
     127#: pages-admin/admin-gcs.php:294
    120128msgid "Collect statistics for Twitter referer"
    121129msgstr "Collecter les statistiques pour Twitter referer"
    122130
    123 #: pages-admin/admin-gcs.php:241
     131#: pages-admin/admin-gcs.php:304
    124132msgid "Turn Off or On for statistics survey of twitter.com"
    125133msgstr "Activer ou désactiver l'enquête statistique de twitter.com"
    126134
    127 #: pages-admin/admin-gcs.php:246
     135#: pages-admin/admin-gcs.php:309
    128136msgid "Collect statistics for Google+ referer"
    129137msgstr "Collecter les statistiques pour Google+ referer"
    130138
    131 #: pages-admin/admin-gcs.php:256
     139#: pages-admin/admin-gcs.php:319
    132140msgid "Turn Off or On for statistics survey of plus.google.com"
    133141msgstr "Activer ou désactiver l'enquête statistique de plus.google.com"
    134142
    135 #: pages-admin/admin-gcs.php:261
     143#: pages-admin/admin-gcs.php:324
    136144msgid "Collect statistics for Linkedin referer"
    137145msgstr "Collecter les statistiques pour Linkedin referer"
    138146
    139 #: pages-admin/admin-gcs.php:271
     147#: pages-admin/admin-gcs.php:334
    140148msgid "Turn Off or On for statistics survey of linkedin.com"
    141149msgstr "Activer ou désactiver l'enquête statistique de linkedin.com"
    142150
    143 #: pages-admin/admin-gcs.php:274
     151#: pages-admin/admin-gcs.php:337
    144152msgid "Pinboard"
    145153msgstr "Pinboard"
    146154
    147 #: pages-admin/admin-gcs.php:277
     155#: pages-admin/admin-gcs.php:340
    148156msgid "Collect statistics for Pinterest referer"
    149157msgstr "Collecter les statistiques pour Pinterest referer"
    150158
    151 #: pages-admin/admin-gcs.php:287
     159#: pages-admin/admin-gcs.php:350
    152160msgid "Turn Off or On for statistics survey of pinterest.com"
    153161msgstr "Activer ou désactiver l'enquête statistique de pinterest.com"
    154162
    155 #: pages-admin/admin-gcs.php:292
     163#: pages-admin/admin-gcs.php:355
    156164msgid "Collect statistics for Scoop.it referer"
    157165msgstr "Collecter les statistiques pour Scoop.it referer"
    158166
    159 #: pages-admin/admin-gcs.php:302
     167#: pages-admin/admin-gcs.php:365
    160168msgid "Turn Off or On for statistics survey of scoop.it"
    161169msgstr "Activer ou désactiver l'enquête statistique de scoop.it"
    162170
    163 #: pages-admin/admin-gcs.php:305
     171#: pages-admin/admin-gcs.php:368
    164172msgid "Main China"
    165173msgstr "Main China"
    166174
    167 #: pages-admin/admin-gcs.php:308
     175#: pages-admin/admin-gcs.php:371
    168176msgid "Collect statistics for Qzone referer"
    169177msgstr "Collecter les statistiques pour Qzone referer"
    170178
    171 #: pages-admin/admin-gcs.php:318
     179#: pages-admin/admin-gcs.php:381
    172180msgid "Turn Off or On for statistics survey of qzone.qq.com"
    173181msgstr "Activer ou désactiver l'enquête statistique de qzone.qq.com"
    174182
    175 #: pages-admin/admin-gcs.php:323
     183#: pages-admin/admin-gcs.php:386
    176184msgid "Collect statistics for Weibo referer"
    177185msgstr "Collecter les statistiques pour Weibo referer"
    178186
    179 #: pages-admin/admin-gcs.php:333
     187#: pages-admin/admin-gcs.php:396
    180188msgid "Turn Off or On for statistics survey of weibo.com"
    181189msgstr "Activer ou désactiver l'enquête statistique de weibo.com"
    182190
    183 #: pages-admin/admin-gcs.php:336
     191#: pages-admin/admin-gcs.php:399
    184192msgid "Main Russia"
    185193msgstr "Main Russia"
    186194
    187 #: pages-admin/admin-gcs.php:339
     195#: pages-admin/admin-gcs.php:402
    188196msgid "Collect statistics for vk referer"
    189197msgstr "Collecter les statistiques pour vk referer"
    190198
    191 #: pages-admin/admin-gcs.php:349
     199#: pages-admin/admin-gcs.php:412
    192200msgid "Turn Off or On for statistics survey of vk.com"
    193201msgstr "Activer ou désactiver l'enquête statistique de vk.com"
    194202
    195 #: pages-admin/admin-gcs.php:370
    196 #: pages-admin/admin-gcs.php:376
     203#: pages-admin/admin-gcs.php:416
     204msgid "Personal referers"
     205msgstr "Personal referers"
     206
     207#: pages-admin/admin-gcs.php:419
     208msgid "Your personal referers"
     209msgstr "Vos personal referers"
     210
     211#: pages-admin/admin-gcs.php:428
     212msgid "Add your personal referer seperate by coma (Add only domain.tld without http://www.)"
     213msgstr "Ajoutez vos referer personnel séparé par une virgule (Ajouter seulement domain.tld sans http://www.)"
     214
     215#: pages-admin/admin-gcs.php:450
     216msgid "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)"
     217msgstr "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
     220msgid "Collect statistics for"
     221msgstr "Collecter les statistiques pour"
     222
     223#: pages-admin/admin-gcs.php:457
     224msgid "referer"
     225msgstr "referer"
     226
     227#: pages-admin/admin-gcs.php:471
     228msgid "Turn Off or On for statistics survey of"
     229msgstr "Activer ou désactiver l'enquête statistique de"
     230
     231#: pages-admin/admin-gcs.php:477
     232msgid "Reset Options"
     233msgstr "Reset Options"
     234
     235#: pages-admin/admin-gcs.php:480
     236msgid "Reset posts and pages statistics"
     237msgstr "Reset articles et pages statistiques"
     238
     239#: pages-admin/admin-gcs.php:489
     240msgid "Turn On to reset all statistics to zero on all posts and pages stats"
     241msgstr "Turn On pour reset toutes les statistiques à zéro sur tous les articles et pages"
     242
     243#: pages-admin/admin-gcs.php:494
     244msgid "Reset users statistics"
     245msgstr "Reset users statistiques"
     246
     247#: pages-admin/admin-gcs.php:503
     248msgid "Turn On to reset all statistics to zero for all users stats"
     249msgstr "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
    197253msgid "Statistics Performances"
    198254msgstr "Statistiques Performances"
    199255
    200 #: pages-admin/admin-gcs.php:382
    201 #: pages-admin/admin-gcs.php:388
     256#: pages-admin/admin-gcs.php:536
     257#: pages-admin/admin-gcs.php:542
    202258msgid "Statistics Organics"
    203259msgstr "Statistiques Organics"
    204260
    205 #: pages-admin/admin-gcs.php:394
    206 #: pages-admin/admin-gcs.php:400
     261#: pages-admin/admin-gcs.php:548
     262#: pages-admin/admin-gcs.php:554
    207263msgid "Statistics Networks"
    208264msgstr "Statistiques Networks"
    209265
    210 #: pages-admin/admin-gcs.php:406
    211 #: pages-admin/admin-gcs.php:412
     266#: pages-admin/admin-gcs.php:560
     267#: pages-admin/admin-gcs.php:566
    212268msgid "Statistics Users"
    213269msgstr "Statistiques Users"
    214270
    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
     276msgid "Currently no datas"
     277msgstr "Actuellement, pas de données"
     278
     279#: pages-admin/admin-gcs.php:980
    221280msgid "Normal"
    222281msgstr "Normal"
    223282
    224 #: pages-admin/admin-gcs.php:832
     283#: pages-admin/admin-gcs.php:982
    225284msgid "Sticky"
    226285msgstr "Sticky"
    227286
    228 #: pages-admin/admin-gcs.php:899
     287#: pages-admin/admin-gcs.php:1049
    229288msgid "Connected"
    230289msgstr "Connectés"
    231290
    232 #: pages-admin/admin-gcs.php:900
     291#: pages-admin/admin-gcs.php:1050
    233292msgid "Disconnected"
    234 msgstr "Disconnectés"
    235 
    236 #: pages-admin/admin-gcs.php:1114
     293msgstr "Déconnectés"
     294
     295#: pages-admin/admin-gcs.php:1264
    237296msgid "Known"
    238297msgstr "Connus"
    239298
    240 #: pages-admin/admin-gcs.php:1116
     299#: pages-admin/admin-gcs.php:1266
    241300msgid "Unknown"
    242301msgstr "Inconnus"
     
    247306
    248307#: pages-admin/admin-home.php:29
    249 msgid "Google chart statistics - Home statistics"
    250 msgstr "Google chart statistics - Statistiques Home"
    251 
    252 #: pages-admin/admin-home.php:33
     308msgid "Humanized statistics - Home statistics"
     309msgstr "Humanized statistics - Statistiques Home"
     310
     311#: pages-admin/admin-home.php:37
    253312msgid "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 
     313msgstr "Statistiques home page total sticky VS total normal"
     314
     315#: pages-admin/admin-home.php:115
     316msgid "Statistics home page from normal posts - user in bounce to"
     317msgstr "Statistiques home page from normal posts - user en rebond vers"
     318
     319#: pages-admin/admin-home.php:190
     320msgid "Statistics home page from sticky posts - user in bounce to"
     321msgstr "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  
    33"Project-Id-Version: gcs\n"
    44"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"
    77"Last-Translator: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n"
    88"Language-Team: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n"
     
    2424msgstr ""
    2525
    26 #: google-chart-statistics.php:54
     26#: google-chart-statistics.php:51
    2727msgid "Statistics"
    2828msgstr ""
    2929
    30 #: google-chart-statistics.php:55
     30#: google-chart-statistics.php:52
    3131msgid "General configuration"
    3232msgstr ""
     
    5656msgstr ""
    5757
    58 #: pages-admin/admin-gcs.php:103
     58#: pages-admin/admin-gcs.php:133
     59msgid "Posts and pages statistics have been resetted"
     60msgstr ""
     61
     62#: pages-admin/admin-gcs.php:144
     63msgid "Users statistics have been resetted"
     64msgstr ""
     65
     66#: pages-admin/admin-gcs.php:149
    5967msgid "Your settings have been saved"
    6068msgstr ""
    6169
    62 #: pages-admin/admin-gcs.php:112
     70#: pages-admin/admin-gcs.php:158
    6371msgid "Humanized statistics - General configuration"
    6472msgstr ""
    6573
    66 #: pages-admin/admin-gcs.php:116
     74#: pages-admin/admin-gcs.php:162
     75#: pages-admin/admin-gcs.php:509
     76msgid "Save Changes"
     77msgstr ""
     78
     79#: pages-admin/admin-gcs.php:229
     80msgid "Options plugin theme in dashboard"
     81msgstr ""
     82
     83#: pages-admin/admin-gcs.php:232
     84msgid "Themify the plugin with..."
     85msgstr ""
     86
     87#: pages-admin/admin-gcs.php:244
     88msgid "Themify your administration (bar, buttons,...)"
     89msgstr ""
     90
     91#: pages-admin/admin-gcs.php:249
     92msgid "Themify datas with 3D Chart"
     93msgstr ""
     94
     95#: pages-admin/admin-gcs.php:260
     96msgid "Themify your visual datas with Chart 3D"
     97msgstr ""
     98
     99#: pages-admin/admin-gcs.php:264
     100msgid "Options performance"
     101msgstr ""
     102
     103#: pages-admin/admin-gcs.php:267
     104msgid "Collect statistics of 1 user every..."
     105msgstr ""
     106
     107#: pages-admin/admin-gcs.php:273
     108msgid "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."
     109msgstr ""
     110
     111#: pages-admin/admin-gcs.php:276
     112msgid "Options social networks referers"
     113msgstr ""
     114
     115#: pages-admin/admin-gcs.php:276
     116msgid "World"
     117msgstr ""
     118
     119#: pages-admin/admin-gcs.php:279
     120msgid "Collect statistics for Facebook referer"
     121msgstr ""
     122
     123#: pages-admin/admin-gcs.php:289
     124msgid "Turn Off or On for statistics survey of facebook.com"
     125msgstr ""
     126
     127#: pages-admin/admin-gcs.php:294
     128msgid "Collect statistics for Twitter referer"
     129msgstr ""
     130
     131#: pages-admin/admin-gcs.php:304
     132msgid "Turn Off or On for statistics survey of twitter.com"
     133msgstr ""
     134
     135#: pages-admin/admin-gcs.php:309
     136msgid "Collect statistics for Google+ referer"
     137msgstr ""
     138
     139#: pages-admin/admin-gcs.php:319
     140msgid "Turn Off or On for statistics survey of plus.google.com"
     141msgstr ""
     142
     143#: pages-admin/admin-gcs.php:324
     144msgid "Collect statistics for Linkedin referer"
     145msgstr ""
     146
     147#: pages-admin/admin-gcs.php:334
     148msgid "Turn Off or On for statistics survey of linkedin.com"
     149msgstr ""
     150
     151#: pages-admin/admin-gcs.php:337
     152msgid "Pinboard"
     153msgstr ""
     154
     155#: pages-admin/admin-gcs.php:340
     156msgid "Collect statistics for Pinterest referer"
     157msgstr ""
     158
     159#: pages-admin/admin-gcs.php:350
     160msgid "Turn Off or On for statistics survey of pinterest.com"
     161msgstr ""
     162
    67163#: pages-admin/admin-gcs.php:355
    68 msgid "Save Changes"
    69 msgstr ""
    70 
    71 #: pages-admin/admin-gcs.php:166
    72 msgid "Options plugin theme in dashboard"
    73 msgstr ""
    74 
    75 #: pages-admin/admin-gcs.php:169
    76 msgid "Themify the plugin with..."
    77 msgstr ""
    78 
    79 #: pages-admin/admin-gcs.php:181
    80 msgid "Themify your administration (bar, buttons,...)"
    81 msgstr ""
    82 
    83 #: pages-admin/admin-gcs.php:186
    84 msgid "Themify datas with 3D Chart"
    85 msgstr ""
    86 
    87 #: pages-admin/admin-gcs.php:197
    88 msgid "Themify your visual datas with Chart 3D"
    89 msgstr ""
    90 
    91 #: pages-admin/admin-gcs.php:201
    92 msgid "Options performance"
    93 msgstr ""
    94 
    95 #: pages-admin/admin-gcs.php:204
    96 msgid "Collect statistics of 1 user every..."
    97 msgstr ""
    98 
    99 #: pages-admin/admin-gcs.php:210
    100 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:213
    104 msgid "Options social networks referers"
    105 msgstr ""
    106 
    107 #: pages-admin/admin-gcs.php:213
    108 msgid "World"
    109 msgstr ""
    110 
    111 #: pages-admin/admin-gcs.php:216
    112 msgid "Collect statistics for Facebook referer"
    113 msgstr ""
    114 
    115 #: pages-admin/admin-gcs.php:226
    116 msgid "Turn Off or On for statistics survey of facebook.com"
    117 msgstr ""
    118 
    119 #: pages-admin/admin-gcs.php:231
    120 msgid "Collect statistics for Twitter referer"
    121 msgstr ""
    122 
    123 #: pages-admin/admin-gcs.php:241
    124 msgid "Turn Off or On for statistics survey of twitter.com"
    125 msgstr ""
    126 
    127 #: pages-admin/admin-gcs.php:246
    128 msgid "Collect statistics for Google+ referer"
    129 msgstr ""
    130 
    131 #: pages-admin/admin-gcs.php:256
    132 msgid "Turn Off or On for statistics survey of plus.google.com"
    133 msgstr ""
    134 
    135 #: pages-admin/admin-gcs.php:261
    136 msgid "Collect statistics for Linkedin referer"
    137 msgstr ""
    138 
    139 #: pages-admin/admin-gcs.php:271
    140 msgid "Turn Off or On for statistics survey of linkedin.com"
    141 msgstr ""
    142 
    143 #: pages-admin/admin-gcs.php:274
    144 msgid "Pinboard"
    145 msgstr ""
    146 
    147 #: pages-admin/admin-gcs.php:277
    148 msgid "Collect statistics for Pinterest referer"
    149 msgstr ""
    150 
    151 #: pages-admin/admin-gcs.php:287
    152 msgid "Turn Off or On for statistics survey of pinterest.com"
    153 msgstr ""
    154 
    155 #: pages-admin/admin-gcs.php:292
    156164msgid "Collect statistics for Scoop.it referer"
    157165msgstr ""
    158166
    159 #: pages-admin/admin-gcs.php:302
     167#: pages-admin/admin-gcs.php:365
    160168msgid "Turn Off or On for statistics survey of scoop.it"
    161169msgstr ""
    162170
    163 #: pages-admin/admin-gcs.php:305
     171#: pages-admin/admin-gcs.php:368
    164172msgid "Main China"
    165173msgstr ""
    166174
    167 #: pages-admin/admin-gcs.php:308
     175#: pages-admin/admin-gcs.php:371
    168176msgid "Collect statistics for Qzone referer"
    169177msgstr ""
    170178
    171 #: pages-admin/admin-gcs.php:318
     179#: pages-admin/admin-gcs.php:381
    172180msgid "Turn Off or On for statistics survey of qzone.qq.com"
    173181msgstr ""
    174182
    175 #: pages-admin/admin-gcs.php:323
     183#: pages-admin/admin-gcs.php:386
    176184msgid "Collect statistics for Weibo referer"
    177185msgstr ""
    178186
    179 #: pages-admin/admin-gcs.php:333
     187#: pages-admin/admin-gcs.php:396
    180188msgid "Turn Off or On for statistics survey of weibo.com"
    181189msgstr ""
    182190
    183 #: pages-admin/admin-gcs.php:336
     191#: pages-admin/admin-gcs.php:399
    184192msgid "Main Russia"
    185193msgstr ""
    186194
    187 #: pages-admin/admin-gcs.php:339
     195#: pages-admin/admin-gcs.php:402
    188196msgid "Collect statistics for vk referer"
    189197msgstr ""
    190198
    191 #: pages-admin/admin-gcs.php:349
     199#: pages-admin/admin-gcs.php:412
    192200msgid "Turn Off or On for statistics survey of vk.com"
    193201msgstr ""
    194202
    195 #: pages-admin/admin-gcs.php:370
    196 #: pages-admin/admin-gcs.php:376
     203#: pages-admin/admin-gcs.php:416
     204msgid "Personal referers"
     205msgstr ""
     206
     207#: pages-admin/admin-gcs.php:419
     208msgid "Your personal referers"
     209msgstr ""
     210
     211#: pages-admin/admin-gcs.php:428
     212msgid "Add your personal referer seperate by coma (Add only domain.tld without http://www.)"
     213msgstr ""
     214
     215#: pages-admin/admin-gcs.php:450
     216msgid "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)"
     217msgstr ""
     218
     219#: pages-admin/admin-gcs.php:457
     220msgid "Collect statistics for"
     221msgstr ""
     222
     223#: pages-admin/admin-gcs.php:457
     224msgid "referer"
     225msgstr ""
     226
     227#: pages-admin/admin-gcs.php:471
     228msgid "Turn Off or On for statistics survey of"
     229msgstr ""
     230
     231#: pages-admin/admin-gcs.php:477
     232msgid "Reset Options"
     233msgstr ""
     234
     235#: pages-admin/admin-gcs.php:480
     236msgid "Reset posts and pages statistics"
     237msgstr ""
     238
     239#: pages-admin/admin-gcs.php:489
     240msgid "Turn On to reset all statistics to zero on all posts and pages stats"
     241msgstr ""
     242
     243#: pages-admin/admin-gcs.php:494
     244msgid "Reset users statistics"
     245msgstr ""
     246
     247#: pages-admin/admin-gcs.php:503
     248msgid "Turn On to reset all statistics to zero for all users stats"
     249msgstr ""
     250
     251#: pages-admin/admin-gcs.php:524
     252#: pages-admin/admin-gcs.php:530
    197253msgid "Statistics Performances"
    198254msgstr ""
    199255
    200 #: pages-admin/admin-gcs.php:382
    201 #: pages-admin/admin-gcs.php:388
     256#: pages-admin/admin-gcs.php:536
     257#: pages-admin/admin-gcs.php:542
    202258msgid "Statistics Organics"
    203259msgstr ""
    204260
    205 #: pages-admin/admin-gcs.php:394
    206 #: pages-admin/admin-gcs.php:400
     261#: pages-admin/admin-gcs.php:548
     262#: pages-admin/admin-gcs.php:554
    207263msgid "Statistics Networks"
    208264msgstr ""
    209265
    210 #: pages-admin/admin-gcs.php:406
    211 #: pages-admin/admin-gcs.php:412
     266#: pages-admin/admin-gcs.php:560
     267#: pages-admin/admin-gcs.php:566
    212268msgid "Statistics Users"
    213269msgstr ""
    214270
    215 #: pages-admin/admin-gcs.php:630
    216 #: pages-admin/admin-gcs.php:737
     271#: pages-admin/admin-gcs.php:784
     272#: pages-admin/admin-gcs.php:891
    217273#: pages-admin/admin-home.php:109
    218274#: pages-admin/admin-home.php:184
     
    221277msgstr ""
    222278
    223 #: pages-admin/admin-gcs.php:826
     279#: pages-admin/admin-gcs.php:980
    224280msgid "Normal"
    225281msgstr ""
    226282
    227 #: pages-admin/admin-gcs.php:828
     283#: pages-admin/admin-gcs.php:982
    228284msgid "Sticky"
    229285msgstr ""
    230286
    231 #: pages-admin/admin-gcs.php:895
     287#: pages-admin/admin-gcs.php:1049
    232288msgid "Connected"
    233289msgstr ""
    234290
    235 #: pages-admin/admin-gcs.php:896
     291#: pages-admin/admin-gcs.php:1050
    236292msgid "Disconnected"
    237293msgstr ""
    238294
    239 #: pages-admin/admin-gcs.php:1110
     295#: pages-admin/admin-gcs.php:1264
    240296msgid "Known"
    241297msgstr ""
    242298
    243 #: pages-admin/admin-gcs.php:1112
     299#: pages-admin/admin-gcs.php:1266
    244300msgid "Unknown"
    245301msgstr ""
  • humanized-statistics/trunk/wp-languages/gcs.POT

    r603539 r2515223  
    33"Project-Id-Version: gcs\n"
    44"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"
    77"Last-Translator: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n"
    88"Language-Team: Laurent (KwarK) Bertrand <kwark@allwebtuts.net>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "Language: en_US\n"
    1312"X-Poedit-KeywordsList: __;_e\n"
    1413"X-Poedit-Basepath: ../\n"
     14"X-Poedit-Language: English\n"
     15"X-Poedit-Country: UNITED STATES\n"
    1516"X-Poedit-SourceCharset: utf-8\n"
    1617"X-Poedit-SearchPath-0: .\n"
    1718
    18 #: google-chart-statistics.php:18
     19#: google-chart-statistics.php:36
    1920#: pages-admin/admin-cats.php:8
    2021#: pages-admin/admin-gcs.php:8
     
    2324msgstr ""
    2425
    25 #: google-chart-statistics.php:35
     26#: google-chart-statistics.php:51
    2627msgid "Statistics"
    2728msgstr ""
    2829
    29 #: google-chart-statistics.php:36
     30#: google-chart-statistics.php:52
    3031msgid "General configuration"
    3132msgstr ""
     
    3637
    3738#: pages-admin/admin-cats.php:29
    38 msgid "Google chart statistics - Categories statistics"
    39 msgstr ""
    40 
    41 #: pages-admin/admin-cats.php:33
     39msgid "Humanized statistics - Categories statistics"
     40msgstr ""
     41
     42#: pages-admin/admin-cats.php:37
    4243msgid "Statistics categories most visited by all users"
    4344msgstr ""
    4445
    45 #: pages-admin/admin-cats.php:90
     46#: pages-admin/admin-cats.php:101
    4647msgid "Currently no datas for categories most visited"
    4748msgstr ""
    4849
    49 #: pages-admin/admin-cats.php:96
     50#: pages-admin/admin-cats.php:107
    5051msgid "Statistics categories most prefered by known users"
    5152msgstr ""
    5253
    53 #: pages-admin/admin-cats.php:158
     54#: pages-admin/admin-cats.php:172
    5455msgid "Currently no datas for categories prefered by known users"
    5556msgstr ""
    5657
    57 #: pages-admin/admin-gcs.php:103
     58#: pages-admin/admin-gcs.php:133
     59msgid "Posts and pages statistics have been resetted"
     60msgstr ""
     61
     62#: pages-admin/admin-gcs.php:144
     63msgid "Users statistics have been resetted"
     64msgstr ""
     65
     66#: pages-admin/admin-gcs.php:149
    5867msgid "Your settings have been saved"
    5968msgstr ""
    6069
    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
     71msgid "Humanized statistics - General configuration"
     72msgstr ""
     73
     74#: pages-admin/admin-gcs.php:162
     75#: pages-admin/admin-gcs.php:509
     76msgid "Save Changes"
     77msgstr ""
     78
     79#: pages-admin/admin-gcs.php:229
     80msgid "Options plugin theme in dashboard"
     81msgstr ""
     82
     83#: pages-admin/admin-gcs.php:232
     84msgid "Themify the plugin with..."
     85msgstr ""
     86
     87#: pages-admin/admin-gcs.php:244
     88msgid "Themify your administration (bar, buttons,...)"
     89msgstr ""
     90
     91#: pages-admin/admin-gcs.php:249
     92msgid "Themify datas with 3D Chart"
     93msgstr ""
     94
     95#: pages-admin/admin-gcs.php:260
     96msgid "Themify your visual datas with Chart 3D"
     97msgstr ""
     98
     99#: pages-admin/admin-gcs.php:264
     100msgid "Options performance"
     101msgstr ""
     102
     103#: pages-admin/admin-gcs.php:267
     104msgid "Collect statistics of 1 user every..."
     105msgstr ""
     106
     107#: pages-admin/admin-gcs.php:273
     108msgid "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."
     109msgstr ""
     110
     111#: pages-admin/admin-gcs.php:276
     112msgid "Options social networks referers"
     113msgstr ""
     114
     115#: pages-admin/admin-gcs.php:276
     116msgid "World"
     117msgstr ""
     118
     119#: pages-admin/admin-gcs.php:279
     120msgid "Collect statistics for Facebook referer"
     121msgstr ""
     122
     123#: pages-admin/admin-gcs.php:289
     124msgid "Turn Off or On for statistics survey of facebook.com"
     125msgstr ""
     126
     127#: pages-admin/admin-gcs.php:294
     128msgid "Collect statistics for Twitter referer"
     129msgstr ""
     130
     131#: pages-admin/admin-gcs.php:304
     132msgid "Turn Off or On for statistics survey of twitter.com"
     133msgstr ""
     134
     135#: pages-admin/admin-gcs.php:309
     136msgid "Collect statistics for Google+ referer"
     137msgstr ""
     138
     139#: pages-admin/admin-gcs.php:319
     140msgid "Turn Off or On for statistics survey of plus.google.com"
     141msgstr ""
     142
     143#: pages-admin/admin-gcs.php:324
     144msgid "Collect statistics for Linkedin referer"
     145msgstr ""
     146
     147#: pages-admin/admin-gcs.php:334
     148msgid "Turn Off or On for statistics survey of linkedin.com"
     149msgstr ""
     150
     151#: pages-admin/admin-gcs.php:337
     152msgid "Pinboard"
     153msgstr ""
     154
     155#: pages-admin/admin-gcs.php:340
     156msgid "Collect statistics for Pinterest referer"
     157msgstr ""
     158
     159#: pages-admin/admin-gcs.php:350
     160msgid "Turn Off or On for statistics survey of pinterest.com"
     161msgstr ""
     162
    66163#: pages-admin/admin-gcs.php:355
    67 msgid "Save Changes"
    68 msgstr ""
    69 
    70 #: pages-admin/admin-gcs.php:166
    71 msgid "Options plugin theme in dashboard"
    72 msgstr ""
    73 
    74 #: pages-admin/admin-gcs.php:169
    75 msgid "Themify the plugin with..."
    76 msgstr ""
    77 
    78 #: pages-admin/admin-gcs.php:181
    79 msgid "Themify your administration (bar, buttons,...)"
    80 msgstr ""
    81 
    82 #: pages-admin/admin-gcs.php:186
    83 msgid "Themify datas with 3D Chart"
    84 msgstr ""
    85 
    86 #: pages-admin/admin-gcs.php:197
    87 msgid "Themify your visual datas with Chart 3D"
    88 msgstr ""
    89 
    90 #: pages-admin/admin-gcs.php:201
    91 msgid "Options performance"
    92 msgstr ""
    93 
    94 #: pages-admin/admin-gcs.php:204
    95 msgid "Collect statistics of 1 user every..."
    96 msgstr ""
    97 
    98 #: pages-admin/admin-gcs.php:210
    99 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:213
    103 msgid "Options social networks referers"
    104 msgstr ""
    105 
    106 #: pages-admin/admin-gcs.php:213
    107 msgid "World"
    108 msgstr ""
    109 
    110 #: pages-admin/admin-gcs.php:216
    111 msgid "Collect statistics for Facebook referer"
    112 msgstr ""
    113 
    114 #: pages-admin/admin-gcs.php:226
    115 msgid "Turn Off or On for statistics survey of facebook.com"
    116 msgstr ""
    117 
    118 #: pages-admin/admin-gcs.php:231
    119 msgid "Collect statistics for Twitter referer"
    120 msgstr ""
    121 
    122 #: pages-admin/admin-gcs.php:241
    123 msgid "Turn Off or On for statistics survey of twitter.com"
    124 msgstr ""
    125 
    126 #: pages-admin/admin-gcs.php:246
    127 msgid "Collect statistics for Google+ referer"
    128 msgstr ""
    129 
    130 #: pages-admin/admin-gcs.php:256
    131 msgid "Turn Off or On for statistics survey of plus.google.com"
    132 msgstr ""
    133 
    134 #: pages-admin/admin-gcs.php:261
    135 msgid "Collect statistics for Linkedin referer"
    136 msgstr ""
    137 
    138 #: pages-admin/admin-gcs.php:271
    139 msgid "Turn Off or On for statistics survey of linkedin.com"
    140 msgstr ""
    141 
    142 #: pages-admin/admin-gcs.php:274
    143 msgid "Pinboard"
    144 msgstr ""
    145 
    146 #: pages-admin/admin-gcs.php:277
    147 msgid "Collect statistics for Pinterest referer"
    148 msgstr ""
    149 
    150 #: pages-admin/admin-gcs.php:287
    151 msgid "Turn Off or On for statistics survey of pinterest.com"
    152 msgstr ""
    153 
    154 #: pages-admin/admin-gcs.php:292
    155164msgid "Collect statistics for Scoop.it referer"
    156165msgstr ""
    157166
    158 #: pages-admin/admin-gcs.php:302
     167#: pages-admin/admin-gcs.php:365
    159168msgid "Turn Off or On for statistics survey of scoop.it"
    160169msgstr ""
    161170
    162 #: pages-admin/admin-gcs.php:305
     171#: pages-admin/admin-gcs.php:368
    163172msgid "Main China"
    164173msgstr ""
    165174
    166 #: pages-admin/admin-gcs.php:308
     175#: pages-admin/admin-gcs.php:371
    167176msgid "Collect statistics for Qzone referer"
    168177msgstr ""
    169178
    170 #: pages-admin/admin-gcs.php:318
     179#: pages-admin/admin-gcs.php:381
    171180msgid "Turn Off or On for statistics survey of qzone.qq.com"
    172181msgstr ""
    173182
    174 #: pages-admin/admin-gcs.php:323
     183#: pages-admin/admin-gcs.php:386
    175184msgid "Collect statistics for Weibo referer"
    176185msgstr ""
    177186
    178 #: pages-admin/admin-gcs.php:333
     187#: pages-admin/admin-gcs.php:396
    179188msgid "Turn Off or On for statistics survey of weibo.com"
    180189msgstr ""
    181190
    182 #: pages-admin/admin-gcs.php:336
     191#: pages-admin/admin-gcs.php:399
    183192msgid "Main Russia"
    184193msgstr ""
    185194
    186 #: pages-admin/admin-gcs.php:339
     195#: pages-admin/admin-gcs.php:402
    187196msgid "Collect statistics for vk referer"
    188197msgstr ""
    189198
    190 #: pages-admin/admin-gcs.php:349
     199#: pages-admin/admin-gcs.php:412
    191200msgid "Turn Off or On for statistics survey of vk.com"
    192201msgstr ""
    193202
    194 #: pages-admin/admin-gcs.php:370
    195 #: pages-admin/admin-gcs.php:376
     203#: pages-admin/admin-gcs.php:416
     204msgid "Personal referers"
     205msgstr ""
     206
     207#: pages-admin/admin-gcs.php:419
     208msgid "Your personal referers"
     209msgstr ""
     210
     211#: pages-admin/admin-gcs.php:428
     212msgid "Add your personal referer seperate by coma (Add only domain.tld without http://www.)"
     213msgstr ""
     214
     215#: pages-admin/admin-gcs.php:450
     216msgid "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)"
     217msgstr ""
     218
     219#: pages-admin/admin-gcs.php:457
     220msgid "Collect statistics for"
     221msgstr ""
     222
     223#: pages-admin/admin-gcs.php:457
     224msgid "referer"
     225msgstr ""
     226
     227#: pages-admin/admin-gcs.php:471
     228msgid "Turn Off or On for statistics survey of"
     229msgstr ""
     230
     231#: pages-admin/admin-gcs.php:477
     232msgid "Reset Options"
     233msgstr ""
     234
     235#: pages-admin/admin-gcs.php:480
     236msgid "Reset posts and pages statistics"
     237msgstr ""
     238
     239#: pages-admin/admin-gcs.php:489
     240msgid "Turn On to reset all statistics to zero on all posts and pages stats"
     241msgstr ""
     242
     243#: pages-admin/admin-gcs.php:494
     244msgid "Reset users statistics"
     245msgstr ""
     246
     247#: pages-admin/admin-gcs.php:503
     248msgid "Turn On to reset all statistics to zero for all users stats"
     249msgstr ""
     250
     251#: pages-admin/admin-gcs.php:524
     252#: pages-admin/admin-gcs.php:530
    196253msgid "Statistics Performances"
    197254msgstr ""
    198255
    199 #: pages-admin/admin-gcs.php:382
    200 #: pages-admin/admin-gcs.php:388
     256#: pages-admin/admin-gcs.php:536
     257#: pages-admin/admin-gcs.php:542
    201258msgid "Statistics Organics"
    202259msgstr ""
    203260
    204 #: pages-admin/admin-gcs.php:394
    205 #: pages-admin/admin-gcs.php:400
     261#: pages-admin/admin-gcs.php:548
     262#: pages-admin/admin-gcs.php:554
    206263msgid "Statistics Networks"
    207264msgstr ""
    208265
    209 #: pages-admin/admin-gcs.php:406
    210 #: pages-admin/admin-gcs.php:412
     266#: pages-admin/admin-gcs.php:560
     267#: pages-admin/admin-gcs.php:566
    211268msgid "Statistics Users"
    212269msgstr ""
    213270
    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
     276msgid "Currently no datas"
     277msgstr ""
     278
     279#: pages-admin/admin-gcs.php:980
    220280msgid "Normal"
    221281msgstr ""
    222282
    223 #: pages-admin/admin-gcs.php:832
     283#: pages-admin/admin-gcs.php:982
    224284msgid "Sticky"
    225285msgstr ""
    226286
    227 #: pages-admin/admin-gcs.php:899
     287#: pages-admin/admin-gcs.php:1049
    228288msgid "Connected"
    229289msgstr ""
    230290
    231 #: pages-admin/admin-gcs.php:900
     291#: pages-admin/admin-gcs.php:1050
    232292msgid "Disconnected"
    233293msgstr ""
    234294
    235 #: pages-admin/admin-gcs.php:1114
     295#: pages-admin/admin-gcs.php:1264
    236296msgid "Known"
    237297msgstr ""
    238298
    239 #: pages-admin/admin-gcs.php:1116
     299#: pages-admin/admin-gcs.php:1266
    240300msgid "Unknown"
    241301msgstr ""
     
    246306
    247307#: pages-admin/admin-home.php:29
    248 msgid "Google chart statistics - Home statistics"
    249 msgstr ""
    250 
    251 #: pages-admin/admin-home.php:33
     308msgid "Humanized statistics - Home statistics"
     309msgstr ""
     310
     311#: pages-admin/admin-home.php:37
    252312msgid "Statistics home page total sticky VS normal"
    253313msgstr ""
    254314
    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
     316msgid "Statistics home page from normal posts - user in bounce to"
     317msgstr ""
     318
     319#: pages-admin/admin-home.php:190
     320msgid "Statistics home page from sticky posts - user in bounce to"
     321msgstr ""
     322
Note: See TracChangeset for help on using the changeset viewer.