WP Statistics - Version 2.2.5

Version Description

  • The security problem was solved. Please be sure to update!
  • Redundancy in French translation.
  • Add CSS Class for the containing widget. (Thanks Luai Mohammed).
  • Add daily or total search engines in setting page.
  • Using wordpress jQuery in setting page.
Download this release

Release Info

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

Code changes from version 2.2.3 to 2.2.5

actions.php CHANGED
@@ -1,14 +1,30 @@
1
  <?php
2
  require('../../../wp-load.php');
3
- $increase_value = $_REQUEST['increase_value'];
4
- $reduction_value = $_REQUEST['reduction_value'];
5
-
6
- if($increase_value)
7
  {
8
- echo __('Sorry! this feature is for Premium version', 'wp_statistics');
9
- } else if($reduction_value) {
10
- echo __('Sorry! this feature is for Premium version', 'wp_statistics');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  } else {
12
- _e('Please Enter value!', 'wp_statistics');
13
  }
14
  ?>
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,480 +2,663 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-03 19:10+0330\n"
6
- "PO-Revision-Date: 2012-02-03 19:10+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: .\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
 
17
  #: F:\Program
18
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  msgid "Please Enter value!"
20
  msgstr ""
21
 
 
 
 
 
 
 
 
22
  #: F:\Program
23
  #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:20
 
 
 
 
 
24
  msgid "Error! Please Enter all field"
25
  msgstr ""
26
 
27
  #: F:\Program
28
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgid "Are you sure?"
30
  msgstr ""
31
 
32
  #: F:\Program
33
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:546
34
  msgid "Configuration"
35
  msgstr ""
36
 
37
  #: F:\Program
38
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:551
39
  msgid "Enable Statistics"
40
  msgstr ""
41
 
42
  #: F:\Program
43
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:555
44
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:573
45
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:583
 
46
  msgid "Yes"
47
  msgstr ""
48
 
49
  #: F:\Program
50
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:559
51
  msgid "Statistics are enabled."
52
  msgstr ""
53
 
54
  #: F:\Program
55
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:561
56
  msgid "Statistics are disabled!"
57
  msgstr ""
58
 
59
  #: F:\Program
60
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:566
61
  msgid "General configuration"
62
  msgstr ""
63
 
64
  #: F:\Program
65
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:569
66
  msgid "Show decimals number"
67
  msgstr ""
68
 
69
  #: F:\Program
70
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:575
71
  msgid "Show number stats with decimal. For examle: 3,500"
72
  msgstr ""
73
 
74
  #: F:\Program
75
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:579
76
  msgid "Show stats in menu bar"
77
  msgstr ""
78
 
79
  #: F:\Program
80
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:585
81
  msgid "Show stats in admin menu bar"
82
  msgstr ""
83
 
84
  #: F:\Program
85
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:589
86
- msgid "Online user check time"
87
  msgstr ""
88
 
89
  #: F:\Program
90
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
91
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:632
92
- msgid "Each"
 
 
 
 
93
  msgstr ""
94
 
95
  #: F:\Program
96
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:593
97
- msgid "Compute min"
98
  msgstr ""
99
 
100
  #: F:\Program
101
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
102
- msgid "Time for the check accurate online user in the site. Default: 5 Minutes"
103
  msgstr ""
104
 
105
  #: F:\Program
106
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:599
107
- msgid "Increase value of the total hits"
108
  msgstr ""
109
 
110
  #: F:\Program
111
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:602
112
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:612
113
  msgid "Done"
114
  msgstr ""
115
 
116
  #: F:\Program
117
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:605
118
  msgid "Your total visit sum with this value"
119
  msgstr ""
120
 
121
  #: F:\Program
122
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:609
123
- msgid "Reduction value of the total hits"
124
  msgstr ""
125
 
126
  #: F:\Program
127
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:615
128
  msgid "Your total visit minus with this value"
129
  msgstr ""
130
 
131
  #: F:\Program
132
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:619
133
  msgid "Number item for show Statistics"
134
  msgstr ""
135
 
136
  #: F:\Program
137
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:622
138
  msgid "Default 5"
139
  msgstr ""
140
 
141
  #: F:\Program
142
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
143
  msgid "Number for submit item in Database and show that"
144
  msgstr ""
145
 
146
  #: F:\Program
147
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:627
148
- msgid "Live Statistics configuration"
149
  msgstr ""
150
 
151
  #: F:\Program
152
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
153
- msgid "Database check time"
154
  msgstr ""
155
 
156
  #: F:\Program
157
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:634
158
- msgid "Minute updates"
159
  msgstr ""
160
 
161
  #: F:\Program
162
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:637
163
- msgid "Recommended"
164
  msgstr ""
165
 
166
  #: F:\Program
167
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
168
- msgid "Due to pressure on the server, Be set up on time. Default 1 min."
169
  msgstr ""
170
 
171
  #: F:\Program
172
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:642
173
- msgid "Pagerank configuration"
174
  msgstr ""
175
 
176
  #: F:\Program
177
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:645
178
- msgid "Your url for Google pagerank check"
179
  msgstr ""
180
 
181
  #: F:\Program
182
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:650
183
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
184
- msgid "If this input is empty, The website url uses"
185
  msgstr ""
186
 
187
  #: F:\Program
188
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:655
189
- msgid "Your url for Alexa pagerank check"
190
  msgstr ""
191
 
192
  #: F:\Program
193
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:666
194
- msgid "About plugin"
195
  msgstr ""
196
 
197
  #: F:\Program
198
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:667
199
- msgid "Plugin Version"
200
  msgstr ""
201
 
202
  #: F:\Program
203
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:667
204
- msgid "Free!"
205
  msgstr ""
206
 
207
  #: F:\Program
208
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:669
209
- msgid "Get Premium version"
 
210
  msgstr ""
211
 
212
  #: F:\Program
213
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
 
 
 
 
 
 
 
 
 
 
214
  msgid "This plugin created by"
215
  msgstr ""
216
 
217
  #: F:\Program
218
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
219
  msgid "from"
220
  msgstr ""
221
 
222
  #: F:\Program
223
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
224
  msgid "group"
225
  msgstr ""
226
 
227
  #: F:\Program
228
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:678
229
  msgid "Plugin translators"
230
  msgstr ""
231
 
232
  #: F:\Program
233
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:682
234
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:683
235
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
236
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
237
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:686
238
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:687
 
239
  msgid "Language"
240
  msgstr ""
241
 
242
  #: F:\Program
243
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:682
244
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:683
245
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
246
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
247
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:686
248
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:687
 
249
  msgid "by"
250
  msgstr ""
251
 
252
  #: F:\Program
253
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:689
254
  msgid "for translate language files. please send files for"
255
  msgstr ""
256
 
257
  #: F:\Program
258
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:692
259
  msgid "Show Functions"
260
  msgstr ""
261
 
262
  #: F:\Program
263
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:693
264
  msgid "Report Problem"
265
  msgstr ""
266
 
267
  #: F:\Program
268
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
269
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:722
270
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:914
271
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1139
272
- msgid "User Online"
273
- msgstr ""
274
-
275
- #: F:\Program
276
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
277
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1142
278
- msgid "Today Visit"
279
  msgstr ""
280
 
281
  #: F:\Program
282
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:714
283
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1145
284
- msgid "Yesterday visit"
285
  msgstr ""
286
 
287
  #: F:\Program
288
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:718
289
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1148
 
290
  msgid "Week Visit"
291
  msgstr ""
292
 
293
  #: F:\Program
294
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:726
295
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1151
 
296
  msgid "Month Visit"
297
  msgstr ""
298
 
299
  #: F:\Program
300
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:730
301
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1154
 
302
  msgid "Years Visit"
303
  msgstr ""
304
 
305
  #: F:\Program
306
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:734
307
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1157
308
- msgid "Total Visit"
309
- msgstr ""
310
-
311
- #: F:\Program
312
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:738
313
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1160
314
  msgid "Search Engine reffered"
315
  msgstr ""
316
 
317
  #: F:\Program
318
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
319
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1178
 
320
  msgid "Total Posts"
321
  msgstr ""
322
 
323
  #: F:\Program
324
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:746
325
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1181
 
326
  msgid "Total Pages"
327
  msgstr ""
328
 
329
  #: F:\Program
330
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:750
331
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1184
 
332
  msgid "Total Comments"
333
  msgstr ""
334
 
335
  #: F:\Program
336
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:754
337
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1187
 
338
  msgid "Total Spams"
339
  msgstr ""
340
 
341
  #: F:\Program
342
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
343
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1190
 
344
  msgid "Total Users"
345
  msgstr ""
346
 
347
  #: F:\Program
348
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:762
349
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1202
 
350
  msgid "Last Post Date"
351
  msgstr ""
352
 
353
  #: F:\Program
354
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
355
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1193
 
356
  msgid "Average Posts"
357
  msgstr ""
358
 
359
  #: F:\Program
360
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
361
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1196
 
362
  msgid "Average Comments"
363
  msgstr ""
364
 
365
  #: F:\Program
366
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:774
367
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1199
 
368
  msgid "Average Users"
369
  msgstr ""
370
 
371
  #: F:\Program
372
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:778
373
  msgid "Total Feedburner Subscribe"
374
  msgstr ""
375
 
376
  #: F:\Program
377
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:782
378
  msgid "Google Pagerank"
379
  msgstr ""
380
 
381
  #: F:\Program
382
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:786
383
  msgid "Alexa Pagerank"
384
  msgstr ""
385
 
386
  #: F:\Program
387
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:790
388
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:800
389
  msgid "Hide"
390
  msgstr ""
391
 
392
  #: F:\Program
393
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:794
394
  msgid "Your Name"
395
  msgstr ""
396
 
397
  #: F:\Program
398
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
399
  msgid "Description Problem"
400
  msgstr ""
401
 
402
  #: F:\Program
403
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:799
404
  msgid "Send Problem"
405
  msgstr ""
406
 
407
  #: F:\Program
408
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:807
409
  msgid "Unistall plugin"
410
  msgstr ""
411
 
412
  #: F:\Program
413
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:813
414
  msgid "Delete all data, including tables and plugin options"
415
  msgstr ""
416
 
417
  #: F:\Program
418
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:814
419
  msgid "Uninstall"
420
  msgstr ""
421
 
422
  #: F:\Program
423
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:824
424
- msgid "Update"
425
  msgstr ""
426
 
427
  #: F:\Program
428
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:857
429
- msgid "Stats weblog"
 
430
  msgstr ""
431
 
432
  #: F:\Program
433
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  msgid "Name"
435
  msgstr ""
436
 
437
  #: F:\Program
438
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1136
439
  msgid "Items"
440
  msgstr ""
441
 
442
  #: F:\Program
443
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1163
444
  msgid "Select type of search engine"
445
  msgstr ""
446
 
447
  #: F:\Program
448
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1165
449
  msgid "Google"
450
  msgstr ""
451
 
452
  #: F:\Program
453
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1168
454
  msgid "Yahoo!"
455
  msgstr ""
456
 
457
  #: F:\Program
458
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1171
459
  msgid "Bing"
460
  msgstr ""
461
 
462
  #: F:\Program
463
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1174
464
  msgid "All"
465
  msgstr ""
466
 
467
  #: F:\Program
468
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1205
469
  msgid "Type date for last update"
470
  msgstr ""
471
 
472
  #: F:\Program
473
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1207
474
  msgid "English"
475
  msgstr ""
476
 
477
  #: F:\Program
478
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1210
479
  msgid "Persian"
480
  msgstr ""
481
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-18 23:20+0330\n"
6
+ "PO-Revision-Date: 2012-04-18 23:20+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-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/wp-statistics.php:79
31
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:854
32
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1122
33
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1275
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/wp-statistics.php:64
94
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:826
95
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:842
96
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1024
97
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1074
98
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1257
99
+ msgid "User Online"
100
+ msgstr ""
101
+
102
+ #: F:\Program
103
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
104
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:830
105
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1082
106
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1260
107
+ msgid "Today Visit"
108
+ msgstr ""
109
+
110
+ #: F:\Program
111
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:74
112
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:834
113
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1263
114
+ msgid "Yesterday visit"
115
+ msgstr ""
116
+
117
+ #: F:\Program
118
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:84
119
+ msgid "Plugin home page"
120
+ msgstr ""
121
+
122
+ #: F:\Program
123
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:265
124
+ #, php-format
125
+ msgid "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> and enable statistics"
126
+ msgstr ""
127
+
128
+ #: F:\Program
129
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:530
130
+ msgid "Settings"
131
+ msgstr ""
132
+
133
+ #: F:\Program
134
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:531
135
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:532
136
+ msgid "Stats Log"
137
+ msgstr ""
138
+
139
+ #: F:\Program
140
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:533
141
+ msgid "Users Online"
142
+ msgstr ""
143
+
144
+ #: F:\Program
145
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:541
146
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:945
147
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1002
148
+ msgid "You do not have sufficient permissions to access this page."
149
+ msgstr ""
150
+
151
+ #: F:\Program
152
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:621
153
  msgid "Are you sure?"
154
  msgstr ""
155
 
156
  #: F:\Program
157
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:633
158
  msgid "Configuration"
159
  msgstr ""
160
 
161
  #: F:\Program
162
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
163
  msgid "Enable Statistics"
164
  msgstr ""
165
 
166
  #: F:\Program
167
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:642
168
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
169
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:670
170
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:679
171
  msgid "Yes"
172
  msgstr ""
173
 
174
  #: F:\Program
175
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:646
176
  msgid "Statistics are enabled."
177
  msgstr ""
178
 
179
  #: F:\Program
180
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:648
181
  msgid "Statistics are disabled!"
182
  msgstr ""
183
 
184
  #: F:\Program
185
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:653
186
  msgid "General configuration"
187
  msgstr ""
188
 
189
  #: F:\Program
190
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:656
191
  msgid "Show decimals number"
192
  msgstr ""
193
 
194
  #: F:\Program
195
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:662
196
  msgid "Show number stats with decimal. For examle: 3,500"
197
  msgstr ""
198
 
199
  #: F:\Program
200
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:666
201
  msgid "Show stats in menu bar"
202
  msgstr ""
203
 
204
  #: F:\Program
205
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:672
206
  msgid "Show stats in admin menu bar"
207
  msgstr ""
208
 
209
  #: F:\Program
210
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
211
+ msgid "Daily referer of search engines"
212
  msgstr ""
213
 
214
  #: F:\Program
215
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:681
216
+ msgid "Can be calculated daily or total search engines"
217
+ msgstr ""
218
+
219
+ #: F:\Program
220
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
221
+ msgid "Check for online users every"
222
  msgstr ""
223
 
224
  #: F:\Program
225
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:688
226
+ msgid "Second"
227
  msgstr ""
228
 
229
  #: F:\Program
230
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:690
231
+ msgid "Time for the check accurate online user in the site. Default: 60 Second"
232
  msgstr ""
233
 
234
  #: F:\Program
235
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:694
236
+ msgid "Increase value of the total hits by"
237
  msgstr ""
238
 
239
  #: F:\Program
240
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:697
241
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:707
242
  msgid "Done"
243
  msgstr ""
244
 
245
  #: F:\Program
246
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:700
247
  msgid "Your total visit sum with this value"
248
  msgstr ""
249
 
250
  #: F:\Program
251
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:704
252
+ msgid "Reduce value of the total hits by"
253
  msgstr ""
254
 
255
  #: F:\Program
256
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
257
  msgid "Your total visit minus with this value"
258
  msgstr ""
259
 
260
  #: F:\Program
261
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:714
262
  msgid "Number item for show Statistics"
263
  msgstr ""
264
 
265
  #: F:\Program
266
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:717
267
  msgid "Default 5"
268
  msgstr ""
269
 
270
  #: F:\Program
271
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:719
272
  msgid "Number for submit item in Database and show that"
273
  msgstr ""
274
 
275
  #: F:\Program
276
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:723
277
+ msgid "Coefficient per visitor"
278
  msgstr ""
279
 
280
  #: F:\Program
281
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:726
282
+ msgid "Default 1"
283
  msgstr ""
284
 
285
  #: F:\Program
286
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:728
287
+ msgid "For each visitor to account for several hits."
288
  msgstr ""
289
 
290
  #: F:\Program
291
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:732
292
+ msgid "The CSS Class for the containing widget"
293
  msgstr ""
294
 
295
  #: F:\Program
296
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
297
+ msgid "If empty. class=\"widget\" will be used"
298
  msgstr ""
299
 
300
  #: F:\Program
301
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:739
302
+ msgid "Live Statistics configuration"
303
  msgstr ""
304
 
305
  #: F:\Program
306
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
307
+ msgid "Refresh Stats every"
308
  msgstr ""
309
 
310
  #: F:\Program
311
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:745
312
+ msgid "Second(s)"
 
313
  msgstr ""
314
 
315
  #: F:\Program
316
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:748
317
+ msgid "Recommended"
318
  msgstr ""
319
 
320
  #: F:\Program
321
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:749
322
+ msgid "To reduce pressure on the server, this defaults to 10 sec"
323
  msgstr ""
324
 
325
  #: F:\Program
326
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:753
327
+ msgid "Pagerank configuration"
328
  msgstr ""
329
 
330
  #: F:\Program
331
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:756
332
+ msgid "Your url for Google pagerank check"
333
  msgstr ""
334
 
335
  #: F:\Program
336
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:761
337
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:771
338
+ msgid "If empty. you website url is used"
339
  msgstr ""
340
 
341
  #: F:\Program
342
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
343
+ msgid "Your url for Alexa pagerank check"
344
+ msgstr ""
345
+
346
+ #: F:\Program
347
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:780
348
+ msgid "Update"
349
+ msgstr ""
350
+
351
+ #: F:\Program
352
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
353
  msgid "This plugin created by"
354
  msgstr ""
355
 
356
  #: F:\Program
357
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
358
  msgid "from"
359
  msgstr ""
360
 
361
  #: F:\Program
362
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
363
  msgid "group"
364
  msgstr ""
365
 
366
  #: F:\Program
367
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:789
368
  msgid "Plugin translators"
369
  msgstr ""
370
 
371
  #: F:\Program
372
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
373
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:794
374
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:795
375
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
376
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
377
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:798
378
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:799
379
  msgid "Language"
380
  msgstr ""
381
 
382
  #: F:\Program
383
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
384
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:794
385
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:795
386
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
387
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
388
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:798
389
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:799
390
  msgid "by"
391
  msgstr ""
392
 
393
  #: F:\Program
394
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:801
395
  msgid "for translate language files. please send files for"
396
  msgstr ""
397
 
398
  #: F:\Program
399
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:804
400
  msgid "Show Functions"
401
  msgstr ""
402
 
403
  #: F:\Program
404
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:805
405
  msgid "Report Problem"
406
  msgstr ""
407
 
408
  #: F:\Program
409
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:818
410
+ msgid "User Online Live"
 
 
 
 
 
 
 
 
 
411
  msgstr ""
412
 
413
  #: F:\Program
414
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:822
415
+ msgid "Total Visit Live"
 
416
  msgstr ""
417
 
418
  #: F:\Program
419
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:838
420
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1098
421
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1266
422
  msgid "Week Visit"
423
  msgstr ""
424
 
425
  #: F:\Program
426
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:846
427
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1106
428
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1269
429
  msgid "Month Visit"
430
  msgstr ""
431
 
432
  #: F:\Program
433
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:850
434
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1114
435
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1272
436
  msgid "Years Visit"
437
  msgstr ""
438
 
439
  #: F:\Program
440
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:858
441
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1130
442
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1278
 
 
 
 
 
443
  msgid "Search Engine reffered"
444
  msgstr ""
445
 
446
  #: F:\Program
447
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:862
448
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1146
449
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1296
450
  msgid "Total Posts"
451
  msgstr ""
452
 
453
  #: F:\Program
454
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:866
455
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1154
456
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1299
457
  msgid "Total Pages"
458
  msgstr ""
459
 
460
  #: F:\Program
461
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:870
462
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1162
463
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1302
464
  msgid "Total Comments"
465
  msgstr ""
466
 
467
  #: F:\Program
468
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:874
469
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1170
470
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1305
471
  msgid "Total Spams"
472
  msgstr ""
473
 
474
  #: F:\Program
475
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:878
476
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1178
477
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1308
478
  msgid "Total Users"
479
  msgstr ""
480
 
481
  #: F:\Program
482
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:882
483
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1210
484
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1320
485
  msgid "Last Post Date"
486
  msgstr ""
487
 
488
  #: F:\Program
489
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:886
490
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1186
491
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1311
492
  msgid "Average Posts"
493
  msgstr ""
494
 
495
  #: F:\Program
496
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:890
497
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1194
498
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1314
499
  msgid "Average Comments"
500
  msgstr ""
501
 
502
  #: F:\Program
503
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:894
504
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1202
505
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1317
506
  msgid "Average Users"
507
  msgstr ""
508
 
509
  #: F:\Program
510
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:898
511
  msgid "Total Feedburner Subscribe"
512
  msgstr ""
513
 
514
  #: F:\Program
515
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:902
516
  msgid "Google Pagerank"
517
  msgstr ""
518
 
519
  #: F:\Program
520
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:906
521
  msgid "Alexa Pagerank"
522
  msgstr ""
523
 
524
  #: F:\Program
525
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:910
526
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:920
527
  msgid "Hide"
528
  msgstr ""
529
 
530
  #: F:\Program
531
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:914
532
  msgid "Your Name"
533
  msgstr ""
534
 
535
  #: F:\Program
536
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:916
537
  msgid "Description Problem"
538
  msgstr ""
539
 
540
  #: F:\Program
541
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:919
542
  msgid "Send Problem"
543
  msgstr ""
544
 
545
  #: F:\Program
546
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:927
547
  msgid "Unistall plugin"
548
  msgstr ""
549
 
550
  #: F:\Program
551
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:933
552
  msgid "Delete all data, including tables and plugin options"
553
  msgstr ""
554
 
555
  #: F:\Program
556
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:934
557
  msgid "Uninstall"
558
  msgstr ""
559
 
560
  #: F:\Program
561
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:967
562
+ msgid "Stats weblog"
563
  msgstr ""
564
 
565
  #: F:\Program
566
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:978
567
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1035
568
+ msgid "No"
569
  msgstr ""
570
 
571
  #: F:\Program
572
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:979
573
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1036
574
+ msgid "IP"
575
+ msgstr ""
576
+
577
+ #: F:\Program
578
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:980
579
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1037
580
+ msgid "Time"
581
+ msgstr ""
582
+
583
+ #: F:\Program
584
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:981
585
+ msgid "Referred"
586
+ msgstr ""
587
+
588
+ #: F:\Program
589
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:982
590
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1039
591
+ msgid "Agent"
592
+ msgstr ""
593
+
594
+ #: F:\Program
595
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1038
596
+ msgid "Referrer"
597
+ msgstr ""
598
+
599
+ #: F:\Program
600
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1090
601
+ msgid "Yesterday Visit"
602
+ msgstr ""
603
+
604
+ #: F:\Program
605
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1250
606
  msgid "Name"
607
  msgstr ""
608
 
609
  #: F:\Program
610
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1254
611
  msgid "Items"
612
  msgstr ""
613
 
614
  #: F:\Program
615
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1281
616
  msgid "Select type of search engine"
617
  msgstr ""
618
 
619
  #: F:\Program
620
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1283
621
  msgid "Google"
622
  msgstr ""
623
 
624
  #: F:\Program
625
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1286
626
  msgid "Yahoo!"
627
  msgstr ""
628
 
629
  #: F:\Program
630
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1289
631
  msgid "Bing"
632
  msgstr ""
633
 
634
  #: F:\Program
635
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1292
636
  msgid "All"
637
  msgstr ""
638
 
639
  #: F:\Program
640
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1323
641
  msgid "Type date for last update"
642
  msgstr ""
643
 
644
  #: F:\Program
645
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1325
646
  msgid "English"
647
  msgstr ""
648
 
649
  #: F:\Program
650
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1328
651
  msgid "Persian"
652
  msgstr ""
653
 
654
+ #: F:\Program
655
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1359
656
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1361
657
+ msgid "WP-Statistics"
658
+ msgstr ""
659
+
660
+ #: F:\Program
661
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1360
662
+ msgid "Show site stats in sidebar"
663
+ msgstr ""
664
+
langs/wp_statistics-ar_AR.mo ADDED
Binary file
langs/wp_statistics-ar_AR.po CHANGED
@@ -1,477 +1,483 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-01-09 16:18+0330\n"
6
- "PO-Revision-Date: 2012-01-09 16:18+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: .\n"
 
 
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
  #: F:\Program
18
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/actions.php:11
19
  msgid "Please Enter value!"
20
- msgstr "������ ���� ����!"
21
 
22
  #: F:\Program
23
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/report_problem.php:19
24
  msgid "Error! Please Enter all field"
25
- msgstr "���! ������ ����� ���� ������"
26
 
27
  #: F:\Program
28
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
29
  msgid "Are you sure?"
30
- msgstr "�� ��� ����Ͽ"
31
 
32
  #: F:\Program
33
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:494
34
  msgid "Configuration"
35
- msgstr "�������"
36
 
37
  #: F:\Program
38
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
39
  msgid "Enable Statistics"
40
- msgstr "����� ����������"
41
 
42
  #: F:\Program
43
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:503
44
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:521
45
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:531
46
  msgid "Yes"
47
- msgstr "���"
48
 
49
  #: F:\Program
50
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:507
51
  msgid "Statistics are enabled."
52
- msgstr "�� ����� ����������."
53
 
54
  #: F:\Program
55
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:509
56
  msgid "Statistics are disabled!"
57
- msgstr "���������� �����!"
58
 
59
  #: F:\Program
60
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:514
61
  msgid "General configuration"
62
- msgstr "������� �����"
63
 
64
  #: F:\Program
65
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:517
66
  msgid "Show decimals number"
67
- msgstr "��� ��� ����"
68
 
69
  #: F:\Program
70
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
71
  msgid "Show number stats with decimal. For examle: 3,500"
72
- msgstr "����� ����� ���������� ������ ������. ����: 3,500"
73
 
74
  #: F:\Program
75
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:527
76
  msgid "Show stats in menu bar"
77
- msgstr "����� ���������� �� ���� �������"
78
 
79
  #: F:\Program
80
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:533
81
  msgid "Show stats in admin menu bar"
82
- msgstr "����� ���������� �� ���� ������� �������"
83
 
84
  #: F:\Program
85
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:537
86
  msgid "Online user check time"
87
- msgstr "��� ��� ���������� ����"
88
 
89
  #: F:\Program
90
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:539
91
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:580
92
  msgid "Each"
93
- msgstr "��"
94
 
95
  #: F:\Program
96
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:541
97
  msgid "Compute min"
98
- msgstr "������ ��������"
99
 
100
  #: F:\Program
101
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:543
102
  msgid "Time for the check accurate online user in the site. Default: 5 Minutes"
103
- msgstr "����� �������� ���� ���������� ���� �� ������. ���������: 5 �����"
104
 
105
  #: F:\Program
106
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:547
107
  msgid "Increase value of the total hits"
108
- msgstr "����� ���� �� ��������"
109
 
110
  #: F:\Program
111
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:550
112
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:560
113
  msgid "Done"
114
- msgstr "��"
115
 
116
  #: F:\Program
117
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:553
118
  msgid "Your total visit sum with this value"
119
- msgstr "�� ������ ��� ������ ������� ����� ��������"
120
 
121
  #: F:\Program
122
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:557
123
  msgid "Reduction value of the total hits"
124
- msgstr "����� ���� �� ��������"
125
 
126
  #: F:\Program
127
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:563
128
  msgid "Your total visit minus with this value"
129
- msgstr "�� ������ ��� ������ ������� ����� �� ��������"
130
 
131
  #: F:\Program
132
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:567
133
  msgid "Number item for show Statistics"
134
- msgstr "��� ������ ������� �� ����������"
135
 
136
  #: F:\Program
137
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:570
138
  msgid "Default 5"
139
- msgstr "��������� 5"
140
 
141
  #: F:\Program
142
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:572
143
  msgid "Number for submit item in Database and show that"
144
- msgstr "�� ��� ������ ������ ������ �� ����������"
145
 
146
  #: F:\Program
147
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:575
148
  msgid "Live Statistics configuration"
149
- msgstr "������� ���������� ��������"
150
 
151
  #: F:\Program
152
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:578
153
  msgid "Database check time"
154
- msgstr "��� ��� ����� ��������"
155
 
156
  #: F:\Program
157
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:582
158
  msgid "Minute updates"
159
- msgstr "������� ��������"
160
 
161
  #: F:\Program
162
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:585
163
  msgid "Recommended"
164
- msgstr "���� ��"
165
 
166
  #: F:\Program
167
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:586
168
  msgid "Due to pressure on the server, Be set up on time. Default 1 min."
169
- msgstr "��� ����� �� ����� ��� ������, ���� ���� ������ ���������� ���: 1 �����."
170
 
171
  #: F:\Program
172
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:590
173
  msgid "Pagerank configuration"
174
- msgstr "������� ����� ����"
175
 
176
  #: F:\Program
177
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:593
178
  msgid "Your url for Google pagerank check"
179
- msgstr "���� ����� ����� �� ����� ��� ����"
180
 
181
  #: F:\Program
182
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:598
183
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
184
  msgid "If this input is empty, The website url uses"
185
- msgstr "��� ��� ��� ������ �����, ���� ������� ���� ������"
186
 
187
  #: F:\Program
188
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:603
189
  msgid "Your url for Alexa pagerank check"
190
- msgstr "���� ����� ����� �� �� Alexa ��� ����"
191
 
192
  #: F:\Program
193
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:614
194
  msgid "About plugin"
195
- msgstr "��� �������� �������"
196
 
197
  #: F:\Program
198
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:615
199
  msgid "Plugin Version"
200
- msgstr "��� ������"
201
 
202
  #: F:\Program
203
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:615
204
  msgid "Free!"
205
- msgstr "�����!"
206
 
207
  #: F:\Program
208
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:617
209
  msgid "Get Premium version"
210
- msgstr "������ ��� ������ �������"
211
 
212
  #: F:\Program
213
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
214
  msgid "This plugin created by"
215
- msgstr "��� ������� �� ������� ������"
216
 
217
  #: F:\Program
218
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
219
  msgid "from"
220
- msgstr "��"
221
 
222
  #: F:\Program
223
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
224
  msgid "group"
225
- msgstr "������"
226
 
227
  #: F:\Program
228
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:626
229
  msgid "Plugin translators"
230
- msgstr "������� �������"
231
 
232
  #: F:\Program
233
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
234
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:631
235
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:632
236
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:633
 
 
237
  msgid "Language"
238
- msgstr "���"
239
 
240
  #: F:\Program
241
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
242
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:631
243
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:632
244
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:633
 
 
245
  msgid "by"
246
- msgstr "������"
247
 
248
  #: F:\Program
249
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:635
250
  msgid "for translate language files. please send files for"
251
- msgstr "������ ����� �����: ������ ����� ������� ��"
252
 
253
  #: F:\Program
254
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
255
  msgid "Show Functions"
256
- msgstr "��� �����"
257
 
258
  #: F:\Program
259
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:639
260
  msgid "Report Problem"
261
- msgstr "����� �����"
262
 
263
  #: F:\Program
264
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:652
265
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:668
266
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:859
267
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1071
268
  msgid "User Online"
269
- msgstr "���������� ����"
270
 
271
  #: F:\Program
272
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:656
273
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1074
274
  msgid "Today Visit"
275
- msgstr "������ �����"
276
 
277
  #: F:\Program
278
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
279
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1077
280
  msgid "Yesterday visit"
281
- msgstr "������ �����"
282
 
283
  #: F:\Program
284
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:664
285
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1080
286
  msgid "Week Visit"
287
- msgstr "������ �������"
288
 
289
  #: F:\Program
290
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:672
291
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1083
292
  msgid "Month Visit"
293
- msgstr "������ �����"
294
 
295
  #: F:\Program
296
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
297
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1086
298
  msgid "Years Visit"
299
- msgstr "������ �����"
300
 
301
  #: F:\Program
302
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:680
303
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1089
304
  msgid "Total Visit"
305
- msgstr "����� ��������"
306
 
307
  #: F:\Program
308
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
309
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1092
310
  msgid "Search Engine reffered"
311
- msgstr "������ �����"
312
 
313
  #: F:\Program
314
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:688
315
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1110
316
  msgid "Total Posts"
317
- msgstr "������ ���������"
318
 
319
  #: F:\Program
320
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:692
321
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1113
322
  msgid "Total Pages"
323
- msgstr "������ �������"
324
 
325
  #: F:\Program
326
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:696
327
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1116
328
  msgid "Total Comments"
329
- msgstr "������ ���������"
330
 
331
  #: F:\Program
332
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:700
333
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1119
334
  msgid "Total Spams"
335
- msgstr "������ ������"
336
 
337
  #: F:\Program
338
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:704
339
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1122
340
  msgid "Total Users"
341
- msgstr "��� �������"
342
 
343
  #: F:\Program
344
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:708
345
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1134
346
  msgid "Last Post Date"
347
- msgstr "����� ��� ������"
348
 
349
  #: F:\Program
350
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:712
351
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1125
352
  msgid "Average Posts"
353
- msgstr "����� ���������"
354
 
355
  #: F:\Program
356
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:716
357
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1128
358
  msgid "Average Comments"
359
- msgstr "����� ���������"
360
 
361
  #: F:\Program
362
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:720
363
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1131
364
  msgid "Average Users"
365
- msgstr "����� �������"
366
 
367
  #: F:\Program
368
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:724
369
  msgid "Total Feedburner Subscribe"
370
- msgstr "������ ��������"
371
 
372
  #: F:\Program
373
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:728
374
  msgid "Google Pagerank"
375
- msgstr "���� ��� ����"
376
 
377
  #: F:\Program
378
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:732
379
  msgid "Alexa Pagerank"
380
- msgstr ������ ��� ����""
381
 
382
  #: F:\Program
383
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
384
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:746
385
  msgid "Hide"
386
- msgstr "�����"
387
 
388
  #: F:\Program
389
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
390
  msgid "Your Name"
391
- msgstr "����"
392
 
393
  #: F:\Program
394
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
395
  msgid "Description Problem"
396
- msgstr "��� �������"
397
 
398
  #: F:\Program
399
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:745
400
  msgid "Send Problem"
401
- msgstr "����� �����"
402
 
403
  #: F:\Program
404
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:753
405
  msgid "Unistall plugin"
406
- msgstr "��� �������"
407
 
408
  #: F:\Program
409
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:759
410
  msgid "Delete all data, including tables and plugin options"
411
- msgstr "��� ���� �������� ��� �� ��� ������� ������� �������� �������"
412
 
413
  #: F:\Program
414
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:760
415
  msgid "Uninstall"
416
- msgstr "����� �������"
417
 
418
  #: F:\Program
419
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
420
  msgid "Update"
421
- msgstr "�����"
422
 
423
  #: F:\Program
424
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:803
425
  msgid "Stats weblog"
426
- msgstr "�������� �������"
427
 
428
  #: F:\Program
429
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1064
430
  msgid "Name"
431
- msgstr "�����"
432
 
433
  #: F:\Program
434
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1068
435
  msgid "Items"
436
- msgstr "������"
437
 
438
  #: F:\Program
439
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1095
440
  msgid "Select type of search engine"
441
- msgstr "��� ��� �� ���� �����"
442
 
443
  #: F:\Program
444
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1097
445
  msgid "Google"
446
  msgstr "Google"
447
 
448
  #: F:\Program
449
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1100
450
  msgid "Yahoo!"
451
  msgstr "Yahoo!"
452
 
453
  #: F:\Program
454
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1103
455
  msgid "Bing"
456
  msgstr "Bing"
457
 
458
  #: F:\Program
459
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1106
460
  msgid "All"
461
- msgstr "������"
462
 
463
  #: F:\Program
464
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1137
465
  msgid "Type date for last update"
466
- msgstr "���� ����� ��� �����"
467
 
468
  #: F:\Program
469
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1139
470
  msgid "English"
471
- msgstr "����������"
472
 
473
  #: F:\Program
474
- #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1142
475
  msgid "Persian"
476
- msgstr "��������"
477
 
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
 
langs/wp_statistics-de_DE.mo ADDED
Binary file
langs/wp_statistics-de_DE.po ADDED
@@ -0,0 +1,457 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ 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-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"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e\n"
13
+ "X-Poedit-Language: Spanish\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Country: SPAIN\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: F:\Program
19
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/actions.php:11
20
+ msgid "Please Enter value!"
21
+ msgstr "Bitte gebe einen Wert ein"
22
+
23
+ #: F:\Program
24
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/report_problem.php:19
25
+ msgid "Error! Please Enter all field"
26
+ msgstr "Fehler: Bitte fülle alle Felder aus."
27
+
28
+ #: F:\Program
29
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:480
30
+ msgid "Are you sure?"
31
+ msgstr "Bist du sicher?"
32
+
33
+ #: F:\Program
34
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:491
35
+ msgid "Configuration"
36
+ msgstr "Konfiguration"
37
+
38
+ #: F:\Program
39
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:496
40
+ msgid "Enable Statistics"
41
+ msgstr "Aktiviere Statistiken"
42
+
43
+ #: F:\Program
44
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:500
45
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:518
46
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
47
+ msgid "Yes"
48
+ msgstr "Ja"
49
+
50
+ #: F:\Program
51
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:504
52
+ msgid "Statistics are enabled."
53
+ msgstr "Statistiken sind aktiviert."
54
+
55
+ #: F:\Program
56
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:506
57
+ msgid "Statistics are disabled!"
58
+ msgstr "Statistiken sind deaktiviert."
59
+
60
+ #: F:\Program
61
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:511
62
+ msgid "General configuration"
63
+ msgstr "Grundkonfiguration"
64
+
65
+ #: F:\Program
66
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:514
67
+ msgid "Show decimals number"
68
+ msgstr "Zeige Dezimalstellen"
69
+
70
+ #: F:\Program
71
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
72
+ msgid "Show number stats with decimal. For examle: 3,500"
73
+ msgstr "Zeige numerische Statistiken mit Dezimalangaben. Zum Beispiel: 3,500"
74
+
75
+ #: F:\Program
76
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
77
+ msgid "Show stats in menu bar"
78
+ msgstr "Zeige Statistiken in der Menüleiste"
79
+
80
+ #: F:\Program
81
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:530
82
+ msgid "Show stats in admin menu bar"
83
+ msgstr "Zeige Statistiken in der Admin-Menüleiste"
84
+
85
+ #: F:\Program
86
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:534
87
+ msgid "Online user check time"
88
+ msgstr "Online Benutzer prüfe Zeit"
89
+
90
+ #: F:\Program
91
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:536
92
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:577
93
+ msgid "Each"
94
+ msgstr "jede"
95
+
96
+ #: F:\Program
97
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:538
98
+ msgid "Compute min"
99
+ msgstr "berechne Minimum"
100
+
101
+ #: F:\Program
102
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:540
103
+ msgid "Time for the check accurate online user in the site. Default: 5 Minutes"
104
+ msgstr "Zeitspanne die ein User als unique gezählt wird. Default: 5 Minuten"
105
+
106
+ #: F:\Program
107
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:544
108
+ msgid "Increase value of the total hits"
109
+ msgstr "Erhöhe die Anzahl der Gesamten-Besuche um"
110
+
111
+ #: F:\Program
112
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:547
113
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:557
114
+ msgid "Done"
115
+ msgstr "Fertig"
116
+
117
+ #: F:\Program
118
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:550
119
+ msgid "Your total visit sum with this value"
120
+ msgstr "Deine gesamten Besuchssumme beträgt"
121
+
122
+ #: F:\Program
123
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:554
124
+ msgid "Reduction value of the total hits"
125
+ msgstr "Reduziere die Gesamt-Hits um"
126
+
127
+ #: F:\Program
128
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:560
129
+ msgid "Your total visit minus with this value"
130
+ msgstr "Deine Gesamt-Visits minus diesen Wert"
131
+
132
+ #: F:\Program
133
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:564
134
+ msgid "Number item for show Statistics"
135
+ msgstr "Anzahl Eintrag um Statistik anzuzeigen"
136
+
137
+ #: F:\Program
138
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:567
139
+ msgid "Default 5"
140
+ msgstr "Default 5"
141
+
142
+ #: F:\Program
143
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:569
144
+ msgid "Number for submit item in Database and show that"
145
+ msgstr "Anzahl von eingereichten Einträgen in der Datenbank. Zeige, dass"
146
+
147
+ #: F:\Program
148
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:572
149
+ msgid "Live Statistics configuration"
150
+ msgstr "Konfiguration der Live Statistiken"
151
+
152
+ #: F:\Program
153
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:575
154
+ msgid "Database check time"
155
+ msgstr "Datenbank-Prüfzeit"
156
+
157
+ #: F:\Program
158
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:579
159
+ msgid "Minute updates"
160
+ msgstr "Minuten Aktualisierung"
161
+
162
+ #: F:\Program
163
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:582
164
+ msgid "Recommended"
165
+ msgstr "Empfohlen"
166
+
167
+ #: F:\Program
168
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:583
169
+ msgid "Due to pressure on the server, Be set up on time. Default 1 min."
170
+ msgstr "Aufgrund von Serverlast gebe eine Zeit vor. Default: 1 min."
171
+
172
+ #: F:\Program
173
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:587
174
+ msgid "Pagerank configuration"
175
+ msgstr "Konfiguration des Pagerank"
176
+
177
+ #: F:\Program
178
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:590
179
+ msgid "Your url for Google pagerank check"
180
+ msgstr "Deine URL für den Google Pagerank"
181
+
182
+ #: F:\Program
183
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
184
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:605
185
+ msgid "If this input is empty, The website url uses"
186
+ msgstr "Wenn dieses Feld leer ist wird die Website URL verwendet"
187
+
188
+ #: F:\Program
189
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:600
190
+ msgid "Your url for Alexa pagerank check"
191
+ msgstr "Deine URL für Alexa Pagerank"
192
+
193
+ #: F:\Program
194
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:611
195
+ msgid "About plugin"
196
+ msgstr "Über das Plugin"
197
+
198
+ #: F:\Program
199
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:612
200
+ msgid "Plugin Version"
201
+ msgstr "Plugin Version"
202
+
203
+ #: F:\Program
204
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:612
205
+ msgid "Free!"
206
+ msgstr "Gratis!"
207
+
208
+ #: F:\Program
209
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:613
210
+ msgid "Get Premium version"
211
+ msgstr "Hole die Premium Version"
212
+
213
+ #: F:\Program
214
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:619
215
+ msgid "This plugin created by"
216
+ msgstr "Dieses Plugin wurde erstellt von"
217
+
218
+ #: F:\Program
219
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:619
220
+ msgid "from"
221
+ msgstr "von"
222
+
223
+ #: F:\Program
224
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:619
225
+ msgid "group"
226
+ msgstr "Gruppe"
227
+
228
+ #: F:\Program
229
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:620
230
+ msgid "for translate language files. please send files for"
231
+ msgstr "für übersetzte Language Dateien sende diese an"
232
+
233
+ #: F:\Program
234
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:622
235
+ msgid "Show Functions"
236
+ msgstr "Zeige Funktionen"
237
+
238
+ #: F:\Program
239
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:623
240
+ msgid "Report Problem"
241
+ msgstr "Melde ein Problem"
242
+
243
+ #: F:\Program
244
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:636
245
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:652
246
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:843
247
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1055
248
+ msgid "User Online"
249
+ msgstr "Besucher aktuell"
250
+
251
+ #: F:\Program
252
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:640
253
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1058
254
+ msgid "Today Visit"
255
+ msgstr "Besucher heute"
256
+
257
+ #: F:\Program
258
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:644
259
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1061
260
+ msgid "Yesterday visit"
261
+ msgstr "Besucher gestern"
262
+
263
+ #: F:\Program
264
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:648
265
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1064
266
+ msgid "Week Visit"
267
+ msgstr "Besucher pro Woche"
268
+
269
+ #: F:\Program
270
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:656
271
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1067
272
+ msgid "Month Visit"
273
+ msgstr "Besucher im Monat"
274
+
275
+ #: F:\Program
276
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
277
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1070
278
+ msgid "Years Visit"
279
+ msgstr "Besucher im Jahr"
280
+
281
+ #: F:\Program
282
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:664
283
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1073
284
+ msgid "Total Visit"
285
+ msgstr "Gesamtbesucher"
286
+
287
+ #: F:\Program
288
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:668
289
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1076
290
+ msgid "Search Engine reffered"
291
+ msgstr "Suchmaschinenweiterleitungen"
292
+
293
+ #: F:\Program
294
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:672
295
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1094
296
+ msgid "Total Posts"
297
+ msgstr "Gesamt Beiträge"
298
+
299
+ #: F:\Program
300
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
301
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1097
302
+ msgid "Total Pages"
303
+ msgstr "Gesamt Seiten"
304
+
305
+ #: F:\Program
306
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:680
307
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1100
308
+ msgid "Total Comments"
309
+ msgstr "Gesamt Kommentare"
310
+
311
+ #: F:\Program
312
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
313
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1103
314
+ msgid "Total Spams"
315
+ msgstr "Gesamt Spam"
316
+
317
+ #: F:\Program
318
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:688
319
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1106
320
+ msgid "Total Users"
321
+ msgstr "Gesamt Benutzer"
322
+
323
+ #: F:\Program
324
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:692
325
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1118
326
+ msgid "Last Post Date"
327
+ msgstr "Letztes Beitrags-Datum"
328
+
329
+ #: F:\Program
330
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:696
331
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1109
332
+ msgid "Average Posts"
333
+ msgstr "Durchschnittliche Artikel"
334
+
335
+ #: F:\Program
336
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:700
337
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1112
338
+ msgid "Average Comments"
339
+ msgstr "Durchschnittliche Kommentare"
340
+
341
+ #: F:\Program
342
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:704
343
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1115
344
+ msgid "Average Users"
345
+ msgstr "Durchschnittliche Benutzer"
346
+
347
+ #: F:\Program
348
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:708
349
+ msgid "Total Feedburner Subscribe"
350
+ msgstr "Gesamte Abos über Feedburner"
351
+
352
+ #: F:\Program
353
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:712
354
+ msgid "Google Pagerank"
355
+ msgstr "Google Pagerank"
356
+
357
+ #: F:\Program
358
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:716
359
+ msgid "Alexa Pagerank"
360
+ msgstr "Alexa Pagerank"
361
+
362
+ #: F:\Program
363
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:720
364
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:730
365
+ msgid "Hide"
366
+ msgstr "Verbergen"
367
+
368
+ #: F:\Program
369
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:724
370
+ msgid "Your Name"
371
+ msgstr "Dein Name"
372
+
373
+ #: F:\Program
374
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:726
375
+ msgid "Description Problem"
376
+ msgstr "Problembeschreibung"
377
+
378
+ #: F:\Program
379
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:729
380
+ msgid "Send Problem"
381
+ msgstr "Melde ein Problem"
382
+
383
+ #: F:\Program
384
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:737
385
+ msgid "Unistall plugin"
386
+ msgstr "Deinstalliere Plugin"
387
+
388
+ #: F:\Program
389
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:743
390
+ msgid "Delete all data, including tables and plugin options"
391
+ msgstr "Lösche alle Daten, einschließlich Tabellen und Plugin Optionen"
392
+
393
+ #: F:\Program
394
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:744
395
+ msgid "Uninstall"
396
+ msgstr "Deinstallieren"
397
+
398
+ #: F:\Program
399
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:754
400
+ msgid "Update"
401
+ msgstr "Aktualisieren"
402
+
403
+ #: F:\Program
404
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
405
+ msgid "Stats weblog"
406
+ msgstr "Statistiken des Blogs"
407
+
408
+ #: F:\Program
409
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1048
410
+ msgid "Name"
411
+ msgstr "Name"
412
+
413
+ #: F:\Program
414
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1052
415
+ msgid "Items"
416
+ msgstr "Elemente"
417
+
418
+ #: F:\Program
419
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1079
420
+ msgid "Select type of search engine"
421
+ msgstr "Wähle die Suchmaschine"
422
+
423
+ #: F:\Program
424
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1081
425
+ msgid "Google"
426
+ msgstr "Google"
427
+
428
+ #: F:\Program
429
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1084
430
+ msgid "Yahoo!"
431
+ msgstr "Yahoo"
432
+
433
+ #: F:\Program
434
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1087
435
+ msgid "Bing"
436
+ msgstr "Bing"
437
+
438
+ #: F:\Program
439
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1090
440
+ msgid "All"
441
+ msgstr "Alle"
442
+
443
+ #: F:\Program
444
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1121
445
+ msgid "Type date for last update"
446
+ msgstr "Gebe das Datum für das letzte Update ein"
447
+
448
+ #: F:\Program
449
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1123
450
+ msgid "English"
451
+ msgstr "Englisch"
452
+
453
+ #: F:\Program
454
+ #: Files\wamp\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1126
455
+ msgid "Persian"
456
+ msgstr "Persisch"
457
+
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-02-03 17:54+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: <mat404@gmail.com>\n"
@@ -12,605 +12,695 @@ msgstr ""
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Language: Persian\n"
14
  "X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: F:\Program
19
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:7
20
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:9
21
- msgid "Sorry! this feature is for Premium version"
22
- msgstr "متاسفم! این امکان برای نسخه‌ی ویژه است."
23
 
24
  #: F:\Program
25
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "Please Enter value!"
27
  msgstr "لطفا مقداری را وارد کنید!"
28
 
29
  #: F:\Program
30
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:17
 
 
 
 
 
 
 
31
  msgid "Thanks for your report!"
32
  msgstr "با تشکر از گزارش شما!"
33
 
34
  #: F:\Program
35
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:19
36
  msgid "Error! Please Enter all field"
37
  msgstr "خطا! لطفا همه فیلدها را پرکنید"
38
 
39
  #: F:\Program
40
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:42
41
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:45
42
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:48
43
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:51
44
  msgid "deleted!"
45
  msgstr "پاک‌شد!"
46
 
47
  #: F:\Program
48
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:55
49
  msgid "All plugin data is deleted"
50
  msgstr "تمامی اطلاعات افزونه پاک شد"
51
 
52
  #: F:\Program
53
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:56
54
  msgid "Disable plugin"
55
  msgstr "افزونه را غیرفعال کنید."
56
 
57
  #: F:\Program
58
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/uninstall.php:58
59
  msgid "plugin options have been deleted"
60
  msgstr "گزینه‌های افزونه قبلا پاک شده‌اند"
61
 
62
  #: F:\Program
63
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:59
64
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:465
65
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:713
66
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:729
67
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:921
68
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:961
69
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1155
70
  msgid "User Online"
71
  msgstr "کاربران حاضر"
72
 
73
  #: F:\Program
74
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
75
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:717
76
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:969
77
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1158
78
  msgid "Today Visit"
79
  msgstr "بازدید امروز"
80
 
81
  #: F:\Program
82
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
83
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:721
84
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1161
85
  msgid "Yesterday visit"
86
  msgstr "بازدید دیروز"
87
 
88
  #: F:\Program
89
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:74
90
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:741
91
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1009
92
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1173
93
- msgid "Total Visit"
94
- msgstr "کل بازدیدها"
95
-
96
- #: F:\Program
97
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:79
98
  msgid "Plugin home page"
99
  msgstr "خانه‌ی افزونه"
100
 
101
  #: F:\Program
102
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:228
103
  #, php-format
104
  msgid "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> and enable statistics"
105
  msgstr "افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه تنظیمات</a> آمارگیر مراجعه کنید"
106
 
107
  #: F:\Program
108
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:463
109
- msgid "Statistics"
110
- msgstr "آماره"
111
 
112
  #: F:\Program
113
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
114
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:864
115
- msgid "Stats weblog"
116
- msgstr "آمار سایت"
117
 
118
  #: F:\Program
119
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:473
120
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:842
121
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:899
 
 
 
 
 
122
  msgid "You do not have sufficient permissions to access this page."
123
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
124
 
125
  #: F:\Program
126
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:543
127
  msgid "Are you sure?"
128
  msgstr "آیا مطمئن هستید؟"
129
 
130
  #: F:\Program
131
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:554
132
  msgid "Configuration"
133
  msgstr "پیکربندی"
134
 
135
  #: F:\Program
136
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:559
137
  msgid "Enable Statistics"
138
  msgstr "آمارگیر فعال شود"
139
 
140
  #: F:\Program
141
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:563
142
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:581
143
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
 
144
  msgid "Yes"
145
  msgstr "بله"
146
 
147
  #: F:\Program
148
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:567
149
  msgid "Statistics are enabled."
150
  msgstr "آمارگیر فعال است."
151
 
152
  #: F:\Program
153
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:569
154
  msgid "Statistics are disabled!"
155
  msgstr "آمارگیر غیرفعال است!"
156
 
157
  #: F:\Program
158
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:574
159
  msgid "General configuration"
160
  msgstr "پیکربندی عمومی"
161
 
162
  #: F:\Program
163
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:577
164
  msgid "Show decimals number"
165
  msgstr "نمایش اعداد به‌صورت اعشاری"
166
 
167
  #: F:\Program
168
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:583
169
  msgid "Show number stats with decimal. For examle: 3,500"
170
  msgstr "نمایش اعداد آمارگیر به‌صورت اعشاری. برای مثال: 3،500"
171
 
172
  #: F:\Program
173
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:587
174
  msgid "Show stats in menu bar"
175
  msgstr "نمایش آمار در منوبار"
176
 
177
  #: F:\Program
178
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:593
179
  msgid "Show stats in admin menu bar"
180
  msgstr "نمایش آمار در منوبار مدیریت"
181
 
182
  #: F:\Program
183
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:597
184
- msgid "Online user check time"
185
- msgstr "زمان بررسی کاربران آنلاین"
186
 
187
  #: F:\Program
188
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:599
189
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:640
190
- msgid "Each"
191
- msgstr "هر"
192
 
193
  #: F:\Program
194
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:601
195
- msgid "Compute min"
196
- msgstr "دقیقه محاسبه کن"
197
 
198
  #: F:\Program
199
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:603
200
- msgid "Time for the check accurate online user in the site. Default: 5 Minutes"
201
- msgstr "زمان برای بررسی دقیق کاربران حاضر در سایت. پیش‌فرض 5 دقیقه است"
202
 
203
  #: F:\Program
204
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:607
205
- msgid "Increase value of the total hits"
 
 
 
 
 
206
  msgstr "افزایش مقدار به بازدید‌های کل"
207
 
208
  #: F:\Program
209
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:610
210
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:620
211
  msgid "Done"
212
  msgstr "انجام"
213
 
214
  #: F:\Program
215
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:613
216
  msgid "Your total visit sum with this value"
217
  msgstr "کل بازدیدها با این مقدار جمع می‌شود"
218
 
219
  #: F:\Program
220
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:617
221
- msgid "Reduction value of the total hits"
222
  msgstr "کاهش مقدار از بازدید‌های کل"
223
 
224
  #: F:\Program
225
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:623
226
  msgid "Your total visit minus with this value"
227
  msgstr "کل بازدیدها از این مقدار کم می‌شود"
228
 
229
  #: F:\Program
230
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:627
231
  msgid "Number item for show Statistics"
232
  msgstr "تعداد آیتم برای نمایش آمار"
233
 
234
  #: F:\Program
235
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
236
  msgid "Default 5"
237
  msgstr "پیش‌فرض 5 است"
238
 
239
  #: F:\Program
240
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:632
241
  msgid "Number for submit item in Database and show that"
242
  msgstr "تعداد برای ثبت آیتم‌های آمار در پایگاه‌داده و نمایش آن"
243
 
244
  #: F:\Program
245
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:635
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Live Statistics configuration"
247
  msgstr "پیکربندی بازدید لحظه‌ای"
248
 
249
  #: F:\Program
250
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
251
- msgid "Database check time"
252
- msgstr "زمان بررسی پایگاه‌داده"
253
 
254
  #: F:\Program
255
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:642
256
- msgid "Minute updates"
257
- msgstr "دقیقه به‌روز کن"
258
 
259
  #: F:\Program
260
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:645
261
  msgid "Recommended"
262
  msgstr "پیشنهاد میشود"
263
 
264
  #: F:\Program
265
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:646
266
- msgid "Due to pressure on the server, Be set up on time. Default 1 min."
267
- msgstr "به‌دلیل فشار برروی سرور، پیشنهاد می‌شود برروی زمان بالا تعیین شود. پیش‌فرض 1 دقیقه است."
268
 
269
  #: F:\Program
270
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:650
271
  msgid "Pagerank configuration"
272
  msgstr "تنظیمات رتبه‌بندی"
273
 
274
  #: F:\Program
275
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:653
276
  msgid "Your url for Google pagerank check"
277
  msgstr "آدرس شما برای بررسی رتبه‌بندی گوگل"
278
 
279
  #: F:\Program
280
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:658
281
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:668
282
- msgid "If this input is empty, The website url uses"
283
  msgstr "اگراین قسمت خالی باشد، از آدرس اصلی سایت استفاده می‌کند"
284
 
285
  #: F:\Program
286
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:663
287
  msgid "Your url for Alexa pagerank check"
288
  msgstr "آدرس شما برای بررسی رتبه‌بندی الکسا"
289
 
290
  #: F:\Program
291
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:674
292
- msgid "About plugin"
293
- msgstr "درباره‌ی افزونه"
294
-
295
- #: F:\Program
296
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:675
297
- msgid "Plugin Version"
298
- msgstr "نسخه افزونه"
299
-
300
- #: F:\Program
301
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:675
302
- msgid "Free!"
303
- msgstr "رایگان!"
304
-
305
- #: F:\Program
306
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:677
307
- msgid "Get Premium version"
308
- msgstr "دریافت نسخه‌ی ویژه"
309
 
310
  #: F:\Program
311
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
312
  msgid "This plugin created by"
313
  msgstr "این افزونه توسط"
314
 
315
  #: F:\Program
316
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
317
  msgid "from"
318
  msgstr "از گروه"
319
 
320
  #: F:\Program
321
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
322
  msgid "group"
323
  msgstr "ساخته شده‌است"
324
 
325
  #: F:\Program
326
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:686
327
  msgid "Plugin translators"
328
  msgstr "مترجم‌های افزونه"
329
 
330
  #: F:\Program
331
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:690
332
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:691
333
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:692
334
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:693
335
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:694
 
 
336
  msgid "Language"
337
  msgstr "زبان"
338
 
339
  #: F:\Program
340
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:690
341
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:691
342
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:692
343
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:693
344
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:694
 
 
345
  msgid "by"
346
  msgstr "توسط"
347
 
348
  #: F:\Program
349
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:696
350
  msgid "for translate language files. please send files for"
351
  msgstr "لطفا فایل‌های ترجمه را به ایمیل روبرو ارسال کنید"
352
 
353
  #: F:\Program
354
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:699
355
  msgid "Show Functions"
356
  msgstr "نمایش تابع‌ها"
357
 
358
  #: F:\Program
359
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:700
360
  msgid "Report Problem"
361
  msgstr "گزارش مشکل"
362
 
363
  #: F:\Program
364
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:725
365
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:985
366
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1164
 
 
 
 
 
 
 
 
 
 
367
  msgid "Week Visit"
368
  msgstr "بازدید هفته"
369
 
370
  #: F:\Program
371
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:733
372
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:993
373
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1167
374
  msgid "Month Visit"
375
  msgstr "بازدید ماه"
376
 
377
  #: F:\Program
378
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:737
379
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1001
380
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1170
381
  msgid "Years Visit"
382
  msgstr "بازدید سال"
383
 
384
  #: F:\Program
385
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:745
386
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1017
387
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1176
388
  msgid "Search Engine reffered"
389
  msgstr "ورودی موتورهای جستجوگر"
390
 
391
  #: F:\Program
392
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:749
393
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1033
394
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1194
395
  msgid "Total Posts"
396
  msgstr "کل نوشته‌ها"
397
 
398
  #: F:\Program
399
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:753
400
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1041
401
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1197
402
  msgid "Total Pages"
403
  msgstr "کل برگه‌ها"
404
 
405
  #: F:\Program
406
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:757
407
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1049
408
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1200
409
  msgid "Total Comments"
410
  msgstr "کل دیدگاه‌ها"
411
 
412
  #: F:\Program
413
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:761
414
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1057
415
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1203
416
  msgid "Total Spams"
417
  msgstr "کل جفنگ‌ها"
418
 
419
  #: F:\Program
420
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:765
421
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1065
422
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1206
423
  msgid "Total Users"
424
  msgstr "کل کاربرها"
425
 
426
  #: F:\Program
427
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:769
428
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1097
429
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1218
430
  msgid "Last Post Date"
431
  msgstr "تاریخ به‌روزشدن سایت"
432
 
433
  #: F:\Program
434
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:773
435
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1073
436
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1209
437
  msgid "Average Posts"
438
  msgstr "میانگین نوشته‌ها"
439
 
440
  #: F:\Program
441
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:777
442
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1081
443
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1212
444
  msgid "Average Comments"
445
  msgstr "میانگین دیدگاه‌ها"
446
 
447
  #: F:\Program
448
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:781
449
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1089
450
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1215
451
  msgid "Average Users"
452
  msgstr "میانگین کاربرها"
453
 
454
  #: F:\Program
455
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:785
456
  msgid "Total Feedburner Subscribe"
457
  msgstr "تعداد مشترک‌های فیدبرنر"
458
 
459
  #: F:\Program
460
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:789
461
  msgid "Google Pagerank"
462
  msgstr "رتبه گوگل"
463
 
464
  #: F:\Program
465
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
466
  msgid "Alexa Pagerank"
467
  msgstr "رتبه الکسا"
468
 
469
  #: F:\Program
470
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
471
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:807
472
  msgid "Hide"
473
  msgstr "مخفی"
474
 
475
  #: F:\Program
476
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:801
477
  msgid "Your Name"
478
  msgstr "نام شما"
479
 
480
  #: F:\Program
481
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:803
482
  msgid "Description Problem"
483
  msgstr "توضیحات مشکل"
484
 
485
  #: F:\Program
486
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:806
487
  msgid "Send Problem"
488
  msgstr "ارسال گزارش"
489
 
490
  #: F:\Program
491
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:814
492
  msgid "Unistall plugin"
493
  msgstr "پاک‌سازی پلاگین"
494
 
495
  #: F:\Program
496
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:820
497
  msgid "Delete all data, including tables and plugin options"
498
  msgstr "پاک‌کردن تمامی اطلاعات از قبیل جدول افزونه در پایگاه‌داده و گزینه‌های افزونه"
499
 
500
  #: F:\Program
501
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:821
502
  msgid "Uninstall"
503
  msgstr "پاک‌کردن"
504
 
505
  #: F:\Program
506
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:831
507
- msgid "Update"
508
- msgstr "به‌روز رسانی"
509
 
510
  #: F:\Program
511
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:875
512
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:932
513
  msgid "No"
514
  msgstr "شماره"
515
 
516
  #: F:\Program
517
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:876
518
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:933
519
  msgid "IP"
520
  msgstr "آی‌پی"
521
 
522
  #: F:\Program
523
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:877
524
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:934
525
  msgid "Time"
526
  msgstr "زمان"
527
 
528
  #: F:\Program
529
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:878
530
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:935
531
  msgid "Referred"
532
  msgstr "هدایت شده"
533
 
534
  #: F:\Program
535
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:879
536
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:936
537
  msgid "Agent"
538
  msgstr "مشخصات مرورگر"
539
 
540
  #: F:\Program
541
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:977
 
 
 
 
 
542
  msgid "Yesterday Visit"
543
  msgstr "بازدید دیروز"
544
 
545
  #: F:\Program
546
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1148
547
  msgid "Name"
548
  msgstr "نام"
549
 
550
  #: F:\Program
551
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1152
552
  msgid "Items"
553
  msgstr "آیتم‌ها"
554
 
555
  #: F:\Program
556
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1179
557
  msgid "Select type of search engine"
558
  msgstr "انتخاب نوع موتورجستجو"
559
 
560
  #: F:\Program
561
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1181
562
  msgid "Google"
563
  msgstr "گوگل"
564
 
565
  #: F:\Program
566
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1184
567
  msgid "Yahoo!"
568
  msgstr "یاهو!"
569
 
570
  #: F:\Program
571
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1187
572
  msgid "Bing"
573
  msgstr "بینگ"
574
 
575
  #: F:\Program
576
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1190
577
  msgid "All"
578
  msgstr "همه"
579
 
580
  #: F:\Program
581
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1221
582
  msgid "Type date for last update"
583
  msgstr "نوع تقویم برای آخرین به‌روزرسانی"
584
 
585
  #: F:\Program
586
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1223
587
  msgid "English"
588
  msgstr "میلادی"
589
 
590
  #: F:\Program
591
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1226
592
  msgid "Persian"
593
  msgstr "شمسی (فارسی)"
594
 
595
  #: F:\Program
596
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1257
597
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1259
598
  msgid "WP-Statistics"
599
  msgstr "آمارگیر"
600
 
601
  #: F:\Program
602
- #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1258
603
  msgid "Show site stats in sidebar"
604
  msgstr "نمایش آمار سایت در ابزارک"
605
 
606
- #~ msgid "Thanks"
607
- #~ msgstr "تشکر از"
608
 
609
- #~ msgid "User Online Live"
610
- #~ msgstr "کاربران آنلاین زنده"
611
 
612
- #~ msgid "Total Visit Live"
613
- #~ msgstr "کل بازدیدها زنده"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
614
 
615
  #~ msgid "(Disable)"
616
  #~ msgstr "(غیرفعال)"
@@ -624,30 +714,12 @@ msgstr "نمایش آمار سایت در ابزارک"
624
  #~ msgid "Plugin URI"
625
  #~ msgstr "آدرس افزونه"
626
 
627
- #~ msgid "Stats blog"
628
- #~ msgstr "آمار وبلاگ"
629
-
630
- #~ msgid "Stats"
631
- #~ msgstr "آمار"
632
-
633
  #~ msgid "mm"
634
  #~ msgstr "آمار بازدید"
635
 
636
  #~ msgid "and"
637
  #~ msgstr "و"
638
 
639
- #~ msgid "Added"
640
- #~ msgstr "مقدار"
641
-
642
- #~ msgid "value"
643
- #~ msgstr "افزوده شد"
644
-
645
- #~ msgid "Was"
646
- #~ msgstr "مقدار"
647
-
648
- #~ msgid "low value"
649
- #~ msgstr "کم شد"
650
-
651
  #~ msgid "d"
652
  #~ msgstr "ططظط"
653
 
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-18 23:20+0330\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: <mat404@gmail.com>\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Language: Persian\n"
14
  "X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
15
+ "X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\wp-statistics\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/wp-statistics.php:79
32
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:854
33
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1122
34
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1275
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/wp-statistics.php:64
95
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:826
96
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:842
97
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1024
98
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1074
99
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1257
 
100
  msgid "User Online"
101
  msgstr "کاربران حاضر"
102
 
103
  #: F:\Program
104
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:69
105
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:830
106
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1082
107
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1260
108
  msgid "Today Visit"
109
  msgstr "بازدید امروز"
110
 
111
  #: F:\Program
112
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:74
113
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:834
114
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1263
115
  msgid "Yesterday visit"
116
  msgstr "بازدید دیروز"
117
 
118
  #: F:\Program
119
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:84
 
 
 
 
 
 
 
 
120
  msgid "Plugin home page"
121
  msgstr "خانه‌ی افزونه"
122
 
123
  #: F:\Program
124
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:265
125
  #, php-format
126
  msgid "WP-Statistics not enabled! Please go to <a href=\"%s\">setting page</a> and enable statistics"
127
  msgstr "افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه تنظیمات</a> آمارگیر مراجعه کنید"
128
 
129
  #: F:\Program
130
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:530
131
+ msgid "Settings"
132
+ msgstr "تنظیمات"
133
 
134
  #: F:\Program
135
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:531
136
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:532
137
+ msgid "Stats Log"
138
+ msgstr "گزارش آمارها"
139
 
140
  #: F:\Program
141
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:533
142
+ msgid "Users Online"
143
+ msgstr "کاربران حاضر"
144
+
145
+ #: F:\Program
146
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:541
147
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:945
148
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1002
149
  msgid "You do not have sufficient permissions to access this page."
150
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
151
 
152
  #: F:\Program
153
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:621
154
  msgid "Are you sure?"
155
  msgstr "آیا مطمئن هستید؟"
156
 
157
  #: F:\Program
158
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:633
159
  msgid "Configuration"
160
  msgstr "پیکربندی"
161
 
162
  #: F:\Program
163
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
164
  msgid "Enable Statistics"
165
  msgstr "آمارگیر فعال شود"
166
 
167
  #: F:\Program
168
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:642
169
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
170
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:670
171
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:679
172
  msgid "Yes"
173
  msgstr "بله"
174
 
175
  #: F:\Program
176
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:646
177
  msgid "Statistics are enabled."
178
  msgstr "آمارگیر فعال است."
179
 
180
  #: F:\Program
181
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:648
182
  msgid "Statistics are disabled!"
183
  msgstr "آمارگیر غیرفعال است!"
184
 
185
  #: F:\Program
186
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:653
187
  msgid "General configuration"
188
  msgstr "پیکربندی عمومی"
189
 
190
  #: F:\Program
191
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:656
192
  msgid "Show decimals number"
193
  msgstr "نمایش اعداد به‌صورت اعشاری"
194
 
195
  #: F:\Program
196
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:662
197
  msgid "Show number stats with decimal. For examle: 3,500"
198
  msgstr "نمایش اعداد آمارگیر به‌صورت اعشاری. برای مثال: 3،500"
199
 
200
  #: F:\Program
201
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:666
202
  msgid "Show stats in menu bar"
203
  msgstr "نمایش آمار در منوبار"
204
 
205
  #: F:\Program
206
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:672
207
  msgid "Show stats in admin menu bar"
208
  msgstr "نمایش آمار در منوبار مدیریت"
209
 
210
  #: F:\Program
211
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
212
+ msgid "Daily referer of search engines"
213
+ msgstr "روزانه بودن ورودی موتورهای جستجو"
214
 
215
  #: F:\Program
216
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:681
217
+ msgid "Can be calculated daily or total search engines"
218
+ msgstr "ورودی موتور جستجو را روزانه یا کلی محاسبه می‌کند"
 
219
 
220
  #: F:\Program
221
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
222
+ msgid "Check for online users every"
223
+ msgstr "زمان بررسی برای محاسبه کاربران آنلاین هر"
224
 
225
  #: F:\Program
226
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:688
227
+ msgid "Second"
228
+ msgstr "ثانیه"
229
 
230
  #: F:\Program
231
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:690
232
+ msgid "Time for the check accurate online user in the site. Default: 60 Second"
233
+ msgstr "زمان برای بررسی دقیق کاربران حاضر در سایت. پیش‌فرض 60 ثانیه است"
234
+
235
+ #: F:\Program
236
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:694
237
+ msgid "Increase value of the total hits by"
238
  msgstr "افزایش مقدار به بازدید‌های کل"
239
 
240
  #: F:\Program
241
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:697
242
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:707
243
  msgid "Done"
244
  msgstr "انجام"
245
 
246
  #: F:\Program
247
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:700
248
  msgid "Your total visit sum with this value"
249
  msgstr "کل بازدیدها با این مقدار جمع می‌شود"
250
 
251
  #: F:\Program
252
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:704
253
+ msgid "Reduce value of the total hits by"
254
  msgstr "کاهش مقدار از بازدید‌های کل"
255
 
256
  #: F:\Program
257
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
258
  msgid "Your total visit minus with this value"
259
  msgstr "کل بازدیدها از این مقدار کم می‌شود"
260
 
261
  #: F:\Program
262
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:714
263
  msgid "Number item for show Statistics"
264
  msgstr "تعداد آیتم برای نمایش آمار"
265
 
266
  #: F:\Program
267
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:717
268
  msgid "Default 5"
269
  msgstr "پیش‌فرض 5 است"
270
 
271
  #: F:\Program
272
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:719
273
  msgid "Number for submit item in Database and show that"
274
  msgstr "تعداد برای ثبت آیتم‌های آمار در پایگاه‌داده و نمایش آن"
275
 
276
  #: F:\Program
277
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:723
278
+ msgid "Coefficient per visitor"
279
+ msgstr "ضریب محاسبه هر بازدیدکننده"
280
+
281
+ #: F:\Program
282
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:726
283
+ msgid "Default 1"
284
+ msgstr "پیش‌فرض 1 است"
285
+
286
+ #: F:\Program
287
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:728
288
+ msgid "For each visitor to account for several hits."
289
+ msgstr "تعداد محاسبه برای هربازدیدکننده."
290
+
291
+ #: F:\Program
292
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:732
293
+ msgid "The CSS Class for the containing widget"
294
+ msgstr "کلاس CSS برای ابزارک"
295
+
296
+ #: F:\Program
297
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
298
+ msgid "If empty. class=\"widget\" will be used"
299
+ msgstr "اگراین قسمت خالی باشد، از class=\"widget\" استفاده می‌کند"
300
+
301
+ #: F:\Program
302
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:739
303
  msgid "Live Statistics configuration"
304
  msgstr "پیکربندی بازدید لحظه‌ای"
305
 
306
  #: F:\Program
307
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
308
+ msgid "Refresh Stats every"
309
+ msgstr "تازه‌کردن آمار هر"
310
 
311
  #: F:\Program
312
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:745
313
+ msgid "Second(s)"
314
+ msgstr "ثانیه"
315
 
316
  #: F:\Program
317
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:748
318
  msgid "Recommended"
319
  msgstr "پیشنهاد میشود"
320
 
321
  #: F:\Program
322
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:749
323
+ msgid "To reduce pressure on the server, this defaults to 10 sec"
324
+ msgstr "به‌دلیل فشار برروی سرور، پیشنهاد می‌شود برروی زمان بالا تعیین شود. پیش‌فرض 10 ثانیه است."
325
 
326
  #: F:\Program
327
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:753
328
  msgid "Pagerank configuration"
329
  msgstr "تنظیمات رتبه‌بندی"
330
 
331
  #: F:\Program
332
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:756
333
  msgid "Your url for Google pagerank check"
334
  msgstr "آدرس شما برای بررسی رتبه‌بندی گوگل"
335
 
336
  #: F:\Program
337
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:761
338
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:771
339
+ msgid "If empty. you website url is used"
340
  msgstr "اگراین قسمت خالی باشد، از آدرس اصلی سایت استفاده می‌کند"
341
 
342
  #: F:\Program
343
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
344
  msgid "Your url for Alexa pagerank check"
345
  msgstr "آدرس شما برای بررسی رتبه‌بندی الکسا"
346
 
347
  #: F:\Program
348
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:780
349
+ msgid "Update"
350
+ msgstr "به‌روز رسانی"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
351
 
352
  #: F:\Program
353
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
354
  msgid "This plugin created by"
355
  msgstr "این افزونه توسط"
356
 
357
  #: F:\Program
358
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
359
  msgid "from"
360
  msgstr "از گروه"
361
 
362
  #: F:\Program
363
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:787
364
  msgid "group"
365
  msgstr "ساخته شده‌است"
366
 
367
  #: F:\Program
368
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:789
369
  msgid "Plugin translators"
370
  msgstr "مترجم‌های افزونه"
371
 
372
  #: F:\Program
373
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
374
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:794
375
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:795
376
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
377
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
378
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:798
379
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:799
380
  msgid "Language"
381
  msgstr "زبان"
382
 
383
  #: F:\Program
384
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:793
385
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:794
386
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:795
387
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
388
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:797
389
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:798
390
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:799
391
  msgid "by"
392
  msgstr "توسط"
393
 
394
  #: F:\Program
395
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:801
396
  msgid "for translate language files. please send files for"
397
  msgstr "لطفا فایل‌های ترجمه را به ایمیل روبرو ارسال کنید"
398
 
399
  #: F:\Program
400
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:804
401
  msgid "Show Functions"
402
  msgstr "نمایش تابع‌ها"
403
 
404
  #: F:\Program
405
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:805
406
  msgid "Report Problem"
407
  msgstr "گزارش مشکل"
408
 
409
  #: F:\Program
410
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:818
411
+ msgid "User Online Live"
412
+ msgstr "کاربران آنلاین زنده"
413
+
414
+ #: F:\Program
415
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:822
416
+ msgid "Total Visit Live"
417
+ msgstr "کل بازدیدها زنده"
418
+
419
+ #: F:\Program
420
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:838
421
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1098
422
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1266
423
  msgid "Week Visit"
424
  msgstr "بازدید هفته"
425
 
426
  #: F:\Program
427
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:846
428
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1106
429
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1269
430
  msgid "Month Visit"
431
  msgstr "بازدید ماه"
432
 
433
  #: F:\Program
434
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:850
435
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1114
436
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1272
437
  msgid "Years Visit"
438
  msgstr "بازدید سال"
439
 
440
  #: F:\Program
441
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:858
442
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1130
443
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1278
444
  msgid "Search Engine reffered"
445
  msgstr "ورودی موتورهای جستجوگر"
446
 
447
  #: F:\Program
448
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:862
449
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1146
450
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1296
451
  msgid "Total Posts"
452
  msgstr "کل نوشته‌ها"
453
 
454
  #: F:\Program
455
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:866
456
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1154
457
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1299
458
  msgid "Total Pages"
459
  msgstr "کل برگه‌ها"
460
 
461
  #: F:\Program
462
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:870
463
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1162
464
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1302
465
  msgid "Total Comments"
466
  msgstr "کل دیدگاه‌ها"
467
 
468
  #: F:\Program
469
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:874
470
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1170
471
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1305
472
  msgid "Total Spams"
473
  msgstr "کل جفنگ‌ها"
474
 
475
  #: F:\Program
476
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:878
477
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1178
478
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1308
479
  msgid "Total Users"
480
  msgstr "کل کاربرها"
481
 
482
  #: F:\Program
483
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:882
484
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1210
485
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1320
486
  msgid "Last Post Date"
487
  msgstr "تاریخ به‌روزشدن سایت"
488
 
489
  #: F:\Program
490
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:886
491
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1186
492
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1311
493
  msgid "Average Posts"
494
  msgstr "میانگین نوشته‌ها"
495
 
496
  #: F:\Program
497
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:890
498
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1194
499
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1314
500
  msgid "Average Comments"
501
  msgstr "میانگین دیدگاه‌ها"
502
 
503
  #: F:\Program
504
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:894
505
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1202
506
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1317
507
  msgid "Average Users"
508
  msgstr "میانگین کاربرها"
509
 
510
  #: F:\Program
511
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:898
512
  msgid "Total Feedburner Subscribe"
513
  msgstr "تعداد مشترک‌های فیدبرنر"
514
 
515
  #: F:\Program
516
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:902
517
  msgid "Google Pagerank"
518
  msgstr "رتبه گوگل"
519
 
520
  #: F:\Program
521
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:906
522
  msgid "Alexa Pagerank"
523
  msgstr "رتبه الکسا"
524
 
525
  #: F:\Program
526
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:910
527
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:920
528
  msgid "Hide"
529
  msgstr "مخفی"
530
 
531
  #: F:\Program
532
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:914
533
  msgid "Your Name"
534
  msgstr "نام شما"
535
 
536
  #: F:\Program
537
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:916
538
  msgid "Description Problem"
539
  msgstr "توضیحات مشکل"
540
 
541
  #: F:\Program
542
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:919
543
  msgid "Send Problem"
544
  msgstr "ارسال گزارش"
545
 
546
  #: F:\Program
547
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:927
548
  msgid "Unistall plugin"
549
  msgstr "پاک‌سازی پلاگین"
550
 
551
  #: F:\Program
552
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:933
553
  msgid "Delete all data, including tables and plugin options"
554
  msgstr "پاک‌کردن تمامی اطلاعات از قبیل جدول افزونه در پایگاه‌داده و گزینه‌های افزونه"
555
 
556
  #: F:\Program
557
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:934
558
  msgid "Uninstall"
559
  msgstr "پاک‌کردن"
560
 
561
  #: F:\Program
562
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:967
563
+ msgid "Stats weblog"
564
+ msgstr "آمار سایت"
565
 
566
  #: F:\Program
567
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:978
568
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1035
569
  msgid "No"
570
  msgstr "شماره"
571
 
572
  #: F:\Program
573
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:979
574
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1036
575
  msgid "IP"
576
  msgstr "آی‌پی"
577
 
578
  #: F:\Program
579
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:980
580
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1037
581
  msgid "Time"
582
  msgstr "زمان"
583
 
584
  #: F:\Program
585
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:981
 
586
  msgid "Referred"
587
  msgstr "هدایت شده"
588
 
589
  #: F:\Program
590
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:982
591
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1039
592
  msgid "Agent"
593
  msgstr "مشخصات مرورگر"
594
 
595
  #: F:\Program
596
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1038
597
+ msgid "Referrer"
598
+ msgstr "هدایت شده"
599
+
600
+ #: F:\Program
601
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1090
602
  msgid "Yesterday Visit"
603
  msgstr "بازدید دیروز"
604
 
605
  #: F:\Program
606
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1250
607
  msgid "Name"
608
  msgstr "نام"
609
 
610
  #: F:\Program
611
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1254
612
  msgid "Items"
613
  msgstr "آیتم‌ها"
614
 
615
  #: F:\Program
616
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1281
617
  msgid "Select type of search engine"
618
  msgstr "انتخاب نوع موتورجستجو"
619
 
620
  #: F:\Program
621
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1283
622
  msgid "Google"
623
  msgstr "گوگل"
624
 
625
  #: F:\Program
626
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1286
627
  msgid "Yahoo!"
628
  msgstr "یاهو!"
629
 
630
  #: F:\Program
631
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1289
632
  msgid "Bing"
633
  msgstr "بینگ"
634
 
635
  #: F:\Program
636
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1292
637
  msgid "All"
638
  msgstr "همه"
639
 
640
  #: F:\Program
641
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1323
642
  msgid "Type date for last update"
643
  msgstr "نوع تقویم برای آخرین به‌روزرسانی"
644
 
645
  #: F:\Program
646
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1325
647
  msgid "English"
648
  msgstr "میلادی"
649
 
650
  #: F:\Program
651
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1328
652
  msgid "Persian"
653
  msgstr "شمسی (فارسی)"
654
 
655
  #: F:\Program
656
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1359
657
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1361
658
  msgid "WP-Statistics"
659
  msgstr "آمارگیر"
660
 
661
  #: F:\Program
662
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1360
663
  msgid "Show site stats in sidebar"
664
  msgstr "نمایش آمار سایت در ابزارک"
665
 
666
+ #~ msgid "About plugin"
667
+ #~ msgstr "درباره‌ی افزونه"
668
 
669
+ #~ msgid "Plugin Version"
670
+ #~ msgstr "نسخه افزونه"
671
 
672
+ #~ msgid "Free!"
673
+ #~ msgstr "رایگان!"
674
+
675
+ #~ msgid "Get Premium version"
676
+ #~ msgstr "دریافت نسخه‌ی ویژه"
677
+
678
+ #~ msgid "Sorry! this feature is for Premium version"
679
+ #~ msgstr "متاسفم! این امکان برای نسخه‌ی ویژه است."
680
+
681
+ #~ msgid "Minute(s)"
682
+ #~ msgstr "دقیقه"
683
+
684
+ #~ msgid "Minute s)"
685
+ #~ msgstr "دقیقه"
686
+
687
+ #~ msgid "Statistics"
688
+ #~ msgstr "آماره"
689
+
690
+ #~ msgid "Online user check time"
691
+ #~ msgstr "زمان بررسی کاربران آنلاین"
692
+
693
+ #~ msgid "Each"
694
+ #~ msgstr "هر"
695
+
696
+ #~ msgid "Compute min"
697
+ #~ msgstr "دقیقه محاسبه کن"
698
+
699
+ #~ msgid "Database check time"
700
+ #~ msgstr "زمان بررسی پایگاه‌داده"
701
+
702
+ #~ msgid "Thanks"
703
+ #~ msgstr "تشکر از"
704
 
705
  #~ msgid "(Disable)"
706
  #~ msgstr "(غیرفعال)"
714
  #~ msgid "Plugin URI"
715
  #~ msgstr "آدرس افزونه"
716
 
 
 
 
 
 
 
717
  #~ msgid "mm"
718
  #~ msgstr "آمار بازدید"
719
 
720
  #~ msgid "and"
721
  #~ msgstr "و"
722
 
 
 
 
 
 
 
 
 
 
 
 
 
723
  #~ msgid "d"
724
  #~ msgstr "ططظط"
725
 
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
 
langs/wp_statistics-it_IT.mo ADDED
Binary file
langs/wp_statistics-it_IT.po ADDED
@@ -0,0 +1,481 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp-statistics\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-02-03 19:10+0330\n"
6
+ "PO-Revision-Date: 2012-02-26 22:52+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: .\n"
15
+ "X-Poedit-SearchPath-0: .\n"
16
+
17
+ #: F:\Program
18
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/actions.php:12
19
+ msgid "Please Enter value!"
20
+ msgstr "Inserire valore"
21
+
22
+ #: F:\Program
23
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/report_problem.php:20
24
+ msgid "Error! Please Enter all field"
25
+ msgstr "Inserire tutti i dati"
26
+
27
+ #: F:\Program
28
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:535
29
+ msgid "Are you sure?"
30
+ msgstr "Sei Sicuro ?"
31
+
32
+ #: F:\Program
33
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:546
34
+ msgid "Configuration"
35
+ msgstr "Configurazione"
36
+
37
+ #: F:\Program
38
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:551
39
+ msgid "Enable Statistics"
40
+ msgstr "Attiva Statistiche"
41
+
42
+ #: F:\Program
43
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:555
44
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:573
45
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:583
46
+ msgid "Yes"
47
+ msgstr "Si"
48
+
49
+ #: F:\Program
50
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:559
51
+ msgid "Statistics are enabled."
52
+ msgstr "Statistiche attivate"
53
+
54
+ #: F:\Program
55
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:561
56
+ msgid "Statistics are disabled!"
57
+ msgstr "Statistiche disattivate"
58
+
59
+ #: F:\Program
60
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:566
61
+ msgid "General configuration"
62
+ msgstr "Configurazione generale"
63
+
64
+ #: F:\Program
65
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:569
66
+ msgid "Show decimals number"
67
+ msgstr "Mostra numeri decimali"
68
+
69
+ #: F:\Program
70
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:575
71
+ msgid "Show number stats with decimal. For examle: 3,500"
72
+ msgstr "Mostra statistiche in decimale. Esempio: 3,500"
73
+
74
+ #: F:\Program
75
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:579
76
+ msgid "Show stats in menu bar"
77
+ msgstr "Statistiche nella barrà menu"
78
+
79
+ #: F:\Program
80
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:585
81
+ msgid "Show stats in admin menu bar"
82
+ msgstr "Mostra statistiche nella barrà menu"
83
+
84
+ #: F:\Program
85
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:589
86
+ msgid "Online user check time"
87
+ msgstr "Frequenza di tempo per il controllo degli utenti online"
88
+
89
+ #: F:\Program
90
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
91
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:632
92
+ msgid "Each"
93
+ msgstr "ogni"
94
+
95
+ #: F:\Program
96
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:593
97
+ msgid "Compute min"
98
+ msgstr "Calcolare min"
99
+
100
+ #: F:\Program
101
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
102
+ msgid "Time for the check accurate online user in the site. Default: 5 Minutes"
103
+ msgstr "Tempo per un accurato controllo utenti online. Normalmente: 5 minuti"
104
+
105
+ #: F:\Program
106
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:599
107
+ msgid "Increase value of the total hits"
108
+ msgstr "Incrementa in numero delle visite totali"
109
+
110
+ #: F:\Program
111
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:602
112
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:612
113
+ msgid "Done"
114
+ msgstr "Fatto"
115
+
116
+ #: F:\Program
117
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:605
118
+ msgid "Your total visit sum with this value"
119
+ msgstr "Imposta le visite totali qui"
120
+
121
+ #: F:\Program
122
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:609
123
+ msgid "Reduction value of the total hits"
124
+ msgstr "Riduci il valore delle visite totali"
125
+
126
+ #: F:\Program
127
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:615
128
+ msgid "Your total visit minus with this value"
129
+ msgstr "Riduci il valore delle visite totali"
130
+
131
+ #: F:\Program
132
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:619
133
+ msgid "Number item for show Statistics"
134
+ msgstr "Numero articoli da mostrare nelle statistiche"
135
+
136
+ #: F:\Program
137
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:622
138
+ msgid "Default 5"
139
+ msgstr "Normalmente 5"
140
+
141
+ #: F:\Program
142
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
143
+ msgid "Number for submit item in Database and show that"
144
+ msgstr "Numero articoli inseriti nel database mostrate"
145
+
146
+ #: F:\Program
147
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:627
148
+ msgid "Live Statistics configuration"
149
+ msgstr "Configurazione statistiche dal vivo"
150
+
151
+ #: F:\Program
152
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
153
+ msgid "Database check time"
154
+ msgstr "Tempo interrogazione database"
155
+
156
+ #: F:\Program
157
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:634
158
+ msgid "Minute updates"
159
+ msgstr "aggiornamento in minuti"
160
+
161
+ #: F:\Program
162
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:637
163
+ msgid "Recommended"
164
+ msgstr "Raccomandato"
165
+
166
+ #: F:\Program
167
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
168
+ msgid "Due to pressure on the server, Be set up on time. Default 1 min."
169
+ msgstr "Interrogazione server, normalmente 1 minuto."
170
+
171
+ #: F:\Program
172
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:642
173
+ msgid "Pagerank configuration"
174
+ msgstr "Configurazione Pagerank"
175
+
176
+ #: F:\Program
177
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:645
178
+ msgid "Your url for Google pagerank check"
179
+ msgstr "Il tuo collegamento al controllo pagerank di Google"
180
+
181
+ #: F:\Program
182
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:650
183
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
184
+ msgid "If this input is empty, The website url uses"
185
+ msgstr "Se questo campo è vuoto, verrà usato l'indirizzo del sito"
186
+
187
+ #: F:\Program
188
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:655
189
+ msgid "Your url for Alexa pagerank check"
190
+ msgstr "Il tuo collegamento al pagerank di Alexa"
191
+
192
+ #: F:\Program
193
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:666
194
+ msgid "About plugin"
195
+ msgstr "A proposito del Plugin"
196
+
197
+ #: F:\Program
198
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:667
199
+ msgid "Plugin Version"
200
+ msgstr "Versione Plugin"
201
+
202
+ #: F:\Program
203
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:667
204
+ msgid "Free!"
205
+ msgstr "Gratis !"
206
+
207
+ #: F:\Program
208
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:669
209
+ msgid "Get Premium version"
210
+ msgstr "Passa alla versione Premium"
211
+
212
+ #: F:\Program
213
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
214
+ msgid "This plugin created by"
215
+ msgstr "Plugin creato da"
216
+
217
+ #: F:\Program
218
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
219
+ msgid "from"
220
+ msgstr "da"
221
+
222
+ #: F:\Program
223
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
224
+ msgid "group"
225
+ msgstr "gruppo"
226
+
227
+ #: F:\Program
228
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:678
229
+ msgid "Plugin translators"
230
+ msgstr "Traduttore Plugin"
231
+
232
+ #: F:\Program
233
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:682
234
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:683
235
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
236
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
237
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:686
238
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:687
239
+ msgid "Language"
240
+ msgstr "Linguaggio"
241
+
242
+ #: F:\Program
243
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:682
244
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:683
245
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
246
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:685
247
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:686
248
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:687
249
+ msgid "by"
250
+ msgstr "by"
251
+
252
+ #: F:\Program
253
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:689
254
+ msgid "for translate language files. please send files for"
255
+ msgstr "Per tradurre il linguaggio delle voci, per favore invia a"
256
+
257
+ #: F:\Program
258
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:692
259
+ msgid "Show Functions"
260
+ msgstr "Mostra funzioni"
261
+
262
+ #: F:\Program
263
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:693
264
+ msgid "Report Problem"
265
+ msgstr "Segnala problemi"
266
+
267
+ #: F:\Program
268
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
269
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:722
270
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:914
271
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1139
272
+ msgid "User Online"
273
+ msgstr "Utenti Online"
274
+
275
+ #: F:\Program
276
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:710
277
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1142
278
+ msgid "Today Visit"
279
+ msgstr "Visite Oggi"
280
+
281
+ #: F:\Program
282
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:714
283
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1145
284
+ msgid "Yesterday visit"
285
+ msgstr "Visite Ieri"
286
+
287
+ #: F:\Program
288
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:718
289
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1148
290
+ msgid "Week Visit"
291
+ msgstr "Visite Settimana"
292
+
293
+ #: F:\Program
294
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:726
295
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1151
296
+ msgid "Month Visit"
297
+ msgstr "Visite Mese"
298
+
299
+ #: F:\Program
300
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:730
301
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1154
302
+ msgid "Years Visit"
303
+ msgstr "Visite Anno"
304
+
305
+ #: F:\Program
306
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:734
307
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1157
308
+ msgid "Total Visit"
309
+ msgstr "Visite Totali"
310
+
311
+ #: F:\Program
312
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:738
313
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1160
314
+ msgid "Search Engine reffered"
315
+ msgstr "Motore di ricerca"
316
+
317
+ #: F:\Program
318
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
319
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1178
320
+ msgid "Total Posts"
321
+ msgstr "Posts"
322
+
323
+ #: F:\Program
324
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:746
325
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1181
326
+ msgid "Total Pages"
327
+ msgstr "Pagine"
328
+
329
+ #: F:\Program
330
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:750
331
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1184
332
+ msgid "Total Comments"
333
+ msgstr "Commenti"
334
+
335
+ #: F:\Program
336
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:754
337
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1187
338
+ msgid "Total Spams"
339
+ msgstr "Spams"
340
+
341
+ #: F:\Program
342
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:758
343
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1190
344
+ msgid "Total Users"
345
+ msgstr "Utenti"
346
+
347
+ #: F:\Program
348
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:762
349
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1202
350
+ msgid "Last Post Date"
351
+ msgstr "Post data"
352
+
353
+ #: F:\Program
354
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:766
355
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1193
356
+ msgid "Average Posts"
357
+ msgstr "Media Posts"
358
+
359
+ #: F:\Program
360
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
361
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1196
362
+ msgid "Average Comments"
363
+ msgstr "Media Commenti"
364
+
365
+ #: F:\Program
366
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:774
367
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1199
368
+ msgid "Average Users"
369
+ msgstr "Media Utenti"
370
+
371
+ #: F:\Program
372
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:778
373
+ msgid "Total Feedburner Subscribe"
374
+ msgstr ""
375
+
376
+ #: F:\Program
377
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:782
378
+ msgid "Google Pagerank"
379
+ msgstr "Pagerank Google"
380
+
381
+ #: F:\Program
382
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:786
383
+ msgid "Alexa Pagerank"
384
+ msgstr "Pagerank Alexa"
385
+
386
+ #: F:\Program
387
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:790
388
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:800
389
+ msgid "Hide"
390
+ msgstr "Nascondi"
391
+
392
+ #: F:\Program
393
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:794
394
+ msgid "Your Name"
395
+ msgstr "Tuo nome"
396
+
397
+ #: F:\Program
398
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:796
399
+ msgid "Description Problem"
400
+ msgstr "Descrivi problema"
401
+
402
+ #: F:\Program
403
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:799
404
+ msgid "Send Problem"
405
+ msgstr "Invia problema"
406
+
407
+ #: F:\Program
408
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:807
409
+ msgid "Unistall plugin"
410
+ msgstr "Disinstalla plugin"
411
+
412
+ #: F:\Program
413
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:813
414
+ msgid "Delete all data, including tables and plugin options"
415
+ msgstr "Cancella tutti i dati, incluse tabelle a opzioni plugin"
416
+
417
+ #: F:\Program
418
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:814
419
+ msgid "Uninstall"
420
+ msgstr "Disinstalla"
421
+
422
+ #: F:\Program
423
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:824
424
+ msgid "Update"
425
+ msgstr "Aggiorna"
426
+
427
+ #: F:\Program
428
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:857
429
+ msgid "Stats weblog"
430
+ msgstr "Statistiche Weblog"
431
+
432
+ #: F:\Program
433
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1132
434
+ msgid "Name"
435
+ msgstr "Nome"
436
+
437
+ #: F:\Program
438
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1136
439
+ msgid "Items"
440
+ msgstr "Articoli"
441
+
442
+ #: F:\Program
443
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1163
444
+ msgid "Select type of search engine"
445
+ msgstr "Seleziona il motore di ricerca"
446
+
447
+ #: F:\Program
448
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1165
449
+ msgid "Google"
450
+ msgstr "Google"
451
+
452
+ #: F:\Program
453
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1168
454
+ msgid "Yahoo!"
455
+ msgstr "Yahoo"
456
+
457
+ #: F:\Program
458
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1171
459
+ msgid "Bing"
460
+ msgstr "Bing"
461
+
462
+ #: F:\Program
463
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1174
464
+ msgid "All"
465
+ msgstr "Tutti"
466
+
467
+ #: F:\Program
468
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1205
469
+ msgid "Type date for last update"
470
+ msgstr "Data ultimo aggiornamento"
471
+
472
+ #: F:\Program
473
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1207
474
+ msgid "English"
475
+ msgstr "Inglese"
476
+
477
+ #: F:\Program
478
+ #: Files\xampp\htdocs\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1210
479
+ msgid "Persian"
480
+ msgstr "Persiano"
481
+
langs/wp_statistics-ro_RO.mo ADDED
Binary file
langs/wp_statistics-ro_RO.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-10-14 11:20+0330\n"
6
- "PO-Revision-Date: 2011-10-21 11:33+0200\n"
7
- "Last-Translator: Luke <lktyler9@gmail.com>\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-10-14 11:20+0330\n"
6
+ "PO-Revision-Date: 2012-02-17 20:08+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-ru_RU.mo DELETED
Binary file
langs/wp_statistics-ru_RU.po DELETED
@@ -1,386 +0,0 @@
1
- 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-30 11:07+0200\n"
7
- "Last-Translator: bohgdan zograf <bozograf@gmail.com>\n"
8
- "Language-Team: Itransition <djsoldier1988@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: Russian\n"
14
- "X-Poedit-Country: RUSSIAN FEDERATION\n"
15
-
16
- #: F:\Program
17
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/actions.php:11
18
- msgid "Please Enter value!"
19
- msgstr "Пожалуйста, введите значение!"
20
-
21
- #: F:\Program
22
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/report_problem.php:19
23
- msgid "Error! Please Enter all field"
24
- msgstr "Ошибка! Пожалуйста, введите все полевые"
25
-
26
- #: F:\Program
27
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:453
28
- msgid "Configuration"
29
- msgstr "конфигурация"
30
-
31
- #: F:\Program
32
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:458
33
- msgid "Enable Statistics"
34
- msgstr "Включить Статистика"
35
-
36
- #: F:\Program
37
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:462
38
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:480
39
- msgid "Yes"
40
- msgstr "да"
41
-
42
- #: F:\Program
43
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:466
44
- msgid "Statistics are enabled."
45
- msgstr "Статистика включена."
46
-
47
- #: F:\Program
48
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
49
- msgid "Statistics are disabled!"
50
- msgstr "Статистика отключена!"
51
-
52
- #: F:\Program
53
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:473
54
- msgid "General configuration"
55
- msgstr "Общая конфигурация"
56
-
57
- #: F:\Program
58
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:476
59
- msgid "Show decimals number"
60
- msgstr "Показать номер десятичные дроби"
61
-
62
- #: F:\Program
63
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:482
64
- msgid "Show number stats with decimal. For examle: 3,500"
65
- msgstr "Показать статистику числа с десятичной. Для examle: 3500"
66
-
67
- #: F:\Program
68
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:486
69
- msgid "Online user check time"
70
- msgstr "Интернет время проверки пользователь"
71
-
72
- #: F:\Program
73
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:488
74
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:529
75
- msgid "Each"
76
- msgstr "каждый"
77
-
78
- #: F:\Program
79
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:490
80
- msgid "Compute min"
81
- msgstr "Вычислить мин"
82
-
83
- #: F:\Program
84
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:492
85
- msgid "Time for the check accurate online user in the site. Default: 5 Minutes"
86
- msgstr "Время для проверки точного онлайн пользователей на сайте. По умолчанию: 5 минут"
87
-
88
- #: F:\Program
89
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:496
90
- msgid "Increase value of the total hits"
91
- msgstr "Увеличьте значение всего хитов"
92
-
93
- #: F:\Program
94
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
95
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:509
96
- msgid "Done"
97
- msgstr "сделанный"
98
-
99
- #: F:\Program
100
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:502
101
- msgid "Your total visit sum with this value"
102
- msgstr "Ваша общая сумма посетить с этим значением"
103
-
104
- #: F:\Program
105
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:506
106
- msgid "Reduction value of the total hits"
107
- msgstr "Сокращение значение всего хитов"
108
-
109
- #: F:\Program
110
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:512
111
- msgid "Your total visit minus with this value"
112
- msgstr "Ваш общий минус посетить с этим значением"
113
-
114
- #: F:\Program
115
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:516
116
- msgid "Number item for show Statistics"
117
- msgstr "Количество пункт для показа статистики"
118
-
119
- #: F:\Program
120
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
121
- msgid "Default 5"
122
- msgstr "По умолчанию 5"
123
-
124
- #: F:\Program
125
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:521
126
- msgid "Number for submit item in Database and show that"
127
- msgstr "Количество для отправки элемент в базе данных и показать, что"
128
-
129
- #: F:\Program
130
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
131
- msgid "Live Statistics configuration"
132
- msgstr "Живая Статистика конфигурации"
133
-
134
- #: F:\Program
135
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:527
136
- msgid "Database check time"
137
- msgstr "Время проверки базы данных"
138
-
139
- #: F:\Program
140
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:531
141
- msgid "Minute updates"
142
- msgstr "минута обновления"
143
-
144
- #: F:\Program
145
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:534
146
- msgid "Recommended"
147
- msgstr "рекомендуемый"
148
-
149
- #: F:\Program
150
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:535
151
- msgid "Due to pressure on the server, Be set up on time. Default 1 min."
152
- msgstr "Из-за давления на сервере, быть созданы в срок. По умолчанию 1 мин."
153
-
154
- #: F:\Program
155
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:539
156
- msgid "Pagerank configuration"
157
- msgstr "Pagerank конфигурации"
158
-
159
- #: F:\Program
160
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:542
161
- msgid "Your url for Google pagerank check"
162
- msgstr "Ваш URL для Google PageRank проверить"
163
-
164
- #: F:\Program
165
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:547
166
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:557
167
- msgid "If this input is empty, The website url uses"
168
- msgstr "Если этот вход пустой, Сайт использует ссылки"
169
-
170
- #: F:\Program
171
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:552
172
- msgid "Your url for Alexa pagerank check"
173
- msgstr "Ваш URL для Alexa PageRank проверить"
174
-
175
- #: F:\Program
176
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:563
177
- msgid "About plugin"
178
- msgstr "О плагине"
179
-
180
- #: F:\Program
181
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:564
182
- msgid "Plugin Version"
183
- msgstr "плагин версия"
184
-
185
- #: F:\Program
186
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:564
187
- msgid "Free!"
188
- msgstr "Бесплатно!"
189
-
190
- #: F:\Program
191
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:565
192
- msgid "Get Premium version"
193
- msgstr "Получить премиум версию!"
194
-
195
- #: F:\Program
196
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:571
197
- msgid "This plugin created by"
198
- msgstr "Этот плагин создан"
199
-
200
- #: F:\Program
201
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:571
202
- msgid "from"
203
- msgstr "от"
204
-
205
- #: F:\Program
206
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:571
207
- msgid "group"
208
- msgstr "группа"
209
-
210
- #: F:\Program
211
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:572
212
- msgid "for translate language files. please send files for"
213
- msgstr "для перевода языковых файлов. пожалуйста, отправьте файлы"
214
-
215
- #: F:\Program
216
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:574
217
- msgid "Show Functions"
218
- msgstr "Показать Функции"
219
-
220
- #: F:\Program
221
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:575
222
- msgid "Report Problem"
223
- msgstr "Сообщить о проблеме"
224
-
225
- #: F:\Program
226
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:586
227
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:677
228
- msgid "User Online"
229
- msgstr "Пользователь в онлайне"
230
-
231
- #: F:\Program
232
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:587
233
- msgid "Today Visit"
234
- msgstr "Сегодня Посетителей"
235
-
236
- #: F:\Program
237
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:588
238
- msgid "Yesterday visit"
239
- msgstr "Вчера посетило"
240
-
241
- #: F:\Program
242
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:589
243
- msgid "Week Visit"
244
- msgstr "Посетило за неделю"
245
-
246
- #: F:\Program
247
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:590
248
- msgid "Month Visit"
249
- msgstr "Посетило за месяц"
250
-
251
- #: F:\Program
252
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
253
- msgid "Years Visit"
254
- msgstr "Посещения за год"
255
-
256
- #: F:\Program
257
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:592
258
- msgid "Total Visit"
259
- msgstr "Общее количество посетителей"
260
-
261
- #: F:\Program
262
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:593
263
- msgid "Search Engine reffered"
264
- msgstr "с поисковой системы"
265
-
266
- #: F:\Program
267
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:594
268
- msgid "User Online Live"
269
- msgstr "пользователей в сети"
270
-
271
- #: F:\Program
272
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
273
- msgid "Total Visit Live"
274
- msgstr "Общее число онлайн"
275
-
276
- #: F:\Program
277
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:596
278
- msgid "Total Posts"
279
- msgstr "Общее число сообщений"
280
-
281
- #: F:\Program
282
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:597
283
- msgid "Total Pages"
284
- msgstr "Общее число страниц"
285
-
286
- #: F:\Program
287
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:598
288
- msgid "Total Comments"
289
- msgstr "Общее число комментариев"
290
-
291
- #: F:\Program
292
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:599
293
- msgid "Total Spams"
294
- msgstr "Общее число спама"
295
-
296
- #: F:\Program
297
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:600
298
- msgid "Total Users"
299
- msgstr "Всего пользователей"
300
-
301
- #: F:\Program
302
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:601
303
- msgid "Last Post Date"
304
- msgstr "дата последнего сообщения"
305
-
306
- #: F:\Program
307
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:602
308
- msgid "Average Posts"
309
- msgstr "Всего сообщений"
310
-
311
- #: F:\Program
312
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:603
313
- msgid "Average Comments"
314
- msgstr "среднее кол-во комментариев"
315
-
316
- #: F:\Program
317
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
318
- msgid "Average Users"
319
- msgstr "Среднее кол-во пользователей"
320
-
321
- #: F:\Program
322
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:605
323
- msgid "Total Feedburner Subscribe"
324
- msgstr "Всего подписались"
325
-
326
- #: F:\Program
327
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:606
328
- msgid "Google Pagerank"
329
- msgstr "Google Pagerank"
330
-
331
- #: F:\Program
332
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:607
333
- msgid "Alexa Pagerank"
334
- msgstr "Alexa Pagerank"
335
-
336
- #: F:\Program
337
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
338
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:618
339
- msgid "Hide"
340
- msgstr "Спрятать"
341
-
342
- #: F:\Program
343
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:612
344
- msgid "Your Name"
345
- msgstr "Ваше Имя"
346
-
347
- #: F:\Program
348
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:614
349
- msgid "Description Problem"
350
- msgstr "Описание проблемы"
351
-
352
- #: F:\Program
353
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:617
354
- msgid "Send Problem"
355
- msgstr "Отправить проблему"
356
-
357
- #: F:\Program
358
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:628
359
- msgid "Update"
360
- msgstr "Обновить"
361
-
362
- #: F:\Program
363
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:641
364
- msgid "Stats weblog"
365
- msgstr "Статистика блога"
366
-
367
- #: F:\Program
368
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:763
369
- msgid "Name"
370
- msgstr "Имя"
371
-
372
- #: F:\Program
373
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:768
374
- msgid "Type date for last update"
375
- msgstr "Тип даты последнего обновления"
376
-
377
- #: F:\Program
378
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
379
- msgid "English"
380
- msgstr "Английский"
381
-
382
- #: F:\Program
383
- #: Files\Apserv\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:773
384
- msgid "Persian"
385
- msgstr "персидский"
386
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
langs/wp_statistics-tr.mo ADDED
Binary file
langs/wp_statistics-tr.po ADDED
@@ -0,0 +1,477 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: wp-statistics\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-01-09 16:18+0330\n"
6
+ "PO-Revision-Date: 2012-02-03 22:11+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: .\n"
15
+ "X-Poedit-SearchPath-0: .\n"
16
+
17
+ #: F:\Program
18
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/actions.php:11
19
+ msgid "Please Enter value!"
20
+ msgstr "lütfen bir deger yaziniz!"
21
+
22
+ #: F:\Program
23
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/report_problem.php:19
24
+ msgid "Error! Please Enter all field"
25
+ msgstr "Hata! Lütfen tüm alanları doldurun"
26
+
27
+ #: F:\Program
28
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
29
+ msgid "Are you sure?"
30
+ msgstr "emin misiniz?"
31
+
32
+ #: F:\Program
33
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:494
34
+ msgid "Configuration"
35
+ msgstr "konfigürasyon"
36
+
37
+ #: F:\Program
38
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
39
+ msgid "Enable Statistics"
40
+ msgstr "İstatistik aktive olsun"
41
+
42
+ #: F:\Program
43
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:503
44
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:521
45
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:531
46
+ msgid "Yes"
47
+ msgstr "Evet"
48
+
49
+ #: F:\Program
50
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:507
51
+ msgid "Statistics are enabled."
52
+ msgstr "İstatistik aktiftir."
53
+
54
+ #: F:\Program
55
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:509
56
+ msgid "Statistics are disabled!"
57
+ msgstr "İstatistik aktif değildir!"
58
+
59
+ #: F:\Program
60
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:514
61
+ msgid "General configuration"
62
+ msgstr "Genel konfigürasyon"
63
+
64
+ #: F:\Program
65
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:517
66
+ msgid "Show decimals number"
67
+ msgstr "Ondalık sayılar olarak gösterilsin"
68
+
69
+ #: F:\Program
70
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
71
+ msgid "Show number stats with decimal. For examle: 3,500"
72
+ msgstr "İstatistik Ondalık sayılar olarak gösterilsin. 3.500 Gibi"
73
+
74
+ #: F:\Program
75
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:527
76
+ msgid "Show stats in menu bar"
77
+ msgstr "istatistikleri Menü barda göster"
78
+
79
+ #: F:\Program
80
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:533
81
+ msgid "Show stats in admin menu bar"
82
+ msgstr "istatistikleri Admin Menü barinda göster"
83
+
84
+ #: F:\Program
85
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:537
86
+ msgid "Online user check time"
87
+ msgstr "Online kisileri Inceleme zamani"
88
+
89
+ #: F:\Program
90
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:539
91
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:580
92
+ msgid "Each"
93
+ msgstr "her"
94
+
95
+ #: F:\Program
96
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:541
97
+ msgid "Compute min"
98
+ msgstr "dakika hesapla"
99
+
100
+ #: F:\Program
101
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:543
102
+ msgid "Time for the check accurate online user in the site. Default: 5 Minutes"
103
+ msgstr "Online kisileri Inceleme zamani.Varsayılan 5 dakikadır"
104
+
105
+ #: F:\Program
106
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:547
107
+ msgid "Increase value of the total hits"
108
+ msgstr "Toplam hite miktarını artırın"
109
+
110
+ #: F:\Program
111
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:550
112
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:560
113
+ msgid "Done"
114
+ msgstr "yapılmış"
115
+
116
+ #: F:\Program
117
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:553
118
+ msgid "Your total visit sum with this value"
119
+ msgstr "toplam hit bu miktarla toplanacak"
120
+
121
+ #: F:\Program
122
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:557
123
+ msgid "Reduction value of the total hits"
124
+ msgstr "toplam hiten azalt"
125
+
126
+ #: F:\Program
127
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:563
128
+ msgid "Your total visit minus with this value"
129
+ msgstr "toplam hit bu miktardan eksilecek"
130
+
131
+ #: F:\Program
132
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:567
133
+ msgid "Number item for show Statistics"
134
+ msgstr "Istatistiklerini görüntülemek için öğe sayısı"
135
+
136
+ #: F:\Program
137
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:570
138
+ msgid "Default 5"
139
+ msgstr "Varsayılan 5"
140
+
141
+ #: F:\Program
142
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:572
143
+ msgid "Number for submit item in Database and show that"
144
+ msgstr "öğe göndermek sayısı database icin"
145
+
146
+ #: F:\Program
147
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:575
148
+ msgid "Live Statistics configuration"
149
+ msgstr "Canlı İstatistik konfigürasyonu"
150
+
151
+ #: F:\Program
152
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:578
153
+ msgid "Database check time"
154
+ msgstr "zamanda , database kontrol edilsin"
155
+
156
+ #: F:\Program
157
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:582
158
+ msgid "Minute updates"
159
+ msgstr "dakikada güncelleme"
160
+
161
+ #: F:\Program
162
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:585
163
+ msgid "Recommended"
164
+ msgstr "tavsiye ediliyor"
165
+
166
+ #: F:\Program
167
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:586
168
+ msgid "Due to pressure on the server, Be set up on time. Default 1 min."
169
+ msgstr "Sunucu üzerinde baskı nedeniyle yuksek zaman önerilmektedir.Varsayılan olarak 1 dakikadır."
170
+
171
+ #: F:\Program
172
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:590
173
+ msgid "Pagerank configuration"
174
+ msgstr "PageRank konfigürasyon"
175
+
176
+ #: F:\Program
177
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:593
178
+ msgid "Your url for Google pagerank check"
179
+ msgstr "Google sıralaması için Adresiniz"
180
+
181
+ #: F:\Program
182
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:598
183
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
184
+ msgid "If this input is empty, The website url uses"
185
+ msgstr "Bu alan boş ise, sitenin adresini kullanır"
186
+
187
+ #: F:\Program
188
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:603
189
+ msgid "Your url for Alexa pagerank check"
190
+ msgstr "Alexa Rating Adresiniz"
191
+
192
+ #: F:\Program
193
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:614
194
+ msgid "About plugin"
195
+ msgstr "plugin hakkında"
196
+
197
+ #: F:\Program
198
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:615
199
+ msgid "Plugin Version"
200
+ msgstr "Plugin Versionu"
201
+
202
+ #: F:\Program
203
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:615
204
+ msgid "Free!"
205
+ msgstr "Bedava!"
206
+
207
+ #: F:\Program
208
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:617
209
+ msgid "Get Premium version"
210
+ msgstr "Professional Edition alın"
211
+
212
+ #: F:\Program
213
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
214
+ msgid "This plugin created by"
215
+ msgstr "plugini yazan"
216
+
217
+ #: F:\Program
218
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
219
+ msgid "from"
220
+ msgstr "itibaren"
221
+
222
+ #: F:\Program
223
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:624
224
+ msgid "group"
225
+ msgstr "grup"
226
+
227
+ #: F:\Program
228
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:626
229
+ msgid "Plugin translators"
230
+ msgstr "plugin tercümanlari"
231
+
232
+ #: F:\Program
233
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
234
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:631
235
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:632
236
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:633
237
+ msgid "Language"
238
+ msgstr "Dil"
239
+
240
+ #: F:\Program
241
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:630
242
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:631
243
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:632
244
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:633
245
+ msgid "by"
246
+ msgstr "tarafından"
247
+
248
+ #: F:\Program
249
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:635
250
+ msgid "for translate language files. please send files for"
251
+ msgstr "lutfen çevrilmiş dosyalari karşidaki e-postaya Gönderin"
252
+
253
+ #: F:\Program
254
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:638
255
+ msgid "Show Functions"
256
+ msgstr "Fonksiyonlari göster"
257
+
258
+ #: F:\Program
259
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:639
260
+ msgid "Report Problem"
261
+ msgstr "Problem bildir"
262
+
263
+ #: F:\Program
264
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:652
265
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:668
266
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:859
267
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1071
268
+ msgid "User Online"
269
+ msgstr "Online"
270
+
271
+ #: F:\Program
272
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:656
273
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1074
274
+ msgid "Today Visit"
275
+ msgstr "Bu gun"
276
+
277
+ #: F:\Program
278
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:660
279
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1077
280
+ msgid "Yesterday visit"
281
+ msgstr "Dun"
282
+
283
+ #: F:\Program
284
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:664
285
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1080
286
+ msgid "Week Visit"
287
+ msgstr "Bu hafta"
288
+
289
+ #: F:\Program
290
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:672
291
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1083
292
+ msgid "Month Visit"
293
+ msgstr "Bu Ay"
294
+
295
+ #: F:\Program
296
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:676
297
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1086
298
+ msgid "Years Visit"
299
+ msgstr "Bu yil"
300
+
301
+ #: F:\Program
302
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:680
303
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1089
304
+ msgid "Total Visit"
305
+ msgstr "Toplam Hit"
306
+
307
+ #: F:\Program
308
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:684
309
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1092
310
+ msgid "Search Engine reffered"
311
+ msgstr "Arama Motorundan girenler"
312
+
313
+ #: F:\Program
314
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:688
315
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1110
316
+ msgid "Total Posts"
317
+ msgstr "Toplam postlar"
318
+
319
+ #: F:\Program
320
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:692
321
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1113
322
+ msgid "Total Pages"
323
+ msgstr "Toplam sayfalar"
324
+
325
+ #: F:\Program
326
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:696
327
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1116
328
+ msgid "Total Comments"
329
+ msgstr "Toplam yorumlar"
330
+
331
+ #: F:\Program
332
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:700
333
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1119
334
+ msgid "Total Spams"
335
+ msgstr "Toplam spamler"
336
+
337
+ #: F:\Program
338
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:704
339
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1122
340
+ msgid "Total Users"
341
+ msgstr "Toplam Kullanıcılar"
342
+
343
+ #: F:\Program
344
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:708
345
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1134
346
+ msgid "Last Post Date"
347
+ msgstr "son güncelleme tarihi"
348
+
349
+ #: F:\Program
350
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:712
351
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1125
352
+ msgid "Average Posts"
353
+ msgstr "Ortalama postlar"
354
+
355
+ #: F:\Program
356
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:716
357
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1128
358
+ msgid "Average Comments"
359
+ msgstr "Ortalama yorumlar"
360
+
361
+ #: F:\Program
362
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:720
363
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1131
364
+ msgid "Average Users"
365
+ msgstr "Ortalama kullanıcılar"
366
+
367
+ #: F:\Program
368
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:724
369
+ msgid "Total Feedburner Subscribe"
370
+ msgstr "Feedburner abone sayısı"
371
+
372
+ #: F:\Program
373
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:728
374
+ msgid "Google Pagerank"
375
+ msgstr "Google Pagerank"
376
+
377
+ #: F:\Program
378
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:732
379
+ msgid "Alexa Pagerank"
380
+ msgstr "Alexa Pagerank"
381
+
382
+ #: F:\Program
383
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
384
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:746
385
+ msgid "Hide"
386
+ msgstr "gizli"
387
+
388
+ #: F:\Program
389
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
390
+ msgid "Your Name"
391
+ msgstr "isminiz"
392
+
393
+ #: F:\Program
394
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:742
395
+ msgid "Description Problem"
396
+ msgstr "sorun"
397
+
398
+ #: F:\Program
399
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:745
400
+ msgid "Send Problem"
401
+ msgstr "Problemi gonder"
402
+
403
+ #: F:\Program
404
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:753
405
+ msgid "Unistall plugin"
406
+ msgstr "plugini kaldir"
407
+
408
+ #: F:\Program
409
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:759
410
+ msgid "Delete all data, including tables and plugin options"
411
+ msgstr "pluginin tum opsiyonlarin database den Temizle"
412
+
413
+ #: F:\Program
414
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:760
415
+ msgid "Uninstall"
416
+ msgstr "Kaldir"
417
+
418
+ #: F:\Program
419
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:770
420
+ msgid "Update"
421
+ msgstr "Güncelleme"
422
+
423
+ #: F:\Program
424
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:803
425
+ msgid "Stats weblog"
426
+ msgstr "site İstatistikleri"
427
+
428
+ #: F:\Program
429
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1064
430
+ msgid "Name"
431
+ msgstr "Ad"
432
+
433
+ #: F:\Program
434
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1068
435
+ msgid "Items"
436
+ msgstr "Öğeler"
437
+
438
+ #: F:\Program
439
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1095
440
+ msgid "Select type of search engine"
441
+ msgstr "Arama motoru türü seçin"
442
+
443
+ #: F:\Program
444
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1097
445
+ msgid "Google"
446
+ msgstr "Google"
447
+
448
+ #: F:\Program
449
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1100
450
+ msgid "Yahoo!"
451
+ msgstr "Yahoo!"
452
+
453
+ #: F:\Program
454
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1103
455
+ msgid "Bing"
456
+ msgstr "Bing"
457
+
458
+ #: F:\Program
459
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1106
460
+ msgid "All"
461
+ msgstr "hepsi"
462
+
463
+ #: F:\Program
464
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1137
465
+ msgid "Type date for last update"
466
+ msgstr "Son güncelleme tarihini yazıniz"
467
+
468
+ #: F:\Program
469
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1139
470
+ msgid "English"
471
+ msgstr "English"
472
+
473
+ #: F:\Program
474
+ #: Files\AppServ\www\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:1142
475
+ msgid "Persian"
476
+ msgstr "English"
477
+
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.3
8
 
9
  Summary statistics of blog.
10
 
@@ -21,8 +21,11 @@ Features:
21
  * Years Visit
22
  * Total Visit
23
  * Search Engine reffered (Google, Yahoo, Bing)
24
- * User Online Live [Premium Version](http://www.wpbazar.com/products/wp-statistics-premium)
25
- * Total Visit Live [Premium Version](http://www.wpbazar.com/products/wp-statistics-premium)
 
 
 
26
  * Total Posts
27
  * Total Pages
28
  * Total Comments
@@ -45,10 +48,13 @@ Language Support:
45
  * Persian
46
  * Portuguese [Thanks](http://www.musicalmente.info/)
47
  * Romanian [Thanks Luke Tyler](http://www.nobelcom.com/)
48
- * French Thanks Anice Gnampa
49
  * Russian [Thanks Igor Dubilej](http://www.iflexion.com/)
50
  * Spanish Thanks Jose
51
  * Arabic [Thanks Hammad Shammari](http://www.facebook.com/aboHatim)
 
 
 
52
 
53
  Send email for Translation files: mst404[a]gmail[dot].com
54
  for translate, please open langs/default.po by Poedit and translate strings.
@@ -117,6 +123,29 @@ a plugin for displaying Summary statistics of blog.
117
  1. Screen shot (screenshot-2.png) in WP-Statistics Widget Page
118
 
119
  == Upgrade Notice ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  = 2.2.3 =
121
  * Optimized Counting.
122
  * Added Arabic language.
@@ -187,6 +216,29 @@ a plugin for displaying Summary statistics of blog.
187
  * Start plugin
188
 
189
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  = 2.2.3 =
191
  * Optimized Counting.
192
  * Added Arabic 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.5
8
 
9
  Summary statistics of blog.
10
 
21
  * Years Visit
22
  * Total Visit
23
  * Search Engine reffered (Google, Yahoo, Bing)
24
+ * User Online Live
25
+ * Total Visit Live
26
+ * Increased to visit.
27
+ * Reduced to visit.
28
+ * Coefficient statistics for each user.
29
  * Total Posts
30
  * Total Pages
31
  * Total Comments
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)
55
+ * Turkish [Thanks aidinMC](http://www.artadl.ir/)
56
+ * Italian [Thanks Tony Bellardi](http://www.tonybellardi.com/)
57
+ * German [Thanks Andreas Martin](http://www.andreasmartin.com/)
58
 
59
  Send email for Translation files: mst404[a]gmail[dot].com
60
  for translate, please open langs/default.po by Poedit and translate strings.
123
  1. Screen shot (screenshot-2.png) in WP-Statistics Widget Page
124
 
125
  == Upgrade Notice ==
126
+ = 2.2.5 =
127
+ * The security problem was solved. Please be sure to update!
128
+ * Redundancy in French translation.
129
+ * Add CSS Class for the containing widget. (Thanks Luai Mohammed).
130
+ * Add daily or total search engines in setting page.
131
+ * Using wordpress jQuery in setting page.
132
+
133
+ = 2.2.4 =
134
+ * Added Turkish language.
135
+ * Added Italian language.
136
+ * Added German language.
137
+ * Arabic language was solved.
138
+ * Romanian language was solved.
139
+ * The words in setting page were complete. (Thanks Will Abbott) default.po file is Updated.
140
+ * The change of time from minutes to seconds to check users online.
141
+ * Ignoring search engine crawler.
142
+ * Added features premium version to free version.
143
+ * Added user online live.
144
+ * Added total visit live.
145
+ * Added Increased to visit.
146
+ * Added Reduced to visit.
147
+ * Added Coefficient statistics for each user.
148
+
149
  = 2.2.3 =
150
  * Optimized Counting.
151
  * Added Arabic language.
216
  * Start plugin
217
 
218
  == Changelog ==
219
+ = 2.2.5 =
220
+ * The security problem was solved. Please be sure to update!
221
+ * Redundancy in French translation.
222
+ * Add CSS Class for the containing widget. (Thanks Luai Mohammed).
223
+ * Add daily or total search engines in setting page.
224
+ * Using wordpress jQuery in setting page.
225
+
226
+ = 2.2.4 =
227
+ * Added Turkish language.
228
+ * Added Italian language.
229
+ * Added German language.
230
+ * Arabic language was solved.
231
+ * Romanian language was solved.
232
+ * The words in setting page were complete. (Thanks Will Abbott) default.po file is Updated.
233
+ * The change of time from minutes to seconds to check users online.
234
+ * Ignoring search engine crawler.
235
+ * Added features premium version to free version.
236
+ * Added user online live.
237
+ * Added total visit live.
238
+ * Added Increased to visit.
239
+ * Added Reduced to visit.
240
+ * Added Coefficient statistics for each user.
241
+
242
  = 2.2.3 =
243
  * Optimized Counting.
244
  * Added Arabic 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,60 +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');
16
- $get_do[5] = delete_option('items_statistics');
17
- $get_do[6] = delete_option('pagerank_google_url');
18
- $get_do[7] = delete_option('pagerank_alexa_url');
 
 
19
 
20
- // Options (widget page)
21
- $get_dw[2] = delete_option('useronline_widget');
22
- $get_dw[3] = delete_option('tvisit_widget');
23
- $get_dw[4] = delete_option('yvisit_widget');
24
- $get_dw[5] = delete_option('wvisit_widget');
25
- $get_dw[6] = delete_option('mvisit_widget');
26
- $get_dw[7] = delete_option('ysvisit_widget');
27
- $get_dw[8] = delete_option('ttvisit_widget');
28
- $get_dw[9] = delete_option('ser_widget');
29
- $get_dw[10] = delete_option('select_se');
30
- $get_dw[11] = delete_option('tp_widget');
31
- $get_dw[12] = delete_option('tpg_widget');
32
- $get_dw[13] = delete_option('tc_widget');
33
- $get_dw[14] = delete_option('ts_widget');
34
- $get_dw[15] = delete_option('tu_widget');
35
- $get_dw[16] = delete_option('ap_widget');
36
- $get_dw[17] = delete_option('ac_widget');
37
- $get_dw[18] = delete_option('au_widget');
38
- $get_dw[19] = delete_option('lpd_widget');
39
- $get_dw[20] = delete_option('select_lps');
40
 
41
- if($get_dt[1]){
42
- echo $table_prefix."statistics_date ".__('deleted!', 'wp_statistics')."<br />";
43
- }
44
- if($get_dt[2]){
45
- echo $table_prefix."statistics_reffered ".__('deleted!', 'wp_statistics')."<br />";
46
- }
47
- if($get_dt[3]){
48
- echo $table_prefix."statistics_useronline ".__('deleted!', 'wp_statistics')."<br />";
49
- }
50
- if($get_dt[4]){
51
- echo $table_prefix."statistics_visits ".__('deleted!', 'wp_statistics')."<br />";
52
- }
53
 
54
- if($get_do[3] == true){
55
- echo "<p>".__('All plugin data is deleted', 'wp_statistics')."</p>";
56
- echo "<p><a href='".get_bloginfo('url')."/wp-admin/plugins.php'>".__('Disable plugin', 'wp_statistics')."</a></p>";
 
 
 
57
  } else {
58
- echo __('plugin options have been deleted', 'wp_statistics');
59
  }
60
  ?>
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
  ?>
wp-statistics-totalvisit-live.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <?php
2
+ require('../../../wp-blog-header.php');
3
+ global $wpdb, $table_prefix;
4
+
5
+ $count_total = $wpdb->get_var("SELECT total FROM {$table_prefix}statistics_visits");
6
+ echo $count_total;
7
+ ?>
wp-statistics-useronline-live.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
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");
6
+ echo $get_users;
7
+ ?>
wp-statistics.php CHANGED
@@ -3,7 +3,7 @@
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.3
7
  Author: Mostafa Soufi
8
  Author URI: http://iran98.org/
9
  License: GPL2
@@ -33,6 +33,20 @@ License: GPL2
33
  $get_useragent = $_SERVER['HTTP_USER_AGENT'];
34
  $get_userip = $_SERVER['REMOTE_ADDR'];
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  function wp_statistics_menubar()
37
  {
38
  global $wp_admin_bar;
@@ -82,6 +96,8 @@ License: GPL2
82
  {
83
  global $wp_statistics_db_version, $table_prefix;
84
  $table_visit = $table_prefix."statistics_visits";
 
 
85
  $table_dates = $table_prefix."statistics_date";
86
  $table_users = $table_prefix."statistics_useronline";
87
  $table_referred = $table_prefix."statistics_reffered";
@@ -119,15 +135,13 @@ License: GPL2
119
  time DATETIME,
120
  agent char(255))");
121
 
122
- if($create_visit_table) {
123
- $primary_visit_value = ("INSERT INTO ".$table_visit."
124
- (today, yesterday, week, month, year, total, google, yahoo, bing) VALUES
125
- (0, 0, 0, 0, 0, 0, 0, 0, 0)");
126
 
127
- $primary_date_value = ("INSERT INTO ".$table_dates."
128
- (last_counter, last_week, last_month, last_year, timestamp, last_visit) VALUES
129
- ('00-00-00', '".$get_week."', '".$get_month."', '".$get_year."', '".$time_1."', '".$get_date."')");
130
- }
131
 
132
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
133
 
@@ -142,42 +156,57 @@ License: GPL2
142
  add_option('wp_statistics_db_version', 'wp_statistics_db_version');
143
  }
144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
145
  function wp_statistics()
146
  {
147
- global $wpdb, $table_prefix, $get_date, $get_now, $get_week, $get_month, $get_year, $get_referred, $get_userip, $get_useragent;
148
 
149
  $get_dates_row = $wpdb->get_row("SELECT * FROM {$table_prefix}statistics_date");
150
 
151
- if( ($get_dates_row->last_visit) != $get_date && !is_admin())
152
  {
153
- if( ($get_dates_row->last_counter) == $get_now )
154
- {
155
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET today = today+1, total = total+1");
156
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_visit = '".$get_date."'");
157
  } else {
158
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET yesterday = today, total = total+1");
159
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET today = 0");
160
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_counter = '".$get_now."', last_visit = '".$get_date."'");
161
  }
162
- if( ($get_dates_row->last_week) == $get_week )
163
- {
164
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET week = week+1");
165
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_week = '".$get_week."'");
166
  } else {
167
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET week = 0");
168
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_week = '".$get_week."'");
169
  }
170
- if( ($get_dates_row->last_month) == $get_month )
171
- {
172
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET month = month+1");
173
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_month = '".$get_month."'");
174
  } else {
175
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET month = 0");
176
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_month = '".$get_month."'");
177
  }
178
- if( ($get_dates_row->last_year) == $get_year )
179
- {
180
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET year = year+1");
181
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_year = '".$get_year."'");
182
  } else {
183
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET year = 0");
@@ -185,15 +214,32 @@ License: GPL2
185
  }
186
  }
187
 
188
- if(strstr($get_referred, 'google.com'))
189
  {
190
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET google = google+1");
191
- } else if(strstr($get_referred, 'yahoo.com'))
192
- {
193
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET yahoo = yahoo+1");
194
- } else if(strstr($get_referred, 'bing.com'))
195
- {
196
- $wpdb->query("UPDATE {$table_prefix}statistics_visits SET bing = bing+1");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  }
198
 
199
  $get_items_statistics = get_option('items_statistics');
@@ -221,7 +267,7 @@ License: GPL2
221
 
222
  if(get_option('enable_stats'))
223
  {
224
- add_action('init', 'wp_statistics');
225
  } else {
226
  add_action('admin_notices', 'wp_statistics_not_enable');
227
  }
@@ -232,13 +278,12 @@ License: GPL2
232
  global $wpdb, $table_prefix, $get_date, $get_referred, $get_useragent, $get_userip;
233
  $timestamp = date("U");
234
 
235
- $get_time_useronline = get_option('time_useronline');
236
 
237
- if(!$get_time_useronline)
238
  {
239
- $get_time_useronline = '1'; // Default value for check accurate user online
240
  }
241
- $get_time_useronline = $get_time_useronline * 30; // Per seconds.
242
 
243
  $get_ip = $wpdb->get_var("SELECT * FROM {$table_prefix}statistics_useronline WHERE ip = '".$get_userip."'");
244
  if($get_ip)
@@ -248,7 +293,7 @@ License: GPL2
248
  $wpdb->query("INSERT INTO {$table_prefix}statistics_useronline(ip, timestamp, time, referred, agent) VALUES ('".$get_userip."', '".$timestamp."', '".$get_date."', '".$get_referred."', '".$get_useragent."')");
249
  }
250
 
251
- $time = $timestamp - $get_time_useronline;
252
  $wpdb->get_var("DELETE FROM {$table_prefix}statistics_useronline WHERE timestamp < '".$time."'");
253
 
254
  $get_users = $wpdb->get_var("SELECT COUNT(ip) FROM {$table_prefix}statistics_useronline");
@@ -348,6 +393,36 @@ License: GPL2
348
  }
349
  }
350
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
351
  function wp_statistics_countposts($type=publish)
352
  {
353
  $count_posts = wp_count_posts();
@@ -452,9 +527,10 @@ License: GPL2
452
  {
453
  if (function_exists('add_options_page'))
454
  {
455
- add_menu_page(__('Statistics', 'wp_statistics'), __('Statistics', 'wp_statistics'), 'manage_options', 'wp-statistics', 'wp_statistics_config_permission', plugin_dir_url( __FILE__ ).'/images/icon.png');
456
- add_submenu_page( 'wp-statistics', __('Stats weblog', 'wp_statistics'), __('Stats weblog', 'wp_statistics'), 'manage_options', 'wp-statistics/stats', 'wp_statistics_stats_permission');
457
- add_submenu_page( 'wp-statistics', __('User Online', 'wp_statistics'), __('User Online', 'wp_statistics'), 'manage_options', 'wp-statistics/online', 'wp_statistics_online_permission');
 
458
  }
459
  }
460
 
@@ -470,73 +546,84 @@ License: GPL2
470
  register_setting('wp_statistics_options', 'enable_stats');
471
  register_setting('wp_statistics_options', 'enable_decimals');
472
  register_setting('wp_statistics_options', 'enable_wps_adminbar');
473
- register_setting('wp_statistics_options', 'time_useronline');
474
  register_setting('wp_statistics_options', 'items_statistics');
 
 
475
  register_setting('wp_statistics_options', 'pagerank_google_url');
476
  register_setting('wp_statistics_options', 'pagerank_alexa_url');
477
  }
478
  }?>
479
 
480
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js" type="text/javascript"></script>
481
  <script type="text/javascript">
482
- $(document).ready(function(){
483
- $("span#increase_total_visit").click(function(){
484
- var total_increase_value = $("input#increase_total_visit").val();
485
- $("input#increase_total_visit").attr("disabled", "disabled");
486
- $("span#increase_total_visit").attr("disabled", "disabled");
487
- $("div#result_increase_total_visit").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
488
- $.post("<?php echo plugin_dir_url( __FILE__ );?>/actions.php",{increase_value:total_increase_value},function(result){
489
- $("div#result_increase_total_visit").html(result);
490
- $("input#increase_total_visit").removeAttr("disabled");
491
- $("span#increase_total_visit").removeAttr("disabled");
 
492
  });
493
  });
494
 
495
- $("span#reduction_total_visit").click(function(){
496
- var total_reduction_value = $("input#reduction_total_visit").val();
497
- $("input#reduction_total_visit").attr("disabled", "disabled");
498
- $("span#reduction_total_visit").attr("disabled", "disabled");
499
- $("div#result_reduction_total_visit").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
500
- $.post("<?php echo plugin_dir_url( __FILE__ );?>/actions.php",{reduction_value:total_reduction_value},function(result){
501
- $("div#result_reduction_total_visit").html(result);
502
- $("input#reduction_total_visit").removeAttr("disabled");
503
- $("span#reduction_total_visit").removeAttr("disabled");
 
504
  });
505
  });
506
 
507
- $("span#show_function").click(function(){
508
- $("div#report_problem").slideUp(1000);
509
- $("ul#functions_list").slideDown(1000, function(){
510
- $("ul#functions_list code").fadeIn(1000);
 
 
511
  });
512
  });
513
 
514
- $("span#hide_function").click(function(){
515
- $("ul#functions_list").slideUp(1000);
 
516
  });
517
 
518
- $("span#hide_report").click(function(){
519
- $("div#report_problem").slideUp(1000);
 
520
  });
521
 
522
- $("span#report_problem").click(function(){
523
- $("ul#functions_list").slideUp(1000);
524
- $("div#report_problem").slideDown(1000);
 
525
  });
526
 
527
- $("span#send_report").click(function(){
528
- var your_name = $("input#your_name").val();
529
- var your_report = $("textarea#your_report").val();
530
- $("div#result_problem").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
531
- $("div#result_problem").load("<?php echo plugin_dir_url( __FILE__ );?>/report_problem.php", {y_name:your_name, d_report:your_report});
 
532
  });
533
 
534
- $("span#uninstall").click(function(){
 
535
  var uninstall = confirm("<?php _e('Are you sure?', 'wp_statistics'); ?>");
536
 
537
- if(uninstall) {
538
- $("div#result_uninstall").html("<img src='<?php echo plugin_dir_url( __FILE__ ); ?>images/loading.gif'/>");
539
- $("div#result_uninstall").load('<?php echo plugin_dir_url(__FILE__); ?>/uninstall.php');
 
540
  }
541
  });
542
  });
@@ -586,17 +673,25 @@ License: GPL2
586
  </tr>
587
 
588
  <tr>
589
- <td><?php _e('Online user check time', 'wp_statistics'); ?>:</td>
 
 
 
 
 
 
 
 
 
590
  <td>
591
- <span style="font-size:10px;"><?php _e('Each', 'wp_statistics'); ?></span>
592
- <input type="text" name="time_useronline" style="direction:ltr; width:60px" maxlength="3" value="<?php echo get_option('time_useronline'); ?>"/>
593
- <span style="font-size:10px;"><?php _e('Compute min', 'wp_statistics'); ?></span>
594
  </td>
595
- <td><span style="font-size:11px;">(<?php _e('Time for the check accurate online user in the site. Default: 5 Minutes', 'wp_statistics'); ?>)</span></td>
596
  </tr>
597
 
598
  <tr>
599
- <td><?php _e('Increase value of the total hits', 'wp_statistics'); ?>:</td>
600
  <td>
601
  <input type="text" name="increase_total_visit" id="increase_total_visit" style="direction:ltr; width:100px" maxlength="10"/>
602
  <span class="button" id="increase_total_visit" style="width:50px;"><?php _e('Done', 'wp_statistics'); ?></span>
@@ -606,7 +701,7 @@ License: GPL2
606
  </tr>
607
 
608
  <tr>
609
- <td><?php _e('Reduction value of the total hits', 'wp_statistics'); ?>:</td>
610
  <td>
611
  <input type="text" name="reduction_total_visit" id="reduction_total_visit" style="direction:ltr; width:100px" maxlength="10"/>
612
  <span class="button" id="reduction_total_visit" style="width:50px;"><?php _e('Done', 'wp_statistics'); ?></span>
@@ -624,18 +719,34 @@ License: GPL2
624
  <td><span style="font-size:11px;">(<?php _e('Number for submit item in Database and show that', 'wp_statistics'); ?>)</span></td>
625
  </tr>
626
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
627
  <tr><th><h3><?php _e('Live Statistics configuration', 'wp_statistics'); ?></h4></th></tr>
628
 
629
  <tr>
630
- <td><?php _e('Database check time', 'wp_statistics'); ?>:</td>
631
  <td>
632
- <span style="font-size:10px;"><?php _e('Each', 'wp_statistics'); ?></span>
633
- <input type="text" style="direction:ltr; width:60px" maxlength="3" disabled="disable"/>
634
- <span style="font-size:10px;"><?php _e('Minute updates', 'wp_statistics'); ?></span>
635
  </td>
636
  <td>
637
  <span style="font-size:11px; color:#FF0000;"><?php _e('Recommended', 'wp_statistics'); ?></span>
638
- <span style="font-size:11px;">(<?php _e('Due to pressure on the server, Be set up on time. Default 1 min.', 'wp_statistics'); ?>)</span>
639
  </td>
640
  </tr>
641
 
@@ -647,7 +758,7 @@ License: GPL2
647
  <input type="text" name="pagerank_google_url" style="direction:ltr; width:200px" value="<?php echo get_option('pagerank_google_url'); ?>"/>
648
  </td>
649
  <td>
650
- <span style="font-size:11px;">(<?php _e('If this input is empty, The website url uses', 'wp_statistics'); ?>)</span>
651
  </td>
652
  </tr>
653
 
@@ -657,18 +768,18 @@ License: GPL2
657
  <input type="text" name="pagerank_alexa_url" style="direction:ltr; width:200px" value="<?php echo get_option('pagerank_alexa_url'); ?>"/>
658
  </td>
659
  <td>
660
- <span style="font-size:11px;">(<?php _e('If this input is empty, The website url uses', 'wp_statistics'); ?>)</span>
661
  </td>
662
  </tr>
663
 
664
  <tr>
665
- <th colspan="2">
666
- <h3><?php _e('About plugin', 'wp_statistics'); ?></h4>
667
- <?php _e('Plugin Version', 'wp_statistics'); ?>: <?php _e('Free!', 'wp_statistics'); ?>
668
- <a href="http://www.wpbazar.com/products/wp-statistics-premium">
669
- <span style="font-size:10px; color:#009900;"><?php _e('Get Premium version', 'wp_statistics'); ?></span>
670
- </a>
671
- </th>
672
  </tr>
673
 
674
  <tr>
@@ -685,6 +796,7 @@ License: GPL2
685
  <li><?php _e('Language', 'wp_statistics'); ?> Russian <?php _e('by', 'wp_statistics'); ?> <a href="http://www.iflexion.com/">Igor Dubilej</a></li>
686
  <li><?php _e('Language', 'wp_statistics'); ?> Spanish <?php _e('by', 'wp_statistics'); ?> <a href="mailto:joanfusan@gmail.com">jose</a></li>
687
  <li><?php _e('Language', 'wp_statistics'); ?> Arabic <?php _e('by', 'wp_statistics'); ?> <a href="http://www.facebook.com/aboHatim">Hammad Shammari</a></li>
 
688
  </ul>
689
  <?php _e('for translate language files. please send files for', 'wp_statistics'); ?> <code>mst404@gmail.com</code>
690
 
@@ -702,6 +814,14 @@ License: GPL2
702
  </style>
703
  <ul id="functions_list">
704
  <table>
 
 
 
 
 
 
 
 
705
  <tr>
706
  <td><?php _e('User Online', 'wp_statistics'); ?></td>
707
  <td><code><?php highlight_string('<?php echo wp_statistics_useronline(); ?>'); ?></code></td>
@@ -815,16 +935,6 @@ License: GPL2
815
  <div id="result_uninstall"></div>
816
  </th>
817
  </tr>
818
-
819
- <tr>
820
- <td>
821
- <p class="submit">
822
- <input type="hidden" name="action" value="update" />
823
- <input type="hidden" name="page_options" value="enable_stats,enable_decimals,enable_wps_adminbar,time_useronline,items_statistics,pagerank_google_url,pagerank_alexa_url" />
824
- <input type="submit" class="button-primary" name="Submit" value="<?php _e('Update', 'wp_statistics'); ?>" />
825
- </p>
826
- </td>
827
- </tr>
828
  </form>
829
  </table>
830
  </div>
@@ -838,7 +948,7 @@ License: GPL2
838
  font-size: 12px;
839
  line-height: 20px;
840
  margin-bottom: 9px;
841
- max-width: 500px;
842
  overflow: hidden;
843
  padding: 8px 10px;
844
  white-space: nowrap;
@@ -895,7 +1005,7 @@ License: GPL2
895
  font-size: 12px;
896
  line-height: 20px;
897
  margin-bottom: 9px;
898
- max-width: 500px;
899
  overflow: hidden;
900
  padding: 8px 10px;
901
  white-space: nowrap;
@@ -925,7 +1035,7 @@ License: GPL2
925
  echo "<td width='5'>".__('No', 'wp_statistics')."</td>";
926
  echo "<td>".__('IP', 'wp_statistics')."</td>";
927
  echo "<td>".__('Time', 'wp_statistics')."</td>";
928
- echo "<td>".__('Referred', 'wp_statistics')."</td>";
929
  echo "<td>".__('Agent', 'wp_statistics')."</td>";
930
  echo "</tr>";
931
 
@@ -947,7 +1057,15 @@ License: GPL2
947
  function wp_statistics_show_widget($args)
948
  {
949
  extract($args);
950
- echo "<li class='widget'>";
 
 
 
 
 
 
 
 
951
  echo $before_title . get_option('name_widget') . $after_title;
952
  echo "<ul>";
953
  if(get_option('useronline_widget'))
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.5
7
  Author: Mostafa Soufi
8
  Author URI: http://iran98.org/
9
  License: GPL2
33
  $get_useragent = $_SERVER['HTTP_USER_AGENT'];
34
  $get_userip = $_SERVER['REMOTE_ADDR'];
35
 
36
+ /* Live Statistics Varieble */
37
+ $database_checktime = get_option('database_checktime');
38
+ if(!$database_checktime)
39
+ {
40
+ $database_checktime = "10";
41
+ }
42
+
43
+ /* Coefficient Visitor */
44
+ $get_coefficient = get_option('coefficient_visitor');
45
+ if(!$get_coefficient)
46
+ {
47
+ $get_coefficient = "1";
48
+ }
49
+
50
  function wp_statistics_menubar()
51
  {
52
  global $wp_admin_bar;
96
  {
97
  global $wp_statistics_db_version, $table_prefix;
98
  $table_visit = $table_prefix."statistics_visits";
99
+ $table_visitors = $table_prefix."statistics_visitors";
100
+ $table_profile = $table_prefix."statistics_profile";
101
  $table_dates = $table_prefix."statistics_date";
102
  $table_users = $table_prefix."statistics_useronline";
103
  $table_referred = $table_prefix."statistics_reffered";
135
  time DATETIME,
136
  agent char(255))");
137
 
138
+ $primary_visit_value = ("INSERT INTO ".$table_visit."
139
+ (today, yesterday, week, month, year, total, google, yahoo, bing) VALUES
140
+ (0, 0, 0, 0, 0, 0, 0, 0, 0)");
 
141
 
142
+ $primary_date_value = ("INSERT INTO ".$table_dates."
143
+ (last_counter, last_week, last_month, last_year, timestamp, last_visit) VALUES
144
+ ('00-00-00', '".$get_week."', '".$get_month."', '".$get_year."', '".$time_1."', '".$get_date."')");
 
145
 
146
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
147
 
156
  add_option('wp_statistics_db_version', 'wp_statistics_db_version');
157
  }
158
 
159
+ function wp_check_spider()
160
+ {
161
+ $spiders = array("Teoma", "alexa", "froogle", "Gigabot", "inktomi",
162
+ "looksmart", "URL_Spider_SQL", "Firefly", "NationalDirectory",
163
+ "Ask Jeeves", "TECNOSEEK", "InfoSeek", "WebFindBot", "girafabot",
164
+ "crawler", "www.galaxy.com", "Googlebot", "googlebot", "Scooter", "Slurp",
165
+ "msnbot", "appie", "FAST", "WebBug", "Spade", "ZyBorg", "rabaz",
166
+ "Baiduspider", "Feedfetcher-Google", "TechnoratiSnoop", "Rankivabot",
167
+ "Mediapartners-Google", "Sogou web spider", "WebAlta Crawler","TweetmemeBot",
168
+ "Butterfly","Twitturls","Me.dium","Twiceler");
169
+
170
+ foreach($spiders as $spider)
171
+ {
172
+ if(strpos($_SERVER['HTTP_USER_AGENT'], $spider) !== false)
173
+ return true;
174
+ }
175
+ return false;
176
+ }
177
+
178
  function wp_statistics()
179
  {
180
+ global $wpdb, $table_prefix, $get_date, $get_now, $get_week, $get_month, $get_year, $get_referred, $get_userip, $get_useragent, $get_coefficient;
181
 
182
  $get_dates_row = $wpdb->get_row("SELECT * FROM {$table_prefix}statistics_date");
183
 
184
+ if( ($get_dates_row->last_visit) != $get_date && !is_admin() && !wp_check_spider())
185
  {
186
+ if( ($get_dates_row->last_counter) == $get_now ) {
187
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET today = today+'".$get_coefficient."', total = total+'".$get_coefficient."'");
 
188
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_visit = '".$get_date."'");
189
  } else {
190
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET yesterday = today, total = total+'".$get_coefficient."'");
191
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET today = 0");
192
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_counter = '".$get_now."', last_visit = '".$get_date."'");
193
  }
194
+ if( ($get_dates_row->last_week) == $get_week ) {
195
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET week = week+'".$get_coefficient."'");
 
196
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_week = '".$get_week."'");
197
  } else {
198
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET week = 0");
199
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_week = '".$get_week."'");
200
  }
201
+ if( ($get_dates_row->last_month) == $get_month ) {
202
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET month = month+'".$get_coefficient."'");
 
203
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_month = '".$get_month."'");
204
  } else {
205
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET month = 0");
206
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_month = '".$get_month."'");
207
  }
208
+ if( ($get_dates_row->last_year) == $get_year ) {
209
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET year = year+'".$get_coefficient."'");
 
210
  $wpdb->query("UPDATE {$table_prefix}statistics_date SET last_year = '".$get_year."'");
211
  } else {
212
  $wpdb->query("UPDATE {$table_prefix}statistics_visits SET year = 0");
214
  }
215
  }
216
 
217
+ if(get_option('daily_referer'))
218
  {
219
+ if( ($get_dates_row->last_counter) == $get_now )
220
+ {
221
+ if(strstr($get_referred, 'google.com'))
222
+ {
223
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET google = google+1");
224
+ } else if(strstr($get_referred, 'yahoo.com')) {
225
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET yahoo = yahoo+1");
226
+ } else if(strstr($get_referred, 'bing.com')) {
227
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET bing = bing+1");
228
+ }
229
+ } else {
230
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET google = 0");
231
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET yahoo = 0");
232
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET bing = 0");
233
+ }
234
+ } else {
235
+ if(strstr($get_referred, 'google.com'))
236
+ {
237
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET google = google+1");
238
+ } else if(strstr($get_referred, 'yahoo.com')) {
239
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET yahoo = yahoo+1");
240
+ } else if(strstr($get_referred, 'bing.com')) {
241
+ $wpdb->query("UPDATE {$table_prefix}statistics_visits SET bing = bing+1");
242
+ }
243
  }
244
 
245
  $get_items_statistics = get_option('items_statistics');
267
 
268
  if(get_option('enable_stats'))
269
  {
270
+ add_action('wp_head', 'wp_statistics');
271
  } else {
272
  add_action('admin_notices', 'wp_statistics_not_enable');
273
  }
278
  global $wpdb, $table_prefix, $get_date, $get_referred, $get_useragent, $get_userip;
279
  $timestamp = date("U");
280
 
281
+ $get_time_useronline_s = get_option('time_useronline_s');
282
 
283
+ if(!$get_time_useronline_s)
284
  {
285
+ $get_time_useronline_s = '60'; // Default value for check accurate user online
286
  }
 
287
 
288
  $get_ip = $wpdb->get_var("SELECT * FROM {$table_prefix}statistics_useronline WHERE ip = '".$get_userip."'");
289
  if($get_ip)
293
  $wpdb->query("INSERT INTO {$table_prefix}statistics_useronline(ip, timestamp, time, referred, agent) VALUES ('".$get_userip."', '".$timestamp."', '".$get_date."', '".$get_referred."', '".$get_useragent."')");
294
  }
295
 
296
+ $time = $timestamp - $get_time_useronline_s;
297
  $wpdb->get_var("DELETE FROM {$table_prefix}statistics_useronline WHERE timestamp < '".$time."'");
298
 
299
  $get_users = $wpdb->get_var("SELECT COUNT(ip) FROM {$table_prefix}statistics_useronline");
393
  }
394
  }
395
 
396
+ function wp_statistics_useronline_live(){ global $database_checktime; ?>
397
+ <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.js"></script>
398
+ <script type="text/javascript">
399
+ $(document).ready(function(){
400
+ $("span#show_useronline_live").load("<?php echo plugin_dir_url( __FILE__ );?>/wp-statistics-useronline-live.php");
401
+ setInterval(function(){
402
+ $("span#show_useronline_live").fadeOut(100);
403
+ $("span#show_useronline_live").load("<?php echo plugin_dir_url( __FILE__ );?>/wp-statistics-useronline-live.php");
404
+ $("span#show_useronline_live").fadeIn(100);
405
+ }, <?php echo $database_checktime ?>000);
406
+ });
407
+ </script>
408
+ <span id="show_useronline_live"></span>
409
+ <?php }
410
+
411
+ function wp_statistics_total_live(){ global $database_checktime; ?>
412
+ <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.js"></script>
413
+ <script type="text/javascript">
414
+ $(document).ready(function(){
415
+ $("span#show_totalvisit_live").load("<?php echo plugin_dir_url( __FILE__ );?>/wp-statistics-totalvisit-live.php");
416
+ setInterval(function(){
417
+ $("span#show_totalvisit_live").fadeOut(100);
418
+ $("span#show_totalvisit_live").load("<?php echo plugin_dir_url( __FILE__ );?>/wp-statistics-totalvisit-live.php");
419
+ $("span#show_totalvisit_live").fadeIn(100);
420
+ }, <?php echo $database_checktime ?>000);
421
+ });
422
+ </script>
423
+ <span id="show_totalvisit_live"></span>
424
+ <?php }
425
+
426
  function wp_statistics_countposts($type=publish)
427
  {
428
  $count_posts = wp_count_posts();
527
  {
528
  if (function_exists('add_options_page'))
529
  {
530
+ add_menu_page(__('Settings', 'wp_statistics'), __('Settings', 'wp_statistics'), 'manage_options', 'wp-statistics', 'wp_statistics_config_permission', plugin_dir_url( __FILE__ ).'/images/icon.png');
531
+ add_submenu_page( 'wp-statistics', __('Stats Log', 'wp_statistics'), __('Stats Log', 'wp_statistics'), 'manage_options', 'wp-statistics/stats', 'wp_statistics_config_permission');
532
+ add_submenu_page( 'wp-statistics', __('Stats Log', 'wp_statistics'), __('Stats Log', 'wp_statistics'), 'manage_options', 'wp-statistics/stats', 'wp_statistics_stats_permission');
533
+ add_submenu_page( 'wp-statistics', __('Users Online', 'wp_statistics'), __('Users Online', 'wp_statistics'), 'manage_options', 'wp-statistics/online', 'wp_statistics_online_permission');
534
  }
535
  }
536
 
546
  register_setting('wp_statistics_options', 'enable_stats');
547
  register_setting('wp_statistics_options', 'enable_decimals');
548
  register_setting('wp_statistics_options', 'enable_wps_adminbar');
549
+ register_setting('wp_statistics_options', 'time_useronline_s');
550
  register_setting('wp_statistics_options', 'items_statistics');
551
+ register_setting('wp_statistics_options', 'coefficient_visitor');
552
+ register_setting('wp_statistics_options', 'database_checktime');
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
  });
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>
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>
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>
732
+ <td><?php _e('The CSS Class for the containing widget', 'wp_statistics'); ?>:</td>
733
+ <td>
734
+ <input type="text" name="widget_css_class" style="direction:ltr; width:200px" value="<?php echo get_option('widget_css_class'); ?>"/>
735
+ </td>
736
+ <td><span style="font-size:11px;">(<?php _e('If empty. class="widget" will be used', 'wp_statistics'); ?>)</span></td>
737
+ </tr>
738
+
739
  <tr><th><h3><?php _e('Live Statistics configuration', 'wp_statistics'); ?></h4></th></tr>
740
 
741
  <tr>
742
+ <td><?php _e('Refresh Stats every', 'wp_statistics'); ?>:</td>
743
  <td>
744
+ <input type="text" name="database_checktime" style="direction:ltr; width:60px" maxlength="3" value="<?php echo get_option('database_checktime'); ?>"/>
745
+ <span style="font-size:10px;"><?php _e('Second(s)', 'wp_statistics'); ?></span>
 
746
  </td>
747
  <td>
748
  <span style="font-size:11px; color:#FF0000;"><?php _e('Recommended', 'wp_statistics'); ?></span>
749
+ <span style="font-size:11px;">(<?php _e('To reduce pressure on the server, this defaults to 10 sec', 'wp_statistics'); ?>.)</span>
750
  </td>
751
  </tr>
752
 
758
  <input type="text" name="pagerank_google_url" style="direction:ltr; width:200px" value="<?php echo get_option('pagerank_google_url'); ?>"/>
759
  </td>
760
  <td>
761
+ <span style="font-size:11px;">(<?php _e('If empty. you website url is used', 'wp_statistics'); ?>)</span>
762
  </td>
763
  </tr>
764
 
768
  <input type="text" name="pagerank_alexa_url" style="direction:ltr; width:200px" value="<?php echo get_option('pagerank_alexa_url'); ?>"/>
769
  </td>
770
  <td>
771
+ <span style="font-size:11px;">(<?php _e('If empty. you website url is used', 'wp_statistics'); ?>)</span>
772
  </td>
773
  </tr>
774
 
775
  <tr>
776
+ <td>
777
+ <p class="submit">
778
+ <input type="hidden" name="action" value="update" />
779
+ <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,widget_css_class,pagerank_google_url,pagerank_alexa_url" />
780
+ <input type="submit" class="button-primary" name="Submit" value="<?php _e('Update', 'wp_statistics'); ?>" />
781
+ </p>
782
+ </td>
783
  </tr>
784
 
785
  <tr>
796
  <li><?php _e('Language', 'wp_statistics'); ?> Russian <?php _e('by', 'wp_statistics'); ?> <a href="http://www.iflexion.com/">Igor Dubilej</a></li>
797
  <li><?php _e('Language', 'wp_statistics'); ?> Spanish <?php _e('by', 'wp_statistics'); ?> <a href="mailto:joanfusan@gmail.com">jose</a></li>
798
  <li><?php _e('Language', 'wp_statistics'); ?> Arabic <?php _e('by', 'wp_statistics'); ?> <a href="http://www.facebook.com/aboHatim">Hammad Shammari</a></li>
799
+ <li><?php _e('Language', 'wp_statistics'); ?> German <?php _e('by', 'wp_statistics'); ?> <a href="http://www.andreasmartin.com/">Andreas Martin</a></li>
800
  </ul>
801
  <?php _e('for translate language files. please send files for', 'wp_statistics'); ?> <code>mst404@gmail.com</code>
802
 
814
  </style>
815
  <ul id="functions_list">
816
  <table>
817
+ <tr>
818
+ <td><?php _e('User Online Live', 'wp_statistics'); ?></td>
819
+ <td><code><?php highlight_string('<?php echo wp_statistics_useronline_live(); ?>'); ?></code></td>
820
+ </tr>
821
+ <tr>
822
+ <td><?php _e('Total Visit Live', 'wp_statistics'); ?></td>
823
+ <td><code><?php highlight_string('<?php echo wp_statistics_total_live(); ?>'); ?></code></td>
824
+ </tr>
825
  <tr>
826
  <td><?php _e('User Online', 'wp_statistics'); ?></td>
827
  <td><code><?php highlight_string('<?php echo wp_statistics_useronline(); ?>'); ?></code></td>
935
  <div id="result_uninstall"></div>
936
  </th>
937
  </tr>
 
 
 
 
 
 
 
 
 
 
938
  </form>
939
  </table>
940
  </div>
948
  font-size: 12px;
949
  line-height: 20px;
950
  margin-bottom: 9px;
951
+ max-width: 440px;
952
  overflow: hidden;
953
  padding: 8px 10px;
954
  white-space: nowrap;
1005
  font-size: 12px;
1006
  line-height: 20px;
1007
  margin-bottom: 9px;
1008
+ max-width: 440px;
1009
  overflow: hidden;
1010
  padding: 8px 10px;
1011
  white-space: nowrap;
1035
  echo "<td width='5'>".__('No', 'wp_statistics')."</td>";
1036
  echo "<td>".__('IP', 'wp_statistics')."</td>";
1037
  echo "<td>".__('Time', 'wp_statistics')."</td>";
1038
+ echo "<td>".__('Referrer', 'wp_statistics')."</td>";
1039
  echo "<td>".__('Agent', 'wp_statistics')."</td>";
1040
  echo "</tr>";
1041
 
1057
  function wp_statistics_show_widget($args)
1058
  {
1059
  extract($args);
1060
+ $container_css_class = get_option('widget_css_class');
1061
+ if($container_css_class)
1062
+ {
1063
+ echo "<div class='$container_css_class'>";
1064
+ }
1065
+ else
1066
+ {
1067
+ echo "<div class='widget'>";
1068
+ }
1069
  echo $before_title . get_option('name_widget') . $after_title;
1070
  echo "<ul>";
1071
  if(get_option('useronline_widget'))