WP-UserOnline - Version 2.72

Version Description

  • fix fatal error on upgrade
Download this release

Release Info

Developer scribu
Plugin Icon WP-UserOnline
Version 2.72
Comparing to
See all releases

Code changes from version 2.62 to 2.72

Files changed (57) hide show
  1. admin.php +181 -157
  2. deprecated.php +35 -0
  3. lang/wp-useronline-de_DE.mo +0 -0
  4. lang/wp-useronline-de_DE.po +447 -0
  5. lang/wp-useronline-el_GR.mo +0 -0
  6. lang/wp-useronline-el_GR.po +446 -0
  7. lang/wp-useronline-es_ES.mo +0 -0
  8. lang/wp-useronline-es_ES.po +432 -0
  9. lang/wp-useronline-fa_IR.mo +0 -0
  10. lang/wp-useronline-fa_IR.po +514 -0
  11. lang/wp-useronline-fr_FR.mo +0 -0
  12. lang/wp-useronline-fr_FR.po +477 -0
  13. lang/wp-useronline-he_IL.mo +0 -0
  14. lang/wp-useronline-he_IL.po +428 -0
  15. lang/wp-useronline-hu_HU.mo +0 -0
  16. lang/wp-useronline-hu_HU.po +443 -0
  17. lang/wp-useronline-it_IT.mo +0 -0
  18. lang/wp-useronline-it_IT.po +441 -0
  19. lang/wp-useronline-nl_NL.mo +0 -0
  20. lang/wp-useronline-nl_NL.po +432 -0
  21. lang/wp-useronline-pl_PL.mo +0 -0
  22. lang/wp-useronline-pl_PL.po +447 -0
  23. lang/wp-useronline-pt_BR.mo +0 -0
  24. lang/wp-useronline-pt_BR.po +492 -0
  25. lang/wp-useronline-pt_PT.mo +0 -0
  26. lang/wp-useronline-pt_PT.po +433 -0
  27. lang/wp-useronline-ro_RO.mo +0 -0
  28. lang/wp-useronline-ro_RO.po +292 -0
  29. lang/wp-useronline-ru_RU.mo +0 -0
  30. lang/wp-useronline-ru_RU.po +468 -0
  31. lang/wp-useronline-sk.mo +0 -0
  32. lang/wp-useronline-sk.po +446 -0
  33. lang/wp-useronline-sv_SE.mo +33 -0
  34. lang/wp-useronline-sv_SE.po +449 -0
  35. lang/wp-useronline-tr_TR.mo +0 -0
  36. lang/wp-useronline-tr_TR.po +462 -0
  37. lang/wp-useronline-zh_CN.mo +0 -0
  38. lang/wp-useronline-zh_CN.po +565 -0
  39. lang/wp-useronline.pot +291 -0
  40. readme.txt +33 -32
  41. scb/AdminPage.php +155 -63
  42. scb/Forms.php +20 -118
  43. scb/Options.php +73 -46
  44. scb/Table.php +3 -3
  45. scb/Util.php +111 -37
  46. scb/Widget.php +42 -63
  47. scb/load.php +49 -30
  48. screenshot-1.png +0 -0
  49. screenshot-2.png +0 -0
  50. screenshot-3.png +0 -0
  51. template-tags.php +264 -0
  52. useronline-js.dev.js → useronline.dev.js +0 -0
  53. useronline-js.js → useronline.js +0 -0
  54. widget.php +11 -25
  55. wp-stats.php +4 -11
  56. wp-useronline.php +225 -437
  57. wp-useronline.pot +0 -332
admin.php CHANGED
@@ -1,26 +1,28 @@
1
  <?php
2
 
3
- class UserOnline_Admin_Page extends scbAdminPage {
 
4
  function setup() {
5
  $this->textdomain = 'wp-useronline';
6
 
7
  $this->args = array(
8
  'page_title' => __('Users Online Now', $this->textdomain),
9
  'menu_title' => __('WP-UserOnline', $this->textdomain),
 
10
  'parent' => 'index.php',
11
  'capability' => 'read',
12
  'action_link' => false,
13
  );
14
-
15
  add_action('rightnow_end', array($this, 'rightnow'));
16
  }
17
 
18
  function rightnow() {
19
- $total_users = get_useronline_count(false);
20
 
21
  $str = _n(
22
- 'There is <strong><a href="%s">%s user</a></strong> online now.',
23
- 'There are a total of <strong><a href="%s">%s users</a></strong> online now.',
24
  $total_users, 'wp-useronline'
25
  );
26
 
@@ -28,228 +30,250 @@ class UserOnline_Admin_Page extends scbAdminPage {
28
  printf($str, add_query_arg('page', $this->args['page_slug'], admin_url('index.php')), number_format_i18n($total_users));
29
 
30
  echo '<br />';
31
- get_users_browsing_site();
32
  echo '.<br />';
33
  echo UserOnline_Template::format_most_users();
34
  echo '</p>'."\n";
35
  }
36
 
37
  function page_content() {
38
- echo useronline_page();
39
  }
40
  }
41
 
 
42
  class UserOnline_Options extends scbAdminPage {
 
43
  function setup() {
44
  $this->textdomain = 'wp-useronline';
45
 
46
  $this->args = array(
47
  'page_title' => __('UserOnline Options', $this->textdomain),
48
  'menu_title' => __('UserOnline', $this->textdomain),
 
49
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  }
51
 
52
  function page_head() {
53
  ?>
54
- <script type="text/javascript">
55
- function useronline_default_templates(template) {
56
- var default_template;
57
- if ( "useronline" == template )
58
- default_template = "<a href=\"%USERONLINE_PAGE_URL%\" title=\"%USERONLINE_USERS%\"><strong>%USERONLINE_USERS%</strong> <?php _e('Online', 'wp-useronline'); ?></a>";
59
-
60
- jQuery("#useronline_template_" + template).val(default_template);
61
- }
62
-
63
- function useronline_default_naming() {
64
- jQuery("#useronline_naming_user").val("<?php _e('1 User', 'wp-useronline'); ?>");
65
- jQuery("#useronline_naming_users").val("<?php _e('%USERONLINE_COUNT% Users', 'wp-useronline'); ?>");
66
- jQuery("#useronline_naming_member").val("<?php _e('1 Member', 'wp-useronline'); ?>");
67
- jQuery("#useronline_naming_members").val("<?php _e('%USERONLINE_COUNT% Members', 'wp-useronline'); ?>");
68
- jQuery("#useronline_naming_guest").val("<?php _e('1 Guest', 'wp-useronline'); ?>");
69
- jQuery("#useronline_naming_guests").val("<?php _e('%USERONLINE_COUNT% Guests', 'wp-useronline'); ?>");
70
- jQuery("#useronline_naming_bot").val("<?php _e('1 Bot', 'wp-useronline'); ?>");
71
- jQuery("#useronline_naming_bots").val("<?php _e('%USERONLINE_COUNT% Bots', 'wp-useronline'); ?>");
72
- }
73
- function useronline_default_browsing_site() {
74
- jQuery("#useronline_separator_browsingsite_members").val("<?php _e(',', 'wp-useronline') ?> ");
75
- jQuery("#useronline_separator_browsingsite_guests").val("<?php _e(',', 'wp-useronline') ?> ");
76
- jQuery("#useronline_separator_browsingsite_bots").val("<?php _e(',', 'wp-useronline') ?> ");
77
- jQuery("#useronline_template_browsingsite").val("<?php echo(_c('Users|Template Element', 'wp-useronline')); ?>: <strong>%USERONLINE_MEMBER_NAMES%%USERONLINE_GUESTS_SEPERATOR%%USERONLINE_GUESTS%%USERONLINE_BOTS_SEPERATOR%%USERONLINE_BOTS%</strong>");
78
- }
79
- function useronline_default_browsing_page() {
80
- jQuery("#useronline_separator_browsingpage_members").val("<?php _e(',', 'wp-useronline') ?> ");
81
- jQuery("#useronline_separator_browsingpage_guests").val("<?php _e(',', 'wp-useronline') ?> ");
82
- jQuery("#useronline_separator_browsingpage_bots").val("<?php _e(',', 'wp-useronline') ?> ");
83
- jQuery("#useronline_template_browsingpage").val("<strong>%USERONLINE_USERS%</strong> <?php _e('Browsing This Page.', 'wp-useronline'); ?><br /><?php echo(_c('Users|Template Element', 'wp-useronline')); ?>: <strong>%USERONLINE_MEMBER_NAMES%%USERONLINE_GUESTS_SEPERATOR%%USERONLINE_GUESTS%%USERONLINE_BOTS_SEPERATOR%%USERONLINE_BOTS%</strong>");
84
- }
85
- </script>
86
  <?php
87
  }
88
 
89
- function form_handler() {
90
- if ( empty($_POST['Submit'] ))
91
- return;
 
 
 
92
 
93
- $timeout = intval($_POST['useronline_timeout']);
94
- $url = trim(stripslashes($_POST['useronline_url']));
 
 
 
 
 
 
 
 
95
 
96
- $bots = array();
97
- $bots_name = explode("\n", trim(stripslashes($_POST['useronline_bots_name'])));
98
- $bots_agent = explode("\n", trim(stripslashes($_POST['useronline_bots_agent'])));
 
 
 
99
 
100
- $bots_keys = array_values((array) $bots_name);
101
- $bots_vals = array_values((array) $bots_agent);
102
- $n = max(count($bots_keys), count($bots_vals));
 
 
 
 
103
 
104
- for ( $i = 0; $i < $n; $i++ )
105
- $bots[trim($bots_keys[$i])] = trim($bots_vals[$i]);
 
 
 
 
106
 
107
- $naming = array();
108
- foreach ( array('user', 'users', 'member', 'members', 'guest', 'guests', 'bot', 'bots') as $key )
109
- $naming[$key] = trim(stripslashes($_POST["useronline_naming_$key"]));
110
 
111
- $template_useronline = trim(stripslashes($_POST['useronline_template_useronline']));
112
 
113
- foreach ( array('browsingsite', 'browsingpage') as $key ) {
114
- $template = array();
115
- foreach ( array('members', 'guests', 'bots') as $type )
116
- $template[] = trim(stripslashes($_POST["useronline_separator_{$key}_{$type}"]));
117
- $template[] = trim(stripslashes($_POST["useronline_template_{$key}"]));
118
- update_option("useronline_template_{$key}", $template);
119
- }
120
 
121
- update_option('useronline_timeout', $timeout);
122
- update_option('useronline_bots', $bots);
123
- update_option('useronline_url', $url);
124
- update_option('useronline_naming', $naming);
125
- update_option('useronline_template_useronline', $template_useronline);
126
 
127
- $this->admin_msg(__('Settings updated.', 'wp-useronline'));
128
- }
 
 
 
 
 
 
 
129
 
130
- function page_content() {
131
- $naming = get_option('useronline_naming');
 
 
 
 
 
 
 
 
 
132
 
133
- $bots = get_option('useronline_bots');
134
- $bots_name = implode("\n", array_keys($bots));
135
- $bots_agent = implode("\n", array_values($bots));
136
  ?>
137
- <form method="post" action="">
138
- <table class="form-table">
139
- <tr>
140
- <th scope="row" valign="top"><?php _e('Time Out', 'wp-useronline'); ?></th>
141
- <td>
142
- <input type="text" name="useronline_timeout" value="<?php echo esc_attr(get_option('useronline_timeout')); ?>" size="4" /><br /><?php _e('How long till it will remove the user from the database (In seconds).', 'wp-useronline'); ?>
143
- </td>
144
- </tr>
145
- <tr>
146
- <th scope="row" valign="top"><?php _e('UserOnline URL', 'wp-useronline'); ?></th>
147
- <td>
148
- <input type="text" name="useronline_url" value="<?php echo esc_attr(get_option('useronline_url')); ?>" size="50" dir="ltr" /><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'); ?>
149
- </td>
150
- </tr>
151
- <tr>
152
- <th scope="row" valign="top"><?php _e('Bots Name/User Agent', 'wp-useronline'); ?></th>
153
- <td>
154
- <?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'); ?>
155
- <br /><br />
156
- <textarea cols="20" rows="30" name="useronline_bots_name" dir="ltr"><?php echo esc_html($bots_name); ?></textarea>
157
- <textarea cols="20" rows="30" name="useronline_bots_agent" dir="ltr"><?php echo esc_html($bots_agent); ?></textarea>
158
- </td>
159
- </tr>
160
  <tr>
161
  <td width="30%">
162
- <strong><?php _e('Naming Conventions:', 'wp-useronline'); ?></strong><br /><br /><br />
163
  <?php _e('Allowed Variables:', 'wp-useronline'); ?><br />
164
- - %USERONLINE_COUNT%<br /><br />
165
- <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-useronline'); ?>" onclick="useronline_default_naming();" class="button" />
166
  </td>
167
  <td>
168
  <table class="form-table">
169
  <thead>
170
- <tr>
171
  <th><?php _e('Singular Form', 'wp-useronline'); ?></th>
172
  <th><?php _e('Plural Form', 'wp-useronline'); ?></th>
173
- </tr>
174
- </thead>
175
- <tbody>
176
- <?php foreach ( array('user', 'member', 'guest', 'bot') as $type ) {
177
- echo
178
- html('tr',
179
- html('td', "<input id='useronline_naming_$type' name='useronline_naming_$type' value='"
180
- .esc_attr($naming[$type]) . "' type='text' size='20' />")
181
- .html('td', "<input id='useronline_naming_{$type}s' name='useronline_naming_{$type}s' value='"
182
- .esc_attr($naming[$type . 's']) . "' type='text' size='40' />")
183
- );
184
- } ?>
185
- </tbody>
 
 
 
 
 
186
  </table>
187
  <br />
188
  </td>
189
  </tr>
190
- </table>
 
191
 
192
- <h3><?php _e('Useronline Templates', 'wp-useronline'); ?></h3>
193
- <table class="form-table">
194
- <tr>
195
  <td width="30%">
196
- <strong><?php _e('User(s) Online:', 'wp-useronline'); ?></strong><br /><br /><br />
197
  <?php _e('Allowed Variables:', 'wp-useronline'); ?><br />
198
- - %USERONLINE_USERS%<br />
199
- - %USERONLINE_PAGE_URL%<br />
200
- - %USERONLINE_MOSTONLINE_COUNT%<br />
201
- - %USERONLINE_MOSTONLINE_DATE%<br /><br />
202
- <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-useronline'); ?>" onclick="useronline_default_templates('useronline');" class="button" />
 
 
 
 
 
 
203
  </td>
204
- <td><textarea cols="80" rows="12" id="useronline_template_useronline" name="useronline_template_useronline"><?php echo htmlspecialchars(get_option('useronline_template_useronline')); ?></textarea></td>
205
  </tr>
206
- <?php $this->template(__('User(s) Browsing Site:', 'wp-useronline'), 'site'); ?>
207
- <?php $this->template(__('User(s) Browsing Page:', 'wp-useronline'), 'page'); ?>
208
- </table>
209
- <p class="submit">
210
- <input type="submit" name="Submit" class="button" value="<?php _e('Save Changes', 'wp-useronline'); ?>" />
211
- </p>
212
- </form>
213
  <?php
214
  }
215
-
216
- private function template($title, $option) {
217
- $template = get_option("useronline_template_browsing$option");
218
  ?>
219
  <tr>
220
  <td width="30%">
221
- <strong><?php echo $title; ?></strong><br /><br /><br />
222
  <?php _e('Allowed Variables:', 'wp-useronline'); ?><br />
223
- - %USERONLINE_USERS%<br />
224
- - %USERONLINE_MEMBERS%<br />
225
- - %USERONLINE_MEMBER_NAMES%<br />
226
- - %USERONLINE_GUESTS_SEPERATOR%<br />
227
- - %USERONLINE_GUESTS%<br />
228
- - %USERONLINE_BOTS_SEPERATOR%<br />
229
- - %USERONLINE_BOTS%<br /><br />
230
- <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-useronline'); ?>" onclick="useronline_default_browsing_<?php echo $option; ?>();" class="button" />
231
  </td>
232
  <td>
233
  <table class="form-table">
234
  <thead>
235
- <tr>
236
  <th><?php _e('Member Names Separator', 'wp-useronline'); ?></th>
237
  <th><?php _e('Guests Separator', 'wp-useronline'); ?></th>
238
  <th><?php _e('Bots Separator', 'wp-useronline'); ?></th>
239
- </tr>
240
- </thead>
241
- <tr>
242
- <?php foreach ( array('members', 'guests', 'bots') as $i => $type ) {
243
- $name = "useronline_separator_browsing{$option}_{$type}";
244
- echo
245
- html('td',
246
- "<input type='text' id='$name' name='$name' value='" . esc_attr($template[$i]) . "' size='15' />"
247
- );
248
  } ?>
249
- </tr>
250
  </table>
251
  <br />
252
- <textarea cols="80" rows="12" id="useronline_template_browsing<?php echo $option; ?>" name="useronline_template_browsing<?php echo $option; ?>"><?php echo htmlspecialchars($template[3]); ?></textarea>
 
 
 
253
  </td>
254
  </tr>
255
  <?php
1
  <?php
2
 
3
+ class UserOnline_Admin_Integration extends scbAdminPage {
4
+
5
  function setup() {
6
  $this->textdomain = 'wp-useronline';
7
 
8
  $this->args = array(
9
  'page_title' => __('Users Online Now', $this->textdomain),
10
  'menu_title' => __('WP-UserOnline', $this->textdomain),
11
+ 'page_slug' => 'useronline',
12
  'parent' => 'index.php',
13
  'capability' => 'read',
14
  'action_link' => false,
15
  );
16
+
17
  add_action('rightnow_end', array($this, 'rightnow'));
18
  }
19
 
20
  function rightnow() {
21
+ $total_users = get_users_online_count();
22
 
23
  $str = _n(
24
+ "There is <strong><a href='%s'>%s user</a></strong> online now.",
25
+ "There are a total of <strong><a href='%s'>%s users</a></strong> online now.",
26
  $total_users, 'wp-useronline'
27
  );
28
 
30
  printf($str, add_query_arg('page', $this->args['page_slug'], admin_url('index.php')), number_format_i18n($total_users));
31
 
32
  echo '<br />';
33
+ users_browsing_site();
34
  echo '.<br />';
35
  echo UserOnline_Template::format_most_users();
36
  echo '</p>'."\n";
37
  }
38
 
39
  function page_content() {
40
+ echo users_online_page();
41
  }
42
  }
43
 
44
+
45
  class UserOnline_Options extends scbAdminPage {
46
+
47
  function setup() {
48
  $this->textdomain = 'wp-useronline';
49
 
50
  $this->args = array(
51
  'page_title' => __('UserOnline Options', $this->textdomain),
52
  'menu_title' => __('UserOnline', $this->textdomain),
53
+ 'page_slug' => 'useronline-settings',
54
  );
55
+
56
+ $this->option_name = 'useronline';
57
+ }
58
+
59
+ function validate($options) {
60
+ $options['timeout'] = absint($options['timeout']);
61
+ $options['url'] = trim($options['url']);
62
+ $options['names'] = (bool) $options['names'];
63
+
64
+ foreach ( $options['templates'] as $key => $template )
65
+ if ( is_array($template) )
66
+ $options['templates'][$key]['text'] = trim($template['text']);
67
+ else
68
+ $options['templates'][$key] = trim($template);
69
+
70
+ return $options;
71
  }
72
 
73
  function page_head() {
74
  ?>
75
+ <style type="text/css">
76
+ .form-table td {vertical-align: top}
77
+ .form-table .form-table {margin-top: 0}
78
+ .form-table .form-table th, .form-table .form-table td {padding: 0}
79
+ .form-table textarea {width: 100%; height: 150px}
80
+ </style>
81
+
82
+ <script type="text/javascript">
83
+ function useronline_default_naming() {
84
+ jQuery("#current_naming").html(jQuery("#default_naming").html());
85
+
86
+ return false;
87
+ }
88
+
89
+ function useronline_default_template(template) {
90
+ jQuery('#current_template_' + template).html(jQuery('#default_template_' + template).html());
91
+
92
+ return false;
93
+ }
94
+ </script>
 
 
 
 
 
 
 
 
 
 
 
 
95
  <?php
96
  }
97
 
98
+ function page_content() {
99
+ $options = $this->options->get();
100
+ $defaults = $this->options->get_defaults();
101
+ ?>
102
+ <form method="post" action="options.php">
103
+ <?php settings_fields($this->option_name); ?>
104
 
105
+ <table class="form-table">
106
+ <?php
107
+ $rows = array(
108
+ array(
109
+ 'title' => __('Time Out', 'wp-useronline'),
110
+ 'type' => 'text',
111
+ 'name_tree' => 'timeout',
112
+ 'desc' => '<br />' . __('How long until it will remove the user from the database (In seconds).', 'wp-useronline'),
113
+ 'extra' => 'size="4"'
114
+ ),
115
 
116
+ array(
117
+ 'title' => __('UserOnline URL', 'wp-useronline'),
118
+ 'type' => 'text',
119
+ 'name_tree' => 'url',
120
+ 'desc' => '<br />' . __('URL To UserOnline Page<br />Example: http://www.yoursite.com/useronline/<br />Example: http://www.yoursite.com/?page_id=2', 'wp-useronline'),
121
+ ),
122
 
123
+ array(
124
+ 'title' => __('User Names', 'wp-useronline'),
125
+ 'type' => 'checkbox',
126
+ 'name_tree' => 'names',
127
+ 'desc' => __('Link user names to their author page', 'wp-useronline'),
128
+ ),
129
+ );
130
 
131
+ foreach ( $rows as $row )
132
+ echo $this->table_row($row);
133
+ ?>
134
+ <tbody id="default_naming" style="display:none">
135
+ <?php $this->formdata = $defaults; $this->naming_table(); ?>
136
+ </tbody>
137
 
138
+ <tbody id="current_naming">
139
+ <?php $this->formdata = $options; $this->naming_table(); ?>
140
+ </tbody>
141
 
142
+ </table>
143
 
144
+ <h3><?php _e('Useronline Templates', 'wp-useronline'); ?></h3>
145
+ <table class="form-table">
146
+ <tbody id="default_template_useronline" style="display:none">
147
+ <?php $this->formdata = $defaults; $this->useronline_template_table(); ?>
148
+ </tbody>
 
 
149
 
150
+ <tbody id="current_template_useronline">
151
+ <?php $this->formdata = $options; $this->useronline_template_table(); ?>
152
+ </tbody>
 
 
153
 
154
+ <?php
155
+ $templates = array(
156
+ 'browsingsite' => __('User(s) Browsing Site:', 'wp-useronline'),
157
+ 'browsingpage' => __('User(s) Browsing Page:', 'wp-useronline'),
158
+ );
159
+ foreach ( $templates as $name => $title ) { ?>
160
+ <tbody id="default_template_<?php echo $name; ?>" style="display:none">
161
+ <?php $this->formdata = $defaults; $this->template_table($title, $name); ?>
162
+ </tbody>
163
 
164
+ <tbody id="current_template_<?php echo $name; ?>">
165
+ <?php $this->formdata = $options; $this->template_table($title, $name); ?>
166
+ </tbody>
167
+ <?php } ?>
168
+ </table>
169
+ <p class="submit">
170
+ <input type="submit" name="Submit" class="button" value="<?php _e('Save Changes', 'wp-useronline'); ?>" />
171
+ </p>
172
+ </form>
173
+ <?php
174
+ }
175
 
176
+ private function naming_table() {
 
 
177
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  <tr>
179
  <td width="30%">
180
+ <strong><?php _e('Naming Conventions:', 'wp-useronline'); ?></strong><br /><br />
181
  <?php _e('Allowed Variables:', 'wp-useronline'); ?><br />
182
+ - %COUNT%<br /><br />
183
+ <input type="button" value="<?php _e('Restore Defaults', 'wp-useronline'); ?>" onclick="useronline_default_naming();" class="button" />
184
  </td>
185
  <td>
186
  <table class="form-table">
187
  <thead>
188
+ <tr>
189
  <th><?php _e('Singular Form', 'wp-useronline'); ?></th>
190
  <th><?php _e('Plural Form', 'wp-useronline'); ?></th>
191
+ </tr>
192
+ </thead>
193
+ <tbody>
194
+ <?php
195
+ foreach ( array('user', 'member', 'guest', 'bot') as $tmp ) {
196
+ echo "\n<tr>\n";
197
+ foreach ( array($tmp, $tmp . 's') as $type ) {
198
+ echo $this->input(array(
199
+ 'type' => 'text',
200
+ 'name_tree' => array('naming', $type),
201
+ 'extra' => 'size="30"',
202
+ 'desc' => html('td', '%input%')
203
+ ));
204
+ }
205
+ echo "\n</tr>\n";
206
+ }
207
+ ?>
208
+ </tbody>
209
  </table>
210
  <br />
211
  </td>
212
  </tr>
213
+ <?php
214
+ }
215
 
216
+ private function useronline_template_table() {
217
+ ?>
218
+ <tr>
219
  <td width="30%">
220
+ <strong><?php _e('User(s) Online:', 'wp-useronline'); ?></strong><br /><br />
221
  <?php _e('Allowed Variables:', 'wp-useronline'); ?><br />
222
+ - %USERS%<br />
223
+ - %PAGE_URL%<br />
224
+ - %MOSTONLINE_COUNT%<br />
225
+ - %MOSTONLINE_DATE%<br /><br />
226
+ <input type="button" value="<?php _e('Restore Default Template', 'wp-useronline'); ?>" onclick="useronline_default_template('useronline');" class="button" />
227
+ </td>
228
+ <td>
229
+ <?php echo $this->input(array(
230
+ 'type' => 'textarea',
231
+ 'name_tree' => array('templates', 'useronline'),
232
+ )); ?>
233
  </td>
 
234
  </tr>
 
 
 
 
 
 
 
235
  <?php
236
  }
237
+
238
+ private function template_table($title, $option) {
 
239
  ?>
240
  <tr>
241
  <td width="30%">
242
+ <strong><?php echo $title; ?></strong><br /><br />
243
  <?php _e('Allowed Variables:', 'wp-useronline'); ?><br />
244
+ - %USERS%<br />
245
+ - %MEMBERS%<br />
246
+ - %MEMBER_NAMES%<br />
247
+ - %GUESTS_SEPERATOR%<br />
248
+ - %GUESTS%<br />
249
+ - %BOTS_SEPERATOR%<br />
250
+ - %BOTS%<br /><br />
251
+ <input type="button" value="<?php _e('Restore Default Template', 'wp-useronline'); ?>" onclick="useronline_default_template('<?php echo $option; ?>');" class="button" />
252
  </td>
253
  <td>
254
  <table class="form-table">
255
  <thead>
256
+ <tr>
257
  <th><?php _e('Member Names Separator', 'wp-useronline'); ?></th>
258
  <th><?php _e('Guests Separator', 'wp-useronline'); ?></th>
259
  <th><?php _e('Bots Separator', 'wp-useronline'); ?></th>
260
+ </tr>
261
+ </thead>
262
+ <tr>
263
+ <?php foreach ( array_keys($this->options->templates[$option]['separators']) as $type ) {
264
+ echo html('td', $this->input(array(
265
+ 'type' => 'text',
266
+ 'name_tree' => array('templates', $option, 'separators', $type),
267
+ 'extra' => "size='15'",
268
+ )));
269
  } ?>
270
+ </tr>
271
  </table>
272
  <br />
273
+ <?php echo $this->input(array(
274
+ 'type' => 'textarea',
275
+ 'name_tree' => array('templates', $option, 'text')
276
+ )); ?>
277
  </td>
278
  </tr>
279
  <?php
deprecated.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ function useronline_page() {
4
+ _deprecated_function(__FUNCTION__, '2.70', 'users_online_page()');
5
+
6
+ users_online_page();
7
+ }
8
+
9
+ function get_useronline() {
10
+ _deprecated_function(__FUNCTION__, '2.70', 'users_online()');
11
+
12
+ users_online();
13
+ }
14
+
15
+ function get_most_useronline() {
16
+ _deprecated_function(__FUNCTION__, '2.70', 'get_most_users_online()');
17
+
18
+ return get_most_users_online();
19
+ }
20
+
21
+ function get_most_useronline_date() {
22
+ _deprecated_function(__FUNCTION__, '2.70', 'get_most_users_online()');
23
+
24
+ return get_most_users_online_date();
25
+ }
26
+
27
+ function get_useronline_count($display = false) {
28
+ _deprecated_function(__FUNCTION__, '2.70', 'users_online_count()');
29
+
30
+ if ( !$display )
31
+ return get_users_online_count();
32
+
33
+ users_online_count();
34
+ }
35
+
lang/wp-useronline-de_DE.mo ADDED
Binary file
lang/wp-useronline-de_DE.po ADDED
@@ -0,0 +1,447 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-12 01:08+0800\n"
6
+ "PO-Revision-Date: 2008-12-12 01:08+0800\n"
7
+ "Last-Translator: Lester Chan <lesterchan@gmail.com>\n"
8
+ "Language-Team: Martin Sebald <martin@sebald.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Country: GERMANY\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Language: German\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: useronline-options.php:63
19
+ msgid "Useronline Timeout"
20
+ msgstr "UserOnline Timeout"
21
+
22
+ #: useronline-options.php:64
23
+ msgid "Useronline Bots"
24
+ msgstr "UserOnline Bots"
25
+
26
+ #: useronline-options.php:65
27
+ msgid "Useronline URL"
28
+ msgstr "UserOnline URL"
29
+
30
+ #: useronline-options.php:66
31
+ msgid "Useronline Naming Conventions"
32
+ msgstr "UserOnline Namenskonventionen"
33
+
34
+ #: useronline-options.php:67
35
+ msgid "User(s) Online Template"
36
+ msgstr "Besucher online Template"
37
+
38
+ #: useronline-options.php:68
39
+ msgid "User(s) Browsing Site Template"
40
+ msgstr "Surfende Besucher auf Webauftritt Template"
41
+
42
+ #: useronline-options.php:69
43
+ msgid "User(s) Browsing Page Template"
44
+ msgstr "Surfende Besucher auf Seite Template"
45
+
46
+ #: useronline-options.php:74
47
+ msgid "Updated"
48
+ msgstr "aktualisiert"
49
+
50
+ #: useronline-options.php:79
51
+ msgid "No Useronline Option Updated"
52
+ msgstr "Keine UserOnline Option aktualisiert"
53
+
54
+ #: useronline-options.php:85
55
+ #: useronline-options.php:380
56
+ msgid "UNINSTALL WP-UserOnline"
57
+ msgstr "WP-UserOnline DEINSTALLIEREN"
58
+
59
+ #: useronline-options.php:92
60
+ #, php-format
61
+ msgid "Table '%s' has been deleted."
62
+ msgstr "Tabelle '%s' wurde gel&ouml;scht."
63
+
64
+ #: useronline-options.php:101
65
+ #, php-format
66
+ msgid "Setting Key '%s' has been deleted."
67
+ msgstr "Setting Key '%s' wurde gel&ouml;scht."
68
+
69
+ #: useronline-options.php:105
70
+ #, php-format
71
+ msgid "Error deleting Setting Key '%s'."
72
+ msgstr "Fehler beim L&ouml;schen von Setting Key '%s'."
73
+
74
+ #: useronline-options.php:127
75
+ #: useronline-options.php:338
76
+ msgid "Uninstall WP-UserOnline"
77
+ msgstr "WP-UserOnline deinstallieren"
78
+
79
+ #: useronline-options.php:128
80
+ #, php-format
81
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
82
+ msgstr "<a href=\"%s\">Hier klicken</a> um die Deinstallation abzuschlie&szlig;en und WP-UserOnline automatisch zu deaktivieren."
83
+
84
+ #: useronline-options.php:153
85
+ #: wp-useronline.php:914
86
+ msgid "Online"
87
+ msgstr "online"
88
+
89
+ #: useronline-options.php:160
90
+ #: wp-useronline.php:913
91
+ msgid "1 User"
92
+ msgstr "1 Besucher"
93
+
94
+ #: useronline-options.php:161
95
+ #: wp-useronline.php:913
96
+ msgid "%USERONLINE_COUNT% Users"
97
+ msgstr "%USERONLINE_COUNT% Besucher"
98
+
99
+ #: useronline-options.php:162
100
+ #: wp-useronline.php:913
101
+ msgid "1 Member"
102
+ msgstr "1 Mitglied"
103
+
104
+ #: useronline-options.php:163
105
+ #: wp-useronline.php:913
106
+ msgid "%USERONLINE_COUNT% Members"
107
+ msgstr "%USERONLINE_COUNT% Mitglieder"
108
+
109
+ #: useronline-options.php:164
110
+ #: wp-useronline.php:913
111
+ msgid "1 Guest"
112
+ msgstr "1 Gast"
113
+
114
+ #: useronline-options.php:165
115
+ #: wp-useronline.php:913
116
+ msgid "%USERONLINE_COUNT% Guests"
117
+ msgstr "%USERONLINE_COUNT% G&auml;ste"
118
+
119
+ #: useronline-options.php:166
120
+ #: wp-useronline.php:913
121
+ msgid "1 Bot"
122
+ msgstr "1 Bot"
123
+
124
+ #: useronline-options.php:167
125
+ #: wp-useronline.php:913
126
+ msgid "%USERONLINE_COUNT% Bots"
127
+ msgstr "%USERONLINE_COUNT% Bots"
128
+
129
+ #: useronline-options.php:170
130
+ #: useronline-options.php:171
131
+ #: useronline-options.php:172
132
+ #: useronline-options.php:176
133
+ #: useronline-options.php:177
134
+ #: useronline-options.php:178
135
+ #: wp-useronline.php:915
136
+ #: wp-useronline.php:916
137
+ msgid ","
138
+ msgstr ""
139
+
140
+ #: useronline-options.php:179
141
+ #: wp-useronline.php:916
142
+ msgid "Browsing This Page."
143
+ msgstr "surfen auf dieser Seite."
144
+
145
+ #: useronline-options.php:186
146
+ #: useronline-options.php:187
147
+ msgid "Useronline Options"
148
+ msgstr "UserOnline Optionen"
149
+
150
+ #: useronline-options.php:190
151
+ msgid "Time Out"
152
+ msgstr "Timeout"
153
+
154
+ #: useronline-options.php:192
155
+ msgid "How long till it will remove the user from the database (In seconds)."
156
+ msgstr "Zeit nach der Besucher aus der Datenbank entfernt werden sollen (in Sekunden)."
157
+
158
+ #: useronline-options.php:196
159
+ msgid "UserOnline URL"
160
+ msgstr "UserOnline URL"
161
+
162
+ #: useronline-options.php:198
163
+ msgid "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"
164
+ msgstr "URL zur UserOnline Seite (leer lassen wenn nicht zur UserOnline Seite verlinkt werden soll)<br />Beispiel: http://www.deineseite.de/blog/useronline/<br />Beispiel: http://www.deineseite.de/blog/?page_id=2"
165
+
166
+ #: useronline-options.php:202
167
+ msgid "Bots Name/User Agent"
168
+ msgstr "Bot Name / User Agent"
169
+
170
+ #: useronline-options.php:204
171
+ msgid "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."
172
+ msgstr "Hier die Liste der Bots mit ihren partiellen User Agents.<br />In der linken Spalte den <strong>Bot Namen</strong> eintragen, in der rechten Spalte ihren <strong>partiellen User Agent</strong> eintragen.<br />F&uuml;r jeden Eintrag eine neue Zeile beginnen."
173
+
174
+ #: useronline-options.php:212
175
+ msgid "Naming Conventions:"
176
+ msgstr "Namenskonventionen:"
177
+
178
+ #: useronline-options.php:213
179
+ #: useronline-options.php:254
180
+ #: useronline-options.php:266
181
+ #: useronline-options.php:298
182
+ msgid "Allowed Variables:"
183
+ msgstr "Erlaubte Variablen:"
184
+
185
+ #: useronline-options.php:215
186
+ #: useronline-options.php:259
187
+ #: useronline-options.php:274
188
+ #: useronline-options.php:306
189
+ msgid "Restore Default Template"
190
+ msgstr "Zur&uuml;cksetzen auf Grundeinstellungen"
191
+
192
+ #: useronline-options.php:221
193
+ msgid "Singular Form"
194
+ msgstr "Singular"
195
+
196
+ #: useronline-options.php:222
197
+ msgid "Plural Form"
198
+ msgstr "Plural"
199
+
200
+ #: useronline-options.php:249
201
+ msgid "Useronline Templates"
202
+ msgstr "UserOnline Templates"
203
+
204
+ #: useronline-options.php:253
205
+ msgid "User(s) Online:"
206
+ msgstr "Besucher online:"
207
+
208
+ #: useronline-options.php:265
209
+ msgid "User(s) Browsing Site:"
210
+ msgstr "Surfende Besucher auf Webauftritt:"
211
+
212
+ #: useronline-options.php:280
213
+ #: useronline-options.php:312
214
+ msgid "Member Names Separator"
215
+ msgstr "Mitglieder Trennzeichen"
216
+
217
+ #: useronline-options.php:281
218
+ #: useronline-options.php:313
219
+ msgid "Guests Separator"
220
+ msgstr "G&auml;ste Trennzeichen"
221
+
222
+ #: useronline-options.php:282
223
+ #: useronline-options.php:314
224
+ msgid "Bots Separator"
225
+ msgstr "Bots Trennzeichen"
226
+
227
+ #: useronline-options.php:297
228
+ msgid "User(s) Browsing Page:"
229
+ msgstr "Surfende Besucher auf Seite:"
230
+
231
+ #: useronline-options.php:329
232
+ msgid "Save Changes"
233
+ msgstr ""
234
+
235
+ #: useronline-options.php:340
236
+ msgid "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."
237
+ msgstr "Durch die Deaktivierung des WP-UserOnline Plugins werden keinerlei Daten, die eventuell erzeugt wurden, entfernt, wie beispielsweise die UserOnline Optionen. Um das Plugin vollst&auml;ig zu entfernen kann es hier deinstalliert werden."
238
+
239
+ #: useronline-options.php:343
240
+ msgid "WARNING:"
241
+ msgstr "WARNUNG:"
242
+
243
+ #: useronline-options.php:344
244
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
245
+ msgstr "Einmal deinstalliert kann dies nicht mehr r&uuml;ckg&auml;ngig gemacht werden. Vor der Deinstallation wird eine Datensicherung empfohlen!"
246
+
247
+ #: useronline-options.php:347
248
+ msgid "The following WordPress Options/Tables will be DELETED:"
249
+ msgstr "Die folgenden WordPress Optionen/Tabellen werden GEL&Ouml;SCHT:"
250
+
251
+ #: useronline-options.php:352
252
+ msgid "WordPress Options"
253
+ msgstr "WordPress Optionen"
254
+
255
+ #: useronline-options.php:353
256
+ msgid "WordPress Tables"
257
+ msgstr "WordPress Tabellen"
258
+
259
+ #: useronline-options.php:379
260
+ #: wp-useronline-widget.php:73
261
+ msgid "Yes"
262
+ msgstr "Ja"
263
+
264
+ #: useronline-options.php:380
265
+ msgid ""
266
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
267
+ "This Action Is Not Reversible.\\n"
268
+ "\\n"
269
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
270
+ msgstr ""
271
+ "Sie sind dabei, WP-UserOnline aus WordPress zu deinstallieren.\\n"
272
+ "Diese Aktion ist nicht r&uuml;ckg&auml;ngig zu machen.\\n"
273
+ "\\n"
274
+ " [Abbrechen] ausw&uuml;hlen um zu stoppen, [OK] um zu deinstallieren."
275
+
276
+ #: wp-useronline-widget.php:62
277
+ msgid "UserOnline"
278
+ msgstr "UserOnline"
279
+
280
+ #: wp-useronline-widget.php:69
281
+ msgid "Widget Title"
282
+ msgstr "Widget Titel"
283
+
284
+ #: wp-useronline-widget.php:70
285
+ msgid "Display Users Browsing Site Under Users Online Count?"
286
+ msgstr "Besucher, die auf dem Webauftritt surfen, unter dem Onlinez&auml;hler anzeigen?"
287
+
288
+ #: wp-useronline-widget.php:75
289
+ msgid "No"
290
+ msgstr "Nein"
291
+
292
+ #: wp-useronline.php:58
293
+ #: wp-useronline.php:844
294
+ #: wp-useronline.php:846
295
+ #: wp-useronline.php:856
296
+ msgid "WP-UserOnline"
297
+ msgstr "WP-UserOnline"
298
+
299
+ #: wp-useronline.php:61
300
+ msgid "Useronline"
301
+ msgstr "UserOnline"
302
+
303
+ #: wp-useronline.php:126
304
+ msgid "guest"
305
+ msgstr "Gast"
306
+
307
+ #: wp-useronline.php:132
308
+ #: wp-useronline.php:707
309
+ msgid "Guest"
310
+ msgstr "Gast"
311
+
312
+ #: wp-useronline.php:147
313
+ msgid "Blog Archive"
314
+ msgstr "Blogarchiv"
315
+
316
+ #: wp-useronline.php:228
317
+ #: wp-useronline.php:259
318
+ #: wp-useronline.php:742
319
+ #: wp-useronline.php:744
320
+ #: wp-useronline.php:762
321
+ #: wp-useronline.php:764
322
+ #: wp-useronline.php:777
323
+ #, php-format
324
+ msgid "%s @ %s"
325
+ msgstr "%s, %s"
326
+
327
+ #: wp-useronline.php:396
328
+ msgid "No User Is Browsing This Site"
329
+ msgstr "Kein Besucher surft auf diesem Webauftritt"
330
+
331
+ #: wp-useronline.php:538
332
+ msgid "No User Is Browsing This Page"
333
+ msgstr "Kein Besucher surft auf dieser Seite"
334
+
335
+ #: wp-useronline.php:609
336
+ #, fuzzy
337
+ msgid "Users Online Now"
338
+ msgstr "Besucher online:"
339
+
340
+ #: wp-useronline.php:621
341
+ #, php-format
342
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
343
+ msgstr ""
344
+
345
+ #: wp-useronline.php:623
346
+ #, php-format
347
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
348
+ msgstr ""
349
+
350
+ #: wp-useronline.php:628
351
+ #: wp-useronline.php:729
352
+ #, php-format
353
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
354
+ msgstr ""
355
+
356
+ #: wp-useronline.php:692
357
+ msgid "User"
358
+ msgstr "Besucher"
359
+
360
+ #: wp-useronline.php:694
361
+ msgid "Users"
362
+ msgstr "Besucher"
363
+
364
+ #: wp-useronline.php:699
365
+ msgid "Member"
366
+ msgstr "Mitglied"
367
+
368
+ #: wp-useronline.php:701
369
+ msgid "Members"
370
+ msgstr "Mitglieder"
371
+
372
+ #: wp-useronline.php:709
373
+ msgid "Guests"
374
+ msgstr "G&auml;ste"
375
+
376
+ #: wp-useronline.php:714
377
+ msgid "Bot"
378
+ msgstr "Bot"
379
+
380
+ #: wp-useronline.php:716
381
+ msgid "Bots"
382
+ msgstr "Bots"
383
+
384
+ #: wp-useronline.php:725
385
+ #, php-format
386
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
387
+ msgstr ""
388
+
389
+ #: wp-useronline.php:727
390
+ #, php-format
391
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
392
+ msgstr ""
393
+
394
+ #: wp-useronline.php:732
395
+ #: wp-useronline.php:752
396
+ #: wp-useronline.php:772
397
+ msgid "Online Now"
398
+ msgstr "jetzt online"
399
+
400
+ #: wp-useronline.php:739
401
+ #: wp-useronline.php:759
402
+ msgid "referral"
403
+ msgstr "Referrer"
404
+
405
+ #: wp-useronline.php:742
406
+ #: wp-useronline.php:744
407
+ #: wp-useronline.php:762
408
+ #: wp-useronline.php:764
409
+ #: wp-useronline.php:777
410
+ msgid "on"
411
+ msgstr "am"
412
+
413
+ #: wp-useronline.php:742
414
+ #: wp-useronline.php:744
415
+ #: wp-useronline.php:762
416
+ #: wp-useronline.php:764
417
+ #: wp-useronline.php:777
418
+ msgid "url"
419
+ msgstr "URL"
420
+
421
+ #: wp-useronline.php:784
422
+ msgid "No One Is Online Now"
423
+ msgstr "Momentan ist niemand online"
424
+
425
+ #: wp-useronline.php:860
426
+ msgid "On"
427
+ msgstr "am"
428
+
429
+ #~ msgid "user(s) online now."
430
+ #~ msgstr "Benutzer momentan online."
431
+ #~ msgid "Most users ever online was"
432
+ #~ msgstr "Der Rekord von gleichzeitigen Besuchern liegt bei"
433
+ #~ msgid "Update Options"
434
+ #~ msgstr "Optionen speichern"
435
+ #~ msgid "Cancel"
436
+ #~ msgstr "Abbrechen"
437
+ #~ msgid "There is"
438
+ #~ msgstr "Es gibt"
439
+ #~ msgid "There are a total of"
440
+ #~ msgstr "Insgesamt sind momentan"
441
+ #~ msgid "online now"
442
+ #~ msgstr "online"
443
+ #~ msgid "and"
444
+ #~ msgstr "und"
445
+ #~ msgid "Most users ever online were"
446
+ #~ msgstr "Der Rekord von gleichzeitigen Besuchern liegt bei"
447
+
lang/wp-useronline-el_GR.mo ADDED
Binary file
lang/wp-useronline-el_GR.po ADDED
@@ -0,0 +1,446 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-10 00:29+0800\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: RioSif <riosif@blog.riosif.gr>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Greek\n"
14
+ "X-Poedit-Country: GREECE\n"
15
+
16
+ #: useronline-options.php:63
17
+ msgid "Useronline Timeout"
18
+ msgstr "Useronline Λήξη Χρόνου"
19
+
20
+ #: useronline-options.php:64
21
+ msgid "Useronline Bots"
22
+ msgstr "Useronline Bots"
23
+
24
+ #: useronline-options.php:65
25
+ msgid "Useronline URL"
26
+ msgstr "Useronline URL"
27
+
28
+ #: useronline-options.php:66
29
+ msgid "Useronline Naming Conventions"
30
+ msgstr "Useronline Ονοματοδοσία Συμβάσεων"
31
+
32
+ #: useronline-options.php:67
33
+ msgid "User(s) Online Template"
34
+ msgstr "Φόρμα Ενεργού(ών) Χρήστη(ών)"
35
+
36
+ #: useronline-options.php:68
37
+ msgid "User(s) Browsing Site Template"
38
+ msgstr "Φόρμα Περιηγούμενων Χρηστών στον Ιστότοπο"
39
+
40
+ #: useronline-options.php:69
41
+ msgid "User(s) Browsing Page Template"
42
+ msgstr "Φόρμα Περιηγούμενων Χρηστών στην Σελίδα"
43
+
44
+ #: useronline-options.php:74
45
+ msgid "Updated"
46
+ msgstr "Ενημερώθηκε"
47
+
48
+ #: useronline-options.php:79
49
+ msgid "No Useronline Option Updated"
50
+ msgstr "Καμία Επιλογή Useronline Δεν Ενημερώθηκε"
51
+
52
+ #: useronline-options.php:85
53
+ #: useronline-options.php:380
54
+ msgid "UNINSTALL WP-UserOnline"
55
+ msgstr "ΑΠΕΓΚΑΤΑΣΤΑΣΗ WP-UserOnline"
56
+
57
+ #: useronline-options.php:92
58
+ #, php-format
59
+ msgid "Table '%s' has been deleted."
60
+ msgstr "Ο πίνακας '%s' έχει διαγραφή."
61
+
62
+ #: useronline-options.php:101
63
+ #, php-format
64
+ msgid "Setting Key '%s' has been deleted."
65
+ msgstr "Το Κλειδί των Ρυθμίσεων '%s' έχει διαγραφή."
66
+
67
+ #: useronline-options.php:105
68
+ #, php-format
69
+ msgid "Error deleting Setting Key '%s'."
70
+ msgstr "Σφάλμα κατά την διαγραφή του Κλειδιού Ρυθμίσεων '%s'."
71
+
72
+ #: useronline-options.php:127
73
+ #: useronline-options.php:338
74
+ msgid "Uninstall WP-UserOnline"
75
+ msgstr "Απεγκατάσταση WP-UserOnline"
76
+
77
+ #: useronline-options.php:128
78
+ #, php-format
79
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
80
+ msgstr "<a href=\"%s\">Πατήστε Εδώ</a> Για Να Τελειώσετε Την Απεγκατάσταση Και Το WP-UserOnline Θα Απενεργοποιηθεί Αυτόματα."
81
+
82
+ #: useronline-options.php:153
83
+ #: wp-useronline.php:914
84
+ msgid "Online"
85
+ msgstr "Ενεργός"
86
+
87
+ #: useronline-options.php:160
88
+ #: wp-useronline.php:913
89
+ msgid "1 User"
90
+ msgstr "1 Χρήστης"
91
+
92
+ #: useronline-options.php:161
93
+ #: wp-useronline.php:913
94
+ msgid "%USERONLINE_COUNT% Users"
95
+ msgstr "%USERONLINE_COUNT% Χρήστες"
96
+
97
+ #: useronline-options.php:162
98
+ #: wp-useronline.php:913
99
+ msgid "1 Member"
100
+ msgstr "1 Εγγεγραμμένος Χρήστης"
101
+
102
+ #: useronline-options.php:163
103
+ #: wp-useronline.php:913
104
+ msgid "%USERONLINE_COUNT% Members"
105
+ msgstr "%USERONLINE_COUNT% Εγγεγραμμένοι Χρήστες"
106
+
107
+ #: useronline-options.php:164
108
+ #: wp-useronline.php:913
109
+ msgid "1 Guest"
110
+ msgstr "1 Επισκέπτης"
111
+
112
+ #: useronline-options.php:165
113
+ #: wp-useronline.php:913
114
+ msgid "%USERONLINE_COUNT% Guests"
115
+ msgstr "%USERONLINE_COUNT% Επισκέπτες"
116
+
117
+ #: useronline-options.php:166
118
+ #: wp-useronline.php:913
119
+ msgid "1 Bot"
120
+ msgstr "1 Bot"
121
+
122
+ #: useronline-options.php:167
123
+ #: wp-useronline.php:913
124
+ msgid "%USERONLINE_COUNT% Bots"
125
+ msgstr "%USERONLINE_COUNT% Bots"
126
+
127
+ #: useronline-options.php:170
128
+ #: useronline-options.php:171
129
+ #: useronline-options.php:172
130
+ #: useronline-options.php:176
131
+ #: useronline-options.php:177
132
+ #: useronline-options.php:178
133
+ #: wp-useronline.php:915
134
+ #: wp-useronline.php:916
135
+ msgid ","
136
+ msgstr ","
137
+
138
+ #: useronline-options.php:173
139
+ #: useronline-options.php:179
140
+ #: wp-useronline.php:915
141
+ #: wp-useronline.php:916
142
+ msgid "Users|Template Element"
143
+ msgstr "Χρήστες|Στοιχείο Φόρμας"
144
+
145
+ #: useronline-options.php:179
146
+ #: wp-useronline.php:916
147
+ msgid "Browsing This Page."
148
+ msgstr "Περιηγήτε Στην Σελίδα."
149
+
150
+ #: useronline-options.php:186
151
+ #: useronline-options.php:187
152
+ msgid "Useronline Options"
153
+ msgstr "Επιλογές Useronline"
154
+
155
+ #: useronline-options.php:190
156
+ msgid "Time Out"
157
+ msgstr "Τέλος Χρόνου"
158
+
159
+ #: useronline-options.php:192
160
+ msgid "How long till it will remove the user from the database (In seconds)."
161
+ msgstr "Πόσο χρόνο μέχρι να αφαιρεθεί ο χρήστης από την βάση δεδομένων (Σε δευτερόλεπτα)"
162
+
163
+ #: useronline-options.php:196
164
+ msgid "UserOnline URL"
165
+ msgstr "URL Ενεργού Χρήστη"
166
+
167
+ #: useronline-options.php:198
168
+ msgid "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"
169
+ msgstr "URL Για Την Σελίδα Ενεργού Χρήστη (αφήστε το κενό αν δεν θέλετε να το συνδέσετε με την σελίδα ενεργού χρήστη)<br />Παράδειγμα: http://www.yoursite.com/blogs/useronline/<br />Παράδειγμα: http://www.yoursite.com/blogs/?page_id=2"
170
+
171
+ #: useronline-options.php:202
172
+ msgid "Bots Name/User Agent"
173
+ msgstr "Όνομα Bots/User Agent"
174
+
175
+ #: useronline-options.php:204
176
+ msgid "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."
177
+ msgstr "Εδώ είναι μία λίστα από bots και από τους μονομερής φυλλομετρητές τους. <br />Στην αριστερή στήλη υπάρχει το <strong>Όνομα του Bot</strong> και στην δεξιά αναγράφεται ο <strong>Μονομερής Φυλλομετρητής</strong>.<br />Ξεκινήστε κάθε καταχώρηση σε νέα γραμμή."
178
+
179
+ #: useronline-options.php:212
180
+ msgid "Naming Conventions:"
181
+ msgstr "Συμφωνίες Ονοματοδοσίας:"
182
+
183
+ #: useronline-options.php:213
184
+ #: useronline-options.php:254
185
+ #: useronline-options.php:266
186
+ #: useronline-options.php:298
187
+ msgid "Allowed Variables:"
188
+ msgstr "Επιτρεπόμενες Μεταβλητές:"
189
+
190
+ #: useronline-options.php:215
191
+ #: useronline-options.php:259
192
+ #: useronline-options.php:274
193
+ #: useronline-options.php:306
194
+ msgid "Restore Default Template"
195
+ msgstr "Επαναφορά Προεπιλεγμένης Φόρμας"
196
+
197
+ #: useronline-options.php:221
198
+ msgid "Singular Form"
199
+ msgstr "Φόρμα Ενικού Αριθμού"
200
+
201
+ #: useronline-options.php:222
202
+ msgid "Plural Form"
203
+ msgstr "Φόρμα Πληθυντικού Αριθμού"
204
+
205
+ #: useronline-options.php:249
206
+ msgid "Useronline Templates"
207
+ msgstr "Φόρμες Useronline"
208
+
209
+ #: useronline-options.php:253
210
+ msgid "User(s) Online:"
211
+ msgstr "Ενεργός(οί) Χρήστης(ες):"
212
+
213
+ #: useronline-options.php:265
214
+ msgid "User(s) Browsing Site:"
215
+ msgstr "Χρήστης(ες) Που Προηγούνται Στον Ιστότοπο:"
216
+
217
+ #: useronline-options.php:280
218
+ #: useronline-options.php:312
219
+ msgid "Member Names Separator"
220
+ msgstr "Διαχωριστής Ονομάτων Εγγεγραμμένων Χρηστών"
221
+
222
+ #: useronline-options.php:281
223
+ #: useronline-options.php:313
224
+ msgid "Guests Separator"
225
+ msgstr "Διαχωριστής Επισκεπτών"
226
+
227
+ #: useronline-options.php:282
228
+ #: useronline-options.php:314
229
+ msgid "Bots Separator"
230
+ msgstr "Διαχωριστής Bots"
231
+
232
+ #: useronline-options.php:297
233
+ msgid "User(s) Browsing Page:"
234
+ msgstr "Χρήστης(ες) Περιηγείται(ούνται) Στην Σελίδα:"
235
+
236
+ #: useronline-options.php:329
237
+ msgid "Save Changes"
238
+ msgstr "Αποθήκευση Αλλαγών"
239
+
240
+ #: useronline-options.php:340
241
+ msgid "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."
242
+ msgstr "Απενεργοποιώντας το πρόσθετο WP-UserOnline δεν καταργούνται όλα τα δεδομένα που μπορεί να έχουν δημιουργηθεί, όπως είναι η επιλογές ενεργού χρήστη. Για να αφαιρέσετε εντελώς αυτό το πρόσθετο, μπορείτε να το καταργήσετε από εδώ."
243
+
244
+ #: useronline-options.php:343
245
+ msgid "WARNING:"
246
+ msgstr "ΠΡΟΣΟΧΗ:"
247
+
248
+ #: useronline-options.php:344
249
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
250
+ msgstr "Μετά την απεγκατάσταση, δεν θα είναι δυνατή η επαναφορά. Θα πρέπει να χρησιμοποιήσετε ένα πρόσθετο του WordPress για Δημιουργία Εφεδρικού Αντιγράφου της Βάσης Δεδομένων για να δημιουργήσετε ένα αντίγραφο των δεδομένων σας πρώτα."
251
+
252
+ #: useronline-options.php:347
253
+ msgid "The following WordPress Options/Tables will be DELETED:"
254
+ msgstr "Οι παρακάτω Επιλογές/Πίνακες του WordPress θα ΔΙΑΓΡΑΦΟΥΝ:"
255
+
256
+ #: useronline-options.php:352
257
+ msgid "WordPress Options"
258
+ msgstr "Επιλογές WordPress"
259
+
260
+ #: useronline-options.php:353
261
+ msgid "WordPress Tables"
262
+ msgstr "Πίνακας WordPress"
263
+
264
+ #: useronline-options.php:379
265
+ #: wp-useronline-widget.php:73
266
+ msgid "Yes"
267
+ msgstr "Ναι"
268
+
269
+ #: useronline-options.php:380
270
+ msgid ""
271
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
272
+ "This Action Is Not Reversible.\\n"
273
+ "\\n"
274
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
275
+ msgstr ""
276
+ "Πρόκειται να απεγκαταστήσετε το WP-UserOnline από το Wordpress.\\n"
277
+ "Αυτή Η Πράξη Είναι Μη Αναστρέψιμη.\\n"
278
+ "\\n"
279
+ " Διαλέξτε [Ακύρωση] Για Διακοπή, [ΟΚ] για Απεγκατάσταση."
280
+
281
+ #: wp-useronline-widget.php:62
282
+ msgid "UserOnline"
283
+ msgstr "Ενεργός Χρήστης"
284
+
285
+ #: wp-useronline-widget.php:69
286
+ msgid "Widget Title"
287
+ msgstr "Τίτλος Widget"
288
+
289
+ #: wp-useronline-widget.php:70
290
+ msgid "Display Users Browsing Site Under Users Online Count?"
291
+ msgstr "Εμφάνιση Χρηστών Που Περιηγούνται Στον Ιστότοπο Κάτω Από Τον Μετρητή Ενεργών Χρηστών?"
292
+
293
+ #: wp-useronline-widget.php:75
294
+ msgid "No"
295
+ msgstr "'Οχι"
296
+
297
+ #: wp-useronline.php:58
298
+ #: wp-useronline.php:844
299
+ #: wp-useronline.php:846
300
+ #: wp-useronline.php:856
301
+ msgid "WP-UserOnline"
302
+ msgstr "WP-UserOnline"
303
+
304
+ #: wp-useronline.php:61
305
+ msgid "Useronline"
306
+ msgstr "Useronline"
307
+
308
+ #: wp-useronline.php:126
309
+ msgid "guest"
310
+ msgstr "επισκέπτης"
311
+
312
+ #: wp-useronline.php:132
313
+ #: wp-useronline.php:707
314
+ msgid "Guest"
315
+ msgstr "Επισκέπτης"
316
+
317
+ #: wp-useronline.php:147
318
+ msgid "Blog Archive"
319
+ msgstr "Αρχείο Blog"
320
+
321
+ #: wp-useronline.php:228
322
+ #: wp-useronline.php:259
323
+ #: wp-useronline.php:742
324
+ #: wp-useronline.php:744
325
+ #: wp-useronline.php:762
326
+ #: wp-useronline.php:764
327
+ #: wp-useronline.php:777
328
+ #, php-format
329
+ msgid "%s @ %s"
330
+ msgstr "%s @ %s"
331
+
332
+ #: wp-useronline.php:396
333
+ msgid "No User Is Browsing This Site"
334
+ msgstr "Κανένας Χρήστης Δεν Είναι Ενεργός Σε Αυτόν Τον Ιστότοπο"
335
+
336
+ #: wp-useronline.php:538
337
+ msgid "No User Is Browsing This Page"
338
+ msgstr "Κανένας Χρήστης Δεν Είναι Ενεργός Σε Αυτή Τη Σελίδα"
339
+
340
+ #: wp-useronline.php:609
341
+ msgid "Users Online Now"
342
+ msgstr "Ενεργοί Χρήστες Τώρα"
343
+
344
+ #: wp-useronline.php:621
345
+ #, php-format
346
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
347
+ msgstr "Υπάρχη <strong><a href=\"%s\">%s χρήστης</a></strong> ενεργός αυτή τη στιγμή."
348
+
349
+ #: wp-useronline.php:623
350
+ #, php-format
351
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
352
+ msgstr "Υπάρχουν σύνολο <strong><a href=\"%s\">%s χρήστες</a></strong> ενεργοί αυτή τη στιγμή."
353
+
354
+ #: wp-useronline.php:628
355
+ #: wp-useronline.php:729
356
+ #, php-format
357
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
358
+ msgstr "Οι περισσότεροι ενεργοί χρήστες ήταν <strong>%s</strong>, στις <strong>%s</strong>"
359
+
360
+ #: wp-useronline.php:692
361
+ msgid "User"
362
+ msgstr "Χρήστης"
363
+
364
+ #: wp-useronline.php:694
365
+ msgid "Users"
366
+ msgstr "Χρήστες"
367
+
368
+ #: wp-useronline.php:699
369
+ msgid "Member"
370
+ msgstr "Εγγεγραμμένος Χρήστης"
371
+
372
+ #: wp-useronline.php:701
373
+ msgid "Members"
374
+ msgstr "Εγγεγραμμένοι Χρήστες"
375
+
376
+ #: wp-useronline.php:709
377
+ msgid "Guests"
378
+ msgstr "Επισκέπτες"
379
+
380
+ #: wp-useronline.php:714
381
+ msgid "Bot"
382
+ msgstr ""
383
+
384
+ #: wp-useronline.php:716
385
+ msgid "Bots"
386
+ msgstr ""
387
+
388
+ #: wp-useronline.php:725
389
+ #, php-format
390
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
391
+ msgstr "<strong>%s</strong> είναι ενεργός(οί) τώρα: <strong>%s</strong>, <strong>%s</strong> και <strong>%s</strong>."
392
+
393
+ #: wp-useronline.php:727
394
+ #, php-format
395
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
396
+ msgstr "Υπάρχουν συνολικά <strong>%s</strong> ενεργοί τώρα: <strong>%s</strong>, <strong>%s</strong> και <strong>%s</strong>."
397
+
398
+ #: wp-useronline.php:732
399
+ #: wp-useronline.php:752
400
+ #: wp-useronline.php:772
401
+ msgid "Online Now"
402
+ msgstr "Ενεργός(οί) αυτή τη στιγμή"
403
+
404
+ #: wp-useronline.php:739
405
+ #: wp-useronline.php:759
406
+ msgid "referral"
407
+ msgstr "παραπομπή από"
408
+
409
+ #: wp-useronline.php:742
410
+ #: wp-useronline.php:744
411
+ #: wp-useronline.php:762
412
+ #: wp-useronline.php:764
413
+ #: wp-useronline.php:777
414
+ msgid "on"
415
+ msgstr "στις"
416
+
417
+ #: wp-useronline.php:742
418
+ #: wp-useronline.php:744
419
+ #: wp-useronline.php:762
420
+ #: wp-useronline.php:764
421
+ #: wp-useronline.php:777
422
+ msgid "url"
423
+ msgstr ""
424
+
425
+ #: wp-useronline.php:784
426
+ msgid "No One Is Online Now"
427
+ msgstr "Κανείς Δεν Είναι Ενεργός Αυτή Τη Στιγμή"
428
+
429
+ #: wp-useronline.php:858
430
+ #, php-format
431
+ msgid "<strong>%s</strong> user online now."
432
+ msgid_plural "<strong>%s</strong> users online now."
433
+ msgstr[0] "<strong>%s</strong> χρήστης ενεργός αυτή τη στιγμή."
434
+ msgstr[1] "<strong>%s</strong> χρήστες ενεργοί αυτή τη στιγμή."
435
+
436
+ #: wp-useronline.php:859
437
+ #, php-format
438
+ msgid "Most users ever online was <strong>%s</strong>."
439
+ msgid_plural "Most users ever online was <strong>%s</strong>."
440
+ msgstr[0] "Οι περισσότεροι ενεργοί χρήστες ήταν <strong>%s</strong>."
441
+ msgstr[1] "Οι περισσότεροι ενεργοί χρήστες ήταν <strong>%s</strong>."
442
+
443
+ #: wp-useronline.php:860
444
+ msgid "On"
445
+ msgstr "Στις"
446
+
lang/wp-useronline-es_ES.mo ADDED
Binary file
lang/wp-useronline-es_ES.po ADDED
@@ -0,0 +1,432 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-12 01:08+0800\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Lester Chan <lesterchan@gmail.com>\n"
8
+ "Language-Team: Erk Bermejo <info@elpomeloradiactivo.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Spanish\n"
13
+ "X-Poedit-Country: Spain\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: useronline-options.php:63
19
+ msgid "Useronline Timeout"
20
+ msgstr "Tiempo de espera"
21
+
22
+ #: useronline-options.php:64
23
+ msgid "Useronline Bots"
24
+ msgstr "Robots en línea"
25
+
26
+ #: useronline-options.php:65
27
+ msgid "Useronline URL"
28
+ msgstr "URL de Useronline"
29
+
30
+ #: useronline-options.php:66
31
+ msgid "Useronline Naming Conventions"
32
+ msgstr "Convención de nombres de usuario"
33
+
34
+ #: useronline-options.php:67
35
+ msgid "User(s) Online Template"
36
+ msgstr "Plantilla de usuarios en línea"
37
+
38
+ #: useronline-options.php:68
39
+ msgid "User(s) Browsing Site Template"
40
+ msgstr "Plantilla de usuarios navegando por la página"
41
+
42
+ #: useronline-options.php:69
43
+ msgid "User(s) Browsing Page Template"
44
+ msgstr "Plantilla de usuarios navegando por página"
45
+
46
+ #: useronline-options.php:74
47
+ msgid "Updated"
48
+ msgstr "Actualizado"
49
+
50
+ #: useronline-options.php:79
51
+ msgid "No Useronline Option Updated"
52
+ msgstr "No se actualizado ninguna opción de Useronline"
53
+
54
+ #: useronline-options.php:85
55
+ #: useronline-options.php:380
56
+ msgid "UNINSTALL WP-UserOnline"
57
+ msgstr "DESINSTALAR WP-UserOnline"
58
+
59
+ #: useronline-options.php:92
60
+ #, php-format
61
+ msgid "Table '%s' has been deleted."
62
+ msgstr "La tabla '%s' se ha sido borrado."
63
+
64
+ #: useronline-options.php:101
65
+ #, php-format
66
+ msgid "Setting Key '%s' has been deleted."
67
+ msgstr "El ajuste '%s' se ha sido borrado."
68
+
69
+ #: useronline-options.php:105
70
+ #, php-format
71
+ msgid "Error deleting Setting Key '%s'."
72
+ msgstr "Error eliminando el ajuste '%s'."
73
+
74
+ #: useronline-options.php:127
75
+ #: useronline-options.php:338
76
+ msgid "Uninstall WP-UserOnline"
77
+ msgstr "Desintalar WP-UserOnline"
78
+
79
+ #: useronline-options.php:128
80
+ #, php-format
81
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
82
+ msgstr "<a href=\"%s\">Haga clic aquí</a> para finalizar la desinstalación y WP-UserOnline será desactivado automáticamente."
83
+
84
+ #: useronline-options.php:153
85
+ #: wp-useronline.php:914
86
+ msgid "Online"
87
+ msgstr "En línea"
88
+
89
+ #: useronline-options.php:160
90
+ #: wp-useronline.php:913
91
+ msgid "1 User"
92
+ msgstr "1 usuario"
93
+
94
+ #: useronline-options.php:161
95
+ #: wp-useronline.php:913
96
+ msgid "%USERONLINE_COUNT% Users"
97
+ msgstr "%USERONLINE_COUNT% usuarios"
98
+
99
+ #: useronline-options.php:162
100
+ #: wp-useronline.php:913
101
+ msgid "1 Member"
102
+ msgstr "1 miembro"
103
+
104
+ #: useronline-options.php:163
105
+ #: wp-useronline.php:913
106
+ msgid "%USERONLINE_COUNT% Members"
107
+ msgstr "%USERONLINE_COUNT% miembros"
108
+
109
+ #: useronline-options.php:164
110
+ #: wp-useronline.php:913
111
+ msgid "1 Guest"
112
+ msgstr "1 invitado"
113
+
114
+ #: useronline-options.php:165
115
+ #: wp-useronline.php:913
116
+ msgid "%USERONLINE_COUNT% Guests"
117
+ msgstr "%USERONLINE_COUNT% invitados"
118
+
119
+ #: useronline-options.php:166
120
+ #: wp-useronline.php:913
121
+ msgid "1 Bot"
122
+ msgstr "1 bot"
123
+
124
+ #: useronline-options.php:167
125
+ #: wp-useronline.php:913
126
+ msgid "%USERONLINE_COUNT% Bots"
127
+ msgstr "%USERONLINE_COUNT% bots"
128
+
129
+ #: useronline-options.php:170
130
+ #: useronline-options.php:171
131
+ #: useronline-options.php:172
132
+ #: useronline-options.php:176
133
+ #: useronline-options.php:177
134
+ #: useronline-options.php:178
135
+ #: wp-useronline.php:915
136
+ #: wp-useronline.php:916
137
+ msgid ","
138
+ msgstr ""
139
+
140
+ #: useronline-options.php:179
141
+ #: wp-useronline.php:916
142
+ msgid "Browsing This Page."
143
+ msgstr "navegando por esta página."
144
+
145
+ #: useronline-options.php:186
146
+ #: useronline-options.php:187
147
+ msgid "Useronline Options"
148
+ msgstr "Opciones de Useronline"
149
+
150
+ #: useronline-options.php:190
151
+ msgid "Time Out"
152
+ msgstr "Tiempo de espera"
153
+
154
+ #: useronline-options.php:192
155
+ msgid "How long till it will remove the user from the database (In seconds)."
156
+ msgstr "¿Cuánto tiempo ha de transcurrir para eliminar a un usuario de la base de datos (en segundos)?"
157
+
158
+ #: useronline-options.php:196
159
+ msgid "UserOnline URL"
160
+ msgstr "URL de Useronline"
161
+
162
+ #: useronline-options.php:198
163
+ msgid "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"
164
+ msgstr "URL de la página UserOnline(deje en vacío si no quiere enlazar a la página UserOnline)<br />Ejemplo: http://www.yoursite.com/blogs/useronline/<br >Ejemplo: http://www.yoursite.com/blogs/?page_id=2"
165
+
166
+ #: useronline-options.php:202
167
+ msgid "Bots Name/User Agent"
168
+ msgstr "Nombre de los bots/Agente de usuario"
169
+
170
+ #: useronline-options.php:204
171
+ msgid "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."
172
+ msgstr "Aquí tiene una lista de bots y sus agentes parciales de navegación.<br />En la columna de la izquierda estará el <strong>Nombre del bot</strong> y en la columna de la derecha su <strong>Agente parcial de navegación</strong>.<br />Cada nueva entrada comienza en una nueva línea."
173
+
174
+ #: useronline-options.php:212
175
+ msgid "Naming Conventions:"
176
+ msgstr "Convención de nombres:"
177
+
178
+ #: useronline-options.php:213
179
+ #: useronline-options.php:254
180
+ #: useronline-options.php:266
181
+ #: useronline-options.php:298
182
+ msgid "Allowed Variables:"
183
+ msgstr "Variables admitidas:"
184
+
185
+ #: useronline-options.php:215
186
+ #: useronline-options.php:259
187
+ #: useronline-options.php:274
188
+ #: useronline-options.php:306
189
+ msgid "Restore Default Template"
190
+ msgstr "Restaurar la plantilla por defecto"
191
+
192
+ #: useronline-options.php:221
193
+ msgid "Singular Form"
194
+ msgstr "Forma en singular"
195
+
196
+ #: useronline-options.php:222
197
+ msgid "Plural Form"
198
+ msgstr "Forma en plural"
199
+
200
+ #: useronline-options.php:249
201
+ msgid "Useronline Templates"
202
+ msgstr "Plantillas de Useronlime"
203
+
204
+ #: useronline-options.php:253
205
+ msgid "User(s) Online:"
206
+ msgstr "Usuarios(s) conectado(s):"
207
+
208
+ #: useronline-options.php:265
209
+ msgid "User(s) Browsing Site:"
210
+ msgstr "Usuario(s) navegando por el sitio:"
211
+
212
+ #: useronline-options.php:280
213
+ #: useronline-options.php:312
214
+ msgid "Member Names Separator"
215
+ msgstr "Separador de nombres de miembros"
216
+
217
+ #: useronline-options.php:281
218
+ #: useronline-options.php:313
219
+ msgid "Guests Separator"
220
+ msgstr "Separador de invitados"
221
+
222
+ #: useronline-options.php:282
223
+ #: useronline-options.php:314
224
+ msgid "Bots Separator"
225
+ msgstr "Separador de bots"
226
+
227
+ #: useronline-options.php:297
228
+ msgid "User(s) Browsing Page:"
229
+ msgstr "Usuario(s) navegando por la página:"
230
+
231
+ #: useronline-options.php:329
232
+ msgid "Save Changes"
233
+ msgstr "Guardar cambios"
234
+
235
+ #: useronline-options.php:340
236
+ msgid "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."
237
+ msgstr "Desactivando el plugin WP-UserOnline no se eliminará información que haya podido crearse, como las opciones de Useronline. Para eliminar completamente este plugin debe desinstalarlo aquí."
238
+
239
+ #: useronline-options.php:343
240
+ msgid "WARNING:"
241
+ msgstr "ADVERTENCIA:"
242
+
243
+ #: useronline-options.php:344
244
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
245
+ msgstr "Una vez desinstalado, no se podrá deshacer. Deberá hacer una copia de seguridad de la base de datos de WordPress para recuperar la información primero."
246
+
247
+ #: useronline-options.php:347
248
+ msgid "The following WordPress Options/Tables will be DELETED:"
249
+ msgstr "Las siguientes Opciones/Tablas de WordPress serán BORRADAS:"
250
+
251
+ #: useronline-options.php:352
252
+ msgid "WordPress Options"
253
+ msgstr "Opciones de WordPress"
254
+
255
+ #: useronline-options.php:353
256
+ msgid "WordPress Tables"
257
+ msgstr "Tablas de WordPress"
258
+
259
+ #: useronline-options.php:379
260
+ #: wp-useronline-widget.php:73
261
+ msgid "Yes"
262
+ msgstr "Sí"
263
+
264
+ #: useronline-options.php:380
265
+ msgid ""
266
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
267
+ "This Action Is Not Reversible.\\n"
268
+ "\\n"
269
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
270
+ msgstr ""
271
+ "Está a punto de desinstarlarWP-UserOnline de WordPress.\\n"
272
+ "Esta acción es irreversible.\\n"
273
+ "\\n"
274
+ " Selecione [Cancelar] para detener, [Aceptar] para desinstalar."
275
+
276
+ #: wp-useronline-widget.php:62
277
+ msgid "UserOnline"
278
+ msgstr "UserOnline"
279
+
280
+ #: wp-useronline-widget.php:69
281
+ msgid "Widget Title"
282
+ msgstr "Título del Widget"
283
+
284
+ #: wp-useronline-widget.php:70
285
+ msgid "Display Users Browsing Site Under Users Online Count?"
286
+ msgstr "¿Mostrar usuarios navengando por el sitio bajo en número de usuario en línea?"
287
+
288
+ #: wp-useronline-widget.php:75
289
+ msgid "No"
290
+ msgstr "No"
291
+
292
+ #: wp-useronline.php:58
293
+ #: wp-useronline.php:844
294
+ #: wp-useronline.php:846
295
+ #: wp-useronline.php:856
296
+ msgid "WP-UserOnline"
297
+ msgstr "WP-UserOnline"
298
+
299
+ #: wp-useronline.php:61
300
+ msgid "Useronline"
301
+ msgstr "Useronline"
302
+
303
+ #: wp-useronline.php:126
304
+ msgid "guest"
305
+ msgstr "invitado"
306
+
307
+ #: wp-useronline.php:132
308
+ #: wp-useronline.php:707
309
+ msgid "Guest"
310
+ msgstr "invitado"
311
+
312
+ #: wp-useronline.php:147
313
+ msgid "Blog Archive"
314
+ msgstr "Archivo de la bitácora"
315
+
316
+ #: wp-useronline.php:228
317
+ #: wp-useronline.php:259
318
+ #: wp-useronline.php:742
319
+ #: wp-useronline.php:744
320
+ #: wp-useronline.php:762
321
+ #: wp-useronline.php:764
322
+ #: wp-useronline.php:777
323
+ #, php-format
324
+ msgid "%s @ %s"
325
+ msgstr "%s @ %s"
326
+
327
+ #: wp-useronline.php:396
328
+ msgid "No User Is Browsing This Site"
329
+ msgstr "No hay usuarios navegando por el sitio"
330
+
331
+ #: wp-useronline.php:538
332
+ msgid "No User Is Browsing This Page"
333
+ msgstr "No hay usuarios navegando por esta página"
334
+
335
+ #: wp-useronline.php:609
336
+ msgid "Users Online Now"
337
+ msgstr "Usuarios en línea ahora"
338
+
339
+ #: wp-useronline.php:621
340
+ #, php-format
341
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
342
+ msgstr "Hay <strong><a href=\"%s\">%s usuario</a></strong> en línea ahora."
343
+
344
+ #: wp-useronline.php:623
345
+ #, php-format
346
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
347
+ msgstr "Hay un total de <strong><a href=\"%s\">%s usuarios</a></strong> en línea ahora."
348
+
349
+ #: wp-useronline.php:628
350
+ #: wp-useronline.php:729
351
+ #, php-format
352
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
353
+ msgstr "La mayor cantidad de usuarios en línea fue de <strong>%s</strong>, el <strong>%s</strong>"
354
+
355
+ #: wp-useronline.php:692
356
+ msgid "User"
357
+ msgstr "usuario"
358
+
359
+ #: wp-useronline.php:694
360
+ msgid "Users"
361
+ msgstr "Usuarios"
362
+
363
+ #: wp-useronline.php:699
364
+ msgid "Member"
365
+ msgstr "miembro"
366
+
367
+ #: wp-useronline.php:701
368
+ msgid "Members"
369
+ msgstr "miembros"
370
+
371
+ #: wp-useronline.php:709
372
+ msgid "Guests"
373
+ msgstr "invitados"
374
+
375
+ #: wp-useronline.php:714
376
+ msgid "Bot"
377
+ msgstr "bot"
378
+
379
+ #: wp-useronline.php:716
380
+ msgid "Bots"
381
+ msgstr "bots"
382
+
383
+ #: wp-useronline.php:725
384
+ #, php-format
385
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
386
+ msgstr "Hay <strong>%s</strong> en línea ahora: <strong>%s</strong>, <strong>%s</strong> y <strong>%s</strong>."
387
+
388
+ #: wp-useronline.php:727
389
+ #, php-format
390
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
391
+ msgstr "Hay un total de <strong>%s</strong> en línea ahora: <strong>%s</strong>, <strong>%s</strong> y <strong>%s</strong>."
392
+
393
+ #: wp-useronline.php:732
394
+ #: wp-useronline.php:752
395
+ #: wp-useronline.php:772
396
+ msgid "Online Now"
397
+ msgstr "en línea ahora"
398
+
399
+ #: wp-useronline.php:739
400
+ #: wp-useronline.php:759
401
+ msgid "referral"
402
+ msgstr "origen"
403
+
404
+ #: wp-useronline.php:742
405
+ #: wp-useronline.php:744
406
+ #: wp-useronline.php:762
407
+ #: wp-useronline.php:764
408
+ #: wp-useronline.php:777
409
+ msgid "on"
410
+ msgstr "el"
411
+
412
+ #: wp-useronline.php:742
413
+ #: wp-useronline.php:744
414
+ #: wp-useronline.php:762
415
+ #: wp-useronline.php:764
416
+ #: wp-useronline.php:777
417
+ msgid "url"
418
+ msgstr "URL"
419
+
420
+ #: wp-useronline.php:784
421
+ msgid "No One Is Online Now"
422
+ msgstr "No hay nadie en línea ahora"
423
+
424
+ #: wp-useronline.php:860
425
+ msgid "On"
426
+ msgstr "el"
427
+
428
+ #~ msgid "user(s) online now."
429
+ #~ msgstr "usuario(s) en línea ahora."
430
+ #~ msgid "Most users ever online was"
431
+ #~ msgstr "La mayor cantidad de usuarios fue"
432
+
lang/wp-useronline-fa_IR.mo ADDED
Binary file
lang/wp-useronline-fa_IR.po ADDED
@@ -0,0 +1,514 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-User Online\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-04-02 11:06+0330\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: mostafa <mostafa.s1990@gmail.com>\n"
8
+ "Language-Team: Persian Wordpress <Mostafa.s1990@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Persian\n"
13
+ "X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: F:\\Program Files\\apserv\\AppServ\\www\\wordpress\\wp-content\\plugins\\wp-useronline\n"
16
+ "X-Poedit-SearchPath-0: F:\\Program Files\\apserv\\AppServ\\www\\wordpress\\wp-content\\plugins\\wp-useronline\n"
17
+
18
+ #: F:\Program
19
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:63
20
+ msgid "Useronline Timeout"
21
+ msgstr "زمان خروجی"
22
+
23
+ #: F:\Program
24
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:64
25
+ msgid "Useronline Bots"
26
+ msgstr "ربات ها"
27
+
28
+ #: F:\Program
29
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:65
30
+ msgid "Useronline URL"
31
+ msgstr "آدرس پیوند کاربرحاضر"
32
+
33
+ #: F:\Program
34
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:66
35
+ msgid "Useronline Naming Conventions"
36
+ msgstr "نام های کاربران حاضر"
37
+
38
+ #: F:\Program
39
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:67
40
+ msgid "User(s) Online Template"
41
+ msgstr "قالب کاربران حاضر"
42
+
43
+ #: F:\Program
44
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:68
45
+ msgid "User(s) Browsing Site Template"
46
+ msgstr "قالب های کاربران سایت به روز رسانی شد"
47
+
48
+ #: F:\Program
49
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:69
50
+ msgid "User(s) Browsing Page Template"
51
+ msgstr "قالب های برگه ها"
52
+
53
+ #: F:\Program
54
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:74
55
+ msgid "Updated"
56
+ msgstr "به روز رسانی شد"
57
+
58
+ #: F:\Program
59
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:79
60
+ msgid "No Useronline Option Updated"
61
+ msgstr "تنظیمات کاربرحاضر به روز نشد"
62
+
63
+ #: F:\Program
64
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:85
65
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:379
66
+ msgid "UNINSTALL WP-UserOnline"
67
+ msgstr "حذف افزونه کاربرحاضر"
68
+
69
+ #: F:\Program
70
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:92
71
+ #, php-format
72
+ msgid "Table '%s' has been deleted."
73
+ msgstr "جدول '%s' حذف شد."
74
+
75
+ #: F:\Program
76
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:101
77
+ #, php-format
78
+ msgid "Setting Key '%s' has been deleted."
79
+ msgstr "Setting Key '%s' has been deleted."
80
+
81
+ #: F:\Program
82
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:105
83
+ #, php-format
84
+ msgid "Error deleting Setting Key '%s'."
85
+ msgstr "Error deleting Setting Key '%s'."
86
+
87
+ #: F:\Program
88
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:127
89
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:337
90
+ msgid "Uninstall WP-UserOnline"
91
+ msgstr "حذف افزونه کاربرحاضر"
92
+
93
+ #: F:\Program
94
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:128
95
+ #, php-format
96
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
97
+ msgstr "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
98
+
99
+ #: F:\Program
100
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:153
101
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:917
102
+ msgid "Online"
103
+ msgstr "حاضر"
104
+
105
+ #: F:\Program
106
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:160
107
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:916
108
+ msgid "1 User"
109
+ msgstr "1 کاربر"
110
+
111
+ #: F:\Program
112
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:161
113
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:916
114
+ msgid "%USERONLINE_COUNT% Users"
115
+ msgstr "%USERONLINE_COUNT% کاربران"
116
+
117
+ #: F:\Program
118
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:162
119
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:916
120
+ msgid "1 Member"
121
+ msgstr "1 عضو"
122
+
123
+ #: F:\Program
124
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:163
125
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:916
126
+ msgid "%USERONLINE_COUNT% Members"
127
+ msgstr "%USERONLINE_COUNT% کاربران"
128
+
129
+ #: F:\Program
130
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:164
131
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:916
132
+ msgid "1 Guest"
133
+ msgstr "1 مهمان"
134
+
135
+ #: F:\Program
136
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:165
137
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:916
138
+ msgid "%USERONLINE_COUNT% Guests"
139
+ msgstr "%USERONLINE_COUNT% مهمان ها"
140
+
141
+ #: F:\Program
142
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:166
143
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:916
144
+ msgid "1 Bot"
145
+ msgstr "1 ربات"
146
+
147
+ #: F:\Program
148
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:167
149
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:916
150
+ msgid "%USERONLINE_COUNT% Bots"
151
+ msgstr "%USERONLINE_COUNT% ربات ها"
152
+
153
+ #: F:\Program
154
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:173
155
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:179
156
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:698
157
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:918
158
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:919
159
+ msgid "Users"
160
+ msgstr "کاربران"
161
+
162
+ #: F:\Program
163
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:179
164
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:919
165
+ msgid "Browsing This Page."
166
+ msgstr "در حال خواندن این صفحه."
167
+
168
+ #: F:\Program
169
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:185
170
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:186
171
+ msgid "Useronline Options"
172
+ msgstr "تنظیمات کاربرحاضر"
173
+
174
+ #: F:\Program
175
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:189
176
+ msgid "Time Out"
177
+ msgstr "زمان خروجی"
178
+
179
+ #: F:\Program
180
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:191
181
+ msgid "How long till it will remove the user from the database (In seconds)."
182
+ msgstr "چه زمانی با تغییر شما کاربر از پایگاه داده پاک شود (در ثانیه)."
183
+
184
+ #: F:\Program
185
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:195
186
+ msgid "UserOnline URL"
187
+ msgstr "پیوند کاربرحاضر"
188
+
189
+ #: F:\Program
190
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:197
191
+ msgid "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"
192
+ msgstr "پیوند کاربرحاضر در برگه (انتقال و نمایش مشخصات کاربران در برگه کاربران حاضر)<br />مثال: http://www.yoursite.com/blogs/useronline/<br />مثال: http://www.yoursite.com/blogs/?page_id=2"
193
+
194
+ #: F:\Program
195
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:201
196
+ msgid "Bots Name/User Agent"
197
+ msgstr "نام ربات ها/ کاربر پیشه"
198
+
199
+ #: F:\Program
200
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:203
201
+ msgid "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."
202
+ msgstr "لیست کلی از ربات ها در اینجا قرار دارد.<br />در قسمت چپ ستون <strong>نام های ربات ها</strong> و در قسمت راست ستون <strong>ربات های پیشکار خوانده میشود.</strong>.<br />برای شروع, هریک را در خط جدید وارد کنید.."
203
+
204
+ #: F:\Program
205
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:211
206
+ msgid "Naming Conventions:"
207
+ msgstr "نام ها:"
208
+
209
+ #: F:\Program
210
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:212
211
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:253
212
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:265
213
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:297
214
+ msgid "Allowed Variables:"
215
+ msgstr "متغیرهای صحیح:"
216
+
217
+ #: F:\Program
218
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:214
219
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:258
220
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:273
221
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:305
222
+ msgid "Restore Default Template"
223
+ msgstr "بازگشت به حالت پیشفرض"
224
+
225
+ #: F:\Program
226
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:220
227
+ msgid "Singular Form"
228
+ msgstr "فرم فردی"
229
+
230
+ #: F:\Program
231
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:221
232
+ msgid "Plural Form"
233
+ msgstr "فرم جمعی"
234
+
235
+ #: F:\Program
236
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:248
237
+ msgid "Useronline Templates"
238
+ msgstr "قالب های کاربرحاضر"
239
+
240
+ #: F:\Program
241
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:252
242
+ msgid "User(s) Online:"
243
+ msgstr "کاربران حاضر:"
244
+
245
+ #: F:\Program
246
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:264
247
+ msgid "User(s) Browsing Site:"
248
+ msgstr "کاربران سایت:"
249
+
250
+ #: F:\Program
251
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:279
252
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:311
253
+ msgid "Member Names Separator"
254
+ msgstr "نام جداکننده عضو"
255
+
256
+ #: F:\Program
257
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:280
258
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:312
259
+ msgid "Guests Separator"
260
+ msgstr "جداکننده مهمان ها"
261
+
262
+ #: F:\Program
263
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:281
264
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:313
265
+ msgid "Bots Separator"
266
+ msgstr "جداکننده ربات ها"
267
+
268
+ #: F:\Program
269
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:296
270
+ msgid "User(s) Browsing Page:"
271
+ msgstr "کاربران برگه:"
272
+
273
+ #: F:\Program
274
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:328
275
+ msgid "Save Changes"
276
+ msgstr "دخیره تغییرات"
277
+
278
+ #: F:\Program
279
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:339
280
+ msgid "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."
281
+ msgstr "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."
282
+
283
+ #: F:\Program
284
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:342
285
+ msgid "WARNING:"
286
+ msgstr "اخطار:"
287
+
288
+ #: F:\Program
289
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:343
290
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
291
+ msgstr "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
292
+
293
+ #: F:\Program
294
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:346
295
+ msgid "The following WordPress Options/Tables will be DELETED:"
296
+ msgstr "The following WordPress Options/Tables will be DELETED:"
297
+
298
+ #: F:\Program
299
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:351
300
+ msgid "WordPress Options"
301
+ msgstr "تنظمیات وردپرس"
302
+
303
+ #: F:\Program
304
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:352
305
+ msgid "WordPress Tables"
306
+ msgstr "جداول وردپرس"
307
+
308
+ #: F:\Program
309
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:378
310
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline-widget.php:73
311
+ msgid "Yes"
312
+ msgstr "بله"
313
+
314
+ #: F:\Program
315
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/useronline-options.php:379
316
+ msgid ""
317
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
318
+ "This Action Is Not Reversible.\\n"
319
+ "\\n"
320
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
321
+ msgstr ""
322
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
323
+ "This Action Is Not Reversible.\\n"
324
+ "\\n"
325
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
326
+
327
+ #: F:\Program
328
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline-widget.php:62
329
+ msgid "UserOnline"
330
+ msgstr "کاربرحاضر"
331
+
332
+ #: F:\Program
333
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline-widget.php:69
334
+ msgid "Widget Title"
335
+ msgstr "عنوان ابزارک"
336
+
337
+ #: F:\Program
338
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline-widget.php:70
339
+ msgid "Display Users Browsing Site Under Users Online Count?"
340
+ msgstr "نمایش کاربران حاضر در سایت در زیر تعداد افراد حاضر؟"
341
+
342
+ #: F:\Program
343
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline-widget.php:75
344
+ msgid "No"
345
+ msgstr "خیر"
346
+
347
+ #: F:\Program
348
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:77
349
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:848
350
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:850
351
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:860
352
+ msgid "WP-UserOnline"
353
+ msgstr "کاربران حاضر"
354
+
355
+ #: F:\Program
356
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:80
357
+ msgid "Useronline"
358
+ msgstr "کاربرحاضر"
359
+
360
+ #: F:\Program
361
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:145
362
+ msgid "guest"
363
+ msgstr "مهمان"
364
+
365
+ #: F:\Program
366
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:151
367
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:711
368
+ msgid "Guest"
369
+ msgstr "مهمان"
370
+
371
+ #: F:\Program
372
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:166
373
+ msgid "Blog Archive"
374
+ msgstr "بایگانی وبلاگ"
375
+
376
+ #: F:\Program
377
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:247
378
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:278
379
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:746
380
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:748
381
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:766
382
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:768
383
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:781
384
+ #, php-format
385
+ msgid "%s @ %s"
386
+ msgstr "%s ساعت %s"
387
+
388
+ #: F:\Program
389
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:411
390
+ msgid "No User Is Browsing This Site"
391
+ msgstr "هیچ کاربری در این سایت وجود ندارد"
392
+
393
+ #: F:\Program
394
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:549
395
+ msgid "No User Is Browsing This Page"
396
+ msgstr "هیچ کاربری در این برگه وجود ندارد"
397
+
398
+ #: F:\Program
399
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:613
400
+ msgid "Users Online Now"
401
+ msgstr "کاربران حاضر"
402
+
403
+ #: F:\Program
404
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:625
405
+ #, php-format
406
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
407
+ msgstr "هم اکنون <strong><a href=\"%s\">%s کاربر</a></strong>حاضر است."
408
+
409
+ #: F:\Program
410
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:627
411
+ #, php-format
412
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
413
+ msgstr "دراینجا کل <strong><a href=\"%s\">%s کاربران</a></strong> هم اکنون حاضر هستند.."
414
+
415
+ #: F:\Program
416
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:632
417
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:733
418
+ #, php-format
419
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
420
+ msgstr "بیشترین افراد حاضر <strong>%s</strong> نفر, در <strong>%s</strong>"
421
+
422
+ #: F:\Program
423
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:696
424
+ msgid "User"
425
+ msgstr "کاربر"
426
+
427
+ #: F:\Program
428
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:703
429
+ msgid "Member"
430
+ msgstr "عضو"
431
+
432
+ #: F:\Program
433
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:705
434
+ msgid "Members"
435
+ msgstr "عضوها"
436
+
437
+ #: F:\Program
438
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:713
439
+ msgid "Guests"
440
+ msgstr "مهمان ها"
441
+
442
+ #: F:\Program
443
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:718
444
+ msgid "Bot"
445
+ msgstr "ربات"
446
+
447
+ #: F:\Program
448
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:720
449
+ msgid "Bots"
450
+ msgstr "ربات ها"
451
+
452
+ #: F:\Program
453
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:729
454
+ #, php-format
455
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
456
+ msgstr "در حال حاضر <strong>%s</strong> حاضرین: <strong>%s</strong>, <strong>%s</strong> و <strong>%s</strong>."
457
+
458
+ #: F:\Program
459
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:731
460
+ #, php-format
461
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
462
+ msgstr "در اینجا کل <strong>%s</strong> حاضرین: <strong>%s</strong>, <strong>%s</strong> و <strong>%s</strong>."
463
+
464
+ #: F:\Program
465
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:736
466
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:756
467
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:776
468
+ msgid "Online Now"
469
+ msgstr "هم اکنون حاضر است"
470
+
471
+ #: F:\Program
472
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:743
473
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:763
474
+ msgid "referral"
475
+ msgstr "رجوع به"
476
+
477
+ #: F:\Program
478
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:746
479
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:748
480
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:766
481
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:768
482
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:781
483
+ msgid "on"
484
+ msgstr "در"
485
+
486
+ #: F:\Program
487
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:746
488
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:748
489
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:766
490
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:768
491
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:781
492
+ msgid "url"
493
+ msgstr "پیوند"
494
+
495
+ #: F:\Program
496
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:788
497
+ msgid "No One Is Online Now"
498
+ msgstr "نه یک کاربرحاضر وجود ندارد"
499
+
500
+ #: F:\Program
501
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:862
502
+ msgid "user(s) online now."
503
+ msgstr "کاربران حاضر هم اکنون."
504
+
505
+ #: F:\Program
506
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:863
507
+ msgid "Most users ever online was"
508
+ msgstr "بیشتر کاربرها هیچ وقت حاضر نبوده"
509
+
510
+ #: F:\Program
511
+ #: Files\apserv\AppServ\www\wordpress\wp-content\plugins\wp-useronline/wp-useronline.php:864
512
+ msgid "On"
513
+ msgstr "در"
514
+
lang/wp-useronline-fr_FR.mo ADDED
Binary file
lang/wp-useronline-fr_FR.po ADDED
@@ -0,0 +1,477 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-11 23:49+0800\n"
6
+ "PO-Revision-Date: 2009-06-14 15:13+0100\n"
7
+ "Last-Translator: Lorand <contact@pocketpc-logiciels.fr>\n"
8
+ "Language-Team: Lester Chan <lesterchan@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Country: SINGAPORE\n"
13
+ "X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2;__ngettext_noop:1,2\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Language: English\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: useronline-options.php:63
20
+ msgid "Useronline Timeout"
21
+ msgstr "Délai - Utilisateurs en ligne"
22
+
23
+ #: useronline-options.php:64
24
+ msgid "Useronline Bots"
25
+ msgstr "Robots - Utilisateurs en ligne"
26
+
27
+ #: useronline-options.php:65
28
+ msgid "Useronline URL"
29
+ msgstr "Adresse URL - Utilisateurs en ligne"
30
+
31
+ #: useronline-options.php:66
32
+ msgid "Useronline Naming Conventions"
33
+ msgstr "Conventions - Utilisateurs en ligne"
34
+
35
+ #: useronline-options.php:67
36
+ msgid "User(s) Online Template"
37
+ msgstr "Utilisateur(s) en ligne - Modèle"
38
+
39
+ #: useronline-options.php:68
40
+ msgid "User(s) Browsing Site Template"
41
+ msgstr "Utilisateur(s) qui naviguent sur le site - Modèle"
42
+
43
+ #: useronline-options.php:69
44
+ msgid "User(s) Browsing Page Template"
45
+ msgstr "Utilisateur(s) qui naviguent sur une page - Modèle"
46
+
47
+ #: useronline-options.php:74
48
+ msgid "Updated"
49
+ msgstr "Mise à jour effectuée avec succès"
50
+
51
+ #: useronline-options.php:79
52
+ msgid "No Useronline Option Updated"
53
+ msgstr "Aucune option Utilisateurs en ligne n'a été mise à jour"
54
+
55
+ #: useronline-options.php:85
56
+ #: useronline-options.php:380
57
+ msgid "UNINSTALL WP-UserOnline"
58
+ msgstr "DESINSTALLATION UserOnline"
59
+
60
+ #: useronline-options.php:92
61
+ #, php-format
62
+ msgid "Table '%s' has been deleted."
63
+ msgstr "La table '%s' a bien été supprimée"
64
+
65
+ #: useronline-options.php:101
66
+ #, php-format
67
+ msgid "Setting Key '%s' has been deleted."
68
+ msgstr "La clé de configuration '%s' a bien été supprimée"
69
+
70
+ #: useronline-options.php:105
71
+ #, php-format
72
+ msgid "Error deleting Setting Key '%s'."
73
+ msgstr "Erreur lors de la suppression de la clé de configuration '%s'."
74
+
75
+ #: useronline-options.php:127
76
+ #: useronline-options.php:338
77
+ msgid "Uninstall WP-UserOnline"
78
+ msgstr "Désinstaller WP-UserOnline"
79
+
80
+ #: useronline-options.php:128
81
+ #, php-format
82
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
83
+ msgstr "<a href=\"%s\">Cliquez ici</a> pour terminer la désinstallation et pour que le plugin WP-UserOnline soit désactivé automatiquement."
84
+
85
+ #: useronline-options.php:153
86
+ #: wp-useronline.php:1013
87
+ msgid "Online"
88
+ msgstr "En ligne"
89
+
90
+ #: useronline-options.php:160
91
+ #: wp-useronline.php:1012
92
+ msgid "1 User"
93
+ msgstr "1 Utilisateur"
94
+
95
+ #: useronline-options.php:161
96
+ #: wp-useronline.php:1012
97
+ msgid "%USERONLINE_COUNT% Users"
98
+ msgstr "%USERONLINE_COUNT% Utilisateurs"
99
+
100
+ #: useronline-options.php:162
101
+ #: wp-useronline.php:1012
102
+ msgid "1 Member"
103
+ msgstr "1 Membre"
104
+
105
+ #: useronline-options.php:163
106
+ #: wp-useronline.php:1012
107
+ msgid "%USERONLINE_COUNT% Members"
108
+ msgstr "%USERONLINE_COUNT% Membres"
109
+
110
+ #: useronline-options.php:164
111
+ #: wp-useronline.php:1012
112
+ msgid "1 Guest"
113
+ msgstr "1 Invité"
114
+
115
+ #: useronline-options.php:165
116
+ #: wp-useronline.php:1012
117
+ msgid "%USERONLINE_COUNT% Guests"
118
+ msgstr "%USERONLINE_COUNT% Invités"
119
+
120
+ #: useronline-options.php:166
121
+ #: wp-useronline.php:1012
122
+ msgid "1 Bot"
123
+ msgstr "1 Robot"
124
+
125
+ #: useronline-options.php:167
126
+ #: wp-useronline.php:1012
127
+ msgid "%USERONLINE_COUNT% Bots"
128
+ msgstr "%USERONLINE_COUNT% Robots"
129
+
130
+ #: useronline-options.php:170
131
+ #: useronline-options.php:171
132
+ #: useronline-options.php:172
133
+ #: useronline-options.php:176
134
+ #: useronline-options.php:177
135
+ #: useronline-options.php:178
136
+ #: wp-useronline.php:1014
137
+ #: wp-useronline.php:1015
138
+ msgid ","
139
+ msgstr ","
140
+
141
+ #: useronline-options.php:173
142
+ #: useronline-options.php:179
143
+ #: wp-useronline.php:1014
144
+ #: wp-useronline.php:1015
145
+ msgid "Users|Template Element"
146
+ msgstr "Utilisteurs|Elément modèle"
147
+
148
+ #: useronline-options.php:179
149
+ #: wp-useronline.php:1015
150
+ msgid "Browsing This Page."
151
+ msgstr "Naviguent sur cette page."
152
+
153
+ #: useronline-options.php:186
154
+ #: useronline-options.php:187
155
+ msgid "Useronline Options"
156
+ msgstr "Options - Utilisateurs en ligne"
157
+
158
+ #: useronline-options.php:190
159
+ msgid "Time Out"
160
+ msgstr "Délai"
161
+
162
+ #: useronline-options.php:192
163
+ msgid "How long till it will remove the user from the database (In seconds)."
164
+ msgstr "Durée avant que les utilisateurs soient supprimés de la base de données (en secondes)."
165
+
166
+ #: useronline-options.php:196
167
+ msgid "UserOnline URL"
168
+ msgstr "Adresse URL Utilisateurs en ligne"
169
+
170
+ #: useronline-options.php:198
171
+ msgid "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"
172
+ msgstr "Adresse URL de la page Utilisateurs en ligne (laisser vide si vous ne souhaitez pas activer de page)<br />Exemple : http://www.yoursite.com/blogs/useronline/<br />Exemple : http://www.yoursite.com/blogs/?page_id=2"
173
+
174
+ #: useronline-options.php:202
175
+ msgid "Bots Name/User Agent"
176
+ msgstr "Nom de robot/Agent de navigation"
177
+
178
+ #: useronline-options.php:204
179
+ msgid "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."
180
+ msgstr "Ceci est une liste de robots et leurs agents de navigation.<br />Dans la colonne de gauche s'affiche le <strong>Nom des robots</strong> et dans la colonne de droite leur <strong>Agent de navigation</strong>.<br />Ajoutez chaque nouvelle entrée sur une nouvelle ligne."
181
+
182
+ #: useronline-options.php:212
183
+ msgid "Naming Conventions:"
184
+ msgstr "Conventions :"
185
+
186
+ #: useronline-options.php:213
187
+ #: useronline-options.php:254
188
+ #: useronline-options.php:266
189
+ #: useronline-options.php:298
190
+ msgid "Allowed Variables:"
191
+ msgstr "Variables autorisées :"
192
+
193
+ #: useronline-options.php:215
194
+ #: useronline-options.php:259
195
+ #: useronline-options.php:274
196
+ #: useronline-options.php:306
197
+ msgid "Restore Default Template"
198
+ msgstr "Restaurer le modèle par défaut"
199
+
200
+ #: useronline-options.php:221
201
+ msgid "Singular Form"
202
+ msgstr "Forme au singulier"
203
+
204
+ #: useronline-options.php:222
205
+ msgid "Plural Form"
206
+ msgstr "Forme au pluriel"
207
+
208
+ #: useronline-options.php:249
209
+ msgid "Useronline Templates"
210
+ msgstr "Modèles - Utilisateurs en ligne"
211
+
212
+ #: useronline-options.php:253
213
+ msgid "User(s) Online:"
214
+ msgstr "Utilisateur(s) en ligne :"
215
+
216
+ #: useronline-options.php:265
217
+ msgid "User(s) Browsing Site:"
218
+ msgstr "Utilisateur(s) naviguant sur le site :"
219
+
220
+ #: useronline-options.php:280
221
+ #: useronline-options.php:312
222
+ msgid "Member Names Separator"
223
+ msgstr "Séparateur pour le nom des membres "
224
+
225
+ #: useronline-options.php:281
226
+ #: useronline-options.php:313
227
+ msgid "Guests Separator"
228
+ msgstr "Séparateur pour les Invités"
229
+
230
+ #: useronline-options.php:282
231
+ #: useronline-options.php:314
232
+ msgid "Bots Separator"
233
+ msgstr "Séparateur pour les robots"
234
+
235
+ #: useronline-options.php:297
236
+ msgid "User(s) Browsing Page:"
237
+ msgstr "utilisateur(s) naviguant sur les pages :"
238
+
239
+ #: useronline-options.php:329
240
+ msgid "Save Changes"
241
+ msgstr "Sauvegarder les modifications"
242
+
243
+ #: useronline-options.php:340
244
+ msgid "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."
245
+ msgstr "La désinstallation du plugin WP-UserOnlin ne supprime pas les tables qui ont été créées dans la base de données. Pour supprimer totalement ce plugin, vous devez le désinstaller en utilisant cette fonction."
246
+
247
+ #: useronline-options.php:343
248
+ msgid "WARNING:"
249
+ msgstr "ATTENTION ! :"
250
+
251
+ #: useronline-options.php:344
252
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
253
+ msgstr "Une fois désinstallé, il ne sera plus possible de revenir en arrière. Vous devrez utiliser une sauvegarde des tables de la base de données de ce plugin si vous souhaitez réinstaller sa configuration."
254
+
255
+ #: useronline-options.php:347
256
+ msgid "The following WordPress Options/Tables will be DELETED:"
257
+ msgstr "Les tables/options suivantes vont être supprimées :"
258
+
259
+ #: useronline-options.php:352
260
+ msgid "WordPress Options"
261
+ msgstr "Options WordPress"
262
+
263
+ #: useronline-options.php:353
264
+ msgid "WordPress Tables"
265
+ msgstr "Tables WordPress"
266
+
267
+ #: useronline-options.php:379
268
+ msgid "Yes"
269
+ msgstr "Oui"
270
+
271
+ #: useronline-options.php:380
272
+ msgid ""
273
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
274
+ "This Action Is Not Reversible.\\n"
275
+ "\\n"
276
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
277
+ msgstr ""
278
+ "Vous êtes sur le point de désinstaller WP-UserOnline de votre WordPress.\\n"
279
+ "Cette action sera irreversible.\\n"
280
+ "\\n"
281
+ "Choisissez [Cancel] pour annuler, ou [OK] pour désinstaller."
282
+
283
+ #: wp-useronline.php:58
284
+ #: wp-useronline.php:846
285
+ #: wp-useronline.php:848
286
+ #: wp-useronline.php:858
287
+ msgid "WP-UserOnline"
288
+ msgstr "WP-UserOnline"
289
+
290
+ #: wp-useronline.php:61
291
+ #: wp-useronline.php:873
292
+ #: wp-useronline.php:934
293
+ msgid "UserOnline"
294
+ msgstr "Utilisateurs en ligne"
295
+
296
+ #: wp-useronline.php:128
297
+ msgid "guest"
298
+ msgstr "invité"
299
+
300
+ #: wp-useronline.php:134
301
+ #: wp-useronline.php:709
302
+ msgid "Guest"
303
+ msgstr "Invités"
304
+
305
+ #: wp-useronline.php:149
306
+ msgid "Blog Archive"
307
+ msgstr "Archives du Blog"
308
+
309
+ #: wp-useronline.php:230
310
+ #: wp-useronline.php:261
311
+ #: wp-useronline.php:744
312
+ #: wp-useronline.php:746
313
+ #: wp-useronline.php:764
314
+ #: wp-useronline.php:766
315
+ #: wp-useronline.php:779
316
+ #, php-format
317
+ msgid "%s @ %s"
318
+ msgstr "%s @ %s"
319
+
320
+ #: wp-useronline.php:398
321
+ msgid "No User Is Browsing This Site"
322
+ msgstr "Il n'y a actuellement personne sur le site"
323
+
324
+ #: wp-useronline.php:540
325
+ msgid "No User Is Browsing This Page"
326
+ msgstr "Il n'y a actuellement personne sur cette page"
327
+
328
+ #: wp-useronline.php:611
329
+ msgid "Users Online Now"
330
+ msgstr "Utilisateurs actuellement en ligne"
331
+
332
+ #: wp-useronline.php:623
333
+ #, php-format
334
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
335
+ msgstr "Il y a <strong><a href=\"%s\">%s utilisateur</a></strong> actuellement en ligne"
336
+
337
+ #: wp-useronline.php:625
338
+ #, php-format
339
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
340
+ msgstr "Il y a un total de <strong><a href=\"%s\">%s utilisateurs</a></strong> en ligne actuellement"
341
+
342
+ #: wp-useronline.php:630
343
+ #: wp-useronline.php:731
344
+ #, php-format
345
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
346
+ msgstr "Le plus grand nombre d'utilisateurs en ligne a été de <strong>%s</strong>, le <strong>%s</strong>"
347
+
348
+ #: wp-useronline.php:694
349
+ msgid "User"
350
+ msgstr "Utilisateur"
351
+
352
+ #: wp-useronline.php:696
353
+ msgid "Users"
354
+ msgstr "Utilisateurs"
355
+
356
+ #: wp-useronline.php:701
357
+ msgid "Member"
358
+ msgstr "Membre"
359
+
360
+ #: wp-useronline.php:703
361
+ msgid "Members"
362
+ msgstr "Membres"
363
+
364
+ #: wp-useronline.php:711
365
+ msgid "Guests"
366
+ msgstr "Invités"
367
+
368
+ #: wp-useronline.php:716
369
+ msgid "Bot"
370
+ msgstr "Robot"
371
+
372
+ #: wp-useronline.php:718
373
+ msgid "Bots"
374
+ msgstr "Robots"
375
+
376
+ #: wp-useronline.php:727
377
+ #, php-format
378
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
379
+ msgstr "Il y a <strong>%s</strong> actuellement en ligne : <strong>%s</strong>, <strong>%s</strong> et <strong>%s</strong>."
380
+
381
+ #: wp-useronline.php:729
382
+ #, php-format
383
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
384
+ msgstr "Il y a un total de <strong>%s</strong> actuellement en ligne : <strong>%s</strong>, <strong>%s</strong> et <strong>%s</strong>."
385
+
386
+ #: wp-useronline.php:734
387
+ #: wp-useronline.php:754
388
+ #: wp-useronline.php:774
389
+ msgid "Online Now"
390
+ msgstr "Actuellement en ligne"
391
+
392
+ #: wp-useronline.php:741
393
+ #: wp-useronline.php:761
394
+ msgid "referral"
395
+ msgstr "Référent"
396
+
397
+ #: wp-useronline.php:744
398
+ #: wp-useronline.php:746
399
+ #: wp-useronline.php:764
400
+ #: wp-useronline.php:766
401
+ #: wp-useronline.php:779
402
+ msgid "on"
403
+ msgstr "le"
404
+
405
+ #: wp-useronline.php:744
406
+ #: wp-useronline.php:746
407
+ #: wp-useronline.php:764
408
+ #: wp-useronline.php:766
409
+ #: wp-useronline.php:779
410
+ msgid "url"
411
+ msgstr "URL"
412
+
413
+ #: wp-useronline.php:786
414
+ msgid "No One Is Online Now"
415
+ msgstr "Il n'y a personne en ligne actuellement"
416
+
417
+ #: wp-useronline.php:860
418
+ #, php-format
419
+ msgid "<strong>%s</strong> user online now."
420
+ msgid_plural "<strong>%s</strong> users online now."
421
+ msgstr[0] "<strong>%s</strong> utilisateur actuellement en ligne"
422
+ msgstr[1] "<strong>%s</strong> utilisateurs actuellement en ligne"
423
+
424
+ #: wp-useronline.php:861
425
+ #, php-format
426
+ msgid "Most users ever online was <strong>%s</strong>."
427
+ msgid_plural "Most users ever online was <strong>%s</strong>."
428
+ msgstr[0] "Le plus grand nombre d'utilisateurs en ligne a été de <strong>%s</strong>"
429
+ msgstr[1] "Le plus grand nombre d'utilisateurs en ligne a été de <strong>%s</strong>"
430
+
431
+ #: wp-useronline.php:862
432
+ msgid "On"
433
+ msgstr "le"
434
+
435
+ #: wp-useronline.php:872
436
+ msgid "WP-UserOnline users online statistics"
437
+ msgstr "WP-UserOnline - Statistiques utilisateurs en ligne"
438
+
439
+ #: wp-useronline.php:939
440
+ msgid "Title:"
441
+ msgstr "Titre :"
442
+
443
+ #: wp-useronline.php:942
444
+ msgid "Statistics Type:"
445
+ msgstr "Type de statistiques :"
446
+
447
+ #: wp-useronline.php:944
448
+ msgid "Users Online Count"
449
+ msgstr "Compteur d'utilisateurs en ligne"
450
+
451
+ #: wp-useronline.php:945
452
+ msgid "Users Browsing Current Page"
453
+ msgstr "Utilisateur(s) naviguant sur les pages"
454
+
455
+ #: wp-useronline.php:946
456
+ msgid "Users Browsing Site"
457
+ msgstr "Utilisateur(s) naviguant sur le site"
458
+
459
+ #: wp-useronline.php:948
460
+ msgid "Users Online Count & Users Browsing Current Page"
461
+ msgstr "Compteur d'utilisateur(s) en ligne naviguant sur la page"
462
+
463
+ #: wp-useronline.php:949
464
+ msgid "Users Online Count & Users Browsing Site"
465
+ msgstr "Compteur d'utilisateur(s) en ligne naviguant sur le site"
466
+
467
+ #~ msgid "Widget Title"
468
+ #~ msgstr "Titre du Widget"
469
+ #~ msgid "Display Users Browsing Site Under Users Online Count?"
470
+ #~ msgstr ""
471
+ #~ "Afficher les utilisateurs qui naviguent sur le site sous le compteur "
472
+ #~ "d'utilisateurs en ligne ?"
473
+ #~ msgid "No"
474
+ #~ msgstr "Non"
475
+ #~ msgid "Useronline"
476
+ #~ msgstr "Utilisateur en ligne"
477
+
lang/wp-useronline-he_IL.mo ADDED
Binary file
lang/wp-useronline-he_IL.po ADDED
@@ -0,0 +1,428 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.31\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-07-16 03:37+0800\n"
6
+ "PO-Revision-Date: 2010-02-14 02:06+0200\n"
7
+ "Last-Translator: GadgetGuru.co.il <info@gadgetguru.co.il>\n"
8
+ "Language-Team: GadgetGuru DevTeam <devteam@gadgetguru.co.il>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Country: SINGAPORE\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Language: English\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: useronline-options.php:63
19
+ msgid "Useronline Timeout"
20
+ msgstr "פסק זמן גולשים און ליין"
21
+
22
+ #: useronline-options.php:64
23
+ msgid "Useronline Bots"
24
+ msgstr "בוטים און ליין"
25
+
26
+ #: useronline-options.php:65
27
+ msgid "Useronline URL"
28
+ msgstr "קישור לגולשים און ליין"
29
+
30
+ #: useronline-options.php:66
31
+ msgid "Useronline Naming Conventions"
32
+ msgstr "ועידת שמות גולשים און ליין"
33
+
34
+ #: useronline-options.php:67
35
+ msgid "User(s) Online Template"
36
+ msgstr "תבנית גולשים און ליין"
37
+
38
+ #: useronline-options.php:68
39
+ msgid "User(s) Browsing Site Template"
40
+ msgstr "תבנית של אתר לגולשים צופים"
41
+
42
+ #: useronline-options.php:69
43
+ msgid "User(s) Browsing Page Template"
44
+ msgstr "תבנית של עמוד לגולשים צופים"
45
+
46
+ #: useronline-options.php:74
47
+ msgid "Updated"
48
+ msgstr "עדכונים"
49
+
50
+ #: useronline-options.php:79
51
+ msgid "No Useronline Option Updated"
52
+ msgstr "לא עודכנו אפשרויות גולשים און ליין"
53
+
54
+ #: useronline-options.php:85
55
+ #: useronline-options.php:379
56
+ msgid "UNINSTALL WP-UserOnline"
57
+ msgstr "תבנית של עמוד לגולשים צופים"
58
+
59
+ #: useronline-options.php:92
60
+ #, php-format
61
+ msgid "Table '%s' has been deleted."
62
+ msgstr "הטבלה '%s' נמחקה."
63
+
64
+ #: useronline-options.php:101
65
+ #, php-format
66
+ msgid "Setting Key '%s' has been deleted."
67
+ msgstr "מפתח האפשרויות '%s' נמחק."
68
+
69
+ #: useronline-options.php:105
70
+ #, php-format
71
+ msgid "Error deleting Setting Key '%s'."
72
+ msgstr "טעות במחיקת מפתח האפשרויות '%s'."
73
+
74
+ #: useronline-options.php:127
75
+ #: useronline-options.php:337
76
+ msgid "Uninstall WP-UserOnline"
77
+ msgstr "הסר התקנה של וורדספרס גולשים און ליין"
78
+
79
+ #: useronline-options.php:128
80
+ #, php-format
81
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
82
+ msgstr "<a href=\"%s\">לחץ כאן</a> לסיום ההסרה והפסקה אוטומטית של וורדפרס גולשים און ליין."
83
+
84
+ #: useronline-options.php:153
85
+ #: wp-useronline.php:917
86
+ msgid "Online"
87
+ msgstr "און ליין"
88
+
89
+ #: useronline-options.php:160
90
+ #: wp-useronline.php:916
91
+ msgid "1 User"
92
+ msgstr "1 גולש"
93
+
94
+ #: useronline-options.php:161
95
+ #: wp-useronline.php:916
96
+ msgid "%USERONLINE_COUNT% Users"
97
+ msgstr "%USERONLINE_COUNT% גולשים"
98
+
99
+ #: useronline-options.php:162
100
+ #: wp-useronline.php:916
101
+ msgid "1 Member"
102
+ msgstr "1 חבר"
103
+
104
+ #: useronline-options.php:163
105
+ #: wp-useronline.php:916
106
+ msgid "%USERONLINE_COUNT% Members"
107
+ msgstr "%USERONLINE_COUNT% חברים"
108
+
109
+ #: useronline-options.php:164
110
+ #: wp-useronline.php:916
111
+ msgid "1 Guest"
112
+ msgstr "1 אורח"
113
+
114
+ #: useronline-options.php:165
115
+ #: wp-useronline.php:916
116
+ msgid "%USERONLINE_COUNT% Guests"
117
+ msgstr "%USERONLINE_COUNT% אורחים"
118
+
119
+ #: useronline-options.php:166
120
+ #: wp-useronline.php:916
121
+ msgid "1 Bot"
122
+ msgstr "1 בוט"
123
+
124
+ #: useronline-options.php:167
125
+ #: wp-useronline.php:916
126
+ msgid "%USERONLINE_COUNT% Bots"
127
+ msgstr "%USERONLINE_COUNT% בוטים"
128
+
129
+ #: useronline-options.php:173
130
+ #: useronline-options.php:179
131
+ #: wp-useronline.php:698
132
+ #: wp-useronline.php:918
133
+ #: wp-useronline.php:919
134
+ msgid "Users"
135
+ msgstr "גולשים"
136
+
137
+ #: useronline-options.php:179
138
+ #: wp-useronline.php:919
139
+ msgid "Browsing This Page."
140
+ msgstr "צופים בדף זה."
141
+
142
+ #: useronline-options.php:185
143
+ #: useronline-options.php:186
144
+ msgid "Useronline Options"
145
+ msgstr "אפשרויות גולשים און ליין"
146
+
147
+ #: useronline-options.php:189
148
+ msgid "Time Out"
149
+ msgstr "פסק זמן"
150
+
151
+ #: useronline-options.php:191
152
+ msgid "How long till it will remove the user from the database (In seconds)."
153
+ msgstr "כמה זמן עד שיוסר משתמש ממסד הנתונים (בשניות)"
154
+
155
+ #: useronline-options.php:195
156
+ msgid "UserOnline URL"
157
+ msgstr "קישור לגולשים און ליין"
158
+
159
+ #: useronline-options.php:197
160
+ msgid "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"
161
+ msgstr "כתובת של העמוד גולשים און ליין באתר שלך (תשאיר ריק על מנת לקשר לעמוד וורדפרס גולשים און ליין)<br />דוגמא: http://www.yoursite.com/blogs/useronline/<br />דוגמא: http://www.yoursite.com/blogs/?page_id=2"
162
+
163
+ #: useronline-options.php:201
164
+ msgid "Bots Name/User Agent"
165
+ msgstr "שמות של סוכני בוטים"
166
+
167
+ #: useronline-options.php:203
168
+ msgid "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."
169
+ msgstr "הנה רשימה של בוטים וסוכן דפדפן חלקי <br /> ובטור השמאלי יופיע <strong>שם הבוט</strong> ובטור הימני יופיע<strong> סוכן דפדפן חלקי </strong>.<br />הכנס כל ערך בשורה נפרדת."
170
+
171
+ #: useronline-options.php:211
172
+ msgid "Naming Conventions:"
173
+ msgstr "ועידת שמות:"
174
+
175
+ #: useronline-options.php:212
176
+ #: useronline-options.php:253
177
+ #: useronline-options.php:265
178
+ #: useronline-options.php:297
179
+ msgid "Allowed Variables:"
180
+ msgstr "משתנים מותרים:"
181
+
182
+ #: useronline-options.php:214
183
+ #: useronline-options.php:258
184
+ #: useronline-options.php:273
185
+ #: useronline-options.php:305
186
+ msgid "Restore Default Template"
187
+ msgstr "שחזר תבנית ברירת מחדל"
188
+
189
+ #: useronline-options.php:220
190
+ msgid "Singular Form"
191
+ msgstr "טופס יחיד"
192
+
193
+ #: useronline-options.php:221
194
+ msgid "Plural Form"
195
+ msgstr "טופס רבים"
196
+
197
+ #: useronline-options.php:248
198
+ msgid "Useronline Templates"
199
+ msgstr "תבנית גולשים און ליין"
200
+
201
+ #: useronline-options.php:252
202
+ msgid "User(s) Online:"
203
+ msgstr "גולש(ים) און ליין:"
204
+
205
+ #: useronline-options.php:264
206
+ msgid "User(s) Browsing Site:"
207
+ msgstr "גולש(ים) צופים באתר און ליין:"
208
+
209
+ #: useronline-options.php:279
210
+ #: useronline-options.php:311
211
+ msgid "Member Names Separator"
212
+ msgstr "מפריד שמות חברים"
213
+
214
+ #: useronline-options.php:280
215
+ #: useronline-options.php:312
216
+ msgid "Guests Separator"
217
+ msgstr "מפריד אורחים"
218
+
219
+ #: useronline-options.php:281
220
+ #: useronline-options.php:313
221
+ msgid "Bots Separator"
222
+ msgstr "מפריד בוטים"
223
+
224
+ #: useronline-options.php:296
225
+ msgid "User(s) Browsing Page:"
226
+ msgstr "גולש(ים) צופים בעמוד זה:"
227
+
228
+ #: useronline-options.php:328
229
+ msgid "Save Changes"
230
+ msgstr "שמור שינויים"
231
+
232
+ #: useronline-options.php:339
233
+ msgid "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."
234
+ msgstr "הפסקת הפלאג אין גולשים און ליין אינה מסירה את המידע שיצרת, לדוגמא אפשרויות גולשים און ליין. על מנת להסיר לחלוטין את הפלאג אין, אתה יכול להסיר אותו כאן."
235
+
236
+ #: useronline-options.php:342
237
+ msgid "WARNING:"
238
+ msgstr "אזהרה:"
239
+
240
+ #: useronline-options.php:343
241
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
242
+ msgstr "ברגע שהסרת את ההתקנה, לא ניתן לחזור לאחור. עליך להשתמש בפלאג אין גיבוי של וורדפרס על מנת לגבות את המידע לפני"
243
+
244
+ #: useronline-options.php:346
245
+ msgid "The following WordPress Options/Tables will be DELETED:"
246
+ msgstr "האפשרויות והטבלאות הבאות של וורדפרס ימחקו:"
247
+
248
+ #: useronline-options.php:351
249
+ msgid "WordPress Options"
250
+ msgstr "אפשריות וורדפרס"
251
+
252
+ #: useronline-options.php:352
253
+ msgid "WordPress Tables"
254
+ msgstr "טבלאות וורדפרס"
255
+
256
+ #: useronline-options.php:378
257
+ #: wp-useronline-widget.php:73
258
+ msgid "Yes"
259
+ msgstr "כן"
260
+
261
+ #: useronline-options.php:379
262
+ msgid ""
263
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
264
+ "This Action Is Not Reversible.\\n"
265
+ "\\n"
266
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
267
+ msgstr ""
268
+ "אתה עומד להסיר את וורדפרס גולשים און ליין מוורדפרס. \\n"
269
+ "פעולה זו בלתי הפיכה.\\n"
270
+ "\\n"
271
+ " בחר [Cancel] להפסיק, [OK] להסיר."
272
+
273
+ #: wp-useronline-widget.php:62
274
+ msgid "UserOnline"
275
+ msgstr "UserOnline"
276
+
277
+ #: wp-useronline-widget.php:69
278
+ msgid "Widget Title"
279
+ msgstr "כותרת ה Widget "
280
+
281
+ #: wp-useronline-widget.php:70
282
+ msgid "Display Users Browsing Site Under Users Online Count?"
283
+ msgstr "להציג גולשים שצופים באתר תחת מונה גולשים און ליין?"
284
+
285
+ #: wp-useronline-widget.php:75
286
+ msgid "No"
287
+ msgstr "לא"
288
+
289
+ #: wp-useronline.php:77
290
+ #: wp-useronline.php:848
291
+ #: wp-useronline.php:850
292
+ #: wp-useronline.php:860
293
+ msgid "WP-UserOnline"
294
+ msgstr "WP-UserOnline"
295
+
296
+ #: wp-useronline.php:80
297
+ msgid "Useronline"
298
+ msgstr "WP-UserOnline"
299
+
300
+ #: wp-useronline.php:145
301
+ msgid "guest"
302
+ msgstr "אורח"
303
+
304
+ #: wp-useronline.php:151
305
+ #: wp-useronline.php:711
306
+ msgid "Guest"
307
+ msgstr "אורח"
308
+
309
+ #: wp-useronline.php:166
310
+ msgid "Blog Archive"
311
+ msgstr "ארכיון הבלוג"
312
+
313
+ #: wp-useronline.php:247
314
+ #: wp-useronline.php:278
315
+ #: wp-useronline.php:746
316
+ #: wp-useronline.php:748
317
+ #: wp-useronline.php:766
318
+ #: wp-useronline.php:768
319
+ #: wp-useronline.php:781
320
+ #, php-format
321
+ msgid "%s @ %s"
322
+ msgstr "%s @ %s"
323
+
324
+ #: wp-useronline.php:411
325
+ msgid "No User Is Browsing This Site"
326
+ msgstr "אין גולשים שצופים באתר הזה"
327
+
328
+ #: wp-useronline.php:549
329
+ msgid "No User Is Browsing This Page"
330
+ msgstr "אין גולשים שצופים בדף זה"
331
+
332
+ #: wp-useronline.php:613
333
+ msgid "Users Online Now"
334
+ msgstr "גולשים און ליין"
335
+
336
+ #: wp-useronline.php:625
337
+ #, php-format
338
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
339
+ msgstr "ישנם <strong><a href=\"%s\">%s גולשים</a></strong> און ליין."
340
+
341
+ #: wp-useronline.php:627
342
+ #, php-format
343
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
344
+ msgstr "סה\"כ <strong><a href=\"%s\">%s גולשים</a></strong> און ליין."
345
+
346
+ #: wp-useronline.php:632
347
+ #: wp-useronline.php:733
348
+ #, php-format
349
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
350
+ msgstr "הכי הרבה גולשים און ליין <strong>%s</strong>, ב <strong>%s</strong>"
351
+
352
+ #: wp-useronline.php:696
353
+ msgid "User"
354
+ msgstr "גולש"
355
+
356
+ #: wp-useronline.php:703
357
+ msgid "Member"
358
+ msgstr "חבר"
359
+
360
+ #: wp-useronline.php:705
361
+ msgid "Members"
362
+ msgstr "חברים"
363
+
364
+ #: wp-useronline.php:713
365
+ msgid "Guests"
366
+ msgstr "אורחים"
367
+
368
+ #: wp-useronline.php:718
369
+ msgid "Bot"
370
+ msgstr "בוט"
371
+
372
+ #: wp-useronline.php:720
373
+ msgid "Bots"
374
+ msgstr "בוטים"
375
+
376
+ #: wp-useronline.php:729
377
+ #, php-format
378
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
379
+ msgstr "כרגע באתר <strong>%s</strong> און ליין: <strong>%s</strong>, <strong>%s</strong> ו <strong>%s</strong>."
380
+
381
+ #: wp-useronline.php:731
382
+ #, php-format
383
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
384
+ msgstr "כרגע באתר יש סה''כ <strong>%s</strong> און ליין: <strong>%s</strong>, <strong>%s</strong> ו <strong>%s</strong>."
385
+
386
+ #: wp-useronline.php:736
387
+ #: wp-useronline.php:756
388
+ #: wp-useronline.php:776
389
+ msgid "Online Now"
390
+ msgstr "און ליין"
391
+
392
+ #: wp-useronline.php:743
393
+ #: wp-useronline.php:763
394
+ msgid "referral"
395
+ msgstr "מפנה"
396
+
397
+ #: wp-useronline.php:746
398
+ #: wp-useronline.php:748
399
+ #: wp-useronline.php:766
400
+ #: wp-useronline.php:768
401
+ #: wp-useronline.php:781
402
+ msgid "on"
403
+ msgstr "ב"
404
+
405
+ #: wp-useronline.php:746
406
+ #: wp-useronline.php:748
407
+ #: wp-useronline.php:766
408
+ #: wp-useronline.php:768
409
+ #: wp-useronline.php:781
410
+ msgid "url"
411
+ msgstr "כתובת"
412
+
413
+ #: wp-useronline.php:788
414
+ msgid "No One Is Online Now"
415
+ msgstr "אין גולשים באתר"
416
+
417
+ #: wp-useronline.php:862
418
+ msgid "user(s) online now."
419
+ msgstr "גולש(ים) און ליין"
420
+
421
+ #: wp-useronline.php:863
422
+ msgid "Most users ever online was"
423
+ msgstr "הכי הרבה גולשים און ליין"
424
+
425
+ #: wp-useronline.php:864
426
+ msgid "On"
427
+ msgstr "ב"
428
+
lang/wp-useronline-hu_HU.mo ADDED
Binary file
lang/wp-useronline-hu_HU.po ADDED
@@ -0,0 +1,443 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.60 HU\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-useronline\n"
5
+ "POT-Creation-Date: 2010-02-12 01:21+0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: FYGureout <webmester@sakraft.hu>\n"
8
+ "Language-Team: FYGureout <webmester@sakraft.hu>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=(n!=1);\n"
13
+ "X-Poedit-Language: Hungarian\n"
14
+ "X-Poedit-Country: HUNGARY\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+
17
+ #: admin.php:8
18
+ msgid "Users Online Now"
19
+ msgstr "Jelenlegi látogató"
20
+
21
+ #. #-#-#-#-# plugin.pot (WP-UserOnline 2.60rc) #-#-#-#-#
22
+ #. Plugin Name of an extension
23
+ #: admin.php:9
24
+ #: wp-stats.php:21
25
+ #: wp-stats.php:38
26
+ msgid "WP-UserOnline"
27
+ msgstr "WP-UserOnline"
28
+
29
+ #: admin.php:22
30
+ #, php-format
31
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
32
+ msgid_plural "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
33
+ msgstr[0] "Jelenleg <strong><a href=\"%s\">%s látogató</a></strong> online"
34
+ msgstr[1] "Jelenleg <strong><a href=\"%s\">%s látogató</a></strong> online"
35
+
36
+ #: admin.php:47
37
+ msgid "UserOnline Options"
38
+ msgstr "UserOnline lehetőségek"
39
+
40
+ #: admin.php:48
41
+ #: wp-useronline.php:518
42
+ #: wp-useronline.php:575
43
+ msgid "UserOnline"
44
+ msgstr "UserOnline"
45
+
46
+ #: admin.php:58
47
+ #: wp-useronline.php:73
48
+ msgid "Online"
49
+ msgstr "online"
50
+
51
+ #: admin.php:64
52
+ #: wp-useronline.php:63
53
+ msgid "1 User"
54
+ msgstr "1 látogató"
55
+
56
+ #: admin.php:65
57
+ #: wp-useronline.php:64
58
+ msgid "%USERONLINE_COUNT% Users"
59
+ msgstr "%USERONLINE_COUNT% látogató"
60
+
61
+ #: admin.php:66
62
+ #: wp-useronline.php:65
63
+ msgid "1 Member"
64
+ msgstr "1 tag"
65
+
66
+ #: admin.php:67
67
+ #: wp-useronline.php:66
68
+ msgid "%USERONLINE_COUNT% Members"
69
+ msgstr "%USERONLINE_COUNT% tag"
70
+
71
+ #: admin.php:68
72
+ #: wp-useronline.php:67
73
+ msgid "1 Guest"
74
+ msgstr "1 vendég"
75
+
76
+ #: admin.php:69
77
+ #: wp-useronline.php:68
78
+ msgid "%USERONLINE_COUNT% Guests"
79
+ msgstr "%USERONLINE_COUNT% vendég"
80
+
81
+ #: admin.php:70
82
+ #: wp-useronline.php:69
83
+ msgid "1 Bot"
84
+ msgstr "1 robot"
85
+
86
+ #: admin.php:71
87
+ #: wp-useronline.php:70
88
+ msgid "%USERONLINE_COUNT% Bots"
89
+ msgstr "%USERONLINE_COUNT% robot"
90
+
91
+ #: admin.php:74
92
+ #: admin.php:75
93
+ #: admin.php:76
94
+ #: admin.php:80
95
+ #: admin.php:81
96
+ #: admin.php:82
97
+ #: wp-useronline.php:76
98
+ #: wp-useronline.php:77
99
+ #: wp-useronline.php:78
100
+ #: wp-useronline.php:83
101
+ #: wp-useronline.php:84
102
+ #: wp-useronline.php:85
103
+ msgid ","
104
+ msgstr ", "
105
+
106
+ #: admin.php:77
107
+ #: admin.php:83
108
+ #: wp-useronline.php:79
109
+ #: wp-useronline.php:86
110
+ msgid "Users|Template Element"
111
+ msgstr "Felhasználó|Sablon elem"
112
+
113
+ #: admin.php:83
114
+ #: wp-useronline.php:86
115
+ msgid "Browsing This Page."
116
+ msgstr "böngészi ezt az oldalt"
117
+
118
+ #: admin.php:127
119
+ msgid "Settings updated."
120
+ msgstr "Beállítások frissítve"
121
+
122
+ #: admin.php:140
123
+ msgid "Time Out"
124
+ msgstr "Időtúllépés"
125
+
126
+ #: admin.php:142
127
+ msgid "How long till it will remove the user from the database (In seconds)."
128
+ msgstr "Mennyi idő múlva távolítja el a felhasználót az adatbázisból (másodpercben)"
129
+
130
+ #: admin.php:146
131
+ msgid "UserOnline URL"
132
+ msgstr "UserOnline URL"
133
+
134
+ #: admin.php:148
135
+ msgid "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"
136
+ msgstr "URL az UserOnline oldalhoz (üresen kell hagyni, ha nem akarjuk linkelni az UserOnline oldalhoz)<br />Például: http://www.teoldalad.hu/blogs/useronline/<br />Például: http://www.yoursite.com/blogs/?page_id=2"
137
+
138
+ #: admin.php:152
139
+ msgid "Bots Name/User Agent"
140
+ msgstr "Robot neve/Robotként bejelentkező"
141
+
142
+ #: admin.php:154
143
+ msgid "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."
144
+ msgstr "Itt egy lista a robotokról, és az ő részleges kereső ügynökeiről.<br />A bal oldali oszlopban a <strong>Robot neve</strong>, és a jobb oldaliban az ő <strong>Részleges kereső ügynöke</strong><br />Mindegyiket új sorban kell kezdeni."
145
+
146
+ #: admin.php:162
147
+ msgid "Naming Conventions:"
148
+ msgstr "Elnevezési szabályok:"
149
+
150
+ #: admin.php:163
151
+ #: admin.php:197
152
+ #: admin.php:222
153
+ msgid "Allowed Variables:"
154
+ msgstr "Engedélyezett variációk:"
155
+
156
+ #: admin.php:165
157
+ #: admin.php:202
158
+ #: admin.php:230
159
+ msgid "Restore Default Template"
160
+ msgstr "Alapsablon visszaállítása"
161
+
162
+ #: admin.php:171
163
+ msgid "Singular Form"
164
+ msgstr "Egyes számú forma"
165
+
166
+ #: admin.php:172
167
+ msgid "Plural Form"
168
+ msgstr "Többes számú forma"
169
+
170
+ #: admin.php:192
171
+ msgid "Useronline Templates"
172
+ msgstr "UserOnline sablon"
173
+
174
+ #: admin.php:196
175
+ msgid "User(s) Online:"
176
+ msgstr "Látogató(k) online:"
177
+
178
+ #: admin.php:206
179
+ msgid "User(s) Browsing Site:"
180
+ msgstr "Látogató böngészi a lapot:"
181
+
182
+ #: admin.php:207
183
+ msgid "User(s) Browsing Page:"
184
+ msgstr "Látogató böngészi az oldalt:"
185
+
186
+ #: admin.php:210
187
+ #: scb/AdminPage.php:119
188
+ #: scb/AdminPage.php:130
189
+ msgid "Save Changes"
190
+ msgstr "Változások mentése"
191
+
192
+ #: admin.php:236
193
+ msgid "Member Names Separator"
194
+ msgstr "Tagnév elválasztó"
195
+
196
+ #: admin.php:237
197
+ msgid "Guests Separator"
198
+ msgstr "Vendég elválasztó"
199
+
200
+ #: admin.php:238
201
+ msgid "Bots Separator"
202
+ msgstr "Robot elválasztó"
203
+
204
+ #: scb/AdminPage.php:108
205
+ msgid "Settings <strong>saved</strong>."
206
+ msgstr "A beállítások <strong>elmentve</strong>!"
207
+
208
+ #: scb/AdminPage.php:284
209
+ msgid "Settings"
210
+ msgstr "Beállítások"
211
+
212
+ #: wp-stats.php:31
213
+ #, php-format
214
+ msgid "<strong>%s</strong> user online now."
215
+ msgid_plural "<strong>%s</strong> users online now."
216
+ msgstr[0] "Jelenleg <strong>%s</strong> látogató online."
217
+ msgstr[1] "Jelenleg <strong>%s</strong> látogató online."
218
+
219
+ #: wp-useronline.php:151
220
+ msgid "guest"
221
+ msgstr "vendég"
222
+
223
+ #: wp-useronline.php:157
224
+ #: wp-useronline.php:349
225
+ msgid "Guest"
226
+ msgstr "Vendég"
227
+
228
+ #: wp-useronline.php:166
229
+ msgid "Admin"
230
+ msgstr "Admin"
231
+
232
+ #: wp-useronline.php:172
233
+ msgid "Archive"
234
+ msgstr "Archívum"
235
+
236
+ #: wp-useronline.php:347
237
+ msgid "User"
238
+ msgstr "látogató"
239
+
240
+ #: wp-useronline.php:347
241
+ msgid "Users"
242
+ msgstr "látogató"
243
+
244
+ #: wp-useronline.php:348
245
+ msgid "Member"
246
+ msgstr "tag"
247
+
248
+ #: wp-useronline.php:348
249
+ msgid "Members"
250
+ msgstr "tag"
251
+
252
+ #: wp-useronline.php:349
253
+ msgid "Guests"
254
+ msgstr "vendég"
255
+
256
+ #: wp-useronline.php:350
257
+ msgid "Bot"
258
+ msgstr "robot"
259
+
260
+ #: wp-useronline.php:350
261
+ msgid "Bots"
262
+ msgstr "robot"
263
+
264
+ #: wp-useronline.php:358
265
+ #, php-format
266
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
267
+ msgid_plural "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
268
+ msgstr[0] "Jelenleg <strong>%s</strong> látogató online: <strong>%s</strong>, <strong>%s</strong>, és <strong>%s</strong>."
269
+ msgstr[1] "Jelenleg <strong>%s</strong> látogató online: <strong>%s</strong>, <strong>%s</strong>, és <strong>%s</strong>"
270
+
271
+ #: wp-useronline.php:434
272
+ msgid "No One Is Online Now"
273
+ msgstr "Senki nincs most online"
274
+
275
+ #: wp-useronline.php:436
276
+ msgid "on"
277
+ msgstr " - "
278
+
279
+ #: wp-useronline.php:437
280
+ msgid "url"
281
+ msgstr "url"
282
+
283
+ #: wp-useronline.php:438
284
+ msgid "referral"
285
+ msgstr "azonosítva"
286
+
287
+ #: wp-useronline.php:449
288
+ msgid "Online Now"
289
+ msgstr "Jelenleg online"
290
+
291
+ #: wp-useronline.php:480
292
+ #, php-format
293
+ msgid "%s @ %s"
294
+ msgstr "%s - %s"
295
+
296
+ #: wp-useronline.php:499
297
+ #, php-format
298
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
299
+ msgstr "A legtöbb látógató egyidőben <strong>%s</strong> volt, <strong>%s</strong>. napján."
300
+
301
+ #: wp-useronline.php:517
302
+ msgid "WP-UserOnline users online statistics"
303
+ msgstr "WP-UserOnline látogató online statisztika"
304
+
305
+ #: wp-useronline.php:582
306
+ msgid "Title:"
307
+ msgstr "Cím"
308
+
309
+ #: wp-useronline.php:585
310
+ msgid "Statistics Type:"
311
+ msgstr "Statisztika típusa:"
312
+
313
+ #: wp-useronline.php:587
314
+ msgid "Users Online Count"
315
+ msgstr "Látogató online szám"
316
+
317
+ #: wp-useronline.php:588
318
+ msgid "Users Browsing Current Page"
319
+ msgstr "Látogató böngészi az aktuális oldalt"
320
+
321
+ #: wp-useronline.php:589
322
+ msgid "Users Browsing Site"
323
+ msgstr "Látogató böngészi a lapot"
324
+
325
+ #: wp-useronline.php:591
326
+ msgid "Users Online Count & Users Browsing Current Page"
327
+ msgstr "Látogató online & Látogató böngészi az aktuális oldalt"
328
+
329
+ #: wp-useronline.php:592
330
+ msgid "Users Online Count & Users Browsing Site"
331
+ msgstr "Látogató online szám & Látogató böngészi a lapot"
332
+
333
+ #. Plugin URI of an extension
334
+ msgid "http://lesterchan.net/portfolio/programming/php/"
335
+ msgstr "http://lesterchan.net/portfolio/programming/php/"
336
+
337
+ #. Description of an extension
338
+ msgid "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)."
339
+ msgstr "Megjeleníti a WordPress-alapú honlapon éppen jelenlévő látogatók számát, részletes statisztikával, hogy honnan érkeztek és kik ők (tagok / vendégek /keresőrobotok)."
340
+
341
+ #. Author of an extension
342
+ msgid "Lester 'GaMerZ' Chan"
343
+ msgstr "Lester 'GaMerZ' Chan"
344
+
345
+ #. Author URI of an extension
346
+ msgid "http://lesterchan.net"
347
+ msgstr "http://lesterchan.net"
348
+
349
+ #~ msgid "Useronline Timeout"
350
+ #~ msgstr "Useronline időtúllépés"
351
+ #~ msgid "Useronline Bots"
352
+ #~ msgstr "Useronline robotok"
353
+ #~ msgid "Useronline URL"
354
+ #~ msgstr "Useronline URL"
355
+ #~ msgid "Useronline Naming Conventions"
356
+ #~ msgstr "Useronline elnevezési szabályok"
357
+ #~ msgid "User(s) Online Template"
358
+ #~ msgstr "Felhasználó(k) online sablon"
359
+ #~ msgid "User(s) Browsing Site Template"
360
+ #~ msgstr "Felhasználó(k) keresőlap sablon"
361
+ #~ msgid "User(s) Browsing Page Template"
362
+ #~ msgstr "Felhasználó(k) keresőoldal sablon"
363
+ #~ msgid "Updated"
364
+ #~ msgstr "Frissítve"
365
+ #~ msgid "No Useronline Option Updated"
366
+ #~ msgstr "Nem történt frissítés"
367
+ #~ msgid "UNINSTALL WP-UserOnline"
368
+ #~ msgstr "WP-UseronLine ELTÁVOLÍTÁS"
369
+ #~ msgid "Table '%s' has been deleted."
370
+ #~ msgstr "A '%s' tábla törölve"
371
+ #~ msgid "Setting Key '%s' has been deleted."
372
+ #~ msgstr "A '%s' beállítási kulcs törölve"
373
+ #~ msgid "Error deleting Setting Key '%s'."
374
+ #~ msgstr "Hiba a '%s' beálítási kulcs törlésekor"
375
+ #~ msgid "Uninstall WP-UserOnline"
376
+ #~ msgstr "WP-UserOnline eltávolítása"
377
+ #~ msgid ""
378
+ #~ "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-"
379
+ #~ "UserOnline Will Be Deactivated Automatically."
380
+ #~ msgstr ""
381
+ #~ "<a href=\"%s\">Kattintás ide</a> az eltávolítás befejezéséhez, és a WP-"
382
+ #~ "UserOnline automatikusan kikapcsolódik."
383
+ #~ msgid ""
384
+ #~ "Deactivating WP-UserOnline plugin does not remove any data that may have "
385
+ #~ "been created, such as the useronline options. To completely remove this "
386
+ #~ "plugin, you can uninstall it here."
387
+ #~ msgstr ""
388
+ #~ "A WP-UserOnline plugin kikapcsolása nem távolítja el az összes "
389
+ #~ "létrehozott adatot, mint az UserOnline beállításokat. A plugin teljes "
390
+ #~ "eltávolítása itt történik."
391
+ #~ msgid "WARNING:"
392
+ #~ msgstr "FIGYELEM:"
393
+ #~ msgid ""
394
+ #~ "Once uninstalled, this cannot be undone. You should use a Database Backup "
395
+ #~ "plugin of WordPress to back up all the data first."
396
+ #~ msgstr ""
397
+ #~ "Az eltávolítás nem visszafordítható folyamat! Elöszőr a WordPress "
398
+ #~ "adatbázis-mentő pluginját kell használni!"
399
+ #~ msgid "The following WordPress Options/Tables will be DELETED:"
400
+ #~ msgstr "A következő WordPress opció/tábla kerül TÖRLÉSre:"
401
+ #~ msgid "WordPress Options"
402
+ #~ msgstr "WordPress opciók"
403
+ #~ msgid "WordPress Tables"
404
+ #~ msgstr "WordPress táblák"
405
+ #~ msgid "Yes"
406
+ #~ msgstr "Igen"
407
+ #~ msgid ""
408
+ #~ "You Are About To Uninstall WP-UserOnline From WordPress.\\nThis Action Is "
409
+ #~ "Not Reversible.\\n\\n Choose [Cancel] To Stop, [OK] To Uninstall."
410
+ #~ msgstr ""
411
+ #~ "Egészen biztos a WP-UserOnline eltávolítása a WordPressből?\\nA "
412
+ #~ "beavatkozás nem fordítható vissza!\\n\\nVálasztás: [Kiépés] a "
413
+ #~ "megálláshoz, [OK] az eltávolításhoz."
414
+ #~ msgid "No User Is Browsing This Site"
415
+ #~ msgstr "Nincs látogató az oldalon"
416
+ #~ msgid "No User Is Browsing This Page"
417
+ #~ msgstr "Nincs látogató az oldalon"
418
+ #~ msgid ""
419
+ #~ "There are a total of <strong><a href=\"%s\">%s users</a></strong> online "
420
+ #~ "now."
421
+ #~ msgstr ""
422
+ #~ "Jelenleg <strong><a href=\"%s\">%s látogató</a></strong> van online."
423
+ #~ msgid ""
424
+ #~ "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, "
425
+ #~ "<strong>%s</strong> and <strong>%s</strong>."
426
+ #~ msgstr ""
427
+ #~ "Jelenleg <strong>%s</strong> látogató online: <strong>%s</strong>, "
428
+ #~ "<strong>%s</strong>, és <strong>%s</strong>."
429
+ #~ msgid "On"
430
+ #~ msgstr " - "
431
+ #~ msgid "Widget Title"
432
+ #~ msgstr "Widget címsora"
433
+ #~ msgid "Display Users Browsing Site Under Users Online Count?"
434
+ #~ msgstr "Az oldalon böngésző felhasználok megjelenítése a számláló alatt?"
435
+ #~ msgid "No"
436
+ #~ msgstr "Nem"
437
+ #~ msgid "Useronline"
438
+ #~ msgstr "Useronline"
439
+ #~ msgid "user(s) online now."
440
+ #~ msgstr "felhasználó van most online"
441
+ #~ msgid "Most users ever online was"
442
+ #~ msgstr "A legtöbb felhasználó online volt"
443
+
lang/wp-useronline-it_IT.mo ADDED
Binary file
lang/wp-useronline-it_IT.po ADDED
@@ -0,0 +1,441 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.40\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-useronline\n"
5
+ "POT-Creation-Date: 2010-05-07 16:14+0300\n"
6
+ "PO-Revision-Date: 2010-05-07 15:34+0100\n"
7
+ "Last-Translator: Aldo Latino <aldolat@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Country: ITALY\n"
13
+ "X-Poedit-Language: Italian\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
17
+ "X-Poedit-SourceCharset: utf-8\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: admin.php:9
21
+ msgid "Users Online Now"
22
+ msgstr "Utente(i) in linea adesso"
23
+
24
+ #. #-#-#-#-# wp-useronline.pot (WP-UserOnline 2.70-beta) #-#-#-#-#
25
+ #. Plugin Name of the plugin/theme
26
+ #: admin.php:10
27
+ #: wp-stats.php:14
28
+ #: wp-stats.php:31
29
+ msgid "WP-UserOnline"
30
+ msgstr "WP-UserOnline"
31
+
32
+ #: admin.php:24
33
+ #, php-format
34
+ msgid "There is <strong><a href='%s'>%s user</a></strong> online now."
35
+ msgid_plural "There are a total of <strong><a href='%s'>%s users</a></strong> online now."
36
+ msgstr[0] "C'è <strong><a href='%s'>%s utente</a></strong> in linea adesso."
37
+ msgstr[1] "Ci sono <strong><a href='%s'>%s utenti</a></strong> in linea adesso."
38
+
39
+ #: admin.php:51
40
+ msgid "UserOnline Options"
41
+ msgstr "Opzioni Utenti in linea"
42
+
43
+ #: admin.php:52
44
+ #: widget.php:6
45
+ #: widget.php:49
46
+ msgid "UserOnline"
47
+ msgstr "Utenti in linea"
48
+
49
+ #: admin.php:107
50
+ msgid "Time Out"
51
+ msgstr "Scadenza"
52
+
53
+ #: admin.php:110
54
+ msgid "How long until it will remove the user from the database (In seconds)."
55
+ msgstr "Tempo necessario affinché l'utente venga rimosso dal database (in secondi)."
56
+
57
+ #: admin.php:115
58
+ msgid "UserOnline URL"
59
+ msgstr "URL Utenti in linea"
60
+
61
+ #: admin.php:118
62
+ msgid "URL To UserOnline Page<br />Example: http://www.yoursite.com/useronline/<br />Example: http://www.yoursite.com/?page_id=2"
63
+ msgstr "URL alla pagina Utenti in linea<br />Esempio: http://www.iltuosito.com/useronline/<br />Esempio: http://www.iltuosito.com/?page_id=2"
64
+
65
+ #: admin.php:122
66
+ msgid "User Names"
67
+ msgstr "Nomi utente"
68
+
69
+ #: admin.php:125
70
+ msgid "Link user names to their author page"
71
+ msgstr "Collega i nomi utente alla loro pagina autore"
72
+
73
+ #: admin.php:142
74
+ msgid "Useronline Templates"
75
+ msgstr "Modello Utenti in linea"
76
+
77
+ #: admin.php:154
78
+ msgid "User(s) Browsing Site:"
79
+ msgstr "Utente(i) che vedono il Sito:"
80
+
81
+ #: admin.php:155
82
+ msgid "User(s) Browsing Page:"
83
+ msgstr "Utente(i) che vedono la pagina"
84
+
85
+ #: admin.php:168
86
+ #: scb/AdminPage.php:179
87
+ #: scb/AdminPage.php:190
88
+ msgid "Save Changes"
89
+ msgstr "Salva le modifiche"
90
+
91
+ #: admin.php:178
92
+ msgid "Naming Conventions:"
93
+ msgstr "Convenzioni nei nomi:"
94
+
95
+ #: admin.php:179
96
+ #: admin.php:219
97
+ #: admin.php:241
98
+ msgid "Allowed Variables:"
99
+ msgstr "Variabili consentite:"
100
+
101
+ #: admin.php:181
102
+ msgid "Restore Defaults"
103
+ msgstr "Ripristina il modello predefinito"
104
+
105
+ #: admin.php:187
106
+ msgid "Singular Form"
107
+ msgstr "Forma singolare"
108
+
109
+ #: admin.php:188
110
+ msgid "Plural Form"
111
+ msgstr "Forma plurale"
112
+
113
+ #: admin.php:218
114
+ msgid "User(s) Online:"
115
+ msgstr "Utente(i) in linea"
116
+
117
+ #: admin.php:224
118
+ #: admin.php:249
119
+ msgid "Restore Default Template"
120
+ msgstr "Ripristina il modello predefinito"
121
+
122
+ #: admin.php:255
123
+ msgid "Member Names Separator"
124
+ msgstr "Separatore nomi dei Membri"
125
+
126
+ #: admin.php:256
127
+ msgid "Guests Separator"
128
+ msgstr "Separatore degli Ospiti"
129
+
130
+ #: admin.php:257
131
+ msgid "Bots Separator"
132
+ msgstr "Separatore dei Bots"
133
+
134
+ #: scb/AdminPage.php:166
135
+ msgid "Settings <strong>saved</strong>."
136
+ msgstr "Impostazioni <strong>salvate</strong>."
137
+
138
+ #: scb/AdminPage.php:376
139
+ msgid "Settings"
140
+ msgstr "Impostazioni"
141
+
142
+ #: template-tags.php:79
143
+ #, php-format
144
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
145
+ msgid_plural "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
146
+ msgstr[0] "C'è <strong>%s</strong> in linea adesso: <strong>%s</strong>, <strong>%s</strong> e <strong>%s</strong>."
147
+ msgstr[1] "Ci sono <strong>%s</strong> in linea adesso: <strong>%s</strong>, <strong>%s</strong> e <strong>%s</strong>."
148
+
149
+ #: template-tags.php:181
150
+ msgid "No one is online now."
151
+ msgstr "Nessuno è in linea adesso"
152
+
153
+ #: template-tags.php:183
154
+ msgid "on"
155
+ msgstr "il"
156
+
157
+ #: template-tags.php:184
158
+ msgid "url"
159
+ msgstr "url"
160
+
161
+ #: template-tags.php:185
162
+ msgid "referral"
163
+ msgstr "riferimento"
164
+
165
+ #: template-tags.php:196
166
+ msgid "Online Now"
167
+ msgstr "In linea adesso"
168
+
169
+ #: template-tags.php:227
170
+ #, php-format
171
+ msgid "%s @ %s"
172
+ msgstr "%s @ %s"
173
+
174
+ #: template-tags.php:247
175
+ #, php-format
176
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
177
+ msgstr "Il maggior numero di utenti in linea sono <strong>%s</strong>, il <strong>%s</strong>"
178
+
179
+ #: widget.php:5
180
+ msgid "WP-UserOnline users online statistics"
181
+ msgstr "Statistiche utenti in linea WP-UserOnline"
182
+
183
+ #: widget.php:56
184
+ msgid "Title:"
185
+ msgstr "Titolo:"
186
+
187
+ #: widget.php:59
188
+ msgid "Statistics Type:"
189
+ msgstr "Tipo statistiche:"
190
+
191
+ #: widget.php:61
192
+ msgid "Users Online Count"
193
+ msgstr "Numero utenti in linea"
194
+
195
+ #: widget.php:62
196
+ msgid "Users Browsing Current Page"
197
+ msgstr "Utenti navigando la pagina attuale"
198
+
199
+ #: widget.php:63
200
+ msgid "Users Browsing Site"
201
+ msgstr "Utenti visitando il sito"
202
+
203
+ #: widget.php:65
204
+ msgid "Users Online Count & Users Browsing Current Page"
205
+ msgstr "Numero utenti in linea & Utenti navigando la pagina attuale"
206
+
207
+ #: widget.php:66
208
+ msgid "Users Online Count & Users Browsing Site"
209
+ msgstr "Numero utenti in linea & Utenti visitando il sito"
210
+
211
+ #: wp-stats.php:24
212
+ #, php-format
213
+ msgid "<strong>%s</strong> user online now."
214
+ msgid_plural "<strong>%s</strong> users online now."
215
+ msgstr[0] "C'è <strong>%s</strong> utente in linea adesso."
216
+ msgstr[1] "Ci sono <strong>%s</strong> utenti in linea adesso."
217
+
218
+ #: wp-useronline.php:83
219
+ msgid "1 User"
220
+ msgstr "1 Utente"
221
+
222
+ #: wp-useronline.php:84
223
+ msgid "%COUNT% Users"
224
+ msgstr "%COUNT% utenti"
225
+
226
+ #: wp-useronline.php:85
227
+ msgid "1 Member"
228
+ msgstr "1 Membro"
229
+
230
+ #: wp-useronline.php:86
231
+ msgid "%COUNT% Members"
232
+ msgstr "%COUNT% membri"
233
+
234
+ #: wp-useronline.php:87
235
+ msgid "1 Guest"
236
+ msgstr "1 ospite"
237
+
238
+ #: wp-useronline.php:88
239
+ msgid "%COUNT% Guests"
240
+ msgstr "%COUNT% ospiti"
241
+
242
+ #: wp-useronline.php:89
243
+ msgid "1 Bot"
244
+ msgstr "1 Bot"
245
+
246
+ #: wp-useronline.php:90
247
+ msgid "%COUNT% Bots"
248
+ msgstr "%COUNT% bot"
249
+
250
+ #: wp-useronline.php:94
251
+ msgid "Online"
252
+ msgstr "In linea"
253
+
254
+ #: wp-useronline.php:98
255
+ #: wp-useronline.php:99
256
+ #: wp-useronline.php:100
257
+ #: wp-useronline.php:107
258
+ #: wp-useronline.php:108
259
+ #: wp-useronline.php:109
260
+ msgid ","
261
+ msgstr ","
262
+
263
+ #: wp-useronline.php:102
264
+ #: wp-useronline.php:111
265
+ msgctxt "Template Element"
266
+ msgid "Users"
267
+ msgstr "Utenti"
268
+
269
+ #: wp-useronline.php:111
270
+ msgid "Browsing This Page."
271
+ msgstr "Vedendo questa pagina."
272
+
273
+ #: wp-useronline.php:210
274
+ msgid "Guest"
275
+ msgstr "Ospite"
276
+
277
+ #: wp-useronline.php:217
278
+ msgid "Admin"
279
+ msgstr "Amministratore"
280
+
281
+ #: wp-useronline.php:223
282
+ msgid "Archive"
283
+ msgstr "Archivio"
284
+
285
+ #. Plugin URI of the plugin/theme
286
+ msgid "http://wordpress.org/extend/plugins/wp-useronline/"
287
+ msgstr "http://wordpress.org/extend/plugins/wp-useronline/"
288
+
289
+ #. Description of the plugin/theme
290
+ msgid "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)."
291
+ msgstr "Abilita la visualizzazione del numero di utenti in linea nel blog di Wordpress con statistiche dettagliate di dove si trovano e chi sono (Membri/Ospiti/Bot di ricerca)."
292
+
293
+ #. Author of the plugin/theme
294
+ msgid "Lester 'GaMerZ' Chan & scribu"
295
+ msgstr "Lester 'GaMerZ' Chan & scribu"
296
+
297
+ #~ msgid "Users|Template Element"
298
+ #~ msgstr "Utenti|Elemento del modello"
299
+ #~ msgid "Settings updated."
300
+ #~ msgstr "Impostazioni aggiornate."
301
+ #~ msgid "Bots Name/User Agent"
302
+ #~ msgstr "Nome dei Bots/User agent"
303
+ #~ msgid ""
304
+ #~ "Here are a list of bots and their partial browser agents.<br />On the "
305
+ #~ "left column will be the <strong>Bot's Name</strong> and on the right "
306
+ #~ "column will be their <strong>Partial Browser Agent</strong>.<br />Start "
307
+ #~ "each entry on a new line."
308
+ #~ msgstr ""
309
+ #~ "Qui c'è una lista di bots e dei loro browser agent.<br />Nella colonna di "
310
+ #~ "sinistra ci sarà il <strong>Nome del Bot</strong> ed nella colonna di "
311
+ #~ "destra ci sarà il suo <strong>Agente Browser</strong>.<br />Inizia ogni "
312
+ #~ "inserimento con una nuova riga."
313
+ #~ msgid "guest"
314
+ #~ msgstr "ospite"
315
+ #~ msgid "User"
316
+ #~ msgstr "Utente"
317
+ #~ msgid "Member"
318
+ #~ msgstr "Membro"
319
+ #~ msgid "Members"
320
+ #~ msgstr "Membri"
321
+ #~ msgid "Guests"
322
+ #~ msgstr "Ospiti"
323
+ #~ msgid "Bot"
324
+ #~ msgstr "Bot"
325
+ #~ msgid "Bots"
326
+ #~ msgstr "Bots"
327
+ #~ msgid "http://lesterchan.net"
328
+ #~ msgstr "http://lesterchan.net"
329
+ #~ msgid "Useronline Timeout"
330
+ #~ msgstr "Scadenza Utenti in linea"
331
+ #~ msgid "Useronline Bots"
332
+ #~ msgstr "Bots di Utenti in linea"
333
+ #~ msgid "Useronline URL"
334
+ #~ msgstr "URL di Utenti in linea"
335
+ #~ msgid "Useronline Naming Conventions"
336
+ #~ msgstr "Convenzioni dei nomi Utenti in linea"
337
+ #~ msgid "User(s) Online Template"
338
+ #~ msgstr "Modello utente(i) in linea"
339
+ #~ msgid "User(s) Browsing Site Template"
340
+ #~ msgstr "Modello utente(i) che vedono il sito"
341
+ #~ msgid "User(s) Browsing Page Template"
342
+ #~ msgstr "Modello utente(i) che vedono la pagina"
343
+ #~ msgid "Updated"
344
+ #~ msgstr "Aggiornato"
345
+ #~ msgid "No Useronline Option Updated"
346
+ #~ msgstr "Nessuna opzione Utenti in linea modificata"
347
+ #~ msgid "UNINSTALL WP-UserOnline"
348
+ #~ msgstr "DISINSTALLA WP-UserOnline"
349
+ #~ msgid "Table '%s' has been deleted."
350
+ #~ msgstr "La tabella '%s' è stata eliminata."
351
+ #~ msgid "Setting Key '%s' has been deleted."
352
+ #~ msgstr "Il tasto di impostazione '%s' è stato eliminato."
353
+ #~ msgid "Error deleting Setting Key '%s'."
354
+ #~ msgstr "Errore eliminazione tasto di impostazione '%s'."
355
+ #~ msgid "Uninstall WP-UserOnline"
356
+ #~ msgstr "Disinstalla WP-UserOnline"
357
+ #~ msgid ""
358
+ #~ "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-"
359
+ #~ "UserOnline Will Be Deactivated Automatically."
360
+ #~ msgstr ""
361
+ #~ "<a href=\"%s\">Fai click qui</a> per completare la disinstallazione e WP-"
362
+ #~ "UserOnline sarà disattivato automaticamente."
363
+ #~ msgid ""
364
+ #~ "Deactivating WP-UserOnline plugin does not remove any data that may have "
365
+ #~ "been created, such as the useronline options. To completely remove this "
366
+ #~ "plugin, you can uninstall it here."
367
+ #~ msgstr ""
368
+ #~ "La disattivazione di WP-UserOnline non rimuove alcun dato creato in "
369
+ #~ "precedenza, come le opzioni degli utenti in linea. Per rimuovere "
370
+ #~ "completamente questo plugin, lo si può disinstallare da qui."
371
+ #~ msgid "WARNING:"
372
+ #~ msgstr "ATTENZIONE:"
373
+ #~ msgid ""
374
+ #~ "Once uninstalled, this cannot be undone. You should use a Database Backup "
375
+ #~ "plugin of WordPress to back up all the data first."
376
+ #~ msgstr ""
377
+ #~ "Una volta disinstallato, questo è irreversibile. Dovresti utilizzare un "
378
+ #~ "plugin di Backup del Database di WordPress per salvare tutti i dati prima "
379
+ #~ "di procedere."
380
+ #~ msgid "The following WordPress Options/Tables will be DELETED:"
381
+ #~ msgstr "Le seguenti Opzioni/Tabelle di WordPress saranno ELIMINATE:"
382
+ #~ msgid "WordPress Options"
383
+ #~ msgstr "Opzioni di WordPress"
384
+ #~ msgid "WordPress Tables"
385
+ #~ msgstr "Tabelle di WordPress"
386
+ #~ msgid "Yes"
387
+ #~ msgstr "Sì"
388
+ #~ msgid ""
389
+ #~ "You Are About To Uninstall WP-UserOnline From WordPress.\\nThis Action Is "
390
+ #~ "Not Reversible.\\n\\n Choose [Cancel] To Stop, [OK] To Uninstall."
391
+ #~ msgstr ""
392
+ #~ "Si sta per disinstallare WP-UserOnline da WordPress.\\nQuesta azione è "
393
+ #~ "IRREVERSIBILE.\\n\\n Scegli [Annulla] per fermare l'operazione, [OK] per "
394
+ #~ "continuare."
395
+ #~ msgid "Widget Title"
396
+ #~ msgstr "Titolo del Widget"
397
+ #~ msgid "Display Users Browsing Site Under Users Online Count?"
398
+ #~ msgstr ""
399
+ #~ "Visualizzare gli utenti che stanno vedendo il sito nel contatore utenti "
400
+ #~ "in linea?"
401
+ #~ msgid "No"
402
+ #~ msgstr "No"
403
+ #~ msgid "Useronline"
404
+ #~ msgstr "Utenti in linea"
405
+ #~ msgid "No User Is Browsing This Site"
406
+ #~ msgstr "Nessun utente sta vedendo questo sito"
407
+ #~ msgid "No User Is Browsing This Page"
408
+ #~ msgstr "Nessun utente sta vedendo questa pagina"
409
+ #~ msgid ""
410
+ #~ "There are a total of <strong><a href=\"%s\">%s users</a></strong> online "
411
+ #~ "now."
412
+ #~ msgstr ""
413
+ #~ "Ci sono un totale di <strong><a href=\"%s\">%s utenti</a></strong> in "
414
+ #~ "linea adesso."
415
+ #~ msgid ""
416
+ #~ "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, "
417
+ #~ "<strong>%s</strong> and <strong>%s</strong>."
418
+ #~ msgstr ""
419
+ #~ "Ci sono un totale di <strong>%s</strong> in linea adesso: <strong>%s</"
420
+ #~ "strong>, <strong>%s</strong> e <strong>%s</strong>."
421
+ #~ msgid "On"
422
+ #~ msgstr "Il"
423
+ #~ msgid "user(s) online now."
424
+ #~ msgstr "utente(i) in linea adesso."
425
+ #~ msgid "Most users ever online was"
426
+ #~ msgstr "Il maggior numero di utenti in linea è stato"
427
+ #~ msgid "Update Options"
428
+ #~ msgstr "Aggiorna opzioni"
429
+ #~ msgid "Cancel"
430
+ #~ msgstr "Cancella"
431
+ #~ msgid "There is"
432
+ #~ msgstr "Ci sono"
433
+ #~ msgid "There are a total of"
434
+ #~ msgstr "Ci sono un totale di"
435
+ #~ msgid "online now"
436
+ #~ msgstr "In linea ora"
437
+ #~ msgid "and"
438
+ #~ msgstr "e"
439
+ #~ msgid "Most users ever online were"
440
+ #~ msgstr "Maggior numero di utenti online erano"
441
+
lang/wp-useronline-nl_NL.mo ADDED
Binary file
lang/wp-useronline-nl_NL.po ADDED
@@ -0,0 +1,432 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-12 01:10+0800\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Lester Chan <lesterchan@gmail.com>\n"
8
+ "Language-Team: Frans Davina <reg@frandre.net>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Dutch\n"
13
+ "X-Poedit-Country: NETHERLANDS\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: useronline-options.php:63
19
+ msgid "Useronline Timeout"
20
+ msgstr "Useronline Timeout"
21
+
22
+ #: useronline-options.php:64
23
+ msgid "Useronline Bots"
24
+ msgstr "Useronline Bots"
25
+
26
+ #: useronline-options.php:65
27
+ msgid "Useronline URL"
28
+ msgstr "Useronline URL"
29
+
30
+ #: useronline-options.php:66
31
+ msgid "Useronline Naming Conventions"
32
+ msgstr "Useronline Naamgeving Regels"
33
+
34
+ #: useronline-options.php:67
35
+ msgid "User(s) Online Template"
36
+ msgstr "Gebruiker(s) Online Template"
37
+
38
+ #: useronline-options.php:68
39
+ msgid "User(s) Browsing Site Template"
40
+ msgstr "Gebruiker(s) Bezoeken Site Template"
41
+
42
+ #: useronline-options.php:69
43
+ msgid "User(s) Browsing Page Template"
44
+ msgstr "Gebruiker(s) Bezoeken Pagina Template"
45
+
46
+ #: useronline-options.php:74
47
+ msgid "Updated"
48
+ msgstr "Bijgewerkt"
49
+
50
+ #: useronline-options.php:79
51
+ msgid "No Useronline Option Updated"
52
+ msgstr "Geen Useronline Optie Bijgewerkt"
53
+
54
+ #: useronline-options.php:85
55
+ #: useronline-options.php:380
56
+ msgid "UNINSTALL WP-UserOnline"
57
+ msgstr "DEÏNSTALLEER WP-Useronline"
58
+
59
+ #: useronline-options.php:92
60
+ #, php-format
61
+ msgid "Table '%s' has been deleted."
62
+ msgstr "Tabel '%s' is verwijderd."
63
+
64
+ #: useronline-options.php:101
65
+ #, php-format
66
+ msgid "Setting Key '%s' has been deleted."
67
+ msgstr "Instelling Sleutel '%s' is verwijderd."
68
+
69
+ #: useronline-options.php:105
70
+ #, php-format
71
+ msgid "Error deleting Setting Key '%s'."
72
+ msgstr "Fout bij verwijderen Instelling Sleutel '%s'."
73
+
74
+ #: useronline-options.php:127
75
+ #: useronline-options.php:338
76
+ msgid "Uninstall WP-UserOnline"
77
+ msgstr "Deïnstalleer WP-Useronline"
78
+
79
+ #: useronline-options.php:128
80
+ #, php-format
81
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
82
+ msgstr "<a href=\"%s\">Klik hier</a> Voor Het Deïnstalleren En Automatisch Deactiveren Van WP-Useronline."
83
+
84
+ #: useronline-options.php:153
85
+ #: wp-useronline.php:914
86
+ msgid "Online"
87
+ msgstr "Bezoeker"
88
+
89
+ #: useronline-options.php:160
90
+ #: wp-useronline.php:913
91
+ msgid "1 User"
92
+ msgstr ""
93
+
94
+ #: useronline-options.php:161
95
+ #: wp-useronline.php:913
96
+ msgid "%USERONLINE_COUNT% Users"
97
+ msgstr "%USERONLINE_COUNT% Bezoekers"
98
+
99
+ #: useronline-options.php:162
100
+ #: wp-useronline.php:913
101
+ msgid "1 Member"
102
+ msgstr "1 Lid"
103
+
104
+ #: useronline-options.php:163
105
+ #: wp-useronline.php:913
106
+ msgid "%USERONLINE_COUNT% Members"
107
+ msgstr "%USERONLINE_COUNT% Leden"
108
+
109
+ #: useronline-options.php:164
110
+ #: wp-useronline.php:913
111
+ msgid "1 Guest"
112
+ msgstr "1 Gast"
113
+
114
+ #: useronline-options.php:165
115
+ #: wp-useronline.php:913
116
+ msgid "%USERONLINE_COUNT% Guests"
117
+ msgstr "%USERONLINE_COUNT% Gasten"
118
+
119
+ #: useronline-options.php:166
120
+ #: wp-useronline.php:913
121
+ msgid "1 Bot"
122
+ msgstr "1 Bot"
123
+
124
+ #: useronline-options.php:167
125
+ #: wp-useronline.php:913
126
+ msgid "%USERONLINE_COUNT% Bots"
127
+ msgstr "%USERONLINE_COUNT% Bots"
128
+
129
+ #: useronline-options.php:170
130
+ #: useronline-options.php:171
131
+ #: useronline-options.php:172
132
+ #: useronline-options.php:176
133
+ #: useronline-options.php:177
134
+ #: useronline-options.php:178
135
+ #: wp-useronline.php:915
136
+ #: wp-useronline.php:916
137
+ msgid ","
138
+ msgstr ""
139
+
140
+ #: useronline-options.php:179
141
+ #: wp-useronline.php:916
142
+ msgid "Browsing This Page."
143
+ msgstr "Bezoeken Deze Pagina."
144
+
145
+ #: useronline-options.php:186
146
+ #: useronline-options.php:187
147
+ msgid "Useronline Options"
148
+ msgstr "Useronline Opties"
149
+
150
+ #: useronline-options.php:190
151
+ msgid "Time Out"
152
+ msgstr "Time Out"
153
+
154
+ #: useronline-options.php:192
155
+ msgid "How long till it will remove the user from the database (In seconds)."
156
+ msgstr "Hoe lang voordat de gebruiker uit de database wordt verwijderd (In Seconden)"
157
+
158
+ #: useronline-options.php:196
159
+ msgid "UserOnline URL"
160
+ msgstr "UserOnline URL"
161
+
162
+ #: useronline-options.php:198
163
+ msgid "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"
164
+ msgstr "URL Naar UserOnline Pagina (laat leeg als u niet naar de UserOnline Pagina wilt linken)<br />Voorbeeld: http://www.jouwsite.nl/blogs/useronline/<br />Voorbeeld: http://www.jouwsite.nl/blogs/?page_id=2"
165
+
166
+ #: useronline-options.php:202
167
+ msgid "Bots Name/User Agent"
168
+ msgstr "Bots Naam/User Agent"
169
+
170
+ #: useronline-options.php:204
171
+ msgid "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."
172
+ msgstr "Hier is een lijst met bots en hun gedeeltelijke browser agents.<br />In de linker kolom staat de <strong>Bots naam</strong> en in de rechter kolom de bijbehorende <strong> Gedeeltelijke Browser Agent</strong>.<br />Start iedere invoer op een nieuwe regel."
173
+
174
+ #: useronline-options.php:212
175
+ msgid "Naming Conventions:"
176
+ msgstr "Naamgeving Regels:"
177
+
178
+ #: useronline-options.php:213
179
+ #: useronline-options.php:254
180
+ #: useronline-options.php:266
181
+ #: useronline-options.php:298
182
+ msgid "Allowed Variables:"
183
+ msgstr "Toegestand Variabelen:"
184
+
185
+ #: useronline-options.php:215
186
+ #: useronline-options.php:259
187
+ #: useronline-options.php:274
188
+ #: useronline-options.php:306
189
+ msgid "Restore Default Template"
190
+ msgstr "Herstel Standaard Template"
191
+
192
+ #: useronline-options.php:221
193
+ msgid "Singular Form"
194
+ msgstr "Enkelvoudige vorm"
195
+
196
+ #: useronline-options.php:222
197
+ msgid "Plural Form"
198
+ msgstr "Meervoudige vorm"
199
+
200
+ #: useronline-options.php:249
201
+ msgid "Useronline Templates"
202
+ msgstr "Useronline Templates"
203
+
204
+ #: useronline-options.php:253
205
+ msgid "User(s) Online:"
206
+ msgstr "Bezoeker(s) Online:"
207
+
208
+ #: useronline-options.php:265
209
+ msgid "User(s) Browsing Site:"
210
+ msgstr "Bezoeker(s) Op De Site:"
211
+
212
+ #: useronline-options.php:280
213
+ #: useronline-options.php:312
214
+ msgid "Member Names Separator"
215
+ msgstr "Ledennaam Scheiden Met"
216
+
217
+ #: useronline-options.php:281
218
+ #: useronline-options.php:313
219
+ msgid "Guests Separator"
220
+ msgstr "Gasten Scheiden Met"
221
+
222
+ #: useronline-options.php:282
223
+ #: useronline-options.php:314
224
+ msgid "Bots Separator"
225
+ msgstr "Bots Scheiden Met"
226
+
227
+ #: useronline-options.php:297
228
+ msgid "User(s) Browsing Page:"
229
+ msgstr "Bezoeker(s) Op Deze Pagina:"
230
+
231
+ #: useronline-options.php:329
232
+ msgid "Save Changes"
233
+ msgstr "Wijzigingen Opslaan"
234
+
235
+ #: useronline-options.php:340
236
+ msgid "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."
237
+ msgstr "Deactiveren van WP-UserONline verwijdert niet de gegevens die zijn gecreeert, zoals de UserOnline opties. Het compleet verwijderen van de plugin, doe je door hier te de\"installeren."
238
+
239
+ #: useronline-options.php:343
240
+ msgid "WARNING:"
241
+ msgstr "WAARSCHUWING:"
242
+
243
+ #: useronline-options.php:344
244
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
245
+ msgstr "Dit kan niet ongedaan gemaakt worden na de deïnstallatie. Je moet een Database Backup plugin van Wordpress gebruiken om eerst alle gegevens op te slaan."
246
+
247
+ #: useronline-options.php:347
248
+ msgid "The following WordPress Options/Tables will be DELETED:"
249
+ msgstr "De volgende WordPress Opties/Tabellen zullen worden VERWIJDERD:"
250
+
251
+ #: useronline-options.php:352
252
+ msgid "WordPress Options"
253
+ msgstr "WordPress Opties:"
254
+
255
+ #: useronline-options.php:353
256
+ msgid "WordPress Tables"
257
+ msgstr "WordPress Tabellen"
258
+
259
+ #: useronline-options.php:379
260
+ #: wp-useronline-widget.php:73
261
+ msgid "Yes"
262
+ msgstr "Ja"
263
+
264
+ #: useronline-options.php:380
265
+ msgid ""
266
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
267
+ "This Action Is Not Reversible.\\n"
268
+ "\\n"
269
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
270
+ msgstr ""
271
+ "Je staat op het punt WP-UserOnline te deïnstalleren van WordPress.\\n"
272
+ "Deze actie kan niet ongedaan worden gemaakt.\\n"
273
+ "\\n"
274
+ "Kies [Annuleren] om te stoppen, [OK] om te Deïnstalleren."
275
+
276
+ #: wp-useronline-widget.php:62
277
+ msgid "UserOnline"
278
+ msgstr "UserOnline"
279
+
280
+ #: wp-useronline-widget.php:69
281
+ msgid "Widget Title"
282
+ msgstr "Widget Titel"
283
+
284
+ #: wp-useronline-widget.php:70
285
+ msgid "Display Users Browsing Site Under Users Online Count?"
286
+ msgstr "Weergeven Bezoekers Onder Bezoekers Online Aantal?"
287
+
288
+ #: wp-useronline-widget.php:75
289
+ msgid "No"
290
+ msgstr "Nee"
291
+
292
+ #: wp-useronline.php:58
293
+ #: wp-useronline.php:844
294
+ #: wp-useronline.php:846
295
+ #: wp-useronline.php:856
296
+ msgid "WP-UserOnline"
297
+ msgstr "WP-UserOnline"
298
+
299
+ #: wp-useronline.php:61
300
+ msgid "Useronline"
301
+ msgstr "Useronline"
302
+
303
+ #: wp-useronline.php:126
304
+ msgid "guest"
305
+ msgstr "gast"
306
+
307
+ #: wp-useronline.php:132
308
+ #: wp-useronline.php:707
309
+ msgid "Guest"
310
+ msgstr "Gast"
311
+
312
+ #: wp-useronline.php:147
313
+ msgid "Blog Archive"
314
+ msgstr "Blog Archief"
315
+
316
+ #: wp-useronline.php:228
317
+ #: wp-useronline.php:259
318
+ #: wp-useronline.php:742
319
+ #: wp-useronline.php:744
320
+ #: wp-useronline.php:762
321
+ #: wp-useronline.php:764
322
+ #: wp-useronline.php:777
323
+ #, php-format
324
+ msgid "%s @ %s"
325
+ msgstr "%s @ %s"
326
+
327
+ #: wp-useronline.php:396
328
+ msgid "No User Is Browsing This Site"
329
+ msgstr "Geen bezoeker is op de Site"
330
+
331
+ #: wp-useronline.php:538
332
+ msgid "No User Is Browsing This Page"
333
+ msgstr "Geen bezoeker is op deze Pagina"
334
+
335
+ #: wp-useronline.php:609
336
+ msgid "Users Online Now"
337
+ msgstr "Bezoekers Nu Online"
338
+
339
+ #: wp-useronline.php:621
340
+ #, php-format
341
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
342
+ msgstr "Er is nu<strong><a href=\"%s\">%s bezoeker</a></strong> online."
343
+
344
+ #: wp-useronline.php:623
345
+ #, php-format
346
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
347
+ msgstr "Er zijn nu totaal <strong><a href=\"%s\">%s bezoekers</a></strong> online."
348
+
349
+ #: wp-useronline.php:628
350
+ #: wp-useronline.php:729
351
+ #, php-format
352
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
353
+ msgstr "De meeste bezoekers waren <strong>%s</strong>, op <strong>%s</strong>"
354
+
355
+ #: wp-useronline.php:692
356
+ msgid "User"
357
+ msgstr "BEzoeker"
358
+
359
+ #: wp-useronline.php:694
360
+ msgid "Users"
361
+ msgstr "Gebruikers"
362
+
363
+ #: wp-useronline.php:699
364
+ msgid "Member"
365
+ msgstr "Lid"
366
+
367
+ #: wp-useronline.php:701
368
+ msgid "Members"
369
+ msgstr "Leden"
370
+
371
+ #: wp-useronline.php:709
372
+ msgid "Guests"
373
+ msgstr "Gasten"
374
+
375
+ #: wp-useronline.php:714
376
+ msgid "Bot"
377
+ msgstr "Bot"
378
+
379
+ #: wp-useronline.php:716
380
+ msgid "Bots"
381
+ msgstr "Bots"
382
+
383
+ #: wp-useronline.php:725
384
+ #, php-format
385
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
386
+ msgstr "Er is nu <strong>%s</strong> online: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
387
+
388
+ #: wp-useronline.php:727
389
+ #, php-format
390
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
391
+ msgstr "Er zijn nu <strong>%s</strong> online: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
392
+
393
+ #: wp-useronline.php:732
394
+ #: wp-useronline.php:752
395
+ #: wp-useronline.php:772
396
+ msgid "Online Now"
397
+ msgstr "Nu Online"
398
+
399
+ #: wp-useronline.php:739
400
+ #: wp-useronline.php:759
401
+ msgid "referral"
402
+ msgstr "verwijzer"
403
+
404
+ #: wp-useronline.php:742
405
+ #: wp-useronline.php:744
406
+ #: wp-useronline.php:762
407
+ #: wp-useronline.php:764
408
+ #: wp-useronline.php:777
409
+ msgid "on"
410
+ msgstr "op"
411
+
412
+ #: wp-useronline.php:742
413
+ #: wp-useronline.php:744
414
+ #: wp-useronline.php:762
415
+ #: wp-useronline.php:764
416
+ #: wp-useronline.php:777
417
+ msgid "url"
418
+ msgstr "url"
419
+
420
+ #: wp-useronline.php:784
421
+ msgid "No One Is Online Now"
422
+ msgstr "Er is nu Niemand online"
423
+
424
+ #: wp-useronline.php:860
425
+ msgid "On"
426
+ msgstr "Op"
427
+
428
+ #~ msgid "user(s) online now."
429
+ #~ msgstr "gebruiker(s) nu online."
430
+ #~ msgid "Most users ever online was"
431
+ #~ msgstr "Meeste gebruikers ooit online was"
432
+
lang/wp-useronline-pl_PL.mo ADDED
Binary file
lang/wp-useronline-pl_PL.po ADDED
@@ -0,0 +1,447 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-12 01:10+0800\n"
6
+ "PO-Revision-Date: 2008-12-12 01:10+0800\n"
7
+ "Last-Translator: Lester Chan <lesterchan@gmail.com>\n"
8
+ "Language-Team: Kane_F <kane_f@kanownia.pl>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Polish\n"
13
+ "X-Poedit-Country: POLAND\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: useronline-options.php:63
19
+ msgid "Useronline Timeout"
20
+ msgstr "Czas wygaśnięcia Useronline"
21
+
22
+ #: useronline-options.php:64
23
+ msgid "Useronline Bots"
24
+ msgstr "Boty Useronline"
25
+
26
+ #: useronline-options.php:65
27
+ msgid "Useronline URL"
28
+ msgstr "URL Useronline"
29
+
30
+ #: useronline-options.php:66
31
+ msgid "Useronline Naming Conventions"
32
+ msgstr "Schematy nazw Useronline"
33
+
34
+ #: useronline-options.php:67
35
+ msgid "User(s) Online Template"
36
+ msgstr "Szablon użytkowników online"
37
+
38
+ #: useronline-options.php:68
39
+ msgid "User(s) Browsing Site Template"
40
+ msgstr "Szablon użytkowników przeglądających witrynę"
41
+
42
+ #: useronline-options.php:69
43
+ msgid "User(s) Browsing Page Template"
44
+ msgstr "Szablon użytkowników przeglądających stronę"
45
+
46
+ #: useronline-options.php:74
47
+ msgid "Updated"
48
+ msgstr "Zaktualizowano"
49
+
50
+ #: useronline-options.php:79
51
+ msgid "No Useronline Option Updated"
52
+ msgstr "Nie zaktualizowany żadnych opcji Useronline"
53
+
54
+ #: useronline-options.php:85
55
+ #: useronline-options.php:380
56
+ msgid "UNINSTALL WP-UserOnline"
57
+ msgstr "ODINSTALUJ WP-UserOnline"
58
+
59
+ #: useronline-options.php:92
60
+ #, php-format
61
+ msgid "Table '%s' has been deleted."
62
+ msgstr "Tablica '%s' została usunięta."
63
+
64
+ #: useronline-options.php:101
65
+ #, php-format
66
+ msgid "Setting Key '%s' has been deleted."
67
+ msgstr "Klucz ustawień '%s' został usunięty."
68
+
69
+ #: useronline-options.php:105
70
+ #, php-format
71
+ msgid "Error deleting Setting Key '%s'."
72
+ msgstr "Błąd przy usuwaniu klucza ustawień '%s'."
73
+
74
+ #: useronline-options.php:127
75
+ #: useronline-options.php:338
76
+ msgid "Uninstall WP-UserOnline"
77
+ msgstr "Odinstaluj WP-UserOnline"
78
+
79
+ #: useronline-options.php:128
80
+ #, php-format
81
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
82
+ msgstr "<a href=\"%s\">Kliknij tu</a> by ukończyć deinstalację. WP-UserOnline zostanie wyłączony automatycznie."
83
+
84
+ #: useronline-options.php:153
85
+ #: wp-useronline.php:914
86
+ msgid "Online"
87
+ msgstr ""
88
+
89
+ #: useronline-options.php:160
90
+ #: wp-useronline.php:913
91
+ msgid "1 User"
92
+ msgstr "1 użytkownik"
93
+
94
+ #: useronline-options.php:161
95
+ #: wp-useronline.php:913
96
+ msgid "%USERONLINE_COUNT% Users"
97
+ msgstr "%USERONLINE_COUNT% użytkowników"
98
+
99
+ #: useronline-options.php:162
100
+ #: wp-useronline.php:913
101
+ msgid "1 Member"
102
+ msgstr "1 zarejestrowany"
103
+
104
+ #: useronline-options.php:163
105
+ #: wp-useronline.php:913
106
+ msgid "%USERONLINE_COUNT% Members"
107
+ msgstr "%USERONLINE_COUNT% zarejestrowanych"
108
+
109
+ #: useronline-options.php:164
110
+ #: wp-useronline.php:913
111
+ msgid "1 Guest"
112
+ msgstr "1 gość"
113
+
114
+ #: useronline-options.php:165
115
+ #: wp-useronline.php:913
116
+ msgid "%USERONLINE_COUNT% Guests"
117
+ msgstr "%USERONLINE_COUNT% gości"
118
+
119
+ #: useronline-options.php:166
120
+ #: wp-useronline.php:913
121
+ msgid "1 Bot"
122
+ msgstr "1 bot"
123
+
124
+ #: useronline-options.php:167
125
+ #: wp-useronline.php:913
126
+ msgid "%USERONLINE_COUNT% Bots"
127
+ msgstr "%USERONLINE_COUNT% boty"
128
+
129
+ #: useronline-options.php:170
130
+ #: useronline-options.php:171
131
+ #: useronline-options.php:172
132
+ #: useronline-options.php:176
133
+ #: useronline-options.php:177
134
+ #: useronline-options.php:178
135
+ #: wp-useronline.php:915
136
+ #: wp-useronline.php:916
137
+ msgid ","
138
+ msgstr ""
139
+
140
+ #: useronline-options.php:179
141
+ #: wp-useronline.php:916
142
+ msgid "Browsing This Page."
143
+ msgstr "Przeglądający tą stronę."
144
+
145
+ #: useronline-options.php:186
146
+ #: useronline-options.php:187
147
+ msgid "Useronline Options"
148
+ msgstr "Opcje Useronline"
149
+
150
+ #: useronline-options.php:190
151
+ msgid "Time Out"
152
+ msgstr "Czas wygaśnięcia"
153
+
154
+ #: useronline-options.php:192
155
+ msgid "How long till it will remove the user from the database (In seconds)."
156
+ msgstr "Czas do usunięcia użytkownika z bazy danych (w sekundach)."
157
+
158
+ #: useronline-options.php:196
159
+ msgid "UserOnline URL"
160
+ msgstr "URL UserOnline"
161
+
162
+ #: useronline-options.php:198
163
+ msgid "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"
164
+ msgstr "URL do strony UserOnline (pozostaw puste jeśli nie chcesz linkować do strony UserOnline)<br />Przykład: http://www.twojastrona.com/blog/useronline/<br />Przykład: http://www.twojastrona.com/blog/?page_id=2"
165
+
166
+ #: useronline-options.php:202
167
+ msgid "Bots Name/User Agent"
168
+ msgstr "Nazwa bota/User Agent"
169
+
170
+ #: useronline-options.php:204
171
+ msgid "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."
172
+ msgstr "Tu znajdują się listy botów oraz ich częściowych identyfikatorów przeglądarek.<br />W lewej kolumnie będzie <strong>nazwa bota</strong>, natomiast w prawej kolumnie będzie ich <strong>częściowy identyfikator przeglądarki</strong>.<br />Rozpoczynaj każdy wpis w nowej linii."
173
+
174
+ #: useronline-options.php:212
175
+ msgid "Naming Conventions:"
176
+ msgstr "Schematy nazw:"
177
+
178
+ #: useronline-options.php:213
179
+ #: useronline-options.php:254
180
+ #: useronline-options.php:266
181
+ #: useronline-options.php:298
182
+ msgid "Allowed Variables:"
183
+ msgstr "Dopuszczalne zmienne:"
184
+
185
+ #: useronline-options.php:215
186
+ #: useronline-options.php:259
187
+ #: useronline-options.php:274
188
+ #: useronline-options.php:306
189
+ msgid "Restore Default Template"
190
+ msgstr "Przywróć domyślny szablon"
191
+
192
+ #: useronline-options.php:221
193
+ msgid "Singular Form"
194
+ msgstr "Liczba pojedyncza"
195
+
196
+ #: useronline-options.php:222
197
+ msgid "Plural Form"
198
+ msgstr "Liczba mnoga"
199
+
200
+ #: useronline-options.php:249
201
+ msgid "Useronline Templates"
202
+ msgstr "Schematy Useronline"
203
+
204
+ #: useronline-options.php:253
205
+ msgid "User(s) Online:"
206
+ msgstr "Użytkownicy online:"
207
+
208
+ #: useronline-options.php:265
209
+ msgid "User(s) Browsing Site:"
210
+ msgstr "Użytkownicy przeglądający witrynę:"
211
+
212
+ #: useronline-options.php:280
213
+ #: useronline-options.php:312
214
+ msgid "Member Names Separator"
215
+ msgstr "Separator nazw członków"
216
+
217
+ #: useronline-options.php:281
218
+ #: useronline-options.php:313
219
+ msgid "Guests Separator"
220
+ msgstr "Separator gości"
221
+
222
+ #: useronline-options.php:282
223
+ #: useronline-options.php:314
224
+ msgid "Bots Separator"
225
+ msgstr "Separator botów"
226
+
227
+ #: useronline-options.php:297
228
+ msgid "User(s) Browsing Page:"
229
+ msgstr "Uźytkownicy przeglądający stronę:"
230
+
231
+ #: useronline-options.php:329
232
+ msgid "Save Changes"
233
+ msgstr ""
234
+
235
+ #: useronline-options.php:340
236
+ msgid "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."
237
+ msgstr "Wyłączenie wtyczki WP-UserOnline nie usuwa żadnych danych które mogły zostać utworzone, takich jak opcje useronline. By całkowicie usunąć wtyczkę, możesz ją odinstalować tutaj."
238
+
239
+ #: useronline-options.php:343
240
+ msgid "WARNING:"
241
+ msgstr "UWAGA:"
242
+
243
+ #: useronline-options.php:344
244
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
245
+ msgstr "Deinstalacji nie da się cofnąć. Zalece się wpierw użycie wtyczki Database Backup dla WordPress, celem utworzenia kopii bezpieczeństwa danych."
246
+
247
+ #: useronline-options.php:347
248
+ msgid "The following WordPress Options/Tables will be DELETED:"
249
+ msgstr "Następujące opcje/tablice WordPress zostaną USUNIĘTE:"
250
+
251
+ #: useronline-options.php:352
252
+ msgid "WordPress Options"
253
+ msgstr "Opcje WordPress"
254
+
255
+ #: useronline-options.php:353
256
+ msgid "WordPress Tables"
257
+ msgstr "Tablice WordPress"
258
+
259
+ #: useronline-options.php:379
260
+ #: wp-useronline-widget.php:73
261
+ msgid "Yes"
262
+ msgstr "Tak"
263
+
264
+ #: useronline-options.php:380
265
+ msgid ""
266
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
267
+ "This Action Is Not Reversible.\\n"
268
+ "\\n"
269
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
270
+ msgstr ""
271
+ "Zamierzasz odinstalować WP-UserOnline z WordPress.\\n"
272
+ "Ta akcja jest nieodwracalna.\\n"
273
+ "\\n"
274
+ " Wybierz [Anuluj] by zatrzymać, lub [OK] by odinstalować."
275
+
276
+ #: wp-useronline-widget.php:62
277
+ msgid "UserOnline"
278
+ msgstr "UserOnline"
279
+
280
+ #: wp-useronline-widget.php:69
281
+ msgid "Widget Title"
282
+ msgstr "Tytuł Widget'a"
283
+
284
+ #: wp-useronline-widget.php:70
285
+ msgid "Display Users Browsing Site Under Users Online Count?"
286
+ msgstr "Wyświetlać zarejestrowanych użytkowników przeglądających stronę, w liczniku Użytkowników Online?"
287
+
288
+ #: wp-useronline-widget.php:75
289
+ msgid "No"
290
+ msgstr "Nie"
291
+
292
+ #: wp-useronline.php:58
293
+ #: wp-useronline.php:844
294
+ #: wp-useronline.php:846
295
+ #: wp-useronline.php:856
296
+ msgid "WP-UserOnline"
297
+ msgstr "WP-UserOnline"
298
+
299
+ #: wp-useronline.php:61
300
+ msgid "Useronline"
301
+ msgstr "Useronline"
302
+
303
+ #: wp-useronline.php:126
304
+ msgid "guest"
305
+ msgstr "gość"
306
+
307
+ #: wp-useronline.php:132
308
+ #: wp-useronline.php:707
309
+ msgid "Guest"
310
+ msgstr "Gość"
311
+
312
+ #: wp-useronline.php:147
313
+ msgid "Blog Archive"
314
+ msgstr "Archiwum bloga"
315
+
316
+ #: wp-useronline.php:228
317
+ #: wp-useronline.php:259
318
+ #: wp-useronline.php:742
319
+ #: wp-useronline.php:744
320
+ #: wp-useronline.php:762
321
+ #: wp-useronline.php:764
322
+ #: wp-useronline.php:777
323
+ #, php-format
324
+ msgid "%s @ %s"
325
+ msgstr "%s @ %s"
326
+
327
+ #: wp-useronline.php:396
328
+ msgid "No User Is Browsing This Site"
329
+ msgstr "Brak użytkowników przeglądających tą witrynę"
330
+
331
+ #: wp-useronline.php:538
332
+ msgid "No User Is Browsing This Page"
333
+ msgstr "Brak użytkowników przeglądających tą stronę"
334
+
335
+ #: wp-useronline.php:609
336
+ #, fuzzy
337
+ msgid "Users Online Now"
338
+ msgstr "Użytkownicy online:"
339
+
340
+ #: wp-useronline.php:621
341
+ #, php-format
342
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
343
+ msgstr ""
344
+
345
+ #: wp-useronline.php:623
346
+ #, php-format
347
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
348
+ msgstr ""
349
+
350
+ #: wp-useronline.php:628
351
+ #: wp-useronline.php:729
352
+ #, php-format
353
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
354
+ msgstr ""
355
+
356
+ #: wp-useronline.php:692
357
+ msgid "User"
358
+ msgstr "Użytkownik"
359
+
360
+ #: wp-useronline.php:694
361
+ msgid "Users"
362
+ msgstr "Użytkownicy"
363
+
364
+ #: wp-useronline.php:699
365
+ msgid "Member"
366
+ msgstr "Członek"
367
+
368
+ #: wp-useronline.php:701
369
+ msgid "Members"
370
+ msgstr "Członków"
371
+
372
+ #: wp-useronline.php:709
373
+ msgid "Guests"
374
+ msgstr "Gości"
375
+
376
+ #: wp-useronline.php:714
377
+ msgid "Bot"
378
+ msgstr "Bot"
379
+
380
+ #: wp-useronline.php:716
381
+ msgid "Bots"
382
+ msgstr "Boty"
383
+
384
+ #: wp-useronline.php:725
385
+ #, php-format
386
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
387
+ msgstr ""
388
+
389
+ #: wp-useronline.php:727
390
+ #, php-format
391
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
392
+ msgstr ""
393
+
394
+ #: wp-useronline.php:732
395
+ #: wp-useronline.php:752
396
+ #: wp-useronline.php:772
397
+ msgid "Online Now"
398
+ msgstr "aktualnie online"
399
+
400
+ #: wp-useronline.php:739
401
+ #: wp-useronline.php:759
402
+ msgid "referral"
403
+ msgstr "polecający"
404
+
405
+ #: wp-useronline.php:742
406
+ #: wp-useronline.php:744
407
+ #: wp-useronline.php:762
408
+ #: wp-useronline.php:764
409
+ #: wp-useronline.php:777
410
+ msgid "on"
411
+ msgstr "dnia"
412
+
413
+ #: wp-useronline.php:742
414
+ #: wp-useronline.php:744
415
+ #: wp-useronline.php:762
416
+ #: wp-useronline.php:764
417
+ #: wp-useronline.php:777
418
+ msgid "url"
419
+ msgstr "url"
420
+
421
+ #: wp-useronline.php:784
422
+ msgid "No One Is Online Now"
423
+ msgstr "Brak użytkowników online w tej chwili"
424
+
425
+ #: wp-useronline.php:860
426
+ msgid "On"
427
+ msgstr "dnia"
428
+
429
+ #~ msgid "user(s) online now."
430
+ #~ msgstr "użytkownik(ów) online teraz."
431
+ #~ msgid "Most users ever online was"
432
+ #~ msgstr "Najwięcej użytkowników było online"
433
+ #~ msgid "Update Options"
434
+ #~ msgstr "Aktualizuj opcje"
435
+ #~ msgid "Cancel"
436
+ #~ msgstr "Anuluj"
437
+ #~ msgid "There is"
438
+ #~ msgstr "Jest"
439
+ #~ msgid "There are a total of"
440
+ #~ msgstr "Łącznie są"
441
+ #~ msgid "online now"
442
+ #~ msgstr "aktualnie online"
443
+ #~ msgid "and"
444
+ #~ msgstr "i"
445
+ #~ msgid "Most users ever online were"
446
+ #~ msgstr "Najwięcej użytkowników było online"
447
+
lang/wp-useronline-pt_BR.mo ADDED
Binary file
lang/wp-useronline-pt_BR.po ADDED
@@ -0,0 +1,492 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.50\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-11 23:49+0800\n"
6
+ "PO-Revision-Date: 2009-08-17 02:03-0300\n"
7
+ "Last-Translator: Alexandre R. Janini <alexandre@asterisko.com.br>\n"
8
+ "Language-Team: Alexandre Janini <alexandre@asterisko.com.br>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Country: BRAZIL\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Language: Portuguese\n"
16
+ "Plural-Forms: nplurals=2; plural=(n > 1)\n"
17
+ "X-Poedit-SourceCharset: utf-8\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: useronline-options.php:63
21
+ msgid "Useronline Timeout"
22
+ msgstr "Tempo limite do UserOnline"
23
+
24
+ #: useronline-options.php:64
25
+ msgid "Useronline Bots"
26
+ msgstr "Robôs do UserOnline"
27
+
28
+ #: useronline-options.php:65
29
+ msgid "Useronline URL"
30
+ msgstr "Endereço do UserOnline"
31
+
32
+ #: useronline-options.php:66
33
+ msgid "Useronline Naming Conventions"
34
+ msgstr "Convenções de Nomenclatura do UserOnline"
35
+
36
+ #: useronline-options.php:67
37
+ msgid "User(s) Online Template"
38
+ msgstr "Modelo de Usuário(s) Online"
39
+
40
+ #: useronline-options.php:68
41
+ msgid "User(s) Browsing Site Template"
42
+ msgstr "Modelo de Usuário(s) Navegando Neste Site"
43
+
44
+ #: useronline-options.php:69
45
+ msgid "User(s) Browsing Page Template"
46
+ msgstr "Modelo de Usuário(s) Navegando Nesta Página"
47
+
48
+ #: useronline-options.php:74
49
+ msgid "Updated"
50
+ msgstr "Atualizado"
51
+
52
+ #: useronline-options.php:79
53
+ msgid "No Useronline Option Updated"
54
+ msgstr "Nenhuma opção do UserOnline atualizada"
55
+
56
+ #: useronline-options.php:85
57
+ #: useronline-options.php:380
58
+ msgid "UNINSTALL WP-UserOnline"
59
+ msgstr "DESINSTALAR WP-UserOnline"
60
+
61
+ #: useronline-options.php:92
62
+ #, php-format
63
+ msgid "Table '%s' has been deleted."
64
+ msgstr "Tabela '%s' foi apagada."
65
+
66
+ #: useronline-options.php:101
67
+ #, php-format
68
+ msgid "Setting Key '%s' has been deleted."
69
+ msgstr "Chave '%s' foi apagada."
70
+
71
+ #: useronline-options.php:105
72
+ #, php-format
73
+ msgid "Error deleting Setting Key '%s'."
74
+ msgstr "Erro ao apagar chave '%s'."
75
+
76
+ #: useronline-options.php:127
77
+ #: useronline-options.php:338
78
+ msgid "Uninstall WP-UserOnline"
79
+ msgstr "Desinstalar WP-UserOnline"
80
+
81
+ #: useronline-options.php:128
82
+ #, php-format
83
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
84
+ msgstr "<a href=\"%s\">Clique aqui</a> para finalizar a desinstalação e o WP-UserOnline será desativado automaticamente."
85
+
86
+ #: useronline-options.php:153
87
+ #: wp-useronline.php:1013
88
+ msgid "Online"
89
+ msgstr "Online"
90
+
91
+ #: useronline-options.php:160
92
+ #: wp-useronline.php:1012
93
+ msgid "1 User"
94
+ msgstr "1 usuário"
95
+
96
+ #: useronline-options.php:161
97
+ #: wp-useronline.php:1012
98
+ msgid "%USERONLINE_COUNT% Users"
99
+ msgstr "%USERONLINE_COUNT% usuários"
100
+
101
+ #: useronline-options.php:162
102
+ #: wp-useronline.php:1012
103
+ msgid "1 Member"
104
+ msgstr "1 membro"
105
+
106
+ #: useronline-options.php:163
107
+ #: wp-useronline.php:1012
108
+ msgid "%USERONLINE_COUNT% Members"
109
+ msgstr "%USERONLINE_COUNT% mebros"
110
+
111
+ #: useronline-options.php:164
112
+ #: wp-useronline.php:1012
113
+ msgid "1 Guest"
114
+ msgstr "1 convidado"
115
+
116
+ #: useronline-options.php:165
117
+ #: wp-useronline.php:1012
118
+ msgid "%USERONLINE_COUNT% Guests"
119
+ msgstr "%USERONLINE_COUNT% convidados"
120
+
121
+ #: useronline-options.php:166
122
+ #: wp-useronline.php:1012
123
+ msgid "1 Bot"
124
+ msgstr "1 robô"
125
+
126
+ #: useronline-options.php:167
127
+ #: wp-useronline.php:1012
128
+ msgid "%USERONLINE_COUNT% Bots"
129
+ msgstr "%USERONLINE_COUNT% robôs"
130
+
131
+ #: useronline-options.php:170
132
+ #: useronline-options.php:171
133
+ #: useronline-options.php:172
134
+ #: useronline-options.php:176
135
+ #: useronline-options.php:177
136
+ #: useronline-options.php:178
137
+ #: wp-useronline.php:1014
138
+ #: wp-useronline.php:1015
139
+ msgid ","
140
+ msgstr ","
141
+
142
+ #: useronline-options.php:173
143
+ #: useronline-options.php:179
144
+ #: wp-useronline.php:1014
145
+ #: wp-useronline.php:1015
146
+ msgid "Users|Template Element"
147
+ msgstr "Usuários|Elemento do Modelo"
148
+
149
+ #: useronline-options.php:179
150
+ #: wp-useronline.php:1015
151
+ msgid "Browsing This Page."
152
+ msgstr "navegando nesta página."
153
+
154
+ #: useronline-options.php:186
155
+ #: useronline-options.php:187
156
+ msgid "Useronline Options"
157
+ msgstr "Opções do UserOnline"
158
+
159
+ #: useronline-options.php:190
160
+ msgid "Time Out"
161
+ msgstr "Tempo Limite"
162
+
163
+ #: useronline-options.php:192
164
+ msgid "How long till it will remove the user from the database (In seconds)."
165
+ msgstr "Quanto tempo até remover usuário do banco de dados (em segundos)."
166
+
167
+ #: useronline-options.php:196
168
+ msgid "UserOnline URL"
169
+ msgstr "Endereço do UserOnline"
170
+
171
+ #: useronline-options.php:198
172
+ msgid "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"
173
+ msgstr "Endereço para a página do UserOnline (deixe em branco se não quiser vincular à Página do UserOnline)<br />Exemplo: http://www.seusite.com.br/blogs/useronline/<br />Exemplo: http://www.seusite.com.br/blogs/?page_id=2"
174
+
175
+ #: useronline-options.php:202
176
+ msgid "Bots Name/User Agent"
177
+ msgstr "Nome do Robô/Agente do Usuário"
178
+
179
+ #: useronline-options.php:204
180
+ msgid "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."
181
+ msgstr "Aqui está uma lista de robôs e seus agentes do navegadores parciais<br />Na coluna da esquerda estará o <strong>Nome do Robô</strong> e na coluna da direita estará o seu respectivo <strong>Agentes do Navegador Parcial</strong>.<br />Comece cada entrada em uma nova linha."
182
+
183
+ #: useronline-options.php:212
184
+ msgid "Naming Conventions:"
185
+ msgstr "Convenção de Nomenclatura:"
186
+
187
+ #: useronline-options.php:213
188
+ #: useronline-options.php:254
189
+ #: useronline-options.php:266
190
+ #: useronline-options.php:298
191
+ msgid "Allowed Variables:"
192
+ msgstr "Variáveis Permitidas:"
193
+
194
+ #: useronline-options.php:215
195
+ #: useronline-options.php:259
196
+ #: useronline-options.php:274
197
+ #: useronline-options.php:306
198
+ msgid "Restore Default Template"
199
+ msgstr "Restaurar Modelo Padrão:"
200
+
201
+ #: useronline-options.php:221
202
+ msgid "Singular Form"
203
+ msgstr "Forma Singular"
204
+
205
+ #: useronline-options.php:222
206
+ msgid "Plural Form"
207
+ msgstr "Forma Plural"
208
+
209
+ #: useronline-options.php:249
210
+ msgid "Useronline Templates"
211
+ msgstr "Modelos do UserOnline"
212
+
213
+ #: useronline-options.php:253
214
+ msgid "User(s) Online:"
215
+ msgstr "Usuário(s) Online:"
216
+
217
+ #: useronline-options.php:265
218
+ msgid "User(s) Browsing Site:"
219
+ msgstr "Usuário(s) Navegando no Site:"
220
+
221
+ #: useronline-options.php:280
222
+ #: useronline-options.php:312
223
+ msgid "Member Names Separator"
224
+ msgstr "Separador de Nomes dos Membros"
225
+
226
+ #: useronline-options.php:281
227
+ #: useronline-options.php:313
228
+ msgid "Guests Separator"
229
+ msgstr "Separador dos Convidados"
230
+
231
+ #: useronline-options.php:282
232
+ #: useronline-options.php:314
233
+ msgid "Bots Separator"
234
+ msgstr "Separador dos Robôs"
235
+
236
+ #: useronline-options.php:297
237
+ msgid "User(s) Browsing Page:"
238
+ msgstr "Usuário(s) Navegando na Página:"
239
+
240
+ #: useronline-options.php:329
241
+ msgid "Save Changes"
242
+ msgstr "Salvar Alterações"
243
+
244
+ #: useronline-options.php:340
245
+ msgid "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."
246
+ msgstr "Desativando o plugin WP-UserOnline não remove nenhum dado que possa ter sido criado, como configurações de opções. Para remover completamente este plugin, você pode desinstalá-lo aqui."
247
+
248
+ #: useronline-options.php:343
249
+ msgid "WARNING:"
250
+ msgstr "CUIDADO:"
251
+
252
+ #: useronline-options.php:344
253
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
254
+ msgstr "Uma vez desinstalado, não é possível desfazer. Você deve utilizar um plugin de Backup do Banco de Dados do WordPress para guardar uma cópia dos dados antes."
255
+
256
+ #: useronline-options.php:347
257
+ msgid "The following WordPress Options/Tables will be DELETED:"
258
+ msgstr "As seguintes opções/tabelas do WordPress serão APAGADAS:"
259
+
260
+ #: useronline-options.php:352
261
+ msgid "WordPress Options"
262
+ msgstr "Opções do WordPress"
263
+
264
+ #: useronline-options.php:353
265
+ msgid "WordPress Tables"
266
+ msgstr "Tabelas do WordPress"
267
+
268
+ #: useronline-options.php:379
269
+ msgid "Yes"
270
+ msgstr "Sim"
271
+
272
+ #: useronline-options.php:380
273
+ msgid ""
274
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
275
+ "This Action Is Not Reversible.\\n"
276
+ "\\n"
277
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
278
+ msgstr ""
279
+ "Você está prestes à desinstalar o WP-UserOnline do WordPress.\\n"
280
+ "Esta ação não é reversível.\\n"
281
+ "\\n"
282
+ "Escolha [Cancelar] para parar, [OK] para desinstalar."
283
+
284
+ #: wp-useronline.php:58
285
+ #: wp-useronline.php:846
286
+ #: wp-useronline.php:848
287
+ #: wp-useronline.php:858
288
+ msgid "WP-UserOnline"
289
+ msgstr "WP-UserOnline"
290
+
291
+ #: wp-useronline.php:61
292
+ #: wp-useronline.php:873
293
+ #: wp-useronline.php:934
294
+ msgid "UserOnline"
295
+ msgstr "UserOnline"
296
+
297
+ #: wp-useronline.php:128
298
+ msgid "guest"
299
+ msgstr "convidado"
300
+
301
+ #: wp-useronline.php:134
302
+ #: wp-useronline.php:709
303
+ msgid "Guest"
304
+ msgstr "Convidado"
305
+
306
+ #: wp-useronline.php:149
307
+ msgid "Blog Archive"
308
+ msgstr "Arquivo do Site"
309
+
310
+ #: wp-useronline.php:230
311
+ #: wp-useronline.php:261
312
+ #: wp-useronline.php:744
313
+ #: wp-useronline.php:746
314
+ #: wp-useronline.php:764
315
+ #: wp-useronline.php:766
316
+ #: wp-useronline.php:779
317
+ #, php-format
318
+ msgid "%s @ %s"
319
+ msgstr "%s @ %s"
320
+
321
+ #: wp-useronline.php:398
322
+ msgid "No User Is Browsing This Site"
323
+ msgstr "Nenhum usuário está navegando neste site"
324
+
325
+ #: wp-useronline.php:540
326
+ msgid "No User Is Browsing This Page"
327
+ msgstr "Nenhum usuário navegando nesta página"
328
+
329
+ #: wp-useronline.php:611
330
+ msgid "Users Online Now"
331
+ msgstr "Usuários Online Agora"
332
+
333
+ #: wp-useronline.php:623
334
+ #, php-format
335
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
336
+ msgstr "Não há <strong><a href=\"%s\">%s usuário</a></strong> online agora."
337
+
338
+ #: wp-useronline.php:625
339
+ #, php-format
340
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
341
+ msgstr "Há um total de <strong><a href=\"%s\">%s usuários</a></strong> online agora."
342
+
343
+ #: wp-useronline.php:630
344
+ #: wp-useronline.php:731
345
+ #, php-format
346
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
347
+ msgstr "Maior número de usuários online foi <strong>%s</strong>, em <strong>%s</strong>"
348
+
349
+ #: wp-useronline.php:694
350
+ msgid "User"
351
+ msgstr "Usuário"
352
+
353
+ #: wp-useronline.php:696
354
+ msgid "Users"
355
+ msgstr "Usuários"
356
+
357
+ #: wp-useronline.php:701
358
+ msgid "Member"
359
+ msgstr "Membro"
360
+
361
+ #: wp-useronline.php:703
362
+ msgid "Members"
363
+ msgstr "Membros"
364
+
365
+ #: wp-useronline.php:711
366
+ msgid "Guests"
367
+ msgstr "Convidados"
368
+
369
+ #: wp-useronline.php:716
370
+ msgid "Bot"
371
+ msgstr "Robô"
372
+
373
+ #: wp-useronline.php:718
374
+ msgid "Bots"
375
+ msgstr "Robôs"
376
+
377
+ #: wp-useronline.php:727
378
+ #, php-format
379
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
380
+ msgstr "Há <strong>%s</strong> online agora: <strong>%s</strong>, <strong>%s</strong> e <strong>%s</strong>."
381
+
382
+ #: wp-useronline.php:729
383
+ #, php-format
384
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
385
+ msgstr "Há um total de <strong>%s</strong> online agora: <strong>%s</strong>, <strong>%s</strong> e <strong>%s</strong>."
386
+
387
+ #: wp-useronline.php:734
388
+ #: wp-useronline.php:754
389
+ #: wp-useronline.php:774
390
+ msgid "Online Now"
391
+ msgstr "Online Agora"
392
+
393
+ #: wp-useronline.php:741
394
+ #: wp-useronline.php:761
395
+ msgid "referral"
396
+ msgstr "origem"
397
+
398
+ #: wp-useronline.php:744
399
+ #: wp-useronline.php:746
400
+ #: wp-useronline.php:764
401
+ #: wp-useronline.php:766
402
+ #: wp-useronline.php:779
403
+ msgid "on"
404
+ msgstr "em"
405
+
406
+ #: wp-useronline.php:744
407
+ #: wp-useronline.php:746
408
+ #: wp-useronline.php:764
409
+ #: wp-useronline.php:766
410
+ #: wp-useronline.php:779
411
+ msgid "url"
412
+ msgstr "endereço"
413
+
414
+ #: wp-useronline.php:786
415
+ msgid "No One Is Online Now"
416
+ msgstr "Ninguém Está Online Agora"
417
+
418
+ #: wp-useronline.php:860
419
+ #, php-format
420
+ msgid "<strong>%s</strong> user online now."
421
+ msgid_plural "<strong>%s</strong> users online now."
422
+ msgstr[0] "<strong>%s</strong> usuário online agora."
423
+ msgstr[1] "<strong>%s</strong> usuários online agora."
424
+
425
+ #: wp-useronline.php:861
426
+ #, php-format
427
+ msgid "Most users ever online was <strong>%s</strong>."
428
+ msgid_plural "Most users ever online was <strong>%s</strong>."
429
+ msgstr[0] "Maior número de usuários online foi <strong>%s</strong>."
430
+ msgstr[1] "Maior número de usuários online foi <strong>%s</strong>."
431
+
432
+ #: wp-useronline.php:862
433
+ msgid "On"
434
+ msgstr "Em"
435
+
436
+ #: wp-useronline.php:872
437
+ msgid "WP-UserOnline users online statistics"
438
+ msgstr "Estatísticas de usuários online do WP-UserOnline"
439
+
440
+ #: wp-useronline.php:939
441
+ msgid "Title:"
442
+ msgstr "Título:"
443
+
444
+ #: wp-useronline.php:942
445
+ msgid "Statistics Type:"
446
+ msgstr "Típo de Estatísticas:"
447
+
448
+ #: wp-useronline.php:944
449
+ msgid "Users Online Count"
450
+ msgstr "Contagem de Usuários Online"
451
+
452
+ #: wp-useronline.php:945
453
+ msgid "Users Browsing Current Page"
454
+ msgstr "Usuários Navegando na Página Atual"
455
+
456
+ #: wp-useronline.php:946
457
+ msgid "Users Browsing Site"
458
+ msgstr "Usuários Navegando no Site"
459
+
460
+ #: wp-useronline.php:948
461
+ msgid "Users Online Count & Users Browsing Current Page"
462
+ msgstr "Contagem de Usuários Online e Usuários Navegando a Página Atual"
463
+
464
+ #: wp-useronline.php:949
465
+ msgid "Users Online Count & Users Browsing Site"
466
+ msgstr "Contagem de Usuários Online e Usuários Navegando o Site"
467
+
468
+ #~ msgid "Update Options"
469
+ #~ msgstr "Atualizar Opções"
470
+ #~ msgid "Cancel"
471
+ #~ msgstr "Cancelar"
472
+ #~ msgid "Widget Title"
473
+ #~ msgstr "Título da Widget"
474
+ #~ msgid "Display Users Browsing Site Under Users Online Count?"
475
+ #~ msgstr "Exibir Usuários Navegando o Site sob Contagem de Usuários Online?"
476
+ #~ msgid "No"
477
+ #~ msgstr "Não"
478
+ #~ msgid "Useronline"
479
+ #~ msgstr "UserOnline"
480
+ #~ msgid "There is"
481
+ #~ msgstr "Há"
482
+ #~ msgid "There are a total of"
483
+ #~ msgstr "Há um total de"
484
+ #~ msgid "online now"
485
+ #~ msgstr "online agora"
486
+ #~ msgid "and"
487
+ #~ msgstr "e"
488
+ #~ msgid "Most users ever online were"
489
+ #~ msgstr "Maior número de usuários online"
490
+ #~ msgid "user(s) online now."
491
+ #~ msgstr "usuário(s) online agora."
492
+
lang/wp-useronline-pt_PT.mo ADDED
Binary file
lang/wp-useronline-pt_PT.po ADDED
@@ -0,0 +1,433 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-12 01:10+0800\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Lester Chan <lesterchan@gmail.com>\n"
8
+ "Language-Team: BlogTuga <geral@blogtuga.org>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Portuguese\n"
13
+ "X-Poedit-Country: PORTUGAL\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: useronline-options.php:63
20
+ msgid "Useronline Timeout"
21
+ msgstr "Timeout usuário online"
22
+
23
+ #: useronline-options.php:64
24
+ msgid "Useronline Bots"
25
+ msgstr "Bost online"
26
+
27
+ #: useronline-options.php:65
28
+ msgid "Useronline URL"
29
+ msgstr "URL usuário online"
30
+
31
+ #: useronline-options.php:66
32
+ msgid "Useronline Naming Conventions"
33
+ msgstr "Nome das convenções do usuário online"
34
+
35
+ #: useronline-options.php:67
36
+ msgid "User(s) Online Template"
37
+ msgstr "Template Usuário(s) online"
38
+
39
+ #: useronline-options.php:68
40
+ msgid "User(s) Browsing Site Template"
41
+ msgstr "Template dos usuários(s) a navegar no website "
42
+
43
+ #: useronline-options.php:69
44
+ msgid "User(s) Browsing Page Template"
45
+ msgstr "Template dos usuários(s) a navegar na página "
46
+
47
+ #: useronline-options.php:74
48
+ msgid "Updated"
49
+ msgstr "Actualizado"
50
+
51
+ #: useronline-options.php:79
52
+ msgid "No Useronline Option Updated"
53
+ msgstr "Sem opções para actualizar"
54
+
55
+ #: useronline-options.php:85
56
+ #: useronline-options.php:380
57
+ msgid "UNINSTALL WP-UserOnline"
58
+ msgstr "Desinstalar o plugin WP-UserOnline"
59
+
60
+ #: useronline-options.php:92
61
+ #, php-format
62
+ msgid "Table '%s' has been deleted."
63
+ msgstr "Tabela '%s' foi apagado."
64
+
65
+ #: useronline-options.php:101
66
+ #, php-format
67
+ msgid "Setting Key '%s' has been deleted."
68
+ msgstr "Chave das definições '%s' foi apagada."
69
+
70
+ #: useronline-options.php:105
71
+ #, php-format
72
+ msgid "Error deleting Setting Key '%s'."
73
+ msgstr "Erro a apagar chave de definições '%s'."
74
+
75
+ #: useronline-options.php:127
76
+ #: useronline-options.php:338
77
+ msgid "Uninstall WP-UserOnline"
78
+ msgstr "Desinstalar o plugin WP-UserOnline"
79
+
80
+ #: useronline-options.php:128
81
+ #, php-format
82
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
83
+ msgstr "<a href=\"%s\">Clique aqui</a> para finalizar a desinstalação e o plugin ser desactivado."
84
+
85
+ #: useronline-options.php:153
86
+ #: wp-useronline.php:914
87
+ msgid "Online"
88
+ msgstr "Online"
89
+
90
+ #: useronline-options.php:160
91
+ #: wp-useronline.php:913
92
+ msgid "1 User"
93
+ msgstr "1 Usuário"
94
+
95
+ #: useronline-options.php:161
96
+ #: wp-useronline.php:913
97
+ msgid "%USERONLINE_COUNT% Users"
98
+ msgstr "%USERONLINE_COUNT% Usuários"
99
+
100
+ #: useronline-options.php:162
101
+ #: wp-useronline.php:913
102
+ msgid "1 Member"
103
+ msgstr "1 Membro"
104
+
105
+ #: useronline-options.php:163
106
+ #: wp-useronline.php:913
107
+ msgid "%USERONLINE_COUNT% Members"
108
+ msgstr "%USERONLINE_COUNT% Membros"
109
+
110
+ #: useronline-options.php:164
111
+ #: wp-useronline.php:913
112
+ msgid "1 Guest"
113
+ msgstr "1 Visitante"
114
+
115
+ #: useronline-options.php:165
116
+ #: wp-useronline.php:913
117
+ msgid "%USERONLINE_COUNT% Guests"
118
+ msgstr "%USERONLINE_COUNT% Visitantes"
119
+
120
+ #: useronline-options.php:166
121
+ #: wp-useronline.php:913
122
+ msgid "1 Bot"
123
+ msgstr "1 Bot"
124
+
125
+ #: useronline-options.php:167
126
+ #: wp-useronline.php:913
127
+ msgid "%USERONLINE_COUNT% Bots"
128
+ msgstr "%USERONLINE_COUNT% Bots"
129
+
130
+ #: useronline-options.php:170
131
+ #: useronline-options.php:171
132
+ #: useronline-options.php:172
133
+ #: useronline-options.php:176
134
+ #: useronline-options.php:177
135
+ #: useronline-options.php:178
136
+ #: wp-useronline.php:915
137
+ #: wp-useronline.php:916
138
+ msgid ","
139
+ msgstr ""
140
+
141
+ #: useronline-options.php:179
142
+ #: wp-useronline.php:916
143
+ msgid "Browsing This Page."
144
+ msgstr "A navegar nesta página."
145
+
146
+ #: useronline-options.php:186
147
+ #: useronline-options.php:187
148
+ msgid "Useronline Options"
149
+ msgstr "Opções do Plugin "
150
+
151
+ #: useronline-options.php:190
152
+ msgid "Time Out"
153
+ msgstr "Time Out"
154
+
155
+ #: useronline-options.php:192
156
+ msgid "How long till it will remove the user from the database (In seconds)."
157
+ msgstr "Quanto tempo até se retirar o utilizador da base de dados (segundos)."
158
+
159
+ #: useronline-options.php:196
160
+ msgid "UserOnline URL"
161
+ msgstr "URL dos Usuários Online"
162
+
163
+ #: useronline-options.php:198
164
+ msgid "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"
165
+ msgstr "URL da página dos usuários online (deixe em branco se não quiser ter esta página)<br />Exemplo: http://www.oseusite.com/blogs/useronline/<br />Exemplo: http://www.oseusite.com/blogs/?page_id=2"
166
+
167
+ #: useronline-options.php:202
168
+ msgid "Bots Name/User Agent"
169
+ msgstr "Nome dos bots/Agente do usuário"
170
+
171
+ #: useronline-options.php:204
172
+ msgid "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."
173
+ msgstr "Aqui tem uma lista dos bots e dos agentes parciais do browser.<br />Na coluna da esquerda estão os <strong>Nome dos bots</strong> e na coluna da direita estão os seus<strong>Agentes parciais do drowser</strong>.<br />Inicie cada entrada num novo ficheiro."
174
+
175
+ #: useronline-options.php:212
176
+ msgid "Naming Conventions:"
177
+ msgstr "Nome da convenção:"
178
+
179
+ #: useronline-options.php:213
180
+ #: useronline-options.php:254
181
+ #: useronline-options.php:266
182
+ #: useronline-options.php:298
183
+ msgid "Allowed Variables:"
184
+ msgstr "Variáveis permitidas:"
185
+
186
+ #: useronline-options.php:215
187
+ #: useronline-options.php:259
188
+ #: useronline-options.php:274
189
+ #: useronline-options.php:306
190
+ msgid "Restore Default Template"
191
+ msgstr "Restaurar Template por defeito"
192
+
193
+ #: useronline-options.php:221
194
+ msgid "Singular Form"
195
+ msgstr "Formulário singular"
196
+
197
+ #: useronline-options.php:222
198
+ msgid "Plural Form"
199
+ msgstr "Formulário plural"
200
+
201
+ #: useronline-options.php:249
202
+ msgid "Useronline Templates"
203
+ msgstr "Templates dos usuários online"
204
+
205
+ #: useronline-options.php:253
206
+ msgid "User(s) Online:"
207
+ msgstr "Usuário(s) Online:"
208
+
209
+ #: useronline-options.php:265
210
+ msgid "User(s) Browsing Site:"
211
+ msgstr "Usuário(s) a navegar o website:"
212
+
213
+ #: useronline-options.php:280
214
+ #: useronline-options.php:312
215
+ msgid "Member Names Separator"
216
+ msgstr "Separador do nome dos membros"
217
+
218
+ #: useronline-options.php:281
219
+ #: useronline-options.php:313
220
+ msgid "Guests Separator"
221
+ msgstr "Separador dos visitantes"
222
+
223
+ #: useronline-options.php:282
224
+ #: useronline-options.php:314
225
+ msgid "Bots Separator"
226
+ msgstr "Separador dos bots"
227
+
228
+ #: useronline-options.php:297
229
+ msgid "User(s) Browsing Page:"
230
+ msgstr "Usuário(s) a navegar está página:"
231
+
232
+ #: useronline-options.php:329
233
+ msgid "Save Changes"
234
+ msgstr "Guardar alterações"
235
+
236
+ #: useronline-options.php:340
237
+ msgid "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."
238
+ msgstr "Ao desactivar o plugin WP-UserOnline, não serão removidas quaisquer base de dados, assim como as opções dos usuários online. Para completar a remoção deste plugin, pode desinstala-lo aqui."
239
+
240
+ #: useronline-options.php:343
241
+ msgid "WARNING:"
242
+ msgstr "AVISO:"
243
+
244
+ #: useronline-options.php:344
245
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
246
+ msgstr "Uma vez desinstalado, isto não pode ser refeito. Pode usar um Backup da Base de Dados do seu Wordpress."
247
+
248
+ #: useronline-options.php:347
249
+ msgid "The following WordPress Options/Tables will be DELETED:"
250
+ msgstr "As seguintes Opções/Tabelas Wordpress serão APAGADAS:"
251
+
252
+ #: useronline-options.php:352
253
+ msgid "WordPress Options"
254
+ msgstr "Opções Wordpress"
255
+
256
+ #: useronline-options.php:353
257
+ msgid "WordPress Tables"
258
+ msgstr "Tabelas Wordpress"
259
+
260
+ #: useronline-options.php:379
261
+ #: wp-useronline-widget.php:73
262
+ msgid "Yes"
263
+ msgstr "Sim"
264
+
265
+ #: useronline-options.php:380
266
+ msgid ""
267
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
268
+ "This Action Is Not Reversible.\\n"
269
+ "\\n"
270
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
271
+ msgstr ""
272
+ "Está prestes a desinstalar o plugin WP-UserOnline do seu Wordpress.\\n"
273
+ "Está acção não é reversível.\\n"
274
+ "\\n"
275
+ "Escolha [Cancelar] para Parar, [Ok] para continuar."
276
+
277
+ #: wp-useronline-widget.php:62
278
+ msgid "UserOnline"
279
+ msgstr "Usuários Online"
280
+
281
+ #: wp-useronline-widget.php:69
282
+ msgid "Widget Title"
283
+ msgstr "Título do Widget"
284
+
285
+ #: wp-useronline-widget.php:70
286
+ msgid "Display Users Browsing Site Under Users Online Count?"
287
+ msgstr "Mostrar usuários a navegar no website por debaixo da contagem dos usuários online?"
288
+
289
+ #: wp-useronline-widget.php:75
290
+ msgid "No"
291
+ msgstr "Não"
292
+
293
+ #: wp-useronline.php:58
294
+ #: wp-useronline.php:844
295
+ #: wp-useronline.php:846
296
+ #: wp-useronline.php:856
297
+ msgid "WP-UserOnline"
298
+ msgstr "WP-UserOnline"
299
+
300
+ #: wp-useronline.php:61
301
+ msgid "Useronline"
302
+ msgstr "Usuários Online"
303
+
304
+ #: wp-useronline.php:126
305
+ msgid "guest"
306
+ msgstr "visitante"
307
+
308
+ #: wp-useronline.php:132
309
+ #: wp-useronline.php:707
310
+ msgid "Guest"
311
+ msgstr "Visitante"
312
+
313
+ #: wp-useronline.php:147
314
+ msgid "Blog Archive"
315
+ msgstr "Arquivo do blog"
316
+
317
+ #: wp-useronline.php:228
318
+ #: wp-useronline.php:259
319
+ #: wp-useronline.php:742
320
+ #: wp-useronline.php:744
321
+ #: wp-useronline.php:762
322
+ #: wp-useronline.php:764
323
+ #: wp-useronline.php:777
324
+ #, php-format
325
+ msgid "%s @ %s"
326
+ msgstr "%s @ %s"
327
+
328
+ #: wp-useronline.php:396
329
+ msgid "No User Is Browsing This Site"
330
+ msgstr "Sem usuários a navegar neste website"
331
+
332
+ #: wp-useronline.php:538
333
+ msgid "No User Is Browsing This Page"
334
+ msgstr "Sem usuários a navegar nesta página"
335
+
336
+ #: wp-useronline.php:609
337
+ msgid "Users Online Now"
338
+ msgstr "Usuários online agora"
339
+
340
+ #: wp-useronline.php:621
341
+ #, php-format
342
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
343
+ msgstr "Estes são os <strong><a href=\"%s\">%s usuários</a></strong> online agora."
344
+
345
+ #: wp-useronline.php:623
346
+ #, php-format
347
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
348
+ msgstr "Estes são o total de <strong><a href=\"%s\">%s usuários</a></strong> online agora."
349
+
350
+ #: wp-useronline.php:628
351
+ #: wp-useronline.php:729
352
+ #, php-format
353
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
354
+ msgstr "Maior número de usuários online de sempre <strong>%s</strong>, em <strong>%s</strong>"
355
+
356
+ #: wp-useronline.php:692
357
+ msgid "User"
358
+ msgstr "Usuário"
359
+
360
+ #: wp-useronline.php:694
361
+ msgid "Users"
362
+ msgstr "Usuários"
363
+
364
+ #: wp-useronline.php:699
365
+ msgid "Member"
366
+ msgstr "Membro"
367
+
368
+ #: wp-useronline.php:701
369
+ msgid "Members"
370
+ msgstr "Membros"
371
+
372
+ #: wp-useronline.php:709
373
+ msgid "Guests"
374
+ msgstr "Visitantes"
375
+
376
+ #: wp-useronline.php:714
377
+ msgid "Bot"
378
+ msgstr "Bot"
379
+
380
+ #: wp-useronline.php:716
381
+ msgid "Bots"
382
+ msgstr "Bost"
383
+
384
+ #: wp-useronline.php:725
385
+ #, php-format
386
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
387
+ msgstr "Estão <strong>%s</strong> online agora: <strong>%s</strong>, <strong>%s</strong> e <strong>%s</strong>."
388
+
389
+ #: wp-useronline.php:727
390
+ #, php-format
391
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
392
+ msgstr "Estão num total de <strong>%s</strong> online agora: <strong>%s</strong>, <strong>%s</strong> e <strong>%s</strong>."
393
+
394
+ #: wp-useronline.php:732
395
+ #: wp-useronline.php:752
396
+ #: wp-useronline.php:772
397
+ msgid "Online Now"
398
+ msgstr "Online agora"
399
+
400
+ #: wp-useronline.php:739
401
+ #: wp-useronline.php:759
402
+ msgid "referral"
403
+ msgstr "referência"
404
+
405
+ #: wp-useronline.php:742
406
+ #: wp-useronline.php:744
407
+ #: wp-useronline.php:762
408
+ #: wp-useronline.php:764
409
+ #: wp-useronline.php:777
410
+ msgid "on"
411
+ msgstr "Ligado"
412
+
413
+ #: wp-useronline.php:742
414
+ #: wp-useronline.php:744
415
+ #: wp-useronline.php:762
416
+ #: wp-useronline.php:764
417
+ #: wp-useronline.php:777
418
+ msgid "url"
419
+ msgstr "url"
420
+
421
+ #: wp-useronline.php:784
422
+ msgid "No One Is Online Now"
423
+ msgstr "Ninguém online"
424
+
425
+ #: wp-useronline.php:860
426
+ msgid "On"
427
+ msgstr "Ligado"
428
+
429
+ #~ msgid "user(s) online now."
430
+ #~ msgstr "usuário(s) online agora"
431
+ #~ msgid "Most users ever online was"
432
+ #~ msgstr "Maior número de usuários online de sempre foi de"
433
+
lang/wp-useronline-ro_RO.mo ADDED
Binary file
lang/wp-useronline-ro_RO.po ADDED
@@ -0,0 +1,292 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.70\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-useronline\n"
5
+ "POT-Creation-Date: 2010-05-07 16:14+0300\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: scribu <scribu@gmail.com>\n"
8
+ "Language-Team: scribu <scribu@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=(n>1 || n==0)\n"
13
+ "X-Poedit-Language: Romanian\n"
14
+ "X-Poedit-Country: ROMANIA\n"
15
+
16
+ #: admin.php:9
17
+ msgid "Users Online Now"
18
+ msgstr ""
19
+
20
+ #. #-#-#-#-# wp-useronline.pot (WP-UserOnline 2.70-beta) #-#-#-#-#
21
+ #. Plugin Name of the plugin/theme
22
+ #: admin.php:10
23
+ #: wp-stats.php:14
24
+ #: wp-stats.php:31
25
+ msgid "WP-UserOnline"
26
+ msgstr ""
27
+
28
+ #: admin.php:24
29
+ #, php-format
30
+ msgid "There is <strong><a href='%s'>%s user</a></strong> online now."
31
+ msgid_plural "There are a total of <strong><a href='%s'>%s users</a></strong> online now."
32
+ msgstr[0] ""
33
+ msgstr[1] ""
34
+
35
+ #: admin.php:51
36
+ msgid "UserOnline Options"
37
+ msgstr ""
38
+
39
+ #: admin.php:52
40
+ #: widget.php:6
41
+ #: widget.php:49
42
+ msgid "UserOnline"
43
+ msgstr ""
44
+
45
+ #: admin.php:107
46
+ msgid "Time Out"
47
+ msgstr ""
48
+
49
+ #: admin.php:110
50
+ msgid "How long until it will remove the user from the database (In seconds)."
51
+ msgstr ""
52
+
53
+ #: admin.php:115
54
+ msgid "UserOnline URL"
55
+ msgstr ""
56
+
57
+ #: admin.php:118
58
+ msgid "URL To UserOnline Page<br />Example: http://www.yoursite.com/useronline/<br />Example: http://www.yoursite.com/?page_id=2"
59
+ msgstr ""
60
+
61
+ #: admin.php:122
62
+ msgid "User Names"
63
+ msgstr ""
64
+
65
+ #: admin.php:125
66
+ msgid "Link user names to their author page"
67
+ msgstr ""
68
+
69
+ #: admin.php:142
70
+ msgid "Useronline Templates"
71
+ msgstr ""
72
+
73
+ #: admin.php:154
74
+ msgid "User(s) Browsing Site:"
75
+ msgstr ""
76
+
77
+ #: admin.php:155
78
+ msgid "User(s) Browsing Page:"
79
+ msgstr ""
80
+
81
+ #: admin.php:168
82
+ #: scb/AdminPage.php:179
83
+ #: scb/AdminPage.php:190
84
+ msgid "Save Changes"
85
+ msgstr ""
86
+
87
+ #: admin.php:178
88
+ msgid "Naming Conventions:"
89
+ msgstr ""
90
+
91
+ #: admin.php:179
92
+ #: admin.php:219
93
+ #: admin.php:241
94
+ msgid "Allowed Variables:"
95
+ msgstr ""
96
+
97
+ #: admin.php:181
98
+ msgid "Restore Defaults"
99
+ msgstr ""
100
+
101
+ #: admin.php:187
102
+ msgid "Singular Form"
103
+ msgstr ""
104
+
105
+ #: admin.php:188
106
+ msgid "Plural Form"
107
+ msgstr ""
108
+
109
+ #: admin.php:218
110
+ msgid "User(s) Online:"
111
+ msgstr ""
112
+
113
+ #: admin.php:224
114
+ #: admin.php:249
115
+ msgid "Restore Default Template"
116
+ msgstr ""
117
+
118
+ #: admin.php:255
119
+ msgid "Member Names Separator"
120
+ msgstr ""
121
+
122
+ #: admin.php:256
123
+ msgid "Guests Separator"
124
+ msgstr ""
125
+
126
+ #: admin.php:257
127
+ msgid "Bots Separator"
128
+ msgstr ""
129
+
130
+ #: scb/AdminPage.php:166
131
+ msgid "Settings <strong>saved</strong>."
132
+ msgstr ""
133
+
134
+ #: scb/AdminPage.php:376
135
+ msgid "Settings"
136
+ msgstr ""
137
+
138
+ #: template-tags.php:79
139
+ #, php-format
140
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
141
+ msgid_plural "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
142
+ msgstr[0] ""
143
+ msgstr[1] ""
144
+
145
+ #: template-tags.php:181
146
+ msgid "No one is online now."
147
+ msgstr "Nimeni nu este online acum."
148
+
149
+ #: template-tags.php:183
150
+ msgid "on"
151
+ msgstr ""
152
+
153
+ #: template-tags.php:184
154
+ msgid "url"
155
+ msgstr ""
156
+
157
+ #: template-tags.php:185
158
+ msgid "referral"
159
+ msgstr ""
160
+
161
+ #: template-tags.php:196
162
+ msgid "Online Now"
163
+ msgstr ""
164
+
165
+ #: template-tags.php:227
166
+ #, php-format
167
+ msgid "%s @ %s"
168
+ msgstr ""
169
+
170
+ #: template-tags.php:247
171
+ #, php-format
172
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
173
+ msgstr ""
174
+
175
+ #: widget.php:5
176
+ msgid "WP-UserOnline users online statistics"
177
+ msgstr ""
178
+
179
+ #: widget.php:56
180
+ msgid "Title:"
181
+ msgstr ""
182
+
183
+ #: widget.php:59
184
+ msgid "Statistics Type:"
185
+ msgstr ""
186
+
187
+ #: widget.php:61
188
+ msgid "Users Online Count"
189
+ msgstr ""
190
+
191
+ #: widget.php:62
192
+ msgid "Users Browsing Current Page"
193
+ msgstr ""
194
+
195
+ #: widget.php:63
196
+ msgid "Users Browsing Site"
197
+ msgstr ""
198
+
199
+ #: widget.php:65
200
+ msgid "Users Online Count & Users Browsing Current Page"
201
+ msgstr ""
202
+
203
+ #: widget.php:66
204
+ msgid "Users Online Count & Users Browsing Site"
205
+ msgstr ""
206
+
207
+ #: wp-stats.php:24
208
+ #, php-format
209
+ msgid "<strong>%s</strong> user online now."
210
+ msgid_plural "<strong>%s</strong> users online now."
211
+ msgstr[0] ""
212
+ msgstr[1] ""
213
+
214
+ #: wp-useronline.php:83
215
+ msgid "1 User"
216
+ msgstr "1 utilizator"
217
+
218
+ #: wp-useronline.php:84
219
+ msgid "%COUNT% Users"
220
+ msgstr "%COUNT% utilizatori"
221
+
222
+ #: wp-useronline.php:85
223
+ msgid "1 Member"
224
+ msgstr "1 membru"
225
+
226
+ #: wp-useronline.php:86
227
+ msgid "%COUNT% Members"
228
+ msgstr "%COUNT% membri"
229
+
230
+ #: wp-useronline.php:87
231
+ msgid "1 Guest"
232
+ msgstr "1 musafir"
233
+
234
+ #: wp-useronline.php:88
235
+ msgid "%COUNT% Guests"
236
+ msgstr "%COUNT% musafiri"
237
+
238
+ #: wp-useronline.php:89
239
+ msgid "1 Bot"
240
+ msgstr "1 bot"
241
+
242
+ #: wp-useronline.php:90
243
+ msgid "%COUNT% Bots"
244
+ msgstr "%COUNT% boți"
245
+
246
+ #: wp-useronline.php:94
247
+ msgid "Online"
248
+ msgstr "Online"
249
+
250
+ #: wp-useronline.php:98
251
+ #: wp-useronline.php:99
252
+ #: wp-useronline.php:100
253
+ #: wp-useronline.php:107
254
+ #: wp-useronline.php:108
255
+ #: wp-useronline.php:109
256
+ msgid ","
257
+ msgstr ","
258
+
259
+ #: wp-useronline.php:102
260
+ #: wp-useronline.php:111
261
+ msgctxt "Template Element"
262
+ msgid "Users"
263
+ msgstr "utilizatori"
264
+
265
+ #: wp-useronline.php:111
266
+ msgid "Browsing This Page."
267
+ msgstr ""
268
+
269
+ #: wp-useronline.php:210
270
+ msgid "Guest"
271
+ msgstr ""
272
+
273
+ #: wp-useronline.php:217
274
+ msgid "Admin"
275
+ msgstr ""
276
+
277
+ #: wp-useronline.php:223
278
+ msgid "Archive"
279
+ msgstr "Arhivă"
280
+
281
+ #. Plugin URI of the plugin/theme
282
+ msgid "http://wordpress.org/extend/plugins/wp-useronline/"
283
+ msgstr ""
284
+
285
+ #. Description of the plugin/theme
286
+ msgid "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)."
287
+ msgstr ""
288
+
289
+ #. Author of the plugin/theme
290
+ msgid "Lester 'GaMerZ' Chan & scribu"
291
+ msgstr "Lester 'GaMerZ' Chan & scribu"
292
+
lang/wp-useronline-ru_RU.mo ADDED
Binary file
lang/wp-useronline-ru_RU.po ADDED
@@ -0,0 +1,468 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.50\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-07-07 20:38+0300\n"
6
+ "PO-Revision-Date: 2009-07-07 21:04+0300\n"
7
+ "Last-Translator: Anna Ozeritskaya <anna.ozeritskaya@gmail.com>\n"
8
+ "Language-Team: Anna Ozeritskaya <anna.ozeritskaya@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Country: RUSSIAN FEDERATION\n"
13
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_c\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Language: Russian\n"
16
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11) ? 0 : ((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2);\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: useronline-options.php:63
20
+ msgid "Useronline Timeout"
21
+ msgstr "Срок хранения"
22
+
23
+ #: useronline-options.php:64
24
+ msgid "Useronline Bots"
25
+ msgstr "Список ботов"
26
+
27
+ #: useronline-options.php:65
28
+ msgid "Useronline URL"
29
+ msgstr "URL списка посетителей"
30
+
31
+ #: useronline-options.php:66
32
+ msgid "Useronline Naming Conventions"
33
+ msgstr "Шаблон обозначения посетителей"
34
+
35
+ #: useronline-options.php:67
36
+ msgid "User(s) Online Template"
37
+ msgstr "Шаблон &laquo;Посетители&raquo;"
38
+
39
+ #: useronline-options.php:68
40
+ msgid "User(s) Browsing Site Template"
41
+ msgstr "Шаблон &laquo;Просматривают сайт&raquo;"
42
+
43
+ #: useronline-options.php:69
44
+ msgid "User(s) Browsing Page Template"
45
+ msgstr "Шаблон &laquo;Просматривают страницу&raquo;"
46
+
47
+ #: useronline-options.php:74
48
+ msgid "Updated"
49
+ msgstr "&mdash; обновлено"
50
+
51
+ #: useronline-options.php:79
52
+ msgid "No Useronline Option Updated"
53
+ msgstr "Настройки не изменились"
54
+
55
+ #: useronline-options.php:85
56
+ #: useronline-options.php:380
57
+ msgid "UNINSTALL WP-UserOnline"
58
+ msgstr "УДАЛИТЬ WP-UserOnline"
59
+
60
+ #: useronline-options.php:92
61
+ #, php-format
62
+ msgid "Table '%s' has been deleted."
63
+ msgstr "Таблица &laquo;%s&raquo; удалена."
64
+
65
+ #: useronline-options.php:101
66
+ #, php-format
67
+ msgid "Setting Key '%s' has been deleted."
68
+ msgstr "Настройка &laquo;%s&raquo; удалена."
69
+
70
+ #: useronline-options.php:105
71
+ #, php-format
72
+ msgid "Error deleting Setting Key '%s'."
73
+ msgstr "Ошибка при удалении настройки &laquo;%s&raquo;."
74
+
75
+ #: useronline-options.php:127
76
+ #: useronline-options.php:338
77
+ msgid "Uninstall WP-UserOnline"
78
+ msgstr "Удалить WP-UserOnline"
79
+
80
+ #: useronline-options.php:128
81
+ #, php-format
82
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
83
+ msgstr "<a href=\"%s\">Нажмите здесь</a> чтобы завершить удаление. WP-UserOnline будет отключён автоматически."
84
+
85
+ #: useronline-options.php:153
86
+ #: wp-useronline.php:1013
87
+ msgid "Online"
88
+ msgstr "на сайте"
89
+
90
+ #: useronline-options.php:160
91
+ #: wp-useronline.php:1012
92
+ msgid "1 User"
93
+ msgstr "1 посетитель"
94
+
95
+ #: useronline-options.php:161
96
+ #: wp-useronline.php:1012
97
+ msgid "%USERONLINE_COUNT% Users"
98
+ msgstr "%USERONLINE_COUNT% посетителей"
99
+
100
+ #: useronline-options.php:162
101
+ #: wp-useronline.php:1012
102
+ msgid "1 Member"
103
+ msgstr "1 зарегистрированный пользователь"
104
+
105
+ #: useronline-options.php:163
106
+ #: wp-useronline.php:1012
107
+ msgid "%USERONLINE_COUNT% Members"
108
+ msgstr "%USERONLINE_COUNT% зарегистрированных пользователей"
109
+
110
+ #: useronline-options.php:164
111
+ #: wp-useronline.php:1012
112
+ msgid "1 Guest"
113
+ msgstr "1 гость"
114
+
115
+ #: useronline-options.php:165
116
+ #: wp-useronline.php:1012
117
+ msgid "%USERONLINE_COUNT% Guests"
118
+ msgstr "%USERONLINE_COUNT% гостей"
119
+
120
+ #: useronline-options.php:166
121
+ #: wp-useronline.php:1012
122
+ msgid "1 Bot"
123
+ msgstr "1 робот"
124
+
125
+ #: useronline-options.php:167
126
+ #: wp-useronline.php:1012
127
+ msgid "%USERONLINE_COUNT% Bots"
128
+ msgstr "%USERONLINE_COUNT% роботов"
129
+
130
+ #: useronline-options.php:170
131
+ #: useronline-options.php:171
132
+ #: useronline-options.php:172
133
+ #: useronline-options.php:176
134
+ #: useronline-options.php:177
135
+ #: useronline-options.php:178
136
+ #: wp-useronline.php:1014
137
+ #: wp-useronline.php:1015
138
+ msgid ","
139
+ msgstr ","
140
+
141
+ #: useronline-options.php:173
142
+ #: useronline-options.php:179
143
+ #: wp-useronline.php:1014
144
+ #: wp-useronline.php:1015
145
+ msgid "Users|Template Element"
146
+ msgstr "Посетители"
147
+
148
+ #: useronline-options.php:179
149
+ #: wp-useronline.php:1015
150
+ msgid "Browsing This Page."
151
+ msgstr "просматривают эту страницу."
152
+
153
+ #: useronline-options.php:186
154
+ #: useronline-options.php:187
155
+ msgid "Useronline Options"
156
+ msgstr "Настройки списка посетителей"
157
+
158
+ #: useronline-options.php:190
159
+ msgid "Time Out"
160
+ msgstr "Срок хранения:"
161
+
162
+ #: useronline-options.php:192
163
+ msgid "How long till it will remove the user from the database (In seconds)."
164
+ msgstr "Как долго данные о посетителе будут храниться в базе данных (в секундах)."
165
+
166
+ #: useronline-options.php:196
167
+ msgid "UserOnline URL"
168
+ msgstr "URL списка посетителей:"
169
+
170
+ #: useronline-options.php:198
171
+ msgid "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"
172
+ msgstr "URL страницы со списком посетителей сайта (оставьте поле пустым, если вы не хотите создавать ссылок на эту страницу)<br />Пример: http://www.yoursite.com/blogs/useronline/<br />Пример: http://www.yoursite.com/blogs/?page_id=2"
173
+
174
+ #: useronline-options.php:202
175
+ msgid "Bots Name/User Agent"
176
+ msgstr "Название робота/User-Agent:"
177
+
178
+ #: useronline-options.php:204
179
+ msgid "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."
180
+ msgstr "Это список роботов и соответствующих им значений user-agent.<br />Чтобы добавить в список нового робота, укажите в левой колонке его <strong>название</strong>, а в правой&nbsp;&mdash; часть значения <strong>user-agent</strong>.<br />Начинайте каждую запись с новой строки."
181
+
182
+ #: useronline-options.php:212
183
+ msgid "Naming Conventions:"
184
+ msgstr "Шаблоны обозначения посетителей:"
185
+
186
+ #: useronline-options.php:213
187
+ #: useronline-options.php:254
188
+ #: useronline-options.php:266
189
+ #: useronline-options.php:298
190
+ msgid "Allowed Variables:"
191
+ msgstr "Допустимые переменные:"
192
+
193
+ #: useronline-options.php:215
194
+ #: useronline-options.php:259
195
+ #: useronline-options.php:274
196
+ #: useronline-options.php:306
197
+ msgid "Restore Default Template"
198
+ msgstr "Восстановить стандартный шаблон"
199
+
200
+ #: useronline-options.php:221
201
+ msgid "Singular Form"
202
+ msgstr "Единственное число"
203
+
204
+ #: useronline-options.php:222
205
+ msgid "Plural Form"
206
+ msgstr "Множественное число"
207
+
208
+ #: useronline-options.php:249
209
+ msgid "Useronline Templates"
210
+ msgstr "Шаблоны списков посетителей"
211
+
212
+ #: useronline-options.php:253
213
+ msgid "User(s) Online:"
214
+ msgstr "Шаблон &laquo;Посетители&raquo;:"
215
+
216
+ #: useronline-options.php:265
217
+ msgid "User(s) Browsing Site:"
218
+ msgstr "Шаблон &laquo;Просматривают сайт&raquo;:"
219
+
220
+ #: useronline-options.php:280
221
+ #: useronline-options.php:312
222
+ msgid "Member Names Separator"
223
+ msgstr "Разделитель списка зарегистрированных пользователей"
224
+
225
+ #: useronline-options.php:281
226
+ #: useronline-options.php:313
227
+ msgid "Guests Separator"
228
+ msgstr "Разделитель списка гостей"
229
+
230
+ #: useronline-options.php:282
231
+ #: useronline-options.php:314
232
+ msgid "Bots Separator"
233
+ msgstr "Разделитель списка роботов"
234
+
235
+ #: useronline-options.php:297
236
+ msgid "User(s) Browsing Page:"
237
+ msgstr "Шаблон &laquo;Просматривают страницу&raquo;:"
238
+
239
+ #: useronline-options.php:329
240
+ msgid "Save Changes"
241
+ msgstr "Сохранить изменения"
242
+
243
+ #: useronline-options.php:340
244
+ msgid "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."
245
+ msgstr "При отключении плагина WP-UserOnline его настройки и любые другие сохраненные данные не удаляются. Для того, чтобы полностью удалить плагин, отмените здесь его установку."
246
+
247
+ #: useronline-options.php:343
248
+ msgid "WARNING:"
249
+ msgstr "ВНИМАНИЕ:"
250
+
251
+ #: useronline-options.php:344
252
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
253
+ msgstr "Удаление плагина необратимо. Для того, чтобы создать резервную копию БД WordPress и сохранить ваши данные, используйте плагин &laquo;Database Backup&raquo;."
254
+
255
+ #: useronline-options.php:347
256
+ msgid "The following WordPress Options/Tables will be DELETED:"
257
+ msgstr "Будут УДАЛЕНЫ следующие настройки и таблицы WordPress:"
258
+
259
+ #: useronline-options.php:352
260
+ msgid "WordPress Options"
261
+ msgstr "Настройки WordPress"
262
+
263
+ #: useronline-options.php:353
264
+ msgid "WordPress Tables"
265
+ msgstr "Таблицы WordPress"
266
+
267
+ #: useronline-options.php:379
268
+ msgid "Yes"
269
+ msgstr "Да"
270
+
271
+ #: useronline-options.php:380
272
+ msgid ""
273
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
274
+ "This Action Is Not Reversible.\\n"
275
+ "\\n"
276
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
277
+ msgstr ""
278
+ "Вы собираетесь удалить плагин WP-UserOnline.\\n"
279
+ "Это действие необратимо.\\n"
280
+ "\\n"
281
+ "Чтобы остановить удаление, выберите [Отмена]. Выберите [OK], если вы хотите его продолжить."
282
+
283
+ #: wp-useronline.php:58
284
+ #: wp-useronline.php:846
285
+ #: wp-useronline.php:848
286
+ #: wp-useronline.php:858
287
+ msgid "WP-UserOnline"
288
+ msgstr "Посетители сайта"
289
+
290
+ #: wp-useronline.php:61
291
+ #: wp-useronline.php:873
292
+ #: wp-useronline.php:934
293
+ msgid "UserOnline"
294
+ msgstr "Посетители сайта"
295
+
296
+ #: wp-useronline.php:128
297
+ msgid "guest"
298
+ msgstr "гость"
299
+
300
+ #: wp-useronline.php:134
301
+ #: wp-useronline.php:709
302
+ msgid "Guest"
303
+ msgstr "гость"
304
+
305
+ #: wp-useronline.php:149
306
+ msgid "Blog Archive"
307
+ msgstr "Архив журнала"
308
+
309
+ #: wp-useronline.php:230
310
+ #: wp-useronline.php:261
311
+ #: wp-useronline.php:744
312
+ #: wp-useronline.php:746
313
+ #: wp-useronline.php:764
314
+ #: wp-useronline.php:766
315
+ #: wp-useronline.php:779
316
+ #, php-format
317
+ msgid "%s @ %s"
318
+ msgstr "%s в %s"
319
+
320
+ #: wp-useronline.php:398
321
+ msgid "No User Is Browsing This Site"
322
+ msgstr "Сейчас на сайте никого нет"
323
+
324
+ #: wp-useronline.php:540
325
+ msgid "No User Is Browsing This Page"
326
+ msgstr "Эту страницу сейчас никто не просматривает"
327
+
328
+ #: wp-useronline.php:611
329
+ msgid "Users Online Now"
330
+ msgstr "Посетители сайта"
331
+
332
+ #: wp-useronline.php:623
333
+ #, php-format
334
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
335
+ msgstr "На сайте <strong><a href=\"%s\">%s</a></strong> посетитель."
336
+
337
+ #: wp-useronline.php:625
338
+ #, php-format
339
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
340
+ msgstr "Посетителей на сайте: <strong><a href=\"%s\">%s</a></strong>."
341
+
342
+ #: wp-useronline.php:630
343
+ #: wp-useronline.php:731
344
+ #, php-format
345
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
346
+ msgstr "Больше всего посетителей (<strong>%s</strong>) здесь было <strong>%s</strong>"
347
+
348
+ #: wp-useronline.php:694
349
+ msgid "User"
350
+ msgstr "посетитель"
351
+
352
+ #: wp-useronline.php:696
353
+ msgid "Users"
354
+ msgstr "посетителей"
355
+
356
+ #: wp-useronline.php:701
357
+ msgid "Member"
358
+ msgstr "зарегистрированный пользователь"
359
+
360
+ #: wp-useronline.php:703
361
+ msgid "Members"
362
+ msgstr "зарегистрированных пользователей"
363
+
364
+ #: wp-useronline.php:711
365
+ msgid "Guests"
366
+ msgstr "гостей"
367
+
368
+ #: wp-useronline.php:716
369
+ msgid "Bot"
370
+ msgstr "робот"
371
+
372
+ #: wp-useronline.php:718
373
+ msgid "Bots"
374
+ msgstr "роботов"
375
+
376
+ #: wp-useronline.php:727
377
+ #, php-format
378
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
379
+ msgstr "Сейчас на сайте <strong>%s</strong>: <strong>%s</strong>, <strong>%s</strong> и <strong>%s</strong>."
380
+
381
+ #: wp-useronline.php:729
382
+ #, php-format
383
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
384
+ msgstr "Всего на сайте <strong>%s</strong>: <strong>%s</strong>, <strong>%s</strong> и <strong>%s</strong>."
385
+
386
+ #: wp-useronline.php:734
387
+ #: wp-useronline.php:754
388
+ #: wp-useronline.php:774
389
+ msgid "Online Now"
390
+ msgstr " "
391
+
392
+ #: wp-useronline.php:741
393
+ #: wp-useronline.php:761
394
+ msgid "referral"
395
+ msgstr "источник трафика"
396
+
397
+ #: wp-useronline.php:744
398
+ #: wp-useronline.php:746
399
+ #: wp-useronline.php:764
400
+ #: wp-useronline.php:766
401
+ #: wp-useronline.php:779
402
+ msgid "on"
403
+ msgstr "&nbsp;&mdash; "
404
+
405
+ #: wp-useronline.php:744
406
+ #: wp-useronline.php:746
407
+ #: wp-useronline.php:764
408
+ #: wp-useronline.php:766
409
+ #: wp-useronline.php:779
410
+ msgid "url"
411
+ msgstr "ссылка"
412
+
413
+ #: wp-useronline.php:786
414
+ msgid "No One Is Online Now"
415
+ msgstr "Сейчас на сайте никого нет"
416
+
417
+ #: wp-useronline.php:860
418
+ #, php-format
419
+ msgid "<strong>%s</strong> user online now."
420
+ msgid_plural "<strong>%s</strong> users online now."
421
+ msgstr[0] "Сейчас на сайте <strong>%s</strong> посетитель."
422
+ msgstr[1] "Сейчас на сайте <strong>%s</strong> посетителя."
423
+ msgstr[2] "Сейчас на сайте <strong>%s</strong> посетителей."
424
+
425
+ #: wp-useronline.php:861
426
+ #, php-format
427
+ msgid "Most users ever online was <strong>%s</strong>."
428
+ msgid_plural "Most users ever online was <strong>%s</strong>."
429
+ msgstr[0] "Максимум посещаемости&nbsp;&mdash; <strong>%s</strong> визит одновременно."
430
+ msgstr[1] "Максимум посещаемости&nbsp;&mdash; <strong>%s</strong> визита одновременно."
431
+ msgstr[2] "Максимум посещаемости&nbsp;&mdash; <strong>%s</strong> визитов одновременно."
432
+
433
+ #: wp-useronline.php:862
434
+ msgid "On"
435
+ msgstr "Это произошло"
436
+
437
+ #: wp-useronline.php:872
438
+ msgid "WP-UserOnline users online statistics"
439
+ msgstr "Сведения о количестве посетителей на сайте"
440
+
441
+ #: wp-useronline.php:939
442
+ msgid "Title:"
443
+ msgstr "Заголовок:"
444
+
445
+ #: wp-useronline.php:942
446
+ msgid "Statistics Type:"
447
+ msgstr "Тип статистики:"
448
+
449
+ #: wp-useronline.php:944
450
+ msgid "Users Online Count"
451
+ msgstr "Кол-во посетителей на сайте"
452
+
453
+ #: wp-useronline.php:945
454
+ msgid "Users Browsing Current Page"
455
+ msgstr "Сведения о посетителях текущей страницы"
456
+
457
+ #: wp-useronline.php:946
458
+ msgid "Users Browsing Site"
459
+ msgstr "Имена посетителей сайта"
460
+
461
+ #: wp-useronline.php:948
462
+ msgid "Users Online Count & Users Browsing Current Page"
463
+ msgstr "Кол-во посетителей на сайте и имена посетителей текущей страницы"
464
+
465
+ #: wp-useronline.php:949
466
+ msgid "Users Online Count & Users Browsing Site"
467
+ msgstr "Кол-во и имена посетителей сайта"
468
+
lang/wp-useronline-sk.mo ADDED
Binary file
lang/wp-useronline-sk.po ADDED
@@ -0,0 +1,446 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-12 01:11+0800\n"
6
+ "PO-Revision-Date: 2008-12-12 01:11+0800\n"
7
+ "Last-Translator: Lester Chan <lesterchan@gmail.com>\n"
8
+ "Language-Team: Peter Leibitzer <speedy55@azet.sk>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Country: Slovak\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Language: Slovak\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: useronline-options.php:63
19
+ msgid "Useronline Timeout"
20
+ msgstr ""
21
+
22
+ #: useronline-options.php:64
23
+ msgid "Useronline Bots"
24
+ msgstr "Bóti Useronline"
25
+
26
+ #: useronline-options.php:65
27
+ msgid "Useronline URL"
28
+ msgstr "URL Useronline"
29
+
30
+ #: useronline-options.php:66
31
+ msgid "Useronline Naming Conventions"
32
+ msgstr "Dohody pomenovania Useronline"
33
+
34
+ #: useronline-options.php:67
35
+ msgid "User(s) Online Template"
36
+ msgstr "Šablóna Užívateľa(ov) online "
37
+
38
+ #: useronline-options.php:68
39
+ msgid "User(s) Browsing Site Template"
40
+ msgstr "Šablóna Užívateľa(ov) prehľadavajúcich web"
41
+
42
+ #: useronline-options.php:69
43
+ msgid "User(s) Browsing Page Template"
44
+ msgstr "Šablóna Užívateľa(ov) prehľadavajúcich stránku"
45
+
46
+ #: useronline-options.php:74
47
+ msgid "Updated"
48
+ msgstr "Aktualizované"
49
+
50
+ #: useronline-options.php:79
51
+ msgid "No Useronline Option Updated"
52
+ msgstr "Žiadna možnost neaktualizovaná"
53
+
54
+ #: useronline-options.php:85
55
+ #: useronline-options.php:380
56
+ msgid "UNINSTALL WP-UserOnline"
57
+ msgstr "ODINŠTALUJ WP-Useronline"
58
+
59
+ #: useronline-options.php:92
60
+ #, php-format
61
+ msgid "Table '%s' has been deleted."
62
+ msgstr "Tabuľka '%s' bola zmazaná"
63
+
64
+ #: useronline-options.php:101
65
+ #, php-format
66
+ msgid "Setting Key '%s' has been deleted."
67
+ msgstr "Kľúč nastavenia '%s' bol zmazaný"
68
+
69
+ #: useronline-options.php:105
70
+ #, php-format
71
+ msgid "Error deleting Setting Key '%s'."
72
+ msgstr "Chyba v mazaní kľuča nastavenia '%s'."
73
+
74
+ #: useronline-options.php:127
75
+ #: useronline-options.php:338
76
+ msgid "Uninstall WP-UserOnline"
77
+ msgstr "Odinštaluj WP-Useronline"
78
+
79
+ #: useronline-options.php:128
80
+ #, php-format
81
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
82
+ msgstr "<a href=\"%s\">Kliknu tu</a> pre ukončenie Odinštalácie a WP-Useronline bude deaktivovaný automaticky."
83
+
84
+ #: useronline-options.php:153
85
+ #: wp-useronline.php:914
86
+ msgid "Online"
87
+ msgstr ""
88
+
89
+ #: useronline-options.php:160
90
+ #: wp-useronline.php:913
91
+ msgid "1 User"
92
+ msgstr "1 Užívateľ"
93
+
94
+ #: useronline-options.php:161
95
+ #: wp-useronline.php:913
96
+ msgid "%USERONLINE_COUNT% Users"
97
+ msgstr "%USERONLINE_COUNT% Užívateľov"
98
+
99
+ #: useronline-options.php:162
100
+ #: wp-useronline.php:913
101
+ msgid "1 Member"
102
+ msgstr "1 Zaregistrovaný"
103
+
104
+ #: useronline-options.php:163
105
+ #: wp-useronline.php:913
106
+ msgid "%USERONLINE_COUNT% Members"
107
+ msgstr "%USERONLINE_COUNT% Zaregistrovaných"
108
+
109
+ #: useronline-options.php:164
110
+ #: wp-useronline.php:913
111
+ msgid "1 Guest"
112
+ msgstr "1 Hosť"
113
+
114
+ #: useronline-options.php:165
115
+ #: wp-useronline.php:913
116
+ msgid "%USERONLINE_COUNT% Guests"
117
+ msgstr "%USERONLINE_COUNT% Hosťov"
118
+
119
+ #: useronline-options.php:166
120
+ #: wp-useronline.php:913
121
+ msgid "1 Bot"
122
+ msgstr ""
123
+
124
+ #: useronline-options.php:167
125
+ #: wp-useronline.php:913
126
+ msgid "%USERONLINE_COUNT% Bots"
127
+ msgstr "%USERONLINE_COUNT% Botov"
128
+
129
+ #: useronline-options.php:170
130
+ #: useronline-options.php:171
131
+ #: useronline-options.php:172
132
+ #: useronline-options.php:176
133
+ #: useronline-options.php:177
134
+ #: useronline-options.php:178
135
+ #: wp-useronline.php:915
136
+ #: wp-useronline.php:916
137
+ msgid ","
138
+ msgstr ""
139
+
140
+ #: useronline-options.php:179
141
+ #: wp-useronline.php:916
142
+ msgid "Browsing This Page."
143
+ msgstr "Prehľadajúci túto stránku."
144
+
145
+ #: useronline-options.php:186
146
+ #: useronline-options.php:187
147
+ msgid "Useronline Options"
148
+ msgstr "Možnosti Useronline"
149
+
150
+ #: useronline-options.php:190
151
+ msgid "Time Out"
152
+ msgstr "Časový limit"
153
+
154
+ #: useronline-options.php:192
155
+ msgid "How long till it will remove the user from the database (In seconds)."
156
+ msgstr "Čas, po ktorom bude užívateľ odstránený z databázy (v seKundách )"
157
+
158
+ #: useronline-options.php:196
159
+ msgid "UserOnline URL"
160
+ msgstr "URL UserOnline "
161
+
162
+ #: useronline-options.php:198
163
+ msgid "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"
164
+ msgstr "URL na stránku UserOnline (nechaj prázdne ak nechceš, aby bol link využitý )<br />Príklad: http://www.tvojweb.com/blogs/useronline/<br />Príklad: http://www.tvojweb.com/blogs/?page_id=2"
165
+
166
+ #: useronline-options.php:202
167
+ msgid "Bots Name/User Agent"
168
+ msgstr "Názov botov/User agent"
169
+
170
+ #: useronline-options.php:204
171
+ msgid "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."
172
+ msgstr "Tu sa nachádza zoznam botov a ich čiastočných prehľadávacích agentov.<br />V ľavom stĺpci bude <strong>Názov bota</strong> a na pravom bude ich <strong>Čiastočný prehľadávací Agent</strong>.<br />Každú položku vpíš do nového riadku."
173
+
174
+ #: useronline-options.php:212
175
+ msgid "Naming Conventions:"
176
+ msgstr "Pravidlá pomenovania"
177
+
178
+ #: useronline-options.php:213
179
+ #: useronline-options.php:254
180
+ #: useronline-options.php:266
181
+ #: useronline-options.php:298
182
+ msgid "Allowed Variables:"
183
+ msgstr "Povolené premenné:"
184
+
185
+ #: useronline-options.php:215
186
+ #: useronline-options.php:259
187
+ #: useronline-options.php:274
188
+ #: useronline-options.php:306
189
+ msgid "Restore Default Template"
190
+ msgstr "Obnov pôvodnú šablónu"
191
+
192
+ #: useronline-options.php:221
193
+ msgid "Singular Form"
194
+ msgstr "Forma jednotného čísla"
195
+
196
+ #: useronline-options.php:222
197
+ msgid "Plural Form"
198
+ msgstr "Forma množného čísla"
199
+
200
+ #: useronline-options.php:249
201
+ msgid "Useronline Templates"
202
+ msgstr "Useronline šablóny"
203
+
204
+ #: useronline-options.php:253
205
+ msgid "User(s) Online:"
206
+ msgstr "Užívateľ(ia) Online:"
207
+
208
+ #: useronline-options.php:265
209
+ msgid "User(s) Browsing Site:"
210
+ msgstr "Užívateľ(ia) Prehliadajúci web:"
211
+
212
+ #: useronline-options.php:280
213
+ #: useronline-options.php:312
214
+ msgid "Member Names Separator"
215
+ msgstr "Separátor názvu registrovaných"
216
+
217
+ #: useronline-options.php:281
218
+ #: useronline-options.php:313
219
+ msgid "Guests Separator"
220
+ msgstr "Separátor Hostí"
221
+
222
+ #: useronline-options.php:282
223
+ #: useronline-options.php:314
224
+ msgid "Bots Separator"
225
+ msgstr "Separátor botov"
226
+
227
+ #: useronline-options.php:297
228
+ msgid "User(s) Browsing Page:"
229
+ msgstr "Užívateľ(ia) Prehľadavajúci stránku:"
230
+
231
+ #: useronline-options.php:329
232
+ msgid "Save Changes"
233
+ msgstr "Ulož zmeny"
234
+
235
+ #: useronline-options.php:340
236
+ msgid "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."
237
+ msgstr "Deaktiváciou WP-UserOnline pluginu sa neodstránia žiadne dáta, ktoré mohli byť vytvorené, napr. možnosti useronline. Kompletné odstránenie tohto pluginu, môžeš realizovať tu:"
238
+
239
+ #: useronline-options.php:343
240
+ msgid "WARNING:"
241
+ msgstr "VAROVANIE:"
242
+
243
+ #: useronline-options.php:344
244
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
245
+ msgstr "Ak odinštaluješ,už to nevrátiš. Odporúčame použiť modul pre Zálohovanie Databázy Wordpressu aby si si najprv zálohoval dáta."
246
+
247
+ #: useronline-options.php:347
248
+ msgid "The following WordPress Options/Tables will be DELETED:"
249
+ msgstr "Nasledujúce Wordpress Možnosti/tabuľky budú VYMAZANÉ:"
250
+
251
+ #: useronline-options.php:352
252
+ msgid "WordPress Options"
253
+ msgstr "WordPress Možnosti"
254
+
255
+ #: useronline-options.php:353
256
+ msgid "WordPress Tables"
257
+ msgstr "WordPress Tabuľky"
258
+
259
+ #: useronline-options.php:379
260
+ #: wp-useronline-widget.php:73
261
+ msgid "Yes"
262
+ msgstr "Áno"
263
+
264
+ #: useronline-options.php:380
265
+ msgid ""
266
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
267
+ "This Action Is Not Reversible.\\n"
268
+ "\\n"
269
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
270
+ msgstr ""
271
+ "Chystáš sa odinštalovať WP-UserOnline z WordPressu.\\n"
272
+ "Táto akcia je nenávratná.\\n"
273
+ "\\n"
274
+ " Vyber [Zruš] pre zastavenie, [OK] pre odinštalovanie."
275
+
276
+ #: wp-useronline-widget.php:62
277
+ msgid "UserOnline"
278
+ msgstr ""
279
+
280
+ #: wp-useronline-widget.php:69
281
+ msgid "Widget Title"
282
+ msgstr "Názov Widgetu"
283
+
284
+ #: wp-useronline-widget.php:70
285
+ msgid "Display Users Browsing Site Under Users Online Count?"
286
+ msgstr "Ukázať užívateľov prehľadávajúcich web v počítadle Užívateľov Online?"
287
+
288
+ #: wp-useronline-widget.php:75
289
+ msgid "No"
290
+ msgstr "Nie, dík"
291
+
292
+ #: wp-useronline.php:58
293
+ #: wp-useronline.php:844
294
+ #: wp-useronline.php:846
295
+ #: wp-useronline.php:856
296
+ msgid "WP-UserOnline"
297
+ msgstr "WP-UserOnline"
298
+
299
+ #: wp-useronline.php:61
300
+ msgid "Useronline"
301
+ msgstr "Useronline"
302
+
303
+ #: wp-useronline.php:126
304
+ msgid "guest"
305
+ msgstr "hosť"
306
+
307
+ #: wp-useronline.php:132
308
+ #: wp-useronline.php:707
309
+ msgid "Guest"
310
+ msgstr "Hosť"
311
+
312
+ #: wp-useronline.php:147
313
+ msgid "Blog Archive"
314
+ msgstr "Archív blogu"
315
+
316
+ #: wp-useronline.php:228
317
+ #: wp-useronline.php:259
318
+ #: wp-useronline.php:742
319
+ #: wp-useronline.php:744
320
+ #: wp-useronline.php:762
321
+ #: wp-useronline.php:764
322
+ #: wp-useronline.php:777
323
+ #, php-format
324
+ msgid "%s @ %s"
325
+ msgstr "%s @ %s"
326
+
327
+ #: wp-useronline.php:396
328
+ msgid "No User Is Browsing This Site"
329
+ msgstr "Žiaden užívateľ Web neprehľadáva "
330
+
331
+ #: wp-useronline.php:538
332
+ msgid "No User Is Browsing This Page"
333
+ msgstr "Žiaden užívateľ Túto Stránku neprehľadáva "
334
+
335
+ #: wp-useronline.php:609
336
+ msgid "Users Online Now"
337
+ msgstr "Teraz online"
338
+
339
+ #: wp-useronline.php:621
340
+ #, php-format
341
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
342
+ msgstr "Práve je online <strong><a href=\"%s\">%s užívateľov</a></strong>."
343
+
344
+ #: wp-useronline.php:623
345
+ #, php-format
346
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
347
+ msgstr "Práve je teraz celkovo online <strong><a href=\"%s\">%s užívateľov</a></strong>."
348
+
349
+ #: wp-useronline.php:628
350
+ #: wp-useronline.php:729
351
+ #, php-format
352
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
353
+ msgstr "Najviac užívateľov online vôbec bolo <strong>%s</strong>, Dátum: <strong>%s</strong>"
354
+
355
+ #: wp-useronline.php:692
356
+ msgid "User"
357
+ msgstr "Užívateľ"
358
+
359
+ #: wp-useronline.php:694
360
+ msgid "Users"
361
+ msgstr "Užívateľia"
362
+
363
+ #: wp-useronline.php:699
364
+ msgid "Member"
365
+ msgstr "Registrovaný"
366
+
367
+ #: wp-useronline.php:701
368
+ msgid "Members"
369
+ msgstr "Registrovaní"
370
+
371
+ #: wp-useronline.php:709
372
+ msgid "Guests"
373
+ msgstr "Hostia"
374
+
375
+ #: wp-useronline.php:714
376
+ msgid "Bot"
377
+ msgstr "Bot"
378
+
379
+ #: wp-useronline.php:716
380
+ msgid "Bots"
381
+ msgstr "Boti"
382
+
383
+ #: wp-useronline.php:725
384
+ #, php-format
385
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
386
+ msgstr "Práve teraz je <strong>%s</strong> online: <strong>%s</strong>, <strong>%s</strong> a <strong>%s</strong>."
387
+
388
+ #: wp-useronline.php:727
389
+ #, php-format
390
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
391
+ msgstr "Práve je celkovo <strong>%s</strong> online: <strong>%s</strong>, <strong>%s</strong> a <strong>%s</strong>."
392
+
393
+ #: wp-useronline.php:732
394
+ #: wp-useronline.php:752
395
+ #: wp-useronline.php:772
396
+ msgid "Online Now"
397
+ msgstr "je teraz online"
398
+
399
+ #: wp-useronline.php:739
400
+ #: wp-useronline.php:759
401
+ msgid "referral"
402
+ msgstr "žiadosť o súhlas"
403
+
404
+ #: wp-useronline.php:742
405
+ #: wp-useronline.php:744
406
+ #: wp-useronline.php:762
407
+ #: wp-useronline.php:764
408
+ #: wp-useronline.php:777
409
+ msgid "on"
410
+ msgstr "dňa"
411
+
412
+ #: wp-useronline.php:742
413
+ #: wp-useronline.php:744
414
+ #: wp-useronline.php:762
415
+ #: wp-useronline.php:764
416
+ #: wp-useronline.php:777
417
+ msgid "url"
418
+ msgstr "url"
419
+
420
+ #: wp-useronline.php:784
421
+ msgid "No One Is Online Now"
422
+ msgstr "Nikto nie je teraz online"
423
+
424
+ #: wp-useronline.php:860
425
+ msgid "On"
426
+ msgstr "Dňa"
427
+
428
+ #~ msgid "user(s) online now."
429
+ #~ msgstr "uživateľ(ov) je teraz online"
430
+ #~ msgid "Most users ever online was"
431
+ #~ msgstr "Najviac užívateľov online bolo"
432
+ #~ msgid "Update Options"
433
+ #~ msgstr "Aktualizuj možnosti"
434
+ #~ msgid "Cancel"
435
+ #~ msgstr "Zruš"
436
+ #~ msgid "There is"
437
+ #~ msgstr "Je"
438
+ #~ msgid "There are a total of"
439
+ #~ msgstr "Celkovo je"
440
+ #~ msgid "online now"
441
+ #~ msgstr "Teraz je online"
442
+ #~ msgid "and"
443
+ #~ msgstr "a"
444
+ #~ msgid "Most users ever online were"
445
+ #~ msgstr "Najviac uživateľov online vôbec"
446
+
lang/wp-useronline-sv_SE.mo ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
0
  |
1
 
2
 
 
3
 
4
 
5
 
6
  " �
7
 
8
 
9
 
10
  7 v J K � j
 
 
11
  . < I [ l � p � � ) B ] z � � � � � � t � [ ; �
 
12
  � � � � A � @ � 7 = E � U P L � � � } � R E � � � $ � & � & � * � � � # � � -
13
  < J F j s � N % m t G �
14
  * 8 � S
 
 
 
 
15
  � � ! ! -! � 0! �! �! �! �! % T
 
16
  6 > A X N 2 4 + L # P S * ( O ' V & < Q 5 8 J : W 7 / R - D . %USERONLINE_COUNT% Bots %USERONLINE_COUNT% Guests %USERONLINE_COUNT% Members %USERONLINE_COUNT% Users %s @ %s , 1 Bot 1 Guest 1 Member 1 User <a href="%s">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically. <strong>%s</strong> user online now. <strong>%s</strong> users online now. Allowed Variables: Blog Archive Bot Bots Bots Name/User Agent Bots Separator Browsing This Page. 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. Display Users Browsing Site Under Users Online Count? Error deleting Setting Key '%s'. Guest Guests Guests Separator 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. How long till it will remove the user from the database (In seconds). Member Member Names Separator Members Most users ever online was <strong>%s</strong>. Most users ever online was <strong>%s</strong>. Most users ever online were <strong>%s</strong>, on <strong>%s</strong> Naming Conventions: No No One Is Online Now No User Is Browsing This Page No User Is Browsing This Site No Useronline Option Updated On Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first. Online Online Now Plural Form Restore Default Template Save Changes Setting Key '%s' has been deleted. Singular Form Table '%s' has been deleted. The following WordPress Options/Tables will be DELETED: There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>. There are a total of <strong><a href="%s">%s users</a></strong> online now. There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>. There is <strong><a href="%s">%s user</a></strong> online now. Time Out UNINSTALL WP-UserOnline 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 Uninstall WP-UserOnline Updated User User(s) Browsing Page Template User(s) Browsing Page: User(s) Browsing Site Template User(s) Browsing Site: User(s) Online Template User(s) Online: UserOnline UserOnline URL Useronline Useronline Bots Useronline Naming Conventions Useronline Options Useronline Templates Useronline Timeout Useronline URL Users Users Online Now Users|Template Element WARNING: WP-UserOnline Widget Title WordPress Options WordPress Tables Yes You Are About To Uninstall WP-UserOnline From WordPress.\nThis Action Is Not Reversible.\n\n Choose [Cancel] To Stop, [OK] To Uninstall. guest on referral url Project-Id-Version: WP-UserOnline 2.40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ �� Y �  � � � � � � ' 0 m 7 J � � . = � Q 5
2
+ ;
3
+ \
4
+ b
5
+ i
6
+ � z
7
+ E g � � � _ � G 3 { � � � � �
8
  |
9
 
10
 
11
+
12
 
13
 
14
 
15
  " �
16
 
17
 
18
 
19
  7 v J K � j
20
+ Z e
21
+ t  � � � � � � � %
22
  . < I [ l � p � � ) B ] z � � � � � � t � [ ; �
23
+ � � � �
24
  � � � � A � @ � 7 = E � U P L � � � } � R E � � � $ � & � & � * � � � # � � -
25
  < J F j s � N % m t G �
26
  * 8 � S
27
+ :
28
+ E P p � � � �
29
+ � ' 8 U o  �
30
+ � � � �
31
  � � ! ! -! � 0! �! �! �! �! % T
32
+ 0 F ! " M Y G H ; C 1 3 = 9 E , ) I @ B U K ? $
33
  6 > A X N 2 4 + L # P S * ( O ' V & < Q 5 8 J : W 7 / R - D . %USERONLINE_COUNT% Bots %USERONLINE_COUNT% Guests %USERONLINE_COUNT% Members %USERONLINE_COUNT% Users %s @ %s , 1 Bot 1 Guest 1 Member 1 User <a href="%s">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically. <strong>%s</strong> user online now. <strong>%s</strong> users online now. Allowed Variables: Blog Archive Bot Bots Bots Name/User Agent Bots Separator Browsing This Page. 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. Display Users Browsing Site Under Users Online Count? Error deleting Setting Key '%s'. Guest Guests Guests Separator 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. How long till it will remove the user from the database (In seconds). Member Member Names Separator Members Most users ever online was <strong>%s</strong>. Most users ever online was <strong>%s</strong>. Most users ever online were <strong>%s</strong>, on <strong>%s</strong> Naming Conventions: No No One Is Online Now No User Is Browsing This Page No User Is Browsing This Site No Useronline Option Updated On Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first. Online Online Now Plural Form Restore Default Template Save Changes Setting Key '%s' has been deleted. Singular Form Table '%s' has been deleted. The following WordPress Options/Tables will be DELETED: There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>. There are a total of <strong><a href="%s">%s users</a></strong> online now. There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>. There is <strong><a href="%s">%s user</a></strong> online now. Time Out UNINSTALL WP-UserOnline 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 Uninstall WP-UserOnline Updated User User(s) Browsing Page Template User(s) Browsing Page: User(s) Browsing Site Template User(s) Browsing Site: User(s) Online Template User(s) Online: UserOnline UserOnline URL Useronline Useronline Bots Useronline Naming Conventions Useronline Options Useronline Templates Useronline Timeout Useronline URL Users Users Online Now Users|Template Element WARNING: WP-UserOnline Widget Title WordPress Options WordPress Tables Yes You Are About To Uninstall WP-UserOnline From WordPress.\nThis Action Is Not Reversible.\n\n Choose [Cancel] To Stop, [OK] To Uninstall. guest on referral url Project-Id-Version: WP-UserOnline 2.40
34
+ Report-Msgid-Bugs-To:
35
+ POT-Creation-Date: 2009-01-04 20:34+0800
36
+ PO-Revision-Date: 2009-02-28 15:25+0100
37
+ Last-Translator: Calle <crozz17@hotmail.com>
38
+ Language-Team: Lester Chan <lesterchan@gmail.com>
39
+ MIME-Version: 1.0
40
+ Content-Type: text/plain; charset=UTF-8
41
+ Content-Transfer-Encoding: 8bit
42
+ X-Poedit-Country: SINGAPORE
43
+ X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2;__ngettext_noop:1,2
44
+ X-Poedit-Basepath: .
45
+ X-Poedit-Language: English
46
+ Plural-Forms: nplurals=2; plural=n != 1;
47
+ X-Poedit-SearchPath-0: .
48
+ %USERONLINE_COUNT% botar %USERONLINE_COUNT% gäster %USERONLINE_COUNT% medlemmar %USERONLINE_COUNT% användare %s @ %s , 1 bot 1 gäst 1 medlem 1 användare <a href="%s">Klicka här</a> för att avsluta avinstallationen och WP-Useronline kommer att deaktiveras automatiskt. <strong>%s</strong> användare är online nu. <strong>%s</strong> användare är online nu. Tillåtna variabler: Blog Arkiv Bot Botar Bot namn/Användare Bot separator Besök denna sida. Deaktivering utav WP-UserOnline's tillägg tar ej bort data som det kan ha skapat, som tex useronline inställningar. För att helt ta bort detta tillägg, så kan du avinstallera det här. Visa användare besöker hemsidan under räkna användare online? Fel uppstod när inställningsnyckeln '%s' försöktes tas bort. Gäst Gäster Gäst separator Här är listan över botar och deras webbläsare.<br />På vänstra kolumnen kommer det vara <strong>Botarnas namn</strong> och på den högra kolumnen så kommer det vara deras <strong>Webbläsare</strong>.<br />Börja varje post på en ny rad. Hur lång tid det kommer ta att radera användaren från databasen (i sekunder). Medlem Användarnamns separator Medlemmar Flest användare online samtidigt var den <strong>%s</strong>. Flest användare online samtidigt var den <strong>%s</strong>. Flest användare online någonsin var <strong>%s</strong>, den <strong>%s</strong> Döpa konventioner: Nej Ingen är online just nu Ingen användare besöker denna sida Inga användare besöker denna hemsida Inga Useronline På Efter avinstallering så kan detta ej bli ogjort. Du borde använda ett Databas Backup tillägg av Wordpress för att säkerhetskopiera all data. Online Online nu Plural form Återställ till den vanliga Mallen Spara ändringar Inställningsnyckeln '%s' har blivit raderad. Singular form Tabell '%s' har blivit raderad. De följande Wordpress inställningarna/tabellerna kommer att RADERAS: Det är totalt <strong>%s</strong>online just nu: <strong>%s</strong>, <strong>%s</strong> och <strong>%s</strong>. Det är totalt <strong><a href="%s">%s användare</a></strong> online just nu. Det är <strong>%s</strong> online just nu: <strong>%s</strong>, <strong>%s</strong> och <strong>%s</strong>. Det är <strong><a href="%s">%s användare</a></strong> online just nu. Tiden är ute AVINSTALLERA WP-Useronline URL till UserOnline sida (lämna den blank ifall du inte vill ha en länk till UserOnline sidan)<br />Exempel: http://www.minsida.se/blogs/useronline/<br />Exempel: http://www.minsida.se/blogs/?page_id=2 Avinstallera WP-Useronline Uppdaterad Användare Användare(s) visande sidlayout Användare som besöker sida: Användare(s) visande layout Användare som besöker hemsida: Användare(s) online layout Användare Online: UserOnline UserOnline URL Användare Online Useronline Botar Useronline's namn konvention Useronline inställningar Useronline Mall Useronline Timeout Useronline URL Användare Användare online just nu Users|Template Element VARNING: WP-UserOnline Widget Titel Wordpress Inställningar Wordpress Tabeller Ja Du är på väg att avinstallera WP-UserOnline från Wordpress..\nDu kan ej ångra detta.\n\nVälj [Avbryt] för att stoppa, [OK] för att avinstallera. gäst på hänvisning url
49
+
50
+ http://www.stupid0.net
lang/wp-useronline-sv_SE.po ADDED
@@ -0,0 +1,449 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline 2.40\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-01-04 20:34+0800\n"
6
+ "PO-Revision-Date: 2009-02-28 15:25+0100\n"
7
+ "Last-Translator: Calle <crozz17@hotmail.com>\n"
8
+ "Language-Team: Lester Chan <lesterchan@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Country: SINGAPORE\n"
13
+ "X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2;__ngettext_noop:1,2\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Language: English\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: useronline-options.php:63
20
+ msgid "Useronline Timeout"
21
+ msgstr "Useronline Timeout"
22
+
23
+ #: useronline-options.php:64
24
+ msgid "Useronline Bots"
25
+ msgstr "Useronline Botar"
26
+
27
+ #: useronline-options.php:65
28
+ msgid "Useronline URL"
29
+ msgstr "Useronline URL"
30
+
31
+ #: useronline-options.php:66
32
+ msgid "Useronline Naming Conventions"
33
+ msgstr "Useronline's namn konvention"
34
+
35
+ #: useronline-options.php:67
36
+ msgid "User(s) Online Template"
37
+ msgstr "Användare(s) online layout"
38
+
39
+ #: useronline-options.php:68
40
+ msgid "User(s) Browsing Site Template"
41
+ msgstr "Användare(s) visande layout"
42
+
43
+ #: useronline-options.php:69
44
+ msgid "User(s) Browsing Page Template"
45
+ msgstr "Användare(s) visande sidlayout"
46
+
47
+ #: useronline-options.php:74
48
+ msgid "Updated"
49
+ msgstr "Uppdaterad"
50
+
51
+ #: useronline-options.php:79
52
+ msgid "No Useronline Option Updated"
53
+ msgstr "Inga Useronline "
54
+
55
+ #: useronline-options.php:85
56
+ #: useronline-options.php:380
57
+ msgid "UNINSTALL WP-UserOnline"
58
+ msgstr "AVINSTALLERA WP-Useronline"
59
+
60
+ #: useronline-options.php:92
61
+ #, php-format
62
+ msgid "Table '%s' has been deleted."
63
+ msgstr "Tabell '%s' har blivit raderad."
64
+
65
+ #: useronline-options.php:101
66
+ #, php-format
67
+ msgid "Setting Key '%s' has been deleted."
68
+ msgstr "Inställningsnyckeln '%s' har blivit raderad."
69
+
70
+ #: useronline-options.php:105
71
+ #, php-format
72
+ msgid "Error deleting Setting Key '%s'."
73
+ msgstr "Fel uppstod när inställningsnyckeln '%s' försöktes tas bort."
74
+
75
+ #: useronline-options.php:127
76
+ #: useronline-options.php:338
77
+ msgid "Uninstall WP-UserOnline"
78
+ msgstr "Avinstallera WP-Useronline"
79
+
80
+ #: useronline-options.php:128
81
+ #, php-format
82
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
83
+ msgstr "<a href=\"%s\">Klicka här</a> för att avsluta avinstallationen och WP-Useronline kommer att deaktiveras automatiskt."
84
+
85
+ #: useronline-options.php:153
86
+ #: wp-useronline.php:914
87
+ msgid "Online"
88
+ msgstr "Online"
89
+
90
+ #: useronline-options.php:160
91
+ #: wp-useronline.php:913
92
+ msgid "1 User"
93
+ msgstr "1 användare"
94
+
95
+ #: useronline-options.php:161
96
+ #: wp-useronline.php:913
97
+ msgid "%USERONLINE_COUNT% Users"
98
+ msgstr "%USERONLINE_COUNT% användare"
99
+
100
+ #: useronline-options.php:162
101
+ #: wp-useronline.php:913
102
+ msgid "1 Member"
103
+ msgstr "1 medlem"
104
+
105
+ #: useronline-options.php:163
106
+ #: wp-useronline.php:913
107
+ msgid "%USERONLINE_COUNT% Members"
108
+ msgstr "%USERONLINE_COUNT% medlemmar"
109
+
110
+ #: useronline-options.php:164
111
+ #: wp-useronline.php:913
112
+ msgid "1 Guest"
113
+ msgstr "1 gäst"
114
+
115
+ #: useronline-options.php:165
116
+ #: wp-useronline.php:913
117
+ msgid "%USERONLINE_COUNT% Guests"
118
+ msgstr "%USERONLINE_COUNT% gäster"
119
+
120
+ #: useronline-options.php:166
121
+ #: wp-useronline.php:913
122
+ msgid "1 Bot"
123
+ msgstr "1 bot"
124
+
125
+ #: useronline-options.php:167
126
+ #: wp-useronline.php:913
127
+ msgid "%USERONLINE_COUNT% Bots"
128
+ msgstr "%USERONLINE_COUNT% botar"
129
+
130
+ #: useronline-options.php:170
131
+ #: useronline-options.php:171
132
+ #: useronline-options.php:172
133
+ #: useronline-options.php:176
134
+ #: useronline-options.php:177
135
+ #: useronline-options.php:178
136
+ #: wp-useronline.php:915
137
+ #: wp-useronline.php:916
138
+ msgid ","
139
+ msgstr ","
140
+
141
+ #: useronline-options.php:173
142
+ #: useronline-options.php:179
143
+ #: wp-useronline.php:915
144
+ #: wp-useronline.php:916
145
+ msgid "Users|Template Element"
146
+ msgstr "Users|Template Element"
147
+
148
+ #: useronline-options.php:179
149
+ #: wp-useronline.php:916
150
+ msgid "Browsing This Page."
151
+ msgstr "Besök denna sida."
152
+
153
+ #: useronline-options.php:186
154
+ #: useronline-options.php:187
155
+ msgid "Useronline Options"
156
+ msgstr "Useronline inställningar"
157
+
158
+ #: useronline-options.php:190
159
+ msgid "Time Out"
160
+ msgstr "Tiden är ute"
161
+
162
+ #: useronline-options.php:192
163
+ msgid "How long till it will remove the user from the database (In seconds)."
164
+ msgstr "Hur lång tid det kommer ta att radera användaren från databasen (i sekunder)."
165
+
166
+ #: useronline-options.php:196
167
+ msgid "UserOnline URL"
168
+ msgstr "UserOnline URL"
169
+
170
+ #: useronline-options.php:198
171
+ msgid "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"
172
+ msgstr "URL till UserOnline sida (lämna den blank ifall du inte vill ha en länk till UserOnline sidan)<br />Exempel: http://www.minsida.se/blogs/useronline/<br />Exempel: http://www.minsida.se/blogs/?page_id=2"
173
+
174
+ #: useronline-options.php:202
175
+ msgid "Bots Name/User Agent"
176
+ msgstr "Bot namn/Användare"
177
+
178
+ #: useronline-options.php:204
179
+ msgid "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."
180
+ msgstr "Här är listan över botar och deras webbläsare.<br />På vänstra kolumnen kommer det vara <strong>Botarnas namn</strong> och på den högra kolumnen så kommer det vara deras <strong>Webbläsare</strong>.<br />Börja varje post på en ny rad."
181
+
182
+ #: useronline-options.php:212
183
+ msgid "Naming Conventions:"
184
+ msgstr "Döpa konventioner:"
185
+
186
+ #: useronline-options.php:213
187
+ #: useronline-options.php:254
188
+ #: useronline-options.php:266
189
+ #: useronline-options.php:298
190
+ msgid "Allowed Variables:"
191
+ msgstr "Tillåtna variabler:"
192
+
193
+ #: useronline-options.php:215
194
+ #: useronline-options.php:259
195
+ #: useronline-options.php:274
196
+ #: useronline-options.php:306
197
+ msgid "Restore Default Template"
198
+ msgstr "Återställ till den vanliga Mallen"
199
+
200
+ #: useronline-options.php:221
201
+ msgid "Singular Form"
202
+ msgstr "Singular form"
203
+
204
+ #: useronline-options.php:222
205
+ msgid "Plural Form"
206
+ msgstr "Plural form"
207
+
208
+ #: useronline-options.php:249
209
+ msgid "Useronline Templates"
210
+ msgstr "Useronline Mall"
211
+
212
+ #: useronline-options.php:253
213
+ msgid "User(s) Online:"
214
+ msgstr "Användare Online:"
215
+
216
+ #: useronline-options.php:265
217
+ msgid "User(s) Browsing Site:"
218
+ msgstr "Användare som besöker hemsida:"
219
+
220
+ #: useronline-options.php:280
221
+ #: useronline-options.php:312
222
+ msgid "Member Names Separator"
223
+ msgstr "Användarnamns separator"
224
+
225
+ #: useronline-options.php:281
226
+ #: useronline-options.php:313
227
+ msgid "Guests Separator"
228
+ msgstr "Gäst separator"
229
+
230
+ #: useronline-options.php:282
231
+ #: useronline-options.php:314
232
+ msgid "Bots Separator"
233
+ msgstr "Bot separator"
234
+
235
+ #: useronline-options.php:297
236
+ msgid "User(s) Browsing Page:"
237
+ msgstr "Användare som besöker sida:"
238
+
239
+ #: useronline-options.php:329
240
+ msgid "Save Changes"
241
+ msgstr "Spara ändringar"
242
+
243
+ #: useronline-options.php:340
244
+ msgid "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."
245
+ msgstr "Deaktivering utav WP-UserOnline's tillägg tar ej bort data som det kan ha skapat, som tex useronline inställningar. För att helt ta bort detta tillägg, så kan du avinstallera det här."
246
+
247
+ #: useronline-options.php:343
248
+ msgid "WARNING:"
249
+ msgstr "VARNING:"
250
+
251
+ #: useronline-options.php:344
252
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
253
+ msgstr "Efter avinstallering så kan detta ej bli ogjort. Du borde använda ett Databas Backup tillägg av Wordpress för att säkerhetskopiera all data."
254
+
255
+ #: useronline-options.php:347
256
+ msgid "The following WordPress Options/Tables will be DELETED:"
257
+ msgstr "De följande Wordpress inställningarna/tabellerna kommer att RADERAS:"
258
+
259
+ #: useronline-options.php:352
260
+ msgid "WordPress Options"
261
+ msgstr "Wordpress Inställningar"
262
+
263
+ #: useronline-options.php:353
264
+ msgid "WordPress Tables"
265
+ msgstr "Wordpress Tabeller"
266
+
267
+ #: useronline-options.php:379
268
+ #: wp-useronline-widget.php:73
269
+ msgid "Yes"
270
+ msgstr "Ja"
271
+
272
+ #: useronline-options.php:380
273
+ msgid ""
274
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
275
+ "This Action Is Not Reversible.\\n"
276
+ "\\n"
277
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
278
+ msgstr ""
279
+ "Du är på väg att avinstallera WP-UserOnline från Wordpress..\\n"
280
+ "Du kan ej ångra detta.\\n"
281
+ "\\n"
282
+ "Välj [Avbryt] för att stoppa, [OK] för att avinstallera."
283
+
284
+ #: wp-useronline-widget.php:62
285
+ msgid "UserOnline"
286
+ msgstr "UserOnline"
287
+
288
+ #: wp-useronline-widget.php:69
289
+ msgid "Widget Title"
290
+ msgstr "Widget Titel"
291
+
292
+ #: wp-useronline-widget.php:70
293
+ msgid "Display Users Browsing Site Under Users Online Count?"
294
+ msgstr "Visa användare besöker hemsidan under räkna användare online?"
295
+
296
+ #: wp-useronline-widget.php:75
297
+ msgid "No"
298
+ msgstr "Nej"
299
+
300
+ #: wp-useronline.php:58
301
+ #: wp-useronline.php:844
302
+ #: wp-useronline.php:846
303
+ #: wp-useronline.php:856
304
+ msgid "WP-UserOnline"
305
+ msgstr "WP-UserOnline"
306
+
307
+ #: wp-useronline.php:61
308
+ msgid "Useronline"
309
+ msgstr "Användare Online"
310
+
311
+ #: wp-useronline.php:126
312
+ msgid "guest"
313
+ msgstr "gäst"
314
+
315
+ #: wp-useronline.php:132
316
+ #: wp-useronline.php:707
317
+ msgid "Guest"
318
+ msgstr "Gäst"
319
+
320
+ #: wp-useronline.php:147
321
+ msgid "Blog Archive"
322
+ msgstr "Blog Arkiv"
323
+
324
+ #: wp-useronline.php:228
325
+ #: wp-useronline.php:259
326
+ #: wp-useronline.php:742
327
+ #: wp-useronline.php:744
328
+ #: wp-useronline.php:762
329
+ #: wp-useronline.php:764
330
+ #: wp-useronline.php:777
331
+ #, php-format
332
+ msgid "%s @ %s"
333
+ msgstr "%s @ %s"
334
+
335
+ #: wp-useronline.php:396
336
+ msgid "No User Is Browsing This Site"
337
+ msgstr "Inga användare besöker denna hemsida"
338
+
339
+ #: wp-useronline.php:538
340
+ msgid "No User Is Browsing This Page"
341
+ msgstr "Ingen användare besöker denna sida"
342
+
343
+ #: wp-useronline.php:609
344
+ msgid "Users Online Now"
345
+ msgstr "Användare online just nu"
346
+
347
+ #: wp-useronline.php:621
348
+ #, php-format
349
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
350
+ msgstr "Det är <strong><a href=\"%s\">%s användare</a></strong> online just nu."
351
+
352
+ #: wp-useronline.php:623
353
+ #, php-format
354
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
355
+ msgstr "Det är totalt <strong><a href=\"%s\">%s användare</a></strong> online just nu."
356
+
357
+ #: wp-useronline.php:628
358
+ #: wp-useronline.php:729
359
+ #, php-format
360
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
361
+ msgstr "Flest användare online någonsin var <strong>%s</strong>, den <strong>%s</strong>"
362
+
363
+ #: wp-useronline.php:692
364
+ msgid "User"
365
+ msgstr "Användare"
366
+
367
+ #: wp-useronline.php:694
368
+ msgid "Users"
369
+ msgstr "Användare"
370
+
371
+ #: wp-useronline.php:699
372
+ msgid "Member"
373
+ msgstr "Medlem"
374
+
375
+ #: wp-useronline.php:701
376
+ msgid "Members"
377
+ msgstr "Medlemmar"
378
+
379
+ #: wp-useronline.php:709
380
+ msgid "Guests"
381
+ msgstr "Gäster"
382
+
383
+ #: wp-useronline.php:714
384
+ msgid "Bot"
385
+ msgstr "Bot"
386
+
387
+ #: wp-useronline.php:716
388
+ msgid "Bots"
389
+ msgstr "Botar"
390
+
391
+ #: wp-useronline.php:725
392
+ #, php-format
393
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
394
+ msgstr "Det är <strong>%s</strong> online just nu: <strong>%s</strong>, <strong>%s</strong> och <strong>%s</strong>."
395
+
396
+ #: wp-useronline.php:727
397
+ #, php-format
398
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
399
+ msgstr "Det är totalt <strong>%s</strong>online just nu: <strong>%s</strong>, <strong>%s</strong> och <strong>%s</strong>."
400
+
401
+ #: wp-useronline.php:732
402
+ #: wp-useronline.php:752
403
+ #: wp-useronline.php:772
404
+ msgid "Online Now"
405
+ msgstr "Online nu"
406
+
407
+ #: wp-useronline.php:739
408
+ #: wp-useronline.php:759
409
+ msgid "referral"
410
+ msgstr "hänvisning"
411
+
412
+ #: wp-useronline.php:742
413
+ #: wp-useronline.php:744
414
+ #: wp-useronline.php:762
415
+ #: wp-useronline.php:764
416
+ #: wp-useronline.php:777
417
+ msgid "on"
418
+ msgstr "på"
419
+
420
+ #: wp-useronline.php:742
421
+ #: wp-useronline.php:744
422
+ #: wp-useronline.php:762
423
+ #: wp-useronline.php:764
424
+ #: wp-useronline.php:777
425
+ msgid "url"
426
+ msgstr "url"
427
+
428
+ #: wp-useronline.php:784
429
+ msgid "No One Is Online Now"
430
+ msgstr "Ingen är online just nu"
431
+
432
+ #: wp-useronline.php:858
433
+ #, php-format
434
+ msgid "<strong>%s</strong> user online now."
435
+ msgid_plural "<strong>%s</strong> users online now."
436
+ msgstr[0] "<strong>%s</strong> användare är online nu."
437
+ msgstr[1] "<strong>%s</strong> användare är online nu."
438
+
439
+ #: wp-useronline.php:859
440
+ #, php-format
441
+ msgid "Most users ever online was <strong>%s</strong>."
442
+ msgid_plural "Most users ever online was <strong>%s</strong>."
443
+ msgstr[0] "Flest användare online samtidigt var den <strong>%s</strong>."
444
+ msgstr[1] "Flest användare online samtidigt var den <strong>%s</strong>."
445
+
446
+ #: wp-useronline.php:860
447
+ msgid "On"
448
+ msgstr "På"
449
+
lang/wp-useronline-tr_TR.mo ADDED
Binary file
lang/wp-useronline-tr_TR.po ADDED
@@ -0,0 +1,462 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Useronline 2.50 Türkçe\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-06-11 23:49+0800\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: İzzet Emre Erkan <kara@karalamalar.net>\n"
8
+ "Language-Team: karalamalar.net <kara@karalamalar.net>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=1; plural=0;\n"
13
+ "X-Poedit-Language: Turkish\n"
14
+ "X-Poedit-Country: TURKEY\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+
17
+ #: useronline-options.php:63
18
+ msgid "Useronline Timeout"
19
+ msgstr "Useronline zaman aşımı"
20
+
21
+ #: useronline-options.php:64
22
+ msgid "Useronline Bots"
23
+ msgstr "Useronline Botları"
24
+
25
+ #: useronline-options.php:65
26
+ msgid "Useronline URL"
27
+ msgstr "Useronline adresi"
28
+
29
+ #: useronline-options.php:66
30
+ msgid "Useronline Naming Conventions"
31
+ msgstr "Useronline isimlendirme kuralları"
32
+
33
+ #: useronline-options.php:67
34
+ msgid "User(s) Online Template"
35
+ msgstr "Çevrimiçi kullanıcı(lar) şablonu"
36
+
37
+ #: useronline-options.php:68
38
+ msgid "User(s) Browsing Site Template"
39
+ msgstr "Siteyi gezen kullanıcı(lar) şablonu"
40
+
41
+ #: useronline-options.php:69
42
+ msgid "User(s) Browsing Page Template"
43
+ msgstr "Sayfayı gezen kullanıcı(lar) şablonu"
44
+
45
+ #: useronline-options.php:74
46
+ msgid "Updated"
47
+ msgstr "Güncellendi"
48
+
49
+ #: useronline-options.php:79
50
+ msgid "No Useronline Option Updated"
51
+ msgstr "Güncellenen Useronline seçeneği yok"
52
+
53
+ #: useronline-options.php:85
54
+ #: useronline-options.php:380
55
+ msgid "UNINSTALL WP-UserOnline"
56
+ msgstr "WP-UserOnline eklentisini KALDIR"
57
+
58
+ #: useronline-options.php:92
59
+ #, php-format
60
+ msgid "Table '%s' has been deleted."
61
+ msgstr "'%s' tablosu silindi."
62
+
63
+ #: useronline-options.php:101
64
+ #, php-format
65
+ msgid "Setting Key '%s' has been deleted."
66
+ msgstr "'%s' ayar anahtarı silindi."
67
+
68
+ #: useronline-options.php:105
69
+ #, php-format
70
+ msgid "Error deleting Setting Key '%s'."
71
+ msgstr "'%s' ayar anahtarını silerken hata oluştu."
72
+
73
+ #: useronline-options.php:127
74
+ #: useronline-options.php:338
75
+ msgid "Uninstall WP-UserOnline"
76
+ msgstr "WP-UserOnline eklentisini kaldır"
77
+
78
+ #: useronline-options.php:128
79
+ #, php-format
80
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
81
+ msgstr "Kaldırma işlemini bitirmek için <a href=\"%s\">buraya</a> tıklayın. WP-UserOnline otomatik olarak pasif duruma geçecektir."
82
+
83
+ #: useronline-options.php:153
84
+ #: wp-useronline.php:1013
85
+ msgid "Online"
86
+ msgstr "Çevrimiçi"
87
+
88
+ #: useronline-options.php:160
89
+ #: wp-useronline.php:1012
90
+ msgid "1 User"
91
+ msgstr "1 kullanıcı"
92
+
93
+ #: useronline-options.php:161
94
+ #: wp-useronline.php:1012
95
+ msgid "%USERONLINE_COUNT% Users"
96
+ msgstr "%USERONLINE_COUNT% kullanıcı"
97
+
98
+ #: useronline-options.php:162
99
+ #: wp-useronline.php:1012
100
+ msgid "1 Member"
101
+ msgstr "1 üye"
102
+
103
+ #: useronline-options.php:163
104
+ #: wp-useronline.php:1012
105
+ msgid "%USERONLINE_COUNT% Members"
106
+ msgstr "%USERONLINE_COUNT% üye"
107
+
108
+ #: useronline-options.php:164
109
+ #: wp-useronline.php:1012
110
+ msgid "1 Guest"
111
+ msgstr "1 misafir"
112
+
113
+ #: useronline-options.php:165
114
+ #: wp-useronline.php:1012
115
+ msgid "%USERONLINE_COUNT% Guests"
116
+ msgstr "%USERONLINE_COUNT% misafir"
117
+
118
+ #: useronline-options.php:166
119
+ #: wp-useronline.php:1012
120
+ msgid "1 Bot"
121
+ msgstr "1 Bot"
122
+
123
+ #: useronline-options.php:167
124
+ #: wp-useronline.php:1012
125
+ msgid "%USERONLINE_COUNT% Bots"
126
+ msgstr "%USERONLINE_COUNT% Bot"
127
+
128
+ #: useronline-options.php:170
129
+ #: useronline-options.php:171
130
+ #: useronline-options.php:172
131
+ #: useronline-options.php:176
132
+ #: useronline-options.php:177
133
+ #: useronline-options.php:178
134
+ #: wp-useronline.php:1014
135
+ #: wp-useronline.php:1015
136
+ msgid ","
137
+ msgstr ","
138
+
139
+ #: useronline-options.php:173
140
+ #: useronline-options.php:179
141
+ #: wp-useronline.php:1014
142
+ #: wp-useronline.php:1015
143
+ msgid "Users|Template Element"
144
+ msgstr "Kullanıcılar|Şablon elemanı"
145
+
146
+ #: useronline-options.php:179
147
+ #: wp-useronline.php:1015
148
+ msgid "Browsing This Page."
149
+ msgstr "Bu sayfayı gezenler."
150
+
151
+ #: useronline-options.php:186
152
+ #: useronline-options.php:187
153
+ msgid "Useronline Options"
154
+ msgstr "Useronline seçenekleri"
155
+
156
+ #: useronline-options.php:190
157
+ msgid "Time Out"
158
+ msgstr "Zaman aşımı"
159
+
160
+ #: useronline-options.php:192
161
+ msgid "How long till it will remove the user from the database (In seconds)."
162
+ msgstr "Bir kullanıcıyı veritabanından çıkarmak için geçecek süre (saniye olarak)."
163
+
164
+ #: useronline-options.php:196
165
+ msgid "UserOnline URL"
166
+ msgstr "UserOnline adresi"
167
+
168
+ #: useronline-options.php:198
169
+ msgid "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"
170
+ msgstr "UserOnline sayfası için adres (Eğer böyle bir sayfa istemiyorsanız boş bırakabilirsiniz.)<br />Örneğin: http://www.siteniz.com/ziyaretciler/<br />Örneğin: http://www.siteniz.com/?page_id=2"
171
+
172
+ #: useronline-options.php:202
173
+ msgid "Bots Name/User Agent"
174
+ msgstr "Bos ismi/Tarayıcı tanımı"
175
+
176
+ #: useronline-options.php:204
177
+ msgid "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."
178
+ msgstr "Burada bir kısım bot ve onların kısmi tarayıcı tanımları bulunmaktadır.<br />Sol sütunda <strong>bot ismi</strong> ve sağ sütunda ilgili botun <strong>kısmi tarayıcı tanımı</strong> bulunmaktadır.<br />Her bir girdiyi yeni bir satıra yazın."
179
+
180
+ #: useronline-options.php:212
181
+ msgid "Naming Conventions:"
182
+ msgstr "İsimlendirme kuralları:"
183
+
184
+ #: useronline-options.php:213
185
+ #: useronline-options.php:254
186
+ #: useronline-options.php:266
187
+ #: useronline-options.php:298
188
+ msgid "Allowed Variables:"
189
+ msgstr "İzin verilen değişkenler:"
190
+
191
+ #: useronline-options.php:215
192
+ #: useronline-options.php:259
193
+ #: useronline-options.php:274
194
+ #: useronline-options.php:306
195
+ msgid "Restore Default Template"
196
+ msgstr "Varsayılan şablona geri dön"
197
+
198
+ #: useronline-options.php:221
199
+ msgid "Singular Form"
200
+ msgstr "Tekil form"
201
+
202
+ #: useronline-options.php:222
203
+ msgid "Plural Form"
204
+ msgstr "Çoğul form"
205
+
206
+ #: useronline-options.php:249
207
+ msgid "Useronline Templates"
208
+ msgstr "Useronline şablonları"
209
+
210
+ #: useronline-options.php:253
211
+ msgid "User(s) Online:"
212
+ msgstr "Çevrimiçi ziyaretçiler:"
213
+
214
+ #: useronline-options.php:265
215
+ msgid "User(s) Browsing Site:"
216
+ msgstr "Siteyi gezen ziyaretçiler"
217
+
218
+ #: useronline-options.php:280
219
+ #: useronline-options.php:312
220
+ msgid "Member Names Separator"
221
+ msgstr "Üye ismi ayracı"
222
+
223
+ #: useronline-options.php:281
224
+ #: useronline-options.php:313
225
+ msgid "Guests Separator"
226
+ msgstr "Ziyaretçi ayracı"
227
+
228
+ #: useronline-options.php:282
229
+ #: useronline-options.php:314
230
+ msgid "Bots Separator"
231
+ msgstr "Bot ayracı"
232
+
233
+ #: useronline-options.php:297
234
+ msgid "User(s) Browsing Page:"
235
+ msgstr "Sayfayı gezen kullanıcılar:"
236
+
237
+ #: useronline-options.php:329
238
+ msgid "Save Changes"
239
+ msgstr "Değişiklikleri kaydet"
240
+
241
+ #: useronline-options.php:340
242
+ msgid "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."
243
+ msgstr "WP-UserOnline eklentisini pasifleştirmeniz eklenti tarafından yaratılan, yazdırma ayarları vb verileri kaldırmayacaktır. Eklentiyi tamamen kaldırmak için burayı kullanabilirsiniz."
244
+
245
+ #: useronline-options.php:343
246
+ msgid "WARNING:"
247
+ msgstr "UYARI:"
248
+
249
+ #: useronline-options.php:344
250
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
251
+ msgstr "Kaldırma işleminden geri dönülemez. İşleme başlamadan önce veritabanınızın yedeğini almanızı öneririz."
252
+
253
+ #: useronline-options.php:347
254
+ msgid "The following WordPress Options/Tables will be DELETED:"
255
+ msgstr "Belirtilen WordPress seçenekleri SİLİNECEKTİR:"
256
+
257
+ #: useronline-options.php:352
258
+ msgid "WordPress Options"
259
+ msgstr "WordPress seçenekleri"
260
+
261
+ #: useronline-options.php:353
262
+ msgid "WordPress Tables"
263
+ msgstr "WordPress tabloları"
264
+
265
+ #: useronline-options.php:379
266
+ msgid "Yes"
267
+ msgstr "Evet"
268
+
269
+ #: useronline-options.php:380
270
+ msgid ""
271
+ "You Are About To Uninstall WP-UserOnline From WordPress.\\n"
272
+ "This Action Is Not Reversible.\\n"
273
+ "\\n"
274
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
275
+ msgstr ""
276
+ "WP-UserOnline eklentisini WordPress üzerinden kaldırmak üzeresiniz.\\n"
277
+ "Bu eylemin geri dönüşü yoktur.\\n"
278
+ "\\n"
279
+ " Durmak için [İptal], kaldırmak için [Tamam] tuşuna basın."
280
+
281
+ #: wp-useronline.php:58
282
+ #: wp-useronline.php:846
283
+ #: wp-useronline.php:848
284
+ #: wp-useronline.php:858
285
+ msgid "WP-UserOnline"
286
+ msgstr "WP-UserOnline"
287
+
288
+ #: wp-useronline.php:61
289
+ #: wp-useronline.php:873
290
+ #: wp-useronline.php:934
291
+ msgid "UserOnline"
292
+ msgstr "UserOnline"
293
+
294
+ #: wp-useronline.php:128
295
+ msgid "guest"
296
+ msgstr "ziyaretçi"
297
+
298
+ #: wp-useronline.php:134
299
+ #: wp-useronline.php:709
300
+ msgid "Guest"
301
+ msgstr "Ziyaretçi"
302
+
303
+ #: wp-useronline.php:149
304
+ msgid "Blog Archive"
305
+ msgstr "Blog arşivi"
306
+
307
+ #: wp-useronline.php:230
308
+ #: wp-useronline.php:261
309
+ #: wp-useronline.php:744
310
+ #: wp-useronline.php:746
311
+ #: wp-useronline.php:764
312
+ #: wp-useronline.php:766
313
+ #: wp-useronline.php:779
314
+ #, php-format
315
+ msgid "%s @ %s"
316
+ msgstr "%s @ %s"
317
+
318
+ #: wp-useronline.php:398
319
+ msgid "No User Is Browsing This Site"
320
+ msgstr "Siteyi gezen herhangi bir kullanıcı yok"
321
+
322
+ #: wp-useronline.php:540
323
+ msgid "No User Is Browsing This Page"
324
+ msgstr "Bu sayfayı gezen herhangi bir kullanıcı yok"
325
+
326
+ #: wp-useronline.php:611
327
+ msgid "Users Online Now"
328
+ msgstr "Şu an çevrimiçi olan kullanıcılar"
329
+
330
+ #: wp-useronline.php:623
331
+ #, php-format
332
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
333
+ msgstr "Şu an <strong><a href=\"%s\">%s kullanıcı</a></strong> çevrimiçi."
334
+
335
+ #: wp-useronline.php:625
336
+ #, php-format
337
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
338
+ msgstr "Toplamda <strong><a href=\"%s\">%s kullanıcı</a></strong> çevrimiçi."
339
+
340
+ #: wp-useronline.php:630
341
+ #: wp-useronline.php:731
342
+ #, php-format
343
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
344
+ msgstr "En çok çevrimiçi ziyaretçi <strong>%s</strong>, <strong>%s</strong>"
345
+
346
+ #: wp-useronline.php:694
347
+ msgid "User"
348
+ msgstr "Kullanıcı"
349
+
350
+ #: wp-useronline.php:696
351
+ msgid "Users"
352
+ msgstr "Kullanıcılar"
353
+
354
+ #: wp-useronline.php:701
355
+ msgid "Member"
356
+ msgstr "Üye"
357
+
358
+ #: wp-useronline.php:703
359
+ msgid "Members"
360
+ msgstr "Üyeler"
361
+
362
+ #: wp-useronline.php:711
363
+ msgid "Guests"
364
+ msgstr "Misafirler"
365
+
366
+ #: wp-useronline.php:716
367
+ msgid "Bot"
368
+ msgstr "Bot"
369
+
370
+ #: wp-useronline.php:718
371
+ msgid "Bots"
372
+ msgstr "Botlar"
373
+
374
+ #: wp-useronline.php:727
375
+ #, php-format
376
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
377
+ msgstr "Şu an <strong>%s</strong> çevrimiçi: <strong>%s</strong>, <strong>%s</strong> ve <strong>%s</strong>."
378
+
379
+ #: wp-useronline.php:729
380
+ #, php-format
381
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
382
+ msgstr "Toplamda <strong>%s</strong> çevrimiçi: <strong>%s</strong>, <strong>%s</strong> ve <strong>%s</strong>."
383
+
384
+ #: wp-useronline.php:734
385
+ #: wp-useronline.php:754
386
+ #: wp-useronline.php:774
387
+ msgid "Online Now"
388
+ msgstr "Şu an çevrimiçi"
389
+
390
+ #: wp-useronline.php:741
391
+ #: wp-useronline.php:761
392
+ msgid "referral"
393
+ msgstr "gönderen"
394
+
395
+ #: wp-useronline.php:744
396
+ #: wp-useronline.php:746
397
+ #: wp-useronline.php:764
398
+ #: wp-useronline.php:766
399
+ #: wp-useronline.php:779
400
+ msgid "on"
401
+ msgstr "açık"
402
+
403
+ #: wp-useronline.php:744
404
+ #: wp-useronline.php:746
405
+ #: wp-useronline.php:764
406
+ #: wp-useronline.php:766
407
+ #: wp-useronline.php:779
408
+ msgid "url"
409
+ msgstr "adres"
410
+
411
+ #: wp-useronline.php:786
412
+ msgid "No One Is Online Now"
413
+ msgstr "Şu an kimse çevrimiçi değil"
414
+
415
+ #: wp-useronline.php:860
416
+ #, php-format
417
+ msgid "<strong>%s</strong> user online now."
418
+ msgid_plural "<strong>%s</strong> users online now."
419
+ msgstr[0] "<strong>%s</strong> kullanıcı şu an çevrimiçi."
420
+
421
+ #: wp-useronline.php:861
422
+ #, php-format
423
+ msgid "Most users ever online was <strong>%s</strong>."
424
+ msgid_plural "Most users ever online was <strong>%s</strong>."
425
+ msgstr[0] "En çok kullanıcının çevrimiçi olduğu zaman: <strong>%s</strong>."
426
+
427
+ #: wp-useronline.php:862
428
+ msgid "On"
429
+ msgstr "Açık"
430
+
431
+ #: wp-useronline.php:872
432
+ msgid "WP-UserOnline users online statistics"
433
+ msgstr "WP-UserOnline çevrimiçi ziyaretçi istatistikleri"
434
+
435
+ #: wp-useronline.php:939
436
+ msgid "Title:"
437
+ msgstr "Başlık:"
438
+
439
+ #: wp-useronline.php:942
440
+ msgid "Statistics Type:"
441
+ msgstr "İstatistik tipi:"
442
+
443
+ #: wp-useronline.php:944
444
+ msgid "Users Online Count"
445
+ msgstr "Çevrimiçi kullanıcı sayısı"
446
+
447
+ #: wp-useronline.php:945
448
+ msgid "Users Browsing Current Page"
449
+ msgstr "Şu anki sayfayı gezen kullanıcı sayısı"
450
+
451
+ #: wp-useronline.php:946
452
+ msgid "Users Browsing Site"
453
+ msgstr "Siteyi gezen kullanıcı sayısı"
454
+
455
+ #: wp-useronline.php:948
456
+ msgid "Users Online Count & Users Browsing Current Page"
457
+ msgstr "Çevrimiçi kullanıcı sayısı ve şuanki sayfayı gezen kullanıcılar"
458
+
459
+ #: wp-useronline.php:949
460
+ msgid "Users Online Count & Users Browsing Site"
461
+ msgstr "Çevrimiçi kullanıcı sayısı ve siteyi gezen kullanıcılar"
462
+
lang/wp-useronline-zh_CN.mo ADDED
Binary file
lang/wp-useronline-zh_CN.po ADDED
@@ -0,0 +1,565 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-UserOnline v2.50\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2009-08-02 19:24-0700\n"
7
+ "Last-Translator: sparanoid <info@sparanoid.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Chinese\n"
14
+ "X-Poedit-Country: PEOPLE'S REPUBLIC OF CHINA\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: \n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: useronline-options.php:63
23
+ #@ wp-useronline
24
+ msgid "Useronline Timeout"
25
+ msgstr "在线用户超时"
26
+
27
+ #: useronline-options.php:64
28
+ #@ wp-useronline
29
+ msgid "Useronline Bots"
30
+ msgstr "在线用户机器人"
31
+
32
+ #: useronline-options.php:65
33
+ #@ wp-useronline
34
+ msgid "Useronline URL"
35
+ msgstr "在线用户页面地址"
36
+
37
+ #: useronline-options.php:66
38
+ #@ wp-useronline
39
+ msgid "Useronline Naming Conventions"
40
+ msgstr "在线用户名称转换"
41
+
42
+ #: useronline-options.php:67
43
+ #@ wp-useronline
44
+ msgid "User(s) Online Template"
45
+ msgstr "“在线人数”模板"
46
+
47
+ #: useronline-options.php:68
48
+ #@ wp-useronline
49
+ msgid "User(s) Browsing Site Template"
50
+ msgstr "“访问本站的用户”模板"
51
+
52
+ #: useronline-options.php:69
53
+ #@ wp-useronline
54
+ msgid "User(s) Browsing Page Template"
55
+ msgstr "“用户正在浏览的页面”模板"
56
+
57
+ #: useronline-options.php:74
58
+ #@ wp-useronline
59
+ msgid "Updated"
60
+ msgstr "已更新"
61
+
62
+ #: useronline-options.php:79
63
+ #@ wp-useronline
64
+ msgid "No Useronline Option Updated"
65
+ msgstr "没有需要更新的设置"
66
+
67
+ #: useronline-options.php:85
68
+ #: useronline-options.php:380
69
+ #@ wp-useronline
70
+ msgid "UNINSTALL WP-UserOnline"
71
+ msgstr "删除 WP-UserOnline"
72
+
73
+ #: useronline-options.php:92
74
+ #, php-format
75
+ #@ wp-useronline
76
+ msgid "Table '%s' has been deleted."
77
+ msgstr "数据表“%s”已被删除。"
78
+
79
+ #: useronline-options.php:101
80
+ #, php-format
81
+ #@ wp-useronline
82
+ msgid "Setting Key '%s' has been deleted."
83
+ msgstr "设置值“%s”已被删除。"
84
+
85
+ #: useronline-options.php:105
86
+ #, php-format
87
+ #@ wp-useronline
88
+ msgid "Error deleting Setting Key '%s'."
89
+ msgstr "无法删除设置值“%s”。"
90
+
91
+ #: useronline-options.php:127
92
+ #: useronline-options.php:338
93
+ #@ wp-useronline
94
+ msgid "Uninstall WP-UserOnline"
95
+ msgstr "删除 WP-UserOnline"
96
+
97
+ #: useronline-options.php:128
98
+ #, php-format
99
+ #@ wp-useronline
100
+ msgid "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-UserOnline Will Be Deactivated Automatically."
101
+ msgstr "<a href=\"%s\">点击此处</a> 完成卸载,稍后 WP-UserOnline 会被自动禁用。"
102
+
103
+ #: useronline-options.php:153
104
+ #: wp-useronline.php:1013
105
+ #@ wp-useronline
106
+ msgid "Online"
107
+ msgstr "在线"
108
+
109
+ #: useronline-options.php:160
110
+ #: wp-useronline.php:1012
111
+ #@ wp-useronline
112
+ msgid "1 User"
113
+ msgstr "1 人"
114
+
115
+ #: useronline-options.php:161
116
+ #: wp-useronline.php:1012
117
+ #, php-format
118
+ #@ wp-useronline
119
+ msgid "%USERONLINE_COUNT% Users"
120
+ msgstr "%USERONLINE_COUNT% 人"
121
+
122
+ #: useronline-options.php:162
123
+ #: wp-useronline.php:1012
124
+ #@ wp-useronline
125
+ msgid "1 Member"
126
+ msgstr "1 位会员"
127
+
128
+ #: useronline-options.php:163
129
+ #: wp-useronline.php:1012
130
+ #, php-format
131
+ #@ wp-useronline
132
+ msgid "%USERONLINE_COUNT% Members"
133
+ msgstr "%USERONLINE_COUNT% 位会员"
134
+
135
+ #: useronline-options.php:164
136
+ #: wp-useronline.php:1012
137
+ #@ wp-useronline
138
+ msgid "1 Guest"
139
+ msgstr "1 位访客"
140
+
141
+ #: useronline-options.php:165
142
+ #: wp-useronline.php:1012
143
+ #, php-format
144
+ #@ wp-useronline
145
+ msgid "%USERONLINE_COUNT% Guests"
146
+ msgstr "%USERONLINE_COUNT% 位访客"
147
+
148
+ #: useronline-options.php:166
149
+ #: wp-useronline.php:1012
150
+ #@ wp-useronline
151
+ msgid "1 Bot"
152
+ msgstr "1 位机器人"
153
+
154
+ #: useronline-options.php:167
155
+ #: wp-useronline.php:1012
156
+ #, php-format
157
+ #@ wp-useronline
158
+ msgid "%USERONLINE_COUNT% Bots"
159
+ msgstr "%USERONLINE_COUNT% 位机器人"
160
+
161
+ #: useronline-options.php:170
162
+ #: useronline-options.php:171
163
+ #: useronline-options.php:172
164
+ #: useronline-options.php:176
165
+ #: useronline-options.php:177
166
+ #: useronline-options.php:178
167
+ #: wp-useronline.php:1014
168
+ #: wp-useronline.php:1015
169
+ #@ wp-useronline
170
+ msgid ","
171
+ msgstr ","
172
+
173
+ #: useronline-options.php:173
174
+ #: useronline-options.php:179
175
+ #: wp-useronline.php:1014
176
+ #: wp-useronline.php:1015
177
+ #@ wp-useronline
178
+ msgid "Users|Template Element"
179
+ msgstr "用户|Template Element"
180
+
181
+ #: useronline-options.php:179
182
+ #: wp-useronline.php:1015
183
+ #@ wp-useronline
184
+ msgid "Browsing This Page."
185
+ msgstr "正在浏览本页"
186
+
187
+ #: useronline-options.php:186
188
+ #: useronline-options.php:187
189
+ #@ wp-useronline
190
+ msgid "Useronline Options"
191
+ msgstr "在线人数选项"
192
+
193
+ #: useronline-options.php:190
194
+ #@ wp-useronline
195
+ msgid "Time Out"
196
+ msgstr "超时设置"
197
+
198
+ #: useronline-options.php:192
199
+ #@ wp-useronline
200
+ msgid "How long till it will remove the user from the database (In seconds)."
201
+ msgstr "多长时间后用户记录从数据库中删除 (单位:秒)"
202
+
203
+ #: useronline-options.php:196
204
+ #@ wp-useronline
205
+ msgid "UserOnline URL"
206
+ msgstr "用户在线页面"
207
+
208
+ #: useronline-options.php:198
209
+ #@ wp-useronline
210
+ msgid "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"
211
+ msgstr "显示用户在线的页面 (如果您不想显示此页面请留空)<br />例子:http://www.yoursite.com/blogs/useronline/<br />例子:http://www.yoursite.com/blogs/?page_id=2"
212
+
213
+ #: useronline-options.php:202
214
+ #@ wp-useronline
215
+ msgid "Bots Name/User Agent"
216
+ msgstr "机器人/用户代理"
217
+
218
+ #: useronline-options.php:204
219
+ #@ wp-useronline
220
+ msgid "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."
221
+ msgstr "这里列出了一些搜索机器人和相应的浏览器代理。<br />左侧为 <strong>机器人</strong> 右侧为 <strong>浏览器代理</strong>。<br />每行代表一个结果"
222
+
223
+ #: useronline-options.php:212
224
+ #@ wp-useronline
225
+ msgid "Naming Conventions:"
226
+ msgstr "名称转换:"
227
+
228
+ #: useronline-options.php:213
229
+ #: useronline-options.php:254
230
+ #: useronline-options.php:266
231
+ #: useronline-options.php:298
232
+ #@ wp-useronline
233
+ msgid "Allowed Variables:"
234
+ msgstr "可用变量:"
235
+
236
+ #: useronline-options.php:215
237
+ #: useronline-options.php:259
238
+ #: useronline-options.php:274
239
+ #: useronline-options.php:306
240
+ #@ wp-useronline
241
+ msgid "Restore Default Template"
242
+ msgstr "还原默认模板"
243
+
244
+ #: useronline-options.php:221
245
+ #@ wp-useronline
246
+ msgid "Singular Form"
247
+ msgstr "单数形式"
248
+
249
+ #: useronline-options.php:222
250
+ #@ wp-useronline
251
+ msgid "Plural Form"
252
+ msgstr "复数形式"
253
+
254
+ #: useronline-options.php:249
255
+ #@ wp-useronline
256
+ msgid "Useronline Templates"
257
+ msgstr "在线人数模板"
258
+
259
+ #: useronline-options.php:253
260
+ #@ wp-useronline
261
+ msgid "User(s) Online:"
262
+ msgstr "在线人数:"
263
+
264
+ #: useronline-options.php:265
265
+ #@ wp-useronline
266
+ msgid "User(s) Browsing Site:"
267
+ msgstr "正在访问的用户:"
268
+
269
+ #: useronline-options.php:280
270
+ #: useronline-options.php:312
271
+ #@ wp-useronline
272
+ msgid "Member Names Separator"
273
+ msgstr "会员姓名分隔符"
274
+
275
+ #: useronline-options.php:281
276
+ #: useronline-options.php:313
277
+ #@ wp-useronline
278
+ msgid "Guests Separator"
279
+ msgstr "访客分隔符"
280
+
281
+ #: useronline-options.php:282
282
+ #: useronline-options.php:314
283
+ #@ wp-useronline
284
+ msgid "Bots Separator"
285
+ msgstr "机器人分隔符"
286
+
287
+ #: useronline-options.php:297
288
+ #@ wp-useronline
289
+ msgid "User(s) Browsing Page:"
290
+ msgstr "用户正在浏览的页面:"
291
+
292
+ #: useronline-options.php:329
293
+ #@ wp-useronline
294
+ msgid "Save Changes"
295
+ msgstr "保存更改"
296
+
297
+ #: useronline-options.php:340
298
+ #@ wp-useronline
299
+ msgid "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."
300
+ msgstr "禁用 WP-UserOnline 插件并不能完整的删除此插件创建的相关数据,例如插件的选项。您需要卸载它才能完全删除本插件。"
301
+
302
+ #: useronline-options.php:343
303
+ #@ wp-useronline
304
+ msgid "WARNING:"
305
+ msgstr "警告:"
306
+
307
+ #: useronline-options.php:344
308
+ #@ wp-useronline
309
+ msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first."
310
+ msgstr "一旦执行卸载,此操作不可撤销,建议您在卸载前先使用备份插件备份好相应数据。"
311
+
312
+ #: useronline-options.php:347
313
+ #@ wp-useronline
314
+ msgid "The following WordPress Options/Tables will be DELETED:"
315
+ msgstr "下列 WordPress 选项/数据表将被删除:"
316
+
317
+ #: useronline-options.php:352
318
+ #@ wp-useronline
319
+ msgid "WordPress Options"
320
+ msgstr "WordPress 选项"
321
+
322
+ #: useronline-options.php:353
323
+ #@ wp-useronline
324
+ msgid "WordPress Tables"
325
+ msgstr "WordPress 数据表"
326
+
327
+ #: useronline-options.php:379
328
+ #@ wp-useronline
329
+ msgid "Yes"
330
+ msgstr "确认删除"
331
+
332
+ #: useronline-options.php:380
333
+ #@ wp-useronline
334
+ msgid ""
335
+ "You Are About To Uninstall WP-UserOnline From WordPress.\n"
336
+ "This Action Is Not Reversible.\n"
337
+ "\n"
338
+ " Choose [Cancel] To Stop, [OK] To Uninstall."
339
+ msgstr ""
340
+ "您将要从 WordPress 中卸载 WP-UserOnline。\n"
341
+ "此操作不可撤销。\n"
342
+ "\n"
343
+ " 选择 [取消] 停止卸载,[确定] 则继续卸载。"
344
+
345
+ #: wp-useronline.php:58
346
+ #: wp-useronline.php:846
347
+ #: wp-useronline.php:848
348
+ #: wp-useronline.php:858
349
+ #@ wp-useronline
350
+ msgid "WP-UserOnline"
351
+ msgstr "在线人数"
352
+
353
+ #: wp-useronline.php:61
354
+ #: wp-useronline.php:873
355
+ #: wp-useronline.php:934
356
+ #@ wp-useronline
357
+ msgid "UserOnline"
358
+ msgstr "在线人数"
359
+
360
+ #: wp-useronline.php:128
361
+ #@ wp-useronline
362
+ msgid "guest"
363
+ msgstr "位访客"
364
+
365
+ #: wp-useronline.php:134
366
+ #: wp-useronline.php:709
367
+ #@ wp-useronline
368
+ msgid "Guest"
369
+ msgstr "位访客"
370
+
371
+ #: wp-useronline.php:149
372
+ #@ wp-useronline
373
+ msgid "Blog Archive"
374
+ msgstr "Blog 存档"
375
+
376
+ #: wp-useronline.php:230
377
+ #: wp-useronline.php:261
378
+ #: wp-useronline.php:744
379
+ #: wp-useronline.php:746
380
+ #: wp-useronline.php:764
381
+ #: wp-useronline.php:766
382
+ #: wp-useronline.php:779
383
+ #, php-format
384
+ #@ wp-useronline
385
+ msgid "%s @ %s"
386
+ msgstr "%s,时间:%s"
387
+
388
+ #: wp-useronline.php:398
389
+ #@ wp-useronline
390
+ msgid "No User Is Browsing This Site"
391
+ msgstr "没人访问本站"
392
+
393
+ #: wp-useronline.php:540
394
+ #@ wp-useronline
395
+ msgid "No User Is Browsing This Page"
396
+ msgstr "没人访问本页"
397
+
398
+ #: wp-useronline.php:611
399
+ #@ wp-useronline
400
+ msgid "Users Online Now"
401
+ msgstr "用户在线"
402
+
403
+ #: wp-useronline.php:623
404
+ #, php-format
405
+ #@ wp-useronline
406
+ msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
407
+ msgstr "当前共有 <strong><a href=\"%s\">%s 人</a></strong> 在线"
408
+
409
+ #: wp-useronline.php:625
410
+ #, php-format
411
+ #@ wp-useronline
412
+ msgid "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
413
+ msgstr "当前共有 <strong><a href=\"%s\">%s 人</a></strong> 在线"
414
+
415
+ #: wp-useronline.php:630
416
+ #: wp-useronline.php:731
417
+ #, php-format
418
+ #@ wp-useronline
419
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
420
+ msgstr "历史最高在线人数 <strong>%s</strong> 人,发生于 <strong>%s</strong>"
421
+
422
+ #: wp-useronline.php:694
423
+ #@ wp-useronline
424
+ msgid "User"
425
+ msgstr "人"
426
+
427
+ #: wp-useronline.php:696
428
+ #@ wp-useronline
429
+ msgid "Users"
430
+ msgstr "人"
431
+
432
+ #: wp-useronline.php:701
433
+ #@ wp-useronline
434
+ msgid "Member"
435
+ msgstr "位会员"
436
+
437
+ #: wp-useronline.php:703
438
+ #@ wp-useronline
439
+ msgid "Members"
440
+ msgstr "位会员"
441
+
442
+ #: wp-useronline.php:711
443
+ #@ wp-useronline
444
+ msgid "Guests"
445
+ msgstr "位访客"
446
+
447
+ #: wp-useronline.php:716
448
+ #@ wp-useronline
449
+ msgid "Bot"
450
+ msgstr "位机器人"
451
+
452
+ #: wp-useronline.php:718
453
+ #@ wp-useronline
454
+ msgid "Bots"
455
+ msgstr "位机器人"
456
+
457
+ #: wp-useronline.php:727
458
+ #, php-format
459
+ #@ wp-useronline
460
+ msgid "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
461
+ msgstr "当前共有 <strong>%s</strong> 在线:<strong>%s</strong>、<strong>%s</strong>以及 <strong>%s</strong>。"
462
+
463
+ #: wp-useronline.php:729
464
+ #, php-format
465
+ #@ wp-useronline
466
+ msgid "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>."
467
+ msgstr "当前共有 <strong>%s</strong> 在线:<strong>%s</strong>、<strong>%s</strong>以及 <strong>%s</strong>。"
468
+
469
+ #: wp-useronline.php:734
470
+ #: wp-useronline.php:754
471
+ #: wp-useronline.php:774
472
+ #@ wp-useronline
473
+ msgid "Online Now"
474
+ msgstr "在线"
475
+
476
+ #: wp-useronline.php:741
477
+ #: wp-useronline.php:761
478
+ #@ wp-useronline
479
+ msgid "referral"
480
+ msgstr "来源"
481
+
482
+ #: wp-useronline.php:744
483
+ #: wp-useronline.php:746
484
+ #: wp-useronline.php:764
485
+ #: wp-useronline.php:766
486
+ #: wp-useronline.php:779
487
+ #@ wp-useronline
488
+ msgid "on"
489
+ msgstr "访问于:"
490
+
491
+ #: wp-useronline.php:744
492
+ #: wp-useronline.php:746
493
+ #: wp-useronline.php:764
494
+ #: wp-useronline.php:766
495
+ #: wp-useronline.php:779
496
+ #@ wp-useronline
497
+ msgid "url"
498
+ msgstr "当前位置"
499
+
500
+ #: wp-useronline.php:786
501
+ #@ wp-useronline
502
+ msgid "No One Is Online Now"
503
+ msgstr "没有人在线"
504
+
505
+ #: wp-useronline.php:860
506
+ #, php-format
507
+ #@ wp-useronline
508
+ msgid "<strong>%s</strong> user online now."
509
+ msgid_plural "<strong>%s</strong> users online now."
510
+ msgstr[0] "<strong>%s</strong> 人在线。"
511
+ msgstr[1] "<strong>%s</strong> 人在线。"
512
+
513
+ #: wp-useronline.php:861
514
+ #, php-format
515
+ #@ wp-useronline
516
+ msgid "Most users ever online was <strong>%s</strong>."
517
+ msgid_plural "Most users ever online was <strong>%s</strong>."
518
+ msgstr[0] "历史最高在线人数 <strong>%s</strong> 人。"
519
+ msgstr[1] "历史最高在线人数 <strong>%s</strong> 人。"
520
+
521
+ #: wp-useronline.php:862
522
+ #@ wp-useronline
523
+ msgid "On"
524
+ msgstr "发生于"
525
+
526
+ #: wp-useronline.php:872
527
+ #@ wp-useronline
528
+ msgid "WP-UserOnline users online statistics"
529
+ msgstr "WP-UserOnline 在线人数统计"
530
+
531
+ #: wp-useronline.php:939
532
+ #@ wp-useronline
533
+ msgid "Title:"
534
+ msgstr "标题:"
535
+
536
+ #: wp-useronline.php:942
537
+ #@ wp-useronline
538
+ msgid "Statistics Type:"
539
+ msgstr "统计类型:"
540
+
541
+ #: wp-useronline.php:944
542
+ #@ wp-useronline
543
+ msgid "Users Online Count"
544
+ msgstr "用户在线数"
545
+
546
+ #: wp-useronline.php:945
547
+ #@ wp-useronline
548
+ msgid "Users Browsing Current Page"
549
+ msgstr "用户正在浏览的页面"
550
+
551
+ #: wp-useronline.php:946
552
+ #@ wp-useronline
553
+ msgid "Users Browsing Site"
554
+ msgstr "访问本站的用户"
555
+
556
+ #: wp-useronline.php:948
557
+ #@ wp-useronline
558
+ msgid "Users Online Count & Users Browsing Current Page"
559
+ msgstr "用户在线数以及当前浏览页面"
560
+
561
+ #: wp-useronline.php:949
562
+ #@ wp-useronline
563
+ msgid "Users Online Count & Users Browsing Site"
564
+ msgstr "用户在线数以及访问本站的用户"
565
+
lang/wp-useronline.pot ADDED
@@ -0,0 +1,291 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of the WordPress plugin WP-UserOnline 2.70-beta by Lester 'GaMerZ' Chan & scribu.
2
+ # Copyright (C) 2010 Lester 'GaMerZ' Chan & scribu
3
+ # This file is distributed under the same license as the WP-UserOnline package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: WP-UserOnline 2.70-beta\n"
10
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-useronline\n"
11
+ "POT-Creation-Date: 2010-05-07 16:14+0300\n"
12
+ "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=utf-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
+
20
+ #: admin.php:9
21
+ msgid "Users Online Now"
22
+ msgstr ""
23
+
24
+ #. #-#-#-#-# wp-useronline.pot (WP-UserOnline 2.70-beta) #-#-#-#-#
25
+ #. Plugin Name of the plugin/theme
26
+ #: admin.php:10 wp-stats.php:14 wp-stats.php:31
27
+ msgid "WP-UserOnline"
28
+ msgstr ""
29
+
30
+ #: admin.php:24
31
+ #, php-format
32
+ msgid "There is <strong><a href='%s'>%s user</a></strong> online now."
33
+ msgid_plural ""
34
+ "There are a total of <strong><a href='%s'>%s users</a></strong> online now."
35
+ msgstr[0] ""
36
+ msgstr[1] ""
37
+
38
+ #: admin.php:51
39
+ msgid "UserOnline Options"
40
+ msgstr ""
41
+
42
+ #: admin.php:52 widget.php:6 widget.php:49
43
+ msgid "UserOnline"
44
+ msgstr ""
45
+
46
+ #: admin.php:107
47
+ msgid "Time Out"
48
+ msgstr ""
49
+
50
+ #: admin.php:110
51
+ msgid "How long until it will remove the user from the database (In seconds)."
52
+ msgstr ""
53
+
54
+ #: admin.php:115
55
+ msgid "UserOnline URL"
56
+ msgstr ""
57
+
58
+ #: admin.php:118
59
+ msgid ""
60
+ "URL To UserOnline Page<br />Example: http://www.yoursite.com/useronline/<br /"
61
+ ">Example: http://www.yoursite.com/?page_id=2"
62
+ msgstr ""
63
+
64
+ #: admin.php:122
65
+ msgid "User Names"
66
+ msgstr ""
67
+
68
+ #: admin.php:125
69
+ msgid "Link user names to their author page"
70
+ msgstr ""
71
+
72
+ #: admin.php:142
73
+ msgid "Useronline Templates"
74
+ msgstr ""
75
+
76
+ #: admin.php:154
77
+ msgid "User(s) Browsing Site:"
78
+ msgstr ""
79
+
80
+ #: admin.php:155
81
+ msgid "User(s) Browsing Page:"
82
+ msgstr ""
83
+
84
+ #: admin.php:168 scb/AdminPage.php:179 scb/AdminPage.php:190
85
+ msgid "Save Changes"
86
+ msgstr ""
87
+
88
+ #: admin.php:178
89
+ msgid "Naming Conventions:"
90
+ msgstr ""
91
+
92
+ #: admin.php:179 admin.php:219 admin.php:241
93
+ msgid "Allowed Variables:"
94
+ msgstr ""
95
+
96
+ #: admin.php:181
97
+ msgid "Restore Defaults"
98
+ msgstr ""
99
+
100
+ #: admin.php:187
101
+ msgid "Singular Form"
102
+ msgstr ""
103
+
104
+ #: admin.php:188
105
+ msgid "Plural Form"
106
+ msgstr ""
107
+
108
+ #: admin.php:218
109
+ msgid "User(s) Online:"
110
+ msgstr ""
111
+
112
+ #: admin.php:224 admin.php:249
113
+ msgid "Restore Default Template"
114
+ msgstr ""
115
+
116
+ #: admin.php:255
117
+ msgid "Member Names Separator"
118
+ msgstr ""
119
+
120
+ #: admin.php:256
121
+ msgid "Guests Separator"
122
+ msgstr ""
123
+
124
+ #: admin.php:257
125
+ msgid "Bots Separator"
126
+ msgstr ""
127
+
128
+ #: scb/AdminPage.php:166
129
+ msgid "Settings <strong>saved</strong>."
130
+ msgstr ""
131
+
132
+ #: scb/AdminPage.php:376
133
+ msgid "Settings"
134
+ msgstr ""
135
+
136
+ #: template-tags.php:79
137
+ #, php-format
138
+ msgid ""
139
+ "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</"
140
+ "strong> and <strong>%s</strong>."
141
+ msgid_plural ""
142
+ "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, "
143
+ "<strong>%s</strong> and <strong>%s</strong>."
144
+ msgstr[0] ""
145
+ msgstr[1] ""
146
+
147
+ #: template-tags.php:181
148
+ msgid "No one is online now."
149
+ msgstr ""
150
+
151
+ #: template-tags.php:183
152
+ msgid "on"
153
+ msgstr ""
154
+
155
+ #: template-tags.php:184
156
+ msgid "url"
157
+ msgstr ""
158
+
159
+ #: template-tags.php:185
160
+ msgid "referral"
161
+ msgstr ""
162
+
163
+ #: template-tags.php:196
164
+ msgid "Online Now"
165
+ msgstr ""
166
+
167
+ #: template-tags.php:227
168
+ #, php-format
169
+ msgid "%s @ %s"
170
+ msgstr ""
171
+
172
+ #: template-tags.php:247
173
+ #, php-format
174
+ msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
175
+ msgstr ""
176
+
177
+ #: widget.php:5
178
+ msgid "WP-UserOnline users online statistics"
179
+ msgstr ""
180
+
181
+ #: widget.php:56
182
+ msgid "Title:"
183
+ msgstr ""
184
+
185
+ #: widget.php:59
186
+ msgid "Statistics Type:"
187
+ msgstr ""
188
+
189
+ #: widget.php:61
190
+ msgid "Users Online Count"
191
+ msgstr ""
192
+
193
+ #: widget.php:62
194
+ msgid "Users Browsing Current Page"
195
+ msgstr ""
196
+
197
+ #: widget.php:63
198
+ msgid "Users Browsing Site"
199
+ msgstr ""
200
+
201
+ #: widget.php:65
202
+ msgid "Users Online Count & Users Browsing Current Page"
203
+ msgstr ""
204
+
205
+ #: widget.php:66
206
+ msgid "Users Online Count & Users Browsing Site"
207
+ msgstr ""
208
+
209
+ #: wp-stats.php:24
210
+ #, php-format
211
+ msgid "<strong>%s</strong> user online now."
212
+ msgid_plural "<strong>%s</strong> users online now."
213
+ msgstr[0] ""
214
+ msgstr[1] ""
215
+
216
+ #: wp-useronline.php:83
217
+ msgid "1 User"
218
+ msgstr ""
219
+
220
+ #: wp-useronline.php:84
221
+ msgid "%COUNT% Users"
222
+ msgstr ""
223
+
224
+ #: wp-useronline.php:85
225
+ msgid "1 Member"
226
+ msgstr ""
227
+
228
+ #: wp-useronline.php:86
229
+ msgid "%COUNT% Members"
230
+ msgstr ""
231
+
232
+ #: wp-useronline.php:87
233
+ msgid "1 Guest"
234
+ msgstr ""
235
+
236
+ #: wp-useronline.php:88
237
+ msgid "%COUNT% Guests"
238
+ msgstr ""
239
+
240
+ #: wp-useronline.php:89
241
+ msgid "1 Bot"
242
+ msgstr ""
243
+
244
+ #: wp-useronline.php:90
245
+ msgid "%COUNT% Bots"
246
+ msgstr ""
247
+
248
+ #: wp-useronline.php:94
249
+ msgid "Online"
250
+ msgstr ""
251
+
252
+ #: wp-useronline.php:98 wp-useronline.php:99 wp-useronline.php:100
253
+ #: wp-useronline.php:107 wp-useronline.php:108 wp-useronline.php:109
254
+ msgid ","
255
+ msgstr ""
256
+
257
+ #: wp-useronline.php:102 wp-useronline.php:111
258
+ msgctxt "Template Element"
259
+ msgid "Users"
260
+ msgstr ""
261
+
262
+ #: wp-useronline.php:111
263
+ msgid "Browsing This Page."
264
+ msgstr ""
265
+
266
+ #: wp-useronline.php:210
267
+ msgid "Guest"
268
+ msgstr ""
269
+
270
+ #: wp-useronline.php:217
271
+ msgid "Admin"
272
+ msgstr ""
273
+
274
+ #: wp-useronline.php:223
275
+ msgid "Archive"
276
+ msgstr ""
277
+
278
+ #. Plugin URI of the plugin/theme
279
+ msgid "http://wordpress.org/extend/plugins/wp-useronline/"
280
+ msgstr ""
281
+
282
+ #. Description of the plugin/theme
283
+ msgid ""
284
+ "Enable you to display how many users are online on your Wordpress blog with "
285
+ "detailed statistics of where they are and who there are(Members/Guests/"
286
+ "Search Bots)."
287
+ msgstr ""
288
+
289
+ #. Author of the plugin/theme
290
+ msgid "Lester 'GaMerZ' Chan & scribu"
291
+ msgstr ""
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: GamerZ, scribu
3
  Donate link: http://lesterchan.net/wordpress
4
  Tags: useronline, usersonline, wp-useronline, online, users, user, ajax, widget
5
- Requires at least: 2.8
6
- Tested up to: 2.9.2
7
- Stable tag: 2.62
8
 
9
  Enable you to display how many users are online on your Wordpress blog with detailed statistics.
10
 
@@ -12,15 +12,9 @@ Enable you to display how many users are online on your Wordpress blog with deta
12
 
13
  **PHP 5 is required since version 2.60.**
14
 
15
- This plugin enables you to display how many users are online on your Wordpress blog with detailed statistics of where they are and who they are (Members/Guests/Search Bots).
16
 
17
- [Demo](http://lesterchan.net/wordpress/useronline/) | [Translations](http://dev.wp-plugins.org/browser/wp-useronline/i18n/)
18
-
19
- = Credits =
20
-
21
- * __ngetext() by [Anna Ozeritskaya](http://hweia.ru/)
22
- * Right-To-Left language support by [Kambiz R. Khojasteh](http://persian-programming.com/)
23
- * Maintained by [scribu](http://scribu.net)
24
 
25
  == Installation ==
26
 
@@ -31,27 +25,23 @@ You can either install it automatically from the WordPress admin, or do it manua
31
 
32
  = Usage =
33
 
 
 
 
 
 
 
 
34
  **General Usage (Without Widget)**
35
 
36
  Open `wp-content/themes/<YOUR THEME NAME>/sidebar.php` and add Anywhere:
37
 
38
  `
39
- <?php if (function_exists('get_useronline')): ?>
40
- <li>
41
- <h2>UserOnline</h2>
42
- <ul>
43
- <li><div id="useronline-count"><?php get_useronline(); ?></div></li>
44
- </ul>
45
- </li>
46
  <?php endif; ?>
47
  `
48
 
49
- **General Usage (With Widget)**
50
-
51
- 1. Go to `WP-Admin -> Appearance -> Widgets`
52
- 1. The widget name is <strong>UserOnline</strong>.
53
- 1. Scroll down for instructions on how to create a *UserOnline Page*.
54
-
55
  **UserOnline Page**
56
 
57
  1. Go to `WP-Admin -> Pages -> Add New`
@@ -68,8 +58,8 @@ If you **ARE NOT** using nice permalinks, you need to go to `WP-Admin -> Setting
68
  To Display *Most Number Of Users Online* use:
69
 
70
  `
71
- <?php if (function_exists('get_most_useronline')): ?>
72
- <p>Most Users Ever Online Is <?php echo get_most_useronline(); ?> On <?php echo get_most_useronline_date(); ?></p>
73
  <?php endif; ?>
74
  `
75
 
@@ -91,21 +81,32 @@ To Display *Users Browsing A Page* use:
91
 
92
  == Screenshots ==
93
 
94
- [WP-UserOnline Screenshots](http://lesterchan.net/wordpress/screenshots/browse/wp-useronline/ "WP-UserOnline Screenshots")
 
 
95
 
96
  == Frequently Asked Questions ==
97
 
98
- = Error on activation: "Parse error: syntax error, unexpected T_CLASS..." =
99
 
100
- Make sure your host is running PHP 5. Add this line to wp-config.php to check:
101
 
102
  `var_dump(PHP_VERSION);`
 
 
 
103
 
104
- == Upgrade Notice ==
 
105
 
106
- **Requires PHP5**
 
107
 
108
- == Changelog ==
 
 
 
 
109
 
110
  = 2.62 (2010-03-07) =
111
  * fix integration with WP-Stats
2
  Contributors: GamerZ, scribu
3
  Donate link: http://lesterchan.net/wordpress
4
  Tags: useronline, usersonline, wp-useronline, online, users, user, ajax, widget
5
+ Requires at least: 2.9
6
+ Tested up to: 3.0
7
+ Stable tag: 2.72
8
 
9
  Enable you to display how many users are online on your Wordpress blog with detailed statistics.
10
 
12
 
13
  **PHP 5 is required since version 2.60.**
14
 
15
+ This plugin enables you to display how many users are online on your Wordpress site, with detailed statistics of where they are and who they are (Members/Guests/Search Bots).
16
 
17
+ [Translations](http://scribu.net/wordpress/translating-plugins.html)
 
 
 
 
 
 
18
 
19
  == Installation ==
20
 
25
 
26
  = Usage =
27
 
28
+ **General Usage (With Widget)**
29
+
30
+ 1. Go to `WP-Admin -> Appearance -> Widgets`
31
+ 1. The widget name is <strong>UserOnline</strong>.
32
+ 1. Scroll down for instructions on how to create a *UserOnline Page*.
33
+
34
+
35
  **General Usage (Without Widget)**
36
 
37
  Open `wp-content/themes/<YOUR THEME NAME>/sidebar.php` and add Anywhere:
38
 
39
  `
40
+ <?php if (function_exists('users_online')): ?>
41
+ <p>Users online: <div id="useronline-count"><?php users_online(); ?></div></p>
 
 
 
 
 
42
  <?php endif; ?>
43
  `
44
 
 
 
 
 
 
 
45
  **UserOnline Page**
46
 
47
  1. Go to `WP-Admin -> Pages -> Add New`
58
  To Display *Most Number Of Users Online* use:
59
 
60
  `
61
+ <?php if (function_exists('get_most_users_online')): ?>
62
+ <p>Most Users Ever Online Is <?php echo get_most_users_online(); ?> On <?php echo get_most_users_online_date(); ?></p>
63
  <?php endif; ?>
64
  `
65
 
81
 
82
  == Screenshots ==
83
 
84
+ 1. Right Now text
85
+ 2. Admin page
86
+ 3. Settings page
87
 
88
  == Frequently Asked Questions ==
89
 
90
+ = Error on activation: "Parse error: syntax error, unexpected..." =
91
 
92
+ Make sure your host is running PHP 5. The only foolproof way to do this is to add this line to wp-config.php:
93
 
94
  `var_dump(PHP_VERSION);`
95
+ <br>
96
+
97
+ == Changelog ==
98
 
99
+ = 2.72 =
100
+ * fix fatal error on upgrade
101
 
102
+ = 2.71 =
103
+ * fix %USERONLINE_COUNT% problem
104
 
105
+ = 2.70 =
106
+ * added option to link user names to their author page
107
+ * allow displaying online users from a different page than the current page
108
+ * bundle language files
109
+ * [more info](http://scribu.net/wordpress/wp-useronline/wu-2-70.html)
110
 
111
  = 2.62 (2010-03-07) =
112
  * fix integration with WP-Stats
scb/AdminPage.php CHANGED
@@ -8,13 +8,15 @@ You must set $this->args and define the page_content() method
8
 
9
  abstract class scbAdminPage {
10
  /** Page args
11
- * string $parent (default: options-general.php)
12
- * string $page_title (mandatory)
13
- * string $menu_title
14
- * string $page_slug
15
- * string $capability (default: 'manage_options')
16
- * string $nonce
17
- * array $action_link (default: 'Settings')
 
 
18
  */
19
  protected $args;
20
 
@@ -28,6 +30,7 @@ abstract class scbAdminPage {
28
  // scbOptions object holder
29
  // Normally, it's used for storing formdata
30
  protected $options;
 
31
 
32
  // l10n
33
  protected $textdomain;
@@ -36,12 +39,53 @@ abstract class scbAdminPage {
36
  protected $formdata = array();
37
 
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  // ____________MAIN METHODS____________
40
 
41
 
42
  // Constructor
43
  function __construct($file, $options = NULL) {
44
- if ( $options !== NULL ) {
45
  $this->options = $options;
46
  $this->formdata = $this->options->get();
47
  }
@@ -52,6 +96,12 @@ abstract class scbAdminPage {
52
  $this->setup();
53
  $this->check_args();
54
 
 
 
 
 
 
 
55
  add_action('admin_menu', array($this, 'page_init'));
56
  add_filter('contextual_help', array($this, '_contextual_help'), 10, 2);
57
 
@@ -90,22 +140,33 @@ abstract class scbAdminPage {
90
  return $new_data;
91
  }
92
 
93
- // A generic form handler
94
  function form_handler() {
95
  if ( empty($_POST['action']) )
96
  return false;
97
 
98
  check_admin_referer($this->nonce);
99
 
100
- foreach ( $this->formdata as $name => $value )
101
- $new_data[$name] = @$_POST[$name];
 
 
 
102
 
103
  $this->formdata = $this->validate($new_data, $this->formdata);
104
 
105
  if ( isset($this->options) )
106
  $this->options->update($this->formdata);
107
 
108
- $this->admin_msg(__('Settings <strong>saved</strong>.', $this->textdomain));
 
 
 
 
 
 
 
 
109
  }
110
 
111
 
@@ -155,8 +216,8 @@ abstract class scbAdminPage {
155
 
156
  // the second argument is sent to submit_button()
157
  $this->form_wrap($content, array(
158
- 'text' => 'Save changes',
159
- 'name' => 'action',
160
  'ajax' => true,
161
  ));
162
  */
@@ -175,61 +236,90 @@ abstract class scbAdminPage {
175
  return scbForms::form_wrap($content, $this->nonce);
176
  }
177
 
178
- // See scbForms::input()
179
- function input($args, $options = NULL) {
180
- if ( $options === NULL )
181
- $options = $this->formdata;
182
-
183
- return scbForms::input($args, $options);
184
  }
185
 
186
- // See scbForms::form()
187
- function form($rows, $options = NULL) {
188
- if ( $options === NULL )
189
- $options = $this->formdata;
 
190
 
191
- return scbForms::form($rows, $options, $this->nonce);
 
 
192
  }
193
 
194
- // See scbForms::table()
195
- function table($rows, $options = NULL) {
196
- if ( $options === NULL )
197
- $options = $this->formdata;
198
 
199
- return scbForms::table($rows, $options);
200
  }
201
 
202
- // See scbForms::table_row()
203
- function table_row($row, $options = NULL) {
204
- if ( $options === NULL )
205
- $options = $this->formdata;
 
206
 
207
- return scbForms::table_row($row, $options);
 
 
208
  }
209
 
210
- // Mimics scbForms::form_table()
211
- function form_table($rows, $options = NULL) {
212
- $output = $this->table($rows, $options);
 
213
 
214
- $args = array_slice(func_get_args(), 2);
215
- array_unshift($args, $output);
 
 
 
216
 
217
- return call_user_func_array(array($this, 'form_wrap'), $args);
 
 
 
 
 
 
218
  }
219
-
220
- // Mimics scbForms::form_table_wrap()
221
- function form_table_wrap($content) {
222
- $output = self::table_wrap($content);
223
 
224
- $args = array_slice(func_get_args(), 1);
225
- array_unshift($args, $output);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
 
227
- return call_user_func_array(array($this, 'form_wrap'), $args);
228
  }
229
 
230
- // Generates a standard admin notice
231
- function admin_msg($msg, $class = "updated") {
232
- echo "<div class='$class fade'><p>$msg</p></div>\n";
233
  }
234
 
235
  // Wraps a string in a <script> tag
@@ -245,10 +335,6 @@ abstract class scbAdminPage {
245
 
246
  // ____________INTERNAL METHODS____________
247
 
248
- function __call($method, $args) {
249
- return call_user_func_array(array('scbForms', $method), $args);
250
- }
251
-
252
 
253
  // Registers a page
254
  function page_init() {
@@ -264,11 +350,16 @@ abstract class scbAdminPage {
264
  if ( ! $this->pagehook )
265
  return;
266
 
267
- $this->ajax_response();
 
 
 
268
 
269
  add_action('admin_print_styles-' . $this->pagehook, array($this, 'page_head'));
 
270
 
271
- add_action('admin_footer', array($this, 'ajax_submit'), 20);
 
272
  }
273
 
274
  private function check_args() {
@@ -276,14 +367,15 @@ abstract class scbAdminPage {
276
  trigger_error('Page title cannot be empty', E_USER_WARNING);
277
 
278
  $this->args = wp_parse_args($this->args, array(
279
- 'menu_title' => $this->args['page_title'],
280
- 'page_slug' => '',
281
  'toplevel' => '',
282
  'icon' => '',
283
  'parent' => 'options-general.php',
284
- 'action_link' => __('Settings', $this->textdomain),
285
  'capability' => 'manage_options',
286
- 'nonce' => ''
 
 
 
 
287
  ));
288
 
289
  if ( empty($this->args['page_slug']) )
@@ -354,7 +446,6 @@ jQuery(document).ready(function($){
354
  });
355
  </script>
356
  <?php
357
- $this->page_head();
358
  }
359
 
360
  function _page_content_hook() {
@@ -367,7 +458,8 @@ jQuery(document).ready(function($){
367
 
368
  function _action_link($links) {
369
  $url = add_query_arg('page', $this->args['page_slug'], admin_url($this->args['parent']));
370
- $links[] = "<a href='$url'>" . $this->args['action_link'] . "</a>";
 
371
 
372
  return $links;
373
  }
8
 
9
  abstract class scbAdminPage {
10
  /** Page args
11
+ * $toplevel string If not empty, will create a new top level menu
12
+ * $icon string Path to an icon for the top level menu
13
+ * $parent string (default: options-general.php)
14
+ * $capability string (default: 'manage_options')
15
+ * $page_title string (mandatory)
16
+ * $menu_title string (default: $page_title)
17
+ * $page_slug string (default: sanitized $page_title)
18
+ * $nonce string (default: $page_slug)
19
+ * $action_link string|bool Text of the action link on the Plugins page (default: 'Settings')
20
  */
21
  protected $args;
22
 
30
  // scbOptions object holder
31
  // Normally, it's used for storing formdata
32
  protected $options;
33
+ protected $option_name;
34
 
35
  // l10n
36
  protected $textdomain;
39
  protected $formdata = array();
40
 
41
 
42
+ // ____________REGISTRATION COMPONENT____________
43
+
44
+
45
+ private static $registered = array();
46
+
47
+ static function register($class, $file, $options = null) {
48
+ if ( isset(self::$registered[$class]) )
49
+ return false;
50
+
51
+ self::$registered[$class] = array($file, $options);
52
+
53
+ add_action('_admin_menu', array(__CLASS__, '_pages_init'));
54
+
55
+ return true;
56
+ }
57
+
58
+ static function replace($old_class, $new_class) {
59
+ if ( ! isset(self::$registered[$old_class]) )
60
+ return false;
61
+
62
+ self::$registered[$new_class] = self::$registered[$old_class];
63
+ unset(self::$registered[$old_class]);
64
+
65
+ return true;
66
+ }
67
+
68
+ static function remove($class) {
69
+ if ( ! isset(self::$registered[$class]) )
70
+ return false;
71
+
72
+ unset(self::$registered[$class]);
73
+
74
+ return true;
75
+ }
76
+
77
+ static function _pages_init() {
78
+ foreach ( self::$registered as $class => $args )
79
+ new $class($args[0], $args[1]);
80
+ }
81
+
82
+
83
  // ____________MAIN METHODS____________
84
 
85
 
86
  // Constructor
87
  function __construct($file, $options = NULL) {
88
+ if ( NULL !== $options ) {
89
  $this->options = $options;
90
  $this->formdata = $this->options->get();
91
  }
96
  $this->setup();
97
  $this->check_args();
98
 
99
+ if ( isset($this->option_name) ) {
100
+ add_action('admin_init', array($this, 'option_init'));
101
+ if ( function_exists('settings_errors') )
102
+ add_action('admin_notices', 'settings_errors');
103
+ }
104
+
105
  add_action('admin_menu', array($this, 'page_init'));
106
  add_filter('contextual_help', array($this, '_contextual_help'), 10, 2);
107
 
140
  return $new_data;
141
  }
142
 
143
+ // Manually handle option saving (use Settings API instead)
144
  function form_handler() {
145
  if ( empty($_POST['action']) )
146
  return false;
147
 
148
  check_admin_referer($this->nonce);
149
 
150
+ $new_data = array();
151
+ foreach ( array_keys($this->formdata) as $key )
152
+ $new_data[$key] = @$_POST[$key];
153
+
154
+ $new_data = stripslashes_deep($new_data);
155
 
156
  $this->formdata = $this->validate($new_data, $this->formdata);
157
 
158
  if ( isset($this->options) )
159
  $this->options->update($this->formdata);
160
 
161
+ $this->admin_msg();
162
+ }
163
+
164
+ // Manually generate a standard admin notice (use Settings API instead)
165
+ function admin_msg($msg = '', $class = "updated") {
166
+ if ( empty($msg) )
167
+ $msg = __('Settings <strong>saved</strong>.', $this->textdomain);
168
+
169
+ echo "<div class='$class fade'><p>$msg</p></div>\n";
170
  }
171
 
172
 
216
 
217
  // the second argument is sent to submit_button()
218
  $this->form_wrap($content, array(
219
+ 'text' => 'Save changes',
220
+ 'name' => 'action',
221
  'ajax' => true,
222
  ));
223
  */
236
  return scbForms::form_wrap($content, $this->nonce);
237
  }
238
 
239
+ // See scbForms::form()
240
+ function form($rows, $formdata = array()) {
241
+ return scbForms::form($rows, $formdata, $this->nonce);
 
 
 
242
  }
243
 
244
+ // Generates a table wrapped in a form
245
+ function form_table($rows, $formdata = array()) {
246
+ $output = '';
247
+ foreach ( $rows as $row )
248
+ $output .= $this->table_row($row, $formdata);
249
 
250
+ $output = $this->form_table_wrap($output);
251
+
252
+ return $output;
253
  }
254
 
255
+ // Wraps the given content in a <form><table>
256
+ function form_table_wrap($content) {
257
+ $output = $this->table_wrap($content);
258
+ $output = $this->form_wrap($output, $this->nonce);
259
 
260
+ return $output;
261
  }
262
 
263
+ // Generates a form table
264
+ function table($rows, $formdata = array()) {
265
+ $output = '';
266
+ foreach ( $rows as $row )
267
+ $output .= $this->table_row($row, $formdata);
268
 
269
+ $output = $this->table_wrap($output);
270
+
271
+ return $output;
272
  }
273
 
274
+ // Generates a table row
275
+ function table_row($args, $formdata = array()) {
276
+ return $this->row_wrap($args['title'], $this->input($args, $formdata));
277
+ }
278
 
279
+ // Wraps the given content in a <table>
280
+ function table_wrap($content) {
281
+ return
282
+ html('table class="form-table"', $content);
283
+ }
284
 
285
+ // Wraps the given content in a <tr><td>
286
+ function row_wrap($title, $content) {
287
+ return
288
+ html('tr',
289
+ html('th scope="row"', $title)
290
+ .html('td', $content)
291
+ );
292
  }
 
 
 
 
293
 
294
+ function input($args, $formdata = array()) {
295
+ if ( empty($formdata) )
296
+ $formdata = $this->formdata;
297
+
298
+ if ( isset($args['name_tree']) ) {
299
+ $tree = (array) $args['name_tree'];
300
+ unset($args['name_tree']);
301
+
302
+ $value = $formdata;
303
+ $name = $this->option_name;
304
+ foreach ( $tree as $key ) {
305
+ $value = $value[$key];
306
+ $name .= '[' . $key . ']';
307
+ }
308
+
309
+ $args['name'] = $name;
310
+ unset($args['names']);
311
+
312
+ unset($args['values']);
313
+
314
+ $formdata = array($name => $value);
315
+ }
316
 
317
+ return scbForms::input($args, $formdata);
318
  }
319
 
320
+ // Mimic scbForms inheritance
321
+ function __call($method, $args) {
322
+ return call_user_func_array(array('scbForms', $method), $args);
323
  }
324
 
325
  // Wraps a string in a <script> tag
335
 
336
  // ____________INTERNAL METHODS____________
337
 
 
 
 
 
338
 
339
  // Registers a page
340
  function page_init() {
350
  if ( ! $this->pagehook )
351
  return;
352
 
353
+ if ( $ajax_submit ) {
354
+ $this->ajax_response();
355
+ add_action('admin_footer', array($this, 'ajax_submit'), 20);
356
+ }
357
 
358
  add_action('admin_print_styles-' . $this->pagehook, array($this, 'page_head'));
359
+ }
360
 
361
+ function option_init() {
362
+ register_setting($this->option_name, $this->option_name, array($this, 'validate'));
363
  }
364
 
365
  private function check_args() {
367
  trigger_error('Page title cannot be empty', E_USER_WARNING);
368
 
369
  $this->args = wp_parse_args($this->args, array(
 
 
370
  'toplevel' => '',
371
  'icon' => '',
372
  'parent' => 'options-general.php',
 
373
  'capability' => 'manage_options',
374
+ 'menu_title' => $this->args['page_title'],
375
+ 'page_slug' => '',
376
+ 'nonce' => '',
377
+ 'action_link' => __('Settings', $this->textdomain),
378
+ 'ajax_submit' => false,
379
  ));
380
 
381
  if ( empty($this->args['page_slug']) )
446
  });
447
  </script>
448
  <?php
 
449
  }
450
 
451
  function _page_content_hook() {
458
 
459
  function _action_link($links) {
460
  $url = add_query_arg('page', $this->args['page_slug'], admin_url($this->args['parent']));
461
+
462
+ $links[] = html_link($url, $this->args['action_link']);
463
 
464
  return $links;
465
  }
scb/Forms.php CHANGED
@@ -1,23 +1,11 @@
1
  <?php
2
 
 
 
3
  class scbForms {
 
4
  const token = '%input%';
5
 
6
- /* Generates one or more form elements of the same type,
7
- including <select>s and <textarea>s.
8
-
9
- $args = array (
10
- 'type' => string (mandatory)
11
- 'name' => string | array (mandatory)
12
- 'value' => string | array
13
- 'desc' => string | array | false
14
- 'desc_pos' => 'before' | 'after' | 'foo %input% bar' (default: after)
15
- 'extra' => string (default: class="regular-text")
16
- );
17
-
18
- $formdata = associative array with the formdata with which to fill the elements
19
- */
20
-
21
  protected static $args;
22
  protected static $formdata = array();
23
 
@@ -34,54 +22,19 @@ class scbForms {
34
  }
35
  }
36
 
37
- if ( !isset($args['name']) || empty($args['name']) )
38
- return trigger_error("Empty name", E_USER_WARNING);
39
 
40
  self::$args = $args;
41
  self::$formdata = self::validate_data($formdata);
42
 
43
- switch ( $args['type'] ) {
44
- case 'select': return self::_select();
45
- case 'textarea': return self::_textarea();
46
- default: return self::_input();
47
- }
48
- }
49
-
50
- // Deprecated
51
- static function select($args, $options = array()) {
52
- if ( !empty($options) )
53
- $args['value'] = $options;
54
-
55
- self::$args = $args;
56
-
57
- return self::_select();
58
- }
59
-
60
- // Deprecated
61
- static function textarea($args, $content = '') {
62
- if ( !empty($content) )
63
- $args['value'] = $content;
64
-
65
- self::$args = $args;
66
-
67
- return self::_textarea();
68
  }
69
 
70
 
71
- // ____________UTILITIES____________
72
-
73
-
74
- // Generates a table wrapped in a form
75
- static function form_table($rows, $formdata = NULL) {
76
- $output = '';
77
- foreach ( $rows as $row )
78
- $output .= self::table_row($row, $formdata);
79
-
80
- $output = self::form_table_wrap($output);
81
-
82
- return $output;
83
- }
84
-
85
  // Generates a form
86
  static function form($inputs, $formdata = NULL, $nonce) {
87
  $output = '';
@@ -93,35 +46,7 @@ class scbForms {
93
  return $output;
94
  }
95
 
96
- // Generates a table
97
- static function table($rows, $formdata = NULL) {
98
- $output = '';
99
- foreach ( $rows as $row )
100
- $output .= self::table_row($row, $formdata);
101
-
102
- $output = self::table_wrap($output);
103
-
104
- return $output;
105
- }
106
-
107
- // Generates a table row
108
- static function table_row($args, $formdata = NULL) {
109
- return self::row_wrap($args['title'], self::input($args, $formdata));
110
- }
111
-
112
-
113
- // ____________WRAPPERS____________
114
-
115
-
116
- // Wraps the given content in a <form><table>
117
- static function form_table_wrap($content, $nonce = 'update_options') {
118
- $output = self::table_wrap($content);
119
- $output = self::form_wrap($output, $nonce);
120
-
121
- return $output;
122
- }
123
-
124
- // Wraps the given content in a <form>
125
  static function form_wrap($content, $nonce = 'update_options') {
126
  $output = "\n<form method='post' action=''>\n";
127
  $output .= $content;
@@ -131,25 +56,13 @@ class scbForms {
131
  return $output;
132
  }
133
 
134
- // Wraps the given content in a <table>
135
- static function table_wrap($content) {
136
- $output = "\n<table class='form-table'>\n" . $content . "\n</table>\n";
137
-
138
- return $output;
139
- }
140
-
141
- // Wraps the given content in a <tr><td>
142
- static function row_wrap($title, $content) {
143
- return "\n<tr>\n\t<th scope='row'>" . $title . "</th>\n\t<td>\n\t\t" . $content . "\t</td>\n\n</tr>";
144
- }
145
-
146
 
147
  // ____________PRIVATE METHODS____________
148
 
149
 
150
  // Recursivly transform empty arrays to ''
151
  private static function validate_data($data) {
152
- if ( ! is_array($data) )
153
  return $data;
154
 
155
  if ( empty($data) )
@@ -289,7 +202,7 @@ class scbForms {
289
  // Handle args for text inputs
290
  private static function _input_single($args, $data) {
291
  $args = wp_parse_args($args, array(
292
- 'value' => stripslashes($data),
293
  'desc_pos' => 'after',
294
  'extra' => array('class="regular-text"'),
295
  ));
@@ -315,9 +228,14 @@ class scbForms {
315
 
316
  $extra = self::validate_extra($extra, $name);
317
 
318
- $value = esc_attr($value);
319
-
320
- $input = "<input name='{$name}' value='{$value}' type='{$type}'{$extra} /> ";
 
 
 
 
 
321
 
322
  return self::add_label($input, $desc, $desc_pos);
323
  }
@@ -377,22 +295,6 @@ class scbForms {
377
  return self::add_label($input, $desc, $desc_pos);
378
  }
379
 
380
- private static function _textarea() {
381
- extract(wp_parse_args(self::$args, array(
382
- 'name' => '',
383
- 'extra' => 'class="widefat"',
384
- 'value' => '',
385
- 'escaped' => false,
386
- )), EXTR_SKIP);
387
-
388
- if ( !$escaped )
389
- $value = wp_htmledit_pre(stripslashes($value));
390
-
391
- $extra = self::validate_extra($extra, $name);
392
-
393
- return "<textarea name='{$name}'{$extra}>\n{$value}\n</textarea>\n";
394
- }
395
-
396
  private static function add_label($input, $desc, $desc_pos) {
397
  if ( empty($desc_pos) )
398
  $desc_pos = 'after';
1
  <?php
2
 
3
+ // Documentation: http://scribu.net/wordpress/scb-framework/scb-forms.html
4
+
5
  class scbForms {
6
+
7
  const token = '%input%';
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  protected static $args;
10
  protected static $formdata = array();
11
 
22
  }
23
  }
24
 
25
+ if ( empty($args['name']) )
26
+ return trigger_error('Empty name', E_USER_WARNING);
27
 
28
  self::$args = $args;
29
  self::$formdata = self::validate_data($formdata);
30
 
31
+ if ( 'select' == $args['type'] )
32
+ return self::_select();
33
+ else
34
+ return self::_input();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  }
36
 
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  // Generates a form
39
  static function form($inputs, $formdata = NULL, $nonce) {
40
  $output = '';
46
  return $output;
47
  }
48
 
49
+ // Wraps the given content in a <form> tag
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  static function form_wrap($content, $nonce = 'update_options') {
51
  $output = "\n<form method='post' action=''>\n";
52
  $output .= $content;
56
  return $output;
57
  }
58
 
 
 
 
 
 
 
 
 
 
 
 
 
59
 
60
  // ____________PRIVATE METHODS____________
61
 
62
 
63
  // Recursivly transform empty arrays to ''
64
  private static function validate_data($data) {
65
+ if ( !is_array($data) )
66
  return $data;
67
 
68
  if ( empty($data) )
202
  // Handle args for text inputs
203
  private static function _input_single($args, $data) {
204
  $args = wp_parse_args($args, array(
205
+ 'value' => $data,
206
  'desc_pos' => 'after',
207
  'extra' => array('class="regular-text"'),
208
  ));
228
 
229
  $extra = self::validate_extra($extra, $name);
230
 
231
+ if ( 'textarea' == $type ) {
232
+ $value = esc_html($value);
233
+ $input = "<textarea name='{$name}'{$extra}>\n{$value}\n</textarea>\n";
234
+ }
235
+ else {
236
+ $value = esc_attr($value);
237
+ $input = "<input name='{$name}' value='{$value}' type='{$type}'{$extra} /> ";
238
+ }
239
 
240
  return self::add_label($input, $desc, $desc_pos);
241
  }
295
  return self::add_label($input, $desc, $desc_pos);
296
  }
297
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298
  private static function add_label($input, $desc, $desc_pos) {
299
  if ( empty($desc_pos) )
300
  $desc_pos = 'after';
scb/Options.php CHANGED
@@ -1,53 +1,61 @@
1
  <?php
2
 
3
- // Usage: http://scribu.net/wordpress/scb-framework/scb-options.html
4
 
5
  class scbOptions {
6
- protected $defaults; // the default value(s)
7
 
8
  protected $key; // the option name
9
- protected $data; // the option value
 
10
 
11
  public $wp_filter_id; // used by WP hooks
12
 
13
  /**
14
  * Create a new set of options
15
  *
16
- * @param key Option name
17
- * @param string Reference to main plugin file
18
- * @param array An associative array of default values
19
  */
20
- function __construct($key, $file, $defaults = '') {
21
  $this->key = $key;
22
  $this->defaults = $defaults;
23
- $this->data = get_option($this->key);
24
-
25
- if ( is_array($this->defaults) ) {
26
- $this->data = (array) $this->data;
27
 
 
28
  register_activation_hook($file, array($this, '_update_reset'));
29
- }
30
 
31
- register_uninstall_hook($file, array($this, '_delete'));
32
  }
33
 
34
  /**
35
- * Get all data fields, certain fields or a single field
 
 
 
 
 
 
 
36
  *
37
  * @param string|array $field The field(s) to get
38
  * @return mixed Whatever is in those fields
39
  */
40
- function get($field = '') {
41
- return $this->_get($field, $this->data);
 
 
 
 
 
42
  }
43
 
44
  /**
45
- * Get all default fields, certain fields or a single field
46
  *
47
  * @param string|array $field The field(s) to get
48
  * @return mixed Whatever is in those fields
49
  */
50
- function get_defaults($field = '') {
51
  return $this->_get($field, $this->defaults);
52
  }
53
 
@@ -58,43 +66,76 @@ class scbOptions {
58
  * @param mixed $value The new value (ignored if $field is array)
59
  * @return null
60
  */
61
- function set($field, $value = '') {
62
  if ( is_array($field) )
63
  $newdata = $field;
64
  else
65
  $newdata = array($field => $value);
66
 
67
- $this->update(array_merge($this->data, $newdata));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  }
69
 
70
  /**
71
  * Update raw data
72
  *
73
  * @param mixed $newdata
 
74
  * @return null
75
  */
76
- function update($newdata) {
77
- if ( $this->data === $newdata )
78
- return;
79
 
80
- $this->data = $newdata;
81
-
82
- update_option($this->key, $this->data);
83
  }
84
 
85
  /**
86
- * Reset option to defaults
87
  *
88
  * @return null
89
  */
90
- function reset() {
91
- $this->update($this->defaults);
92
  }
93
 
94
 
95
  //_____INTERNAL METHODS_____
96
 
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  // Get one, more or all fields from an array
99
  private function _get($field, $data) {
100
  if ( empty($field) )
@@ -112,7 +153,7 @@ class scbOptions {
112
 
113
  // Magic method: $options->field
114
  function __get($field) {
115
- return $this->data[$field];
116
  }
117
 
118
  // Magic method: $options->field = $value
@@ -122,22 +163,8 @@ class scbOptions {
122
 
123
  // Magic method: isset($options->field)
124
  function __isset($field) {
125
- return isset($this->data[$field]);
126
- }
127
-
128
- // Add new fields with their default values
129
- function _update_reset() {
130
- $this->update(array_merge($this->defaults, $this->data));
131
- }
132
-
133
- // Delete option
134
- function _delete() {
135
- delete_option($this->key);
136
- }
137
-
138
- // DEPRECATED
139
- function update_part($data) {
140
- $this->set($data);
141
  }
142
  }
143
 
1
  <?php
2
 
3
+ // Documentation: http://scribu.net/wordpress/scb-framework/scb-options.html
4
 
5
  class scbOptions {
 
6
 
7
  protected $key; // the option name
8
+
9
+ protected $defaults; // the default value(s)
10
 
11
  public $wp_filter_id; // used by WP hooks
12
 
13
  /**
14
  * Create a new set of options
15
  *
16
+ * @param string $key Option name
17
+ * @param string $file Reference to main plugin file
18
+ * @param array $defaults An associative array of default values (optional)
19
  */
20
+ public function __construct($key, $file, $defaults = '') {
21
  $this->key = $key;
22
  $this->defaults = $defaults;
 
 
 
 
23
 
24
+ if ( is_array($this->defaults) )
25
  register_activation_hook($file, array($this, '_update_reset'));
 
26
 
27
+ scbUtil::add_uninstall_hook($file, array($this, 'delete'));
28
  }
29
 
30
  /**
31
+ * Get option name
32
+ */
33
+ public function get_key() {
34
+ return $this->key;
35
+ }
36
+
37
+ /**
38
+ * Get option values for one, many or all fields
39
  *
40
  * @param string|array $field The field(s) to get
41
  * @return mixed Whatever is in those fields
42
  */
43
+ public function get($field = '') {
44
+ $data = get_option($this->key);
45
+
46
+ if ( is_array($this->defaults) )
47
+ $data = (array) $data;
48
+
49
+ return $this->_get($field, $data);
50
  }
51
 
52
  /**
53
+ * Get default values for one, many or all fields
54
  *
55
  * @param string|array $field The field(s) to get
56
  * @return mixed Whatever is in those fields
57
  */
58
+ public function get_defaults($field = '') {
59
  return $this->_get($field, $this->defaults);
60
  }
61
 
66
  * @param mixed $value The new value (ignored if $field is array)
67
  * @return null
68
  */
69
+ public function set($field, $value = '') {
70
  if ( is_array($field) )
71
  $newdata = $field;
72
  else
73
  $newdata = array($field => $value);
74
 
75
+ $this->update(array_merge($this->get(), $newdata));
76
+ }
77
+
78
+ /**
79
+ * Reset option to defaults
80
+ *
81
+ * @return null
82
+ */
83
+ public function reset() {
84
+ $this->update($this->defaults, false);
85
+ }
86
+
87
+ /**
88
+ * Remove any keys that are not in the defaults array
89
+ *
90
+ * @return bool
91
+ */
92
+ public function cleanup() {
93
+ $this->update($this->_clean($this->get()));
94
  }
95
 
96
  /**
97
  * Update raw data
98
  *
99
  * @param mixed $newdata
100
+ * @param bool $clean wether to remove unrecognized keys or not
101
  * @return null
102
  */
103
+ public function update($newdata, $clean = true) {
104
+ if ( $clean )
105
+ $newdata = $this->_clean($newdata);
106
 
107
+ update_option($this->key, $newdata);
 
 
108
  }
109
 
110
  /**
111
+ * Delete the option
112
  *
113
  * @return null
114
  */
115
+ public function delete() {
116
+ delete_option($this->key);
117
  }
118
 
119
 
120
  //_____INTERNAL METHODS_____
121
 
122
 
123
+ // Add new fields with their default values
124
+ function _update_reset() {
125
+ $this->update(array_merge($this->defaults, $this->get()));
126
+ }
127
+
128
+ private function _clean($data) {
129
+ if ( !is_array($data) || !is_array($this->defaults) )
130
+ return $data;
131
+
132
+ $r = array();
133
+ foreach ( array_keys($this->defaults) as $key )
134
+ $r[$key] = @$data[$key];
135
+
136
+ return $r;
137
+ }
138
+
139
  // Get one, more or all fields from an array
140
  private function _get($field, $data) {
141
  if ( empty($field) )
153
 
154
  // Magic method: $options->field
155
  function __get($field) {
156
+ return $this->get($field);
157
  }
158
 
159
  // Magic method: $options->field = $value
163
 
164
  // Magic method: isset($options->field)
165
  function __isset($field) {
166
+ $data = $this->get();
167
+ return isset($data[$field]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  }
169
  }
170
 
scb/Table.php CHANGED
@@ -8,11 +8,11 @@ class scbTable {
8
  function __construct($name, $file, $columns) {
9
  global $wpdb;
10
 
11
- $wpdb->$name = $this->name = $wpdb->prefix . $name;
12
  $this->columns = $columns;
13
 
14
  register_activation_hook($file, array($this, 'install'));
15
- register_uninstall_hook($file, array($this, 'uninstall'));
16
  }
17
 
18
  function install() {
@@ -26,7 +26,7 @@ class scbTable {
26
  $charset_collate .= " COLLATE $wpdb->collate";
27
  }
28
 
29
- require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
30
 
31
  dbDelta("CREATE TABLE $this->name ($this->columns) $charset_collate;");
32
  }
8
  function __construct($name, $file, $columns) {
9
  global $wpdb;
10
 
11
+ $this->name = $wpdb->$name = $wpdb->prefix . $name;
12
  $this->columns = $columns;
13
 
14
  register_activation_hook($file, array($this, 'install'));
15
+ scbUtil::add_uninstall_hook($file, array($this, 'uninstall'));
16
  }
17
 
18
  function install() {
26
  $charset_collate .= " COLLATE $wpdb->collate";
27
  }
28
 
29
+ require_once ABSPATH . 'wp-admin/includes/upgrade.php';
30
 
31
  dbDelta("CREATE TABLE $this->name ($this->columns) $charset_collate;");
32
  }
scb/Util.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
 
3
  class scbUtil {
 
4
  // Force script enqueue
5
  static function do_scripts($handles) {
6
  global $wp_scripts;
@@ -13,57 +14,76 @@ class scbUtil {
13
 
14
  // Force style enqueue
15
  static function do_styles($handles) {
 
 
16
  global $wp_styles;
17
 
18
  if ( ! is_a($wp_styles, 'WP_Styles') )
19
  $wp_styles = new WP_Styles();
20
 
 
21
  $wp_styles->do_items((array) $handles);
 
 
 
 
 
 
 
22
  }
23
 
24
- // Better debug function
25
- static function debug() {
26
- // integrate with FirePHP
27
- if ( function_exists('FB') ) {
28
- foreach ( func_get_args() as $arg )
29
- FB($arg);
30
 
31
- return;
32
- }
 
33
 
34
- echo "<pre>";
35
- foreach ( func_get_args() as $arg )
36
- if ( is_array($arg) || is_object($arg) )
37
- print_r($arg);
38
- else
39
- var_dump($arg);
40
- echo "</pre>";
41
  }
42
 
43
- // Minimalist HTML framework
44
- static function html($tag, $content = '', $indent = null) {
45
- list($closing) = explode(' ', $tag, 2);
46
 
47
- return "<{$tag}>{$content}</{$closing}>";
48
  }
49
 
50
- // Generate an <a> tag
51
- static function html_link($url, $title = '') {
52
- if ( empty($title) )
53
- $title = $url;
54
-
55
- return sprintf("<a href='%s'>%s</a>", $url, $title);
56
  }
57
 
58
-
59
- // Extract $keys from $array
60
  static function array_extract($array, $keys) {
61
  $r = array();
 
62
  foreach ( $keys as $key )
63
  if ( array_key_exists($key, $array) )
64
  $r[$key] = $array[$key];
65
 
66
- return $r;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  }
68
 
69
  // Prepare an array for an IN statement
@@ -73,16 +93,70 @@ class scbUtil {
73
 
74
  return implode(',', $values);
75
  }
76
- }
77
 
78
- // Create shortcuts
79
- foreach ( array('debug', 'html', 'html_link') as $func )
80
- if ( ! function_exists($func) )
81
- eval("
82
- function $func() {
83
- \$args = func_get_args();
 
 
 
84
 
85
- return call_user_func_array(array('scbUtil', '$func'), \$args);
86
  }
87
- ");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
 
1
  <?php
2
 
3
  class scbUtil {
4
+
5
  // Force script enqueue
6
  static function do_scripts($handles) {
7
  global $wp_scripts;
14
 
15
  // Force style enqueue
16
  static function do_styles($handles) {
17
+ self::do_scripts('jquery');
18
+
19
  global $wp_styles;
20
 
21
  if ( ! is_a($wp_styles, 'WP_Styles') )
22
  $wp_styles = new WP_Styles();
23
 
24
+ ob_start();
25
  $wp_styles->do_items((array) $handles);
26
+ $content = str_replace(array('"', "\n"), array("'", ''), ob_get_clean());
27
+
28
+ echo "<script type='text/javascript'>\n";
29
+ echo "jQuery(document).ready(function($) {\n";
30
+ echo "$('head').prepend(\"$content\");\n";
31
+ echo "});\n";
32
+ echo "</script>";
33
  }
34
 
 
 
 
 
 
 
35
 
36
+ // Have more than one uninstall hooks; also prevents an UPDATE query on each page load
37
+ static function add_uninstall_hook($plugin, $callback) {
38
+ register_uninstall_hook($plugin, '__return_false'); // dummy
39
 
40
+ add_action('uninstall_' . plugin_basename($plugin), $callback);
 
 
 
 
 
 
41
  }
42
 
43
+ // Apply a function to each element of a (nested) array recursively
44
+ static function array_map_recursive($callback, $array) {
45
+ array_walk_recursive($array, array(__CLASS__, 'array_map_recursive_helper'), $callback);
46
 
47
+ return $array;
48
  }
49
 
50
+ static function array_map_recursive_helper(&$val, $key, $callback) {
51
+ $val = call_user_func($callback, $val);
 
 
 
 
52
  }
53
 
54
+ // Extract certain $keys from $array
 
55
  static function array_extract($array, $keys) {
56
  $r = array();
57
+
58
  foreach ( $keys as $key )
59
  if ( array_key_exists($key, $array) )
60
  $r[$key] = $array[$key];
61
 
62
+ return $r;
63
+ }
64
+
65
+ // Extract a certain value from a list of arrays
66
+ static function array_pluck($array, $key) {
67
+ $r = array();
68
+
69
+ foreach ( $array as $value ) {
70
+ if ( is_object($value) )
71
+ $value = get_object_vars($value);
72
+ if ( array_key_exists($key, $value) )
73
+ $r[] = $value[$key];
74
+ }
75
+
76
+ return $r;
77
+ }
78
+
79
+ // Transform a list of objects into an associative array
80
+ static function objects_to_assoc($objects, $key, $value) {
81
+ $r = array();
82
+
83
+ foreach ( $objects as $obj )
84
+ $r[$obj->$key] = $obj->$value;
85
+
86
+ return $r;
87
  }
88
 
89
  // Prepare an array for an IN statement
93
 
94
  return implode(',', $values);
95
  }
 
96
 
97
+ // Example: split_at('</', '<a></a>') => array('<a>', '</a>')
98
+ static function split_at($delim, $str) {
99
+ $i = strpos($str, $delim);
100
+
101
+ if ( false === $i )
102
+ return false;
103
+
104
+ $start = substr($str, 0, $i);
105
+ $finish = substr($str, $i);
106
 
107
+ return array($start, $finish);
108
  }
109
+ }
110
+
111
+
112
+ //_____Minimalist HTML framework_____
113
+
114
+
115
+ if ( ! function_exists('html') ):
116
+ function html($tag, $content = '') {
117
+ list($closing) = explode(' ', $tag, 2);
118
+
119
+ return "<{$tag}>{$content}</{$closing}>";
120
+ }
121
+ endif;
122
+
123
+ // Generate an <a> tag
124
+ if ( ! function_exists('html_link') ):
125
+ function html_link($url, $title = '') {
126
+ if ( empty($title) )
127
+ $title = $url;
128
+
129
+ return sprintf("<a href='%s'>%s</a>", esc_url($url), $title);
130
+ }
131
+ endif;
132
+
133
+
134
+ //_____Compatibility layer_____
135
+
136
+
137
+ // WP < 3.0
138
+ if ( ! function_exists('__return_false') ) :
139
+ function __return_false() {
140
+ return false;
141
+ }
142
+ endif;
143
+
144
+ // WP < ?
145
+ if ( ! function_exists('__return_true') ) :
146
+ function __return_true() {
147
+ return true;
148
+ }
149
+ endif;
150
+
151
+ // WP < ?
152
+ if ( ! function_exists('set_post_field') ) :
153
+ function set_post_field($field, $value, $post_id) {
154
+ global $wpdb;
155
+
156
+ $post_id = absint($post_id);
157
+ $value = sanitize_post_field($field, $value, $post_id, 'db');
158
+
159
+ return $wpdb->update($wpdb->posts, array($field => $value), array('ID' => $post_id));
160
+ }
161
+ endif;
162
 
scb/Widget.php CHANGED
@@ -3,15 +3,34 @@
3
  // Adds compatibility methods between WP_Widget and scbForms
4
 
5
  abstract class scbWidget extends WP_Widget {
6
- private static $widgets = array();
7
- private static $migrations = array();
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  function widget($args, $instance) {
 
 
10
  extract($args);
11
 
12
  echo $before_widget;
13
 
14
- $title = apply_filters('widget_title', $instance['title'], $this->name);
15
 
16
  if ( ! empty($title) )
17
  echo $before_title . $title . $after_title;
@@ -21,26 +40,19 @@ abstract class scbWidget extends WP_Widget {
21
  echo $after_widget;
22
  }
23
 
 
24
  function content($instance) {}
25
 
26
- static function init($class, $file = '', $base = '') {
27
- self::$widgets[] = $class;
28
- self::$migrations[] = $base;
29
-
30
- add_action('widgets_init', array(__CLASS__, 'scb_register'));
31
- register_activation_hook($file, array(__CLASS__, 'scb_migrate'));
32
- }
33
-
34
 
35
- // ____HELPER METHODS____
36
 
37
 
38
  // See scbForms::input()
39
  // Allows extra parameter $args['title']
40
- function input($args, $formdata = array()) {
41
  // Add default class
42
  if ( !isset($args['extra']) )
43
- $args['extra'] = 'class="widefat"';
44
 
45
  // Add default label position
46
  if ( !in_array($args['type'], array('checkbox', 'radio')) && empty($args['desc_pos']) )
@@ -48,14 +60,8 @@ abstract class scbWidget extends WP_Widget {
48
 
49
  // Then add prefix to names and formdata
50
  $new_formdata = array();
51
- foreach ( (array) $args['name'] as $name ) {
52
- if ( false !== strpos($name, '[') )
53
- $newname = str_replace('[]', '', $this->get_field_name('')) . str_replace('[]', '', $name) . '[]';
54
- else
55
- $newname = $this->get_field_name($name);
56
-
57
- $new_formdata[ $newname ] = $formdata[$name];
58
- }
59
  $new_names = array_keys($new_formdata);
60
 
61
  // Finally, replace the old names
@@ -65,10 +71,13 @@ abstract class scbWidget extends WP_Widget {
65
  $args['name'] = $new_names;
66
 
67
  // Remember $desc and replace with $title
68
- if ( $args['desc'] )
69
- $desc = "<small>{$args['desc']}</small>";
70
- $args['desc'] = $args['title'];
71
- unset($args['title']);
 
 
 
72
 
73
  $input = scbForms::input($args, $new_formdata);
74
 
@@ -76,46 +85,16 @@ abstract class scbWidget extends WP_Widget {
76
  }
77
 
78
 
79
- // ____________PRIVATE METHODS____________
80
-
81
-
82
- static function scb_register() {
83
- foreach ( self::$widgets as $widget )
84
- register_widget($widget);
85
- }
86
-
87
- static function scb_migrate() {
88
- foreach ( self::$migrations as $base )
89
- self::migrate($base);
90
- }
91
-
92
- // Migrate from old scbWidget to WP_Widget
93
- private static function migrate($base) {
94
- $old_base = 'multiwidget_' . $base;
95
- $new_base = 'widget_' . $base;
96
 
97
- if ( ! $old = get_option($old_base) )
98
- return;
99
 
100
- foreach ( $old as $widget ) {
101
- if ( ! $id = $widget['__multiwidget'] )
102
- continue;
103
- unset($widget['__multiwidget']);
104
-
105
- $migrated[$id] = $widget;
106
- }
107
-
108
- $widgets = get_option('sidebars_widgets');
109
-
110
- foreach ( array_keys($migrated) as $key )
111
- $widgets['wp_inactive_widgets'][] = $base . '-' . $key;
112
-
113
- update_option('sidebars_widgets', $widgets);
114
-
115
- $migrated['_multiwidget'] = 1;
116
 
117
- update_option($new_base, $migrated);
118
- delete_option($old_base);
119
  }
120
  }
121
 
3
  // Adds compatibility methods between WP_Widget and scbForms
4
 
5
  abstract class scbWidget extends WP_Widget {
6
+ protected $defaults = array();
 
7
 
8
+ private static $scb_widgets = array();
9
+
10
+ static function init($class, $file = '', $base = '') {
11
+ self::$scb_widgets[] = $class;
12
+
13
+ add_action('widgets_init', array(__CLASS__, '_scb_register'));
14
+
15
+ // for auto-uninstall
16
+ if ( $file && $base && class_exists('scbOptions') )
17
+ new scbOptions("widget_$base", $file);
18
+ }
19
+
20
+ static function _scb_register() {
21
+ foreach ( self::$scb_widgets as $widget )
22
+ register_widget($widget);
23
+ }
24
+
25
+ // A pre-filled method, for convenience
26
  function widget($args, $instance) {
27
+ $instance = wp_parse_args($instance, $this->defaults);
28
+
29
  extract($args);
30
 
31
  echo $before_widget;
32
 
33
+ $title = apply_filters('widget_title', isset($instance['title']) ? $instance['title'] : '', $instance, $this->id_base);
34
 
35
  if ( ! empty($title) )
36
  echo $before_title . $title . $after_title;
40
  echo $after_widget;
41
  }
42
 
43
+ // This is where the actual widget content goes
44
  function content($instance) {}
45
 
 
 
 
 
 
 
 
 
46
 
47
+ //_____HELPER METHODS_____
48
 
49
 
50
  // See scbForms::input()
51
  // Allows extra parameter $args['title']
52
+ protected function input($args, $formdata = array()) {
53
  // Add default class
54
  if ( !isset($args['extra']) )
55
+ $args['extra'] = 'class="regular-text"';
56
 
57
  // Add default label position
58
  if ( !in_array($args['type'], array('checkbox', 'radio')) && empty($args['desc_pos']) )
60
 
61
  // Then add prefix to names and formdata
62
  $new_formdata = array();
63
+ foreach ( (array) $args['name'] as $name )
64
+ $new_formdata[$this->scb_get_field_name($name)] = @$formdata[$name];
 
 
 
 
 
 
65
  $new_names = array_keys($new_formdata);
66
 
67
  // Finally, replace the old names
71
  $args['name'] = $new_names;
72
 
73
  // Remember $desc and replace with $title
74
+ $desc = '';
75
+ if ( isset($args['title']) ) {
76
+ if ( isset($args['desc']) )
77
+ $desc = "<small>{$args['desc']}</small>";
78
+ $args['desc'] = $args['title'];
79
+ unset($args['title']);
80
+ }
81
 
82
  $input = scbForms::input($args, $new_formdata);
83
 
85
  }
86
 
87
 
88
+ //_____INTERNAL METHODS_____
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
 
 
 
90
 
91
+ private function scb_get_field_name($name) {
92
+ if ( $split = scbUtil::split_at('[', $name) )
93
+ list($basename, $extra) = $split;
94
+ else
95
+ return $this->get_field_name($name);
 
 
 
 
 
 
 
 
 
 
 
96
 
97
+ return str_replace('[]', '', $this->get_field_name($basename)) . $extra;
 
98
  }
99
  }
100
 
scb/load.php CHANGED
@@ -1,50 +1,69 @@
1
  <?php
2
- /*
3
- You can use this code to autoload the available classes of the scbFramework.
4
- This has the advantage that the user is not required to install scbFramework as a separate plugin.
5
- Things to note:
6
- - you have to include the class files with each plugin
7
- - you will have to update the framework manually
8
 
9
- To load the classes, you just need to require the file, like so:
 
 
10
 
11
- require_once dirname(__FILE__) . '/scb/load.php';
 
 
 
12
 
13
- This file needs to be in the same directory as the class files.
14
- */
15
 
16
- if ( !class_exists('scbLoad2') ) :
17
- abstract class scbLoad2 {
18
- private static $path;
19
 
20
- static function init($file, $classes) {
21
- self::$path = dirname($file) . '/';
22
 
23
- if ( class_exists('scbFramework') )
24
- self::$path .= 'classes/';
 
 
 
 
25
 
26
- foreach ( $classes as $className )
27
- self::load($className);
 
 
 
 
28
  }
29
 
30
- private static function load($className) {
31
- if ( class_exists($className) )
32
- return false;
33
 
34
- $fpath = self::$path . substr($className, 3) . '.php';
 
35
 
36
- if ( ! @file_exists($fpath) )
37
- return false;
 
 
 
 
 
 
 
 
 
 
 
38
 
39
- include $fpath;
 
40
 
41
- return true;
42
  }
43
  }
44
  endif;
45
 
46
- scbLoad2::init(__FILE__, array(
47
- 'scbOptions', 'scbForms', 'scbAdminPage', 'scbBoxesPage',
48
- 'scbWidget', 'scbCron', 'scbTable', 'scbUtil', 'scbRewrite',
 
49
  ));
50
 
1
  <?php
2
+ if ( !class_exists('scbLoad3') ) :
3
+ class scbLoad3 {
 
 
 
 
4
 
5
+ private static $candidates;
6
+ private static $loaded;
7
+ private static $initial_load;
8
 
9
+ static function init($rev, $file, $classes) {
10
+ if ( $path = get_option('scb-framework') && !self::$initial_load ) {
11
+ if ( $path != __FILE__ )
12
+ include $path;
13
 
14
+ self::$initial_load = true;
15
+ }
16
 
17
+ self::$candidates[$file] = $rev;
 
 
18
 
19
+ self::load(dirname($file) . '/', $classes);
 
20
 
21
+ add_action('deactivate_plugin', array(__CLASS__, 'deactivate'));
22
+ add_action('update_option_active_plugins', array(__CLASS__, 'reorder'));
23
+ }
24
+
25
+ static function deactivate($plugin) {
26
+ $plugin = dirname($plugin);
27
 
28
+ if ( '.' == $plugin )
29
+ return;
30
+
31
+ foreach ( self::$candidates as $path => $rev )
32
+ if ( plugin_basename(dirname(dirname($path))) == $plugin )
33
+ unset(self::$candidates[$path]);
34
  }
35
 
36
+ static function reorder() {
37
+ arsort(self::$candidates);
 
38
 
39
+ update_option('scb-framework', key(self::$candidates));
40
+ }
41
 
42
+ private static function load($path, $classes) {
43
+ foreach ( $classes as $class_name ) {
44
+ if ( class_exists($class_name) )
45
+ continue;
46
+
47
+ $fpath = $path . substr($class_name, 3) . '.php';
48
+
49
+ if ( file_exists($fpath) ) {
50
+ self::$loaded[$class_name] = $fpath;
51
+ include $fpath;
52
+ }
53
+ }
54
+ }
55
 
56
+ static function get_info() {
57
+ arsort(self::$candidates);
58
 
59
+ return array(get_option('scb-framework'), self::$loaded, self::$candidates);
60
  }
61
  }
62
  endif;
63
 
64
+ scbLoad3::init(14, __FILE__, array(
65
+ 'scbUtil', 'scbOptions', 'scbForms', 'scbTable', 'scbDebug',
66
+ 'scbWidget', 'scbAdminPage', 'scbBoxesPage',
67
+ 'scbQuery', 'scbRewrite', 'scbCron',
68
  ));
69
 
screenshot-1.png ADDED
Binary file
screenshot-2.png ADDED
Binary file
screenshot-3.png ADDED
Binary file
template-tags.php ADDED
@@ -0,0 +1,264 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ ### Function: Display UserOnline
4
+ function users_online() {
5
+ echo get_users_online();
6
+ }
7
+
8
+ function get_users_online() {
9
+ $template = UserOnline_Core::$options->templates['useronline'];
10
+ $template = str_ireplace('%PAGE_URL%', UserOnline_Core::$options->url, $template);
11
+ $template = str_ireplace('%MOSTONLINE_COUNT%', get_most_users_online(), $template);
12
+ $template = str_ireplace('%MOSTONLINE_DATE%', get_most_users_online_date(), $template);
13
+
14
+ return UserOnline_Template::format_count(get_users_online_count(), 'user', $template);
15
+ }
16
+
17
+ ### Function: Display UserOnline Count
18
+ function users_online_count() {
19
+ echo number_format_i18n(get_useronline_count());
20
+ }
21
+
22
+ function get_users_online_count() {
23
+ return UserOnline_Core::get_user_online_count();
24
+ }
25
+
26
+ ### Function: Display Max UserOnline
27
+ function most_users_online() {
28
+ echo number_format_i18n(get_most_users_online());
29
+ }
30
+
31
+ function get_most_users_online() {
32
+ return intval(UserOnline_Core::$most->count);
33
+ }
34
+
35
+ ### Function: Display Max UserOnline Date
36
+ function most_users_online_date() {
37
+ echo get_most_users_online_date();
38
+ }
39
+
40
+ function get_most_users_online_date() {
41
+ return UserOnline_Template::format_date(UserOnline_Core::$most->date);
42
+ }
43
+
44
+ ### Function: Display Users Browsing The Site
45
+ function users_browsing_site() {
46
+ echo get_users_browsing_site();
47
+ }
48
+
49
+ function get_users_browsing_site() {
50
+ return UserOnline_Template::compact_list('site');
51
+ }
52
+
53
+ ### Function: Display Users Browsing The (Current) Page
54
+ function users_browsing_page($page_url = '') {
55
+ echo get_users_browsing_page($page_url);
56
+ }
57
+
58
+ function get_users_browsing_page($page_url = '') {
59
+ return UserOnline_Template::compact_list('page');
60
+ }
61
+
62
+ ### Function: UserOnline Page
63
+ function users_online_page() {
64
+ global $wpdb;
65
+
66
+ $usersonline = $wpdb->get_results("SELECT * FROM $wpdb->useronline");
67
+
68
+ $user_buckets = array();
69
+ foreach ( $usersonline as $useronline )
70
+ $user_buckets[$useronline->user_type][] = $useronline;
71
+
72
+ $counts = UserOnline_Template::get_counts($user_buckets);
73
+
74
+ $nicetexts = array();
75
+ foreach ( array('user', 'member', 'guest', 'bot') as $user_type )
76
+ $nicetexts[$user_type] = UserOnline_Template::format_count($counts[$user_type], $user_type);
77
+
78
+ $text = _n(
79
+ 'There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>.',
80
+ 'There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>.',
81
+ $counts['user'], 'wp-useronline'
82
+ );
83
+
84
+ $output =
85
+ html('p', vsprintf($text, $nicetexts))
86
+ .html('p', UserOnline_Template::format_most_users())
87
+ .UserOnline_Template::detailed_list($counts, $user_buckets, $nicetexts);
88
+
89
+ return apply_filters('useronline_page', $output);
90
+ }
91
+
92
+ ### Function Check If User Is Online
93
+ function is_user_online($user_id) {
94
+ global $wpdb;
95
+
96
+ return (bool) $wpdb->get_var($wpdb-prepare("SELECT COUNT(*) FROM $wpdb->useronline WHERE user_id = %d LIMIT 1", $user_id));
97
+ }
98
+
99
+ function get_useronline_($output, $type = 'site') {
100
+ return UserOnline_Template::compact_list($type, $output);
101
+ }
102
+
103
+ class UserOnline_Template {
104
+
105
+ private static $cache = array();
106
+
107
+ function compact_list($type, $output = 'html') {
108
+
109
+ if ( !isset(self::$cache[$type]) ) {
110
+ global $wpdb;
111
+
112
+ if ( 'site' == $type )
113
+ $where = '';
114
+ elseif ( 'page' == $type )
115
+ $where = $wpdb->prepare('WHERE page_url = %s', $_SERVER['REQUEST_URI']);
116
+ else
117
+ $where = $wpdb->prepare('WHERE page_url = %s', $type);
118
+
119
+ self::$cache[$type] = $wpdb->get_results("SELECT * FROM $wpdb->useronline $where");
120
+ }
121
+ $users = self::$cache[$type];
122
+
123
+ if ( 'list' == $output )
124
+ return $users;
125
+
126
+ $buckets = array();
127
+ foreach ( $users as $user )
128
+ $buckets[$user->user_type][] = $user;
129
+
130
+ if ( 'buckets' == $output )
131
+ return $buckets;
132
+
133
+ $counts = self::get_counts($buckets);
134
+
135
+ if ( 'counts' == $output )
136
+ return $counts;
137
+
138
+ // Template - Naming Conventions
139
+ $naming = UserOnline_Core::$options->naming;
140
+
141
+ // Template - User(s) Browsing Site
142
+ $template = UserOnline_Core::$options->templates["browsing$type"];
143
+
144
+ // Nice Text For Users
145
+ $output = self::format_count($counts['user'], 'user', $template['text']);
146
+
147
+ // Print Member Name
148
+ $temp_member = '';
149
+ $members = $buckets['member'];
150
+ if ( $members ) {
151
+ $temp_member = array();
152
+ foreach ( $members as $member )
153
+ $temp_member[] = self::format_name($member);
154
+ $temp_member = implode($template['separators']['members'], $temp_member);
155
+ }
156
+ $output = str_ireplace('%MEMBER_NAMES%', $temp_member, $output);
157
+
158
+ // Counts
159
+ foreach ( array('member', 'guest', 'bot') as $user_type ) {
160
+ if ( $counts[$user_type] > 1 )
161
+ $number = str_ireplace('%COUNT%', number_format_i18n($counts[$user_type]), $naming[$user_type . 's']);
162
+ elseif ( $counts[$user_type] == 1 )
163
+ $number = $naming[$user_type];
164
+ else
165
+ $number = '';
166
+ $output = str_ireplace("%{$user_type}S%", $number, $output);
167
+ }
168
+
169
+ // Seperators
170
+ $separator = ( $counts['member'] && $counts['guest'] ) ? $template['separators']['guests'] : '';
171
+ $output = str_ireplace('%GUESTS_SEPERATOR%', $separator, $output);
172
+
173
+ $separator = ( ( $counts['guest'] || $counts['member'] ) && $counts['bot'] ) ? $template['separators']['bots'] : '';
174
+ $output = str_ireplace('%BOTS_SEPERATOR%', $separator, $output);
175
+
176
+ return $output;
177
+ }
178
+
179
+ function detailed_list($counts, $user_buckets, $nicetexts) {
180
+ if ( $counts['user'] == 0 )
181
+ return html('h2', __('No one is online now.', 'wp-useronline'));
182
+
183
+ $_on = __('on', 'wp-useronline');
184
+ $_url = __('url', 'wp-useronline');
185
+ $_referral = __('referral', 'wp-useronline');
186
+
187
+ $output = '';
188
+ foreach ( array('member', 'guest', 'bot') as $user_type ) {
189
+ if ( !$counts[$user_type] )
190
+ continue;
191
+
192
+ $count = $counts[$user_type];
193
+ $users = $user_buckets[$user_type];
194
+ $nicetext = $nicetexts[$user_type];
195
+
196
+ $output .= html('h2', $nicetext . ' ' . __('Online Now', 'wp-useronline'));
197
+
198
+ $i=1;
199
+ foreach ( $users as $user ) {
200
+ $nr = number_format_i18n($i++);
201
+ $name = self::format_name($user);
202
+ $user_ip = self::format_ip($user->user_ip);
203
+ $date = self::format_date($user->timestamp);
204
+ $page_title = esc_html($user->page_title);
205
+ $current_link = '[' . html_link(esc_url($user->page_url), $_url) . ']';
206
+
207
+ $referral_link = '';
208
+ if ( !empty($user->referral) )
209
+ $referral_link = '[' . html_link(esc_attr(esc_url($user->referral)), $_referral) . ']';
210
+
211
+ $output .= "<p><strong>#$nr - $name</strong> $user_ip $_on $date<br/>$page_title $current_link $referral_link</p>\n";
212
+ }
213
+ }
214
+
215
+ return $output;
216
+ }
217
+
218
+
219
+ function format_ip($ip) {
220
+ if ( ! current_user_can('administrator') || empty($ip) || $ip == 'unknown' )
221
+ return;
222
+
223
+ return '<span dir="ltr">(<a href="http://whois.domaintools.com/' . $ip . '" title="' . gethostbyaddr($ip) . '">' . $ip . '</a>)</span>';
224
+ }
225
+
226
+ function format_date($date) {
227
+ return mysql2date(sprintf(__('%s @ %s', 'wp-useronline'), get_option('date_format'), get_option('time_format')), $date, true);
228
+ }
229
+
230
+ function format_name($user) {
231
+ return apply_filters('useronline_display_user', esc_html($user->user_name), $user);
232
+ }
233
+
234
+ function format_count($count, $user_type, $template = '') {
235
+ $i = ($count == 1) ? '' : 's';
236
+ $string = UserOnline_Core::$options->naming[$user_type . $i];
237
+
238
+ $output = str_ireplace('%COUNT%', number_format_i18n($count), $string);
239
+
240
+ if ( empty($template) )
241
+ return $output;
242
+
243
+ return str_ireplace('%USERS%', $output, $template);
244
+ }
245
+
246
+ function format_most_users() {
247
+ return sprintf(__('Most users ever online were <strong>%s</strong>, on <strong>%s</strong>', 'wp-useronline'),
248
+ number_format_i18n(get_most_users_online()),
249
+ get_most_users_online_date()
250
+ );
251
+ }
252
+
253
+ function get_counts($buckets) {
254
+ $counts = array();
255
+ $total = 0;
256
+ foreach ( array('member', 'guest', 'bot') as $user_type )
257
+ $total += $counts[$user_type] = count(@$buckets[$user_type]);
258
+
259
+ $counts['user'] = $total;
260
+
261
+ return $counts;
262
+ }
263
+ }
264
+
useronline-js.dev.js → useronline.dev.js RENAMED
File without changes
useronline-js.js → useronline.js RENAMED
File without changes
widget.php CHANGED
@@ -7,43 +7,29 @@ class UserOnline_Widget extends scbWidget {
7
  }
8
 
9
  function content($instance) {
10
- $type = esc_attr($instance['type']);
11
 
12
- echo '<ul>'."\n";
13
- switch($type) {
14
  case 'users_online':
15
- echo '<li><div id="useronline-count">';
16
- get_useronline();
17
- echo '</div></li>'."\n";
18
  break;
19
  case 'users_browsing_page':
20
- echo '<li><div id="useronline-browsing-page">';
21
- get_users_browsing_page();
22
- echo '</div></li>'."\n";
23
  break;
24
  case 'users_browsing_site':
25
- echo '<li><div id="useronline-browsing-site">';
26
- get_users_browsing_site();
27
- echo '</div></li>'."\n";
28
  break;
29
  case 'users_online_browsing_page':
30
- echo '<li><div id="useronline-count">';
31
- get_useronline();
32
- echo '</div></li>'."\n";
33
- echo '<li><div id="useronline-browsing-page">';
34
- get_users_browsing_page();
35
- echo '</div></li>'."\n";
36
  break;
37
  case 'users_online_browsing_site':
38
- echo '<li><div id="useronline-count">';
39
- get_useronline();
40
- echo '</div></li>'."\n";
41
- echo '<li><div id="useronline-browsing-site">';
42
- get_users_browsing_site();
43
- echo '</div></li>'."\n";
44
  break;
45
  }
46
- echo "</ul>\n";
 
47
  }
48
 
49
  function update($new_instance, $old_instance) {
7
  }
8
 
9
  function content($instance) {
10
+ $out = '';
11
 
12
+ switch( $instance['type'] ) {
 
13
  case 'users_online':
14
+ $out .= html('div id="useronline-count"', get_users_online());
 
 
15
  break;
16
  case 'users_browsing_page':
17
+ $out .= html('div id="useronline-browsing-page"', get_users_browsing_page());
 
 
18
  break;
19
  case 'users_browsing_site':
20
+ $out .= html('div id="useronline-browsing-site"', get_users_browsing_site());
 
 
21
  break;
22
  case 'users_online_browsing_page':
23
+ $out .= html('div id="useronline-count"', get_users_online());
24
+ $out .= html('div id="useronline-browsing-page"', get_users_browsing_page());
 
 
 
 
25
  break;
26
  case 'users_online_browsing_site':
27
+ $out .= html('div id="useronline-count"', get_users_online());
28
+ $out .= html('div id="useronline-browsing-site"', get_users_browsing_site());
 
 
 
 
29
  break;
30
  }
31
+
32
+ echo $out;
33
  }
34
 
35
  function update($new_instance, $old_instance) {
wp-stats.php CHANGED
@@ -1,17 +1,10 @@
1
  <?php
2
 
3
  class UserOnline_WpStats {
 
4
  function init() {
5
  add_filter('wp_stats_page_admin_plugins', array(__CLASS__, 'page_admin_general_stats'));
6
  add_filter('wp_stats_page_plugins', array(__CLASS__, 'page_general_stats'));
7
-
8
- add_filter('useronline_display_name', array(__CLASS__, 'stats_page_link'));
9
- }
10
-
11
- function stats_page_link($author) {
12
- $stats_url = add_query_arg('stats_author', urlencode($author), get_option('stats_url'));
13
-
14
- return html_link($stats_url, $author);
15
  }
16
 
17
  // Add WP-UserOnline General Stats To WP-Stats Page Options
@@ -30,14 +23,14 @@ class UserOnline_WpStats {
30
  $str = _n(
31
  '<strong>%s</strong> user online now.',
32
  '<strong>%s</strong> users online now.',
33
- get_useronline_count(), 'wp-useronline'
34
  );
35
 
36
  if ( $stats_display['useronline'] == 1 )
37
  $content .=
38
- html('p', html('strong', __('WP-UserOnline', 'wp-useronline')))
39
  .html('ul',
40
- html('li', sprintf($str, number_format_i18n(get_useronline_count())))
41
  .html('li', UserOnline_Template::format_most_users())
42
  );
43
 
1
  <?php
2
 
3
  class UserOnline_WpStats {
4
+
5
  function init() {
6
  add_filter('wp_stats_page_admin_plugins', array(__CLASS__, 'page_admin_general_stats'));
7
  add_filter('wp_stats_page_plugins', array(__CLASS__, 'page_general_stats'));
 
 
 
 
 
 
 
 
8
  }
9
 
10
  // Add WP-UserOnline General Stats To WP-Stats Page Options
23
  $str = _n(
24
  '<strong>%s</strong> user online now.',
25
  '<strong>%s</strong> users online now.',
26
+ get_users_online_count(), 'wp-useronline'
27
  );
28
 
29
  if ( $stats_display['useronline'] == 1 )
30
  $content .=
31
+ html('p', html('strong', __('WP-UserOnline', 'wp-useronline')))
32
  .html('ul',
33
+ html('li', sprintf($str, number_format_i18n(get_users_online_count())))
34
  .html('li', UserOnline_Template::format_most_users())
35
  );
36
 
wp-useronline.php CHANGED
@@ -2,32 +2,43 @@
2
  /*
3
  Plugin Name: WP-UserOnline
4
  Plugin URI: http://wordpress.org/extend/plugins/wp-useronline/
5
- Description: 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.62
7
- Author: Lester 'GaMerZ' Chan
8
- Author URI: http://lesterchan.net
9
- */
10
 
11
 
12
- /*
13
- Copyright 2009 Lester Chan (email : lesterchan@gmail.com)
14
 
15
- This program is free software; you can redistribute it and/or modify
16
- it under the terms of the GNU General Public License as published by
17
- the Free Software Foundation; either version 2 of the License, or
18
- (at your option) any later version.
19
 
20
- This program is distributed in the hope that it will be useful,
21
- but WITHOUT ANY WARRANTY; without even the implied warranty of
22
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
- GNU General Public License for more details.
24
 
25
- You should have received a copy of the GNU General Public License
26
- along with this program; if not, write to the Free Software
27
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28
  */
29
 
30
  class UserOnline_Core {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  function init() {
33
  add_action('plugins_loaded', array(__CLASS__, 'wp_stats_integration'));
@@ -40,189 +51,240 @@ class UserOnline_Core {
40
  add_action('wp_ajax_useronline', array(__CLASS__, 'ajax'));
41
  add_action('wp_ajax_nopriv_useronline', array(__CLASS__, 'ajax'));
42
 
43
- add_shortcode('page_useronline', 'useronline_page');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
 
45
- register_activation_hook(__FILE__, array(__CLASS__, 'install'));
46
- register_uninstall_hook(__FILE__, array(__CLASS__, 'uninstall'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  }
48
 
49
- function wp_stats_integration() {
50
- if ( function_exists('stats_page') )
51
- require_once dirname(__FILE__) . '/wp-stats.php';
52
- }
53
 
54
- function install() {
55
- self::clear_table();
56
-
57
- $bots = array('Google Bot' => 'googlebot', 'Google Bot' => 'google', 'MSN' => 'msnbot', 'Alex' => 'ia_archiver', 'Lycos' => 'lycos', 'Ask Jeeves' => 'jeeves', 'Altavista' => 'scooter', 'AllTheWeb' => 'fast-webcrawler', 'Inktomi' => 'slurp@inktomi', 'Turnitin.com' => 'turnitinbot', 'Technorati' => 'technorati', 'Yahoo' => 'yahoo', 'Findexa' => 'findexa', 'NextLinks' => 'findlinks', 'Gais' => 'gaisbo', 'WiseNut' => 'zyborg', 'WhoisSource' => 'surveybot', 'Bloglines' => 'bloglines', 'BlogSearch' => 'blogsearch', 'PubSub' => 'pubsub', 'Syndic8' => 'syndic8', 'RadioUserland' => 'userland', 'Gigabot' => 'gigabot', 'Become.com' => 'become.com');
58
-
59
- // Add In Options
60
- add_option('useronline_most_users', 1);
61
- add_option('useronline_most_timestamp', current_time('timestamp'));
62
- add_option('useronline_timeout', 300);
63
- add_option('useronline_bots', $bots);
64
-
65
- // Database Upgrade For WP-UserOnline 2.05
66
- add_option('useronline_url', site_url('useronline/'));
67
-
68
- // Database Upgrade For WP-UserOnline 2.20
69
- add_option('useronline_naming', array(
70
- 'user' => __('1 User', 'wp-useronline'),
71
- 'users' => __('%USERONLINE_COUNT% Users', 'wp-useronline'),
72
- 'member' => __('1 Member', 'wp-useronline'),
73
- 'members' => __('%USERONLINE_COUNT% Members', 'wp-useronline'),
74
- 'guest' => __('1 Guest', 'wp-useronline'),
75
- 'guests' => __('%USERONLINE_COUNT% Guests', 'wp-useronline'),
76
- 'bot' => __('1 Bot', 'wp-useronline'),
77
- 'bots' => __('%USERONLINE_COUNT% Bots', 'wp-useronline')
78
- ));
79
 
80
- add_option('useronline_template_useronline', '<a href="%USERONLINE_PAGE_URL%" title="%USERONLINE_USERS%"><strong>%USERONLINE_USERS%</strong> '.__('Online', 'wp-useronline').'</a>');
81
 
82
- add_option('useronline_template_browsingsite', array(
83
- __(',', 'wp-useronline').' ',
84
- __(',', 'wp-useronline').' ',
85
- __(',', 'wp-useronline').' ',
86
- _c('Users|Template Element', 'wp-useronline').': <strong>%USERONLINE_MEMBER_NAMES%%USERONLINE_GUESTS_SEPERATOR%%USERONLINE_GUESTS%%USERONLINE_BOTS_SEPERATOR%%USERONLINE_BOTS%</strong>'
87
- ));
88
 
89
- add_option('useronline_template_browsingpage', array(
90
- __(',', 'wp-useronline').' ',
91
- __(',', 'wp-useronline').' ',
92
- __(',', 'wp-useronline').' ',
93
- '<strong>%USERONLINE_USERS%</strong> '.__('Browsing This Page.', 'wp-useronline').'<br />'._c('Users|Template Element', 'wp-useronline').': <strong>%USERONLINE_MEMBER_NAMES%%USERONLINE_GUESTS_SEPERATOR%%USERONLINE_GUESTS%%USERONLINE_BOTS_SEPERATOR%%USERONLINE_BOTS%</strong>'
94
- ));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  }
96
 
97
- function uninstall() {
98
- $useronline_settings = array('useronline_most_users', 'useronline_most_timestamp', 'useronline_timeout', 'useronline_bots', 'useronline_url', 'useronline_naming', 'useronline_template_useronline', 'useronline_template_browsingsite', 'useronline_template_browsingpage', 'widget_useronline');
 
99
 
100
- foreach ( $useronline_settings as $setting )
101
- delete_option($setting);
 
 
102
  }
103
 
104
  function scripts() {
105
- wp_enqueue_script('wp-useronline', plugins_url('useronline-js.js', __FILE__), array('jquery'), '2.60', true);
 
 
106
  wp_localize_script('wp-useronline', 'useronlineL10n', array(
107
  'ajax_url' => admin_url('admin-ajax.php'),
108
- 'timeout' => get_option('useronline_timeout')*1000
109
  ));
110
  }
111
 
112
  function record() {
113
- global $wpdb, $useronline;
114
 
115
- $timeoutseconds = get_option('useronline_timeout');
116
- $timestamp = current_time('timestamp');
117
- $timeout = $timestamp - $timeoutseconds;
118
 
119
- $ip = self::get_ip();
120
- $url = $_SERVER['REQUEST_URI'];
121
 
122
- $referral = '';
123
- $useragent = $_SERVER['HTTP_USER_AGENT'];
124
  $current_user = wp_get_current_user();
125
- if ( !empty($_SERVER['HTTP_REFERER'] ))
126
- $referral = strip_tags($_SERVER['HTTP_REFERER']);
127
 
128
  // Check For Bot
129
- $bots = get_option('useronline_bots');
 
130
  $bot_found = false;
131
- foreach ($bots as $name => $lookfor) {
132
- if ( stristr($useragent, $lookfor) === false )
133
- continue;
134
-
135
- $userid = 0;
136
- $displayname = $name;
137
- $username = $lookfor;
138
- $type = 'bot';
139
- $where = "WHERE ip = '$ip'";
140
- $bot_found = true;
141
-
142
- break;
143
- }
144
 
145
  // If No Bot Is Found, Then We Check Members And Guests
146
  if ( !$bot_found ) {
147
- // Check For Member
148
- if ( $current_user->ID > 0 ) {
149
- $userid = $current_user->ID;
150
- $displayname = $current_user->display_name;
151
- $username = $current_user->user_login;
152
- $type = 'member';
153
- $where = "WHERE userid = '$userid'";
154
- // Check For Comment Author (Guest)
155
- } elseif ( !empty($_COOKIE['comment_author_'.COOKIEHASH] )) {
156
- $userid = 0;
157
- $displayname = trim($_COOKIE['comment_author_'.COOKIEHASH]);
158
- $username = __('guest', 'wp-useronline').'_'.$displayname;
159
- $type = 'guest';
160
- $where = "WHERE ip = '$ip'";
161
- // Check For Guest
162
  } else {
163
- $userid = 0;
164
- $displayname = __('Guest', 'wp-useronline');
165
- $username = "guest";
166
- $type = 'guest';
167
- $where = "WHERE ip = '$ip'";
168
  }
169
  }
170
 
171
  // Check For Page Title
172
  if ( is_admin() && function_exists('get_admin_page_title') ) {
173
- $location = ' &raquo; '.__('Admin', 'wp-useronline').' &raquo; '.get_admin_page_title();
174
  } else {
175
- $location = wp_title('&raquo;', false);
176
- if ( empty($location) ) {
177
- $location = ' &raquo; '.$_SERVER['REQUEST_URI'];
178
- } elseif ( is_singular() ) {
179
- $location = ' &raquo; '.__('Archive', 'wp-useronline').' '.$location;
180
- }
181
  }
182
- $location = get_bloginfo('name').$location;
183
 
184
  // Delete Users
185
- $delete_users = $wpdb->query("DELETE FROM $wpdb->useronline $where OR (timestamp < $timeout)");
 
 
 
186
 
187
  // Insert Users
188
- $data = compact('timestamp', 'userid', 'username', 'displayname', 'useragent', 'ip', 'location', 'url', 'type', 'referral');
189
  $data = stripslashes_deep($data);
190
  $insert_user = $wpdb->insert($wpdb->useronline, $data);
191
 
192
  // Count Users Online
193
- $useronline = intval($wpdb->get_var("SELECT COUNT(*) FROM $wpdb->useronline"));
194
-
195
- // Get Most User Online
196
- $most_useronline = intval(get_option('useronline_most_users'));
197
-
198
- // Check Whether Current Users Online Is More Than Most Users Online
199
- if ( $useronline > $most_useronline ) {
200
- update_option('useronline_most_users', $useronline);
201
- update_option('useronline_most_timestamp', current_time('timestamp'));
202
- }
203
  }
204
-
205
  function ajax() {
206
  $mode = trim($_POST['mode']);
207
 
208
- if ( empty($mode) )
209
- return;
210
-
211
  switch($mode) {
212
  case 'count':
213
- get_useronline();
214
  break;
215
  case 'browsingsite':
216
- get_users_browsing_site();
217
  break;
218
  case 'browsingpage':
219
- get_users_browsing_page();
220
  break;
221
  }
222
 
223
- die();
 
 
 
 
 
224
  }
225
-
226
  private function get_ip() {
227
  if ( isset($_SERVER["HTTP_X_FORWARDED_FOR"]) )
228
  $ip_address = $_SERVER["HTTP_X_FORWARDED_FOR"];
@@ -241,312 +303,38 @@ class UserOnline_Core {
241
  }
242
  }
243
 
244
- ### Function: Display UserOnline
245
- function get_useronline($display = true) {
246
- $template = get_option('useronline_template_useronline');
247
- $template = str_replace('%USERONLINE_PAGE_URL%', get_option('useronline_url'), $template);
248
- $template = str_replace('%USERONLINE_MOSTONLINE_COUNT%', number_format_i18n(get_most_useronline()), $template);
249
- $template = str_replace('%USERONLINE_MOSTONLINE_DATE%', get_most_useronline_date(), $template);
250
-
251
- $template = UserOnline_Template::format_count($template, get_useronline_count());
252
-
253
- if ( !$display )
254
- return $template;
255
-
256
- echo $template;
257
- }
258
-
259
- ### Function: Display UserOnline Count
260
- function get_useronline_count($display = false) {
261
- global $wpdb, $useronline;
262
-
263
- if ( ! isset($useronline) )
264
- $useronline = intval($wpdb->get_var("SELECT COUNT(*) FROM $wpdb->useronline"));
265
-
266
- if ( !$display )
267
- return $useronline;
268
-
269
- echo number_format_i18n($useronline);
270
- }
271
-
272
- ### Function: Display Max UserOnline
273
- function get_most_useronline($display = false) {
274
- $most_useronline_users = intval(get_option('useronline_most_users'));
275
- if ( $display ) {
276
- echo number_format_i18n($most_useronline_users);
277
- } else {
278
- return $most_useronline_users;
279
- }
280
- }
281
-
282
- ### Function: Display Max UserOnline Date
283
- function get_most_useronline_date($display = false) {
284
- $most_useronline_date = UserOnline_Template::format_date(get_option('useronline_most_timestamp'));
285
-
286
- if ( !$display )
287
- return $most_useronline_date;
288
-
289
- echo $most_useronline_date;
290
- }
291
-
292
- ### Function Check If User Is Online
293
- function is_online($user_login) {
294
- global $wpdb;
295
- return intval($wpdb->get_var("SELECT COUNT(*) FROM $wpdb->useronline WHERE username = '$user_login' LIMIT 1"));
296
- }
297
-
298
-
299
-
300
- ### Function: Update Member last Visit
301
- //add_action('wp_head', 'update_memberlastvisit');
302
- function update_memberlastvisit() {
303
- global $current_user, $user_ID;
304
- if ( !empty($current_user ) && is_user_logged_in()) {
305
- update_user_option($user_ID, 'member_last_login', current_time('timestamp'));
306
- }
307
- }
308
-
309
-
310
- ### Function: Get Member last Visit
311
- function get_memberlastvisit($user_id = 0) {
312
- return UserOnline_Template::format_date(get_user_option('member_last_login', $user_id));
313
- }
314
-
315
-
316
- ### Function: Display Users Browsing The Site
317
- function get_users_browsing_site($display = true) {
318
- global $wpdb;
319
-
320
- $users_online = $wpdb->get_results("SELECT displayname, type FROM $wpdb->useronline ORDER BY type");
321
-
322
- if ( !$users_online )
323
- return;
324
-
325
- return UserOnline_Template::compact_list('site', $users_online, $display);
326
- }
327
-
328
- ### Function: Display Users Browsing The Page
329
- function get_users_browsing_page($display = true) {
330
- global $wpdb;
331
-
332
- $page_url = esc_sql(urlencode($_SERVER['REQUEST_URI']));
333
- $users_online = $wpdb->get_results("SELECT displayname, type FROM $wpdb->useronline WHERE url = '$page_url' ORDER BY type");
334
-
335
- if ( !$users_online )
336
- return;
337
-
338
- return UserOnline_Template::compact_list('page', $users_online, $display);
339
- }
340
-
341
- ### Function: UserOnline Page
342
- function useronline_page() {
343
- global $wpdb;
344
-
345
- $usersonline = $wpdb->get_results("SELECT * FROM $wpdb->useronline ORDER BY type");
346
-
347
- $user_buckets = array();
348
- foreach ( $usersonline as $useronline )
349
- $user_buckets[$useronline->type][] = (array) $useronline;
350
-
351
- $counts = UserOnline_Template::get_counts($user_buckets);
352
-
353
- $texts = array(
354
- 'user' => array(__('User', 'wp-useronline'), __('Users', 'wp-useronline')),
355
- 'member' => array(__('Member', 'wp-useronline'), __('Members', 'wp-useronline')),
356
- 'guest' => array(__('Guest', 'wp-useronline'), __('Guests', 'wp-useronline')),
357
- 'bot' => array(__('Bot', 'wp-useronline'), __('Bots', 'wp-useronline')),
358
- );
359
- foreach ( $texts as $type => $strings ) {
360
- $i = ($counts[$type] == 1) ? 0 : 1;
361
- $nicetexts[$type] = number_format_i18n($counts[$type]).' '.$strings[$i];
362
- }
363
-
364
- $text = _n(
365
- 'There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>.',
366
- 'There are a total of <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</strong> and <strong>%s</strong>.',
367
- $counts['user'], 'wp-useronline'
368
- );
369
-
370
- $output =
371
- html('p', sprintf($text, $nicetexts['user'], $nicetexts['member'], $nicetexts['guest'], $nicetexts['bot']))
372
- .html('p', UserOnline_Template::format_most_users())
373
- .UserOnline_Template::detailed_list($counts, $user_buckets, $nicetexts);
374
-
375
- return apply_filters('useronline_page', $output);
376
- }
377
-
378
-
379
- class UserOnline_Template {
380
-
381
- function compact_list($type, $users, $display) {
382
- $buckets = array();
383
- foreach ( $users as $user )
384
- $buckets[$user->type][] = $user->displayname;
385
-
386
- $counts = self::get_counts($buckets);
387
-
388
- if ( !$display )
389
- return $counts;
390
-
391
- // Template - Naming Conventions
392
- $naming = get_option('useronline_naming');
393
-
394
- // Template - User(s) Browsing Site
395
- list($separator_members, $separator_guests, $separator_bots, $template) = get_option("useronline_template_browsing$type");
396
-
397
- // Nice Text For Users
398
- $template = self::format_count($template, $counts['user']);
399
-
400
- // Print Member Name
401
- $temp_member = '';
402
- $members = $buckets['member'];
403
- if ( $members ) {
404
- $temp_member = array();
405
- foreach ( $members as $member )
406
- $temp_member[] = self::format_name($member, 'member');
407
- $temp_member = implode($separator_members, $temp_member);
408
- }
409
- $template = str_ireplace('%USERONLINE_MEMBER_NAMES%', $temp_member, $template);
410
-
411
- // Counts
412
- foreach ( array('member', 'guest', 'bot') as $type ) {
413
- if ( $counts[$type] > 1 )
414
- $number = str_ireplace('%USERONLINE_COUNT%', number_format_i18n($counts[$type]), $naming[$type . 's']);
415
- elseif ( $counts[$type] == 1 )
416
- $number = $naming[$type];
417
- else
418
- $number = '';
419
- $template = str_ireplace('%USERONLINE_' . $type . 'S%', $number, $template);
420
- }
421
-
422
- // Seperators
423
- if ( $counts['member'] > 0 && $counts['guest'] > 0 )
424
- $separator = $separator_guests;
425
- else
426
- $separator = '';
427
- $template = str_ireplace('%USERONLINE_GUESTS_SEPERATOR%', $separator, $template);
428
-
429
- if ( ($counts['guest'] > 0 || $counts['member'] > 0 ) && $counts['bot'] > 0)
430
- $separator = $separator_bots;
431
- else
432
- $separator = '';
433
- $template = str_ireplace('%USERONLINE_BOTS_SEPERATOR%', $separator, $template);
434
-
435
- // Output The Template
436
- echo $template;
437
- }
438
-
439
- function detailed_list($counts, $user_buckets, $nicetexts) {
440
- if ( $counts['user'] == 0 )
441
- return html('h2', __('No One Is Online Now', 'wp-useronline'));
442
-
443
- $on = __('on', 'wp-useronline');
444
- $url = __('url', 'wp-useronline');
445
- $referral = __('referral', 'wp-useronline');
446
-
447
- $output = '';
448
- foreach ( array('member', 'guest', 'bot') as $type ) {
449
- if ( !$counts[$type] )
450
- continue;
451
-
452
- $count = $counts[$type];
453
- $users = $user_buckets[$type];
454
- $nicetext = $nicetexts[$type];
455
-
456
- $output .= html('h2', "$nicetext ".__('Online Now', 'wp-useronline'));
457
-
458
- $i=1;
459
- foreach ( $users as $user ) {
460
- $nr = number_format_i18n($i++);
461
- $name = self::format_name($user['displayname'], $type);
462
- $ip = self::format_ip($user['ip']);
463
- $date = self::format_date($user['timestamp']);
464
- $location = $user['location'];
465
- $current_link = '[' . html_link(esc_url($user['url']), $url) .']';
466
-
467
- $referral_link = '';
468
- if ( !empty($user['referral']) )
469
- $referral_link = '[' . html_link(esc_url($user['referral']), $referral) . ']';
470
-
471
- $output .= html('p', "<strong>#$nr - $name</strong> $ip $on $date<br/>$location $current_link $referral_link") . "\n";
472
- }
473
- }
474
-
475
- return $output;
476
- }
477
-
478
-
479
- function format_ip($ip) {
480
- if ( ! current_user_can('administrator') || empty($ip) || $ip == 'unknown' )
481
- return;
482
-
483
- return '<span dir="ltr">(<a href="http://whois.domaintools.com/' . $ip . '" title="'.gethostbyaddr($ip).'">' . $ip . '</a>)</span>';
484
- }
485
-
486
- function format_date($timestamp) {
487
- return date_i18n(sprintf(__('%s @ %s', 'wp-useronline'), get_option('date_format'), get_option('time_format')), $timestamp, true);
488
- }
489
-
490
- function format_name($user, $type) {
491
- return apply_filters('useronline_display_name', $user, $type);
492
- }
493
-
494
- function format_count($template, $count) {
495
- $naming = get_option('useronline_naming');
496
-
497
- if ( $count == 1 )
498
- $naming_users = $naming['user'];
499
- else
500
- $naming_users = str_ireplace('%USERONLINE_COUNT%', number_format_i18n($count), $naming['users']);
501
-
502
- return str_ireplace('%USERONLINE_USERS%', $naming_users, $template);
503
- }
504
-
505
- function format_most_users() {
506
- return sprintf(__('Most users ever online were <strong>%s</strong>, on <strong>%s</strong>', 'wp-useronline'), number_format_i18n(get_most_useronline()), get_most_useronline_date());
507
- }
508
-
509
- function get_counts($buckets) {
510
- $counts = array();
511
- $total = 0;
512
- foreach ( array('member', 'guest', 'bot') as $type )
513
- $total += $counts[$type] = count(@$buckets[$type]);
514
-
515
- $counts['user'] = $total;
516
-
517
- return $counts;
518
- }
519
- }
520
-
521
  function _useronline_init() {
522
  require_once dirname(__FILE__) . '/scb/load.php';
523
 
524
- load_plugin_textdomain('wp-useronline', false, basename(dirname(__FILE__)));
525
-
526
- new scbTable('useronline', __FILE__, "
527
- timestamp int(15) NOT NULL default '0',
528
- userid int(10) NOT NULL default '0',
529
- username varchar(20) NOT NULL default '',
530
- displayname varchar(255) NOT NULL default '',
531
- useragent varchar(255) NOT NULL default '',
532
- ip varchar(40) NOT NULL default '',
533
- location varchar(255) NOT NULL default '',
534
- url varchar(255) NOT NULL default '',
535
- type enum('member','guest','bot') NOT NULL default 'guest',
536
- referral varchar(255) NOT NULL default '',
537
- UNIQUE KEY useronline_id (timestamp,username,ip,useragent)
538
- ");
539
 
540
  UserOnline_Core::init();
541
 
 
 
 
542
  require_once dirname(__FILE__) . '/widget.php';
543
- scbWidget::init('UserOnline_Widget', __FILE__);
 
 
 
544
 
545
  if ( is_admin() ) {
546
  require_once dirname(__FILE__) . '/admin.php';
547
- new UserOnline_Options(__FILE__);
548
- new UserOnline_Admin_Page(__FILE__);
549
  }
550
  }
551
  _useronline_init();
552
 
 
 
 
 
 
 
 
 
2
  /*
3
  Plugin Name: WP-UserOnline
4
  Plugin URI: http://wordpress.org/extend/plugins/wp-useronline/
5
+ Description: Enable you to display how many users are online on your Wordpress site
6
+ Version: 2.72
7
+ Author: Lester 'GaMerZ' Chan & scribu
 
 
8
 
9
 
10
+ Copyright 2009 Lester Chan (email : lesterchan@gmail.com)
 
11
 
12
+ This program is free software; you can redistribute it and/or modify
13
+ it under the terms of the GNU General Public License as published by
14
+ the Free Software Foundation; either version 2 of the License, or
15
+ (at your option) any later version.
16
 
17
+ This program is distributed in the hope that it will be useful,
18
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ GNU General Public License for more details.
21
 
22
+ You should have received a copy of the GNU General Public License
23
+ along with this program; if not, write to the Free Software
24
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25
  */
26
 
27
  class UserOnline_Core {
28
+ static $options;
29
+
30
+ static $most;
31
+
32
+ private static $useronline;
33
+
34
+ function get_user_online_count() {
35
+ global $wpdb;
36
+
37
+ if ( is_null(self::$useronline) )
38
+ self::$useronline = intval($wpdb->get_var("SELECT COUNT(*) FROM $wpdb->useronline"));
39
+
40
+ return self::$useronline;
41
+ }
42
 
43
  function init() {
44
  add_action('plugins_loaded', array(__CLASS__, 'wp_stats_integration'));
51
  add_action('wp_ajax_useronline', array(__CLASS__, 'ajax'));
52
  add_action('wp_ajax_nopriv_useronline', array(__CLASS__, 'ajax'));
53
 
54
+ add_shortcode('page_useronline', 'users_online_page');
55
+
56
+ register_activation_hook(__FILE__, array(__CLASS__, 'upgrade'));
57
+
58
+ // Table
59
+ new scbTable('useronline', __FILE__, "
60
+ timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
61
+ user_type varchar(20) NOT NULL default 'guest',
62
+ user_id bigint(20) NOT NULL default 0,
63
+ user_name varchar(250) NOT NULL default '',
64
+ user_ip varchar(20) NOT NULL default '',
65
+ user_agent text NOT NULL default '',
66
+ page_title text NOT NULL default '',
67
+ page_url varchar(255) NOT NULL default '',
68
+ referral varchar(255) NOT NULL default '',
69
+ UNIQUE KEY useronline_id (timestamp, user_ip, user_agent)
70
+ ");
71
+
72
+ self::$most = new scbOptions('useronline_most', __FILE__, array(
73
+ 'count' => 1,
74
+ 'date' => current_time('mysql')
75
+ ));
76
 
77
+ self::$options = new scbOptions('useronline', __FILE__, array(
78
+ 'timeout' => 300,
79
+ 'url' => trailingslashit(get_bloginfo('url')) . 'useronline',
80
+ 'names' => false,
81
+
82
+ 'naming' => array(
83
+ 'user' => __('1 User', 'wp-useronline'),
84
+ 'users' => __('%COUNT% Users', 'wp-useronline'),
85
+ 'member' => __('1 Member', 'wp-useronline'),
86
+ 'members' => __('%COUNT% Members', 'wp-useronline'),
87
+ 'guest' => __('1 Guest', 'wp-useronline'),
88
+ 'guests' => __('%COUNT% Guests', 'wp-useronline'),
89
+ 'bot' => __('1 Bot', 'wp-useronline'),
90
+ 'bots' => __('%COUNT% Bots', 'wp-useronline')
91
+ ),
92
+
93
+ 'templates' => array(
94
+ 'useronline' => '<a href="%PAGE_URL%"><strong>%USERS%</strong> '.__('Online', 'wp-useronline').'</a>',
95
+
96
+ 'browsingsite' => array(
97
+ 'separators' => array(
98
+ 'members' => __(',', 'wp-useronline').' ',
99
+ 'guests' => __(',', 'wp-useronline').' ',
100
+ 'bots' => __(',', 'wp-useronline').' ',
101
+ ),
102
+ 'text' => _x('Users', 'Template Element', 'wp-useronline').': <strong>%MEMBER_NAMES%%GUESTS_SEPERATOR%%GUESTS%%BOTS_SEPERATOR%%BOTS%</strong>'
103
+ ),
104
+
105
+ 'browsingpage' => array(
106
+ 'separators' => array(
107
+ 'members' => __(',', 'wp-useronline').' ',
108
+ 'guests' => __(',', 'wp-useronline').' ',
109
+ 'bots' => __(',', 'wp-useronline').' ',
110
+ ),
111
+ 'text' => '<strong>%USERS%</strong> '.__('Browsing This Page.', 'wp-useronline').'<br />'._x('Users', 'Template Element', 'wp-useronline').': <strong>%MEMBER_NAMES%%GUESTS_SEPERATOR%%GUESTS%%BOTS_SEPERATOR%%BOTS%</strong>'
112
+ )
113
+ )
114
+ ));
115
  }
116
 
117
+ function upgrade() {
118
+ global $wpdb;
 
 
119
 
120
+ // WP >= 2.70
121
+ if ( $options = get_option('useronline') ) {
122
+ $options['naming'] = scbUtil::array_map_recursive(array(__CLASS__, '_update_template'), $options['naming']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
 
124
+ update_option('useronline', $options);
125
 
126
+ return;
127
+ }
 
 
 
 
128
 
129
+ // WP < 2.70
130
+ $count = self::get_and_delete_option('useronline_most_users');
131
+ $date = self::get_and_delete_option('useronline_most_timestamp');
132
+
133
+ if ( !$count )
134
+ return;
135
+
136
+ add_option('useronline_most', compact('count', 'date'));
137
+
138
+ $naming = self::get_and_delete_option('useronline_naming');
139
+ $naming = scbUtil::array_map_recursive(array(__CLASS__, '_update_template'), $naming);
140
+
141
+ $templates['useronline'] = str_replace('%USERONLINE_', '%', self::get_and_delete_option('useronline_template_useronline'));
142
+
143
+ foreach ( array('browsingsite', 'browsingpage') as $template ) {
144
+ list($members, $guests, $bots, $text) = self::get_and_delete_option("useronline_template_$template");
145
+ $templates[$template] = array(
146
+ 'text' => str_replace('%USERONLINE_', '%', $text),
147
+ 'separators' => compact('members', 'guests', 'bots'),
148
+ );
149
+ }
150
+
151
+ $options = compact('naming', 'templates');
152
+ foreach ( array('timeout', 'url') as $option )
153
+ $options[$option] = self::get_and_delete_option("useronline_$option");
154
+
155
+ add_option('useronline', $options);
156
+
157
+ delete_option('useronline_bots');
158
+
159
+ $wpdb->query("DROP TABLE IF EXISTS {$wpdb->prefix}useronline");
160
  }
161
 
162
+ function _update_template($text) {
163
+ return str_replace('%USERONLINE_', '%', $text);
164
+ }
165
 
166
+ private function get_and_delete_option($key) {
167
+ $val = get_option($key);
168
+ delete_option($key);
169
+ return $val;
170
  }
171
 
172
  function scripts() {
173
+ $js_dev = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '.dev' : '';
174
+
175
+ wp_enqueue_script('wp-useronline', plugins_url("useronline$js_dev.js", __FILE__), array('jquery'), '2.70', true);
176
  wp_localize_script('wp-useronline', 'useronlineL10n', array(
177
  'ajax_url' => admin_url('admin-ajax.php'),
178
+ 'timeout' => self::$options->timeout * 1000
179
  ));
180
  }
181
 
182
  function record() {
183
+ global $wpdb;
184
 
185
+ $user_ip = self::get_ip();
186
+ $user_agent = $_SERVER['HTTP_USER_AGENT'];
187
+ $page_url = $_SERVER['REQUEST_URI'];
188
 
189
+ $referral = strip_tags(@$_SERVER['HTTP_REFERER']);
 
190
 
 
 
191
  $current_user = wp_get_current_user();
 
 
192
 
193
  // Check For Bot
194
+ $bots = array('Google Bot' => 'googlebot', 'Google Bot' => 'google', 'MSN' => 'msnbot', 'Alex' => 'ia_archiver', 'Lycos' => 'lycos', 'Ask Jeeves' => 'jeeves', 'Altavista' => 'scooter', 'AllTheWeb' => 'fast-webcrawler', 'Inktomi' => 'slurp@inktomi', 'Turnitin.com' => 'turnitinbot', 'Technorati' => 'technorati', 'Yahoo' => 'yahoo', 'Findexa' => 'findexa', 'NextLinks' => 'findlinks', 'Gais' => 'gaisbo', 'WiseNut' => 'zyborg', 'WhoisSource' => 'surveybot', 'Bloglines' => 'bloglines', 'BlogSearch' => 'blogsearch', 'PubSub' => 'pubsub', 'Syndic8' => 'syndic8', 'RadioUserland' => 'userland', 'Gigabot' => 'gigabot', 'Become.com' => 'become.com', 'Baidu' => 'baidu', 'Yandex' => 'yandex');
195
+
196
  $bot_found = false;
197
+ foreach ( $bots as $name => $lookfor )
198
+ if ( stristr($user_agent, $lookfor) !== false ) {
199
+ $user_id = 0;
200
+ $user_name = $name;
201
+ $username = $lookfor;
202
+ $user_type = 'bot';
203
+ $bot_found = true;
204
+
205
+ break;
206
+ }
207
+
208
+ $where = $wpdb->prepare("WHERE user_ip = %s", $user_ip);
 
209
 
210
  // If No Bot Is Found, Then We Check Members And Guests
211
  if ( !$bot_found ) {
212
+ if ( $current_user->ID ) {
213
+ // Check For Member
214
+ $user_id = $current_user->ID;
215
+ $user_name = $current_user->display_name;
216
+ $user_type = 'member';
217
+ $where = $wpdb->prepare("WHERE user_id = %d", $user_id);
218
+ } elseif ( !empty($_COOKIE['comment_author_'.COOKIEHASH]) ) {
219
+ // Check For Comment Author (Guest)
220
+ $user_id = 0;
221
+ $user_name = trim(strip_tags($_COOKIE['comment_author_'.COOKIEHASH]));
222
+ $user_type = 'guest';
 
 
 
 
223
  } else {
224
+ // Check For Guest
225
+ $user_id = 0;
226
+ $user_name = __('Guest', 'wp-useronline');
227
+ $user_type = 'guest';
 
228
  }
229
  }
230
 
231
  // Check For Page Title
232
  if ( is_admin() && function_exists('get_admin_page_title') ) {
233
+ $page_title = ' &raquo; ' . __('Admin', 'wp-useronline') . ' &raquo; ' . get_admin_page_title();
234
  } else {
235
+ $page_title = wp_title('&raquo;', false);
236
+ if ( empty($page_title) )
237
+ $page_title = ' &raquo; ' . strip_tags($_SERVER['REQUEST_URI']);
238
+ elseif ( is_singular() )
239
+ $page_title = ' &raquo; ' . __('Archive', 'wp-useronline') . ' ' . $page_title;
 
240
  }
241
+ $page_title = get_bloginfo('name') . $page_title;
242
 
243
  // Delete Users
244
+ $delete_users = $wpdb->query($wpdb->prepare("
245
+ DELETE FROM $wpdb->useronline
246
+ $where OR timestamp < CURRENT_TIMESTAMP - %d
247
+ ", self::$options->timeout));
248
 
249
  // Insert Users
250
+ $data = compact('user_type', 'user_id', 'user_name', 'user_ip', 'user_agent', 'page_title', 'page_url', 'referral');
251
  $data = stripslashes_deep($data);
252
  $insert_user = $wpdb->insert($wpdb->useronline, $data);
253
 
254
  // Count Users Online
255
+ self::$useronline = intval($wpdb->get_var("SELECT COUNT(*) FROM $wpdb->useronline"));
256
+
257
+ // Maybe Update Most User Online
258
+ if ( self::$useronline > self::$most->count )
259
+ self::$most->update(array(
260
+ 'count' => self::$useronline,
261
+ 'date' => current_time('mysql')
262
+ ));
 
 
263
  }
264
+
265
  function ajax() {
266
  $mode = trim($_POST['mode']);
267
 
 
 
 
268
  switch($mode) {
269
  case 'count':
270
+ users_online();
271
  break;
272
  case 'browsingsite':
273
+ users_browsing_site();
274
  break;
275
  case 'browsingpage':
276
+ users_browsing_page();
277
  break;
278
  }
279
 
280
+ die;
281
+ }
282
+
283
+ function wp_stats_integration() {
284
+ if ( function_exists('stats_page') )
285
+ require_once dirname(__FILE__) . '/wp-stats.php';
286
  }
287
+
288
  private function get_ip() {
289
  if ( isset($_SERVER["HTTP_X_FORWARDED_FOR"]) )
290
  $ip_address = $_SERVER["HTTP_X_FORWARDED_FOR"];
303
  }
304
  }
305
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
  function _useronline_init() {
307
  require_once dirname(__FILE__) . '/scb/load.php';
308
 
309
+ require_once dirname(__FILE__) . '/template-tags.php';
310
+ require_once dirname(__FILE__) . '/deprecated.php';
311
+
312
+ load_plugin_textdomain('wp-useronline', '', basename(dirname(__FILE__)));
 
 
 
 
 
 
 
 
 
 
 
313
 
314
  UserOnline_Core::init();
315
 
316
+ if ( UserOnline_Core::$options->names )
317
+ add_filter('useronline_display_user', 'wpu_linked_names', 10, 2);
318
+
319
  require_once dirname(__FILE__) . '/widget.php';
320
+ scbWidget::init('UserOnline_Widget', __FILE__, 'useronline');
321
+
322
+ if ( function_exists('stats_page') )
323
+ require_once dirname(__FILE__) . '/wp-stats.php';
324
 
325
  if ( is_admin() ) {
326
  require_once dirname(__FILE__) . '/admin.php';
327
+ scbAdminPage::register('UserOnline_Admin_Integration', __FILE__);
328
+ scbAdminPage::register('UserOnline_Options', __FILE__, UserOnline_Core::$options);
329
  }
330
  }
331
  _useronline_init();
332
 
333
+
334
+ function wpu_linked_names($name, $user) {
335
+ if ( !$user->user_id )
336
+ return $name;
337
+
338
+ return html_link(get_author_posts_url($user->user_id), $name);
339
+ }
340
+
wp-useronline.pot DELETED
@@ -1,332 +0,0 @@
1
- # Translation of the WordPress plugin WP-UserOnline 2.61 by Lester 'GaMerZ' Chan.
2
- # Copyright (C) 2010 Lester 'GaMerZ' Chan
3
- # This file is distributed under the same license as the WP-UserOnline package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
- #
6
- #, fuzzy
7
- msgid ""
8
- msgstr ""
9
- "Project-Id-Version: WP-UserOnline 2.61\n"
10
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-useronline\n"
11
- "POT-Creation-Date: 2010-02-15 14:30+0000\n"
12
- "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=utf-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
-
20
- #: admin.php:8
21
- msgid "Users Online Now"
22
- msgstr ""
23
-
24
- #. #-#-#-#-# plugin.pot (WP-UserOnline 2.61) #-#-#-#-#
25
- #. Plugin Name of an extension
26
- #: admin.php:9 wp-stats.php:21 wp-stats.php:38
27
- msgid "WP-UserOnline"
28
- msgstr ""
29
-
30
- #: admin.php:22
31
- #, php-format
32
- msgid "There is <strong><a href=\"%s\">%s user</a></strong> online now."
33
- msgid_plural ""
34
- "There are a total of <strong><a href=\"%s\">%s users</a></strong> online now."
35
- msgstr[0] ""
36
- msgstr[1] ""
37
-
38
- #: admin.php:47
39
- msgid "UserOnline Options"
40
- msgstr ""
41
-
42
- #: admin.php:48 widget.php:6 widget.php:63
43
- msgid "UserOnline"
44
- msgstr ""
45
-
46
- #: admin.php:58 wp-useronline.php:73
47
- msgid "Online"
48
- msgstr ""
49
-
50
- #: admin.php:64 wp-useronline.php:63
51
- msgid "1 User"
52
- msgstr ""
53
-
54
- #: admin.php:65 wp-useronline.php:64
55
- msgid "%USERONLINE_COUNT% Users"
56
- msgstr ""
57
-
58
- #: admin.php:66 wp-useronline.php:65
59
- msgid "1 Member"
60
- msgstr ""
61
-
62
- #: admin.php:67 wp-useronline.php:66
63
- msgid "%USERONLINE_COUNT% Members"
64
- msgstr ""
65
-
66
- #: admin.php:68 wp-useronline.php:67
67
- msgid "1 Guest"
68
- msgstr ""
69
-
70
- #: admin.php:69 wp-useronline.php:68
71
- msgid "%USERONLINE_COUNT% Guests"
72
- msgstr ""
73
-
74
- #: admin.php:70 wp-useronline.php:69
75
- msgid "1 Bot"
76
- msgstr ""
77
-
78
- #: admin.php:71 wp-useronline.php:70
79
- msgid "%USERONLINE_COUNT% Bots"
80
- msgstr ""
81
-
82
- #: admin.php:74 admin.php:75 admin.php:76 admin.php:80 admin.php:81
83
- #: admin.php:82 wp-useronline.php:76 wp-useronline.php:77 wp-useronline.php:78
84
- #: wp-useronline.php:83 wp-useronline.php:84 wp-useronline.php:85
85
- msgid ","
86
- msgstr ""
87
-
88
- #: admin.php:77 admin.php:83 wp-useronline.php:79 wp-useronline.php:86
89
- msgid "Users|Template Element"
90
- msgstr ""
91
-
92
- #: admin.php:83 wp-useronline.php:86
93
- msgid "Browsing This Page."
94
- msgstr ""
95
-
96
- #: admin.php:127
97
- msgid "Settings updated."
98
- msgstr ""
99
-
100
- #: admin.php:140
101
- msgid "Time Out"
102
- msgstr ""
103
-
104
- #: admin.php:142
105
- msgid "How long till it will remove the user from the database (In seconds)."
106
- msgstr ""
107
-
108
- #: admin.php:146
109
- msgid "UserOnline URL"
110
- msgstr ""
111
-
112
- #: admin.php:148
113
- msgid ""
114
- "URL To UserOnline Page (leave blank if you do not want to link it to the "
115
- "UserOnline Page)<br />Example: http://www.yoursite.com/blogs/useronline/<br /"
116
- ">Example: http://www.yoursite.com/blogs/?page_id=2"
117
- msgstr ""
118
-
119
- #: admin.php:152
120
- msgid "Bots Name/User Agent"
121
- msgstr ""
122
-
123
- #: admin.php:154
124
- msgid ""
125
- "Here are a list of bots and their partial browser agents.<br />On the left "
126
- "column will be the <strong>Bot's Name</strong> and on the right column will "
127
- "be their <strong>Partial Browser Agent</strong>.<br />Start each entry on a "
128
- "new line."
129
- msgstr ""
130
-
131
- #: admin.php:162
132
- msgid "Naming Conventions:"
133
- msgstr ""
134
-
135
- #: admin.php:163 admin.php:197 admin.php:222
136
- msgid "Allowed Variables:"
137
- msgstr ""
138
-
139
- #: admin.php:165 admin.php:202 admin.php:230
140
- msgid "Restore Default Template"
141
- msgstr ""
142
-
143
- #: admin.php:171
144
- msgid "Singular Form"
145
- msgstr ""
146
-
147
- #: admin.php:172
148
- msgid "Plural Form"
149
- msgstr ""
150
-
151
- #: admin.php:192
152
- msgid "Useronline Templates"
153
- msgstr ""
154
-
155
- #: admin.php:196
156
- msgid "User(s) Online:"
157
- msgstr ""
158
-
159
- #: admin.php:206
160
- msgid "User(s) Browsing Site:"
161
- msgstr ""
162
-
163
- #: admin.php:207
164
- msgid "User(s) Browsing Page:"
165
- msgstr ""
166
-
167
- #: admin.php:210 scb/AdminPage.php:119 scb/AdminPage.php:130
168
- msgid "Save Changes"
169
- msgstr ""
170
-
171
- #: admin.php:236
172
- msgid "Member Names Separator"
173
- msgstr ""
174
-
175
- #: admin.php:237
176
- msgid "Guests Separator"
177
- msgstr ""
178
-
179
- #: admin.php:238
180
- msgid "Bots Separator"
181
- msgstr ""
182
-
183
- #: scb/AdminPage.php:108
184
- msgid "Settings <strong>saved</strong>."
185
- msgstr ""
186
-
187
- #: scb/AdminPage.php:284
188
- msgid "Settings"
189
- msgstr ""
190
-
191
- #: widget.php:5
192
- msgid "WP-UserOnline users online statistics"
193
- msgstr ""
194
-
195
- #: widget.php:70
196
- msgid "Title:"
197
- msgstr ""
198
-
199
- #: widget.php:73
200
- msgid "Statistics Type:"
201
- msgstr ""
202
-
203
- #: widget.php:75
204
- msgid "Users Online Count"
205
- msgstr ""
206
-
207
- #: widget.php:76
208
- msgid "Users Browsing Current Page"
209
- msgstr ""
210
-
211
- #: widget.php:77
212
- msgid "Users Browsing Site"
213
- msgstr ""
214
-
215
- #: widget.php:79
216
- msgid "Users Online Count & Users Browsing Current Page"
217
- msgstr ""
218
-
219
- #: widget.php:80
220
- msgid "Users Online Count & Users Browsing Site"
221
- msgstr ""
222
-
223
- #: wp-stats.php:31
224
- #, php-format
225
- msgid "<strong>%s</strong> user online now."
226
- msgid_plural "<strong>%s</strong> users online now."
227
- msgstr[0] ""
228
- msgstr[1] ""
229
-
230
- #: wp-useronline.php:151
231
- msgid "guest"
232
- msgstr ""
233
-
234
- #: wp-useronline.php:157 wp-useronline.php:349
235
- msgid "Guest"
236
- msgstr ""
237
-
238
- #: wp-useronline.php:166
239
- msgid "Admin"
240
- msgstr ""
241
-
242
- #: wp-useronline.php:172
243
- msgid "Archive"
244
- msgstr ""
245
-
246
- #: wp-useronline.php:347
247
- msgid "User"
248
- msgstr ""
249
-
250
- #: wp-useronline.php:347
251
- msgid "Users"
252
- msgstr ""
253
-
254
- #: wp-useronline.php:348
255
- msgid "Member"
256
- msgstr ""
257
-
258
- #: wp-useronline.php:348
259
- msgid "Members"
260
- msgstr ""
261
-
262
- #: wp-useronline.php:349
263
- msgid "Guests"
264
- msgstr ""
265
-
266
- #: wp-useronline.php:350
267
- msgid "Bot"
268
- msgstr ""
269
-
270
- #: wp-useronline.php:350
271
- msgid "Bots"
272
- msgstr ""
273
-
274
- #: wp-useronline.php:358
275
- #, php-format
276
- msgid ""
277
- "There is <strong>%s</strong> online now: <strong>%s</strong>, <strong>%s</"
278
- "strong> and <strong>%s</strong>."
279
- msgid_plural ""
280
- "There are a total of <strong>%s</strong> online now: <strong>%s</strong>, "
281
- "<strong>%s</strong> and <strong>%s</strong>."
282
- msgstr[0] ""
283
- msgstr[1] ""
284
-
285
- #: wp-useronline.php:434
286
- msgid "No One Is Online Now"
287
- msgstr ""
288
-
289
- #: wp-useronline.php:436
290
- msgid "on"
291
- msgstr ""
292
-
293
- #: wp-useronline.php:437
294
- msgid "url"
295
- msgstr ""
296
-
297
- #: wp-useronline.php:438
298
- msgid "referral"
299
- msgstr ""
300
-
301
- #: wp-useronline.php:449
302
- msgid "Online Now"
303
- msgstr ""
304
-
305
- #: wp-useronline.php:480
306
- #, php-format
307
- msgid "%s @ %s"
308
- msgstr ""
309
-
310
- #: wp-useronline.php:499
311
- #, php-format
312
- msgid "Most users ever online were <strong>%s</strong>, on <strong>%s</strong>"
313
- msgstr ""
314
-
315
- #. Plugin URI of an extension
316
- msgid "http://wordpress.org/extend/plugins/wp-useronline/"
317
- msgstr ""
318
-
319
- #. Description of an extension
320
- msgid ""
321
- "Enable you to display how many users are online on your Wordpress blog with "
322
- "detailed statistics of where they are and who there are(Members/Guests/"
323
- "Search Bots)."
324
- msgstr ""
325
-
326
- #. Author of an extension
327
- msgid "Lester 'GaMerZ' Chan"
328
- msgstr ""
329
-
330
- #. Author URI of an extension
331
- msgid "http://lesterchan.net"
332
- msgstr ""