WP Statistics - Version 2.2.7

Version Description

  • Fix problem in widget class.
  • Redundancy in Arabic translation.
  • Fix problem in [countposts] shortcode.
  • Optimized Style Reports.
Download this release

Release Info

Developer mostafa.s1990
Plugin Icon 128x128 WP Statistics
Version 2.2.7
Comparing to
See all releases

Code changes from version 2.2.4 to 2.2.7

actions.php CHANGED
@@ -1,24 +1,30 @@
1
  <?php
2
- global $wpdb, $table_prefix;
3
  require('../../../wp-load.php');
4
- $increase_value = $_REQUEST['increase_value'];
5
- $reduction_value = $_REQUEST['reduction_value'];
 
6
 
7
- if($increase_value) {
8
- $result_increase = $wpdb->query("UPDATE {$table_prefix}statistics_visits SET total = total + '".$increase_value."'");
9
- $count_total = $wpdb->get_var("SELECT total FROM {$table_prefix}statistics_visits");
10
- if($result_increase) {
11
- echo __('Added', 'wp_statistics')." ".$increase_value." ".__('value', 'wp_statistics').". ";
12
- echo __('Total Visit', 'wp_statistics'). " $count_total";
13
- }
14
- } else if($reduction_value) {
15
- $result_reduction = $wpdb->query("UPDATE {$table_prefix}statistics_visits SET total = total - '".$reduction_value."'");
16
- $count_total = $wpdb->get_var("SELECT total FROM {$table_prefix}statistics_visits");
17
- if($result_reduction) {
18
- echo __('Was', 'wp_statistics')." ".$reduction_value." ".__('low value', 'wp_statistics').". ";
19
- echo __('Total Visit', 'wp_statistics'). " $count_total";
 
 
 
 
 
 
20
  }
21
  } else {
22
- _e('Please Enter value!', 'wp_statistics');
23
  }
24
  ?>
1
  <?php
 
2
  require('../../../wp-load.php');
3
+ if(is_super_admin())
4
+ {
5
+ global $wpdb, $table_prefix;
6
 
7
+ $increase_value = $_REQUEST['increase_value'];
8
+ $reduction_value = $_REQUEST['reduction_value'];
9
+
10
+ if($increase_value) {
11
+ $result_increase = $wpdb->query("UPDATE {$table_prefix}statistics_visits SET total = total + '".$increase_value."'");
12
+ $count_total = $wpdb->get_var("SELECT total FROM {$table_prefix}statistics_visits");
13
+ if($result_increase) {
14
+ echo __('Added', 'wp_statistics')." ".$increase_value." ".__('value', 'wp_statistics').". ";
15
+ echo __('Total Visit', 'wp_statistics'). " $count_total";
16
+ }
17
+ } else if($reduction_value) {
18
+ $result_reduction = $wpdb->query("UPDATE {$table_prefix}statistics_visits SET total = total - '".$reduction_value."'");
19
+ $count_total = $wpdb->get_var("SELECT total FROM {$table_prefix}statistics_visits");
20
+ if($result_reduction) {
21
+ echo __('Was', 'wp_statistics')." ".$reduction_value." ".__('low value', 'wp_statistics').". ";
22
+ echo __('Total Visit', 'wp_statistics'). " $count_total";
23
+ }
24
+ } else {
25
+ _e('Please Enter value!', 'wp_statistics');
26
  }
27
  } else {
28
+ wp_die(__('Access is Denied!', 'wp_statistics'));
29
  }
30
  ?>
langs/default.mo CHANGED
Binary file
langs/default.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-12 00:44+0330\n"
6
- "PO-Revision-Date: 2012-03-12 00:44+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -15,641 +15,644 @@ msgstr ""
15
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\n"
16
 
17
  #: F:\Program
18
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:11
19
  msgid "Added"
20
  msgstr ""
21
 
22
  #: F:\Program
23
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:11
24
  msgid "value"
25
  msgstr ""
26
 
27
  #: F:\Program
28
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:12
29
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:19
30
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:79
31
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:825
32
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1095
33
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1248
34
  msgid "Total Visit"
35
  msgstr ""
36
 
37
  #: F:\Program
38
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:18
39
  msgid "Was"
40
  msgstr ""
41
 
42
  #: F:\Program
43
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:18
44
  msgid "low value"
45
  msgstr ""
46
 
47
  #: F:\Program
48
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:22
49
  msgid "Please Enter value!"
50
  msgstr ""
51
 
52
  #: F:\Program
53
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:18
54
- msgid "Thanks for your report!"
 
 
55
  msgstr ""
56
 
57
  #: F:\Program
58
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:20
 
 
 
 
 
59
  msgid "Error! Please Enter all field"
60
  msgstr ""
61
 
62
  #: F:\Program
63
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:44
64
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:47
65
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:50
66
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:53
67
  msgid "deleted!"
68
  msgstr ""
69
 
70
  #: F:\Program
71
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:57
72
  msgid "All plugin data is deleted"
73
  msgstr ""
74
 
75
  #: F:\Program
76
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:58
77
  msgid "Disable plugin"
78
  msgstr ""
79
 
80
  #: F:\Program
81
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:60
82
  msgid "plugin options have been deleted"
83
  msgstr ""
84
 
85
  #: F:\Program
86
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
87
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
88
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:813
89
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1005
90
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1047
91
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1230
92
- msgid "User Online"
93
- msgstr ""
94
-
95
- #: F:\Program
96
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
97
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:801
98
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1055
99
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1233
100
- msgid "Today Visit"
101
  msgstr ""
102
 
103
  #: F:\Program
104
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:74
105
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:805
106
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1236
107
- msgid "Yesterday visit"
108
  msgstr ""
109
 
110
  #: F:\Program
111
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:84
112
- msgid "Plugin home page"
 
 
 
 
 
113
  msgstr ""
114
 
115
  #: F:\Program
116
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:253
117
- #, php-format
118
- msgid "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> and enable statistics"
 
 
119
  msgstr ""
120
 
121
  #: F:\Program
122
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:518
123
- msgid "Settings"
124
  msgstr ""
125
 
126
  #: F:\Program
127
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
128
- msgid "Stats Log"
 
 
129
  msgstr ""
130
 
131
  #: F:\Program
132
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
133
- msgid "Users Online"
 
 
134
  msgstr ""
135
 
136
  #: F:\Program
137
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
138
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:926
139
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:983
140
- msgid "You do not have sufficient permissions to access this page."
141
  msgstr ""
142
 
143
  #: F:\Program
144
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:609
145
- msgid "Are you sure?"
 
 
146
  msgstr ""
147
 
148
  #: F:\Program
149
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:621
150
- msgid "Configuration"
 
 
151
  msgstr ""
152
 
153
  #: F:\Program
154
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:626
155
- msgid "Enable Statistics"
 
 
156
  msgstr ""
157
 
158
  #: F:\Program
159
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
160
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:648
161
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:658
162
- msgid "Yes"
163
  msgstr ""
164
 
165
  #: F:\Program
166
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:634
167
- msgid "Statistics are enabled."
 
 
168
  msgstr ""
169
 
170
  #: F:\Program
171
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:636
172
- msgid "Statistics are disabled!"
 
 
173
  msgstr ""
174
 
175
  #: F:\Program
176
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:641
177
- msgid "General configuration"
 
 
178
  msgstr ""
179
 
180
  #: F:\Program
181
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:644
182
- msgid "Show decimals number"
 
 
183
  msgstr ""
184
 
185
  #: F:\Program
186
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:650
187
- msgid "Show number stats with decimal. For examle: 3,500"
 
 
188
  msgstr ""
189
 
190
  #: F:\Program
191
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:654
192
- msgid "Show stats in menu bar"
 
 
193
  msgstr ""
194
 
195
  #: F:\Program
196
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
197
- msgid "Show stats in admin menu bar"
198
  msgstr ""
199
 
200
  #: F:\Program
201
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:664
202
- msgid "Check for online users every"
203
  msgstr ""
204
 
205
  #: F:\Program
206
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:667
207
- msgid "Second"
 
 
208
  msgstr ""
209
 
210
  #: F:\Program
211
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:669
212
- msgid "Time for the check accurate online user in the site. Default: 60 Second"
213
  msgstr ""
214
 
215
  #: F:\Program
216
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:673
217
- msgid "Increase value of the total hits by"
218
  msgstr ""
219
 
220
  #: F:\Program
221
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
222
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:686
223
- msgid "Done"
224
  msgstr ""
225
 
226
  #: F:\Program
227
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:679
228
- msgid "Your total visit sum with this value"
229
  msgstr ""
230
 
231
  #: F:\Program
232
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:683
233
- msgid "Reduce value of the total hits by"
234
  msgstr ""
235
 
236
  #: F:\Program
237
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:689
238
- msgid "Your total visit minus with this value"
239
  msgstr ""
240
 
241
  #: F:\Program
242
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:693
243
- msgid "Number item for show Statistics"
244
  msgstr ""
245
 
246
  #: F:\Program
247
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:696
248
- msgid "Default 5"
249
  msgstr ""
250
 
251
  #: F:\Program
252
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:698
253
- msgid "Number for submit item in Database and show that"
254
  msgstr ""
255
 
256
  #: F:\Program
257
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
258
- msgid "Coefficient per visitor"
 
259
  msgstr ""
260
 
261
  #: F:\Program
262
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:705
263
- msgid "Default 1"
264
  msgstr ""
265
 
266
  #: F:\Program
267
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:707
268
- msgid "For each visitor to account for several hits."
269
  msgstr ""
270
 
271
  #: F:\Program
272
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
273
- msgid "Live Statistics configuration"
274
  msgstr ""
275
 
276
  #: F:\Program
277
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:713
278
- msgid "Refresh Stats every"
279
  msgstr ""
280
 
281
  #: F:\Program
282
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:716
283
- msgid "Second(s)"
 
 
284
  msgstr ""
285
 
286
  #: F:\Program
287
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:719
288
- msgid "Recommended"
289
  msgstr ""
290
 
291
  #: F:\Program
292
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:720
293
- msgid "To reduce pressure on the server, this defaults to 10 sec"
294
  msgstr ""
295
 
296
  #: F:\Program
297
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:724
298
- msgid "Pagerank configuration"
299
  msgstr ""
300
 
301
  #: F:\Program
302
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:727
303
- msgid "Your url for Google pagerank check"
 
 
 
304
  msgstr ""
305
 
306
  #: F:\Program
307
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:732
308
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
309
- msgid "If empty. you website url is used"
310
  msgstr ""
311
 
312
  #: F:\Program
313
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:737
314
- msgid "Your url for Alexa pagerank check"
315
  msgstr ""
316
 
317
  #: F:\Program
318
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:748
319
- msgid "About plugin"
320
  msgstr ""
321
 
322
  #: F:\Program
323
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:749
324
- msgid "Plugin Version"
325
  msgstr ""
326
 
327
  #: F:\Program
328
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:749
329
- msgid "Free!"
330
  msgstr ""
331
 
332
  #: F:\Program
333
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:751
334
- msgid "Get Premium version"
335
  msgstr ""
336
 
337
  #: F:\Program
338
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
339
- msgid "This plugin created by"
340
  msgstr ""
341
 
342
  #: F:\Program
343
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
344
- msgid "from"
345
  msgstr ""
346
 
347
  #: F:\Program
348
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
349
- msgid "group"
350
  msgstr ""
351
 
352
  #: F:\Program
353
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:760
354
- msgid "Plugin translators"
355
  msgstr ""
356
 
357
  #: F:\Program
358
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:764
359
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:765
360
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
361
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:767
362
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:768
363
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:769
364
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
365
- msgid "Language"
366
  msgstr ""
367
 
368
  #: F:\Program
369
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:764
370
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:765
371
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
372
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:767
373
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:768
374
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:769
375
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
376
- msgid "by"
377
  msgstr ""
378
 
379
  #: F:\Program
380
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:772
381
- msgid "for translate language files. please send files for"
382
  msgstr ""
383
 
384
  #: F:\Program
385
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:775
386
- msgid "Show Functions"
 
387
  msgstr ""
388
 
389
  #: F:\Program
390
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:776
391
- msgid "Report Problem"
392
  msgstr ""
393
 
394
  #: F:\Program
395
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:789
396
- msgid "User Online Live"
397
  msgstr ""
398
 
399
  #: F:\Program
400
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
401
- msgid "Total Visit Live"
402
  msgstr ""
403
 
404
  #: F:\Program
405
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:809
406
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1071
407
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1239
408
- msgid "Week Visit"
409
  msgstr ""
410
 
411
  #: F:\Program
412
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:817
413
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1079
414
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1242
415
- msgid "Month Visit"
416
  msgstr ""
417
 
418
  #: F:\Program
419
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:821
420
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1087
421
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1245
422
- msgid "Years Visit"
423
  msgstr ""
424
 
425
  #: F:\Program
426
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:829
427
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1103
428
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1251
429
- msgid "Search Engine reffered"
430
  msgstr ""
431
 
432
  #: F:\Program
433
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:833
434
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1119
435
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1269
436
- msgid "Total Posts"
437
  msgstr ""
438
 
439
  #: F:\Program
440
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:837
441
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1127
442
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1272
443
- msgid "Total Pages"
444
  msgstr ""
445
 
446
  #: F:\Program
447
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:841
448
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1135
449
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1275
450
- msgid "Total Comments"
451
  msgstr ""
452
 
453
  #: F:\Program
454
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:845
455
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1143
456
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1278
457
- msgid "Total Spams"
458
  msgstr ""
459
 
460
  #: F:\Program
461
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:849
462
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1151
463
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1281
464
- msgid "Total Users"
465
  msgstr ""
466
 
467
  #: F:\Program
468
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:853
469
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1183
470
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1293
471
- msgid "Last Post Date"
472
  msgstr ""
473
 
474
  #: F:\Program
475
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:857
476
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1159
477
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1284
478
- msgid "Average Posts"
479
  msgstr ""
480
 
481
  #: F:\Program
482
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:861
483
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1167
484
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1287
485
- msgid "Average Comments"
486
  msgstr ""
487
 
488
  #: F:\Program
489
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:865
490
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1175
491
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1290
492
- msgid "Average Users"
493
  msgstr ""
494
 
495
  #: F:\Program
496
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:869
497
- msgid "Total Feedburner Subscribe"
 
498
  msgstr ""
499
 
500
  #: F:\Program
501
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:873
502
- msgid "Google Pagerank"
503
  msgstr ""
504
 
505
  #: F:\Program
506
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:877
507
- msgid "Alexa Pagerank"
508
  msgstr ""
509
 
510
  #: F:\Program
511
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:881
512
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:891
513
- msgid "Hide"
514
  msgstr ""
515
 
516
  #: F:\Program
517
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:885
518
- msgid "Your Name"
519
  msgstr ""
520
 
521
  #: F:\Program
522
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:887
523
- msgid "Description Problem"
524
  msgstr ""
525
 
526
  #: F:\Program
527
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:890
528
- msgid "Send Problem"
529
  msgstr ""
530
 
531
  #: F:\Program
532
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:898
533
- msgid "Unistall plugin"
 
 
 
 
 
 
534
  msgstr ""
535
 
536
  #: F:\Program
537
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:904
538
- msgid "Delete all data, including tables and plugin options"
 
 
 
 
 
 
539
  msgstr ""
540
 
541
  #: F:\Program
542
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:905
543
- msgid "Uninstall"
544
  msgstr ""
545
 
546
  #: F:\Program
547
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:915
548
- msgid "Update"
549
  msgstr ""
550
 
551
  #: F:\Program
552
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:948
553
- msgid "Stats weblog"
554
  msgstr ""
555
 
556
  #: F:\Program
557
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:959
558
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1016
559
- msgid "No"
560
  msgstr ""
561
 
562
  #: F:\Program
563
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:960
564
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1017
565
- msgid "IP"
566
  msgstr ""
567
 
568
  #: F:\Program
569
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:961
570
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1018
571
- msgid "Time"
572
  msgstr ""
573
 
574
  #: F:\Program
575
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:962
576
- msgid "Referred"
577
  msgstr ""
578
 
579
  #: F:\Program
580
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:963
581
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1020
582
- msgid "Agent"
583
  msgstr ""
584
 
585
  #: F:\Program
586
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1019
587
- msgid "Referrer"
 
588
  msgstr ""
589
 
590
  #: F:\Program
591
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1063
592
- msgid "Yesterday Visit"
593
  msgstr ""
594
 
595
  #: F:\Program
596
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1223
597
- msgid "Name"
598
  msgstr ""
599
 
600
  #: F:\Program
601
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1227
602
- msgid "Items"
603
  msgstr ""
604
 
605
  #: F:\Program
606
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1254
607
- msgid "Select type of search engine"
608
  msgstr ""
609
 
610
  #: F:\Program
611
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1256
612
- msgid "Google"
613
  msgstr ""
614
 
615
  #: F:\Program
616
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1259
617
- msgid "Yahoo!"
618
  msgstr ""
619
 
620
  #: F:\Program
621
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1262
622
- msgid "Bing"
623
  msgstr ""
624
 
625
  #: F:\Program
626
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1265
627
- msgid "All"
 
628
  msgstr ""
629
 
630
  #: F:\Program
631
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1296
632
- msgid "Type date for last update"
 
633
  msgstr ""
634
 
635
  #: F:\Program
636
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1298
637
- msgid "English"
 
638
  msgstr ""
639
 
640
  #: F:\Program
641
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1301
642
- msgid "Persian"
643
  msgstr ""
644
 
645
  #: F:\Program
646
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1332
647
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1334
648
- msgid "WP-Statistics"
649
  msgstr ""
650
 
651
  #: F:\Program
652
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1333
653
- msgid "Show site stats in sidebar"
654
  msgstr ""
655
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-20 12:03+0330\n"
6
+ "PO-Revision-Date: 2012-03-20 12:03+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\n"
16
 
17
  #: F:\Program
18
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:14
19
  msgid "Added"
20
  msgstr ""
21
 
22
  #: F:\Program
23
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:14
24
  msgid "value"
25
  msgstr ""
26
 
27
  #: F:\Program
28
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:15
29
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:22
30
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:66
31
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:220
32
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
33
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:846
34
  msgid "Total Visit"
35
  msgstr ""
36
 
37
  #: F:\Program
38
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:21
39
  msgid "Was"
40
  msgstr ""
41
 
42
  #: F:\Program
43
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:21
44
  msgid "low value"
45
  msgstr ""
46
 
47
  #: F:\Program
48
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:25
49
  msgid "Please Enter value!"
50
  msgstr ""
51
 
52
  #: F:\Program
53
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:28
54
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:25
55
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:65
56
+ msgid "Access is Denied!"
57
  msgstr ""
58
 
59
  #: F:\Program
60
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:20
61
+ msgid "Thanks for your report!"
62
+ msgstr ""
63
+
64
+ #: F:\Program
65
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:22
66
  msgid "Error! Please Enter all field"
67
  msgstr ""
68
 
69
  #: F:\Program
70
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:46
71
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:49
72
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:52
73
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:55
74
  msgid "deleted!"
75
  msgstr ""
76
 
77
  #: F:\Program
78
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:59
79
  msgid "All plugin data is deleted"
80
  msgstr ""
81
 
82
  #: F:\Program
83
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:60
84
  msgid "Disable plugin"
85
  msgstr ""
86
 
87
  #: F:\Program
88
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:62
89
  msgid "plugin options have been deleted"
90
  msgstr ""
91
 
92
  #: F:\Program
93
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
94
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
95
+ msgid "WP-Statistics"
 
 
 
 
 
 
 
 
 
 
 
 
96
  msgstr ""
97
 
98
  #: F:\Program
99
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:5
100
+ msgid "Show site stats in sidebar"
 
 
101
  msgstr ""
102
 
103
  #: F:\Program
104
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:18
105
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:202
106
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:65
107
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:818
108
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:834
109
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1020
110
+ msgid "User Online"
111
  msgstr ""
112
 
113
  #: F:\Program
114
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:26
115
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:205
116
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
117
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:822
118
+ msgid "Today Visit"
119
  msgstr ""
120
 
121
  #: F:\Program
122
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:34
123
+ msgid "Yesterday Visit"
124
  msgstr ""
125
 
126
  #: F:\Program
127
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:42
128
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:211
129
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:830
130
+ msgid "Week Visit"
131
  msgstr ""
132
 
133
  #: F:\Program
134
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:50
135
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:214
136
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:838
137
+ msgid "Month Visit"
138
  msgstr ""
139
 
140
  #: F:\Program
141
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:58
142
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:217
143
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:842
144
+ msgid "Years Visit"
145
  msgstr ""
146
 
147
  #: F:\Program
148
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:74
149
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:223
150
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:850
151
+ msgid "Search Engine reffered"
152
  msgstr ""
153
 
154
  #: F:\Program
155
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:90
156
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:241
157
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:854
158
+ msgid "Total Posts"
159
  msgstr ""
160
 
161
  #: F:\Program
162
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:98
163
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:244
164
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:858
165
+ msgid "Total Pages"
166
  msgstr ""
167
 
168
  #: F:\Program
169
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:106
170
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:247
171
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:862
172
+ msgid "Total Comments"
173
  msgstr ""
174
 
175
  #: F:\Program
176
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:114
177
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:250
178
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:866
179
+ msgid "Total Spams"
180
  msgstr ""
181
 
182
  #: F:\Program
183
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:122
184
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:253
185
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:870
186
+ msgid "Total Users"
187
  msgstr ""
188
 
189
  #: F:\Program
190
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:130
191
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:256
192
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:878
193
+ msgid "Average Posts"
194
  msgstr ""
195
 
196
  #: F:\Program
197
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:138
198
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:259
199
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:882
200
+ msgid "Average Comments"
201
  msgstr ""
202
 
203
  #: F:\Program
204
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:146
205
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:262
206
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:886
207
+ msgid "Average Users"
208
  msgstr ""
209
 
210
  #: F:\Program
211
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:154
212
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:265
213
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:874
214
+ msgid "Last Post Date"
215
  msgstr ""
216
 
217
  #: F:\Program
218
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:195
219
+ msgid "Name"
220
  msgstr ""
221
 
222
  #: F:\Program
223
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:199
224
+ msgid "Items"
225
  msgstr ""
226
 
227
  #: F:\Program
228
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:208
229
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:75
230
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:826
231
+ msgid "Yesterday visit"
232
  msgstr ""
233
 
234
  #: F:\Program
235
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:226
236
+ msgid "Select type of search engine"
237
  msgstr ""
238
 
239
  #: F:\Program
240
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:228
241
+ msgid "Google"
242
  msgstr ""
243
 
244
  #: F:\Program
245
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:231
246
+ msgid "Yahoo!"
 
247
  msgstr ""
248
 
249
  #: F:\Program
250
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:234
251
+ msgid "Bing"
252
  msgstr ""
253
 
254
  #: F:\Program
255
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:237
256
+ msgid "All"
257
  msgstr ""
258
 
259
  #: F:\Program
260
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:268
261
+ msgid "Type date for last update"
262
  msgstr ""
263
 
264
  #: F:\Program
265
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:270
266
+ msgid "English"
267
  msgstr ""
268
 
269
  #: F:\Program
270
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:273
271
+ msgid "Persian"
272
  msgstr ""
273
 
274
  #: F:\Program
275
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
276
+ msgid "Plugin home page"
277
  msgstr ""
278
 
279
  #: F:\Program
280
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:266
281
+ #, php-format
282
+ msgid "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> and enable statistics"
283
  msgstr ""
284
 
285
  #: F:\Program
286
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:531
287
+ msgid "Statistics"
288
  msgstr ""
289
 
290
  #: F:\Program
291
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:532
292
+ msgid "Settings"
293
  msgstr ""
294
 
295
  #: F:\Program
296
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:533
297
+ msgid "Stats Log"
298
  msgstr ""
299
 
300
  #: F:\Program
301
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:534
302
+ msgid "Users Online"
303
  msgstr ""
304
 
305
  #: F:\Program
306
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:542
307
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:937
308
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:996
309
+ msgid "You do not have sufficient permissions to access this page."
310
  msgstr ""
311
 
312
  #: F:\Program
313
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:621
314
+ msgid "Are you sure?"
315
  msgstr ""
316
 
317
  #: F:\Program
318
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:633
319
+ msgid "Configuration"
320
  msgstr ""
321
 
322
  #: F:\Program
323
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
324
+ msgid "Enable Statistics"
325
  msgstr ""
326
 
327
  #: F:\Program
328
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:642
329
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
330
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:670
331
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:679
332
+ msgid "Yes"
333
  msgstr ""
334
 
335
  #: F:\Program
336
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:646
337
+ msgid "Statistics are enabled."
 
338
  msgstr ""
339
 
340
  #: F:\Program
341
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:648
342
+ msgid "Statistics are disabled!"
343
  msgstr ""
344
 
345
  #: F:\Program
346
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:653
347
+ msgid "General configuration"
348
  msgstr ""
349
 
350
  #: F:\Program
351
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:656
352
+ msgid "Show decimals number"
353
  msgstr ""
354
 
355
  #: F:\Program
356
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:662
357
+ msgid "Show number stats with decimal. For examle: 3,500"
358
  msgstr ""
359
 
360
  #: F:\Program
361
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:666
362
+ msgid "Show stats in menu bar"
363
  msgstr ""
364
 
365
  #: F:\Program
366
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:672
367
+ msgid "Show stats in admin menu bar"
368
  msgstr ""
369
 
370
  #: F:\Program
371
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
372
+ msgid "Daily referer of search engines"
373
  msgstr ""
374
 
375
  #: F:\Program
376
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:681
377
+ msgid "Can be calculated daily or total search engines"
378
  msgstr ""
379
 
380
  #: F:\Program
381
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
382
+ msgid "Check for online users every"
383
  msgstr ""
384
 
385
  #: F:\Program
386
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:688
387
+ msgid "Second"
 
 
 
 
 
 
388
  msgstr ""
389
 
390
  #: F:\Program
391
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:690
392
+ msgid "Time for the check accurate online user in the site. Default: 60 Second"
 
 
 
 
 
 
393
  msgstr ""
394
 
395
  #: F:\Program
396
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:694
397
+ msgid "Increase value of the total hits by"
398
  msgstr ""
399
 
400
  #: F:\Program
401
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:697
402
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:707
403
+ msgid "Done"
404
  msgstr ""
405
 
406
  #: F:\Program
407
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:700
408
+ msgid "Your total visit sum with this value"
409
  msgstr ""
410
 
411
  #: F:\Program
412
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:704
413
+ msgid "Reduce value of the total hits by"
414
  msgstr ""
415
 
416
  #: F:\Program
417
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
418
+ msgid "Your total visit minus with this value"
419
  msgstr ""
420
 
421
  #: F:\Program
422
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:714
423
+ msgid "Number item for show Statistics"
 
 
424
  msgstr ""
425
 
426
  #: F:\Program
427
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:717
428
+ msgid "Default 5"
 
 
429
  msgstr ""
430
 
431
  #: F:\Program
432
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:719
433
+ msgid "Number for submit item in Database and show that"
 
 
434
  msgstr ""
435
 
436
  #: F:\Program
437
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:723
438
+ msgid "Coefficient per visitor"
 
 
439
  msgstr ""
440
 
441
  #: F:\Program
442
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:726
443
+ msgid "Default 1"
 
 
444
  msgstr ""
445
 
446
  #: F:\Program
447
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:728
448
+ msgid "For each visitor to account for several hits."
 
 
449
  msgstr ""
450
 
451
  #: F:\Program
452
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:731
453
+ msgid "Live Statistics configuration"
 
 
454
  msgstr ""
455
 
456
  #: F:\Program
457
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:734
458
+ msgid "Refresh Stats every"
 
 
459
  msgstr ""
460
 
461
  #: F:\Program
462
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:737
463
+ msgid "Second(s)"
 
 
464
  msgstr ""
465
 
466
  #: F:\Program
467
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
468
+ msgid "Recommended"
 
 
469
  msgstr ""
470
 
471
  #: F:\Program
472
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:741
473
+ msgid "To reduce pressure on the server, this defaults to 10 sec"
 
 
474
  msgstr ""
475
 
476
  #: F:\Program
477
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:745
478
+ msgid "Pagerank configuration"
 
 
479
  msgstr ""
480
 
481
  #: F:\Program
482
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:748
483
+ msgid "Your url for Google pagerank check"
 
 
484
  msgstr ""
485
 
486
  #: F:\Program
487
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:753
488
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:763
489
+ msgid "If empty. you website url is used"
490
  msgstr ""
491
 
492
  #: F:\Program
493
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
494
+ msgid "Your url for Alexa pagerank check"
495
  msgstr ""
496
 
497
  #: F:\Program
498
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:772
499
+ msgid "Update"
500
  msgstr ""
501
 
502
  #: F:\Program
503
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:779
504
+ msgid "This plugin created by"
 
505
  msgstr ""
506
 
507
  #: F:\Program
508
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:779
509
+ msgid "from"
510
  msgstr ""
511
 
512
  #: F:\Program
513
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:779
514
+ msgid "group"
515
  msgstr ""
516
 
517
  #: F:\Program
518
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:781
519
+ msgid "Plugin translators"
520
  msgstr ""
521
 
522
  #: F:\Program
523
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:785
524
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:786
525
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
526
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:788
527
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:789
528
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:790
529
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:791
530
+ msgid "Language"
531
  msgstr ""
532
 
533
  #: F:\Program
534
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:785
535
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:786
536
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
537
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:788
538
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:789
539
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:790
540
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:791
541
+ msgid "by"
542
  msgstr ""
543
 
544
  #: F:\Program
545
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
546
+ msgid "for translate language files. please send files for"
547
  msgstr ""
548
 
549
  #: F:\Program
550
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
551
+ msgid "Show Functions"
552
  msgstr ""
553
 
554
  #: F:\Program
555
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
556
+ msgid "Report Problem"
557
  msgstr ""
558
 
559
  #: F:\Program
560
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:810
561
+ msgid "User Online Live"
 
562
  msgstr ""
563
 
564
  #: F:\Program
565
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:814
566
+ msgid "Total Visit Live"
 
567
  msgstr ""
568
 
569
  #: F:\Program
570
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:890
571
+ msgid "Total Feedburner Subscribe"
 
572
  msgstr ""
573
 
574
  #: F:\Program
575
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:894
576
+ msgid "Google Pagerank"
577
  msgstr ""
578
 
579
  #: F:\Program
580
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:898
581
+ msgid "Alexa Pagerank"
 
582
  msgstr ""
583
 
584
  #: F:\Program
585
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:902
586
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:912
587
+ msgid "Hide"
588
  msgstr ""
589
 
590
  #: F:\Program
591
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:906
592
+ msgid "Your Name"
593
  msgstr ""
594
 
595
  #: F:\Program
596
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:908
597
+ msgid "Description Problem"
598
  msgstr ""
599
 
600
  #: F:\Program
601
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:911
602
+ msgid "Send Problem"
603
  msgstr ""
604
 
605
  #: F:\Program
606
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:919
607
+ msgid "Unistall plugin"
608
  msgstr ""
609
 
610
  #: F:\Program
611
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:925
612
+ msgid "Delete all data, including tables and plugin options"
613
  msgstr ""
614
 
615
  #: F:\Program
616
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:926
617
+ msgid "Uninstall"
618
  msgstr ""
619
 
620
  #: F:\Program
621
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:959
622
+ msgid "Stats weblog"
623
  msgstr ""
624
 
625
  #: F:\Program
626
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:970
627
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1031
628
+ msgid "No"
629
  msgstr ""
630
 
631
  #: F:\Program
632
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:971
633
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1032
634
+ msgid "IP"
635
  msgstr ""
636
 
637
  #: F:\Program
638
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:972
639
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1033
640
+ msgid "Time"
641
  msgstr ""
642
 
643
  #: F:\Program
644
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:973
645
+ msgid "Referred"
646
  msgstr ""
647
 
648
  #: F:\Program
649
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:974
650
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1035
651
+ msgid "Agent"
652
  msgstr ""
653
 
654
  #: F:\Program
655
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1034
656
+ msgid "Referrer"
657
  msgstr ""
658
 
langs/wp_statistics-ar_AR.mo CHANGED
Binary file
langs/wp_statistics-ar_AR.po CHANGED
@@ -1,483 +1,670 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WP-Statistics in Arabic\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-03 19:10+0330\n"
6
- "PO-Revision-Date: 2012-02-04 16:15+0300\n"
7
- "Last-Translator: Hammad Alshammari <falcon@mail.net.sa>\n"
8
- "Language-Team: Hammad Alshammari <falcon@mail.net.sa>\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-KeywordsList: _;gettext;gettext_noop;_e\n"
13
  "X-Poedit-Language: Arabic\n"
14
- "X-Poedit-Basepath: .\n"
15
  "X-Poedit-Country: SAUDI ARABIA\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: F:\Program
20
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid "Please Enter value!"
22
  msgstr "الرجاء أدخل قيمة!"
23
 
 
 
 
 
 
 
 
24
  #: F:\Program
25
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:20
 
 
 
 
 
26
  msgid "Error! Please Enter all field"
27
  msgstr "خطأ! الرجاء إدخال جميع الحقول"
28
 
29
  #: F:\Program
30
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  msgid "Are you sure?"
32
  msgstr "هل أنت متأكد؟"
33
 
34
  #: F:\Program
35
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:546
36
  msgid "Configuration"
37
  msgstr "التكوين"
38
 
39
  #: F:\Program
40
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:551
41
  msgid "Enable Statistics"
42
  msgstr "تمكين الاحصائيات"
43
 
44
  #: F:\Program
45
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:555
46
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:573
47
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:583
 
48
  msgid "Yes"
49
  msgstr "نعم"
50
 
51
  #: F:\Program
52
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:559
53
  msgid "Statistics are enabled."
54
  msgstr "تم تمكين الإحصائيات."
55
 
56
  #: F:\Program
57
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:561
58
  msgid "Statistics are disabled!"
59
  msgstr "الإحصائيات معطلة!"
60
 
61
  #: F:\Program
62
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:566
63
  msgid "General configuration"
64
  msgstr "التكوين العام"
65
 
66
  #: F:\Program
67
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:569
68
  msgid "Show decimals number"
69
  msgstr "عرض عدد عشرى"
70
 
71
  #: F:\Program
72
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:575
73
  msgid "Show number stats with decimal. For examle: 3,500"
74
  msgstr "إظهار ارقام الاحصائيات بالشكل العشري. مثال: 3,500"
75
 
76
  #: F:\Program
77
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:579
78
  msgid "Show stats in menu bar"
79
  msgstr "إظهار الاحصائيات في شريط القوائم"
80
 
81
  #: F:\Program
82
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:585
83
  msgid "Show stats in admin menu bar"
84
  msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
85
 
86
  #: F:\Program
87
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:589
88
- msgid "Online user check time"
89
- msgstr "وقت فحص المتواجدين الآن"
90
 
91
  #: F:\Program
92
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
93
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:632
94
- msgid "Each"
95
- msgstr "كل"
96
 
97
  #: F:\Program
98
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:593
99
- msgid "Compute min"
100
- msgstr "الحساب بالدقيقة"
101
 
102
  #: F:\Program
103
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
104
- msgid "Time for the check accurate online user in the site. Default: 5 Minutes"
105
- msgstr "الوقت المستخدم لفحص المتواجدين الآن في الموقع. الافتراضي: 5 دقائق"
106
 
107
  #: F:\Program
108
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:599
109
- msgid "Increase value of the total hits"
110
- msgstr "زيادة قيمة كل الزيارات"
111
 
112
  #: F:\Program
113
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:602
114
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:612
 
 
 
 
 
115
  msgid "Done"
116
  msgstr "تم"
117
 
118
  #: F:\Program
119
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:605
120
  msgid "Your total visit sum with this value"
121
  msgstr "ضع القيمة هنا لزيادة المجموع الكلي للزيارات"
122
 
123
  #: F:\Program
124
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:609
125
- msgid "Reduction value of the total hits"
126
- msgstr "تخفيض قيمة كل الزيارات"
127
 
128
  #: F:\Program
129
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:615
130
  msgid "Your total visit minus with this value"
131
  msgstr "ضع القيمة هنا لتقليص المجموع الكلي من الزيارات"
132
 
133
  #: F:\Program
134
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:619
135
  msgid "Number item for show Statistics"
136
- msgstr "عدد البندو الظاهرة في الاحصائيات"
137
 
138
  #: F:\Program
139
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:622
140
  msgid "Default 5"
141
- msgstr "الافتراضي 5"
142
 
143
  #: F:\Program
144
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
145
  msgid "Number for submit item in Database and show that"
146
  msgstr "ضع عدد البنود المراد ظهورها في الاحصائيات"
147
 
148
  #: F:\Program
149
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:627
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  msgid "Live Statistics configuration"
151
  msgstr "إعدادات الاحصائيات المباشرة"
152
 
153
  #: F:\Program
154
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
155
- msgid "Database check time"
156
- msgstr "وقت فحص قاعدة البيانات"
157
 
158
  #: F:\Program
159
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:634
160
- msgid "Minute updates"
161
- msgstr "التحديث بالدقيقة"
162
 
163
  #: F:\Program
164
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:637
165
  msgid "Recommended"
166
  msgstr "موصى به"
167
 
168
  #: F:\Program
169
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
170
- msgid "Due to pressure on the server, Be set up on time. Default 1 min."
171
- msgstr "لما يسببه من الضغط على الخادم, نوصي بوضع القيمة الافتراضية وهي: 1 دقيقة."
172
 
173
  #: F:\Program
174
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:642
175
  msgid "Pagerank configuration"
176
- msgstr "اعدادات البيج رانك"
177
 
178
  #: F:\Program
179
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:645
180
  msgid "Your url for Google pagerank check"
181
  msgstr "رابط الفحص الخاص بك لجوجل بيج رانك"
182
 
183
  #: F:\Program
184
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:650
185
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
186
- msgid "If this input is empty, The website url uses"
187
- msgstr "اذا كان هذه القيمة فارغة, سيتم استخدام رابط الموقع"
188
 
189
  #: F:\Program
190
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:655
191
  msgid "Your url for Alexa pagerank check"
192
  msgstr "رابط الفحص الخاص بك لـ Alexa بيج رانك"
193
 
194
  #: F:\Program
195
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:666
196
- msgid "About plugin"
197
- msgstr "حول البرنامج المساعد"
198
-
199
- #: F:\Program
200
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:667
201
- msgid "Plugin Version"
202
- msgstr "رقم النسخة"
203
-
204
- #: F:\Program
205
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:667
206
- msgid "Free!"
207
- msgstr "مجاني!"
208
-
209
- #: F:\Program
210
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:669
211
- msgid "Get Premium version"
212
- msgstr "أحصل على النسخة المدفوعة"
213
 
214
  #: F:\Program
215
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
216
  msgid "This plugin created by"
217
  msgstr "هذه الإضافة تم إنشاؤها بواسطة"
218
 
219
  #: F:\Program
220
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
221
  msgid "from"
222
  msgstr "من"
223
 
224
  #: F:\Program
225
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
226
  msgid "group"
227
  msgstr "مجموعة"
228
 
229
  #: F:\Program
230
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:678
231
  msgid "Plugin translators"
232
  msgstr "مترجمين الإضافة"
233
 
234
  #: F:\Program
235
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:682
236
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:683
237
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
238
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
239
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:686
240
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:687
 
241
  msgid "Language"
242
  msgstr "لغة"
243
 
244
  #: F:\Program
245
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:682
246
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:683
247
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
248
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
249
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:686
250
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:687
 
251
  msgid "by"
252
  msgstr "بواسطة"
253
 
254
  #: F:\Program
255
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:689
256
  msgid "for translate language files. please send files for"
257
  msgstr "لملفات ترجمة اللغة: الرجاء ارسال الملفات لـ"
258
 
259
  #: F:\Program
260
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:692
261
  msgid "Show Functions"
262
  msgstr "عرض وظائف"
263
 
264
  #: F:\Program
265
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:693
266
  msgid "Report Problem"
267
  msgstr "تقرير مشكلة"
268
 
269
  #: F:\Program
270
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
271
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:722
272
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:914
273
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1139
274
- msgid "User Online"
275
  msgstr "المتواجدين الآن"
276
 
277
  #: F:\Program
278
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
279
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1142
280
- msgid "Today Visit"
281
- msgstr "زيارات اليوم"
282
-
283
- #: F:\Program
284
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:714
285
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1145
286
- msgid "Yesterday visit"
287
- msgstr "زيارات الأمس"
288
 
289
  #: F:\Program
290
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:718
291
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1148
 
292
  msgid "Week Visit"
293
  msgstr "زيارات الأسبوع"
294
 
295
  #: F:\Program
296
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:726
297
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1151
 
298
  msgid "Month Visit"
299
  msgstr "زيارات الشهر"
300
 
301
  #: F:\Program
302
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:730
303
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1154
 
304
  msgid "Years Visit"
305
  msgstr "زيارات السنة"
306
 
307
  #: F:\Program
308
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:734
309
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1157
310
- msgid "Total Visit"
311
- msgstr "مجموع الزيارات"
312
-
313
- #: F:\Program
314
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:738
315
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1160
316
  msgid "Search Engine reffered"
317
  msgstr "محركات البحث"
318
 
319
  #: F:\Program
320
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
321
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1178
 
322
  msgid "Total Posts"
323
  msgstr "إجمالي المشاركات"
324
 
325
  #: F:\Program
326
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:746
327
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1181
 
328
  msgid "Total Pages"
329
  msgstr "إجمالي الصفحات"
330
 
331
  #: F:\Program
332
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:750
333
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1184
 
334
  msgid "Total Comments"
335
  msgstr "إجمالي التعليقات"
336
 
337
  #: F:\Program
338
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:754
339
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1187
 
340
  msgid "Total Spams"
341
  msgstr "إجمالي السبام"
342
 
343
  #: F:\Program
344
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
345
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1190
 
346
  msgid "Total Users"
347
  msgstr "عدد الاعضاء"
348
 
349
  #: F:\Program
350
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:762
351
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1202
 
352
  msgid "Last Post Date"
353
  msgstr "تاريخ آخر مشاركة"
354
 
355
  #: F:\Program
356
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
357
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1193
 
358
  msgid "Average Posts"
359
  msgstr "متوسط المشاركات"
360
 
361
  #: F:\Program
362
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
363
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1196
 
364
  msgid "Average Comments"
365
  msgstr "متوسط التعليقات"
366
 
367
  #: F:\Program
368
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:774
369
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1199
 
370
  msgid "Average Users"
371
  msgstr "متوسط الاعضاء"
372
 
373
  #: F:\Program
374
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:778
375
  msgid "Total Feedburner Subscribe"
376
  msgstr "مشتركي الخلاصات"
377
 
378
  #: F:\Program
379
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:782
380
  msgid "Google Pagerank"
381
  msgstr "جوجل بيج رانك"
382
 
383
  #: F:\Program
384
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:786
385
  msgid "Alexa Pagerank"
386
  msgstr "اليكسا بيج رانك"
387
 
388
  #: F:\Program
389
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:790
390
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:800
391
  msgid "Hide"
392
  msgstr "إخفاء"
393
 
394
  #: F:\Program
395
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:794
396
  msgid "Your Name"
397
  msgstr "اسمك"
398
 
399
  #: F:\Program
400
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
401
  msgid "Description Problem"
402
  msgstr "وصف المشكلة"
403
 
404
  #: F:\Program
405
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:799
406
  msgid "Send Problem"
407
  msgstr "ارسال مشكلة"
408
 
409
  #: F:\Program
410
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:807
411
  msgid "Unistall plugin"
412
  msgstr "حذف الإضافة"
413
 
414
  #: F:\Program
415
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:813
416
  msgid "Delete all data, including tables and plugin options"
417
  msgstr "حذف جميع البيانات ، بما في ذلك الجداول وخيارات البرنامج المساعد"
418
 
419
  #: F:\Program
420
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:814
421
  msgid "Uninstall"
422
  msgstr "إلغاء التنصيب"
423
 
424
  #: F:\Program
425
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:824
426
- msgid "Update"
427
- msgstr "تحديث"
428
-
429
- #: F:\Program
430
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:857
431
  msgid "Stats weblog"
432
  msgstr "احصائيات المدونة"
433
 
434
  #: F:\Program
435
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
436
  msgid "Name"
437
- msgstr "الاسم"
438
 
439
  #: F:\Program
440
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1136
441
  msgid "Items"
442
  msgstr "البنود"
443
 
444
  #: F:\Program
445
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1163
446
  msgid "Select type of search engine"
447
  msgstr "حدد نوع من محرك البحث"
448
 
449
  #: F:\Program
450
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1165
451
  msgid "Google"
452
  msgstr "Google"
453
 
454
  #: F:\Program
455
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1168
456
  msgid "Yahoo!"
457
  msgstr "Yahoo!"
458
 
459
  #: F:\Program
460
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1171
461
  msgid "Bing"
462
  msgstr "Bing"
463
 
464
  #: F:\Program
465
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1174
466
  msgid "All"
467
- msgstr "الجميع"
468
 
469
  #: F:\Program
470
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1205
471
  msgid "Type date for last update"
472
  msgstr "اكتب تاريخ آخر تحديث"
473
 
474
  #: F:\Program
475
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1207
476
  msgid "English"
477
  msgstr "الانجليزية"
478
 
479
  #: F:\Program
480
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1210
481
  msgid "Persian"
482
  msgstr "الفارسية"
483
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-20 00:00+0330\n"
6
+ "PO-Revision-Date: 2012-03-07 00:12+0330\n"
7
+ "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
+ "Language-Team: ABU HATIM <al3zz.com@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-KeywordsList: gettext;gettext_noop;_e;__\n"
13
  "X-Poedit-Language: Arabic\n"
14
+ "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\n"
15
  "X-Poedit-Country: SAUDI ARABIA\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\n"
18
 
19
  #: F:\Program
20
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:14
21
+ msgid "Added"
22
+ msgstr "أضيفت"
23
+
24
+ #: F:\Program
25
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:14
26
+ msgid "value"
27
+ msgstr "قيمة"
28
+
29
+ #: F:\Program
30
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:15
31
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:22
32
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:79
33
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:854
34
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1122
35
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1275
36
+ msgid "Total Visit"
37
+ msgstr "مجموع الزيارات"
38
+
39
+ #: F:\Program
40
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:21
41
+ msgid "Was"
42
+ msgstr "وكان"
43
+
44
+ #: F:\Program
45
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:21
46
+ msgid "low value"
47
+ msgstr "تخفيض القيمة"
48
+
49
+ #: F:\Program
50
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:25
51
  msgid "Please Enter value!"
52
  msgstr "الرجاء أدخل قيمة!"
53
 
54
+ #: F:\Program
55
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:28
56
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:25
57
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:65
58
+ msgid "Access is Denied!"
59
+ msgstr "تم رفض الوصول!"
60
+
61
  #: F:\Program
62
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:20
63
+ msgid "Thanks for your report!"
64
+ msgstr "شكرا على التقرير الخاص بك!"
65
+
66
+ #: F:\Program
67
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:22
68
  msgid "Error! Please Enter all field"
69
  msgstr "خطأ! الرجاء إدخال جميع الحقول"
70
 
71
  #: F:\Program
72
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:46
73
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:49
74
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:52
75
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:55
76
+ msgid "deleted!"
77
+ msgstr "حذفت"
78
+
79
+ #: F:\Program
80
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:59
81
+ msgid "All plugin data is deleted"
82
+ msgstr "تم حذف جميع بيانات الإضافة"
83
+
84
+ #: F:\Program
85
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:60
86
+ msgid "Disable plugin"
87
+ msgstr "تعطيل الإضافة"
88
+
89
+ #: F:\Program
90
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:62
91
+ msgid "plugin options have been deleted"
92
+ msgstr "تم حذف خيارات الإضافة"
93
+
94
+ #: F:\Program
95
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
96
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:826
97
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:842
98
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1024
99
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1074
100
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1257
101
+ msgid "User Online"
102
+ msgstr "المتواجدين الآن"
103
+
104
+ #: F:\Program
105
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
106
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:830
107
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1082
108
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1260
109
+ msgid "Today Visit"
110
+ msgstr "زيارات اليوم"
111
+
112
+ #: F:\Program
113
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:74
114
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:834
115
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1263
116
+ msgid "Yesterday visit"
117
+ msgstr "زيارات الأمس"
118
+
119
+ #: F:\Program
120
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:84
121
+ msgid "Plugin home page"
122
+ msgstr "موقع الإضافة"
123
+
124
+ #: F:\Program
125
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:265
126
+ #, php-format
127
+ msgid "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> and enable statistics"
128
+ msgstr "إضافة WP-Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s\">صفحة الإعدادات</a> وقم بتفعيلها"
129
+
130
+ #: F:\Program
131
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:530
132
+ msgid "Statistics"
133
+ msgstr "الإحصائيات"
134
+
135
+ #: F:\Program
136
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:531
137
+ msgid "Settings"
138
+ msgstr "الإعدادات"
139
+
140
+ #: F:\Program
141
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:532
142
+ msgid "Stats Log"
143
+ msgstr "دخول الإحصائيات"
144
+
145
+ #: F:\Program
146
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:533
147
+ msgid "Users Online"
148
+ msgstr "الإعضاء المتواجدين"
149
+
150
+ #: F:\Program
151
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:541
152
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:945
153
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1002
154
+ msgid "You do not have sufficient permissions to access this page."
155
+ msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
156
+
157
+ #: F:\Program
158
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:621
159
  msgid "Are you sure?"
160
  msgstr "هل أنت متأكد؟"
161
 
162
  #: F:\Program
163
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:633
164
  msgid "Configuration"
165
  msgstr "التكوين"
166
 
167
  #: F:\Program
168
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
169
  msgid "Enable Statistics"
170
  msgstr "تمكين الاحصائيات"
171
 
172
  #: F:\Program
173
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:642
174
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
175
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:670
176
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:679
177
  msgid "Yes"
178
  msgstr "نعم"
179
 
180
  #: F:\Program
181
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:646
182
  msgid "Statistics are enabled."
183
  msgstr "تم تمكين الإحصائيات."
184
 
185
  #: F:\Program
186
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:648
187
  msgid "Statistics are disabled!"
188
  msgstr "الإحصائيات معطلة!"
189
 
190
  #: F:\Program
191
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:653
192
  msgid "General configuration"
193
  msgstr "التكوين العام"
194
 
195
  #: F:\Program
196
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:656
197
  msgid "Show decimals number"
198
  msgstr "عرض عدد عشرى"
199
 
200
  #: F:\Program
201
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:662
202
  msgid "Show number stats with decimal. For examle: 3,500"
203
  msgstr "إظهار ارقام الاحصائيات بالشكل العشري. مثال: 3,500"
204
 
205
  #: F:\Program
206
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:666
207
  msgid "Show stats in menu bar"
208
  msgstr "إظهار الاحصائيات في شريط القوائم"
209
 
210
  #: F:\Program
211
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:672
212
  msgid "Show stats in admin menu bar"
213
  msgstr "اظهار الاحصائيات في شريط القوائم الإداري"
214
 
215
  #: F:\Program
216
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
217
+ msgid "Daily referer of search engines"
218
+ msgstr "المرجعية يوميا من محركات البحث"
219
 
220
  #: F:\Program
221
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:681
222
+ msgid "Can be calculated daily or total search engines"
223
+ msgstr "يمكنك حساب محركات البحث بشكل يومي أو كلي"
 
224
 
225
  #: F:\Program
226
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
227
+ msgid "Check for online users every"
228
+ msgstr "تحقق من المتصلين في الموقع في كل"
229
 
230
  #: F:\Program
231
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:688
232
+ msgid "Second"
233
+ msgstr "ثانية"
234
 
235
  #: F:\Program
236
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:690
237
+ msgid "Time for the check accurate online user in the site. Default: 60 Second"
238
+ msgstr "وقت التحقق من المستخدمين المتصلين في الموقع. الإفتراضي: 60 ثانية"
239
 
240
  #: F:\Program
241
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:694
242
+ msgid "Increase value of the total hits by"
243
+ msgstr "زيادة قيمة إجمالي الزيارات من قبل"
244
+
245
+ #: F:\Program
246
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:697
247
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:707
248
  msgid "Done"
249
  msgstr "تم"
250
 
251
  #: F:\Program
252
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:700
253
  msgid "Your total visit sum with this value"
254
  msgstr "ضع القيمة هنا لزيادة المجموع الكلي للزيارات"
255
 
256
  #: F:\Program
257
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:704
258
+ msgid "Reduce value of the total hits by"
259
+ msgstr "خفض قيمة إجمالي الزيارات من قبل"
260
 
261
  #: F:\Program
262
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
263
  msgid "Your total visit minus with this value"
264
  msgstr "ضع القيمة هنا لتقليص المجموع الكلي من الزيارات"
265
 
266
  #: F:\Program
267
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:714
268
  msgid "Number item for show Statistics"
269
+ msgstr "عدد البنود الظاهرة في الاحصائيات"
270
 
271
  #: F:\Program
272
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:717
273
  msgid "Default 5"
274
+ msgstr "الإفتراضي 5"
275
 
276
  #: F:\Program
277
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:719
278
  msgid "Number for submit item in Database and show that"
279
  msgstr "ضع عدد البنود المراد ظهورها في الاحصائيات"
280
 
281
  #: F:\Program
282
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:723
283
+ msgid "Coefficient per visitor"
284
+ msgstr "مسمى لكل زائر"
285
+
286
+ #: F:\Program
287
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:726
288
+ msgid "Default 1"
289
+ msgstr "الإفتراضي 1"
290
+
291
+ #: F:\Program
292
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:728
293
+ msgid "For each visitor to account for several hits."
294
+ msgstr "حساب توجيه النقرات لكل زائر."
295
+
296
+ #: F:\Program
297
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:732
298
+ msgid "The CSS Class for the containing widget"
299
+ msgstr "الـ CSS ـكلاس تحتوي على قطعة"
300
+
301
+ #: F:\Program
302
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
303
+ msgid "If empty. class=\"widget\" will be used"
304
+ msgstr "اذا كانت فارغة class=\"القطعة\" سوف تستخدم"
305
+
306
+ #: F:\Program
307
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:739
308
  msgid "Live Statistics configuration"
309
  msgstr "إعدادات الاحصائيات المباشرة"
310
 
311
  #: F:\Program
312
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
313
+ msgid "Refresh Stats every"
314
+ msgstr "تحديث الإحصائيات كل"
315
 
316
  #: F:\Program
317
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:745
318
+ msgid "Second(s)"
319
+ msgstr "(ثانية) ثواني"
320
 
321
  #: F:\Program
322
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:748
323
  msgid "Recommended"
324
  msgstr "موصى به"
325
 
326
  #: F:\Program
327
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:749
328
+ msgid "To reduce pressure on the server, this defaults to 10 sec"
329
+ msgstr "لتخفيف الضغط على الخادم، ضع القيمة الإفتراضية 10 ثواني"
330
 
331
  #: F:\Program
332
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:753
333
  msgid "Pagerank configuration"
334
+ msgstr "إعدادات البيج رانك"
335
 
336
  #: F:\Program
337
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:756
338
  msgid "Your url for Google pagerank check"
339
  msgstr "رابط الفحص الخاص بك لجوجل بيج رانك"
340
 
341
  #: F:\Program
342
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:761
343
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:771
344
+ msgid "If empty. you website url is used"
345
+ msgstr "اذا كانت فارغة. سيتم أستخدام رابط موقعك"
346
 
347
  #: F:\Program
348
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
349
  msgid "Your url for Alexa pagerank check"
350
  msgstr "رابط الفحص الخاص بك لـ Alexa بيج رانك"
351
 
352
  #: F:\Program
353
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:780
354
+ msgid "Update"
355
+ msgstr "تحديث"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
 
357
  #: F:\Program
358
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
359
  msgid "This plugin created by"
360
  msgstr "هذه الإضافة تم إنشاؤها بواسطة"
361
 
362
  #: F:\Program
363
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
364
  msgid "from"
365
  msgstr "من"
366
 
367
  #: F:\Program
368
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
369
  msgid "group"
370
  msgstr "مجموعة"
371
 
372
  #: F:\Program
373
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:789
374
  msgid "Plugin translators"
375
  msgstr "مترجمين الإضافة"
376
 
377
  #: F:\Program
378
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
379
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:794
380
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:795
381
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
382
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
383
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:798
384
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:799
385
  msgid "Language"
386
  msgstr "لغة"
387
 
388
  #: F:\Program
389
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
390
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:794
391
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:795
392
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
393
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
394
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:798
395
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:799
396
  msgid "by"
397
  msgstr "بواسطة"
398
 
399
  #: F:\Program
400
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:801
401
  msgid "for translate language files. please send files for"
402
  msgstr "لملفات ترجمة اللغة: الرجاء ارسال الملفات لـ"
403
 
404
  #: F:\Program
405
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:804
406
  msgid "Show Functions"
407
  msgstr "عرض وظائف"
408
 
409
  #: F:\Program
410
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:805
411
  msgid "Report Problem"
412
  msgstr "تقرير مشكلة"
413
 
414
  #: F:\Program
415
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:818
416
+ msgid "User Online Live"
 
 
 
417
  msgstr "المتواجدين الآن"
418
 
419
  #: F:\Program
420
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:822
421
+ msgid "Total Visit Live"
422
+ msgstr "مجموع الزوار الآن"
 
 
 
 
 
 
 
423
 
424
  #: F:\Program
425
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:838
426
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1098
427
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1266
428
  msgid "Week Visit"
429
  msgstr "زيارات الأسبوع"
430
 
431
  #: F:\Program
432
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:846
433
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1106
434
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1269
435
  msgid "Month Visit"
436
  msgstr "زيارات الشهر"
437
 
438
  #: F:\Program
439
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:850
440
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1114
441
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1272
442
  msgid "Years Visit"
443
  msgstr "زيارات السنة"
444
 
445
  #: F:\Program
446
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:858
447
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1130
448
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1278
 
 
 
 
 
449
  msgid "Search Engine reffered"
450
  msgstr "محركات البحث"
451
 
452
  #: F:\Program
453
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:862
454
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1146
455
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1296
456
  msgid "Total Posts"
457
  msgstr "إجمالي المشاركات"
458
 
459
  #: F:\Program
460
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:866
461
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1154
462
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1299
463
  msgid "Total Pages"
464
  msgstr "إجمالي الصفحات"
465
 
466
  #: F:\Program
467
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:870
468
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1162
469
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1302
470
  msgid "Total Comments"
471
  msgstr "إجمالي التعليقات"
472
 
473
  #: F:\Program
474
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:874
475
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1170
476
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1305
477
  msgid "Total Spams"
478
  msgstr "إجمالي السبام"
479
 
480
  #: F:\Program
481
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:878
482
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1178
483
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1308
484
  msgid "Total Users"
485
  msgstr "عدد الاعضاء"
486
 
487
  #: F:\Program
488
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:882
489
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1210
490
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1320
491
  msgid "Last Post Date"
492
  msgstr "تاريخ آخر مشاركة"
493
 
494
  #: F:\Program
495
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:886
496
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1186
497
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1311
498
  msgid "Average Posts"
499
  msgstr "متوسط المشاركات"
500
 
501
  #: F:\Program
502
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:890
503
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1194
504
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1314
505
  msgid "Average Comments"
506
  msgstr "متوسط التعليقات"
507
 
508
  #: F:\Program
509
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:894
510
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1202
511
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1317
512
  msgid "Average Users"
513
  msgstr "متوسط الاعضاء"
514
 
515
  #: F:\Program
516
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:898
517
  msgid "Total Feedburner Subscribe"
518
  msgstr "مشتركي الخلاصات"
519
 
520
  #: F:\Program
521
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:902
522
  msgid "Google Pagerank"
523
  msgstr "جوجل بيج رانك"
524
 
525
  #: F:\Program
526
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:906
527
  msgid "Alexa Pagerank"
528
  msgstr "اليكسا بيج رانك"
529
 
530
  #: F:\Program
531
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:910
532
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:920
533
  msgid "Hide"
534
  msgstr "إخفاء"
535
 
536
  #: F:\Program
537
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:914
538
  msgid "Your Name"
539
  msgstr "اسمك"
540
 
541
  #: F:\Program
542
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:916
543
  msgid "Description Problem"
544
  msgstr "وصف المشكلة"
545
 
546
  #: F:\Program
547
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:919
548
  msgid "Send Problem"
549
  msgstr "ارسال مشكلة"
550
 
551
  #: F:\Program
552
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:927
553
  msgid "Unistall plugin"
554
  msgstr "حذف الإضافة"
555
 
556
  #: F:\Program
557
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:933
558
  msgid "Delete all data, including tables and plugin options"
559
  msgstr "حذف جميع البيانات ، بما في ذلك الجداول وخيارات البرنامج المساعد"
560
 
561
  #: F:\Program
562
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:934
563
  msgid "Uninstall"
564
  msgstr "إلغاء التنصيب"
565
 
566
  #: F:\Program
567
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:967
 
 
 
 
 
568
  msgid "Stats weblog"
569
  msgstr "احصائيات المدونة"
570
 
571
  #: F:\Program
572
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:978
573
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1035
574
+ msgid "No"
575
+ msgstr "لا"
576
+
577
+ #: F:\Program
578
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:979
579
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1036
580
+ msgid "IP"
581
+ msgstr "IP"
582
+
583
+ #: F:\Program
584
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:980
585
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1037
586
+ msgid "Time"
587
+ msgstr "الوقت"
588
+
589
+ #: F:\Program
590
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:981
591
+ msgid "Referred"
592
+ msgstr "مشاره"
593
+
594
+ #: F:\Program
595
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:982
596
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1039
597
+ msgid "Agent"
598
+ msgstr "وكيل"
599
+
600
+ #: F:\Program
601
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1038
602
+ msgid "Referrer"
603
+ msgstr "المرجع"
604
+
605
+ #: F:\Program
606
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1090
607
+ msgid "Yesterday Visit"
608
+ msgstr "زيارات الأمس"
609
+
610
+ #: F:\Program
611
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1250
612
  msgid "Name"
613
+ msgstr "الأسم"
614
 
615
  #: F:\Program
616
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1254
617
  msgid "Items"
618
  msgstr "البنود"
619
 
620
  #: F:\Program
621
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1281
622
  msgid "Select type of search engine"
623
  msgstr "حدد نوع من محرك البحث"
624
 
625
  #: F:\Program
626
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1283
627
  msgid "Google"
628
  msgstr "Google"
629
 
630
  #: F:\Program
631
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1286
632
  msgid "Yahoo!"
633
  msgstr "Yahoo!"
634
 
635
  #: F:\Program
636
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1289
637
  msgid "Bing"
638
  msgstr "Bing"
639
 
640
  #: F:\Program
641
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1292
642
  msgid "All"
643
+ msgstr "الكل"
644
 
645
  #: F:\Program
646
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1323
647
  msgid "Type date for last update"
648
  msgstr "اكتب تاريخ آخر تحديث"
649
 
650
  #: F:\Program
651
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1325
652
  msgid "English"
653
  msgstr "الانجليزية"
654
 
655
  #: F:\Program
656
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1328
657
  msgid "Persian"
658
  msgstr "الفارسية"
659
 
660
+ #: F:\Program
661
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1359
662
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1361
663
+ msgid "WP-Statistics"
664
+ msgstr "الإحصائيات"
665
+
666
+ #: F:\Program
667
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1360
668
+ msgid "Show site stats in sidebar"
669
+ msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
670
+
langs/wp_statistics-de_DE.mo CHANGED
Binary file
langs/wp_statistics-de_DE.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-12-26 23:42+0330\n"
6
- "PO-Revision-Date: 2012-03-10 14:05+0100\n"
7
- "Last-Translator: Andreas Martin <andreasmartin@webmail.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-12-26 23:42+0330\n"
6
+ "PO-Revision-Date: 2012-03-26 19:30+0330\n"
7
+ "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
langs/wp_statistics-fa_IR.mo CHANGED
Binary file
langs/wp_statistics-fa_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-12 00:44+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: <mat404@gmail.com>\n"
@@ -16,643 +16,672 @@ msgstr ""
16
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\n"
17
 
18
  #: F:\Program
19
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:11
20
  msgid "Added"
21
  msgstr "مقدار"
22
 
23
  #: F:\Program
24
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:11
25
  msgid "value"
26
  msgstr "افزوده شد"
27
 
28
  #: F:\Program
29
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:12
30
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:19
31
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:79
32
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:825
33
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1095
34
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1248
35
  msgid "Total Visit"
36
  msgstr "کل بازدیدها"
37
 
38
  #: F:\Program
39
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:18
40
  msgid "Was"
41
  msgstr "مقدار"
42
 
43
  #: F:\Program
44
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:18
45
  msgid "low value"
46
  msgstr "کم شد"
47
 
48
  #: F:\Program
49
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:22
50
  msgid "Please Enter value!"
51
  msgstr "لطفا مقداری را وارد کنید!"
52
 
53
  #: F:\Program
54
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:18
 
 
 
 
 
 
 
55
  msgid "Thanks for your report!"
56
  msgstr "با تشکر از گزارش شما!"
57
 
58
  #: F:\Program
59
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:20
60
  msgid "Error! Please Enter all field"
61
  msgstr "خطا! لطفا همه فیلدها را پرکنید"
62
 
63
  #: F:\Program
64
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:44
65
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:47
66
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:50
67
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:53
68
  msgid "deleted!"
69
  msgstr "پاک‌شد!"
70
 
71
  #: F:\Program
72
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:57
73
  msgid "All plugin data is deleted"
74
  msgstr "تمامی اطلاعات افزونه پاک شد"
75
 
76
  #: F:\Program
77
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:58
78
  msgid "Disable plugin"
79
  msgstr "افزونه را غیرفعال کنید."
80
 
81
  #: F:\Program
82
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:60
83
  msgid "plugin options have been deleted"
84
  msgstr "گزینه‌های افزونه قبلا پاک شده‌اند"
85
 
86
  #: F:\Program
87
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
88
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
89
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:813
90
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1005
91
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1047
92
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1230
 
 
 
 
 
 
 
 
 
 
 
93
  msgid "User Online"
94
  msgstr "کاربران حاضر"
95
 
96
  #: F:\Program
97
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
98
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:801
99
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1055
100
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1233
101
  msgid "Today Visit"
102
  msgstr "بازدید امروز"
103
 
104
  #: F:\Program
105
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:74
106
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:805
107
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  msgid "Yesterday visit"
109
  msgstr "بازدید دیروز"
110
 
111
  #: F:\Program
112
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  msgid "Plugin home page"
114
  msgstr "خانه‌ی افزونه"
115
 
116
  #: F:\Program
117
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:253
118
  #, php-format
119
  msgid "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> and enable statistics"
120
  msgstr "افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه تنظیمات</a> آمارگیر مراجعه کنید"
121
 
122
  #: F:\Program
123
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:518
 
 
 
 
 
124
  msgid "Settings"
125
  msgstr "تنظیمات"
126
 
127
  #: F:\Program
128
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
129
  msgid "Stats Log"
130
  msgstr "گزارش آمارها"
131
 
132
  #: F:\Program
133
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
134
  msgid "Users Online"
135
  msgstr "کاربران حاضر"
136
 
137
  #: F:\Program
138
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
139
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:926
140
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:983
141
  msgid "You do not have sufficient permissions to access this page."
142
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
143
 
144
  #: F:\Program
145
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:609
146
  msgid "Are you sure?"
147
  msgstr "آیا مطمئن هستید؟"
148
 
149
  #: F:\Program
150
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:621
151
  msgid "Configuration"
152
  msgstr "پیکربندی"
153
 
154
  #: F:\Program
155
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:626
156
  msgid "Enable Statistics"
157
  msgstr "آمارگیر فعال شود"
158
 
159
  #: F:\Program
160
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
161
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:648
162
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:658
 
163
  msgid "Yes"
164
  msgstr "بله"
165
 
166
  #: F:\Program
167
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:634
168
  msgid "Statistics are enabled."
169
  msgstr "آمارگیر فعال است."
170
 
171
  #: F:\Program
172
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:636
173
  msgid "Statistics are disabled!"
174
  msgstr "آمارگیر غیرفعال است!"
175
 
176
  #: F:\Program
177
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:641
178
  msgid "General configuration"
179
  msgstr "پیکربندی عمومی"
180
 
181
  #: F:\Program
182
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:644
183
  msgid "Show decimals number"
184
  msgstr "نمایش اعداد به‌صورت اعشاری"
185
 
186
  #: F:\Program
187
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:650
188
  msgid "Show number stats with decimal. For examle: 3,500"
189
  msgstr "نمایش اعداد آمارگیر به‌صورت اعشاری. برای مثال: 3،500"
190
 
191
  #: F:\Program
192
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:654
193
  msgid "Show stats in menu bar"
194
  msgstr "نمایش آمار در منوبار"
195
 
196
  #: F:\Program
197
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
198
  msgid "Show stats in admin menu bar"
199
  msgstr "نمایش آمار در منوبار مدیریت"
200
 
201
  #: F:\Program
202
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:664
 
 
 
 
 
 
 
 
 
 
203
  msgid "Check for online users every"
204
  msgstr "زمان بررسی برای محاسبه کاربران آنلاین هر"
205
 
206
  #: F:\Program
207
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:667
208
  msgid "Second"
209
  msgstr "ثانیه"
210
 
211
  #: F:\Program
212
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:669
213
  msgid "Time for the check accurate online user in the site. Default: 60 Second"
214
  msgstr "زمان برای بررسی دقیق کاربران حاضر در سایت. پیش‌فرض 60 ثانیه است"
215
 
216
  #: F:\Program
217
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:673
218
  msgid "Increase value of the total hits by"
219
  msgstr "افزایش مقدار به بازدید‌های کل"
220
 
221
  #: F:\Program
222
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
223
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:686
224
  msgid "Done"
225
  msgstr "انجام"
226
 
227
  #: F:\Program
228
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:679
229
  msgid "Your total visit sum with this value"
230
  msgstr "کل بازدیدها با این مقدار جمع می‌شود"
231
 
232
  #: F:\Program
233
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:683
234
  msgid "Reduce value of the total hits by"
235
  msgstr "کاهش مقدار از بازدید‌های کل"
236
 
237
  #: F:\Program
238
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:689
239
  msgid "Your total visit minus with this value"
240
  msgstr "کل بازدیدها از این مقدار کم می‌شود"
241
 
242
  #: F:\Program
243
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:693
244
  msgid "Number item for show Statistics"
245
  msgstr "تعداد آیتم برای نمایش آمار"
246
 
247
  #: F:\Program
248
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:696
249
  msgid "Default 5"
250
  msgstr "پیش‌فرض 5 است"
251
 
252
  #: F:\Program
253
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:698
254
  msgid "Number for submit item in Database and show that"
255
  msgstr "تعداد برای ثبت آیتم‌های آمار در پایگاه‌داده و نمایش آن"
256
 
257
  #: F:\Program
258
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
259
  msgid "Coefficient per visitor"
260
  msgstr "ضریب محاسبه هر بازدیدکننده"
261
 
262
  #: F:\Program
263
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:705
264
  msgid "Default 1"
265
  msgstr "پیش‌فرض 1 است"
266
 
267
  #: F:\Program
268
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:707
269
  msgid "For each visitor to account for several hits."
270
  msgstr "تعداد محاسبه برای هربازدیدکننده."
271
 
272
  #: F:\Program
273
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
274
  msgid "Live Statistics configuration"
275
  msgstr "پیکربندی بازدید لحظه‌ای"
276
 
277
  #: F:\Program
278
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:713
279
  msgid "Refresh Stats every"
280
  msgstr "تازه‌کردن آمار هر"
281
 
282
  #: F:\Program
283
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:716
284
  msgid "Second(s)"
285
  msgstr "ثانیه"
286
 
287
  #: F:\Program
288
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:719
289
  msgid "Recommended"
290
  msgstr "پیشنهاد میشود"
291
 
292
  #: F:\Program
293
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:720
294
  msgid "To reduce pressure on the server, this defaults to 10 sec"
295
  msgstr "به‌دلیل فشار برروی سرور، پیشنهاد می‌شود برروی زمان بالا تعیین شود. پیش‌فرض 10 ثانیه است."
296
 
297
  #: F:\Program
298
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:724
299
  msgid "Pagerank configuration"
300
  msgstr "تنظیمات رتبه‌بندی"
301
 
302
  #: F:\Program
303
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:727
304
  msgid "Your url for Google pagerank check"
305
  msgstr "آدرس شما برای بررسی رتبه‌بندی گوگل"
306
 
307
  #: F:\Program
308
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:732
309
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
310
  msgid "If empty. you website url is used"
311
  msgstr "اگراین قسمت خالی باشد، از آدرس اصلی سایت استفاده می‌کند"
312
 
313
  #: F:\Program
314
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:737
315
  msgid "Your url for Alexa pagerank check"
316
  msgstr "آدرس شما برای بررسی رتبه‌بندی الکسا"
317
 
318
  #: F:\Program
319
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:748
320
- msgid "About plugin"
321
- msgstr "درباره‌ی افزونه"
322
-
323
- #: F:\Program
324
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:749
325
- msgid "Plugin Version"
326
- msgstr "نسخه افزونه"
327
-
328
- #: F:\Program
329
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:749
330
- msgid "Free!"
331
- msgstr "رایگان!"
332
-
333
- #: F:\Program
334
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:751
335
- msgid "Get Premium version"
336
- msgstr "دریافت نسخه‌ی ویژه"
337
 
338
  #: F:\Program
339
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
340
  msgid "This plugin created by"
341
  msgstr "این افزونه توسط"
342
 
343
  #: F:\Program
344
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
345
  msgid "from"
346
  msgstr "از گروه"
347
 
348
  #: F:\Program
349
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
350
  msgid "group"
351
  msgstr "ساخته شده‌است"
352
 
353
  #: F:\Program
354
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:760
355
  msgid "Plugin translators"
356
  msgstr "مترجم‌های افزونه"
357
 
358
  #: F:\Program
359
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:764
360
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:765
361
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
362
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:767
363
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:768
364
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:769
365
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
366
  msgid "Language"
367
  msgstr "زبان"
368
 
369
  #: F:\Program
370
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:764
371
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:765
372
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
373
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:767
374
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:768
375
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:769
376
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
377
  msgid "by"
378
  msgstr "توسط"
379
 
380
  #: F:\Program
381
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:772
382
  msgid "for translate language files. please send files for"
383
  msgstr "لطفا فایل‌های ترجمه را به ایمیل روبرو ارسال کنید"
384
 
385
  #: F:\Program
386
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:775
387
  msgid "Show Functions"
388
  msgstr "نمایش تابع‌ها"
389
 
390
  #: F:\Program
391
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:776
392
  msgid "Report Problem"
393
  msgstr "گزارش مشکل"
394
 
395
  #: F:\Program
396
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:789
397
  msgid "User Online Live"
398
  msgstr "کاربران آنلاین زنده"
399
 
400
  #: F:\Program
401
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
402
  msgid "Total Visit Live"
403
  msgstr "کل بازدیدها زنده"
404
 
405
  #: F:\Program
406
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:809
407
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1071
408
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1239
409
- msgid "Week Visit"
410
- msgstr "بازدید هفته"
411
-
412
- #: F:\Program
413
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:817
414
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1079
415
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1242
416
- msgid "Month Visit"
417
- msgstr "بازدید ماه"
418
-
419
- #: F:\Program
420
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:821
421
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1087
422
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1245
423
- msgid "Years Visit"
424
- msgstr "بازدید سال"
425
-
426
- #: F:\Program
427
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:829
428
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1103
429
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1251
430
- msgid "Search Engine reffered"
431
- msgstr "ورودی موتورهای جستجوگر"
432
-
433
- #: F:\Program
434
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:833
435
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1119
436
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1269
437
- msgid "Total Posts"
438
- msgstr "کل نوشته‌ها"
439
-
440
- #: F:\Program
441
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:837
442
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1127
443
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1272
444
- msgid "Total Pages"
445
- msgstr "کل برگه‌ها"
446
-
447
- #: F:\Program
448
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:841
449
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1135
450
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1275
451
- msgid "Total Comments"
452
- msgstr "کل دیدگاه‌ها"
453
-
454
- #: F:\Program
455
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:845
456
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1143
457
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1278
458
- msgid "Total Spams"
459
- msgstr "کل جفنگ‌ها"
460
-
461
- #: F:\Program
462
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:849
463
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1151
464
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1281
465
- msgid "Total Users"
466
- msgstr "کل کاربرها"
467
-
468
- #: F:\Program
469
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:853
470
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1183
471
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1293
472
- msgid "Last Post Date"
473
- msgstr "تاریخ به‌روزشدن سایت"
474
-
475
- #: F:\Program
476
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:857
477
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1159
478
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1284
479
- msgid "Average Posts"
480
- msgstr "میانگین نوشته‌ها"
481
-
482
- #: F:\Program
483
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:861
484
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1167
485
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1287
486
- msgid "Average Comments"
487
- msgstr "میانگین دیدگاه‌ها"
488
-
489
- #: F:\Program
490
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:865
491
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1175
492
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1290
493
- msgid "Average Users"
494
- msgstr "میانگین کاربرها"
495
-
496
- #: F:\Program
497
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:869
498
  msgid "Total Feedburner Subscribe"
499
  msgstr "تعداد مشترک‌های فیدبرنر"
500
 
501
  #: F:\Program
502
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:873
503
  msgid "Google Pagerank"
504
  msgstr "رتبه گوگل"
505
 
506
  #: F:\Program
507
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:877
508
  msgid "Alexa Pagerank"
509
  msgstr "رتبه الکسا"
510
 
511
  #: F:\Program
512
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:881
513
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:891
514
  msgid "Hide"
515
  msgstr "مخفی"
516
 
517
  #: F:\Program
518
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:885
519
  msgid "Your Name"
520
  msgstr "نام شما"
521
 
522
  #: F:\Program
523
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:887
524
  msgid "Description Problem"
525
  msgstr "توضیحات مشکل"
526
 
527
  #: F:\Program
528
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:890
529
  msgid "Send Problem"
530
  msgstr "ارسال گزارش"
531
 
532
  #: F:\Program
533
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:898
534
  msgid "Unistall plugin"
535
  msgstr "پاک‌سازی پلاگین"
536
 
537
  #: F:\Program
538
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:904
539
  msgid "Delete all data, including tables and plugin options"
540
  msgstr "پاک‌کردن تمامی اطلاعات از قبیل جدول افزونه در پایگاه‌داده و گزینه‌های افزونه"
541
 
542
  #: F:\Program
543
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:905
544
  msgid "Uninstall"
545
  msgstr "پاک‌کردن"
546
 
547
  #: F:\Program
548
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:915
549
- msgid "Update"
550
- msgstr "به‌روز رسانی"
551
-
552
- #: F:\Program
553
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:948
554
  msgid "Stats weblog"
555
  msgstr "آمار سایت"
556
 
557
  #: F:\Program
558
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:959
559
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1016
560
  msgid "No"
561
  msgstr "شماره"
562
 
563
  #: F:\Program
564
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:960
565
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1017
566
  msgid "IP"
567
  msgstr "آی‌پی"
568
 
569
  #: F:\Program
570
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:961
571
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1018
572
  msgid "Time"
573
  msgstr "زمان"
574
 
575
  #: F:\Program
576
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:962
577
  msgid "Referred"
578
  msgstr "هدایت شده"
579
 
580
  #: F:\Program
581
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:963
582
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1020
583
  msgid "Agent"
584
  msgstr "مشخصات مرورگر"
585
 
586
  #: F:\Program
587
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1019
588
  msgid "Referrer"
589
  msgstr "هدایت شده"
590
 
591
- #: F:\Program
592
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1063
593
- msgid "Yesterday Visit"
594
- msgstr "بازدید دیروز"
595
-
596
- #: F:\Program
597
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1223
598
- msgid "Name"
599
- msgstr "نام"
600
-
601
- #: F:\Program
602
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1227
603
- msgid "Items"
604
- msgstr "آیتم‌ها"
605
-
606
- #: F:\Program
607
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1254
608
- msgid "Select type of search engine"
609
- msgstr "انتخاب نوع موتورجستجو"
610
-
611
- #: F:\Program
612
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1256
613
- msgid "Google"
614
- msgstr "گوگل"
615
 
616
- #: F:\Program
617
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1259
618
- msgid "Yahoo!"
619
- msgstr "یاهو!"
620
 
621
- #: F:\Program
622
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1262
623
- msgid "Bing"
624
- msgstr "بینگ"
625
-
626
- #: F:\Program
627
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1265
628
- msgid "All"
629
- msgstr "همه"
630
 
631
- #: F:\Program
632
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1296
633
- msgid "Type date for last update"
634
- msgstr "نوع تقویم برای آخرین به‌روزرسانی"
635
 
636
- #: F:\Program
637
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1298
638
- msgid "English"
639
- msgstr "میلادی"
640
 
641
- #: F:\Program
642
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1301
643
- msgid "Persian"
644
- msgstr "شمسی (فارسی)"
645
 
646
- #: F:\Program
647
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1332
648
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1334
649
- msgid "WP-Statistics"
650
- msgstr "آمارگیر"
651
 
652
- #: F:\Program
653
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1333
654
- msgid "Show site stats in sidebar"
655
- msgstr "نمایش آمار سایت در ابزارک"
656
 
657
  #~ msgid "Sorry! this feature is for Premium version"
658
  #~ msgstr "متاسفم! این امکان برای نسخه‌ی ویژه است."
@@ -663,9 +692,6 @@ msgstr "نمایش آمار سایت در ابزارک"
663
  #~ msgid "Minute s)"
664
  #~ msgstr "دقیقه"
665
 
666
- #~ msgid "Statistics"
667
- #~ msgstr "آماره"
668
-
669
  #~ msgid "Online user check time"
670
  #~ msgstr "زمان بررسی کاربران آنلاین"
671
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-20 12:03+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: <mat404@gmail.com>\n"
16
  "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\n"
17
 
18
  #: F:\Program
19
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:14
20
  msgid "Added"
21
  msgstr "مقدار"
22
 
23
  #: F:\Program
24
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:14
25
  msgid "value"
26
  msgstr "افزوده شد"
27
 
28
  #: F:\Program
29
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:15
30
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:22
31
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:66
32
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:220
33
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
34
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:846
35
  msgid "Total Visit"
36
  msgstr "کل بازدیدها"
37
 
38
  #: F:\Program
39
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:21
40
  msgid "Was"
41
  msgstr "مقدار"
42
 
43
  #: F:\Program
44
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:21
45
  msgid "low value"
46
  msgstr "کم شد"
47
 
48
  #: F:\Program
49
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:25
50
  msgid "Please Enter value!"
51
  msgstr "لطفا مقداری را وارد کنید!"
52
 
53
  #: F:\Program
54
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:28
55
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:25
56
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:65
57
+ msgid "Access is Denied!"
58
+ msgstr "دسترسی غیرمجاز!"
59
+
60
+ #: F:\Program
61
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:20
62
  msgid "Thanks for your report!"
63
  msgstr "با تشکر از گزارش شما!"
64
 
65
  #: F:\Program
66
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:22
67
  msgid "Error! Please Enter all field"
68
  msgstr "خطا! لطفا همه فیلدها را پرکنید"
69
 
70
  #: F:\Program
71
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:46
72
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:49
73
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:52
74
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:55
75
  msgid "deleted!"
76
  msgstr "پاک‌شد!"
77
 
78
  #: F:\Program
79
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:59
80
  msgid "All plugin data is deleted"
81
  msgstr "تمامی اطلاعات افزونه پاک شد"
82
 
83
  #: F:\Program
84
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:60
85
  msgid "Disable plugin"
86
  msgstr "افزونه را غیرفعال کنید."
87
 
88
  #: F:\Program
89
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:62
90
  msgid "plugin options have been deleted"
91
  msgstr "گزینه‌های افزونه قبلا پاک شده‌اند"
92
 
93
  #: F:\Program
94
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:4
95
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:6
96
+ msgid "WP-Statistics"
97
+ msgstr "آمارگیر"
98
+
99
+ #: F:\Program
100
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:5
101
+ msgid "Show site stats in sidebar"
102
+ msgstr "نمایش آمار سایت در ابزارک"
103
+
104
+ #: F:\Program
105
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:18
106
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:202
107
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:65
108
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:818
109
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:834
110
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1020
111
  msgid "User Online"
112
  msgstr "کاربران حاضر"
113
 
114
  #: F:\Program
115
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:26
116
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:205
117
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
118
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:822
119
  msgid "Today Visit"
120
  msgstr "بازدید امروز"
121
 
122
  #: F:\Program
123
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:34
124
+ msgid "Yesterday Visit"
125
+ msgstr "بازدید دیروز"
126
+
127
+ #: F:\Program
128
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:42
129
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:211
130
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:830
131
+ msgid "Week Visit"
132
+ msgstr "بازدید هفته"
133
+
134
+ #: F:\Program
135
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:50
136
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:214
137
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:838
138
+ msgid "Month Visit"
139
+ msgstr "بازدید ماه"
140
+
141
+ #: F:\Program
142
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:58
143
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:217
144
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:842
145
+ msgid "Years Visit"
146
+ msgstr "بازدید سال"
147
+
148
+ #: F:\Program
149
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:74
150
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:223
151
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:850
152
+ msgid "Search Engine reffered"
153
+ msgstr "ورودی موتورهای جستجوگر"
154
+
155
+ #: F:\Program
156
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:90
157
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:241
158
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:854
159
+ msgid "Total Posts"
160
+ msgstr "کل نوشته‌ها"
161
+
162
+ #: F:\Program
163
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:98
164
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:244
165
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:858
166
+ msgid "Total Pages"
167
+ msgstr "کل برگه‌ها"
168
+
169
+ #: F:\Program
170
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:106
171
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:247
172
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:862
173
+ msgid "Total Comments"
174
+ msgstr "کل دیدگاه‌ها"
175
+
176
+ #: F:\Program
177
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:114
178
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:250
179
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:866
180
+ msgid "Total Spams"
181
+ msgstr "کل جفنگ‌ها"
182
+
183
+ #: F:\Program
184
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:122
185
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:253
186
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:870
187
+ msgid "Total Users"
188
+ msgstr "کل کاربرها"
189
+
190
+ #: F:\Program
191
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:130
192
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:256
193
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:878
194
+ msgid "Average Posts"
195
+ msgstr "میانگین نوشته‌ها"
196
+
197
+ #: F:\Program
198
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:138
199
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:259
200
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:882
201
+ msgid "Average Comments"
202
+ msgstr "میانگین دیدگاه‌ها"
203
+
204
+ #: F:\Program
205
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:146
206
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:262
207
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:886
208
+ msgid "Average Users"
209
+ msgstr "میانگین کاربرها"
210
+
211
+ #: F:\Program
212
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:154
213
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:265
214
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:874
215
+ msgid "Last Post Date"
216
+ msgstr "تاریخ به‌روزشدن سایت"
217
+
218
+ #: F:\Program
219
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:195
220
+ msgid "Name"
221
+ msgstr "نام"
222
+
223
+ #: F:\Program
224
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:199
225
+ msgid "Items"
226
+ msgstr "آیتم‌ها"
227
+
228
+ #: F:\Program
229
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:208
230
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:75
231
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:826
232
  msgid "Yesterday visit"
233
  msgstr "بازدید دیروز"
234
 
235
  #: F:\Program
236
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:226
237
+ msgid "Select type of search engine"
238
+ msgstr "انتخاب نوع موتورجستجو"
239
+
240
+ #: F:\Program
241
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:228
242
+ msgid "Google"
243
+ msgstr "گوگل"
244
+
245
+ #: F:\Program
246
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:231
247
+ msgid "Yahoo!"
248
+ msgstr "یاهو!"
249
+
250
+ #: F:\Program
251
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:234
252
+ msgid "Bing"
253
+ msgstr "بینگ"
254
+
255
+ #: F:\Program
256
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:237
257
+ msgid "All"
258
+ msgstr "همه"
259
+
260
+ #: F:\Program
261
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:268
262
+ msgid "Type date for last update"
263
+ msgstr "نوع تقویم برای آخرین به‌روزرسانی"
264
+
265
+ #: F:\Program
266
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:270
267
+ msgid "English"
268
+ msgstr "میلادی"
269
+
270
+ #: F:\Program
271
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/widget.php:273
272
+ msgid "Persian"
273
+ msgstr "شمسی (فارسی)"
274
+
275
+ #: F:\Program
276
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
277
  msgid "Plugin home page"
278
  msgstr "خانه‌ی افزونه"
279
 
280
  #: F:\Program
281
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:266
282
  #, php-format
283
  msgid "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> and enable statistics"
284
  msgstr "افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه تنظیمات</a> آمارگیر مراجعه کنید"
285
 
286
  #: F:\Program
287
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:531
288
+ msgid "Statistics"
289
+ msgstr "آمار بازدید"
290
+
291
+ #: F:\Program
292
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:532
293
  msgid "Settings"
294
  msgstr "تنظیمات"
295
 
296
  #: F:\Program
297
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:533
298
  msgid "Stats Log"
299
  msgstr "گزارش آمارها"
300
 
301
  #: F:\Program
302
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:534
303
  msgid "Users Online"
304
  msgstr "کاربران حاضر"
305
 
306
  #: F:\Program
307
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:542
308
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:937
309
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:996
310
  msgid "You do not have sufficient permissions to access this page."
311
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
312
 
313
  #: F:\Program
314
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:621
315
  msgid "Are you sure?"
316
  msgstr "آیا مطمئن هستید؟"
317
 
318
  #: F:\Program
319
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:633
320
  msgid "Configuration"
321
  msgstr "پیکربندی"
322
 
323
  #: F:\Program
324
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
325
  msgid "Enable Statistics"
326
  msgstr "آمارگیر فعال شود"
327
 
328
  #: F:\Program
329
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:642
330
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
331
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:670
332
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:679
333
  msgid "Yes"
334
  msgstr "بله"
335
 
336
  #: F:\Program
337
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:646
338
  msgid "Statistics are enabled."
339
  msgstr "آمارگیر فعال است."
340
 
341
  #: F:\Program
342
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:648
343
  msgid "Statistics are disabled!"
344
  msgstr "آمارگیر غیرفعال است!"
345
 
346
  #: F:\Program
347
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:653
348
  msgid "General configuration"
349
  msgstr "پیکربندی عمومی"
350
 
351
  #: F:\Program
352
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:656
353
  msgid "Show decimals number"
354
  msgstr "نمایش اعداد به‌صورت اعشاری"
355
 
356
  #: F:\Program
357
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:662
358
  msgid "Show number stats with decimal. For examle: 3,500"
359
  msgstr "نمایش اعداد آمارگیر به‌صورت اعشاری. برای مثال: 3،500"
360
 
361
  #: F:\Program
362
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:666
363
  msgid "Show stats in menu bar"
364
  msgstr "نمایش آمار در منوبار"
365
 
366
  #: F:\Program
367
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:672
368
  msgid "Show stats in admin menu bar"
369
  msgstr "نمایش آمار در منوبار مدیریت"
370
 
371
  #: F:\Program
372
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
373
+ msgid "Daily referer of search engines"
374
+ msgstr "روزانه بودن ورودی موتورهای جستجو"
375
+
376
+ #: F:\Program
377
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:681
378
+ msgid "Can be calculated daily or total search engines"
379
+ msgstr "ورودی موتور جستجو را روزانه یا کلی محاسبه می‌کند"
380
+
381
+ #: F:\Program
382
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
383
  msgid "Check for online users every"
384
  msgstr "زمان بررسی برای محاسبه کاربران آنلاین هر"
385
 
386
  #: F:\Program
387
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:688
388
  msgid "Second"
389
  msgstr "ثانیه"
390
 
391
  #: F:\Program
392
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:690
393
  msgid "Time for the check accurate online user in the site. Default: 60 Second"
394
  msgstr "زمان برای بررسی دقیق کاربران حاضر در سایت. پیش‌فرض 60 ثانیه است"
395
 
396
  #: F:\Program
397
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:694
398
  msgid "Increase value of the total hits by"
399
  msgstr "افزایش مقدار به بازدید‌های کل"
400
 
401
  #: F:\Program
402
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:697
403
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:707
404
  msgid "Done"
405
  msgstr "انجام"
406
 
407
  #: F:\Program
408
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:700
409
  msgid "Your total visit sum with this value"
410
  msgstr "کل بازدیدها با این مقدار جمع می‌شود"
411
 
412
  #: F:\Program
413
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:704
414
  msgid "Reduce value of the total hits by"
415
  msgstr "کاهش مقدار از بازدید‌های کل"
416
 
417
  #: F:\Program
418
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
419
  msgid "Your total visit minus with this value"
420
  msgstr "کل بازدیدها از این مقدار کم می‌شود"
421
 
422
  #: F:\Program
423
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:714
424
  msgid "Number item for show Statistics"
425
  msgstr "تعداد آیتم برای نمایش آمار"
426
 
427
  #: F:\Program
428
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:717
429
  msgid "Default 5"
430
  msgstr "پیش‌فرض 5 است"
431
 
432
  #: F:\Program
433
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:719
434
  msgid "Number for submit item in Database and show that"
435
  msgstr "تعداد برای ثبت آیتم‌های آمار در پایگاه‌داده و نمایش آن"
436
 
437
  #: F:\Program
438
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:723
439
  msgid "Coefficient per visitor"
440
  msgstr "ضریب محاسبه هر بازدیدکننده"
441
 
442
  #: F:\Program
443
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:726
444
  msgid "Default 1"
445
  msgstr "پیش‌فرض 1 است"
446
 
447
  #: F:\Program
448
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:728
449
  msgid "For each visitor to account for several hits."
450
  msgstr "تعداد محاسبه برای هربازدیدکننده."
451
 
452
  #: F:\Program
453
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:731
454
  msgid "Live Statistics configuration"
455
  msgstr "پیکربندی بازدید لحظه‌ای"
456
 
457
  #: F:\Program
458
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:734
459
  msgid "Refresh Stats every"
460
  msgstr "تازه‌کردن آمار هر"
461
 
462
  #: F:\Program
463
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:737
464
  msgid "Second(s)"
465
  msgstr "ثانیه"
466
 
467
  #: F:\Program
468
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
469
  msgid "Recommended"
470
  msgstr "پیشنهاد میشود"
471
 
472
  #: F:\Program
473
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:741
474
  msgid "To reduce pressure on the server, this defaults to 10 sec"
475
  msgstr "به‌دلیل فشار برروی سرور، پیشنهاد می‌شود برروی زمان بالا تعیین شود. پیش‌فرض 10 ثانیه است."
476
 
477
  #: F:\Program
478
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:745
479
  msgid "Pagerank configuration"
480
  msgstr "تنظیمات رتبه‌بندی"
481
 
482
  #: F:\Program
483
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:748
484
  msgid "Your url for Google pagerank check"
485
  msgstr "آدرس شما برای بررسی رتبه‌بندی گوگل"
486
 
487
  #: F:\Program
488
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:753
489
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:763
490
  msgid "If empty. you website url is used"
491
  msgstr "اگراین قسمت خالی باشد، از آدرس اصلی سایت استفاده می‌کند"
492
 
493
  #: F:\Program
494
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
495
  msgid "Your url for Alexa pagerank check"
496
  msgstr "آدرس شما برای بررسی رتبه‌بندی الکسا"
497
 
498
  #: F:\Program
499
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:772
500
+ msgid "Update"
501
+ msgstr "به‌روز رسانی"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
 
503
  #: F:\Program
504
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:779
505
  msgid "This plugin created by"
506
  msgstr "این افزونه توسط"
507
 
508
  #: F:\Program
509
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:779
510
  msgid "from"
511
  msgstr "از گروه"
512
 
513
  #: F:\Program
514
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:779
515
  msgid "group"
516
  msgstr "ساخته شده‌است"
517
 
518
  #: F:\Program
519
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:781
520
  msgid "Plugin translators"
521
  msgstr "مترجم‌های افزونه"
522
 
523
  #: F:\Program
524
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:785
525
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:786
526
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
527
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:788
528
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:789
529
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:790
530
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:791
531
  msgid "Language"
532
  msgstr "زبان"
533
 
534
  #: F:\Program
535
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:785
536
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:786
537
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
538
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:788
539
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:789
540
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:790
541
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:791
542
  msgid "by"
543
  msgstr "توسط"
544
 
545
  #: F:\Program
546
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
547
  msgid "for translate language files. please send files for"
548
  msgstr "لطفا فایل‌های ترجمه را به ایمیل روبرو ارسال کنید"
549
 
550
  #: F:\Program
551
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
552
  msgid "Show Functions"
553
  msgstr "نمایش تابع‌ها"
554
 
555
  #: F:\Program
556
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
557
  msgid "Report Problem"
558
  msgstr "گزارش مشکل"
559
 
560
  #: F:\Program
561
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:810
562
  msgid "User Online Live"
563
  msgstr "کاربران آنلاین زنده"
564
 
565
  #: F:\Program
566
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:814
567
  msgid "Total Visit Live"
568
  msgstr "کل بازدیدها زنده"
569
 
570
  #: F:\Program
571
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:890
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
572
  msgid "Total Feedburner Subscribe"
573
  msgstr "تعداد مشترک‌های فیدبرنر"
574
 
575
  #: F:\Program
576
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:894
577
  msgid "Google Pagerank"
578
  msgstr "رتبه گوگل"
579
 
580
  #: F:\Program
581
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:898
582
  msgid "Alexa Pagerank"
583
  msgstr "رتبه الکسا"
584
 
585
  #: F:\Program
586
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:902
587
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:912
588
  msgid "Hide"
589
  msgstr "مخفی"
590
 
591
  #: F:\Program
592
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:906
593
  msgid "Your Name"
594
  msgstr "نام شما"
595
 
596
  #: F:\Program
597
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:908
598
  msgid "Description Problem"
599
  msgstr "توضیحات مشکل"
600
 
601
  #: F:\Program
602
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:911
603
  msgid "Send Problem"
604
  msgstr "ارسال گزارش"
605
 
606
  #: F:\Program
607
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:919
608
  msgid "Unistall plugin"
609
  msgstr "پاک‌سازی پلاگین"
610
 
611
  #: F:\Program
612
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:925
613
  msgid "Delete all data, including tables and plugin options"
614
  msgstr "پاک‌کردن تمامی اطلاعات از قبیل جدول افزونه در پایگاه‌داده و گزینه‌های افزونه"
615
 
616
  #: F:\Program
617
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:926
618
  msgid "Uninstall"
619
  msgstr "پاک‌کردن"
620
 
621
  #: F:\Program
622
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:959
 
 
 
 
 
623
  msgid "Stats weblog"
624
  msgstr "آمار سایت"
625
 
626
  #: F:\Program
627
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:970
628
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1031
629
  msgid "No"
630
  msgstr "شماره"
631
 
632
  #: F:\Program
633
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:971
634
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1032
635
  msgid "IP"
636
  msgstr "آی‌پی"
637
 
638
  #: F:\Program
639
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:972
640
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1033
641
  msgid "Time"
642
  msgstr "زمان"
643
 
644
  #: F:\Program
645
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:973
646
  msgid "Referred"
647
  msgstr "هدایت شده"
648
 
649
  #: F:\Program
650
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:974
651
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1035
652
  msgid "Agent"
653
  msgstr "مشخصات مرورگر"
654
 
655
  #: F:\Program
656
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1034
657
  msgid "Referrer"
658
  msgstr "هدایت شده"
659
 
660
+ #~ msgid "The CSS Class for the containing widget"
661
+ #~ msgstr "کلاس CSS برای ابزارک"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
662
 
663
+ #~ msgid "If empty. class=\"widget\" will be used"
664
+ #~ msgstr "اگراین قسمت خالی باشد، از class=\"widget\" استفاده می‌کند"
 
 
665
 
666
+ #, fuzzy
667
+ #~ msgid "Statisticsd"
668
+ #~ msgstr "آماره"
 
 
 
 
 
 
669
 
670
+ #, fuzzy
671
+ #~ msgid "WP Statistics"
672
+ #~ msgstr "آمارگیر"
 
673
 
674
+ #~ msgid "About plugin"
675
+ #~ msgstr "درباره‌ی افزونه"
 
 
676
 
677
+ #~ msgid "Plugin Version"
678
+ #~ msgstr "نسخه افزونه"
 
 
679
 
680
+ #~ msgid "Free!"
681
+ #~ msgstr "رایگان!"
 
 
 
682
 
683
+ #~ msgid "Get Premium version"
684
+ #~ msgstr "دریافت نسخه‌ی ویژه"
 
 
685
 
686
  #~ msgid "Sorry! this feature is for Premium version"
687
  #~ msgstr "متاسفم! این امکان برای نسخه‌ی ویژه است."
692
  #~ msgid "Minute s)"
693
  #~ msgstr "دقیقه"
694
 
 
 
 
695
  #~ msgid "Online user check time"
696
  #~ msgstr "زمان بررسی کاربران آنلاین"
697
 
langs/wp_statistics-fr_FR.mo CHANGED
Binary file
langs/wp_statistics-fr_FR.po CHANGED
@@ -2,384 +2,635 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-10-14 11:20+0330\n"
6
- "PO-Revision-Date: 2011-10-26 12:49-0000\n"
7
- "Last-Translator: Anice <gnanice@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-KeywordsList: _;gettext;gettext_noop;_e\n"
13
  "X-Poedit-Language: English\n"
 
 
 
14
 
15
  #: F:\Program
16
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/actions.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  msgid "Please Enter value!"
18
- msgstr "S'il vous plaît Entrez la valeur!"
19
 
20
  #: F:\Program
21
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/report_problem.php:19
 
 
 
 
 
22
  msgid "Error! Please Enter all field"
23
- msgstr "Erreur ! Merci de renseigner tous les champs"
 
 
 
 
 
 
 
 
24
 
25
  #: F:\Program
26
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:453
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid "Configuration"
28
  msgstr "Configuration"
29
 
30
  #: F:\Program
31
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:458
32
  msgid "Enable Statistics"
33
- msgstr "Autoriser les Statistiques"
34
 
35
  #: F:\Program
36
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:462
37
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:480
 
38
  msgid "Yes"
39
  msgstr "Oui"
40
 
41
  #: F:\Program
42
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:466
43
  msgid "Statistics are enabled."
44
- msgstr "Les statistiques sont désormais activés."
45
 
46
  #: F:\Program
47
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
48
  msgid "Statistics are disabled!"
49
- msgstr "Les statistiques sont désormais désactivés."
50
 
51
  #: F:\Program
52
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:473
53
  msgid "General configuration"
54
- msgstr "Configutation générale"
55
 
56
  #: F:\Program
57
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:476
58
  msgid "Show decimals number"
59
- msgstr "Stats avec nombres décimaux"
60
 
61
  #: F:\Program
62
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:482
63
  msgid "Show number stats with decimal. For examle: 3,500"
64
- msgstr "Afficher stats avec des nombres décimales. Par examle: 3,500"
 
 
 
 
 
65
 
66
  #: F:\Program
67
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:486
68
- msgid "Online user check time"
69
- msgstr "Période de contrôle des utilisateurs en ligne"
70
 
71
  #: F:\Program
72
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:488
73
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:529
74
- msgid "Each"
75
- msgstr "Chaque"
76
 
77
  #: F:\Program
78
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:490
79
- msgid "Compute min"
80
- msgstr "Période en minutes"
81
 
82
  #: F:\Program
83
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:492
84
- msgid "Time for the check accurate online user in the site. Default: 5 Minutes"
85
- msgstr "A quelle fréquence le serveur doit-il vérifier le nombre d'utilisateur en ligne. Par défaut : 5 minutes "
86
 
87
  #: F:\Program
88
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:496
89
- msgid "Increase value of the total hits"
90
- msgstr "Augmenter la valeur totale des visites"
91
 
92
  #: F:\Program
93
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
94
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:509
95
  msgid "Done"
96
- msgstr "Ok"
97
 
98
  #: F:\Program
99
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:502
100
  msgid "Your total visit sum with this value"
101
- msgstr "La valeur total des visites sur votre site sera additionné à cette valeur."
102
 
103
  #: F:\Program
104
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:506
105
- msgid "Reduction value of the total hits"
106
- msgstr "Réduire la voleur total des visites"
107
 
108
  #: F:\Program
109
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:512
110
  msgid "Your total visit minus with this value"
111
- msgstr "La valeur total des visites sur votre site sera soustaite à cette valeur."
112
 
113
  #: F:\Program
114
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:516
115
  msgid "Number item for show Statistics"
116
- msgstr "Nombre d'éléments définissant l'affichage des stats"
117
 
118
  #: F:\Program
119
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
120
  msgid "Default 5"
121
  msgstr "5 par défaut"
122
 
123
  #: F:\Program
124
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:521
125
  msgid "Number for submit item in Database and show that"
126
- msgstr "Nombre d'éléments devant être envoyé dans la base de données afin d'être affiché."
 
 
 
 
 
 
 
 
 
 
127
 
128
  #: F:\Program
129
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
 
 
 
 
 
130
  msgid "Live Statistics configuration"
131
- msgstr "Cofiguration des stats live"
132
 
133
  #: F:\Program
134
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:527
135
- msgid "Database check time"
136
- msgstr "Période de vérifiaction de la base de données"
137
 
138
  #: F:\Program
139
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:531
140
- msgid "Minute updates"
141
- msgstr "Mise à jour en minute"
142
 
143
  #: F:\Program
144
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:534
145
  msgid "Recommended"
146
- msgstr "Recommendé"
147
 
148
  #: F:\Program
149
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:535
150
- msgid "Due to pressure on the server, Be set up on time. Default 1 min."
151
- msgstr "A été mis en place en raison de la pression du plugin sur le serveur.Temps par défaut 1 minute"
152
 
153
  #: F:\Program
154
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:539
155
  msgid "Pagerank configuration"
156
- msgstr "Configuration du <a href=\"http://fr.wikipedia.org/wiki/PageRank\">PageRank</a>"
157
 
158
  #: F:\Program
159
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:542
160
  msgid "Your url for Google pagerank check"
161
- msgstr "Votre URL de vérification du <a href=\"http://fr.wikipedia.org/wiki/PageRank\">PageRank</a> de Google"
162
 
163
  #: F:\Program
164
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:547
165
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:557
166
- msgid "If this input is empty, The website url uses"
167
- msgstr "Si aucune valeur n'est saisie, le plugin utilisera l'URL de votre site"
168
 
169
  #: F:\Program
170
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:552
171
  msgid "Your url for Alexa pagerank check"
172
- msgstr "Votre URL de vérification du <a href=\"http://fr.wikipedia.org/wiki/PageRank\">PageRank</a> d'Alexa"
173
-
174
- #: F:\Program
175
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:563
176
- msgid "About plugin"
177
- msgstr "A propos de ce plugin"
178
 
179
  #: F:\Program
180
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:564
181
- msgid "Plugin Version"
182
- msgstr "Version du plugin"
183
 
184
  #: F:\Program
185
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:564
186
- msgid "Free!"
187
- msgstr "GRATUIT "
188
 
189
  #: F:\Program
190
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:565
191
- msgid "Get Premium version"
192
- msgstr "Mettre à jour vers la version premium"
193
 
194
  #: F:\Program
195
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:571
196
- msgid "This plugin created by"
197
- msgstr "Ce plugin à été crée par"
198
 
199
  #: F:\Program
200
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:571
201
- msgid "from"
202
- msgstr "de"
 
 
 
 
 
 
203
 
204
  #: F:\Program
205
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:571
206
- msgid "group"
207
- msgstr "groupe"
 
 
 
 
 
 
208
 
209
  #: F:\Program
210
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:572
211
  msgid "for translate language files. please send files for"
212
- msgstr "Pour vos éventuels traduction faite parvenir les fichiers à"
213
 
214
  #: F:\Program
215
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:574
216
  msgid "Show Functions"
217
  msgstr "Afficher les fonctions"
218
 
219
  #: F:\Program
220
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:575
221
  msgid "Report Problem"
222
- msgstr "Faire part d'un problème"
223
-
224
- #: F:\Program
225
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:586
226
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:677
227
- msgid "User Online"
228
- msgstr "En ce moment connecté"
229
 
230
  #: F:\Program
231
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:587
232
- msgid "Today Visit"
233
- msgstr "Total des visites Aujourd'hui"
234
 
235
  #: F:\Program
236
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:588
237
- msgid "Yesterday visit"
238
- msgstr "Total des visites hier"
239
 
240
  #: F:\Program
241
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:589
 
 
242
  msgid "Week Visit"
243
- msgstr "Total des visites cette semaine"
244
 
245
  #: F:\Program
246
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:590
 
 
247
  msgid "Month Visit"
248
- msgstr "Total des visites ce mois"
249
 
250
  #: F:\Program
251
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
 
 
252
  msgid "Years Visit"
253
- msgstr "Total des visites cette année"
254
-
255
- #: F:\Program
256
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:592
257
- msgid "Total Visit"
258
- msgstr "Total des visites"
259
 
260
  #: F:\Program
261
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:593
 
 
262
  msgid "Search Engine reffered"
263
- msgstr "Moteur de recherche mentionnés"
264
 
265
  #: F:\Program
266
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:594
267
- msgid "User Online Live"
268
- msgstr "En ce moment connecté"
269
-
270
- #: F:\Program
271
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
272
- msgid "Total Visit Live"
273
- msgstr "Total des visites"
274
-
275
- #: F:\Program
276
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:596
277
  msgid "Total Posts"
278
- msgstr "Total des publications"
279
 
280
  #: F:\Program
281
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:597
 
 
282
  msgid "Total Pages"
283
- msgstr "Total des pages"
284
 
285
  #: F:\Program
286
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:598
 
 
287
  msgid "Total Comments"
288
- msgstr "Total des commentaires"
289
 
290
  #: F:\Program
291
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:599
 
 
292
  msgid "Total Spams"
293
- msgstr "Total des SPAMs"
294
 
295
  #: F:\Program
296
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:600
 
 
297
  msgid "Total Users"
298
- msgstr "Total des membres"
299
 
300
  #: F:\Program
301
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:601
 
 
302
  msgid "Last Post Date"
303
- msgstr "Date de la dernière publication"
304
 
305
  #: F:\Program
306
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:602
 
 
307
  msgid "Average Posts"
308
- msgstr "Moyenne des publications"
309
 
310
  #: F:\Program
311
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:603
 
 
312
  msgid "Average Comments"
313
- msgstr "Moyennes des commentaires"
314
 
315
  #: F:\Program
316
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
 
 
317
  msgid "Average Users"
318
- msgstr "Moyenne de visiteur en ligne"
319
 
320
  #: F:\Program
321
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:605
322
  msgid "Total Feedburner Subscribe"
323
- msgstr "Total des abonnés au Flux RSS"
324
 
325
  #: F:\Program
326
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:606
327
  msgid "Google Pagerank"
328
- msgstr "<a href=\"http://fr.wikipedia.org/wiki/PageRank\">PageRank</a> de Google"
329
 
330
  #: F:\Program
331
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:607
332
  msgid "Alexa Pagerank"
333
- msgstr "<a href=\"http://fr.wikipedia.org/wiki/PageRank\">PageRank</a> d'Alexa"
334
 
335
  #: F:\Program
336
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
337
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:618
338
  msgid "Hide"
339
- msgstr "Masqué"
340
 
341
  #: F:\Program
342
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:612
343
  msgid "Your Name"
344
  msgstr "Votre nom"
345
 
346
  #: F:\Program
347
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:614
348
  msgid "Description Problem"
349
- msgstr "Déscription de votre problème"
350
 
351
  #: F:\Program
352
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:617
353
  msgid "Send Problem"
354
- msgstr "Envoyer maintenant !"
 
 
 
 
 
 
 
 
 
 
355
 
356
  #: F:\Program
357
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:628
 
 
 
 
 
358
  msgid "Update"
359
- msgstr "Metrre à jour"
360
 
361
  #: F:\Program
362
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:641
363
  msgid "Stats weblog"
364
- msgstr "Stats weblog"
 
 
 
 
 
 
365
 
366
  #: F:\Program
367
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
368
  msgid "Name"
369
  msgstr "Nom"
370
 
371
  #: F:\Program
372
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:768
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
373
  msgid "Type date for last update"
374
- msgstr "Saisir la date de la dernière mise à jour"
375
 
376
  #: F:\Program
377
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
378
  msgid "English"
379
  msgstr "Anglais"
380
 
381
  #: F:\Program
382
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:773
383
  msgid "Persian"
384
- msgstr "Persan"
 
 
 
 
 
 
 
 
 
 
 
385
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-29 13:05+0330\n"
6
+ "PO-Revision-Date: 2012-04-03 10:47+0330\n"
7
+ "Last-Translator: Mostafa Soufi <mst404@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-KeywordsList: gettext;gettext_noop;_e;__\n"
13
  "X-Poedit-Language: English\n"
14
+ "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\n"
15
+ "X-Poedit-Bookmarks: 12,19,62,89,99,-1,-1,-1,-1,-1\n"
16
+ "X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\n"
17
 
18
  #: F:\Program
19
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:11
20
+ msgid "Added"
21
+ msgstr "Date d'ajout"
22
+
23
+ #: F:\Program
24
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:11
25
+ msgid "value"
26
+ msgstr "valeur"
27
+
28
+ #: F:\Program
29
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:12
30
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:19
31
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:79
32
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:815
33
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1085
34
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1238
35
+ msgid "Total Visit"
36
+ msgstr "Nombre total de visites"
37
+
38
+ #: F:\Program
39
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:18
40
+ msgid "Was"
41
+ msgstr "Etait"
42
+
43
+ #: F:\Program
44
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:18
45
+ msgid "low value"
46
+ msgstr "valeur trop basse"
47
+
48
+ #: F:\Program
49
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:22
50
  msgid "Please Enter value!"
51
+ msgstr "Entrez SVP une valeur !"
52
 
53
  #: F:\Program
54
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:18
55
+ msgid "Thanks for your report!"
56
+ msgstr "Merci pour votre rapport !"
57
+
58
+ #: F:\Program
59
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:20
60
  msgid "Error! Please Enter all field"
61
+ msgstr "Erreur ! Veuillez compléter tous les champs"
62
+
63
+ #: F:\Program
64
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:44
65
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:47
66
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:50
67
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:53
68
+ msgid "deleted!"
69
+ msgstr "Supprimé !"
70
 
71
  #: F:\Program
72
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:57
73
+ msgid "All plugin data is deleted"
74
+ msgstr "Toutes les données du plugin ont été supprimées"
75
+
76
+ #: F:\Program
77
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:58
78
+ msgid "Disable plugin"
79
+ msgstr "Désactiver le plugin WP-Statistics"
80
+
81
+ #: F:\Program
82
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:60
83
+ msgid "plugin options have been deleted"
84
+ msgstr "Les options du plugin WP-Statistics ont été supprimées"
85
+
86
+ #: F:\Program
87
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
88
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
89
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:803
90
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:995
91
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1037
92
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1220
93
+ msgid "User Online"
94
+ msgstr "Utilisateurs connectés"
95
+
96
+ #: F:\Program
97
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
98
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:791
99
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1045
100
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1223
101
+ msgid "Today Visit"
102
+ msgstr "Visites aujourd'hui"
103
+
104
+ #: F:\Program
105
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:74
106
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:795
107
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1226
108
+ msgid "Yesterday visit"
109
+ msgstr "Visites hier"
110
+
111
+ #: F:\Program
112
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:84
113
+ msgid "Plugin home page"
114
+ msgstr "Site de WP-Statistics"
115
+
116
+ #: F:\Program
117
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:253
118
+ #, php-format
119
+ msgid "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> and enable statistics"
120
+ msgstr "WP-Statistics n'est pas activé ! Veuillez activer les statistiques dans les <a href=\"%s\">paramètres</a>"
121
+
122
+ #: F:\Program
123
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:518
124
+ msgid "Settings"
125
+ msgstr "Paramètres"
126
+
127
+ #: F:\Program
128
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
129
+ msgid "Stats Log"
130
+ msgstr "Journal des stats"
131
+
132
+ #: F:\Program
133
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
134
+ msgid "Users Online"
135
+ msgstr "Utilisateurs connectés"
136
+
137
+ #: F:\Program
138
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
139
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:916
140
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:973
141
+ msgid "You do not have sufficient permissions to access this page."
142
+ msgstr "Vous n'avez pas les privilèges suffisants pour accéder à cette page."
143
+
144
+ #: F:\Program
145
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:609
146
+ msgid "Are you sure?"
147
+ msgstr "Etes-vous sûr ?"
148
+
149
+ #: F:\Program
150
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:621
151
  msgid "Configuration"
152
  msgstr "Configuration"
153
 
154
  #: F:\Program
155
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:626
156
  msgid "Enable Statistics"
157
+ msgstr "Activer les statistiques"
158
 
159
  #: F:\Program
160
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
161
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:648
162
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:658
163
  msgid "Yes"
164
  msgstr "Oui"
165
 
166
  #: F:\Program
167
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:634
168
  msgid "Statistics are enabled."
169
+ msgstr "Les statistiques sont activées."
170
 
171
  #: F:\Program
172
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:636
173
  msgid "Statistics are disabled!"
174
+ msgstr "Les statistiques sont désactivées !"
175
 
176
  #: F:\Program
177
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:641
178
  msgid "General configuration"
179
+ msgstr "Options générales"
180
 
181
  #: F:\Program
182
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:644
183
  msgid "Show decimals number"
184
+ msgstr "Montrer les chiffres après la virgule"
185
 
186
  #: F:\Program
187
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:650
188
  msgid "Show number stats with decimal. For examle: 3,500"
189
+ msgstr "Montrer les statistiques avec les décimales. (P. ex. : 3.500)"
190
+
191
+ #: F:\Program
192
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:654
193
+ msgid "Show stats in menu bar"
194
+ msgstr "Montrer les statistiques dans la barre de menu"
195
 
196
  #: F:\Program
197
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
198
+ msgid "Show stats in admin menu bar"
199
+ msgstr "Montrer les statistiques dans le menu de la barre d'administration"
200
 
201
  #: F:\Program
202
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:664
203
+ msgid "Check for online users every"
204
+ msgstr "Vérifier les utilisateurs en ligne toutes les"
 
205
 
206
  #: F:\Program
207
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:667
208
+ msgid "Second"
209
+ msgstr "Seconde"
210
 
211
  #: F:\Program
212
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:669
213
+ msgid "Time for the check accurate online user in the site. Default: 60 Second"
214
+ msgstr "Temps entre chaque vérification du nombre de visiteurs. Par défaut : 60 secondes"
215
 
216
  #: F:\Program
217
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:673
218
+ msgid "Increase value of the total hits by"
219
+ msgstr "Augmenter le nombre de visites total par"
220
 
221
  #: F:\Program
222
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
223
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:686
224
  msgid "Done"
225
+ msgstr "Effectué"
226
 
227
  #: F:\Program
228
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:679
229
  msgid "Your total visit sum with this value"
230
+ msgstr "Cette valeur sera additionnée au total des visites de votre site"
231
 
232
  #: F:\Program
233
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:683
234
+ msgid "Reduce value of the total hits by"
235
+ msgstr "Diminuer le nombre de visites total par"
236
 
237
  #: F:\Program
238
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:689
239
  msgid "Your total visit minus with this value"
240
+ msgstr "Cette valeur sera soustraite au total des visites de votre site"
241
 
242
  #: F:\Program
243
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:693
244
  msgid "Number item for show Statistics"
245
+ msgstr "Nombres d'éléments définissant l'affichage des statistiques"
246
 
247
  #: F:\Program
248
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:696
249
  msgid "Default 5"
250
  msgstr "5 par défaut"
251
 
252
  #: F:\Program
253
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:698
254
  msgid "Number for submit item in Database and show that"
255
+ msgstr "Nombre d'éléments devant être envoyés dans la base de données afin d'être affichés."
256
+
257
+ #: F:\Program
258
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
259
+ msgid "Coefficient per visitor"
260
+ msgstr "Coefficient par visiteur"
261
+
262
+ #: F:\Program
263
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:705
264
+ msgid "Default 1"
265
+ msgstr "1 par défaut"
266
 
267
  #: F:\Program
268
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:707
269
+ msgid "For each visitor to account for several hits."
270
+ msgstr "Compter un nombre moyen de pages vues par un seul visiteur."
271
+
272
+ #: F:\Program
273
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
274
  msgid "Live Statistics configuration"
275
+ msgstr "Configuration des statistiques en direct"
276
 
277
  #: F:\Program
278
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:713
279
+ msgid "Refresh Stats every"
280
+ msgstr "Rafraîchir les statistiques toutes les"
281
 
282
  #: F:\Program
283
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:716
284
+ msgid "Second(s)"
285
+ msgstr "Seconde(s)"
286
 
287
  #: F:\Program
288
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:719
289
  msgid "Recommended"
290
+ msgstr "Recommandé"
291
 
292
  #: F:\Program
293
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:720
294
+ msgid "To reduce pressure on the server, this defaults to 10 sec"
295
+ msgstr "Mis à 10 secondes par défaut pour réduire la charge sur le serveur"
296
 
297
  #: F:\Program
298
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:724
299
  msgid "Pagerank configuration"
300
+ msgstr "Configuration du PageRank"
301
 
302
  #: F:\Program
303
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:727
304
  msgid "Your url for Google pagerank check"
305
+ msgstr "Votre adresse pour le calcul du PageRank Google"
306
 
307
  #: F:\Program
308
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:732
309
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
310
+ msgid "If empty. you website url is used"
311
+ msgstr "Si vide, l'adresse de votre site sera utilisée"
312
 
313
  #: F:\Program
314
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:737
315
  msgid "Your url for Alexa pagerank check"
316
+ msgstr "Votre adresse pour le calcul du PageRank Alexa"
 
 
 
 
 
317
 
318
  #: F:\Program
319
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:748
320
+ msgid "This plugin created by"
321
+ msgstr "Ce plugin a été créé par"
322
 
323
  #: F:\Program
324
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:748
325
+ msgid "from"
326
+ msgstr "de"
327
 
328
  #: F:\Program
329
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:748
330
+ msgid "group"
331
+ msgstr "group"
332
 
333
  #: F:\Program
334
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:750
335
+ msgid "Plugin translators"
336
+ msgstr "Traducteurs du plugin"
337
 
338
  #: F:\Program
339
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:754
340
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:755
341
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:756
342
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:757
343
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
344
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:759
345
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:760
346
+ msgid "Language"
347
+ msgstr "Langue"
348
 
349
  #: F:\Program
350
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:754
351
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:755
352
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:756
353
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:757
354
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
355
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:759
356
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:760
357
+ msgid "by"
358
+ msgstr "par"
359
 
360
  #: F:\Program
361
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:762
362
  msgid "for translate language files. please send files for"
363
+ msgstr "veuillez envoyer vos fichiers de traduction à"
364
 
365
  #: F:\Program
366
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:765
367
  msgid "Show Functions"
368
  msgstr "Afficher les fonctions"
369
 
370
  #: F:\Program
371
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
372
  msgid "Report Problem"
373
+ msgstr "Signaler un problème"
 
 
 
 
 
 
374
 
375
  #: F:\Program
376
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:779
377
+ msgid "User Online Live"
378
+ msgstr "Utilisateurs connectés Live"
379
 
380
  #: F:\Program
381
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:783
382
+ msgid "Total Visit Live"
383
+ msgstr "Total de visites Live"
384
 
385
  #: F:\Program
386
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:799
387
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1061
388
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1229
389
  msgid "Week Visit"
390
+ msgstr "Visites par semaine"
391
 
392
  #: F:\Program
393
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:807
394
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1069
395
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1232
396
  msgid "Month Visit"
397
+ msgstr "Visites par mois"
398
 
399
  #: F:\Program
400
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:811
401
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1077
402
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1235
403
  msgid "Years Visit"
404
+ msgstr "Visites par année"
 
 
 
 
 
405
 
406
  #: F:\Program
407
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:819
408
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1093
409
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1241
410
  msgid "Search Engine reffered"
411
+ msgstr "Référencé par le moteur de recherche"
412
 
413
  #: F:\Program
414
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:823
415
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1109
416
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1259
 
 
 
 
 
 
 
 
417
  msgid "Total Posts"
418
+ msgstr "Nombre de posts"
419
 
420
  #: F:\Program
421
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:827
422
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1117
423
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1262
424
  msgid "Total Pages"
425
+ msgstr "Nombre de pages"
426
 
427
  #: F:\Program
428
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:831
429
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1125
430
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1265
431
  msgid "Total Comments"
432
+ msgstr "Nombre de commentaires"
433
 
434
  #: F:\Program
435
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:835
436
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1133
437
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1268
438
  msgid "Total Spams"
439
+ msgstr "Nombre de spams"
440
 
441
  #: F:\Program
442
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:839
443
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1141
444
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1271
445
  msgid "Total Users"
446
+ msgstr "Nombre de visiteurs"
447
 
448
  #: F:\Program
449
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:843
450
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1173
451
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1283
452
  msgid "Last Post Date"
453
+ msgstr "Date du dernier post"
454
 
455
  #: F:\Program
456
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:847
457
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1149
458
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1274
459
  msgid "Average Posts"
460
+ msgstr "Moyenne des posts"
461
 
462
  #: F:\Program
463
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:851
464
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1157
465
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1277
466
  msgid "Average Comments"
467
+ msgstr "Moyenne des commentaires"
468
 
469
  #: F:\Program
470
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:855
471
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1165
472
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1280
473
  msgid "Average Users"
474
+ msgstr "Moyenne des visiteurs"
475
 
476
  #: F:\Program
477
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:859
478
  msgid "Total Feedburner Subscribe"
479
+ msgstr "Total des abonnements Feedburner"
480
 
481
  #: F:\Program
482
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:863
483
  msgid "Google Pagerank"
484
+ msgstr "PageRank Google"
485
 
486
  #: F:\Program
487
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:867
488
  msgid "Alexa Pagerank"
489
+ msgstr "PageRank Alexa"
490
 
491
  #: F:\Program
492
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:871
493
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:881
494
  msgid "Hide"
495
+ msgstr "Masquer"
496
 
497
  #: F:\Program
498
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:875
499
  msgid "Your Name"
500
  msgstr "Votre nom"
501
 
502
  #: F:\Program
503
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:877
504
  msgid "Description Problem"
505
+ msgstr "Description du problème"
506
 
507
  #: F:\Program
508
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:880
509
  msgid "Send Problem"
510
+ msgstr "Envoyer le rapport"
511
+
512
+ #: F:\Program
513
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:888
514
+ msgid "Unistall plugin"
515
+ msgstr "désinstaller le plugin"
516
+
517
+ #: F:\Program
518
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:894
519
+ msgid "Delete all data, including tables and plugin options"
520
+ msgstr "Supprimer toutes les données, tables et options du plugin"
521
 
522
  #: F:\Program
523
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:895
524
+ msgid "Uninstall"
525
+ msgstr "Désinstaller"
526
+
527
+ #: F:\Program
528
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:905
529
  msgid "Update"
530
+ msgstr "Mettre à jour"
531
 
532
  #: F:\Program
533
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:938
534
  msgid "Stats weblog"
535
+ msgstr "Statistiques du site"
536
+
537
+ #: F:\Program
538
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:949
539
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1006
540
+ msgid "No"
541
+ msgstr "Non"
542
 
543
  #: F:\Program
544
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:950
545
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1007
546
+ msgid "IP"
547
+ msgstr "IP"
548
+
549
+ #: F:\Program
550
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:951
551
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1008
552
+ msgid "Time"
553
+ msgstr "Temps"
554
+
555
+ #: F:\Program
556
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:952
557
+ msgid "Referred"
558
+ msgstr "Référencé par"
559
+
560
+ #: F:\Program
561
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:953
562
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1010
563
+ msgid "Agent"
564
+ msgstr "Agent"
565
+
566
+ #: F:\Program
567
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1009
568
+ msgid "Referrer"
569
+ msgstr "Référence"
570
+
571
+ #: F:\Program
572
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1053
573
+ msgid "Yesterday Visit"
574
+ msgstr "Nombre de visites hier"
575
+
576
+ #: F:\Program
577
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1213
578
  msgid "Name"
579
  msgstr "Nom"
580
 
581
  #: F:\Program
582
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1217
583
+ msgid "Items"
584
+ msgstr "Eléments"
585
+
586
+ #: F:\Program
587
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1244
588
+ msgid "Select type of search engine"
589
+ msgstr "Sélectionnez le moteur de recherche"
590
+
591
+ #: F:\Program
592
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1246
593
+ msgid "Google"
594
+ msgstr "Google"
595
+
596
+ #: F:\Program
597
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1249
598
+ msgid "Yahoo!"
599
+ msgstr "Yahoo!"
600
+
601
+ #: F:\Program
602
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1252
603
+ msgid "Bing"
604
+ msgstr "Bing"
605
+
606
+ #: F:\Program
607
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1255
608
+ msgid "All"
609
+ msgstr "Tous"
610
+
611
+ #: F:\Program
612
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1286
613
  msgid "Type date for last update"
614
+ msgstr "Entrez la date de dernière mise à jour"
615
 
616
  #: F:\Program
617
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1288
618
  msgid "English"
619
  msgstr "Anglais"
620
 
621
  #: F:\Program
622
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1291
623
  msgid "Persian"
624
+ msgstr "Perse"
625
+
626
+ #: F:\Program
627
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1322
628
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1324
629
+ msgid "WP-Statistics"
630
+ msgstr "WP-Statistics"
631
+
632
+ #: F:\Program
633
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1323
634
+ msgid "Show site stats in sidebar"
635
+ msgstr "Montrer les statistiques du site dans la barre latérale"
636
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://iran98.org/
4
  Tags: statistics, stats, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 3.3
7
- Stable tag: 2.2.4
8
 
9
  Summary statistics of blog.
10
 
@@ -48,7 +48,7 @@ Language Support:
48
  * Persian
49
  * Portuguese [Thanks](http://www.musicalmente.info/)
50
  * Romanian [Thanks Luke Tyler](http://www.nobelcom.com/)
51
- * French Thanks Anice Gnampa
52
  * Russian [Thanks Igor Dubilej](http://www.iflexion.com/)
53
  * Spanish Thanks Jose
54
  * Arabic [Thanks Hammad Shammari](http://www.facebook.com/aboHatim)
@@ -123,6 +123,22 @@ a plugin for displaying Summary statistics of blog.
123
  1. Screen shot (screenshot-2.png) in WP-Statistics Widget Page
124
 
125
  == Upgrade Notice ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
  = 2.2.4 =
127
  * Added Turkish language.
128
  * Added Italian language.
@@ -209,6 +225,22 @@ a plugin for displaying Summary statistics of blog.
209
  * Start plugin
210
 
211
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  = 2.2.4 =
213
  * Added Turkish language.
214
  * Added Italian language.
4
  Tags: statistics, stats, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 3.3
7
+ Stable tag: 2.2.7
8
 
9
  Summary statistics of blog.
10
 
48
  * Persian
49
  * Portuguese [Thanks](http://www.musicalmente.info/)
50
  * Romanian [Thanks Luke Tyler](http://www.nobelcom.com/)
51
+ * French Thanks Anice Gnampa. Redundancy translated by Nicolas Baudet
52
  * Russian [Thanks Igor Dubilej](http://www.iflexion.com/)
53
  * Spanish Thanks Jose
54
  * Arabic [Thanks Hammad Shammari](http://www.facebook.com/aboHatim)
123
  1. Screen shot (screenshot-2.png) in WP-Statistics Widget Page
124
 
125
  == Upgrade Notice ==
126
+ = 2.2.7 =
127
+ * Fix problem in widget class.
128
+ * Redundancy in Arabic translation.
129
+ * Fix problem in [countposts] shortcode.
130
+ * Optimized Style Reports.
131
+
132
+ = 2.2.6 =
133
+ * Fix a small problem.
134
+
135
+ = 2.2.5 =
136
+ * The security problem was solved. Please be sure to update!
137
+ * Redundancy in French translation.
138
+ * Add CSS Class for the containing widget. (Thanks Luai Mohammed).
139
+ * Add daily or total search engines in setting page.
140
+ * Using wordpress jQuery in setting page.
141
+
142
  = 2.2.4 =
143
  * Added Turkish language.
144
  * Added Italian language.
225
  * Start plugin
226
 
227
  == Changelog ==
228
+ = 2.2.7 =
229
+ * Fix problem in widget class.
230
+ * Redundancy in Arabic translation.
231
+ * Fix problem in [countposts] shortcode.
232
+ * Optimized Style Reports.
233
+
234
+ = 2.2.6 =
235
+ * Fix a small problem.
236
+
237
+ = 2.2.5 =
238
+ * The security problem was solved. Please be sure to update!
239
+ * Redundancy in French translation.
240
+ * Add CSS Class for the containing widget. (Thanks Luai Mohammed).
241
+ * Add daily or total search engines in setting page.
242
+ * Using wordpress jQuery in setting page.
243
+
244
  = 2.2.4 =
245
  * Added Turkish language.
246
  * Added Italian language.
report_problem.php CHANGED
@@ -1,22 +1,27 @@
1
  <?php
2
  require('../../../wp-load.php');
3
- global $user_email;
4
- if($_REQUEST['y_name'] && $_REQUEST['d_report'])
5
  {
6
- $name = $_REQUEST['y_name'];
7
- $email = $user_email;
8
- $url = get_bloginfo('url');
9
- $subject = "Report for WP Statistics";
10
- $body0 = $_REQUEST['d_report'];
11
- $body = "Name: $name \n\n Email: $email \n\n Blog: $url \n\n Description Problem: $body0";
12
- $to = "mst404@gmail.com";
13
- $sender = get_option('blogname');
14
- $headers = "MIME-Version: 1.0\r\n";
15
- $headers = "Content-type: text/html; charset=utf-8\r\n";
16
- $headers = "From: $email \r\nX-Mailer: $sender";
17
- mail($to, $subject, $body, $headers);
18
- echo __('Thanks for your report!', 'wp_statistics');
 
 
 
 
 
 
19
  } else {
20
- _e('Error! Please Enter all field', 'wp_statistics');
21
  }
22
  ?>
1
  <?php
2
  require('../../../wp-load.php');
3
+ if(is_super_admin())
 
4
  {
5
+ global $user_email;
6
+ if($_REQUEST['y_name'] && $_REQUEST['d_report'])
7
+ {
8
+ $name = $_REQUEST['y_name'];
9
+ $email = $user_email;
10
+ $url = get_bloginfo('url');
11
+ $subject = "Report for WP Statistics";
12
+ $body0 = $_REQUEST['d_report'];
13
+ $body = "Name: $name \n\n Email: $email \n\n Blog: $url \n\n Description Problem: $body0";
14
+ $to = "mst404@gmail.com";
15
+ $sender = get_option('blogname');
16
+ $headers = "MIME-Version: 1.0\r\n";
17
+ $headers = "Content-type: text/html; charset=utf-8\r\n";
18
+ $headers = "From: $email \r\nX-Mailer: $sender";
19
+ mail($to, $subject, $body, $headers);
20
+ echo __('Thanks for your report!', 'wp_statistics');
21
+ } else {
22
+ _e('Error! Please Enter all field', 'wp_statistics');
23
+ }
24
  } else {
25
+ wp_die(__('Access is Denied!', 'wp_statistics'));
26
  }
27
  ?>
uninstall.php CHANGED
@@ -1,62 +1,67 @@
1
  <?php
2
  require('../../../wp-load.php');
3
- global $wpdb, $table_prefix;
 
 
4
 
5
- // Database
6
- $get_dt[1] = $wpdb->query("DROP TABLE {$table_prefix}statistics_date");
7
- $get_dt[2] = $wpdb->query("DROP TABLE {$table_prefix}statistics_reffered");
8
- $get_dt[3] = $wpdb->query("DROP TABLE {$table_prefix}statistics_useronline");
9
- $get_dt[4] = $wpdb->query("DROP TABLE {$table_prefix}statistics_visits");
10
 
11
- // Options (Setting page)
12
- $get_do[1] = delete_option('enable_stats');
13
- $get_do[2] = delete_option('enable_decimals');
14
- $get_do[3] = delete_option('enable_wps_adminbar');
15
- $get_do[4] = delete_option('time_useronline_s');
16
- $get_do[5] = delete_option('database_checktime');
17
- $get_do[6] = delete_option('items_statistics');
18
- $get_do[7] = delete_option('pagerank_google_url');
19
- $get_do[8] = delete_option('pagerank_alexa_url');
20
- $get_do[9] = delete_option('coefficient_visitor');
21
 
22
- // Options (widget page)
23
- $get_dw[2] = delete_option('useronline_widget');
24
- $get_dw[3] = delete_option('tvisit_widget');
25
- $get_dw[4] = delete_option('yvisit_widget');
26
- $get_dw[5] = delete_option('wvisit_widget');
27
- $get_dw[6] = delete_option('mvisit_widget');
28
- $get_dw[7] = delete_option('ysvisit_widget');
29
- $get_dw[8] = delete_option('ttvisit_widget');
30
- $get_dw[9] = delete_option('ser_widget');
31
- $get_dw[10] = delete_option('select_se');
32
- $get_dw[11] = delete_option('tp_widget');
33
- $get_dw[12] = delete_option('tpg_widget');
34
- $get_dw[13] = delete_option('tc_widget');
35
- $get_dw[14] = delete_option('ts_widget');
36
- $get_dw[15] = delete_option('tu_widget');
37
- $get_dw[16] = delete_option('ap_widget');
38
- $get_dw[17] = delete_option('ac_widget');
39
- $get_dw[18] = delete_option('au_widget');
40
- $get_dw[19] = delete_option('lpd_widget');
41
- $get_dw[20] = delete_option('select_lps');
42
 
43
- if($get_dt[1]){
44
- echo $table_prefix."statistics_date ".__('deleted!', 'wp_statistics')."<br />";
45
- }
46
- if($get_dt[2]){
47
- echo $table_prefix."statistics_reffered ".__('deleted!', 'wp_statistics')."<br />";
48
- }
49
- if($get_dt[3]){
50
- echo $table_prefix."statistics_useronline ".__('deleted!', 'wp_statistics')."<br />";
51
- }
52
- if($get_dt[4]){
53
- echo $table_prefix."statistics_visits ".__('deleted!', 'wp_statistics')."<br />";
54
- }
55
 
56
- if($get_do[3] == true){
57
- echo "<p>".__('All plugin data is deleted', 'wp_statistics')."</p>";
58
- echo "<p><a href='".get_bloginfo('url')."/wp-admin/plugins.php'>".__('Disable plugin', 'wp_statistics')."</a></p>";
 
 
 
59
  } else {
60
- echo __('plugin options have been deleted', 'wp_statistics');
61
  }
62
  ?>
1
  <?php
2
  require('../../../wp-load.php');
3
+ if(is_super_admin())
4
+ {
5
+ global $wpdb, $table_prefix;
6
 
7
+ // Database
8
+ $get_dt[1] = $wpdb->query("DROP TABLE {$table_prefix}statistics_date");
9
+ $get_dt[2] = $wpdb->query("DROP TABLE {$table_prefix}statistics_reffered");
10
+ $get_dt[3] = $wpdb->query("DROP TABLE {$table_prefix}statistics_useronline");
11
+ $get_dt[4] = $wpdb->query("DROP TABLE {$table_prefix}statistics_visits");
12
 
13
+ // Options (Setting page)
14
+ $get_do[1] = delete_option('enable_stats');
15
+ $get_do[2] = delete_option('enable_decimals');
16
+ $get_do[3] = delete_option('enable_wps_adminbar');
17
+ $get_do[4] = delete_option('time_useronline_s');
18
+ $get_do[5] = delete_option('database_checktime');
19
+ $get_do[6] = delete_option('items_statistics');
20
+ $get_do[7] = delete_option('pagerank_google_url');
21
+ $get_do[8] = delete_option('pagerank_alexa_url');
22
+ $get_do[9] = delete_option('coefficient_visitor');
23
 
24
+ // Options (widget page)
25
+ $get_dw[2] = delete_option('useronline_widget');
26
+ $get_dw[3] = delete_option('tvisit_widget');
27
+ $get_dw[4] = delete_option('yvisit_widget');
28
+ $get_dw[5] = delete_option('wvisit_widget');
29
+ $get_dw[6] = delete_option('mvisit_widget');
30
+ $get_dw[7] = delete_option('ysvisit_widget');
31
+ $get_dw[8] = delete_option('ttvisit_widget');
32
+ $get_dw[9] = delete_option('ser_widget');
33
+ $get_dw[10] = delete_option('select_se');
34
+ $get_dw[11] = delete_option('tp_widget');
35
+ $get_dw[12] = delete_option('tpg_widget');
36
+ $get_dw[13] = delete_option('tc_widget');
37
+ $get_dw[14] = delete_option('ts_widget');
38
+ $get_dw[15] = delete_option('tu_widget');
39
+ $get_dw[16] = delete_option('ap_widget');
40
+ $get_dw[17] = delete_option('ac_widget');
41
+ $get_dw[18] = delete_option('au_widget');
42
+ $get_dw[19] = delete_option('lpd_widget');
43
+ $get_dw[20] = delete_option('select_lps');
44
 
45
+ if($get_dt[1]){
46
+ echo $table_prefix."statistics_date ".__('deleted!', 'wp_statistics')."<br />";
47
+ }
48
+ if($get_dt[2]){
49
+ echo $table_prefix."statistics_reffered ".__('deleted!', 'wp_statistics')."<br />";
50
+ }
51
+ if($get_dt[3]){
52
+ echo $table_prefix."statistics_useronline ".__('deleted!', 'wp_statistics')."<br />";
53
+ }
54
+ if($get_dt[4]){
55
+ echo $table_prefix."statistics_visits ".__('deleted!', 'wp_statistics')."<br />";
56
+ }
57
 
58
+ if($get_do[3] == true){
59
+ echo "<p>".__('All plugin data is deleted', 'wp_statistics')."</p>";
60
+ echo "<p><a href='".get_bloginfo('url')."/wp-admin/plugins.php'>".__('Disable plugin', 'wp_statistics')."</a></p>";
61
+ } else {
62
+ echo __('plugin options have been deleted', 'wp_statistics');
63
+ }
64
  } else {
65
+ wp_die(__('Access is Denied!', 'wp_statistics'));
66
  }
67
  ?>
widget.php ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function wp_statistics_widget()
3
+ {
4
+ wp_register_sidebar_widget('wp_statistics_widget', __('WP-Statistics', 'wp_statistics'), 'wp_statistics_show_widget', array(
5
+ 'description' => __('Show site stats in sidebar', 'wp_statistics')));
6
+ wp_register_widget_control('wp_statistics_widget', __('WP-Statistics', 'wp_statistics'), 'wp_statistics_control_widget');
7
+ }
8
+
9
+ function wp_statistics_show_widget($args)
10
+ {
11
+ extract($args);
12
+ echo $before_widget;
13
+ echo $before_title . get_option('name_widget') . $after_title ;
14
+ echo "<ul>";
15
+ if(get_option('useronline_widget'))
16
+ {
17
+ echo "<li>";
18
+ echo __('User Online', 'wp_statistics'). ": ";
19
+ echo wp_statistics_useronline();
20
+ echo "</li>";
21
+ }
22
+
23
+ if(get_option('tvisit_widget'))
24
+ {
25
+ echo "<li>";
26
+ echo __('Today Visit', 'wp_statistics'). ": ";
27
+ echo wp_statistics_today();
28
+ echo "</li>";
29
+ }
30
+
31
+ if(get_option('yvisit_widget'))
32
+ {
33
+ echo "<li>";
34
+ echo __('Yesterday Visit', 'wp_statistics'). ": ";
35
+ echo wp_statistics_yesterday();
36
+ echo "</li>";
37
+ }
38
+
39
+ if(get_option('wvisit_widget'))
40
+ {
41
+ echo "<li>";
42
+ echo __('Week Visit', 'wp_statistics'). ": ";
43
+ echo wp_statistics_week();
44
+ echo "</li>";
45
+ }
46
+
47
+ if(get_option('mvisit_widget'))
48
+ {
49
+ echo "<li>";
50
+ echo __('Month Visit', 'wp_statistics'). ": ";
51
+ echo wp_statistics_month();
52
+ echo "</li>";
53
+ }
54
+
55
+ if(get_option('ysvisit_widget'))
56
+ {
57
+ echo "<li>";
58
+ echo __('Years Visit', 'wp_statistics'). ": ";
59
+ echo wp_statistics_year();
60
+ echo "</li>";
61
+ }
62
+
63
+ if(get_option('ttvisit_widget'))
64
+ {
65
+ echo "<li>";
66
+ echo __('Total Visit', 'wp_statistics'). ": ";
67
+ echo wp_statistics_total();
68
+ echo "</li>";
69
+ }
70
+
71
+ if(get_option('ser_widget'))
72
+ {
73
+ echo "<li>";
74
+ echo __('Search Engine reffered', 'wp_statistics'). ": ";
75
+ if(get_option('select_se') == "google"){
76
+ echo wp_statistics_searchengine("google");
77
+ } else if(get_option('select_se') == "yahoo"){
78
+ echo wp_statistics_searchengine("yahoo");
79
+ } else if(get_option('select_se') == "bing"){
80
+ echo wp_statistics_searchengine("bing");
81
+ } else if(get_option('select_se') == "all"){
82
+ echo wp_statistics_searchengine();
83
+ }
84
+ echo "</li>";
85
+ }
86
+
87
+ if(get_option('tp_widget'))
88
+ {
89
+ echo "<li>";
90
+ echo __('Total Posts', 'wp_statistics'). ": ";
91
+ echo wp_statistics_countposts();
92
+ echo "</li>";
93
+ }
94
+
95
+ if(get_option('tpg_widget'))
96
+ {
97
+ echo "<li>";
98
+ echo __('Total Pages', 'wp_statistics'). ": ";
99
+ echo wp_statistics_countpages();
100
+ echo "</li>";
101
+ }
102
+
103
+ if(get_option('tc_widget'))
104
+ {
105
+ echo "<li>";
106
+ echo __('Total Comments', 'wp_statistics'). ": ";
107
+ echo wp_statistics_countcomment();
108
+ echo "</li>";
109
+ }
110
+
111
+ if(get_option('ts_widget'))
112
+ {
113
+ echo "<li>";
114
+ echo __('Total Spams', 'wp_statistics'). ": ";
115
+ echo wp_statistics_countspam();
116
+ echo "</li>";
117
+ }
118
+
119
+ if(get_option('tu_widget'))
120
+ {
121
+ echo "<li>";
122
+ echo __('Total Users', 'wp_statistics'). ": ";
123
+ echo wp_statistics_countusers();
124
+ echo "</li>";
125
+ }
126
+
127
+ if(get_option('ap_widget'))
128
+ {
129
+ echo "<li>";
130
+ echo __('Average Posts', 'wp_statistics'). ": ";
131
+ echo wp_statistics_average_post();
132
+ echo "</li>";
133
+ }
134
+
135
+ if(get_option('ac_widget'))
136
+ {
137
+ echo "<li>";
138
+ echo __('Average Comments', 'wp_statistics'). ": ";
139
+ echo wp_statistics_average_comment();
140
+ echo "</li>";
141
+ }
142
+
143
+ if(get_option('au_widget'))
144
+ {
145
+ echo "<li>";
146
+ echo __('Average Users', 'wp_statistics'). ": ";
147
+ echo wp_statistics_average_registeruser();
148
+ echo "</li>";
149
+ }
150
+
151
+ if(get_option('lpd_widget'))
152
+ {
153
+ echo "<li>";
154
+ echo __('Last Post Date', 'wp_statistics'). ": ";
155
+ if(get_option('select_lps') == "farsi")
156
+ {
157
+ echo wp_statistics_lastpostdate("farsi");
158
+ } else {
159
+ echo wp_statistics_lastpostdate();
160
+ }
161
+ echo "</li>";
162
+ }
163
+ echo "</ul>";
164
+ echo $after_widget;
165
+ }
166
+
167
+ function wp_statistics_control_widget()
168
+ {
169
+ if ($_POST['wp_statistics_control_widget_submit'])
170
+ {
171
+ update_option('name_widget', $_POST['name_widget']);
172
+ update_option('useronline_widget', $_POST['useronline_widget']);
173
+ update_option('tvisit_widget', $_POST['tvisit_widget']);
174
+ update_option('yvisit_widget', $_POST['yvisit_widget']);
175
+ update_option('wvisit_widget', $_POST['wvisit_widget']);
176
+ update_option('mvisit_widget', $_POST['mvisit_widget']);
177
+ update_option('ysvisit_widget', $_POST['ysvisit_widget']);
178
+ update_option('ttvisit_widget', $_POST['ttvisit_widget']);
179
+ update_option('ser_widget', $_POST['ser_widget']);
180
+ update_option('select_se', $_POST['select_se']);
181
+ update_option('tp_widget', $_POST['tp_widget']);
182
+ update_option('tpg_widget', $_POST['tpg_widget']);
183
+ update_option('tc_widget', $_POST['tc_widget']);
184
+ update_option('ts_widget', $_POST['ts_widget']);
185
+ update_option('tu_widget', $_POST['tu_widget']);
186
+ update_option('ap_widget', $_POST['ap_widget']);
187
+ update_option('ac_widget', $_POST['ac_widget']);
188
+ update_option('au_widget', $_POST['au_widget']);
189
+ update_option('lpd_widget', $_POST['lpd_widget']);
190
+ update_option('select_lps', $_POST['select_lps']);
191
+ } ?>
192
+
193
+ <p>
194
+ <?php _e('Name', 'wp_statistics'); ?>:<br />
195
+ <input id="name_widget" name="name_widget" type="text" value="<?php echo get_option('name_widget'); ?>" />
196
+ </p>
197
+
198
+ <?php _e('Items', 'wp_statistics'); ?>:</br />
199
+ <ul>
200
+ <li><input type="checkbox" id="useronline_widget" name="useronline_widget" <?php checked('on', get_option('useronline_widget')); ?>/>
201
+ <label for="useronline_widget"><?php _e('User Online', 'wp_statistics'); ?></label></li>
202
+
203
+ <li><input type="checkbox" id="tvisit_widget" name="tvisit_widget" <?php checked('on', get_option('tvisit_widget')); ?>/>
204
+ <label for="tvisit_widget"><?php _e('Today Visit', 'wp_statistics'); ?></label></li>
205
+
206
+ <li><input type="checkbox" id="yvisit_widget" name="yvisit_widget" <?php checked('on', get_option('yvisit_widget')); ?>/>
207
+ <label for="yvisit_widget"><?php _e('Yesterday visit', 'wp_statistics'); ?></label></li>
208
+
209
+ <li><input type="checkbox" id="wvisit_widget" name="wvisit_widget" <?php checked('on', get_option('wvisit_widget')); ?>/>
210
+ <label for="wvisit_widget"><?php _e('Week Visit', 'wp_statistics'); ?></label></li>
211
+
212
+ <li><input type="checkbox" id="mvisit_widget" name="mvisit_widget" <?php checked('on', get_option('mvisit_widget')); ?>/>
213
+ <label for="mvisit_widget"><?php _e('Month Visit', 'wp_statistics'); ?></label></li>
214
+
215
+ <li><input type="checkbox" id="ysvisit_widget" name="ysvisit_widget" <?php checked('on', get_option('ysvisit_widget')); ?>/>
216
+ <label for="ysvisit_widget"><?php _e('Years Visit', 'wp_statistics'); ?></label></li>
217
+
218
+ <li><input type="checkbox" id="ttvisit_widget" name="ttvisit_widget" <?php checked('on', get_option('ttvisit_widget')); ?>/>
219
+ <label for="ttvisit_widget"><?php _e('Total Visit', 'wp_statistics'); ?></label></li>
220
+
221
+ <li><input type="checkbox" id="ser_widget" class="ser_widget" name="ser_widget" <?php checked('on', get_option('ser_widget')); ?>/>
222
+ <label for="ser_widget"><?php _e('Search Engine reffered', 'wp_statistics'); ?></label></li>
223
+
224
+ <p id="ser_option" style="<?php if(!get_option('ser_widget')) { echo "display: none;"; } ?>">
225
+ <?php _e('Select type of search engine', 'wp_statistics'); ?>:<br />
226
+ <input type="radio" id="select_google" name="select_se" value="google" <?php checked('google', get_option('select_se')); ?>/>
227
+ <label for="select_google"><?php _e('Google', 'wp_statistics'); ?></label>
228
+
229
+ <input type="radio" id="select_yahoo" name="select_se" value="yahoo" <?php checked('yahoo', get_option('select_se')); ?>/>
230
+ <label for="select_yahoo"><?php _e('Yahoo!', 'wp_statistics'); ?></label>
231
+
232
+ <input type="radio" id="select_bing" name="select_se" value="bing" <?php checked('bing', get_option('select_se')); ?>/>
233
+ <label for="select_bing"><?php _e('Bing', 'wp_statistics'); ?></label>
234
+
235
+ <input type="radio" id="select_all" name="select_se" value="all" <?php checked('all', get_option('select_se')); ?>/>
236
+ <label for="select_all"><?php _e('All', 'wp_statistics'); ?></label>
237
+ </p>
238
+
239
+ <li><input type="checkbox" id="tp_widget" name="tp_widget" <?php checked('on', get_option('tp_widget')); ?>/>
240
+ <label for="tp_widget"><?php _e('Total Posts', 'wp_statistics'); ?></label></li>
241
+
242
+ <li><input type="checkbox" id="tpg_widget" name="tpg_widget" <?php checked('on', get_option('tpg_widget')); ?>/>
243
+ <label for="tpg_widget"><?php _e('Total Pages', 'wp_statistics'); ?></label></li>
244
+
245
+ <li><input type="checkbox" id="tc_widget" name="tc_widget" <?php checked('on', get_option('tc_widget')); ?>/>
246
+ <label for="tc_widget"><?php _e('Total Comments', 'wp_statistics'); ?></label></li>
247
+
248
+ <li><input type="checkbox" id="ts_widget" name="ts_widget" <?php checked('on', get_option('ts_widget')); ?>/>
249
+ <label for="ts_widget"><?php _e('Total Spams', 'wp_statistics'); ?></label></li>
250
+
251
+ <li><input type="checkbox" id="tu_widget" name="tu_widget" <?php checked('on', get_option('tu_widget')); ?>/>
252
+ <label for="tu_widget"><?php _e('Total Users', 'wp_statistics'); ?></label></li>
253
+
254
+ <li><input type="checkbox" id="ap_widget" name="ap_widget" <?php checked('on', get_option('ap_widget')); ?>/>
255
+ <label for="ap_widget"><?php _e('Average Posts', 'wp_statistics'); ?></label></li>
256
+
257
+ <li><input type="checkbox" id="ac_widget" name="ac_widget" <?php checked('on', get_option('ac_widget')); ?>/>
258
+ <label for="ac_widget"><?php _e('Average Comments', 'wp_statistics'); ?></label></li>
259
+
260
+ <li><input type="checkbox" id="au_widget" name="au_widget" <?php checked('on', get_option('au_widget')); ?>/>
261
+ <label for="au_widget"><?php _e('Average Users', 'wp_statistics'); ?></label></li>
262
+
263
+ <li><input type="checkbox" id="lpd_widget" class="lpd_widget" name="lpd_widget" <?php checked('on', get_option('lpd_widget')); ?>/>
264
+ <label for="lpd_widget"><?php _e('Last Post Date', 'wp_statistics'); ?></label></li>
265
+
266
+ <p id="lpd_option" style="<?php if(!get_option('lpd_widget')) { echo "display: none;"; } ?>">
267
+ <?php _e('Type date for last update', 'wp_statistics'); ?>:<br />
268
+ <input id="wp_statistics_widget_endate" name="select_lps" value="english" type="radio" <?php checked( 'english', get_option('select_lps') ); ?>/>
269
+ <label for="wp_statistics_widget_endate"><?php _e('English', 'wp_statistics'); ?></label>
270
+
271
+ <input id="wp_statistics_widget_jdate" name="select_lps" value="farsi" type="radio" <?php checked( 'farsi', get_option('select_lps') ); ?>/>
272
+ <label for="wp_statistics_widget_jdate"><?php _e('Persian', 'wp_statistics'); ?></label>
273
+ </p>
274
+ </ul>
275
+
276
+ <input type="hidden" id="wp_statistics_control_widget_submit" name="wp_statistics_control_widget_submit" value="1" />
277
+ <?php
278
+ }
279
+ ?>
wp-statistics-useronline-live.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- require('../../../wp-blog-header.php');
3
  global $wpdb, $table_prefix;
4
 
5
  $get_users = $wpdb->get_var("SELECT COUNT(ip) FROM {$table_prefix}statistics_useronline");
1
  <?php
2
+ require('../../../wp-load.php');
3
  global $wpdb, $table_prefix;
4
 
5
  $get_users = $wpdb->get_var("SELECT COUNT(ip) FROM {$table_prefix}statistics_useronline");
wp-statistics.php CHANGED
@@ -3,11 +3,12 @@
3
  Plugin Name: WP-Statistics
4
  Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
5
  Description: Summary statistics of blog.
6
- Version: 2.2.4
7
  Author: Mostafa Soufi
8
  Author URI: http://iran98.org/
9
  License: GPL2
10
  */
 
11
 
12
  load_plugin_textdomain('wp_statistics','wp-content/plugins/wp-statistics/langs');
13
 
@@ -214,8 +215,24 @@ License: GPL2
214
  }
215
  }
216
 
217
- if( ($get_dates_row->last_counter) == $get_now )
218
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  if(strstr($get_referred, 'google.com'))
220
  {
221
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET google = google+1");
@@ -224,10 +241,6 @@ License: GPL2
224
  } else if(strstr($get_referred, 'bing.com')) {
225
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET bing = bing+1");
226
  }
227
- } else {
228
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET google = 0");
229
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET yahoo = 0");
230
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET bing = 0");
231
  }
232
 
233
  $get_items_statistics = get_option('items_statistics');
@@ -411,10 +424,10 @@ License: GPL2
411
  <span id="show_totalvisit_live"></span>
412
  <?php }
413
 
414
- function wp_statistics_countposts($type=publish)
415
  {
416
- $count_posts = wp_count_posts();
417
- return $count_posts->$type;
418
  }
419
 
420
  function wp_statistics_countpages()
@@ -515,7 +528,8 @@ License: GPL2
515
  {
516
  if (function_exists('add_options_page'))
517
  {
518
- add_menu_page(__('Settings', 'wp_statistics'), __('Settings', 'wp_statistics'), 'manage_options', 'wp-statistics', 'wp_statistics_config_permission', plugin_dir_url( __FILE__ ).'/images/icon.png');
 
519
  add_submenu_page( 'wp-statistics', __('Stats Log', 'wp_statistics'), __('Stats Log', 'wp_statistics'), 'manage_options', 'wp-statistics/stats', 'wp_statistics_stats_permission');
520
  add_submenu_page( 'wp-statistics', __('Users Online', 'wp_statistics'), __('Users Online', 'wp_statistics'), 'manage_options', 'wp-statistics/online', 'wp_statistics_online_permission');
521
  }
@@ -536,764 +550,513 @@ License: GPL2
536
  register_setting('wp_statistics_options', 'time_useronline_s');
537
  register_setting('wp_statistics_options', 'items_statistics');
538
  register_setting('wp_statistics_options', 'coefficient_visitor');
539
- register_setting('wp_statistics_options', 'database_checktime');
540
  register_setting('wp_statistics_options', 'pagerank_google_url');
541
  register_setting('wp_statistics_options', 'pagerank_alexa_url');
542
  }
543
  }?>
544
 
545
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js" type="text/javascript"></script>
546
- <script type="text/javascript">
547
- $(document).ready(function(){
548
- $("span#increase_total_visit").click(function()
549
- {
550
- var total_increase_value = $("input#increase_total_visit").val();
551
- $("input#increase_total_visit").attr("disabled", "disabled");
552
- $("span#increase_total_visit").attr("disabled", "disabled");
553
- $("div#result_increase_total_visit").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
554
- $.post("<?php echo plugin_dir_url( __FILE__ );?>/actions.php",{increase_value:total_increase_value},function(result){
555
- $("div#result_increase_total_visit").html(result);
556
- $("input#increase_total_visit").removeAttr("disabled");
557
- $("span#increase_total_visit").removeAttr("disabled");
558
  });
559
- });
560
 
561
- $("span#reduction_total_visit").click(function()
562
- {
563
- var total_reduction_value = $("input#reduction_total_visit").val();
564
- $("input#reduction_total_visit").attr("disabled", "disabled");
565
- $("span#reduction_total_visit").attr("disabled", "disabled");
566
- $("div#result_reduction_total_visit").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
567
- $.post("<?php echo plugin_dir_url( __FILE__ );?>/actions.php",{reduction_value:total_reduction_value},function(result){
568
- $("div#result_reduction_total_visit").html(result);
569
- $("input#reduction_total_visit").removeAttr("disabled");
570
- $("span#reduction_total_visit").removeAttr("disabled");
 
571
  });
572
- });
573
 
574
- $("span#show_function").click(function()
575
- {
576
- $("div#report_problem").slideUp(1000);
577
- $("ul#functions_list").slideDown(1000, function()
578
  {
579
- $("ul#functions_list code").fadeIn(1000);
 
 
 
 
580
  });
581
- });
582
-
583
- $("span#hide_function").click(function()
584
- {
585
- $("ul#functions_list").slideUp(1000);
586
- });
587
-
588
- $("span#hide_report").click(function()
589
- {
590
- $("div#report_problem").slideUp(1000);
591
- });
592
 
593
- $("span#report_problem").click(function()
594
- {
595
- $("ul#functions_list").slideUp(1000);
596
- $("div#report_problem").slideDown(1000);
597
- });
598
 
599
- $("span#send_report").click(function()
600
- {
601
- var your_name = $("input#your_name").val();
602
- var your_report = $("textarea#your_report").val();
603
- $("div#result_problem").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
604
- $("div#result_problem").load("<?php echo plugin_dir_url( __FILE__ );?>/report_problem.php", {y_name:your_name, d_report:your_report});
605
- });
606
 
607
- $("span#uninstall").click(function()
608
- {
609
- var uninstall = confirm("<?php _e('Are you sure?', 'wp_statistics'); ?>");
 
 
 
 
610
 
611
- if(uninstall)
612
  {
613
- $("div#result_uninstall").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
614
- $("div#result_uninstall").load('<?php echo plugin_dir_url(__FILE__); ?>/uninstall.php');
615
- }
 
 
 
 
 
616
  });
617
- });
618
- </script>
619
-
620
- <div class="wrap">
621
- <h2><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/images/icon_big.png"/> <?php _e('Configuration', 'wp_statistics'); ?></h2>
622
- <table class="form-table">
623
- <form method="post" action="options.php">
624
- <?php wp_nonce_field('update-options');?>
625
- <tr style="background-color:#EEEEEE; border:1px solid #DDDDDD;">
626
- <td width="250"><?php _e('Enable Statistics', 'wp_statistics'); ?>:</td>
627
- <td width="200">
628
- <?php $get_enable_stats = get_option('enable_stats'); ?>
629
- <input type="checkbox" name="enable_stats" id="enable_stats" <?php echo $get_enable_stats==true? "checked='checked'" : '';?>/>
630
- <label for="enable_stats"><?php _e('Yes', 'wp_statistics'); ?></label>
631
- </td>
632
- <td>
633
- <?php if($get_enable_stats) { ?>
634
- <span style="font-size:11px; color:#009900;">(<?php _e('Statistics are enabled.', 'wp_statistics'); ?>)</span>
635
- <?php } else { ?>
636
- <span style="font-size:11px; color:#FF0000;">(<?php _e('Statistics are disabled!', 'wp_statistics'); ?>)</span>
637
- <?php } ?>
638
- </td>
639
- </tr>
640
-
641
- <tr><th><h3><?php _e('General configuration', 'wp_statistics'); ?></h4></th></tr>
642
-
643
- <tr>
644
- <td><?php _e('Show decimals number', 'wp_statistics'); ?>:</td>
645
- <td>
646
- <?php $get_enable_stats = get_option('enable_decimals'); ?>
647
- <input type="checkbox" name="enable_decimals" id="enable_decimals" <?php echo $get_enable_stats==true? "checked='checked'" : '';?>/>
648
- <label for="enable_decimals"><?php _e('Yes', 'wp_statistics'); ?></label>
649
- </td>
650
- <td><span style="font-size:11px;">(<?php _e('Show number stats with decimal. For examle: 3,500', 'wp_statistics'); ?>)</span></td>
651
- </tr>
652
-
653
- <tr>
654
- <td><?php _e('Show stats in menu bar', 'wp_statistics'); ?>:</td>
655
- <td>
656
- <?php $get_enable_wps_adminbar = get_option('enable_wps_adminbar'); ?>
657
- <input type="checkbox" name="enable_wps_adminbar" id="enable_wps_adminbar" <?php echo $get_enable_wps_adminbar==true? "checked='checked'" : '';?>/>
658
- <label for="enable_wps_adminbar"><?php _e('Yes', 'wp_statistics'); ?></label>
659
- </td>
660
- <td><span style="font-size:11px;">(<?php _e('Show stats in admin menu bar', 'wp_statistics'); ?>)</span></td>
661
- </tr>
662
-
663
- <tr>
664
- <td><?php _e('Check for online users every', 'wp_statistics'); ?>:</td>
665
- <td>
666
- <input type="text" name="time_useronline_s" style="direction:ltr; width:60px" maxlength="3" value="<?php echo get_option('time_useronline_s'); ?>"/>
667
- <span style="font-size:10px;"><?php _e('Second', 'wp_statistics'); ?></span>
668
- </td>
669
- <td><span style="font-size:11px;">(<?php _e('Time for the check accurate online user in the site. Default: 60 Second', 'wp_statistics'); ?>)</span></td>
670
- </tr>
671
-
672
- <tr>
673
- <td><?php _e('Increase value of the total hits by', 'wp_statistics'); ?>:</td>
674
- <td>
675
- <input type="text" name="increase_total_visit" id="increase_total_visit" style="direction:ltr; width:100px" maxlength="10"/>
676
- <span class="button" id="increase_total_visit" style="width:50px;"><?php _e('Done', 'wp_statistics'); ?></span>
677
- <div id="result_increase_total_visit" style="font-size:11px;"></div>
678
- </td>
679
- <td><span style="font-size:11px;">(<?php _e('Your total visit sum with this value', 'wp_statistics'); ?>)</span></td>
680
- </tr>
681
-
682
- <tr>
683
- <td><?php _e('Reduce value of the total hits by', 'wp_statistics'); ?>:</td>
684
- <td>
685
- <input type="text" name="reduction_total_visit" id="reduction_total_visit" style="direction:ltr; width:100px" maxlength="10"/>
686
- <span class="button" id="reduction_total_visit" style="width:50px;"><?php _e('Done', 'wp_statistics'); ?></span>
687
- <div id="result_reduction_total_visit" style="font-size:11px;"></div>
688
- </td>
689
- <td><span style="font-size:11px;">(<?php _e('Your total visit minus with this value', 'wp_statistics'); ?>)</span></td>
690
- </tr>
691
-
692
- <tr>
693
- <td><?php _e('Number item for show Statistics', 'wp_statistics'); ?>:</td>
694
- <td>
695
- <input type="text" name="items_statistics" style="direction:ltr; width:70px" maxlength="3" value="<?php echo get_option('items_statistics'); ?>"/>
696
- <span style="font-size:10px;"><?php _e('Default 5', 'wp_statistics'); ?></span>
697
- </td>
698
- <td><span style="font-size:11px;">(<?php _e('Number for submit item in Database and show that', 'wp_statistics'); ?>)</span></td>
699
- </tr>
700
-
701
- <tr>
702
- <td><?php _e('Coefficient per visitor', 'wp_statistics'); ?>:</td>
703
- <td>
704
- <input type="text" name="coefficient_visitor" style="direction:ltr; width:70px" maxlength="3" value="<?php echo get_option('coefficient_visitor'); ?>"/>
705
- <span style="font-size:10px;"><?php _e('Default 1', 'wp_statistics'); ?></span>
706
- </td>
707
- <td><span style="font-size:11px;">(<?php _e('For each visitor to account for several hits.', 'wp_statistics'); ?>)</span></td>
708
- </tr>
709
-
710
- <tr><th><h3><?php _e('Live Statistics configuration', 'wp_statistics'); ?></h4></th></tr>
711
-
712
- <tr>
713
- <td><?php _e('Refresh Stats every', 'wp_statistics'); ?>:</td>
714
- <td>
715
- <input type="text" name="database_checktime" style="direction:ltr; width:60px" maxlength="3" value="<?php echo get_option('database_checktime'); ?>"/>
716
- <span style="font-size:10px;"><?php _e('Second(s)', 'wp_statistics'); ?></span>
717
- </td>
718
- <td>
719
- <span style="font-size:11px; color:#FF0000;"><?php _e('Recommended', 'wp_statistics'); ?></span>
720
- <span style="font-size:11px;">(<?php _e('To reduce pressure on the server, this defaults to 10 sec', 'wp_statistics'); ?>.)</span>
721
- </td>
722
- </tr>
723
-
724
- <tr><th><h3><?php _e('Pagerank configuration', 'wp_statistics'); ?></h4></th></tr>
725
-
726
- <tr>
727
- <td><?php _e('Your url for Google pagerank check', 'wp_statistics'); ?>:</td>
728
- <td>
729
- <input type="text" name="pagerank_google_url" style="direction:ltr; width:200px" value="<?php echo get_option('pagerank_google_url'); ?>"/>
730
- </td>
731
- <td>
732
- <span style="font-size:11px;">(<?php _e('If empty. you website url is used', 'wp_statistics'); ?>)</span>
733
- </td>
734
- </tr>
735
-
736
- <tr>
737
- <td><?php _e('Your url for Alexa pagerank check', 'wp_statistics'); ?>:</td>
738
- <td>
739
- <input type="text" name="pagerank_alexa_url" style="direction:ltr; width:200px" value="<?php echo get_option('pagerank_alexa_url'); ?>"/>
740
- </td>
741
- <td>
742
- <span style="font-size:11px;">(<?php _e('If empty. you website url is used', 'wp_statistics'); ?>)</span>
743
- </td>
744
- </tr>
745
-
746
- <tr>
747
- <th colspan="3">
748
- <?php _e('This plugin created by', 'wp_statistics'); ?> <a href="http://profile.wordpress.org/mostafa.s1990">Mostafa Soufi</a> <?php _e('from', 'wp_statistics'); ?> <a href="http://www.webstudio.ir">Web Studio</a> & <a href="http://wpbazar.com">WPBazar</a> <?php _e('group', 'wp_statistics'); ?>.
749
-
750
- <h3><?php _e('Plugin translators', 'wp_statistics'); ?></h3>
751
- <ul>
752
-
753
- <ul>
754
- <li><?php _e('Language', 'wp_statistics'); ?> Portuguese <?php _e('by', 'wp_statistics'); ?><a a href="http://www.musicalmente.info/"> musicalmente</a></li>
755
- <li><?php _e('Language', 'wp_statistics'); ?> Romanian <?php _e('by', 'wp_statistics'); ?> <a href="http://www.nobelcom.com/">Luke Tyler</a></li>
756
- <li><?php _e('Language', 'wp_statistics'); ?> French <?php _e('by', 'wp_statistics'); ?> <a href="mailto:gnanice@gmail.com">Anice Gnampa</a></li>
757
- <li><?php _e('Language', 'wp_statistics'); ?> Russian <?php _e('by', 'wp_statistics'); ?> <a href="http://www.iflexion.com/">Igor Dubilej</a></li>
758
- <li><?php _e('Language', 'wp_statistics'); ?> Spanish <?php _e('by', 'wp_statistics'); ?> <a href="mailto:joanfusan@gmail.com">jose</a></li>
759
- <li><?php _e('Language', 'wp_statistics'); ?> Arabic <?php _e('by', 'wp_statistics'); ?> <a href="http://www.facebook.com/aboHatim">Hammad Shammari</a></li>
760
- <li><?php _e('Language', 'wp_statistics'); ?> German <?php _e('by', 'wp_statistics'); ?> <a href="http://www.andreasmartin.com/">Andreas Martin</a></li>
761
- </ul>
762
- <?php _e('for translate language files. please send files for', 'wp_statistics'); ?> <code>mst404@gmail.com</code>
763
-
764
- <p style="padding-top: 5px;">
765
- <span class="button" id="show_function"><?php _e('Show Functions', 'wp_statistics'); ?></span>
766
- <span class="button" id="report_problem"><?php _e('Report Problem', 'wp_statistics'); ?></span>
767
- </p>
768
-
769
- <style>
770
- a{text-decoration: none}
771
- ul#functions_list code{border-radius:5px; padding:5px; display:none; width:400px; text-align:left; float:left; direction:ltr;}
772
- ul#functions_list{list-style-type: decimal; margin: 20px; display:none;}
773
- ul#functions_list li{line-height: 25px; width: 200px;}
774
- div#report_problem{display: none;}
775
- </style>
776
- <ul id="functions_list">
777
- <table>
778
- <tr>
779
- <td><?php _e('User Online Live', 'wp_statistics'); ?></td>
780
- <td><code><?php highlight_string('<?php echo wp_statistics_useronline_live(); ?>'); ?></code></td>
781
- </tr>
782
- <tr>
783
- <td><?php _e('Total Visit Live', 'wp_statistics'); ?></td>
784
- <td><code><?php highlight_string('<?php echo wp_statistics_total_live(); ?>'); ?></code></td>
785
- </tr>
786
- <tr>
787
- <td><?php _e('User Online', 'wp_statistics'); ?></td>
788
- <td><code><?php highlight_string('<?php echo wp_statistics_useronline(); ?>'); ?></code></td>
789
- </tr>
790
- <tr>
791
- <td><?php _e('Today Visit', 'wp_statistics'); ?></td>
792
- <td><code><?php highlight_string('<?php echo wp_statistics_today(); ?>'); ?></code></td>
793
- </tr>
794
- <tr>
795
- <td><?php _e('Yesterday visit', 'wp_statistics'); ?></td>
796
- <td><code><?php highlight_string('<?php echo wp_statistics_yesterday(); ?>'); ?></code></td>
797
- </tr>
798
- <tr>
799
- <td><?php _e('Week Visit', 'wp_statistics'); ?></td>
800
- <td><code><?php highlight_string('<?php echo wp_statistics_week(); ?>'); ?></code></td>
801
- </tr>
802
- <tr>
803
- <td><?php _e('User Online', 'wp_statistics'); ?></td>
804
- <td><code><?php highlight_string('<?php echo wp_statistics_useronline(); ?>'); ?></code></td>
805
- </tr>
806
- <tr>
807
- <td><?php _e('Month Visit', 'wp_statistics'); ?></td>
808
- <td><code><?php highlight_string('<?php echo wp_statistics_month(); ?>'); ?></code></td>
809
- </tr>
810
- <tr>
811
- <td><?php _e('Years Visit', 'wp_statistics'); ?></td>
812
- <td><code><?php highlight_string('<?php echo wp_statistics_year(); ?>'); ?></code></td>
813
- </tr>
814
- <tr>
815
- <td><?php _e('Total Visit', 'wp_statistics'); ?></td>
816
- <td><code><?php highlight_string('<?php echo wp_statistics_total(); ?>'); ?></code></td>
817
- </tr>
818
- <tr>
819
- <td><?php _e('Search Engine reffered', 'wp_statistics'); ?></td>
820
- <td><code><?php highlight_string('<?php echo wp_statistics_searchengine(); ?>'); ?></code></td>
821
- </tr>
822
- <tr>
823
- <td><?php _e('Total Posts', 'wp_statistics'); ?></td>
824
- <td><code><?php highlight_string('<?php echo wp_statistics_countposts(); ?>'); ?></code></td>
825
- </tr>
826
- <tr>
827
- <td><?php _e('Total Pages', 'wp_statistics'); ?></td>
828
- <td><code><?php highlight_string('<?php echo wp_statistics_countpages(); ?>'); ?></code></td>
829
- </tr>
830
- <tr>
831
- <td><?php _e('Total Comments', 'wp_statistics'); ?></td>
832
- <td><code><?php highlight_string('<?php echo wp_statistics_countcomment(); ?>'); ?></code></td>
833
- </tr>
834
- <tr>
835
- <td><?php _e('Total Spams', 'wp_statistics'); ?></td>
836
- <td><code><?php highlight_string('<?php echo wp_statistics_countspam(); ?>'); ?></code></td>
837
- </tr>
838
- <tr>
839
- <td><?php _e('Total Users', 'wp_statistics'); ?></td>
840
- <td><code><?php highlight_string('<?php echo wp_statistics_countusers(); ?>'); ?></code></td>
841
- </tr>
842
- <tr>
843
- <td><?php _e('Last Post Date', 'wp_statistics'); ?></td>
844
- <td><code><?php highlight_string('<?php echo wp_statistics_lastpostdate(); ?>'); ?></code></td>
845
- </tr>
846
- <tr>
847
- <td><?php _e('Average Posts', 'wp_statistics'); ?></td>
848
- <td><code><?php highlight_string('<?php echo wp_statistics_average_post(); ?>'); ?></code></td>
849
- </tr>
850
- <tr>
851
- <td><?php _e('Average Comments', 'wp_statistics'); ?></td>
852
- <td><code><?php highlight_string('<?php echo wp_statistics_average_comment(); ?>'); ?></code></td>
853
- </tr>
854
- <tr>
855
- <td><?php _e('Average Users', 'wp_statistics'); ?></td>
856
- <td><code><?php highlight_string('<?php echo wp_statistics_average_registeruser(); ?>'); ?></code></td>
857
- </tr>
858
- <tr>
859
- <td><?php _e('Total Feedburner Subscribe', 'wp_statistics'); ?></td>
860
- <td><code><?php highlight_string('<?php echo wp_statistics_countsubscrib("feedburneraddress"); ?>'); ?></code></td>
861
- </tr>
862
- <tr>
863
- <td><?php _e('Google Pagerank', 'wp_statistics'); ?></td>
864
- <td><code><?php highlight_string('<?php echo wp_statistics_google_page_rank(); ?>'); ?></code></td>
865
- </tr>
866
- <tr>
867
- <td><?php _e('Alexa Pagerank', 'wp_statistics'); ?></td>
868
- <td><code><?php highlight_string('<?php echo wp_statistics_alexaRank(); ?>'); ?></code></td>
869
- </tr>
870
- </table>
871
- <br /><span class="button" id="hide_function"><?php _e('Hide', 'wp_statistics'); ?></span>
872
- </ul>
873
-
874
- <div id="report_problem">
875
- <p><?php _e('Your Name', 'wp_statistics'); ?>:<br /><input type="text" name="your_name" id="your_name"/></p>
876
-
877
- <p><?php _e('Description Problem', 'wp_statistics'); ?>:<br /><textarea name="your_report" id="your_report"/></textarea></p>
878
- <div id="result_problem"></div>
879
- <br />
880
- <span class="button" id="send_report"><?php _e('Send Problem', 'wp_statistics'); ?></span>
881
- <span class="button" id="hide_report"><?php _e('Hide', 'wp_statistics'); ?></span>
882
- </div>
883
- </th>
884
- </tr>
885
-
886
- <tr>
887
- <th>
888
- <h3><?php _e('Unistall plugin', 'wp_statistics'); ?></h4>
889
- </th>
890
- </tr>
891
 
892
- <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
893
  <th colspan="3">
894
- <?php _e('Delete all data, including tables and plugin options', 'wp_statistics'); ?>
895
- <span class="button" id="uninstall"><?php _e('Uninstall', 'wp_statistics'); ?></span>
896
- <div id="result_uninstall"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
897
  </th>
898
- </tr>
899
-
900
- <tr>
901
- <td>
902
- <p class="submit">
903
- <input type="hidden" name="action" value="update" />
904
- <input type="hidden" name="page_options" value="enable_stats,enable_decimals,enable_wps_adminbar,time_useronline_s,items_statistics,coefficient_visitor,database_checktime,pagerank_google_url,pagerank_alexa_url" />
905
- <input type="submit" class="button-primary" name="Submit" value="<?php _e('Update', 'wp_statistics'); ?>" />
906
- </p>
907
- </td>
908
- </tr>
909
- </form>
910
- </table>
911
- </div>
912
-
913
- <?php }
914
- function wp_statistics_stats_permission() {
915
- if (!current_user_can('manage_options')) {
916
- wp_die( __('You do not have sufficient permissions to access this page.', 'wp_statistics') ); } ?>
917
- <style>
918
- .form-table td{
919
- font-size: 12px;
920
- line-height: 20px;
921
- margin-bottom: 9px;
922
- max-width: 440px;
923
- overflow: hidden;
924
- padding: 8px 10px;
925
- white-space: nowrap;
926
- }
927
- #first_row{
928
- background-color:#EEEEEE;
929
- border:1px solid #DDDDDD;
930
- text-align: center;
931
- }
932
- #secound_row{
933
- border:1px solid #EEEEEE;
934
- direction:ltr;
935
- }
936
- </style>
937
- <div class="wrap">
938
- <h2><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/images/icon_big.png"/> <?php _e('Stats weblog', 'wp_statistics'); ?></h2>
939
- <table class="form-table">
940
- <?php
941
- global $wpdb, $table_prefix;
942
- $get_user_ip = $wpdb->get_col("SELECT ip FROM {$table_prefix}statistics_reffered");
943
- $get_user_time = $wpdb->get_col("SELECT time FROM {$table_prefix}statistics_reffered");
944
- $get_user_referred = $wpdb->get_col("SELECT referred FROM {$table_prefix}statistics_reffered");
945
- $get_user_agent = $wpdb->get_col("SELECT agent FROM {$table_prefix}statistics_reffered");
946
- $get_total_online = $wpdb->get_var("SELECT COUNT(*) FROM {$table_prefix}statistics_reffered");
947
-
948
- echo "<tr id='first_row'>";
949
- echo "<td width='5'>".__('No', 'wp_statistics')."</td>";
950
- echo "<td>".__('IP', 'wp_statistics')."</td>";
951
- echo "<td>".__('Time', 'wp_statistics')."</td>";
952
- echo "<td>".__('Referred', 'wp_statistics')."</td>";
953
- echo "<td>".__('Agent', 'wp_statistics')."</td>";
954
- echo "</tr>";
955
-
956
- for($i=0; $i<$get_total_online; $i++)
957
- {
958
- $j = $i+1;
959
- echo "<tr id='secound_row'>";
960
- echo "<td>$j</td>";
961
- echo "<td>$get_user_ip[$i]</td>";
962
- echo "<td>$get_user_time[$i]</td>";
963
- echo "<td><a href='$get_user_referred[$i]' target='_blank'>$get_user_referred[$i]</a></td>";
964
- echo "<td>$get_user_agent[$i]</td>";
965
- echo "</tr>";
966
- }
967
- ?>
968
  </table>
969
- </div>
970
- <?php }
971
- function wp_statistics_online_permission() {
972
- if (!current_user_can('manage_options')) {
973
- wp_die( __('You do not have sufficient permissions to access this page.', 'wp_statistics') ); } ?>
974
- <style>
975
- .form-table td{
976
- font-size: 12px;
977
- line-height: 20px;
978
- margin-bottom: 9px;
979
- max-width: 440px;
980
- overflow: hidden;
981
- padding: 8px 10px;
982
- white-space: nowrap;
983
- }
984
- #first_row{
985
- background-color:#EEEEEE;
986
- border:1px solid #DDDDDD;
987
- text-align: center;
988
- }
989
- #secound_row{
990
- border:1px solid #EEEEEE;
991
- direction:ltr;
992
- }
993
- </style>
994
- <div class="wrap">
995
- <h2><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/images/icon_big.png"/> <?php _e('User Online', 'wp_statistics'); ?></h2>
996
- <table class="form-table">
997
  <?php
998
- global $wpdb, $table_prefix;
999
- $get_user_ip = $wpdb->get_col("SELECT ip FROM {$table_prefix}statistics_useronline");
1000
- $get_user_time = $wpdb->get_col("SELECT time FROM {$table_prefix}statistics_useronline");
1001
- $get_user_referred = $wpdb->get_col("SELECT referred FROM {$table_prefix}statistics_useronline");
1002
- $get_user_agent = $wpdb->get_col("SELECT agent FROM {$table_prefix}statistics_useronline");
1003
- $get_total_online = $wpdb->get_var("SELECT COUNT(*) FROM {$table_prefix}statistics_useronline");
1004
-
1005
- echo "<tr id='first_row'>";
1006
- echo "<td width='5'>".__('No', 'wp_statistics')."</td>";
1007
- echo "<td>".__('IP', 'wp_statistics')."</td>";
1008
- echo "<td>".__('Time', 'wp_statistics')."</td>";
1009
- echo "<td>".__('Referrer', 'wp_statistics')."</td>";
1010
- echo "<td>".__('Agent', 'wp_statistics')."</td>";
1011
- echo "</tr>";
1012
-
1013
- for($i=0; $i<$get_total_online; $i++)
1014
- {
1015
- $j = $i+1;
1016
- echo "<tr id='secound_row'>";
1017
- echo "<td>$j</td>";
1018
- echo "<td>$get_user_ip[$i]</td>";
1019
- echo "<td>$get_user_time[$i]</td>";
1020
- echo "<td><a href='$get_user_referred[$i]' target='_blank'>$get_user_referred[$i]</a></td>";
1021
- echo "<td>$get_user_agent[$i]</td>";
1022
- echo "</tr>";
1023
- }
1024
- ?>
1025
- </table>
1026
- </div>
1027
- <?php }
1028
- function wp_statistics_show_widget($args)
1029
- {
1030
- extract($args);
1031
- echo "<li class='widget'>";
1032
- echo $before_title . get_option('name_widget') . $after_title;
1033
- echo "<ul>";
1034
- if(get_option('useronline_widget'))
1035
- {
1036
- echo "<li>";
1037
- echo __('User Online', 'wp_statistics'). ": ";
1038
- echo wp_statistics_useronline();
1039
- echo "</li>";
1040
- }
1041
-
1042
- if(get_option('tvisit_widget'))
1043
- {
1044
- echo "<li>";
1045
- echo __('Today Visit', 'wp_statistics'). ": ";
1046
- echo wp_statistics_today();
1047
- echo "</li>";
1048
- }
1049
-
1050
- if(get_option('yvisit_widget'))
1051
- {
1052
- echo "<li>";
1053
- echo __('Yesterday Visit', 'wp_statistics'). ": ";
1054
- echo wp_statistics_yesterday();
1055
- echo "</li>";
1056
- }
1057
-
1058
- if(get_option('wvisit_widget'))
1059
- {
1060
- echo "<li>";
1061
- echo __('Week Visit', 'wp_statistics'). ": ";
1062
- echo wp_statistics_week();
1063
- echo "</li>";
1064
- }
1065
-
1066
- if(get_option('mvisit_widget'))
1067
- {
1068
- echo "<li>";
1069
- echo __('Month Visit', 'wp_statistics'). ": ";
1070
- echo wp_statistics_month();
1071
- echo "</li>";
1072
- }
1073
-
1074
- if(get_option('ysvisit_widget'))
1075
- {
1076
- echo "<li>";
1077
- echo __('Years Visit', 'wp_statistics'). ": ";
1078
- echo wp_statistics_year();
1079
- echo "</li>";
1080
- }
1081
-
1082
- if(get_option('ttvisit_widget'))
1083
- {
1084
- echo "<li>";
1085
- echo __('Total Visit', 'wp_statistics'). ": ";
1086
- echo wp_statistics_total();
1087
- echo "</li>";
1088
- }
1089
-
1090
- if(get_option('ser_widget'))
1091
- {
1092
- echo "<li>";
1093
- echo __('Search Engine reffered', 'wp_statistics'). ": ";
1094
- if(get_option('select_se') == "google"){
1095
- echo wp_statistics_searchengine("google");
1096
- } else if(get_option('select_se') == "yahoo"){
1097
- echo wp_statistics_searchengine("yahoo");
1098
- } else if(get_option('select_se') == "bing"){
1099
- echo wp_statistics_searchengine("bing");
1100
- } else if(get_option('select_se') == "all"){
1101
- echo wp_statistics_searchengine();
1102
- }
1103
- echo "</li>";
1104
- }
1105
-
1106
- if(get_option('tp_widget'))
1107
- {
1108
- echo "<li>";
1109
- echo __('Total Posts', 'wp_statistics'). ": ";
1110
- echo wp_statistics_countposts();
1111
- echo "</li>";
1112
- }
1113
-
1114
- if(get_option('tpg_widget'))
1115
- {
1116
- echo "<li>";
1117
- echo __('Total Pages', 'wp_statistics'). ": ";
1118
- echo wp_statistics_countpages();
1119
- echo "</li>";
1120
- }
1121
-
1122
- if(get_option('tc_widget'))
1123
- {
1124
- echo "<li>";
1125
- echo __('Total Comments', 'wp_statistics'). ": ";
1126
- echo wp_statistics_countcomment();
1127
- echo "</li>";
1128
- }
1129
-
1130
- if(get_option('ts_widget'))
1131
- {
1132
- echo "<li>";
1133
- echo __('Total Spams', 'wp_statistics'). ": ";
1134
- echo wp_statistics_countspam();
1135
- echo "</li>";
1136
- }
1137
-
1138
- if(get_option('tu_widget'))
1139
- {
1140
- echo "<li>";
1141
- echo __('Total Users', 'wp_statistics'). ": ";
1142
- echo wp_statistics_countusers();
1143
- echo "</li>";
1144
- }
1145
-
1146
- if(get_option('ap_widget'))
1147
- {
1148
- echo "<li>";
1149
- echo __('Average Posts', 'wp_statistics'). ": ";
1150
- echo wp_statistics_average_post();
1151
- echo "</li>";
1152
- }
1153
-
1154
- if(get_option('ac_widget'))
1155
- {
1156
- echo "<li>";
1157
- echo __('Average Comments', 'wp_statistics'). ": ";
1158
- echo wp_statistics_average_comment();
1159
- echo "</li>";
1160
- }
1161
 
1162
- if(get_option('au_widget'))
 
 
1163
  {
1164
- echo "<li>";
1165
- echo __('Average Users', 'wp_statistics'). ": ";
1166
- echo wp_statistics_average_registeruser();
1167
- echo "</li>";
1168
  }
1169
 
1170
- if(get_option('lpd_widget'))
1171
- {
1172
- echo "<li>";
1173
- echo __('Last Post Date', 'wp_statistics'). ": ";
1174
- if(get_option('select_lps') == "farsi")
1175
- {
1176
- echo wp_statistics_lastpostdate("farsi");
1177
- } else {
1178
- echo wp_statistics_lastpostdate();
1179
- }
1180
- echo "</li>";
1181
- }
1182
- echo "</ul>";
1183
- echo "</li>";
1184
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1185
 
1186
- function wp_statistics_control_widget()
1187
  {
1188
- if ($_POST['wp_statistics_control_widget_submit'])
1189
  {
1190
- update_option('name_widget', $_POST['name_widget']);
1191
- update_option('useronline_widget', $_POST['useronline_widget']);
1192
- update_option('tvisit_widget', $_POST['tvisit_widget']);
1193
- update_option('yvisit_widget', $_POST['yvisit_widget']);
1194
- update_option('wvisit_widget', $_POST['wvisit_widget']);
1195
- update_option('mvisit_widget', $_POST['mvisit_widget']);
1196
- update_option('ysvisit_widget', $_POST['ysvisit_widget']);
1197
- update_option('ttvisit_widget', $_POST['ttvisit_widget']);
1198
- update_option('ser_widget', $_POST['ser_widget']);
1199
- update_option('select_se', $_POST['select_se']);
1200
- update_option('tp_widget', $_POST['tp_widget']);
1201
- update_option('tpg_widget', $_POST['tpg_widget']);
1202
- update_option('tc_widget', $_POST['tc_widget']);
1203
- update_option('ts_widget', $_POST['ts_widget']);
1204
- update_option('tu_widget', $_POST['tu_widget']);
1205
- update_option('ap_widget', $_POST['ap_widget']);
1206
- update_option('ac_widget', $_POST['ac_widget']);
1207
- update_option('au_widget', $_POST['au_widget']);
1208
- update_option('lpd_widget', $_POST['lpd_widget']);
1209
- update_option('select_lps', $_POST['select_lps']);
1210
- } ?>
1211
-
1212
- <p>
1213
- <?php _e('Name', 'wp_statistics'); ?>:<br />
1214
- <input id="name_widget" name="name_widget" type="text" value="<?php echo get_option('name_widget'); ?>" />
1215
- </p>
1216
-
1217
- <?php _e('Items', 'wp_statistics'); ?>:</br />
1218
- <ul>
1219
- <li><input type="checkbox" id="useronline_widget" name="useronline_widget" <?php checked('on', get_option('useronline_widget')); ?>/>
1220
- <label for="useronline_widget"><?php _e('User Online', 'wp_statistics'); ?></label></li>
1221
-
1222
- <li><input type="checkbox" id="tvisit_widget" name="tvisit_widget" <?php checked('on', get_option('tvisit_widget')); ?>/>
1223
- <label for="tvisit_widget"><?php _e('Today Visit', 'wp_statistics'); ?></label></li>
1224
-
1225
- <li><input type="checkbox" id="yvisit_widget" name="yvisit_widget" <?php checked('on', get_option('yvisit_widget')); ?>/>
1226
- <label for="yvisit_widget"><?php _e('Yesterday visit', 'wp_statistics'); ?></label></li>
1227
-
1228
- <li><input type="checkbox" id="wvisit_widget" name="wvisit_widget" <?php checked('on', get_option('wvisit_widget')); ?>/>
1229
- <label for="wvisit_widget"><?php _e('Week Visit', 'wp_statistics'); ?></label></li>
1230
-
1231
- <li><input type="checkbox" id="mvisit_widget" name="mvisit_widget" <?php checked('on', get_option('mvisit_widget')); ?>/>
1232
- <label for="mvisit_widget"><?php _e('Month Visit', 'wp_statistics'); ?></label></li>
1233
-
1234
- <li><input type="checkbox" id="ysvisit_widget" name="ysvisit_widget" <?php checked('on', get_option('ysvisit_widget')); ?>/>
1235
- <label for="ysvisit_widget"><?php _e('Years Visit', 'wp_statistics'); ?></label></li>
1236
-
1237
- <li><input type="checkbox" id="ttvisit_widget" name="ttvisit_widget" <?php checked('on', get_option('ttvisit_widget')); ?>/>
1238
- <label for="ttvisit_widget"><?php _e('Total Visit', 'wp_statistics'); ?></label></li>
1239
-
1240
- <li><input type="checkbox" id="ser_widget" class="ser_widget" name="ser_widget" <?php checked('on', get_option('ser_widget')); ?>/>
1241
- <label for="ser_widget"><?php _e('Search Engine reffered', 'wp_statistics'); ?></label></li>
1242
-
1243
- <p id="ser_option" style="<?php if(!get_option('ser_widget')) { echo "display: none;"; } ?>">
1244
- <?php _e('Select type of search engine', 'wp_statistics'); ?>:<br />
1245
- <input type="radio" id="select_google" name="select_se" value="google" <?php checked('google', get_option('select_se')); ?>/>
1246
- <label for="select_google"><?php _e('Google', 'wp_statistics'); ?></label>
1247
-
1248
- <input type="radio" id="select_yahoo" name="select_se" value="yahoo" <?php checked('yahoo', get_option('select_se')); ?>/>
1249
- <label for="select_yahoo"><?php _e('Yahoo!', 'wp_statistics'); ?></label>
1250
-
1251
- <input type="radio" id="select_bing" name="select_se" value="bing" <?php checked('bing', get_option('select_se')); ?>/>
1252
- <label for="select_bing"><?php _e('Bing', 'wp_statistics'); ?></label>
1253
-
1254
- <input type="radio" id="select_all" name="select_se" value="all" <?php checked('all', get_option('select_se')); ?>/>
1255
- <label for="select_all"><?php _e('All', 'wp_statistics'); ?></label>
1256
- </p>
1257
-
1258
- <li><input type="checkbox" id="tp_widget" name="tp_widget" <?php checked('on', get_option('tp_widget')); ?>/>
1259
- <label for="tp_widget"><?php _e('Total Posts', 'wp_statistics'); ?></label></li>
1260
-
1261
- <li><input type="checkbox" id="tpg_widget" name="tpg_widget" <?php checked('on', get_option('tpg_widget')); ?>/>
1262
- <label for="tpg_widget"><?php _e('Total Pages', 'wp_statistics'); ?></label></li>
1263
-
1264
- <li><input type="checkbox" id="tc_widget" name="tc_widget" <?php checked('on', get_option('tc_widget')); ?>/>
1265
- <label for="tc_widget"><?php _e('Total Comments', 'wp_statistics'); ?></label></li>
1266
-
1267
- <li><input type="checkbox" id="ts_widget" name="ts_widget" <?php checked('on', get_option('ts_widget')); ?>/>
1268
- <label for="ts_widget"><?php _e('Total Spams', 'wp_statistics'); ?></label></li>
1269
-
1270
- <li><input type="checkbox" id="tu_widget" name="tu_widget" <?php checked('on', get_option('tu_widget')); ?>/>
1271
- <label for="tu_widget"><?php _e('Total Users', 'wp_statistics'); ?></label></li>
1272
-
1273
- <li><input type="checkbox" id="ap_widget" name="ap_widget" <?php checked('on', get_option('ap_widget')); ?>/>
1274
- <label for="ap_widget"><?php _e('Average Posts', 'wp_statistics'); ?></label></li>
1275
-
1276
- <li><input type="checkbox" id="ac_widget" name="ac_widget" <?php checked('on', get_option('ac_widget')); ?>/>
1277
- <label for="ac_widget"><?php _e('Average Comments', 'wp_statistics'); ?></label></li>
1278
-
1279
- <li><input type="checkbox" id="au_widget" name="au_widget" <?php checked('on', get_option('au_widget')); ?>/>
1280
- <label for="au_widget"><?php _e('Average Users', 'wp_statistics'); ?></label></li>
1281
-
1282
- <li><input type="checkbox" id="lpd_widget" class="lpd_widget" name="lpd_widget" <?php checked('on', get_option('lpd_widget')); ?>/>
1283
- <label for="lpd_widget"><?php _e('Last Post Date', 'wp_statistics'); ?></label></li>
1284
-
1285
- <p id="lpd_option" style="<?php if(!get_option('lpd_widget')) { echo "display: none;"; } ?>">
1286
- <?php _e('Type date for last update', 'wp_statistics'); ?>:<br />
1287
- <input id="wp_statistics_widget_endate" name="select_lps" value="english" type="radio" <?php checked( 'english', get_option('select_lps') ); ?>/>
1288
- <label for="wp_statistics_widget_endate"><?php _e('English', 'wp_statistics'); ?></label>
1289
-
1290
- <input id="wp_statistics_widget_jdate" name="select_lps" value="farsi" type="radio" <?php checked( 'farsi', get_option('select_lps') ); ?>/>
1291
- <label for="wp_statistics_widget_jdate"><?php _e('Persian', 'wp_statistics'); ?></label>
1292
- </p>
1293
- </ul>
1294
-
1295
- <input type="hidden" id="wp_statistics_control_widget_submit" name="wp_statistics_control_widget_submit" value="1" />
1296
- <?php }
1297
 
1298
  add_shortcode('useronline', 'wp_statistics_useronline');
1299
  add_shortcode('today', 'wp_statistics_today');
@@ -1316,11 +1079,4 @@ function wp_statistics_show_widget($args)
1316
  add_shortcode('alexaRank', 'wp_statistics_alexaRank');
1317
 
1318
  add_filter('widget_text', 'do_shortcode');
1319
-
1320
- function wp_statistics_widget()
1321
- {
1322
- wp_register_sidebar_widget('wp_statistics_widget', __('WP-Statistics', 'wp_statistics'), 'wp_statistics_show_widget', array(
1323
- 'description' => __('Show site stats in sidebar', 'wp_statistics')));
1324
- wp_register_widget_control('wp_statistics_widget', __('WP-Statistics', 'wp_statistics'), 'wp_statistics_control_widget');
1325
- }
1326
  ?>
3
  Plugin Name: WP-Statistics
4
  Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
5
  Description: Summary statistics of blog.
6
+ Version: 2.2.7
7
  Author: Mostafa Soufi
8
  Author URI: http://iran98.org/
9
  License: GPL2
10
  */
11
+ include_once("widget.php");
12
 
13
  load_plugin_textdomain('wp_statistics','wp-content/plugins/wp-statistics/langs');
14
 
215
  }
216
  }
217
 
218
+ if(get_option('daily_referer'))
219
  {
220
+ if( ($get_dates_row->last_counter) == $get_now )
221
+ {
222
+ if(strstr($get_referred, 'google.com'))
223
+ {
224
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET google = google+1");
225
+ } else if(strstr($get_referred, 'yahoo.com')) {
226
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET yahoo = yahoo+1");
227
+ } else if(strstr($get_referred, 'bing.com')) {
228
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET bing = bing+1");
229
+ }
230
+ } else {
231
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET google = 0");
232
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET yahoo = 0");
233
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET bing = 0");
234
+ }
235
+ } else {
236
  if(strstr($get_referred, 'google.com'))
237
  {
238
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET google = google+1");
241
  } else if(strstr($get_referred, 'bing.com')) {
242
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET bing = bing+1");
243
  }
 
 
 
 
244
  }
245
 
246
  $get_items_statistics = get_option('items_statistics');
424
  <span id="show_totalvisit_live"></span>
425
  <?php }
426
 
427
+ function wp_statistics_countposts()
428
  {
429
+ $count_posts = wp_count_posts('post');
430
+ return $count_posts->publish;
431
  }
432
 
433
  function wp_statistics_countpages()
528
  {
529
  if (function_exists('add_options_page'))
530
  {
531
+ add_menu_page(__('Statistics', 'wp_statistics'), __('Statistics', 'wp_statistics'), 'manage_options', 'wp-statistics', 'wp_statistics_config_permission', plugin_dir_url( __FILE__ ).'/images/icon.png');
532
+ add_submenu_page( 'wp-statistics', __('Settings', 'wp_statistics'), __('Settings', 'wp_statistics'), 'manage_options', 'wp-statistics', 'wp_statistics_config_permission');
533
  add_submenu_page( 'wp-statistics', __('Stats Log', 'wp_statistics'), __('Stats Log', 'wp_statistics'), 'manage_options', 'wp-statistics/stats', 'wp_statistics_stats_permission');
534
  add_submenu_page( 'wp-statistics', __('Users Online', 'wp_statistics'), __('Users Online', 'wp_statistics'), 'manage_options', 'wp-statistics/online', 'wp_statistics_online_permission');
535
  }
550
  register_setting('wp_statistics_options', 'time_useronline_s');
551
  register_setting('wp_statistics_options', 'items_statistics');
552
  register_setting('wp_statistics_options', 'coefficient_visitor');
 
553
  register_setting('wp_statistics_options', 'pagerank_google_url');
554
  register_setting('wp_statistics_options', 'pagerank_alexa_url');
555
  }
556
  }?>
557
 
558
+ <script type="text/javascript">
559
+ jQuery(document).ready(function(){
560
+ jQuery("span#increase_total_visit").click(function()
561
+ {
562
+ var total_increase_value = jQuery("input#increase_total_visit").val();
563
+ jQuery("input#increase_total_visit").attr("disabled", "disabled");
564
+ jQuery("span#increase_total_visit").attr("disabled", "disabled");
565
+ jQuery("div#result_increase_total_visit").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
566
+ jQuery.post("<?php echo plugin_dir_url( __FILE__ );?>/actions.php",{increase_value:total_increase_value},function(result){
567
+ jQuery("div#result_increase_total_visit").html(result);
568
+ jQuery("input#increase_total_visit").removeAttr("disabled");
569
+ jQuery("span#increase_total_visit").removeAttr("disabled");
570
+ });
571
  });
 
572
 
573
+ jQuery("span#reduction_total_visit").click(function()
574
+ {
575
+ var total_reduction_value = jQuery("input#reduction_total_visit").val();
576
+ jQuery("input#reduction_total_visit").attr("disabled", "disabled");
577
+ jQuery("span#reduction_total_visit").attr("disabled", "disabled");
578
+ jQuery("div#result_reduction_total_visit").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
579
+ jQuery.post("<?php echo plugin_dir_url( __FILE__ );?>/actions.php",{reduction_value:total_reduction_value},function(result){
580
+ jQuery("div#result_reduction_total_visit").html(result);
581
+ jQuery("input#reduction_total_visit").removeAttr("disabled");
582
+ jQuery("span#reduction_total_visit").removeAttr("disabled");
583
+ });
584
  });
 
585
 
586
+ jQuery("span#show_function").click(function()
 
 
 
587
  {
588
+ jQuery("div#report_problem").slideUp(1000);
589
+ jQuery("ul#functions_list").slideDown(1000, function()
590
+ {
591
+ jQuery("ul#functions_list code").fadeIn(1000);
592
+ });
593
  });
594
+
595
+ jQuery("span#hide_function").click(function()
596
+ {
597
+ jQuery("ul#functions_list").slideUp(1000);
598
+ });
 
 
 
 
 
 
599
 
600
+ jQuery("span#hide_report").click(function()
601
+ {
602
+ jQuery("div#report_problem").slideUp(1000);
603
+ });
 
604
 
605
+ jQuery("span#report_problem").click(function()
606
+ {
607
+ jQuery("ul#functions_list").slideUp(1000);
608
+ jQuery("div#report_problem").slideDown(1000);
609
+ });
 
 
610
 
611
+ jQuery("span#send_report").click(function()
612
+ {
613
+ var your_name = jQuery("input#your_name").val();
614
+ var your_report = jQuery("textarea#your_report").val();
615
+ jQuery("div#result_problem").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
616
+ jQuery("div#result_problem").load("<?php echo plugin_dir_url( __FILE__ );?>/report_problem.php", {y_name:your_name, d_report:your_report});
617
+ });
618
 
619
+ jQuery("span#uninstall").click(function()
620
  {
621
+ var uninstall = confirm("<?php _e('Are you sure?', 'wp_statistics'); ?>");
622
+
623
+ if(uninstall)
624
+ {
625
+ jQuery("div#result_uninstall").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
626
+ jQuery("div#result_uninstall").load('<?php echo plugin_dir_url(__FILE__); ?>/uninstall.php');
627
+ }
628
+ });
629
  });
630
+ </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
631
 
632
+ <div class="wrap">
633
+ <h2><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/images/icon_big.png"/> <?php _e('Configuration', 'wp_statistics'); ?></h2>
634
+ <table class="form-table">
635
+ <form method="post" action="options.php">
636
+ <?php wp_nonce_field('update-options');?>
637
+ <tr style="background-color:#EEEEEE; border:1px solid #DDDDDD;">
638
+ <td width="250"><?php _e('Enable Statistics', 'wp_statistics'); ?>:</td>
639
+ <td width="200">
640
+ <?php $get_enable_stats = get_option('enable_stats'); ?>
641
+ <input type="checkbox" name="enable_stats" id="enable_stats" <?php echo $get_enable_stats==true? "checked='checked'" : '';?>/>
642
+ <label for="enable_stats"><?php _e('Yes', 'wp_statistics'); ?></label>
643
+ </td>
644
+ <td>
645
+ <?php if($get_enable_stats) { ?>
646
+ <span style="font-size:11px; color:#009900;">(<?php _e('Statistics are enabled.', 'wp_statistics'); ?>)</span>
647
+ <?php } else { ?>
648
+ <span style="font-size:11px; color:#FF0000;">(<?php _e('Statistics are disabled!', 'wp_statistics'); ?>)</span>
649
+ <?php } ?>
650
+ </td>
651
+ </tr>
652
+
653
+ <tr><th><h3><?php _e('General configuration', 'wp_statistics'); ?></h4></th></tr>
654
+
655
+ <tr>
656
+ <td><?php _e('Show decimals number', 'wp_statistics'); ?>:</td>
657
+ <td>
658
+ <?php $get_enable_stats = get_option('enable_decimals'); ?>
659
+ <input type="checkbox" name="enable_decimals" id="enable_decimals" <?php echo $get_enable_stats==true? "checked='checked'" : '';?>/>
660
+ <label for="enable_decimals"><?php _e('Yes', 'wp_statistics'); ?></label>
661
+ </td>
662
+ <td><span style="font-size:11px;">(<?php _e('Show number stats with decimal. For examle: 3,500', 'wp_statistics'); ?>)</span></td>
663
+ </tr>
664
+
665
+ <tr>
666
+ <td><?php _e('Show stats in menu bar', 'wp_statistics'); ?>:</td>
667
+ <td>
668
+ <?php $get_enable_wps_adminbar = get_option('enable_wps_adminbar'); ?>
669
+ <input type="checkbox" name="enable_wps_adminbar" id="enable_wps_adminbar" <?php echo $get_enable_wps_adminbar==true? "checked='checked'" : '';?>/>
670
+ <label for="enable_wps_adminbar"><?php _e('Yes', 'wp_statistics'); ?></label>
671
+ </td>
672
+ <td><span style="font-size:11px;">(<?php _e('Show stats in admin menu bar', 'wp_statistics'); ?>)</span></td>
673
+ </tr>
674
+
675
+ <tr>
676
+ <td><?php _e('Daily referer of search engines', 'wp_statistics'); ?>:</td>
677
+ <td>
678
+ <input type="checkbox" name="daily_referer" id="daily_referer" <?php echo get_option('daily_referer') == true ? "checked='checked'" : '';?>/>
679
+ <label for="daily_referer"><?php _e('Yes', 'wp_statistics'); ?></label>
680
+ </td>
681
+ <td><span style="font-size:11px;">(<?php _e('Can be calculated daily or total search engines', 'wp_statistics'); ?>)</span></td>
682
+ </tr>
683
+
684
+ <tr>
685
+ <td><?php _e('Check for online users every', 'wp_statistics'); ?>:</td>
686
+ <td>
687
+ <input type="text" name="time_useronline_s" style="direction:ltr; width:60px" maxlength="3" value="<?php echo get_option('time_useronline_s'); ?>"/>
688
+ <span style="font-size:10px;"><?php _e('Second', 'wp_statistics'); ?></span>
689
+ </td>
690
+ <td><span style="font-size:11px;">(<?php _e('Time for the check accurate online user in the site. Default: 60 Second', 'wp_statistics'); ?>)</span></td>
691
+ </tr>
692
+
693
+ <tr>
694
+ <td><?php _e('Increase value of the total hits by', 'wp_statistics'); ?>:</td>
695
+ <td>
696
+ <input type="text" name="increase_total_visit" id="increase_total_visit" style="direction:ltr; width:100px" maxlength="10"/>
697
+ <span class="button" id="increase_total_visit" style="width:50px;"><?php _e('Done', 'wp_statistics'); ?></span>
698
+ <div id="result_increase_total_visit" style="font-size:11px;"></div>
699
+ </td>
700
+ <td><span style="font-size:11px;">(<?php _e('Your total visit sum with this value', 'wp_statistics'); ?>)</span></td>
701
+ </tr>
702
+
703
+ <tr>
704
+ <td><?php _e('Reduce value of the total hits by', 'wp_statistics'); ?>:</td>
705
+ <td>
706
+ <input type="text" name="reduction_total_visit" id="reduction_total_visit" style="direction:ltr; width:100px" maxlength="10"/>
707
+ <span class="button" id="reduction_total_visit" style="width:50px;"><?php _e('Done', 'wp_statistics'); ?></span>
708
+ <div id="result_reduction_total_visit" style="font-size:11px;"></div>
709
+ </td>
710
+ <td><span style="font-size:11px;">(<?php _e('Your total visit minus with this value', 'wp_statistics'); ?>)</span></td>
711
+ </tr>
712
+
713
+ <tr>
714
+ <td><?php _e('Number item for show Statistics', 'wp_statistics'); ?>:</td>
715
+ <td>
716
+ <input type="text" name="items_statistics" style="direction:ltr; width:70px" maxlength="3" value="<?php echo get_option('items_statistics'); ?>"/>
717
+ <span style="font-size:10px;"><?php _e('Default 5', 'wp_statistics'); ?></span>
718
+ </td>
719
+ <td><span style="font-size:11px;">(<?php _e('Number for submit item in Database and show that', 'wp_statistics'); ?>)</span></td>
720
+ </tr>
721
+
722
+ <tr>
723
+ <td><?php _e('Coefficient per visitor', 'wp_statistics'); ?>:</td>
724
+ <td>
725
+ <input type="text" name="coefficient_visitor" style="direction:ltr; width:70px" maxlength="3" value="<?php echo get_option('coefficient_visitor'); ?>"/>
726
+ <span style="font-size:10px;"><?php _e('Default 1', 'wp_statistics'); ?></span>
727
+ </td>
728
+ <td><span style="font-size:11px;">(<?php _e('For each visitor to account for several hits.', 'wp_statistics'); ?>)</span></td>
729
+ </tr>
730
+
731
+ <tr><th><h3><?php _e('Live Statistics configuration', 'wp_statistics'); ?></h4></th></tr>
732
+
733
+ <tr>
734
+ <td><?php _e('Refresh Stats every', 'wp_statistics'); ?>:</td>
735
+ <td>
736
+ <input type="text" name="database_checktime" style="direction:ltr; width:60px" maxlength="3" value="<?php echo get_option('database_checktime'); ?>"/>
737
+ <span style="font-size:10px;"><?php _e('Second(s)', 'wp_statistics'); ?></span>
738
+ </td>
739
+ <td>
740
+ <span style="font-size:11px; color:#FF0000;"><?php _e('Recommended', 'wp_statistics'); ?></span>
741
+ <span style="font-size:11px;">(<?php _e('To reduce pressure on the server, this defaults to 10 sec', 'wp_statistics'); ?>.)</span>
742
+ </td>
743
+ </tr>
744
+
745
+ <tr><th><h3><?php _e('Pagerank configuration', 'wp_statistics'); ?></h4></th></tr>
746
+
747
+ <tr>
748
+ <td><?php _e('Your url for Google pagerank check', 'wp_statistics'); ?>:</td>
749
+ <td>
750
+ <input type="text" name="pagerank_google_url" style="direction:ltr; width:200px" value="<?php echo get_option('pagerank_google_url'); ?>"/>
751
+ </td>
752
+ <td>
753
+ <span style="font-size:11px;">(<?php _e('If empty. you website url is used', 'wp_statistics'); ?>)</span>
754
+ </td>
755
+ </tr>
756
+
757
+ <tr>
758
+ <td><?php _e('Your url for Alexa pagerank check', 'wp_statistics'); ?>:</td>
759
+ <td>
760
+ <input type="text" name="pagerank_alexa_url" style="direction:ltr; width:200px" value="<?php echo get_option('pagerank_alexa_url'); ?>"/>
761
+ </td>
762
+ <td>
763
+ <span style="font-size:11px;">(<?php _e('If empty. you website url is used', 'wp_statistics'); ?>)</span>
764
+ </td>
765
+ </tr>
766
+
767
+ <tr>
768
+ <td>
769
+ <p class="submit">
770
+ <input type="hidden" name="action" value="update" />
771
+ <input type="hidden" name="page_options" value="enable_stats,enable_decimals,enable_wps_adminbar,daily_referer,time_useronline_s,items_statistics,coefficient_visitor,database_checktime,pagerank_google_url,pagerank_alexa_url" />
772
+ <input type="submit" class="button-primary" name="Submit" value="<?php _e('Update', 'wp_statistics'); ?>" />
773
+ </p>
774
+ </td>
775
+ </tr>
776
+
777
+ <tr>
778
  <th colspan="3">
779
+ <?php _e('This plugin created by', 'wp_statistics'); ?> <a href="http://profiles.wordpress.org/mostafa.s1990/">Mostafa Soufi</a> <?php _e('from', 'wp_statistics'); ?> <a href="http://www.webstudio.ir">Web Studio</a> & <a href="http://wpbazar.com">WPBazar</a> <?php _e('group', 'wp_statistics'); ?>.
780
+
781
+ <h3><?php _e('Plugin translators', 'wp_statistics'); ?></h3>
782
+ <ul>
783
+
784
+ <ul>
785
+ <li><?php _e('Language', 'wp_statistics'); ?> Portuguese <?php _e('by', 'wp_statistics'); ?><a a href="http://www.musicalmente.info/"> musicalmente</a></li>
786
+ <li><?php _e('Language', 'wp_statistics'); ?> Romanian <?php _e('by', 'wp_statistics'); ?> <a href="http://www.nobelcom.com/">Luke Tyler</a></li>
787
+ <li><?php _e('Language', 'wp_statistics'); ?> French <?php _e('by', 'wp_statistics'); ?> <a href="mailto:gnanice@gmail.com">Anice Gnampa</a></li>
788
+ <li><?php _e('Language', 'wp_statistics'); ?> Russian <?php _e('by', 'wp_statistics'); ?> <a href="http://www.iflexion.com/">Igor Dubilej</a></li>
789
+ <li><?php _e('Language', 'wp_statistics'); ?> Spanish <?php _e('by', 'wp_statistics'); ?> <a href="mailto:joanfusan@gmail.com">jose</a></li>
790
+ <li><?php _e('Language', 'wp_statistics'); ?> Arabic <?php _e('by', 'wp_statistics'); ?> <a href="http://www.facebook.com/aboHatim">Hammad Shammari</a></li>
791
+ <li><?php _e('Language', 'wp_statistics'); ?> German <?php _e('by', 'wp_statistics'); ?> <a href="http://www.andreasmartin.com/">Andreas Martin</a></li>
792
+ </ul>
793
+ <?php _e('for translate language files. please send files for', 'wp_statistics'); ?> <code>mst404@gmail.com</code>
794
+
795
+ <p style="padding-top: 5px;">
796
+ <span class="button" id="show_function"><?php _e('Show Functions', 'wp_statistics'); ?></span>
797
+ <span class="button" id="report_problem"><?php _e('Report Problem', 'wp_statistics'); ?></span>
798
+ </p>
799
+
800
+ <style>
801
+ a{text-decoration: none}
802
+ ul#functions_list code{border-radius:5px; padding:5px; display:none; width:400px; text-align:left; float:left; direction:ltr;}
803
+ ul#functions_list{list-style-type: decimal; margin: 20px; display:none;}
804
+ ul#functions_list li{line-height: 25px; width: 200px;}
805
+ div#report_problem{display: none;}
806
+ </style>
807
+ <ul id="functions_list">
808
+ <table>
809
+ <tr>
810
+ <td><?php _e('User Online Live', 'wp_statistics'); ?></td>
811
+ <td><code><?php highlight_string('<?php echo wp_statistics_useronline_live(); ?>'); ?></code></td>
812
+ </tr>
813
+ <tr>
814
+ <td><?php _e('Total Visit Live', 'wp_statistics'); ?></td>
815
+ <td><code><?php highlight_string('<?php echo wp_statistics_total_live(); ?>'); ?></code></td>
816
+ </tr>
817
+ <tr>
818
+ <td><?php _e('User Online', 'wp_statistics'); ?></td>
819
+ <td><code><?php highlight_string('<?php echo wp_statistics_useronline(); ?>'); ?></code></td>
820
+ </tr>
821
+ <tr>
822
+ <td><?php _e('Today Visit', 'wp_statistics'); ?></td>
823
+ <td><code><?php highlight_string('<?php echo wp_statistics_today(); ?>'); ?></code></td>
824
+ </tr>
825
+ <tr>
826
+ <td><?php _e('Yesterday visit', 'wp_statistics'); ?></td>
827
+ <td><code><?php highlight_string('<?php echo wp_statistics_yesterday(); ?>'); ?></code></td>
828
+ </tr>
829
+ <tr>
830
+ <td><?php _e('Week Visit', 'wp_statistics'); ?></td>
831
+ <td><code><?php highlight_string('<?php echo wp_statistics_week(); ?>'); ?></code></td>
832
+ </tr>
833
+ <tr>
834
+ <td><?php _e('Month Visit', 'wp_statistics'); ?></td>
835
+ <td><code><?php highlight_string('<?php echo wp_statistics_month(); ?>'); ?></code></td>
836
+ </tr>
837
+ <tr>
838
+ <td><?php _e('Years Visit', 'wp_statistics'); ?></td>
839
+ <td><code><?php highlight_string('<?php echo wp_statistics_year(); ?>'); ?></code></td>
840
+ </tr>
841
+ <tr>
842
+ <td><?php _e('Total Visit', 'wp_statistics'); ?></td>
843
+ <td><code><?php highlight_string('<?php echo wp_statistics_total(); ?>'); ?></code></td>
844
+ </tr>
845
+ <tr>
846
+ <td><?php _e('Search Engine reffered', 'wp_statistics'); ?></td>
847
+ <td><code><?php highlight_string('<?php echo wp_statistics_searchengine(); ?>'); ?></code></td>
848
+ </tr>
849
+ <tr>
850
+ <td><?php _e('Total Posts', 'wp_statistics'); ?></td>
851
+ <td><code><?php highlight_string('<?php echo wp_statistics_countposts(); ?>'); ?></code></td>
852
+ </tr>
853
+ <tr>
854
+ <td><?php _e('Total Pages', 'wp_statistics'); ?></td>
855
+ <td><code><?php highlight_string('<?php echo wp_statistics_countpages(); ?>'); ?></code></td>
856
+ </tr>
857
+ <tr>
858
+ <td><?php _e('Total Comments', 'wp_statistics'); ?></td>
859
+ <td><code><?php highlight_string('<?php echo wp_statistics_countcomment(); ?>'); ?></code></td>
860
+ </tr>
861
+ <tr>
862
+ <td><?php _e('Total Spams', 'wp_statistics'); ?></td>
863
+ <td><code><?php highlight_string('<?php echo wp_statistics_countspam(); ?>'); ?></code></td>
864
+ </tr>
865
+ <tr>
866
+ <td><?php _e('Total Users', 'wp_statistics'); ?></td>
867
+ <td><code><?php highlight_string('<?php echo wp_statistics_countusers(); ?>'); ?></code></td>
868
+ </tr>
869
+ <tr>
870
+ <td><?php _e('Last Post Date', 'wp_statistics'); ?></td>
871
+ <td><code><?php highlight_string('<?php echo wp_statistics_lastpostdate(); ?>'); ?></code></td>
872
+ </tr>
873
+ <tr>
874
+ <td><?php _e('Average Posts', 'wp_statistics'); ?></td>
875
+ <td><code><?php highlight_string('<?php echo wp_statistics_average_post(); ?>'); ?></code></td>
876
+ </tr>
877
+ <tr>
878
+ <td><?php _e('Average Comments', 'wp_statistics'); ?></td>
879
+ <td><code><?php highlight_string('<?php echo wp_statistics_average_comment(); ?>'); ?></code></td>
880
+ </tr>
881
+ <tr>
882
+ <td><?php _e('Average Users', 'wp_statistics'); ?></td>
883
+ <td><code><?php highlight_string('<?php echo wp_statistics_average_registeruser(); ?>'); ?></code></td>
884
+ </tr>
885
+ <tr>
886
+ <td><?php _e('Total Feedburner Subscribe', 'wp_statistics'); ?></td>
887
+ <td><code><?php highlight_string('<?php echo wp_statistics_countsubscrib("feedburneraddress"); ?>'); ?></code></td>
888
+ </tr>
889
+ <tr>
890
+ <td><?php _e('Google Pagerank', 'wp_statistics'); ?></td>
891
+ <td><code><?php highlight_string('<?php echo wp_statistics_google_page_rank(); ?>'); ?></code></td>
892
+ </tr>
893
+ <tr>
894
+ <td><?php _e('Alexa Pagerank', 'wp_statistics'); ?></td>
895
+ <td><code><?php highlight_string('<?php echo wp_statistics_alexaRank(); ?>'); ?></code></td>
896
+ </tr>
897
+ </table>
898
+ <br /><span class="button" id="hide_function"><?php _e('Hide', 'wp_statistics'); ?></span>
899
+ </ul>
900
+
901
+ <div id="report_problem">
902
+ <p><?php _e('Your Name', 'wp_statistics'); ?>:<br /><input type="text" name="your_name" id="your_name"/></p>
903
+
904
+ <p><?php _e('Description Problem', 'wp_statistics'); ?>:<br /><textarea name="your_report" id="your_report"/></textarea></p>
905
+ <div id="result_problem"></div>
906
+ <br />
907
+ <span class="button" id="send_report"><?php _e('Send Problem', 'wp_statistics'); ?></span>
908
+ <span class="button" id="hide_report"><?php _e('Hide', 'wp_statistics'); ?></span>
909
+ </div>
910
  </th>
911
+ </tr>
912
+
913
+ <tr>
914
+ <th>
915
+ <h3><?php _e('Unistall plugin', 'wp_statistics'); ?></h4>
916
+ </th>
917
+ </tr>
918
+
919
+ <tr>
920
+ <th colspan="3">
921
+ <?php _e('Delete all data, including tables and plugin options', 'wp_statistics'); ?>
922
+ <span class="button" id="uninstall"><?php _e('Uninstall', 'wp_statistics'); ?></span>
923
+ <div id="result_uninstall"></div>
924
+ </th>
925
+ </tr>
926
+ </form>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
927
  </table>
928
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
929
  <?php
930
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
931
 
932
+ function wp_statistics_stats_permission()
933
+ {
934
+ if (!current_user_can('manage_options'))
935
  {
936
+ wp_die( __('You do not have sufficient permissions to access this page.', 'wp_statistics') );
 
 
 
937
  }
938
 
939
+ ?>
940
+ <div class="wrap">
941
+ <h2><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/images/icon_big.png"/> <?php _e('Stats weblog', 'wp_statistics'); ?></h2>
942
+ <table class="widefat fixed" cellspacing="0">
943
+ <thead>
944
+ <tr>
945
+ <th id="cb" scope="col" class="manage-column column-cb check-column"></th>
946
+ <th scope="col" class="manage-column column-name" width="5%"><?php _e('No', 'wp_statistics'); ?></th>
947
+ <th scope="col" class="manage-column column-name" width="10%"><?php _e('IP', 'wp_statistics'); ?></th>
948
+ <th scope="col" class="manage-column column-name" width="10%"><?php _e('Time', 'wp_statistics'); ?></th>
949
+ <th scope="col" class="manage-column column-name" width="40%"><?php _e('Referred', 'wp_statistics'); ?></th>
950
+ <th scope="col" class="manage-column column-name" width="30%"><?php _e('Agent', 'wp_statistics'); ?></th>
951
+ </tr>
952
+ </thead>
953
+
954
+ <tbody>
955
+ <?php
956
+ global $wpdb, $table_prefix;
957
+ $get_result = $wpdb->get_results("SELECT * FROM {$table_prefix}statistics_reffered");
958
+
959
+ if(count($get_result ) > 0)
960
+ {
961
+ foreach($get_result as $gets)
962
+ {
963
+ $i++;
964
+ ?>
965
+ <tr class="<?php echo $i % 2 == 0 ? 'alternate':'author-self'; ?>" valign="middle" id="link-2">
966
+ <th class="check-column" scope="row"></th>
967
+ <td class="column-name"><?php echo $i; ?></td>
968
+ <td class="column-name"><?php echo $gets->ip; ?></td>
969
+ <td class="column-name"><?php echo $gets->time; ?></td>
970
+ <td class="column-name"><a href="<?php echo $gets->referred; ?>" target="_blank"><?php echo $gets->referred; ?></a></td>
971
+ <td class="column-name"><?php echo $gets->agent; ?></td>
972
+ </tr>
973
+ <?php
974
+ }
975
+ } else { ?>
976
+ <tr>
977
+ <td colspan="6"><?php _e('Not Found!', 'wp_statistics'); ?></td>
978
+ </tr>
979
+ <?php } ?>
980
+ </tbody>
981
+
982
+ <tfoot>
983
+ <tr>
984
+ <th id="cb" scope="col" class="manage-column column-cb check-column"></th>
985
+ <th scope="col" class="manage-column column-name" width="5%"><?php _e('No', 'wp_statistics'); ?></th>
986
+ <th scope="col" class="manage-column column-name" width="10%"><?php _e('IP', 'wp_statistics'); ?></th>
987
+ <th scope="col" class="manage-column column-name" width="10%"><?php _e('Time', 'wp_statistics'); ?></th>
988
+ <th scope="col" class="manage-column column-name" width="40%"><?php _e('Referred', 'wp_statistics'); ?></th>
989
+ <th scope="col" class="manage-column column-name" width="30%"><?php _e('Agent', 'wp_statistics'); ?></th>
990
+ </tr>
991
+ </tfoot>
992
+ </table>
993
+ </div>
994
+ <?php
995
+ }
996
 
997
+ function wp_statistics_online_permission()
998
  {
999
+ if (!current_user_can('manage_options'))
1000
  {
1001
+ wp_die( __('You do not have sufficient permissions to access this page.', 'wp_statistics') );
1002
+ }
1003
+ ?>
1004
+ <div class="wrap">
1005
+ <h2><img src="<?php echo plugin_dir_url( __FILE__ ); ?>/images/icon_big.png"/> <?php _e('User Online', 'wp_statistics'); ?></h2>
1006
+ <table class="widefat fixed" cellspacing="0">
1007
+ <thead>
1008
+ <tr>
1009
+ <th id="cb" scope="col" class="manage-column column-cb check-column"></th>
1010
+ <th scope="col" class="manage-column column-name" width="5%"><?php _e('No', 'wp_statistics'); ?></th>
1011
+ <th scope="col" class="manage-column column-name" width="10%"><?php _e('IP', 'wp_statistics'); ?></th>
1012
+ <th scope="col" class="manage-column column-name" width="10%"><?php _e('Time', 'wp_statistics'); ?></th>
1013
+ <th scope="col" class="manage-column column-name" width="40%"><?php _e('Referred', 'wp_statistics'); ?></th>
1014
+ <th scope="col" class="manage-column column-name" width="30%"><?php _e('Agent', 'wp_statistics'); ?></th>
1015
+ </tr>
1016
+ </thead>
1017
+
1018
+ <tbody>
1019
+ <?php
1020
+ global $wpdb, $table_prefix;
1021
+ $get_result = $wpdb->get_results("SELECT * FROM {$table_prefix}statistics_useronline");
1022
+
1023
+ if(count($get_result ) > 0)
1024
+ {
1025
+ foreach($get_result as $gets)
1026
+ {
1027
+ $i++;
1028
+ ?>
1029
+ <tr class="<?php echo $i % 2 == 0 ? 'alternate':'author-self'; ?>" valign="middle" id="link-2">
1030
+ <th class="check-column" scope="row"></th>
1031
+ <td class="column-name"><?php echo $i; ?></td>
1032
+ <td class="column-name"><?php echo $gets->ip; ?></td>
1033
+ <td class="column-name"><?php echo $gets->time; ?></td>
1034
+ <td class="column-name"><a href="<?php echo $gets->referred; ?>" target="_blank"><?php echo $gets->referred; ?></a></td>
1035
+ <td class="column-name"><?php echo $gets->agent; ?></td>
1036
+ </tr>
1037
+ <?php
1038
+ }
1039
+ } else { ?>
1040
+ <tr>
1041
+ <td colspan="6"><?php _e('Not Found!', 'wp_statistics'); ?></td>
1042
+ </tr>
1043
+ <?php } ?>
1044
+ </tbody>
1045
+
1046
+ <tfoot>
1047
+ <tr>
1048
+ <th id="cb" scope="col" class="manage-column column-cb check-column"></th>
1049
+ <th scope="col" class="manage-column column-name" width="5%"><?php _e('No', 'wp_statistics'); ?></th>
1050
+ <th scope="col" class="manage-column column-name" width="10%"><?php _e('IP', 'wp_statistics'); ?></th>
1051
+ <th scope="col" class="manage-column column-name" width="10%"><?php _e('Time', 'wp_statistics'); ?></th>
1052
+ <th scope="col" class="manage-column column-name" width="40%"><?php _e('Referred', 'wp_statistics'); ?></th>
1053
+ <th scope="col" class="manage-column column-name" width="30%"><?php _e('Agent', 'wp_statistics'); ?></th>
1054
+ </tr>
1055
+ </tfoot>
1056
+ </table>
1057
+ </div>
1058
+ <?php
1059
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1060
 
1061
  add_shortcode('useronline', 'wp_statistics_useronline');
1062
  add_shortcode('today', 'wp_statistics_today');
1079
  add_shortcode('alexaRank', 'wp_statistics_alexaRank');
1080
 
1081
  add_filter('widget_text', 'do_shortcode');
 
 
 
 
 
 
 
1082
  ?>