Version Description
- Fixes: Small bug in referral url.
- Fixes: Problem export table.
- Updated: Arabic (ar) language.
Download this release
Release Info
Developer | mostafa.s1990 |
Plugin | WP Statistics |
Version | 5.1 |
Comparing to | |
See all releases |
Code changes from version 5.0 to 5.1
- includes/classes/hits.class.php +1 -1
- includes/classes/hits.geoip.class.php +1 -1
- includes/classes/statistics.class.php +4 -3
- includes/log/log.php +6 -6
- includes/log/top-referring.php +1 -1
- includes/optimization/export.php +1 -1
- languages/wp_statistics-ar.mo +0 -0
- languages/wp_statistics-ar.po +334 -170
- readme.txt +6 -1
- wp-statistics.php +3 -3
includes/classes/hits.class.php
CHANGED
@@ -182,7 +182,7 @@
|
|
182 |
$this->tb_prefix . "statistics_visitor",
|
183 |
array(
|
184 |
'last_counter' => $this->Current_date('Y-m-d'),
|
185 |
-
'referred' => $this->get_Referred(
|
186 |
'agent' => $agent['browser'],
|
187 |
'platform' => $agent['platform'],
|
188 |
'version' => $agent['version'],
|
182 |
$this->tb_prefix . "statistics_visitor",
|
183 |
array(
|
184 |
'last_counter' => $this->Current_date('Y-m-d'),
|
185 |
+
'referred' => $this->get_Referred(),
|
186 |
'agent' => $agent['browser'],
|
187 |
'platform' => $agent['platform'],
|
188 |
'version' => $agent['version'],
|
includes/classes/hits.geoip.class.php
CHANGED
@@ -199,7 +199,7 @@
|
|
199 |
$this->tb_prefix . "statistics_visitor",
|
200 |
array(
|
201 |
'last_counter' => $this->Current_date('Y-m-d'),
|
202 |
-
'referred' => $this->get_Referred(
|
203 |
'agent' => $agent['browser'],
|
204 |
'platform' => $agent['platform'],
|
205 |
'version' => $agent['version'],
|
199 |
$this->tb_prefix . "statistics_visitor",
|
200 |
array(
|
201 |
'last_counter' => $this->Current_date('Y-m-d'),
|
202 |
+
'referred' => $this->get_Referred(),
|
203 |
'agent' => $agent['browser'],
|
204 |
'platform' => $agent['platform'],
|
205 |
'version' => $agent['version'],
|
includes/classes/statistics.class.php
CHANGED
@@ -107,15 +107,16 @@
|
|
107 |
}
|
108 |
|
109 |
public function get_Referred($default_referr = false) {
|
|
|
110 |
$referr = '';
|
111 |
|
112 |
if( isset($_SERVER['HTTP_REFERER']) ) { $referr = $_SERVER['HTTP_REFERER']; }
|
113 |
if( $default_referr ) { $referr = $default_referr; }
|
114 |
-
|
115 |
$referr = esc_sql(strip_tags($referr) );
|
116 |
-
|
117 |
if( !$referr ) { $referr = get_bloginfo('url'); }
|
118 |
-
|
119 |
return $referr;
|
120 |
}
|
121 |
|
107 |
}
|
108 |
|
109 |
public function get_Referred($default_referr = false) {
|
110 |
+
|
111 |
$referr = '';
|
112 |
|
113 |
if( isset($_SERVER['HTTP_REFERER']) ) { $referr = $_SERVER['HTTP_REFERER']; }
|
114 |
if( $default_referr ) { $referr = $default_referr; }
|
115 |
+
|
116 |
$referr = esc_sql(strip_tags($referr) );
|
117 |
+
|
118 |
if( !$referr ) { $referr = get_bloginfo('url'); }
|
119 |
+
|
120 |
return $referr;
|
121 |
}
|
122 |
|
includes/log/log.php
CHANGED
@@ -272,7 +272,7 @@
|
|
272 |
|
273 |
echo "<tr>";
|
274 |
echo "<td>{$value}</td>";
|
275 |
-
echo "<td>{$items}</td>";
|
276 |
echo "</tr>";
|
277 |
}
|
278 |
?>
|
@@ -687,8 +687,8 @@
|
|
687 |
<script type="text/javascript">
|
688 |
function initialize() {
|
689 |
var map_options = {
|
690 |
-
center: new google.maps.LatLng(<?php echo wp_statistics_get_gmap_coordinate($result->location, 'lat');
|
691 |
-
zoom:
|
692 |
mapTypeId: google.maps.MapTypeId.ROADMAP
|
693 |
};
|
694 |
|
@@ -737,9 +737,9 @@
|
|
737 |
$get_ipp[$markets['location']][] = "<p>{$agent} {$markets[ip]}</p>";
|
738 |
}
|
739 |
?>
|
740 |
-
t.push(
|
741 |
-
x.push(<?php echo wp_statistics_get_gmap_coordinate($markets['location'], 'lat'); ?>);
|
742 |
-
y.push(<?php echo wp_statistics_get_gmap_coordinate($markets['location'], 'lng'); ?>);
|
743 |
h.push("<div class='map-html-marker'><?php echo $flag . '<hr />' . implode('', $get_ipp[$markets['location']]); ?></div>");
|
744 |
<?php
|
745 |
}
|
272 |
|
273 |
echo "<tr>";
|
274 |
echo "<td>{$value}</td>";
|
275 |
+
echo "<td><a href='?page=wps_referers_menu&referr={$items}'>{$items}</a></td>";
|
276 |
echo "</tr>";
|
277 |
}
|
278 |
?>
|
687 |
<script type="text/javascript">
|
688 |
function initialize() {
|
689 |
var map_options = {
|
690 |
+
center: new google.maps.LatLng("<?php echo wp_statistics_get_gmap_coordinate($result->location, 'lat'); ?>", "<?php echo wp_statistics_get_gmap_coordinate($result->location, 'lng'); ?>"),
|
691 |
+
zoom: 3,
|
692 |
mapTypeId: google.maps.MapTypeId.ROADMAP
|
693 |
};
|
694 |
|
737 |
$get_ipp[$markets['location']][] = "<p>{$agent} {$markets[ip]}</p>";
|
738 |
}
|
739 |
?>
|
740 |
+
t.push("<?php echo $ISOCountryCode[$markets['location']]; ?>");
|
741 |
+
x.push("<?php echo wp_statistics_get_gmap_coordinate($markets['location'], 'lat'); ?>");
|
742 |
+
y.push("<?php echo wp_statistics_get_gmap_coordinate($markets['location'], 'lng'); ?>");
|
743 |
h.push("<div class='map-html-marker'><?php echo $flag . '<hr />' . implode('', $get_ipp[$markets['location']]); ?></div>");
|
744 |
<?php
|
745 |
}
|
includes/log/top-referring.php
CHANGED
@@ -72,7 +72,7 @@
|
|
72 |
foreach($result as $items) {
|
73 |
|
74 |
echo "<div class='log-item'>";
|
75 |
-
echo "<div class='log-referred'><a href='
|
76 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
77 |
echo "<div class='clear'></div>";
|
78 |
echo "<a class='show-map' title='".__('Map', 'wp_statistics')."'><div class='dashicons dashicons-location-alt'></div></a>";
|
72 |
foreach($result as $items) {
|
73 |
|
74 |
echo "<div class='log-item'>";
|
75 |
+
echo "<div class='log-referred'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&ip={$items->ip}'>".wp_statistics_icons('dashicons-visibility', 'visibility')."{$items->ip}</a></div>";
|
76 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
77 |
echo "<div class='clear'></div>";
|
78 |
echo "<a class='show-map' title='".__('Map', 'wp_statistics')."'><div class='dashicons dashicons-location-alt'></div></a>";
|
includes/optimization/export.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
require('../../../../../wp-
|
3 |
|
4 |
if( !is_super_admin() )
|
5 |
wp_die(__('Access denied!', 'wp_statistics'));
|
1 |
<?php
|
2 |
+
require('../../../../../wp-load.php');
|
3 |
|
4 |
if( !is_super_admin() )
|
5 |
wp_die(__('Access denied!', 'wp_statistics'));
|
languages/wp_statistics-ar.mo
CHANGED
Binary file
|
languages/wp_statistics-ar.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Hammad Alshammari <al3zz@hotmail.com>\n"
|
8 |
"Language-Team: ABU HATIM <al3zz.com@gmail.com>\n"
|
9 |
"Language: ar_SA\n"
|
@@ -14,13 +14,13 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
|
15 |
"\\plugins\\wp-statistics\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Generator: Poedit 1.6.
|
18 |
"X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
|
19 |
"content\\plugins\\wp-statistics\n"
|
20 |
|
21 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
|
22 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
23 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
24 |
msgid "Statistical reporting"
|
25 |
msgstr "تقارير الإحصائيات"
|
26 |
|
@@ -35,34 +35,34 @@ msgid "Show site stats in sidebar"
|
|
35 |
msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
|
36 |
|
37 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
38 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
|
41 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
|
42 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
43 |
msgid "User Online"
|
44 |
msgstr "المتواجدين الآن"
|
45 |
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
47 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
|
48 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
49 |
msgid "Today Visit"
|
50 |
msgstr "زيارات اليوم"
|
51 |
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
53 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
54 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
55 |
msgid "Today Visitor"
|
56 |
msgstr "زوار اليوم"
|
57 |
|
58 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
59 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
60 |
msgid "Yesterday Visit"
|
61 |
msgstr "زيارات الأمس"
|
62 |
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
64 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
65 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
66 |
msgid "Yesterday Visitor"
|
67 |
msgstr "زوار الأمس"
|
68 |
|
@@ -83,13 +83,13 @@ msgstr "زيارات السنة"
|
|
83 |
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
85 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
|
86 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
87 |
msgid "Total Visit"
|
88 |
msgstr "مجموع الزيارات"
|
89 |
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
91 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
|
92 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
93 |
msgid "Total Visitor"
|
94 |
msgstr "مجموع الزوار"
|
95 |
|
@@ -151,7 +151,7 @@ msgstr "احصائيات ووردبريس"
|
|
151 |
msgid "Complete statistics for your blog."
|
152 |
msgstr "الإحصائيات الكاملة للمدونة الخاصة بك."
|
153 |
|
154 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
155 |
#, php-format
|
156 |
msgid ""
|
157 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
@@ -160,6 +160,15 @@ msgstr ""
|
|
160 |
"إضافة Wordpress Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s\">صفحة "
|
161 |
"الإعدادات</a> وقم بتفعيلها"
|
162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
|
164 |
msgid "Overview"
|
165 |
msgstr "نظرة عامة"
|
@@ -171,7 +180,7 @@ msgid "Browsers"
|
|
171 |
msgstr "المتصفحات"
|
172 |
|
173 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
|
174 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:
|
175 |
msgid "Countries"
|
176 |
msgstr "الدول"
|
177 |
|
@@ -180,79 +189,84 @@ msgid "Hits"
|
|
180 |
msgstr "نقرات"
|
181 |
|
182 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
|
|
|
|
|
|
|
|
|
|
|
183 |
msgid "Referers"
|
184 |
msgstr "المراجع"
|
185 |
|
186 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
187 |
msgid "Searches"
|
188 |
msgstr "عمليات البحث"
|
189 |
|
190 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
191 |
msgid "Search Words"
|
192 |
msgstr "كلمات البحث"
|
193 |
|
194 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
195 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
|
196 |
msgid "Visitors"
|
197 |
msgstr "الزوار"
|
198 |
|
199 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
200 |
msgid "Optimization"
|
201 |
msgstr "التحسين"
|
202 |
|
203 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
204 |
msgid "Settings"
|
205 |
msgstr "الإعدادات"
|
206 |
|
207 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
208 |
msgid "Today visitor"
|
209 |
msgstr "زوار اليوم"
|
210 |
|
211 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
212 |
msgid "Today visit"
|
213 |
msgstr "زيارات اليوم"
|
214 |
|
215 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
216 |
msgid "Yesterday visitor"
|
217 |
msgstr "زيارات الأمس"
|
218 |
|
219 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
220 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
|
221 |
msgid "Yesterday visit"
|
222 |
msgstr "زيارات الأمس"
|
223 |
|
224 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
225 |
msgid "View Stats"
|
226 |
msgstr "عرض الإحصائيات"
|
227 |
|
228 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
229 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
230 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
231 |
msgid "You do not have sufficient permissions to access this page."
|
232 |
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
233 |
|
234 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
235 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
236 |
msgstr ""
|
237 |
"هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
|
238 |
"تفعيلة مرة أخرى."
|
239 |
|
240 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
241 |
#, php-format
|
242 |
msgid "Error downloading GeoIP database from: %s"
|
243 |
msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s"
|
244 |
|
245 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
246 |
#, php-format
|
247 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
248 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
|
249 |
|
250 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
251 |
#, php-format
|
252 |
msgid "Error could not open destination GeoIP database for writing %s"
|
253 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
|
254 |
|
255 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
256 |
msgid "GeoIP Database updated successfully!"
|
257 |
msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
|
258 |
|
@@ -268,18 +282,20 @@ msgstr "إحصائيات المتصفح"
|
|
268 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
269 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
|
270 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
|
|
|
271 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
272 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
273 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
274 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
275 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:141
|
276 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:241
|
277 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
|
278 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:331
|
279 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
280 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
281 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
282 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
283 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
284 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
285 |
msgid "Click to toggle"
|
@@ -315,79 +331,114 @@ msgstr "الإصدار %s"
|
|
315 |
msgid "Browser version share"
|
316 |
msgstr "نسخة متصفح المشارك"
|
317 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
319 |
msgid "Hit Statistics"
|
320 |
msgstr "احصائية النقرات"
|
321 |
|
|
|
322 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
323 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
324 |
msgid "10 Days"
|
325 |
msgstr "10 أيام"
|
326 |
|
|
|
327 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
328 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
329 |
msgid "20 Days"
|
330 |
msgstr "20 يوم"
|
331 |
|
|
|
332 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
333 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
334 |
msgid "30 Days"
|
335 |
msgstr "30 يو م"
|
336 |
|
|
|
337 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
338 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
339 |
msgid "2 Months"
|
340 |
msgstr "شهرين"
|
341 |
|
|
|
342 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
343 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
344 |
msgid "3 Months"
|
345 |
msgstr "3 أشهر"
|
346 |
|
|
|
347 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
348 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
349 |
msgid "6 Months"
|
350 |
msgstr "6 أشهر"
|
351 |
|
|
|
352 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
353 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
354 |
msgid "9 Months"
|
355 |
msgstr "9 أشهر"
|
356 |
|
|
|
357 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
358 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
359 |
msgid "1 Year"
|
360 |
msgstr "سنة"
|
361 |
|
362 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/
|
363 |
-
|
364 |
-
msgid "
|
365 |
-
msgstr "
|
366 |
|
367 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/
|
368 |
-
msgid "
|
369 |
-
msgstr "الرسم البياني
|
370 |
|
|
|
|
|
|
|
|
|
|
|
371 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
|
372 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
|
373 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
|
374 |
msgid "days"
|
375 |
msgstr "أيام"
|
376 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
|
378 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
379 |
msgid "Number of visits and visitors"
|
380 |
msgstr "عدد الزيارات والزوار"
|
381 |
|
382 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:102
|
383 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:42
|
384 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
385 |
msgid "Visitor"
|
386 |
msgstr "زائر"
|
387 |
|
388 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:112
|
389 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
|
390 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
391 |
msgid "Visit"
|
392 |
msgstr "زيارة"
|
393 |
|
@@ -400,48 +451,47 @@ msgstr "تضاف قريبا"
|
|
400 |
|
401 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
|
402 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
403 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
404 |
msgid "Latest search words"
|
405 |
msgstr "آخر كلمات البحث"
|
406 |
|
407 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
408 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
409 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
410 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
411 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
|
|
412 |
msgid "Map"
|
413 |
msgstr "خريطة"
|
414 |
|
415 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
416 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
417 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:
|
418 |
msgid "Page"
|
419 |
msgstr "صفحة"
|
420 |
|
421 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
422 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
423 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:
|
424 |
msgid "From"
|
425 |
msgstr "من"
|
426 |
|
427 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
428 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
429 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
430 |
msgid "Recent Visitors"
|
431 |
msgstr "الزيارات الأخيرة"
|
432 |
|
433 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
434 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
|
435 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:141
|
436 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:55
|
437 |
msgid "All"
|
438 |
msgstr "الكل"
|
439 |
|
440 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
441 |
-
|
442 |
-
|
443 |
-
msgid "Country"
|
444 |
-
msgstr "الدولة"
|
445 |
|
446 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
447 |
msgid "Summary Statistics"
|
@@ -471,6 +521,8 @@ msgstr "سنة"
|
|
471 |
|
472 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
|
473 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
|
|
|
|
|
474 |
msgid "Total"
|
475 |
msgstr "المجموع"
|
476 |
|
@@ -503,12 +555,12 @@ msgstr "الوقت: <code dir=\"rtl\">%s</code></code>"
|
|
503 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
|
504 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
|
505 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
|
506 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
507 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
508 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
509 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
510 |
-
msgid "
|
511 |
-
msgstr "
|
512 |
|
513 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
|
514 |
msgid "Graph of Browsers"
|
@@ -521,7 +573,7 @@ msgid "Top referring sites"
|
|
521 |
msgstr "أعلى المواقع زيارة"
|
522 |
|
523 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
|
524 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:
|
525 |
msgid "Reference"
|
526 |
msgstr "المرجع"
|
527 |
|
@@ -543,6 +595,11 @@ msgstr "الترتيب"
|
|
543 |
msgid "Flag"
|
544 |
msgstr "العلم"
|
545 |
|
|
|
|
|
|
|
|
|
|
|
546 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:297
|
547 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
548 |
msgid "Visitor Count"
|
@@ -589,24 +646,28 @@ msgstr ""
|
|
589 |
msgid "Donate"
|
590 |
msgstr "تبرع"
|
591 |
|
592 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
593 |
msgid "Hits chart in the last 20 days"
|
594 |
msgstr "مخطط الفعاليات في الـ20 يوماً الماضية"
|
595 |
|
596 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
597 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
598 |
msgid "Search Engine Referrers Statistical Chart"
|
599 |
msgstr "الرسم البياني لمحركات البحث"
|
600 |
|
601 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
602 |
msgid "Referrer search engine chart in the last 20 days"
|
603 |
msgstr "مرجعية محرك البحث التخطيطي في الـ20 يوما الماضية"
|
604 |
|
605 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
606 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
|
607 |
msgid "Number of referrer"
|
608 |
msgstr "عدد الإحالات"
|
609 |
|
|
|
|
|
|
|
|
|
610 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
611 |
msgid "Search Engine Referrers Statistics"
|
612 |
msgstr "احصائيات محركات البحث"
|
@@ -715,8 +776,8 @@ msgstr "التصدير من"
|
|
715 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
|
716 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
|
717 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
|
718 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
719 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
720 |
msgid "Please select."
|
721 |
msgstr "الرجاء اختيار."
|
722 |
|
@@ -801,102 +862,122 @@ msgid "All visitor data will be lost for this platform type."
|
|
801 |
msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
|
802 |
|
803 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
msgid "GeoIP Options"
|
805 |
msgstr "خيارات GeoIP"
|
806 |
|
807 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:
|
808 |
msgid "Update Now!"
|
809 |
msgstr "تحديث الآن!"
|
810 |
|
811 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:
|
812 |
msgid "Get updates for the location and the countries, this may take a while"
|
813 |
msgstr "الحصول على تحديثات للموقع والدول، وهذا قد يستغرق بعض الوقت"
|
814 |
|
815 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
816 |
msgid "Resources"
|
817 |
msgstr "الموارد"
|
818 |
|
819 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
820 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
821 |
msgid "Memory usage in PHP"
|
822 |
msgstr "استخدام الذاكرة في PHP"
|
823 |
|
824 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
825 |
msgid "Byte"
|
826 |
msgstr "بايت"
|
827 |
|
828 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
829 |
#, php-format
|
830 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
831 |
msgstr "عدد الصفوف في الجدول <code>%sstatistics_useronline</code>"
|
832 |
|
833 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
834 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
835 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
836 |
msgid "Row"
|
837 |
msgstr "صف"
|
838 |
|
839 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
840 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
841 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
842 |
msgid "Number of rows"
|
843 |
msgstr "عدد الصفوف"
|
844 |
|
845 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
846 |
#, php-format
|
847 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
848 |
msgstr "عدد الصفوف في الجدول <code>%sstatistics_visit</code>"
|
849 |
|
850 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
851 |
#, php-format
|
852 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
853 |
msgstr "عدد الصفوف في الجدول <code>%sstatistics_visitor</code>"
|
854 |
|
855 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
856 |
msgid "Version Info"
|
857 |
msgstr "معلومات الإصدار"
|
858 |
|
859 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
860 |
msgid "WP Statistics Version"
|
861 |
msgstr "نسخة WP Statistics"
|
862 |
|
863 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
864 |
msgid "The WP Statistics version you are running."
|
865 |
-
msgstr "إصدار WP Statistics
|
866 |
|
867 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
868 |
msgid "PHP Version"
|
869 |
msgstr "نسخة PHP"
|
870 |
|
871 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
872 |
msgid "The PHP version you are running."
|
873 |
-
msgstr "إصدار PHP
|
874 |
|
875 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
876 |
msgid "jQuery Version"
|
877 |
msgstr "نسخة jQuery"
|
878 |
|
879 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
880 |
msgid "The jQuery version you are running."
|
881 |
-
msgstr "إصدار jQuery
|
882 |
|
883 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
884 |
msgid "Client Info"
|
885 |
msgstr "معلومات العميل"
|
886 |
|
887 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
888 |
msgid "Client IP"
|
889 |
msgstr "IP العميل"
|
890 |
|
891 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
892 |
msgid "The client IP address."
|
893 |
msgstr "عنوان IP للعميل."
|
894 |
|
895 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
896 |
msgid "User Agent"
|
897 |
msgstr "وكيل المستخدم"
|
898 |
|
899 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:
|
900 |
msgid "The client user agent string."
|
901 |
msgstr "سلسلة عامل المستخدم العميل."
|
902 |
|
@@ -912,18 +993,6 @@ msgstr "البنود"
|
|
912 |
msgid "Select type of search engine"
|
913 |
msgstr "حدد نوع من محرك البحث"
|
914 |
|
915 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:86
|
916 |
-
msgid "Type date for last update"
|
917 |
-
msgstr "اكتب تاريخ آخر تحديث"
|
918 |
-
|
919 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:88
|
920 |
-
msgid "English"
|
921 |
-
msgstr "الانجليزية"
|
922 |
-
|
923 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:91
|
924 |
-
msgid "Persian"
|
925 |
-
msgstr "الفارسية"
|
926 |
-
|
927 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:11
|
928 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
|
929 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
|
@@ -963,31 +1032,35 @@ msgstr "GeoIP"
|
|
963 |
msgid "Maintenance"
|
964 |
msgstr "صيانة"
|
965 |
|
966 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
|
|
|
|
|
|
|
|
967 |
msgid "Required user level to view WP Statistics"
|
968 |
msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
|
969 |
|
970 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
971 |
msgid "Required user level to manage WP Statistics"
|
972 |
msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
|
973 |
|
974 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
975 |
#, php-format
|
976 |
msgid ""
|
977 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
978 |
"levels."
|
979 |
msgstr "انظر أدوار %s ووردبريس وقدرات الصفحة %s للتفاصيل على مستويات القدرة."
|
980 |
|
981 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
982 |
msgid ""
|
983 |
-
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
984 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
985 |
"Contributor, read = Everyone."
|
986 |
msgstr ""
|
987 |
"تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = "
|
988 |
"محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
989 |
|
990 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
991 |
msgid ""
|
992 |
"Each of the above casscades the rights upwards in the default WordPress "
|
993 |
"configuration. So for example selecting publish_posts grants the right to "
|
@@ -996,7 +1069,7 @@ msgstr ""
|
|
996 |
"كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال "
|
997 |
"عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
998 |
|
999 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1000 |
#, php-format
|
1001 |
msgid ""
|
1002 |
"If you need a more robust solution to delegate access you might want to look "
|
@@ -1005,28 +1078,50 @@ msgstr ""
|
|
1005 |
"إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s "
|
1006 |
"الدليل المساعد لووردبريس."
|
1007 |
|
1008 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1009 |
msgid "Exclude User Roles"
|
1010 |
msgstr "استبعاد أدوار المستخدم"
|
1011 |
|
1012 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
|
|
|
|
1013 |
msgid "Exclude"
|
1014 |
msgstr "منع"
|
1015 |
|
1016 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1017 |
#, php-format
|
1018 |
msgid "Exclude %s role from data collection."
|
1019 |
msgstr "استبعاد دور %s من جمع البيانات."
|
1020 |
|
1021 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1022 |
msgid "IP/Robot Exclusions"
|
1023 |
msgstr "استثناءات IP/Robot"
|
1024 |
|
1025 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1026 |
msgid "Robot List"
|
1027 |
msgstr "قائمة الروبوت"
|
1028 |
|
1029 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1030 |
msgid ""
|
1031 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1032 |
"must be at least 4 characters long or they will be ignored."
|
@@ -1034,15 +1129,15 @@ msgstr ""
|
|
1034 |
"قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون "
|
1035 |
"إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
|
1036 |
|
1037 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1038 |
msgid "Reset to Default"
|
1039 |
msgstr "إعادة تعيين إلى الافتراضي"
|
1040 |
|
1041 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1042 |
msgid "Excluded IP Address List"
|
1043 |
msgstr "استبعاد قائمة العناوين IP"
|
1044 |
|
1045 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1046 |
msgid ""
|
1047 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1048 |
"from statistics collection (both 192.168.0.0/24 and "
|
@@ -1053,18 +1148,45 @@ msgstr ""
|
|
1053 |
"IP و(اختياري) أقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جمع "
|
1054 |
"الإحصاءات. لتحديد عنوان IP فقط، لا تضيف أي قيمة الشبكة الفرعية."
|
1055 |
|
1056 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1057 |
msgid "Add 10.0.0.0"
|
1058 |
msgstr "إضافة 10.0.0.0"
|
1059 |
|
1060 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1061 |
msgid "Add 172.16.0.0"
|
1062 |
msgstr "إضافة 172.16.0.0"
|
1063 |
|
1064 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:
|
1065 |
msgid "Add 192.168.0.0"
|
1066 |
msgstr "إضافة 192.168.0.0"
|
1067 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1068 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:32
|
1069 |
msgid "GeoIP settings"
|
1070 |
msgstr "إعدادات GeoIP"
|
@@ -1081,9 +1203,13 @@ msgstr "مجموعة GeoIP"
|
|
1081 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
|
1082 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
|
1083 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
|
1084 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
|
|
|
|
|
|
|
|
1085 |
msgid "Active"
|
1086 |
-
msgstr "
|
1087 |
|
1088 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:49
|
1089 |
msgid ""
|
@@ -1146,12 +1272,6 @@ msgid ""
|
|
1146 |
msgstr ""
|
1147 |
"جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
1148 |
|
1149 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
|
1150 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
|
1151 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
|
1152 |
-
msgid "Update"
|
1153 |
-
msgstr "تحديث"
|
1154 |
-
|
1155 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
|
1156 |
msgid "Database Maintenance"
|
1157 |
msgstr "صيانة قاعدة البيانات"
|
@@ -1191,7 +1311,7 @@ msgstr "عام"
|
|
1191 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
|
1192 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
|
1193 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
|
1194 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1195 |
msgid "Enable or disable this feature"
|
1196 |
msgstr "تمكين أو تعطيل هذه الميزة"
|
1197 |
|
@@ -1285,43 +1405,81 @@ msgstr "تبعثر"
|
|
1285 |
msgid "Chart type in view stats."
|
1286 |
msgstr "نوع الرسم البياني في مشاهدة البيانات."
|
1287 |
|
1288 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1289 |
msgid "Time send"
|
1290 |
msgstr "وقت الارسال"
|
1291 |
|
1292 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1293 |
msgid "Hourly"
|
1294 |
msgstr "كل ساعة"
|
1295 |
|
1296 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1297 |
msgid "Twice daily"
|
1298 |
msgstr "مرتين يوميا"
|
1299 |
|
1300 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1301 |
msgid "daily"
|
1302 |
msgstr "يوميا"
|
1303 |
|
1304 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1305 |
msgid "Select when receiving statistics report."
|
1306 |
msgstr "حدد عند استلام إحصاءات التقرير."
|
1307 |
|
1308 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1309 |
msgid "Send Statistical reporting to"
|
1310 |
msgstr "إرسال تقارير الإحصائيات إلى"
|
1311 |
|
1312 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1313 |
msgid "Email"
|
1314 |
msgstr "البريد الإلكتروني"
|
1315 |
|
1316 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1317 |
msgid "SMS"
|
1318 |
msgstr "رسائل نصية"
|
1319 |
|
1320 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1321 |
msgid "Type Select Get Status Report."
|
1322 |
msgstr "حدد نوع الحصول على التقرير."
|
1323 |
|
1324 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1325 |
#, php-format
|
1326 |
msgid ""
|
1327 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
@@ -1330,18 +1488,30 @@ msgstr ""
|
|
1330 |
"ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href=\"%s"
|
1331 |
"\" target=\"_blank\">Wordpress SMS</a>."
|
1332 |
|
1333 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1334 |
msgid "Send Content Report"
|
1335 |
msgstr "أرسل المحتوى"
|
1336 |
|
1337 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1338 |
msgid "Enter the contents of the reports received."
|
1339 |
msgstr "أدخل محتويات التقارير الواردة."
|
1340 |
|
1341 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1342 |
msgid "Input data:"
|
1343 |
msgstr "إدخال البيانات:"
|
1344 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1345 |
#~ msgid "Admin Levels"
|
1346 |
#~ msgstr "مستويات المشرف"
|
1347 |
|
@@ -1360,9 +1530,6 @@ msgstr "إدخال البيانات:"
|
|
1360 |
#~ msgid "Empty"
|
1361 |
#~ msgstr "تفريغ"
|
1362 |
|
1363 |
-
#~ msgid "Populate Location"
|
1364 |
-
#~ msgstr "تعبئة الموقع"
|
1365 |
-
|
1366 |
#~ msgid "Chart Settings"
|
1367 |
#~ msgstr "إعدادات الرسم البياني"
|
1368 |
|
@@ -1400,9 +1567,6 @@ msgstr "إدخال البيانات:"
|
|
1400 |
#~ msgid "Word"
|
1401 |
#~ msgstr "كلمة"
|
1402 |
|
1403 |
-
#~ msgid "Date"
|
1404 |
-
#~ msgstr "التاريخ"
|
1405 |
-
|
1406 |
#~ msgid "Site"
|
1407 |
#~ msgstr "الموقع"
|
1408 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-03-02 10:12+0330\n"
|
6 |
+
"PO-Revision-Date: 2014-03-02 23:24+0300\n"
|
7 |
"Last-Translator: Hammad Alshammari <al3zz@hotmail.com>\n"
|
8 |
"Language-Team: ABU HATIM <al3zz.com@gmail.com>\n"
|
9 |
"Language: ar_SA\n"
|
14 |
"X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-content"
|
15 |
"\\plugins\\wp-statistics\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Generator: Poedit 1.6.4\n"
|
18 |
"X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\wordpress\\wp-"
|
19 |
"content\\plugins\\wp-statistics\n"
|
20 |
|
21 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
|
22 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
|
23 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
|
24 |
msgid "Statistical reporting"
|
25 |
msgstr "تقارير الإحصائيات"
|
26 |
|
35 |
msgstr "إظهار إحصائيات الموقع في الشريط الجانبي"
|
36 |
|
37 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
38 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:175
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
|
41 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
|
42 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
|
43 |
msgid "User Online"
|
44 |
msgstr "المتواجدين الآن"
|
45 |
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
47 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
|
48 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
|
49 |
msgid "Today Visit"
|
50 |
msgstr "زيارات اليوم"
|
51 |
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
53 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
54 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
|
55 |
msgid "Today Visitor"
|
56 |
msgstr "زوار اليوم"
|
57 |
|
58 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
59 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:262
|
60 |
msgid "Yesterday Visit"
|
61 |
msgstr "زيارات الأمس"
|
62 |
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
64 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
65 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
|
66 |
msgid "Yesterday Visitor"
|
67 |
msgstr "زوار الأمس"
|
68 |
|
83 |
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
85 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
|
86 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:264
|
87 |
msgid "Total Visit"
|
88 |
msgstr "مجموع الزيارات"
|
89 |
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
91 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
|
92 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
|
93 |
msgid "Total Visitor"
|
94 |
msgstr "مجموع الزوار"
|
95 |
|
151 |
msgid "Complete statistics for your blog."
|
152 |
msgstr "الإحصائيات الكاملة للمدونة الخاصة بك."
|
153 |
|
154 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
|
155 |
#, php-format
|
156 |
msgid ""
|
157 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
160 |
"إضافة Wordpress Statistics غير مفعلة! الرجاء الذهاب الى <a href=\"%s\">صفحة "
|
161 |
"الإعدادات</a> وقم بتفعيلها"
|
162 |
|
163 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
|
164 |
+
#, php-format
|
165 |
+
msgid ""
|
166 |
+
"GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
|
167 |
+
"GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
|
168 |
+
msgstr ""
|
169 |
+
"مجموعة GeoIP غير نشطة! يرجى الذهاب الى <a href=\"%s\">صفحة الإعدادات > "
|
170 |
+
"GeoIP</a> وقم بتمكين هذه الميزة (GeoIP يمكن الكشف عن بلد آخر)"
|
171 |
+
|
172 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
|
173 |
msgid "Overview"
|
174 |
msgstr "نظرة عامة"
|
180 |
msgstr "المتصفحات"
|
181 |
|
182 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
|
183 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
|
184 |
msgid "Countries"
|
185 |
msgstr "الدول"
|
186 |
|
189 |
msgstr "نقرات"
|
190 |
|
191 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
|
192 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
|
193 |
+
msgid "Exclusions"
|
194 |
+
msgstr "الاستثناءات"
|
195 |
+
|
196 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
|
197 |
msgid "Referers"
|
198 |
msgstr "المراجع"
|
199 |
|
200 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
|
201 |
msgid "Searches"
|
202 |
msgstr "عمليات البحث"
|
203 |
|
204 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
|
205 |
msgid "Search Words"
|
206 |
msgstr "كلمات البحث"
|
207 |
|
208 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
|
209 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
|
210 |
msgid "Visitors"
|
211 |
msgstr "الزوار"
|
212 |
|
213 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
|
214 |
msgid "Optimization"
|
215 |
msgstr "التحسين"
|
216 |
|
217 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
|
218 |
msgid "Settings"
|
219 |
msgstr "الإعدادات"
|
220 |
|
221 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:180
|
222 |
msgid "Today visitor"
|
223 |
msgstr "زوار اليوم"
|
224 |
|
225 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:185
|
226 |
msgid "Today visit"
|
227 |
msgstr "زيارات اليوم"
|
228 |
|
229 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:190
|
230 |
msgid "Yesterday visitor"
|
231 |
msgstr "زيارات الأمس"
|
232 |
|
233 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
|
234 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
|
235 |
msgid "Yesterday visit"
|
236 |
msgstr "زيارات الأمس"
|
237 |
|
238 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:200
|
239 |
msgid "View Stats"
|
240 |
msgstr "عرض الإحصائيات"
|
241 |
|
242 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
|
243 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
|
244 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:411
|
245 |
msgid "You do not have sufficient permissions to access this page."
|
246 |
msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
|
247 |
|
248 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:274
|
249 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
250 |
msgstr ""
|
251 |
"هناك جدول مفقود في البرنامج المساعد! الرجاء تعطيل البرنامج المساعد ومن ثم "
|
252 |
"تفعيلة مرة أخرى."
|
253 |
|
254 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
|
255 |
#, php-format
|
256 |
msgid "Error downloading GeoIP database from: %s"
|
257 |
msgstr "خطأ تحميل قاعدة بيانات GeoIP من: %s"
|
258 |
|
259 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
|
260 |
#, php-format
|
261 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
262 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP التي تم تحميلها للقراءة: %s"
|
263 |
|
264 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
|
265 |
#, php-format
|
266 |
msgid "Error could not open destination GeoIP database for writing %s"
|
267 |
msgstr "خطأ لا يمكن فتح قاعدة البيانات GeoIP لجهة الكتابة %s"
|
268 |
|
269 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
|
270 |
msgid "GeoIP Database updated successfully!"
|
271 |
msgstr "تم تحديث قاعدة بيانات GeoIP بنجاح!"
|
272 |
|
282 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
283 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
|
284 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
|
285 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
|
286 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
287 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
288 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:59
|
289 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
290 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:141
|
291 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:241
|
292 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
|
293 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:331
|
294 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
|
295 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:472
|
296 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:582
|
297 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:631
|
298 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:680
|
299 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
300 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
301 |
msgid "Click to toggle"
|
331 |
msgid "Browser version share"
|
332 |
msgstr "نسخة متصفح المشارك"
|
333 |
|
334 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
|
335 |
+
msgid ""
|
336 |
+
"Attention: Exclusion are not currently set to be recorded, the results below "
|
337 |
+
"may not reflect current statistics!"
|
338 |
+
msgstr ""
|
339 |
+
"تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج "
|
340 |
+
"الإحصائيات الحالية أدناه!"
|
341 |
+
|
342 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:50
|
343 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
344 |
msgid "Hit Statistics"
|
345 |
msgstr "احصائية النقرات"
|
346 |
|
347 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:53
|
348 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
349 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
350 |
msgid "10 Days"
|
351 |
msgstr "10 أيام"
|
352 |
|
353 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
354 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
355 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
356 |
msgid "20 Days"
|
357 |
msgstr "20 يوم"
|
358 |
|
359 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:55
|
360 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
361 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
362 |
msgid "30 Days"
|
363 |
msgstr "30 يو م"
|
364 |
|
365 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
|
366 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
367 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
368 |
msgid "2 Months"
|
369 |
msgstr "شهرين"
|
370 |
|
371 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
372 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
373 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
374 |
msgid "3 Months"
|
375 |
msgstr "3 أشهر"
|
376 |
|
377 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
378 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
379 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
380 |
msgid "6 Months"
|
381 |
msgstr "6 أشهر"
|
382 |
|
383 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
384 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
385 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
386 |
msgid "9 Months"
|
387 |
msgstr "9 أشهر"
|
388 |
|
389 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
390 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
391 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
392 |
msgid "1 Year"
|
393 |
msgstr "سنة"
|
394 |
|
395 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
396 |
+
#, php-format
|
397 |
+
msgid "Total Exclusions: %s"
|
398 |
+
msgstr "مجموع الاستثناءات: %s"
|
399 |
|
400 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:71
|
401 |
+
msgid "Exclusions Statistical Chart"
|
402 |
+
msgstr "الرسم البياني لإحصائيات الاستثناءات"
|
403 |
|
404 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
|
405 |
+
msgid "Excluded hits chart in the last"
|
406 |
+
msgstr "مشاهدة الرسم البياني للنقرات المستبعدة في المشاركة"
|
407 |
+
|
408 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
|
409 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
|
410 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
|
411 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
|
412 |
msgid "days"
|
413 |
msgstr "أيام"
|
414 |
|
415 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:111
|
416 |
+
msgid "Number of excluded hits"
|
417 |
+
msgstr "عدد الزيارات المستبعدة"
|
418 |
+
|
419 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
|
420 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
|
421 |
+
msgid "Hits Statistical Chart"
|
422 |
+
msgstr "الرسم البياني لعدد النقرات"
|
423 |
+
|
424 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
|
425 |
+
msgid "Hits chart in the last"
|
426 |
+
msgstr "الرسم البياني في هذه المشاركة"
|
427 |
+
|
428 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
|
429 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:417
|
430 |
msgid "Number of visits and visitors"
|
431 |
msgstr "عدد الزيارات والزوار"
|
432 |
|
433 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:102
|
434 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:42
|
435 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:443
|
436 |
msgid "Visitor"
|
437 |
msgstr "زائر"
|
438 |
|
439 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:112
|
440 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
|
441 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:453
|
442 |
msgid "Visit"
|
443 |
msgstr "زيارة"
|
444 |
|
451 |
|
452 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
|
453 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
454 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
|
455 |
msgid "Latest search words"
|
456 |
msgstr "آخر كلمات البحث"
|
457 |
|
458 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:103
|
459 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
|
460 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
|
461 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
|
462 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
463 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:157
|
464 |
msgid "Map"
|
465 |
msgstr "خريطة"
|
466 |
|
467 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
468 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
|
469 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
470 |
msgid "Page"
|
471 |
msgstr "صفحة"
|
472 |
|
473 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
474 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
|
475 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
476 |
msgid "From"
|
477 |
msgstr "من"
|
478 |
|
479 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
480 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
|
481 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
|
482 |
msgid "Recent Visitors"
|
483 |
msgstr "الزيارات الأخيرة"
|
484 |
|
485 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:34
|
486 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
|
487 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:141
|
488 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:55
|
489 |
msgid "All"
|
490 |
msgstr "الكل"
|
491 |
|
492 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
|
493 |
+
msgid "Search for"
|
494 |
+
msgstr "البحث عن"
|
|
|
|
|
495 |
|
496 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
497 |
msgid "Summary Statistics"
|
521 |
|
522 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
|
523 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
|
524 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:559
|
525 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:123
|
526 |
msgid "Total"
|
527 |
msgstr "المجموع"
|
528 |
|
555 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
|
556 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
|
557 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
|
558 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
|
559 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
|
560 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
|
561 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
|
562 |
+
msgid "More"
|
563 |
+
msgstr "المزيد"
|
564 |
|
565 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
|
566 |
msgid "Graph of Browsers"
|
573 |
msgstr "أعلى المواقع زيارة"
|
574 |
|
575 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
|
576 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:117
|
577 |
msgid "Reference"
|
578 |
msgstr "المرجع"
|
579 |
|
595 |
msgid "Flag"
|
596 |
msgstr "العلم"
|
597 |
|
598 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:296
|
599 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
|
600 |
+
msgid "Country"
|
601 |
+
msgstr "الدولة"
|
602 |
+
|
603 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:297
|
604 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
605 |
msgid "Visitor Count"
|
646 |
msgid "Donate"
|
647 |
msgstr "تبرع"
|
648 |
|
649 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:394
|
650 |
msgid "Hits chart in the last 20 days"
|
651 |
msgstr "مخطط الفعاليات في الـ20 يوماً الماضية"
|
652 |
|
653 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
|
654 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
655 |
msgid "Search Engine Referrers Statistical Chart"
|
656 |
msgstr "الرسم البياني لمحركات البحث"
|
657 |
|
658 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:489
|
659 |
msgid "Referrer search engine chart in the last 20 days"
|
660 |
msgstr "مرجعية محرك البحث التخطيطي في الـ20 يوما الماضية"
|
661 |
|
662 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:512
|
663 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
|
664 |
msgid "Number of referrer"
|
665 |
msgstr "عدد الإحالات"
|
666 |
|
667 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:681
|
668 |
+
msgid "Today visitors on map"
|
669 |
+
msgstr "زوار اليوم على الخريطة"
|
670 |
+
|
671 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
672 |
msgid "Search Engine Referrers Statistics"
|
673 |
msgstr "احصائيات محركات البحث"
|
776 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
|
777 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
|
778 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
|
779 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:220
|
780 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:236
|
781 |
msgid "Please select."
|
782 |
msgstr "الرجاء اختيار."
|
783 |
|
862 |
msgstr "سيتم فقد جميع البيانات الزائر لنوع هذه المنصة."
|
863 |
|
864 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
|
865 |
+
msgid "GeoIP File Info"
|
866 |
+
msgstr "معلومات ملف GeoIP"
|
867 |
+
|
868 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:27
|
869 |
+
msgid "File Date"
|
870 |
+
msgstr "ملف التاريخ"
|
871 |
+
|
872 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:35
|
873 |
+
msgid "The file date of the GeoIP database."
|
874 |
+
msgstr "تاريخ الملف من قاعدة البيانات GeoIP."
|
875 |
+
|
876 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:41
|
877 |
+
msgid "File Size"
|
878 |
+
msgstr "حجم الملف"
|
879 |
+
|
880 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:58
|
881 |
+
msgid "The file size of the GeoIP database."
|
882 |
+
msgstr "حجم ملف قاعدة البيانات GeoIP."
|
883 |
+
|
884 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
|
885 |
msgid "GeoIP Options"
|
886 |
msgstr "خيارات GeoIP"
|
887 |
|
888 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:72
|
889 |
msgid "Update Now!"
|
890 |
msgstr "تحديث الآن!"
|
891 |
|
892 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
|
893 |
msgid "Get updates for the location and the countries, this may take a while"
|
894 |
msgstr "الحصول على تحديثات للموقع والدول، وهذا قد يستغرق بعض الوقت"
|
895 |
|
896 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:14
|
897 |
msgid "Resources"
|
898 |
msgstr "الموارد"
|
899 |
|
900 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:19
|
901 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:24
|
902 |
msgid "Memory usage in PHP"
|
903 |
msgstr "استخدام الذاكرة في PHP"
|
904 |
|
905 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:23
|
906 |
msgid "Byte"
|
907 |
msgstr "بايت"
|
908 |
|
909 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:30
|
910 |
#, php-format
|
911 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
912 |
msgstr "عدد الصفوف في الجدول <code>%sstatistics_useronline</code>"
|
913 |
|
914 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:34
|
915 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:45
|
916 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:56
|
917 |
msgid "Row"
|
918 |
msgstr "صف"
|
919 |
|
920 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:35
|
921 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:46
|
922 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:57
|
923 |
msgid "Number of rows"
|
924 |
msgstr "عدد الصفوف"
|
925 |
|
926 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:41
|
927 |
#, php-format
|
928 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
929 |
msgstr "عدد الصفوف في الجدول <code>%sstatistics_visit</code>"
|
930 |
|
931 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:52
|
932 |
#, php-format
|
933 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
934 |
msgstr "عدد الصفوف في الجدول <code>%sstatistics_visitor</code>"
|
935 |
|
936 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:62
|
937 |
msgid "Version Info"
|
938 |
msgstr "معلومات الإصدار"
|
939 |
|
940 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:67
|
941 |
msgid "WP Statistics Version"
|
942 |
msgstr "نسخة WP Statistics"
|
943 |
|
944 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:72
|
945 |
msgid "The WP Statistics version you are running."
|
946 |
+
msgstr "إصدار WP Statistics."
|
947 |
|
948 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:78
|
949 |
msgid "PHP Version"
|
950 |
msgstr "نسخة PHP"
|
951 |
|
952 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:83
|
953 |
msgid "The PHP version you are running."
|
954 |
+
msgstr "إصدار PHP."
|
955 |
|
956 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
|
957 |
msgid "jQuery Version"
|
958 |
msgstr "نسخة jQuery"
|
959 |
|
960 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
|
961 |
msgid "The jQuery version you are running."
|
962 |
+
msgstr "إصدار jQuery."
|
963 |
|
964 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:99
|
965 |
msgid "Client Info"
|
966 |
msgstr "معلومات العميل"
|
967 |
|
968 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
|
969 |
msgid "Client IP"
|
970 |
msgstr "IP العميل"
|
971 |
|
972 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:109
|
973 |
msgid "The client IP address."
|
974 |
msgstr "عنوان IP للعميل."
|
975 |
|
976 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
|
977 |
msgid "User Agent"
|
978 |
msgstr "وكيل المستخدم"
|
979 |
|
980 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:120
|
981 |
msgid "The client user agent string."
|
982 |
msgstr "سلسلة عامل المستخدم العميل."
|
983 |
|
993 |
msgid "Select type of search engine"
|
994 |
msgstr "حدد نوع من محرك البحث"
|
995 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
996 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:11
|
997 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
|
998 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
|
1032 |
msgid "Maintenance"
|
1033 |
msgstr "صيانة"
|
1034 |
|
1035 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:32
|
1036 |
+
msgid "Access Levels"
|
1037 |
+
msgstr "مستويات الوصول"
|
1038 |
+
|
1039 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:61
|
1040 |
msgid "Required user level to view WP Statistics"
|
1041 |
msgstr "مطلوب مستوى المستخدم لعرض الاحصائيات"
|
1042 |
|
1043 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:76
|
1044 |
msgid "Required user level to manage WP Statistics"
|
1045 |
msgstr "مطلوب مستوى المستخدم لإدارة الاحصائيات"
|
1046 |
|
1047 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:84
|
1048 |
#, php-format
|
1049 |
msgid ""
|
1050 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
1051 |
"levels."
|
1052 |
msgstr "انظر أدوار %s ووردبريس وقدرات الصفحة %s للتفاصيل على مستويات القدرة."
|
1053 |
|
1054 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:85
|
1055 |
msgid ""
|
1056 |
+
"Hint: manage_network = Super Admin Network, manage_options = Administrator, "
|
1057 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1058 |
"Contributor, read = Everyone."
|
1059 |
msgstr ""
|
1060 |
"تلميح: manage_network = مسؤول, manage_options = مدير, edit_others_posts = "
|
1061 |
"محرر, publish_posts = كاتب, edit_posts = مساهم, read = الجميع"
|
1062 |
|
1063 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:86
|
1064 |
msgid ""
|
1065 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1066 |
"configuration. So for example selecting publish_posts grants the right to "
|
1069 |
"كل ما سبق من الكاسكيدز هي حقوق تكوين الووردبريس الافتراضي. على سبيل المثال "
|
1070 |
"عند اختيار publish_posts يمنح حقوق المؤلف,المحرر,المدير,المسؤول."
|
1071 |
|
1072 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:87
|
1073 |
#, php-format
|
1074 |
msgid ""
|
1075 |
"If you need a more robust solution to delegate access you might want to look "
|
1078 |
"إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s "
|
1079 |
"الدليل المساعد لووردبريس."
|
1080 |
|
1081 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:96
|
1082 |
+
msgid "Record Exclusions"
|
1083 |
+
msgstr "سجل الاستثناءات"
|
1084 |
+
|
1085 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:98
|
1086 |
+
msgid "Enable"
|
1087 |
+
msgstr "تمكين"
|
1088 |
+
|
1089 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:99
|
1090 |
+
msgid ""
|
1091 |
+
"This will record all the excluded hits in a separate table with the reasons "
|
1092 |
+
"why it was excluded but no other information. This will generate a lot of "
|
1093 |
+
"data but is useful if you want to see the total number of hits your site "
|
1094 |
+
"gets, not just actual user visits."
|
1095 |
+
msgstr ""
|
1096 |
+
"يقوم هذا الخيار بتسجيل جميع النقرات المستبعدة في جدول منفصل مع أسباب "
|
1097 |
+
"الأستبعاد، ولكن بدون معلومات أخرى. وهذا قد يولد الكثير من البيانات ولكن هو "
|
1098 |
+
"مفيد إذا كنت تريد أن ترى العدد الكلي من المشاهدات التي يحصل عليها موقعك، "
|
1099 |
+
"وليس فقط المستخدم الفعلي للموقع."
|
1100 |
+
|
1101 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:104
|
1102 |
msgid "Exclude User Roles"
|
1103 |
msgstr "استبعاد أدوار المستخدم"
|
1104 |
|
1105 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:120
|
1106 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:165
|
1107 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:172
|
1108 |
msgid "Exclude"
|
1109 |
msgstr "منع"
|
1110 |
|
1111 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:121
|
1112 |
#, php-format
|
1113 |
msgid "Exclude %s role from data collection."
|
1114 |
msgstr "استبعاد دور %s من جمع البيانات."
|
1115 |
|
1116 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:127
|
1117 |
msgid "IP/Robot Exclusions"
|
1118 |
msgstr "استثناءات IP/Robot"
|
1119 |
|
1120 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:131
|
1121 |
msgid "Robot List"
|
1122 |
msgstr "قائمة الروبوت"
|
1123 |
|
1124 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:143
|
1125 |
msgid ""
|
1126 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1127 |
"must be at least 4 characters long or they will be ignored."
|
1129 |
"قائمة من الكلمات (واحد في كل سطر) لمطابقة ضد للكشف عن الروبوتات. يجب أن تكون "
|
1130 |
"إدخالات 4 أحرف على الأقل أو أنها سيتم تجاهلها."
|
1131 |
|
1132 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:144
|
1133 |
msgid "Reset to Default"
|
1134 |
msgstr "إعادة تعيين إلى الافتراضي"
|
1135 |
|
1136 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:148
|
1137 |
msgid "Excluded IP Address List"
|
1138 |
msgstr "استبعاد قائمة العناوين IP"
|
1139 |
|
1140 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
|
1141 |
msgid ""
|
1142 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1143 |
"from statistics collection (both 192.168.0.0/24 and "
|
1148 |
"IP و(اختياري) أقنعة الشبكة الفرعية (واحد في كل سطر) لاستبعاد من جمع "
|
1149 |
"الإحصاءات. لتحديد عنوان IP فقط، لا تضيف أي قيمة الشبكة الفرعية."
|
1150 |
|
1151 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:152
|
1152 |
msgid "Add 10.0.0.0"
|
1153 |
msgstr "إضافة 10.0.0.0"
|
1154 |
|
1155 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:153
|
1156 |
msgid "Add 172.16.0.0"
|
1157 |
msgstr "إضافة 172.16.0.0"
|
1158 |
|
1159 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:154
|
1160 |
msgid "Add 192.168.0.0"
|
1161 |
msgstr "إضافة 192.168.0.0"
|
1162 |
|
1163 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:159
|
1164 |
+
msgid "Site URL Exclusions"
|
1165 |
+
msgstr "رابط الموقع المستثنى"
|
1166 |
+
|
1167 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:163
|
1168 |
+
msgid "Excluded Login Page"
|
1169 |
+
msgstr "استبعاد صفحة تسجيل الدخول"
|
1170 |
+
|
1171 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:166
|
1172 |
+
msgid "Exclude the login page for registering as a hit."
|
1173 |
+
msgstr "استبعاد صفحة الدخول للتسجيل كنقرة."
|
1174 |
+
|
1175 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:170
|
1176 |
+
msgid "Excluded Admin Pages"
|
1177 |
+
msgstr "استبعاد الصفحات الإدارية"
|
1178 |
+
|
1179 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:173
|
1180 |
+
msgid "Exclude the admin pages for registering as a hit."
|
1181 |
+
msgstr "استبعاد الصفحات الادارية للتسجيل كنقرة."
|
1182 |
+
|
1183 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
|
1184 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
|
1185 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
|
1186 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
|
1187 |
+
msgid "Update"
|
1188 |
+
msgstr "تحديث"
|
1189 |
+
|
1190 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:32
|
1191 |
msgid "GeoIP settings"
|
1192 |
msgstr "إعدادات GeoIP"
|
1203 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
|
1204 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
|
1205 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
|
1206 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:151
|
1207 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:167
|
1208 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:179
|
1209 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:191
|
1210 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:207
|
1211 |
msgid "Active"
|
1212 |
+
msgstr "تفعيل"
|
1213 |
|
1214 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:49
|
1215 |
msgid ""
|
1272 |
msgstr ""
|
1273 |
"جمع GeoIP يتطلب PHP %s أو أعلى، يتم تعطيله حاليا نظرا لكونها نسخة PHP مثبتة"
|
1274 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1275 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
|
1276 |
msgid "Database Maintenance"
|
1277 |
msgstr "صيانة قاعدة البيانات"
|
1311 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
|
1312 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
|
1313 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
|
1314 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:208
|
1315 |
msgid "Enable or disable this feature"
|
1316 |
msgstr "تمكين أو تعطيل هذه الميزة"
|
1317 |
|
1405 |
msgid "Chart type in view stats."
|
1406 |
msgstr "نوع الرسم البياني في مشاهدة البيانات."
|
1407 |
|
1408 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:146
|
1409 |
+
msgid "Include totals"
|
1410 |
+
msgstr "تتضمن الاجماليات"
|
1411 |
+
|
1412 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
|
1413 |
+
msgid ""
|
1414 |
+
"Add a total line to charts with multiple values, like the search engine "
|
1415 |
+
"referrals"
|
1416 |
+
msgstr "إضافة سطر مجموع المخططات مع قيم متعددة، مثل إحالات محرك البحث"
|
1417 |
+
|
1418 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:162
|
1419 |
+
msgid "Disable map"
|
1420 |
+
msgstr "تعطيل الخريطة"
|
1421 |
+
|
1422 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:168
|
1423 |
+
msgid "Disable the map display"
|
1424 |
+
msgstr "تعطيل عرض الخريطة"
|
1425 |
+
|
1426 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
|
1427 |
+
msgid "Alternate map location"
|
1428 |
+
msgstr "خريطة الموقع البديل"
|
1429 |
+
|
1430 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:180
|
1431 |
+
msgid ""
|
1432 |
+
"Place the map above the recent visitors area instead of at the top of the "
|
1433 |
+
"page."
|
1434 |
+
msgstr ""
|
1435 |
+
"وضع الخريطة فوق منطقة الزوار الأخيرة بدلا من في الجزء العلوي من الصفحة."
|
1436 |
+
|
1437 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:186
|
1438 |
+
msgid "Get country location from Google"
|
1439 |
+
msgstr "الحصول على موقع البلد من جوجل"
|
1440 |
+
|
1441 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:192
|
1442 |
+
msgid ""
|
1443 |
+
"This feature may cause a performance degradation when viewing statistics."
|
1444 |
+
msgstr "قد تسبب هذه الميزة انخفاض أداء الموقع عند عرض الإحصائيات."
|
1445 |
+
|
1446 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:215
|
1447 |
msgid "Time send"
|
1448 |
msgstr "وقت الارسال"
|
1449 |
|
1450 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:221
|
1451 |
msgid "Hourly"
|
1452 |
msgstr "كل ساعة"
|
1453 |
|
1454 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
|
1455 |
msgid "Twice daily"
|
1456 |
msgstr "مرتين يوميا"
|
1457 |
|
1458 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:223
|
1459 |
msgid "daily"
|
1460 |
msgstr "يوميا"
|
1461 |
|
1462 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:225
|
1463 |
msgid "Select when receiving statistics report."
|
1464 |
msgstr "حدد عند استلام إحصاءات التقرير."
|
1465 |
|
1466 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:231
|
1467 |
msgid "Send Statistical reporting to"
|
1468 |
msgstr "إرسال تقارير الإحصائيات إلى"
|
1469 |
|
1470 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:237
|
1471 |
msgid "Email"
|
1472 |
msgstr "البريد الإلكتروني"
|
1473 |
|
1474 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:238
|
1475 |
msgid "SMS"
|
1476 |
msgstr "رسائل نصية"
|
1477 |
|
1478 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
|
1479 |
msgid "Type Select Get Status Report."
|
1480 |
msgstr "حدد نوع الحصول على التقرير."
|
1481 |
|
1482 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:243
|
1483 |
#, php-format
|
1484 |
msgid ""
|
1485 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1488 |
"ملاحظة: لإرسال الرسائل النصية SMS الرجاء تثبيت البرنامج المساعد <a href=\"%s"
|
1489 |
"\" target=\"_blank\">Wordpress SMS</a>."
|
1490 |
|
1491 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:250
|
1492 |
msgid "Send Content Report"
|
1493 |
msgstr "أرسل المحتوى"
|
1494 |
|
1495 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:255
|
1496 |
msgid "Enter the contents of the reports received."
|
1497 |
msgstr "أدخل محتويات التقارير الواردة."
|
1498 |
|
1499 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:257
|
1500 |
msgid "Input data:"
|
1501 |
msgstr "إدخال البيانات:"
|
1502 |
|
1503 |
+
#~ msgid "(See more)"
|
1504 |
+
#~ msgstr "(عرض المزيد)"
|
1505 |
+
|
1506 |
+
#~ msgid "Type date for last update"
|
1507 |
+
#~ msgstr "اكتب تاريخ آخر تحديث"
|
1508 |
+
|
1509 |
+
#~ msgid "English"
|
1510 |
+
#~ msgstr "الانجليزية"
|
1511 |
+
|
1512 |
+
#~ msgid "Persian"
|
1513 |
+
#~ msgstr "الفارسية"
|
1514 |
+
|
1515 |
#~ msgid "Admin Levels"
|
1516 |
#~ msgstr "مستويات المشرف"
|
1517 |
|
1530 |
#~ msgid "Empty"
|
1531 |
#~ msgstr "تفريغ"
|
1532 |
|
|
|
|
|
|
|
1533 |
#~ msgid "Chart Settings"
|
1534 |
#~ msgstr "إعدادات الرسم البياني"
|
1535 |
|
1567 |
#~ msgid "Word"
|
1568 |
#~ msgstr "كلمة"
|
1569 |
|
|
|
|
|
|
|
1570 |
#~ msgid "Site"
|
1571 |
#~ msgstr "الموقع"
|
1572 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://mostafa-soufi.ir/donate/
|
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, 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.8
|
7 |
-
Stable tag: 5.
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
@@ -195,6 +195,11 @@ The webcrawler detection code has be Fixes and will now exclude them from your s
|
|
195 |
* As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
|
196 |
|
197 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
198 |
= 5.0 =
|
199 |
* Added: Show last visitor in Google Map.
|
200 |
* Added: Search visitor by IP in log pages.
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, 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.8
|
7 |
+
Stable tag: 5.1
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
195 |
* As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
|
196 |
|
197 |
== Changelog ==
|
198 |
+
= 5.1 =
|
199 |
+
* Fixes: Small bug in referral url.
|
200 |
+
* Fixes: Problem export table.
|
201 |
+
* Updated: Arabic (ar) language.
|
202 |
+
|
203 |
= 5.0 =
|
204 |
* Added: Show last visitor in Google Map.
|
205 |
* Added: Search visitor by IP in log pages.
|
wp-statistics.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Wordpress Statistics
|
4 |
-
Plugin URI: http://mostafa-soufi.ir/
|
5 |
Description: Complete statistics for your blog.
|
6 |
-
Version: 5.
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://mostafa-soufi.ir/
|
9 |
Text Domain: wp_statistics
|
@@ -15,7 +15,7 @@ License: GPL2
|
|
15 |
date_default_timezone_set( get_option('timezone_string') );
|
16 |
}
|
17 |
|
18 |
-
define('WP_STATISTICS_VERSION', '5.
|
19 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
|
20 |
define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
|
21 |
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Wordpress Statistics
|
4 |
+
Plugin URI: http://mostafa-soufi.ir/blog/wordpress-statistics
|
5 |
Description: Complete statistics for your blog.
|
6 |
+
Version: 5.1
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://mostafa-soufi.ir/
|
9 |
Text Domain: wp_statistics
|
15 |
date_default_timezone_set( get_option('timezone_string') );
|
16 |
}
|
17 |
|
18 |
+
define('WP_STATISTICS_VERSION', '5.1');
|
19 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
|
20 |
define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
|
21 |
|