cache_dir = $phpbb_root_path . 'cache/'; } function load() { global $phpEx; if (file_exists($this->cache_dir . 'data_global.' . $phpEx)) { @include($this->cache_dir . 'data_global.' . $phpEx); } else { return false; } } function unload() { $this->save(); unset($this->vars); unset($this->var_expires); unset($this->sql_rowset); } function save() { if (!$this->is_modified) { return; } global $phpEx; $file = 'vars=' . $this->format_array($this->vars) . ";\n\$this->var_expires=" . $this->format_array($this->var_expires) . ' ?>'; if ($fp = @fopen($this->cache_dir . 'data_global.' . $phpEx, 'wb')) { @flock($fp, LOCK_EX); fwrite($fp, $file); @flock($fp, LOCK_UN); fclose($fp); } $this->is_modified = FALSE; } function tidy() { global $phpEx; $dir = opendir($this->cache_dir); while ($entry = readdir($dir)) { if (!preg_match('/^(sql_|data_(?!global))/', $entry)) { continue; } $expired = TRUE; include($this->cache_dir . $entry); if ($expired) { unlink($this->cache_dir . $entry); } } @closedir($dir); if (file_exists($this->cache_dir . 'data_global.' . $phpEx)) { if (!is_array($this->vars)) { $this->load(); } foreach ($this->var_expires as $var_name => $expires) { if (time() > $expires) { $this->destroy($var_name); } } } } function get($var_name) { if ($var_name{0} == '_') { global $phpEx; include($this->cache_dir . 'data' . $var_name . ".$phpEx"); return (isset($data)) ? $data : NULL; } else { return ($this->exists($var_name)) ? $this->vars[$var_name] : NULL; } } function put($var_name, $var, $ttl = 31536000) { if ($var_name{0} == '_') { global $phpEx; if ($fp = @fopen($this->cache_dir . 'data' . $var_name . ".$phpEx", 'wb')) { @flock($fp, LOCK_EX); fwrite($fp, " " . (time() + $ttl) . ") ? TRUE : FALSE;\nif (\$expired) { return; }\n\n\$data = unserialize('" . str_replace("'", "\\'", str_replace('\\', '\\\\', serialize($var))) . "');\n?>"); @flock($fp, LOCK_UN); fclose($fp); } } else { $this->vars[$var_name] = $var; $this->var_expires[$var_name] = time() + $ttl; $this->is_modified = TRUE; } } function destroy($var_name, $table = '') { global $phpEx; if ($var_name == 'sql' && !empty($table)) { $regex = '(' . ((is_array($table)) ? implode('|', $table) : $table) . ')'; $dir = opendir($this->cache_dir); while ($entry = readdir($dir)) { if (substr($entry, 0, 4) != 'sql_') { continue; } $fp = fopen($this->cache_dir . $entry, 'rb'); $file = fread($fp, filesize($this->cache_dir . $entry)); @fclose($fp); if (preg_match('#/\*.*?\W' . $regex . '\W.*?\*/#s', $file, $m)) { unlink($this->cache_dir . $entry); } } @closedir($dir); } elseif ($var_name{0} == '_') { @unlink($this->cache_dir . 'data' . $var_name . ".$phpEx"); } elseif (isset($this->vars[$var_name])) { $this->is_modified = TRUE; unset($this->vars[$var_name]); unset($this->var_expires[$var_name]); } } function exists($var_name) { if ($var_name{0} == '_') { global $phpEx; return file_exists($this->cache_dir . 'data' . $var_name . ".$phpEx"); } else { if (!is_array($this->vars)) { $this->load(); } if (!isset($this->var_expires[$var_name])) { return false; } return (time() > $this->var_expires[$var_name]) ? false : isset($this->vars[$var_name]); } } function format_array($array) { $lines = array(); foreach ($array as $k => $v) { if (is_array($v)) { $lines[] = "'$k'=>" . $this->format_array($v); } elseif (is_int($v)) { $lines[] = "'$k'=>$v"; } elseif (is_bool($v)) { $lines[] = "'$k'=>" . (($v) ? 'TRUE' : 'FALSE'); } else { $lines[] = "'$k'=>'" . str_replace("'", "\\'", str_replace('\\', '\\\\', $v)) . "'"; } } return 'array(' . implode(',', $lines) . ')'; } function sql_load($query) { global $phpEx; // Remove extra spaces and tabs $query = preg_replace('/[\n\r\s\t]+/', ' ', $query); $query_id = 'Cache id #' . count($this->sql_rowset); if (!file_exists($this->cache_dir . 'sql_' . md5($query) . ".$phpEx")) { return false; } @include($this->cache_dir . 'sql_' . md5($query) . ".$phpEx"); if (!isset($expired)) { return FALSE; } elseif ($expired) { unlink($this->cache_dir . 'sql_' . md5($query) . ".$phpEx"); return FALSE; } return $query_id; } function sql_save($query, &$query_result, $ttl) { global $db, $phpEx; // Remove extra spaces and tabs $query = preg_replace('/[\n\r\s\t]+/', ' ', $query); if ($fp = @fopen($this->cache_dir . 'sql_' . md5($query) . '.' . $phpEx, 'wb')) { @flock($fp, LOCK_EX); $lines = array(); $query_id = 'Cache id #' . count($this->sql_rowset); $this->sql_rowset[$query_id] = array(); while ($row = $db->sql_fetchrow($query_result)) { $this->sql_rowset[$query_id][] = $row; $lines[] = "unserialize('" . str_replace("'", "\\'", str_replace('\\', '\\\\', serialize($row))) . "')"; } $db->sql_freeresult($query_result); fwrite($fp, " " . (time() + $ttl) . ") ? TRUE : FALSE;\nif (\$expired) { return; }\n\n\$this->sql_rowset[\$query_id] = array(" . implode(',', $lines) . ') ?>'); @flock($fp, LOCK_UN); fclose($fp); $query_result = $query_id; } } function sql_exists($query_id) { return isset($this->sql_rowset[$query_id]); } function sql_fetchrow($query_id) { return array_shift($this->sql_rowset[$query_id]); } } ?>a id='n85' href='#n85'>85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
# translation of mdkonline.po to
#
# Boujaj Mostapha Ibrahim <mboujaj@yahoo.de, 2002.
# Mohammed Gamal <f2c2001@yahoo.com>, 2001.
# Youcef Rabah Rahal <rahal@arabeyes.org>, 2004.
# Ossama M. Khayat <okhayat@yahoo.com>, 2004, 2005.
# Yaser Ammar <linux.uae@gawab.com>, 2009.
msgid ""
msgstr ""
"Project-Id-Version: mdkonline\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-01 15:19+0100\n"
"PO-Revision-Date: 2009-11-26 16:15+0100\n"
"Last-Translator: Yaser Ammar <linux.uae@gawab.com>\n"
"Language-Team: Arabic <doc@arabeyes.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. -PO: here %s will be replaced by the local time (eg: "Will check updates at 14:03:50"
#: ../mdkapplet:71
#, c-format
msgid "Will check updates at %s"
msgstr "سيفحص وجود تحديثات عند %s"
#: ../mdkapplet:79
#, c-format
msgid "Your system is up-to-date"
msgstr "نظامك محدّث"
#: ../mdkapplet:84
#, c-format
msgid ""
"Service configuration problem. Please check logs and send mail to "
"support@mandrivaonline.com"
msgstr ""
"مشكلة في ضبط الخدمة. رجاء تحقّق من السجلّ وأرسل رسالة "
"إلىsupport@mandrivaonline.com"
#: ../mdkapplet:90
#, c-format
msgid "Please wait, finding available packages..."
msgstr "اتنظر من فضلك، يجري البحث عن الحزم المتاحة..."
#: ../mdkapplet:95
#, c-format
msgid "New updates are available for your system"
msgstr "هناك تحديثات متوفّرة لنظامك"
#: ../mdkapplet:101
#, c-format
msgid "A new version of Mandriva Linux distribution has been released"
msgstr "يتوفر إصدار جديد من توزيعة لينكس ماندريفا"
#: ../mdkapplet:119 ../mdkapplet:156
#, c-format
msgid "An additional package medium is available for your distribution."
msgstr "يتوفر وسيط إضافي للحزم لتوزيعتك."
#: ../mdkapplet:124
#, c-format
msgid "Network is down. Please configure your network"
msgstr "الشّبكة متوقّفة. رجاء اضبط شبكتك"
#: ../mdkapplet:130
#, c-format
msgid "Service is not activated. Please click on \"Online Website\""
msgstr "الخدمة غير مُنشَّطة. رجاء اضغط على \"Online Website\""
#: ../mdkapplet:135 ../mdkapplet:141
#, c-format
msgid "urpmi database locked"
msgstr "أقفلت قاعدة بيانات urpmi"
#: ../mdkapplet:146
#, c-format
msgid "Release not supported (too old release, or development release)"
msgstr ""
"هذه الإصدارة غير مدعومة (إما بسبب أنها قديمة جداً، أو أنها إصدارة تطويريّة)"
#: ../mdkapplet:151
#, c-format
msgid ""
"No medium found. You must add some media through 'Software Media Manager'."
msgstr "لا توجد وسائط، تجب إضافة بعض الوسائط عبر 'مدير وسائط البرامج'."
#: ../mdkapplet:161
#, c-format
msgid ""
"You already have at least one update medium configured, but\n"
"all of them are currently disabled. You should run the Software\n"
"Media Manager to enable at least one (check it in the \"%s\"\n"
"column).\n"
"\n"
"Then, restart \"%s\"."
msgstr ""
"لديك على الأقل وسيط تحديث واحد مضبوط، لكن\n"
"جميعها معطلة حالياً. يجب عليك تشغيل مدير وسائط\n"
"البرامج لتمكين واحد على الأقل (أشر عليها في عمود %s).\n"
"ثم أعد تشغيل %s."
#: ../mdkapplet:166
#, c-format
msgid "Enabled"
msgstr "مُفعَّل"
#: ../mdkapplet:179
#, c-format
msgid "Error updating media"
msgstr "خطأ في تحديث الوسيط"
#: ../mdkapplet:219 ../mdkapplet:881
#, c-format
msgid "Install updates"
msgstr "ثبّت التّحديثات"
#: ../mdkapplet:220 ../mdkapplet:221
#, c-format
msgid "Add additional package medium"
msgstr "أضف وسيط حزم إضافي"
#: ../mdkapplet:222
#, c-format
msgid "Check Updates"
msgstr "التمس تحديثات"
#: ../mdkapplet:223
#, c-format
msgid "Configure Network"
msgstr "اضبط الشّبكة"
#: ../mdkapplet:224
#, c-format
msgid "Upgrade the system"
msgstr "ترقية النظام"
#: ../mdkapplet:379
#, c-format
msgid ""
"Basic maintenance for this distribution has expired. Thanks to your "
"subscription to extended maintenance, your system will be kept up to date "
"until %s"
msgstr ""
#: ../mdkapplet:400
#, c-format
msgid "Launching drakconnect\n"
msgstr "يُقدح drakconnect\n"
#: ../mdkapplet:413 ../mdkapplet:572
#, c-format
msgid "New version of Mandriva Linux distribution"
msgstr "إصدار جديد من توزيعة لينكس ماندريفا"
#: ../mdkapplet:418
#, c-format
msgid "Browse"
msgstr ""
#: ../mdkapplet:427
#, c-format
msgid "A new version of Mandriva Linux distribution has been released."
msgstr "أُطلق إصدار جديد من توزيعة لينكس ماندريفا."
#: ../mdkapplet:429 ../mdkapplet:518
#, c-format
msgid "More info about this new version"
msgstr "معلومات إضافية حول هذا الإصدار الجديد"
#: ../mdkapplet:431 ../mdkapplet:516
#, c-format
msgid "Do you want to upgrade to the '%s' distribution?"
msgstr "هل تريد الترقية إلى التوزيعة '%s' ؟"
#: ../mdkapplet:433 ../mdkapplet:526 ../mdkapplet:966 ../mdkapplet:992
#, c-format
msgid "Do not ask me next time"
msgstr "لا تسألني في المرة القادمة"
#: ../mdkapplet:435
#, c-format
msgid "Download all packages at once"
msgstr ""
#: ../mdkapplet:436
#, c-format
msgid "(Warning: You will need quite a lot of free space)"
msgstr ""
#: ../mdkapplet:442
#, c-format
msgid "Where to download packages:"
msgstr ""
#: ../mdkapplet:446 ../mdkapplet:531 ../mdkapplet:598 ../mdkapplet:967
#: ../mdkapplet:993 ../mdkapplet-enterprise-update-helper:89
#: ../mdkapplet-extended-maintenance-helper:131
#: ../mdkapplet-restricted-helper:95
#, c-format
msgid "Next"
msgstr "التالي"
#: ../mdkapplet:446 ../mdkapplet:531 ../mdkapplet:598 ../mdkapplet:967
#: ../mdkapplet:993 ../mdkapplet-enterprise-update-helper:89
#: ../mdkapplet-extended-maintenance-helper:131
#: ../mdkapplet-restricted-helper:95 ../mdkapplet-upgrade-helper:131
#: ../mdkapplet-upgrade-helper:150
#, c-format
msgid "Cancel"
msgstr "ألغِ"
#: ../mdkapplet:461
#, c-format
msgid ""
"This Mandriva Linux system maintenance has ended. It means it will not "
"receive any new software update."
msgstr ""
#: ../mdkapplet:467
#, c-format
msgid "In order to keep your system secure, you can:"
msgstr ""
#: ../mdkapplet:473
#, fuzzy, c-format
msgid "Mandriva Linux"
msgstr "ماندريفا أونلاين %s"
#: ../mdkapplet:479
#, c-format
msgid "You should get extended maintenance."
msgstr ""
#: ../mdkapplet:481
#, c-format
msgid ""
"You should either get extended maintenance or upgrade to a newer version of "
"the %s distribution."
msgstr ""
#: ../mdkapplet:485
#, fuzzy, c-format
msgid "You should upgrade to a newer version of the %s distribution."
msgstr "هل تريد الترقية إلى التوزيعة '%s' ؟"
#: ../mdkapplet:495
#, c-format
msgid "Your distribution is no longer supported"
msgstr ""
#: ../mdkapplet:505
#, c-format
msgid ""
"Purchase a maintenance extension for this version (%s) and keep it running "
"until."
msgstr ""
#: ../mdkapplet:589
#, c-format
msgid ""
"This upgrade requires high bandwidth network connection (cable, xDSL, ...) "
"and may take several hours to complete."
msgstr ""
"هذه الترقية تتطلب اتصالا شبكيا عريض النطاق (اتصال الكبل، دي إس إل، ...) وقد "
"يستغرق عدة ساعات ليكتمل"
#: ../mdkapplet:591
#, c-format
msgid "Estimated download data will be %s"
msgstr "المقدار التقريبي للبيانات التي ستنزل هو %s"
#: ../mdkapplet:592
#, c-format
msgid "You should close all other running applications before continuing."
msgstr "ينبغي أن تغلق كل التطبيقات الأخرى العاملة قبل المتابعة"
#: ../mdkapplet:595
#, c-format
msgid ""
"You should put your laptop on AC and favor ethernet connection over wifi, if "
"available."
msgstr ""
"ينبغي أن توصل حاسوبك المحمول بتيار الكهرباء المتناوبة (AC)، ويفضل استخدام "
"الاتصال السلكي (ethernet) بدل اللاسلكي (wifi) إن أمكن."
#: ../mdkapplet:627
#, c-format
msgid "Launching MandrivaUpdate\n"
msgstr "محدّث ماندريفا (MandrivaUpdate) يُقدح\n"