Changeset 14540

Show
Ignore:
Timestamp:
06/26/07 07:43:52 (13 months ago)
Author:
GamerZ
Message:
 
Location:
wp-useronline/trunk
Files:
7 modified

Legend:

Unmodified
Added
Removed
  • wp-useronline/trunk/readme.html

    r13485 r14540  
    33<head>       
    44      <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 
    5       <title>WP-UserOnline 2.11 Readme</title> 
     5      <title>WP-UserOnline 1.20 Readme</title> 
    66      <style type="text/css" media="screen"> 
    77            /* Default Style */ 
     
    205205<div id="Container"> 
    206206      <!-- Title --> 
    207       <div id="Title">WP-UserOnline 2.11&nbsp;&nbsp;&nbsp;<span style="color: #aaaaaa;">Readme</span></div> 
     207      <div id="Title">WP-UserOnline 1.20&nbsp;&nbsp;&nbsp;<span style="color: #aaaaaa;">Readme</span></div> 
    208208 
    209209      <!-- Tabs --> 
     
    231231                        <script type="text/javascript"> 
    232232                              /* <![CDATA[*/ 
    233                               document.write(' <a href="mailto:gamerz84@hotmail.com?Subject=WP-UserOnline%202.11%20Support" title="EMail To gamerz84@hotmail.com">gamerz84@hotmail.com</a>'); 
     233                              document.write(' <a href="mailto:gamerz84@hotmail.com?Subject=WP-UserOnline%201.20%20Support" title="EMail To gamerz84@hotmail.com">gamerz84@hotmail.com</a>'); 
    234234                              /* ]]> */ 
    235235                        </script> 
     
    245245                  <p> 
    246246                        <strong>Download:</strong><br /> 
    247                         <strong>&raquo;</strong> <a href="http://www.lesterchan.net/others/downloads.php?id=14" title="http://www.lesterchan.net/others/downloads.php?id=14">WP-UserOnline 2.11 For WordPress 2.1.x And Above</a><br /> 
     247                        <strong>&raquo;</strong> <a href="http://www.lesterchan.net/others/downloads.php?id=14" title="http://www.lesterchan.net/others/downloads.php?id=14">WP-UserOnline 1.20 For WordPress 2.1.x And Above</a><br /> 
    248248                        <strong>&raquo;</strong> <a href="http://www.lesterchan.net/others/downloads/wp-useronline206.zip" title="http://www.lesterchan.net/others/downloads/wp-useronline206.zip">WP-UserOnline 2.06 For WordPress 2.0.x</a><br /> 
    249249                        <strong>&raquo;</strong> <a href="http://www.lesterchan.net/others/downloads/wp-useronline.zip" title="http://www.lesterchan.net/others/downloads/wp-useronline.zip">WP-UserOnline 1.00 For WordPress 1.5.2</a> 
     
    267267                  <p> 
    268268                        <strong>Updated:</strong><br /> 
    269                         <strong>&raquo;</strong> 1st June 2007 
     269                        <strong>&raquo;</strong> 1st October 2007 
    270270                  </p> 
    271271                  <p> 
     
    289289                  <ul> 
    290290                        <li> 
     291                              <strong>Version 2.20 (01-10-2007)</strong> 
     292                              <ul> 
     293                                    <li>NEW: Ability To Uninstall WP-UserOnline</li> 
     294                              </ul> 
     295                        </li> 
     296                        <li> 
    291297                              <strong>Version 2.11 (01-06-2007)</strong> 
    292298                              <ul> 
     
    397403            <div id="Upgrade" style="display: none;"> 
    398404                  <div class="SubTitle">&raquo; Upgrade Instructions</div> 
    399                   <div class="SubSubTitle">From v1.0x To v2.11</div> 
     405                  <div class="SubSubTitle">From v1.0x To v1.20</div> 
    400406                  <ol> 
    401407                        <li> 
     
    528534      </div> 
    529535</div> 
    530 <p id="Copyright">WP-UserOnline 2.11<br />Copyright &copy; 2007 Lester 'GaMerZ' Chan. All Rights Reserved.</p> 
     536<p id="Copyright">WP-UserOnline 1.20<br />Copyright &copy; 2007 Lester 'GaMerZ' Chan. All Rights Reserved.</p> 
    531537</body> 
    532538</html> 
  • wp-useronline/trunk/useronline/useronline-js.php

    r12303 r14540  
    33+----------------------------------------------------------------+ 
    44|                                                                                                                                         | 
    5 |     WordPress 2.1 Plugin: WP-UserOnline 2.11                                            | 
     5|     WordPress 2.1 Plugin: WP-UserOnline 2.20                                            | 
    66|     Copyright (c) 2007 Lester "GaMerZ" Chan                                                   | 
    77|                                                                                                                                         | 
  • wp-useronline/trunk/useronline/useronline-options.php

    r12303 r14540  
    33+----------------------------------------------------------------+ 
    44|                                                                                                                                         | 
    5 |     WordPress 2.1 Plugin: WP-UserOnline 2.11                                            | 
     5|     WordPress 2.1 Plugin: WP-UserOnline 2.20                                            | 
    66|     Copyright (c) 2007 Lester "GaMerZ" Chan                                                   | 
    77|                                                                                                                                         | 
     
    2121$base_name = plugin_basename('useronline/useronline-options.php'); 
    2222$base_page = 'admin.php?page='.$base_name; 
    23  
    24 ### If Form Is Submitted 
    25 if($_POST['Submit']) { 
    26       $useronline_bots = array(); 
    27       $useronline_timeout = intval($_POST['useronline_timeout']); 
    28       $useronline_bots_name = explode("\n", trim($_POST['useronline_bots_name'])); 
    29       $useronline_bots_agent = explode("\n", trim($_POST['useronline_bots_agent']));       
    30       $useronline_bots_keys = array_values((array) $useronline_bots_name); 
    31       $useronline_bots_vals = array_values((array) $useronline_bots_agent); 
    32       $n = max(count($useronline_bots_keys), count($useronline_bots_vals)); 
    33             for($i = 0; $i < $n; $i++) { 
    34             $useronline_bots[trim($useronline_bots_keys[$i])] = trim($useronline_bots_vals[$i]); 
    35       } 
    36       $useronline_url = addslashes(trim($_POST['useronline_url'])); 
    37       $update_useronline_queries = array(); 
    38       $update_useronline_text = array(); 
    39       $update_useronline_queries[] = update_option('useronline_timeout', $useronline_timeout); 
    40       $update_useronline_queries[] = update_option('useronline_bots', $useronline_bots); 
    41       $update_useronline_queries[] = update_option('useronline_url', $useronline_url); 
    42       $update_useronline_text[] = __('Useronline Timeout', 'wp-useronline'); 
    43       $update_useronline_text[] = __('Useronline Bots', 'wp-useronline'); 
    44       $update_useronline_text[] = __('Useronline URL', 'wp-useronline'); 
    45       $i=0; 
    46       $text = ''; 
    47       foreach($update_useronline_queries as $update_useronline_query) { 
    48             if($update_useronline_query) { 
    49                   $text .= '<font color="green">'.$update_useronline_text[$i].' '.__('Updated', 'wp-useronline').'</font><br />'; 
    50             } 
    51             $i++; 
    52       } 
    53       if(empty($text)) { 
    54             $text = '<font color="red">'.__('No Useronline Option Updated', 'wp-useronline').'</font>'; 
     23$mode = trim($_GET['mode']); 
     24$useronline_tables = array($wpdb->useronline); 
     25$useronline_settings = array('useronline_most_users', 'useronline_most_timestamp', 'useronline_timeout', 'useronline_bots', 'useronline_url', 'widget_useronline'); 
     26 
     27 
     28### Form Processing  
     29if(!empty($_POST['do'])) { 
     30      // Decide What To Do 
     31      switch($_POST['do']) { 
     32            case __('Update Options', 'wp-useronline'): 
     33                  $useronline_bots = array(); 
     34                  $useronline_timeout = intval($_POST['useronline_timeout']); 
     35                  $useronline_bots_name = explode("\n", trim($_POST['useronline_bots_name'])); 
     36                  $useronline_bots_agent = explode("\n", trim($_POST['useronline_bots_agent']));       
     37                  $useronline_bots_keys = array_values((array) $useronline_bots_name); 
     38                  $useronline_bots_vals = array_values((array) $useronline_bots_agent); 
     39                  $n = max(count($useronline_bots_keys), count($useronline_bots_vals)); 
     40                        for($i = 0; $i < $n; $i++) { 
     41                        $useronline_bots[trim($useronline_bots_keys[$i])] = trim($useronline_bots_vals[$i]); 
     42                  } 
     43                  $useronline_url = addslashes(trim($_POST['useronline_url'])); 
     44                  $update_useronline_queries = array(); 
     45                  $update_useronline_text = array(); 
     46                  $update_useronline_queries[] = update_option('useronline_timeout', $useronline_timeout); 
     47                  $update_useronline_queries[] = update_option('useronline_bots', $useronline_bots); 
     48                  $update_useronline_queries[] = update_option('useronline_url', $useronline_url); 
     49                  $update_useronline_text[] = __('Useronline Timeout', 'wp-useronline'); 
     50                  $update_useronline_text[] = __('Useronline Bots', 'wp-useronline'); 
     51                  $update_useronline_text[] = __('Useronline URL', 'wp-useronline'); 
     52                  $i=0; 
     53                  $text = ''; 
     54                  foreach($update_useronline_queries as $update_useronline_query) { 
     55                        if($update_useronline_query) { 
     56                              $text .= '<font color="green">'.$update_useronline_text[$i].' '.__('Updated', 'wp-useronline').'</font><br />'; 
     57                        } 
     58                        $i++; 
     59                  } 
     60                  if(empty($text)) { 
     61                        $text = '<font color="red">'.__('No Useronline Option Updated', 'wp-useronline').'</font>'; 
     62                  } 
     63                  break; 
     64            // Uninstall WP-UserOnline 
     65            case __('UNINSTALL WP-UserOnline', 'wp-useronline') : 
     66                  if(trim($_POST['uninstall_useronline_yes']) == 'yes') { 
     67                        echo '<div id="message" class="updated fade">'; 
     68                        echo '<p>'; 
     69                        foreach($useronline_tables as $table) { 
     70                              $wpdb->query("DROP TABLE {$table}"); 
     71                              echo '<font style="color: green;">'; 
     72                              printf(__('Table \'%s\' has been deleted.', 'wp-useronline'), "<strong><em>{$table}</em></strong>"); 
     73                              echo '</font><br />'; 
     74                        } 
     75                        echo '</p>'; 
     76                        echo '<p>'; 
     77                        foreach($useronline_settings as $setting) { 
     78                              $delete_setting = delete_option($setting); 
     79                              if($delete_setting) { 
     80                                    echo '<font color="green">'; 
     81                                    printf(__('Setting Key \'%s\' has been deleted.', 'wp-useronline'), "<strong><em>{$setting}</em></strong>"); 
     82                                    echo '</font><br />'; 
     83                              } else { 
     84                                    echo '<font color="red">'; 
     85                                    printf(__('Error deleting Setting Key \'%s\'.', 'wp-useronline'), "<strong><em>{$setting}</em></strong>"); 
     86                                    echo '</font><br />'; 
     87                              } 
     88                        } 
     89                        echo '</p>'; 
     90                        echo '</div>';  
     91                        $mode = 'end-UNINSTALL'; 
     92                  } 
     93                  break; 
    5594      } 
    5695} 
    5796 
    58 ### Get Useronline Bots 
    59 $useronline_options_bots = get_option('useronline_bots'); 
    60 $useronline_options_bots_name = ''; 
    61 $useronline_options_bots_agent = ''; 
    62 foreach($useronline_options_bots as $botname => $botagent) { 
    63       $useronline_options_bots_name .= $botname."\n"; 
    64       $useronline_options_bots_agent .= $botagent."\n"; 
    65 } 
    66 $useronline_options_bots_name = trim($useronline_options_bots_name); 
    67 $useronline_options_bots_agent = trim($useronline_options_bots_agent); 
     97 
     98### Determines Which Mode It Is 
     99switch($mode) { 
     100            //  Deactivating WP-UserOnline 
     101            case 'end-UNINSTALL': 
     102                  $deactivate_url = 'plugins.php?action=deactivate&amp;plugin=useronline/useronline.php'; 
     103                  if(function_exists('wp_nonce_url')) {  
     104                        $deactivate_url = wp_nonce_url($deactivate_url, 'deactivate-plugin_useronline/useronline.php'); 
     105                  } 
     106                  echo '<div class="wrap">'; 
     107                  echo '<h2>'.__('Uninstall WP-UserOnline', 'wp-useronline').'</h2>'; 
     108                  echo '<p><strong>'.sprintf(__('<a href="%s">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically.', 'wp-useronline'), $deactivate_url).'</strong></p>'; 
     109                  echo '</div>'; 
     110                  break; 
     111      // Main Page 
     112      default: 
     113            $useronline_options_bots = get_option('useronline_bots'); 
     114            $useronline_options_bots_name = ''; 
     115            $useronline_options_bots_agent = ''; 
     116            foreach($useronline_options_bots as $botname => $botagent) { 
     117                  $useronline_options_bots_name .= $botname."\n"; 
     118                  $useronline_options_bots_agent .= $botagent."\n"; 
     119            } 
     120            $useronline_options_bots_name = trim($useronline_options_bots_name); 
     121            $useronline_options_bots_agent = trim($useronline_options_bots_agent); 
    68122?> 
    69123<?php if(!empty($text)) { echo '<!-- Last Action --><div id="message" class="updated fade"><p>'.$text.'</p></div>'; } ?> 
     124<form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">  
    70125<div class="wrap">  
    71126      <h2><?php _e('Useronline Options', 'wp-useronline'); ?></h2>  
    72       <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">  
    73             <fieldset class="options"> 
    74                   <legend><?php _e('Useronline Options', 'wp-useronline'); ?></legend> 
    75                   <table width="100%"  border="0" cellspacing="3" cellpadding="3"> 
    76                          <tr valign="top"> 
    77                               <th align="left" width="30%"><?php _e('Time Out', 'wp-useronline'); ?></th> 
    78                               <td align="left"> 
    79                                     <input type="text" name="useronline_timeout" value="<?php echo get_option('useronline_timeout'); ?>" size="4" /><br /><?php _e('How long till it will remove the user from the database (In seconds).', 'wp-useronline'); ?> 
    80                               </td> 
    81                         </tr> 
    82                          <tr valign="top"> 
    83                               <th align="left" width="30%"><?php _e('UserOnline URL', 'wp-useronline'); ?></th> 
    84                               <td align="left"> 
    85                                     <input type="text" name="useronline_url" value="<?php echo get_option('useronline_url'); ?>" size="50" /><br /><?php _e('URL To UserOnline Page (leave blank if you do not want to link it to the UserOnline Page)<br />Example: http://www.yoursite.com/blogs/useronline/<br />Example: http://www.yoursite.com/blogs/?page_id=2', 'wp-useronline'); ?> 
    86                               </td> 
    87                         </tr> 
    88                         <tr valign="top">  
    89                               <th align="left" width="30%"><?php _e('Bots Name/User Agent', 'wp-useronline'); ?></th> 
    90                               <td align="left"> 
    91                                     <?php _e('Here are a list of bots and their partial browser agents.<br />On the left column will be the <strong>Bot\'s Name</strong> and on the right column will be their <strong>Partial Browser Agent</strong>.<br />Start each entry on a new line.', 'wp-useronline'); ?> 
    92                                     <br /><br /> 
    93                                     <textarea cols="20" rows="30" name="useronline_bots_name"><?php echo $useronline_options_bots_name; ?></textarea> 
    94                                     <textarea cols="20" rows="30" name="useronline_bots_agent"><?php echo $useronline_options_bots_agent; ?></textarea>                                    
    95                               </td>  
    96                         </tr> 
    97                   </table> 
    98             </fieldset> 
    99             <div align="center"> 
    100                   <input type="submit" name="Submit" class="button" value="<?php _e('Update Options', 'wp-useronline'); ?>" />&nbsp;&nbsp;<input type="button" name="cancel" value="<?php _e('Cancel', 'wp-useronline'); ?>" class="button" onclick="javascript:history.go(-1)" />  
    101             </div> 
    102       </form>  
     127      <fieldset class="options"> 
     128            <legend><?php _e('Useronline Options', 'wp-useronline'); ?></legend> 
     129            <table width="100%"  border="0" cellspacing="3" cellpadding="3"> 
     130                   <tr valign="top"> 
     131                        <th align="left" width="30%"><?php _e('Time Out', 'wp-useronline'); ?></th> 
     132                        <td align="left"> 
     133                              <input type="text" name="useronline_timeout" value="<?php echo get_option('useronline_timeout'); ?>" size="4" /><br /><?php _e('How long till it will remove the user from the database (In seconds).', 'wp-useronline'); ?> 
     134                        </td> 
     135                  </tr> 
     136                   <tr valign="top"> 
     137                        <th align="left" width="30%"><?php _e('UserOnline URL', 'wp-useronline'); ?></th> 
     138                        <td align="left"> 
     139                              <input type="text" name="useronline_url" value="<?php echo get_option('useronline_url'); ?>" size="50" /><br /><?php _e('URL To UserOnline Page (leave blank if you do not want to link it to the UserOnline Page)<br />Example: http://www.yoursite.com/blogs/useronline/<br />Example: http://www.yoursite.com/blogs/?page_id=2', 'wp-useronline'); ?> 
     140                        </td> 
     141                  </tr> 
     142                  <tr valign="top">  
     143                        <th align="left" width="30%"><?php _e('Bots Name/User Agent', 'wp-useronline'); ?></th> 
     144                        <td align="left"> 
     145                              <?php _e('Here are a list of bots and their partial browser agents.<br />On the left column will be the <strong>Bot\'s Name</strong> and on the right column will be their <strong>Partial Browser Agent</strong>.<br />Start each entry on a new line.', 'wp-useronline'); ?> 
     146                              <br /><br /> 
     147                              <textarea cols="20" rows="30" name="useronline_bots_name"><?php echo $useronline_options_bots_name; ?></textarea> 
     148                              <textarea cols="20" rows="30" name="useronline_bots_agent"><?php echo $useronline_options_bots_agent; ?></textarea>                                    
     149                        </td>  
     150                  </tr> 
     151            </table> 
     152      </fieldset> 
     153      <div align="center"> 
     154            <input type="submit" name="do" class="button" value="<?php _e('Update Options', 'wp-useronline'); ?>" />&nbsp;&nbsp;<input type="button" name="cancel" value="<?php _e('Cancel', 'wp-useronline'); ?>" class="button" onclick="javascript:history.go(-1)" />  
     155      </div> 
     156</div> 
     157</form> 
     158 
     159<!-- Uninstall WP-UserOnline --> 
     160<form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">  
     161<div class="wrap">  
     162      <h2><?php _e('Uninstall WP-UserOnline', 'wp-useronline'); ?></h2> 
     163      <p style="text-align: left;"> 
     164            <?php _e('Deactivating WP-UserOnline plugin does not remove any data that may have been created, such as the useronline options. To completely remove this plugin, you can uninstall it here.', 'wp-useronline'); ?> 
     165      </p> 
     166      <p style="text-align: left; color: red"> 
     167            <strong><?php _e('WARNING:', 'wp-useronline'); ?></strong><br /> 
     168            <?php _e('Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first.', 'wp-useronline'); ?> 
     169      </p> 
     170      <p style="text-align: left; color: red"> 
     171            <strong><?php _e('The following WordPress Options/Tables will be DELETED:', 'wp-useronline'); ?></strong><br /> 
     172      </p> 
     173      <table width="70%"  border="0" cellspacing="3" cellpadding="3"> 
     174            <tr class="thead"> 
     175                  <td align="center"><strong><?php _e('WordPress Options', 'wp-useronline'); ?></strong></td> 
     176                  <td align="center"><strong><?php _e('WordPress Tables', 'wp-useronline'); ?></strong></td> 
     177            </tr> 
     178            <tr> 
     179                  <td valign="top" style="background-color: #eee;"> 
     180                        <ol> 
     181                        <?php 
     182                              foreach($useronline_settings as $settings) { 
     183                                    echo '<li>'.$settings.'</li>'."\n"; 
     184                              } 
     185                        ?> 
     186                        </ol> 
     187                  </td> 
     188                  <td valign="top" style="background-color: #eee;"> 
     189                        <ol> 
     190                        <?php 
     191                              foreach($useronline_tables as $tables) { 
     192                                    echo '<li>'.$tables.'</li>'."\n"; 
     193                              } 
     194                        ?> 
     195                        </ol> 
     196                  </td> 
     197            </tr> 
     198      </table> 
     199      <p>&nbsp;</p> 
     200      <p style="text-align: center;"> 
     201            <input type="checkbox" name="uninstall_useronline_yes" value="yes" />&nbsp;<?php _e('Yes', 'wp-useronline'); ?><br /><br /> 
     202            <input type="submit" name="do" value="<?php _e('UNINSTALL WP-UserOnline', 'wp-useronline'); ?>" class="button" onclick="return confirm('<?php _e('You Are About To Uninstall WP-UserOnline From WordPress.\nThis Action Is Not Reversible.\n\n Choose [Cancel] To Stop, [OK] To Uninstall.', 'wp-useronline'); ?>')" /> 
     203      </p> 
    103204</div>  
     205</form> 
     206<?php 
     207} // End switch($mode) 
     208?> 
  • wp-useronline/trunk/useronline/useronline-widget.php

    r13485 r14540  
    44Plugin URI: http://www.lesterchan.net/portfolio/programming.php 
    55Description: Adds a UserOnline Widget to display users online from WP-UserOnline Plugin. You need to activate WP-UserOnline first. 
    6 Version: 2.11 
     6Version: 2.20 
    77Author: GaMerZ 
    88Author URI: http://www.lesterchan.net 
  • wp-useronline/trunk/useronline/useronline.php

    r13544 r14540  
    44Plugin URI: http://www.lesterchan.net/portfolio/programming.php 
    55Description: Enable you to display how many users are online on your Wordpress blog with detailed statistics of where they are and who there are(Members/Guests/Search Bots). 
    6 Version: 2.11 
     6Version: 2.20 
    77Author: Lester 'GaMerZ' Chan 
    88Author URI: http://www.lesterchan.net 
  • wp-useronline/trunk/useronline/wp-useronline.pot

    r13485 r14540  
    11msgid "" 
    22msgstr "" 
    3 "Project-Id-Version: WP-UserOnline 2.11\n" 
     3"Project-Id-Version: WP-UserOnline 2.20\n" 
    44"POT-Creation-Date: \n" 
    5 "PO-Revision-Date: 2007-05-31 19:48+0800\n" 
     5"PO-Revision-Date: 2007-06-26 15:42+0800\n" 
    66"Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 
    77"Language-Team: Lester Chan <gamerz84@hotmail.com>\n" 
     
    1515"X-Poedit-SearchPath-0: .\n" 
    1616 
    17 #: useronline-options.php:42 
     17#: useronline-options.php:32 
     18#: useronline-options.php:154 
     19msgid "Update Options" 
     20msgstr "" 
     21 
     22#: useronline-options.php:49 
    1823msgid "Useronline Timeout" 
    1924msgstr "" 
    2025 
    21 #: useronline-options.php:43 
     26#: useronline-options.php:50 
    2227msgid "Useronline Bots" 
    2328msgstr "" 
    2429 
    25 #: useronline-options.php:44 
     30#: useronline-options.php:51 
    2631msgid "Useronline URL" 
    2732msgstr "" 
    2833 
    29 #: useronline-options.php:49 
     34#: useronline-options.php:56 
    3035msgid "Updated" 
    3136msgstr "" 
    3237 
    33 #: useronline-options.php:54 
     38#: useronline-options.php:61 
    3439msgid "No Useronline Option Updated" 
    3540msgstr "" 
    3641 
    37 #: useronline-options.php:71 
    38 #: useronline-options.php:74 
     42#: useronline-options.php:65 
     43#: useronline-options.php:202 
     44msgid "UNINSTALL WP-UserOnline" 
     45msgstr "" 
     46 
     47#: useronline-options.php:72 
     48#, php-format 
     49msgid "Table '%s' has been deleted." 
     50msgstr "" 
     51 
     52#: useronline-options.php:81 
     53#, php-format 
     54msgid "Setting Key '%s' has been deleted." 
     55msgstr "" 
     56 
     57#: useronline-options.php:85 
     58#, php-format 
     59msgid "Error deleting Setting Key '%s'." 
     60msgstr "" 
     61 
     62#: useronline-options.php:107 
     63#: useronline-options.php:162 
     64msgid "Uninstall WP-UserOnline" 
     65msgstr "" 
     66 
     67#: useronline-options.php:108 
     68#, php-format 
     69msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically." 
     70msgstr "" 
     71 
     72#: useronline-options.php:126 
     73#: useronline-options.php:128 
    3974msgid "Useronline Options" 
    4075msgstr "" 
    4176 
    42 #: useronline-options.php:77 
     77#: useronline-options.php:131 
    4378msgid "Time Out" 
    4479msgstr "" 
    4580 
    46 #: useronline-options.php:79 
     81#: useronline-options.php:133 
    4782msgid "How long till it will remove the user from the database (In seconds)." 
    4883msgstr "" 
    4984 
    50 #: useronline-options.php:83 
     85#: useronline-options.php:137 
    5186msgid "UserOnline URL" 
    5287msgstr "" 
    5388 
    54 #: useronline-options.php:85 
     89#: useronline-options.php:139 
    5590msgid "URL To UserOnline Page (leave blank if you do not want to link it to the UserOnline Page)<br />Example: http://www.yoursite.com/blogs/useronline/<br />Example: http://www.yoursite.com/blogs/?page_id=2" 
    5691msgstr "" 
    5792 
    58 #: useronline-options.php:89 
     93#: useronline-options.php:143 
    5994msgid "Bots Name/User Agent" 
    6095msgstr "" 
    6196 
    62 #: useronline-options.php:91 
     97#: useronline-options.php:145 
    6398msgid "Here are a list of bots and their partial browser agents.<br />On the left column will be the <strong>Bot's Name</strong> and on the right column will be their <strong>Partial Browser Agent</strong>.<br />Start each entry on a new line." 
    6499msgstr "" 
    65100 
    66 #: useronline-options.php:100 
    67 msgid "Update Options" 
    68 msgstr "" 
    69  
    70 #: useronline-options.php:100 
     101#: useronline-options.php:154 
    71102msgid "Cancel" 
     103msgstr "" 
     104 
     105#: useronline-options.php:164 
     106msgid "Deactivating WP-UserOnline plugin does not remove any data that may have been created, such as the useronline options. To completely remove this plugin, you can uninstall it here." 
     107msgstr "" 
     108 
     109#: useronline-options.php:167 
     110msgid "WARNING:" 
     111msgstr "" 
     112 
     113#: useronline-options.php:168 
     114msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first." 
     115msgstr "" 
     116 
     117#: useronline-options.php:171 
     118msgid "The following WordPress Options/Tables will be DELETED:" 
     119msgstr "" 
     120 
     121#: useronline-options.php:175 
     122msgid "WordPress Options" 
     123msgstr "" 
     124 
     125#: useronline-options.php:176 
     126msgid "WordPress Tables" 
     127msgstr "" 
     128 
     129#: useronline-options.php:201 
     130#: useronline-widget.php:73 
     131msgid "Yes" 
     132msgstr "" 
     133 
     134#: useronline-options.php:202 
     135msgid "" 
     136"You Are About To Uninstall WP-UserOnline From WordPress.\\n" 
     137"This Action Is Not Reversible.\\n" 
     138"\\n" 
     139" Choose [Cancel] To Stop, [OK] To Uninstall." 
    72140msgstr "" 
    73141 
     
    82150#: useronline-widget.php:70 
    83151msgid "Display Users Browsing Site Under Users Online Count?" 
    84 msgstr "" 
    85  
    86 #: useronline-widget.php:73 
    87 msgid "Yes" 
    88152msgstr "" 
    89153