createXMLDataSet(dirname(__FILE__) . '/fixtures/phpbb_forums.xml'); } protected $forum_data = array( // \__/ 1 => array('forum_id' => 1, 'parent_id' => 0, 'user_id' => 0, 'left_id' => 1, 'right_id' => 6, 'forum_parents' => 'a:0:{}'), 2 => array('forum_id' => 2, 'parent_id' => 1, 'user_id' => 0, 'left_id' => 2, 'right_id' => 3, 'forum_parents' => 'a:0:{}'), 3 => array('forum_id' => 3, 'parent_id' => 1, 'user_id' => 0, 'left_id' => 4, 'right_id' => 5, 'forum_parents' => 'a:0:{}'), // \ / // \/ 4 => array('forum_id' => 4, 'parent_id' => 0, 'user_id' => 0, 'left_id' => 7, 'right_id' => 12, 'forum_parents' => 'a:0:{}'), 5 => array('forum_id' => 5, 'parent_id' => 4, 'user_id' => 0, 'left_id' => 8, 'right_id' => 11, 'forum_parents' => 'a:0:{}'), 6 => array('forum_id' => 6, 'parent_id' => 5, 'user_id' => 0, 'left_id' => 9, 'right_id' => 10, 'forum_parents' => 'a:0:{}'), // \_ _/ // \/ 7 => array('forum_id' => 7, 'parent_id' => 0, 'user_id' => 0, 'left_id' => 13, 'right_id' => 22, 'forum_parents' => 'a:0:{}'), 8 => array('forum_id' => 8, 'parent_id' => 7, 'user_id' => 0, 'left_id' => 14, 'right_id' => 15, 'forum_parents' => 'a:0:{}'), 9 => array('forum_id' => 9, 'parent_id' => 7, 'user_id' => 0, 'left_id' => 16, 'right_id' => 19, 'forum_parents' => 'a:0:{}'), 10 => array('forum_id' => 10, 'parent_id' => 9, 'user_id' => 0, 'left_id' => 17, 'right_id' => 18, 'forum_parents' => 'a:0:{}'), 11 => array('forum_id' => 11, 'parent_id' => 7, 'user_id' => 0, 'left_id' => 20, 'right_id' => 21, 'forum_parents' => 'a:0:{}'), // Non-existent forums 0 => array('forum_id' => 0, 'parent_id' => 0, 'user_id' => 0, 'left_id' => 0, 'right_id' => 0, 'forum_parents' => 'a:0:{}'), 200 => array('forum_id' => 200, 'parent_id' => 0, 'user_id' => 0, 'left_id' => 0, 'right_id' => 0, 'forum_parents' => 'a:0:{}'), ); protected $set, $config, $lock, $db; public function setUp() { parent::setUp(); $this->db = $this->new_dbal(); global $config; $config = $this->config = new \phpbb\config\config(array('nestedset_forum_lock' => 0)); set_config(null, null, null, $this->config); $this->lock = new \phpbb\lock\db('nestedset_forum_lock', $this->config, $this->db); $this->set = new \phpbb\tree\nestedset_forum($this->db, $this->lock, 'phpbb_forums'); $this->set_up_forums(); } protected function set_up_forums() { static $forums; if (empty($forums)) { $this->create_forum('Parent with two flat children'); $this->create_forum('Flat child #1', 1); $this->create_forum('Flat child #2', 1); $this->create_forum('Parent with two nested children'); $this->create_forum('Nested child #1', 4); $this->create_forum('Nested child #2', 5); $this->create_forum('Parent with flat and nested children'); $this->create_forum('Mixed child #1', 7); $this->create_forum('Mixed child #2', 7); $this->create_forum('Nested child #1 of Mixed child #2', 9); $this->create_forum('Mixed child #3', 7); // Updating forum_parents column here so it's not empty // This is required, so we can see whether the methods // correctly clear the values. $sql = "UPDATE phpbb_forums SET forum_parents = 'a:0:{}'"; $this->db->sql_query($sql); // Copy the forums into a static array, so we can reuse the list later $sql = 'SELECT * FROM phpbb_forums'; $result = $this->db->sql_query($sql); $forums = $this->db->sql_fetchrowset($result); $this->db->sql_freeresult($result); } else { $buffer = new \phpbb\db\sql_insert_buffer($this->db, 'phpbb_forums'); $buffer->insert_all($forums); $buffer->flush(); $this->database_synchronisation(array( 'phpbb_forums' => array('forum_id'), )); } } protected function create_forum($name, $parent_id = 0) { $forum = $this->set->insert(array('forum_name' => $name, 'forum_desc' => '', 'forum_rules' => '')); $this->set->change_parent($forum['forum_id'], $parent_id); } } a> 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 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 740 741 742 743 744 745 746 747
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# Naim Daka <naim70@freesurf>, 2002.
#
#
msgid ""
msgstr ""
"Project-Id-Version: mdkonline 0.15 \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-10-01 22:37+0200\n"
"PO-Revision-Date: 2002-09-24 15:30+0100\n"
"Last-Translator: Naim Daka <naim70@freesurf.ch>\n"
"Language-Team: Albanian <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
#: ../mdkapplet:61
#, c-format
msgid "Your system is up-to-date"
msgstr ""
#: ../mdkapplet:67
#, fuzzy, c-format
msgid ""
"Service configuration problem. Please check logs and send mail to "
"support@mandrakeonline.net"
msgstr "Për çdo problem na dërgoni një e-mail në suppport@mandrakeonline.net\n"
#: ../mdkapplet:73
#, c-format
msgid "System is busy. Please wait ..."
msgstr ""
#: ../mdkapplet:79
#, fuzzy, c-format
msgid "New updates are available for your system"
msgstr ""
"Skanerët e radhitur\n"
"\n"
"%s\n"
"janë lidhur direkt në sistemin tuaj.\n"
#: ../mdkapplet:85
#, c-format
msgid "Service is not configured. Please click on \"Configure the service\""
msgstr ""
#: ../mdkapplet:91
#, c-format
msgid "Network is down. Please configure your network"
msgstr ""
#: ../mdkapplet:97
#, c-format
msgid "Service is not activated. Please click on \"Online Website\""
msgstr ""
#: ../mdkapplet:103
#, c-format
msgid "Release not supported (too old release, or development release)"
msgstr ""
#: ../mdkapplet:108 ../mdkapplet:158
#, c-format
msgid "Install updates"
msgstr "Instaloi azhurnimet"
#: ../mdkapplet:109
#, fuzzy, c-format
msgid "Configure the service"
msgstr "Konfiguro"
#: ../mdkapplet:110
#, fuzzy, c-format
msgid "Check Updates"
msgstr "Azhurnimi"
#: ../mdkapplet:111
#, c-format
msgid "Online WebSite"
msgstr ""
#: ../mdkapplet:112
#, fuzzy, c-format
msgid "Configure Network"
msgstr "Konfigurim i rrjetin"
#: ../mdkapplet:113
#, fuzzy, c-format
msgid "Configure Now!"
msgstr "Lexim i konfiguracionit\n"
#: ../mdkapplet:146
#, fuzzy, c-format
msgid "Mandrakelinux Updates Applet"
msgstr "Mandrakelinux dhe jeta e juaj private"
#: ../mdkapplet:156
#, c-format
msgid "Actions"
msgstr "Akcionet"
#: ../mdkapplet:159
#, c-format
msgid "Configure"
msgstr "Konfiguro"
#: ../mdkapplet:160
#, fuzzy, c-format
msgid "Check updates"
msgstr "Azhurnimet e sigurisë"
#: ../mdkapplet:161
#, fuzzy, c-format
msgid "See logs"
msgstr "Kërkim +5s"
#: ../mdkapplet:164
#, c-format
msgid "Status"
msgstr "Statusi"
#: ../mdkapplet:168 ../mdkapplet:363
#, c-format
msgid "Close"
msgstr "Mbylle"
#: ../mdkapplet:203
#, fuzzy, c-format
msgid "Network Connection: "
msgstr "Lidhje Virtuale në Rrjet"
#: ../mdkapplet:203
#, c-format
msgid "Up"
msgstr "Lartë"
#: ../mdkapplet:203
#, c-format
msgid "Down"
msgstr "Poshtë"
#: ../mdkapplet:204
#, c-format
msgid "Last check: "
msgstr ""
#: ../mdkapplet:205
#, fuzzy, c-format
msgid "Updates: "
msgstr "Azhurnimi"
#: ../mdkapplet:209
#, fuzzy, c-format
msgid "Launching drakconnect\n"
msgstr "Nise userdrake"
#: ../mdkapplet:213
#, c-format
msgid "Launching mdkupdate --applet\n"
msgstr ""
#: ../mdkapplet:217
#, c-format
msgid "Mandrakeonline seems to be reinstalled, reloading applet ...."
msgstr ""
#: ../mdkapplet:225
#, fuzzy, c-format
msgid "Computing new updates...\n"
msgstr "Lidhje e ballafaquar"
#: ../mdkapplet:227
#, fuzzy, c-format
msgid "Connecting to"
msgstr "Lidhje e ballafaquar"
#: ../mdkapplet:250
#, c-format
msgid "Checking... Updates are available\n"
msgstr ""
#: ../mdkapplet:254
#, c-format
msgid "Development release not supported by service"
msgstr ""
#: ../mdkapplet:255
#, c-format
msgid "Too old release not supported by service"
msgstr ""
#: ../mdkapplet:256
#, fuzzy, c-format
msgid "Unknown state"
msgstr "Ftues i pa njoftur"
#: ../mdkapplet:257
#, c-format
msgid "Online services disabled. Contact Mandrakeonline site\n"
msgstr ""
#: ../mdkapplet:258
#, c-format
msgid "Wrong Password.\n"
msgstr "Parulla e gabuar.\n"
#: ../mdkapplet:259
#, c-format
msgid "Wrong Action or host or login.\n"
msgstr ""
#: ../mdkapplet:260
#, c-format
msgid ""
"Something is wrong with your network settings (check your route, firewall or "
"proxy settings)\n"
msgstr ""
#: ../mdkapplet:264
#, fuzzy, c-format
msgid "System is up-to-date\n"
msgstr "Modë i sistemit"
#: ../mdkapplet:303
#, c-format
msgid "No check"
msgstr ""
#: ../mdkapplet:316
#, c-format
msgid "Checking Network: seems disabled\n"
msgstr ""
#: ../mdkapplet:319
#, c-format
msgid "Checking config file: Not present\n"
msgstr ""
#: ../mdkapplet:353
#, c-format
msgid "Logs"
msgstr "Të përditëshmet"
#: ../mdkapplet:369
#, fuzzy, c-format
msgid "Clear"
msgstr "Kalendari"
#: ../mdkapplet:396
#, c-format
msgid "About..."
msgstr "Në lidhje me..."
#: ../mdkapplet:397
#, c-format
msgid "Always launch on startup"
msgstr ""
#: ../mdkapplet:399
#, c-format
msgid "Quit"
msgstr "Dalje"
#: ../mdkonline:89
#, c-format
msgid "Next"
msgstr "Tjetër"
#: ../mdkonline:89
#, c-format
msgid "Cancel"
msgstr "Anulo"
#: ../mdkonline:89
#, c-format
msgid "Previous"
msgstr "Mbrapa"
#: ../mdkonline:103
#, c-format
msgid "Welcome to Mandrakeonline"
msgstr "Mirë se Vini në Mandrakeonline"
#: ../mdkonline:104 ../mdkonline_tui:98
#, c-format
msgid ""
"This assistant will help you to upload your configuration\n"
"(packages, hardware configuration) to a centralized database in\n"
"order to keep you informed about security updates and useful upgrades.\n"
msgstr ""
"Ky asitent do të ju ndihmojë që ta dërgoni konfigurimin tuaj (listën e \n"
"pakove, konfigurimin e materialit) në drejtim të një baze të të dhënave "
"qendrore\n"
"që në fund të ju informon për azhurnimin e sigurisë.\n"
#: ../mdkonline:105 ../mdkonline_tui:142
#, fuzzy, c-format
msgid "Create a Mandrakeonline Account"
msgstr "Kontoja e Klubit Mandrake"
#: ../mdkonline:107
#, fuzzy, c-format
msgid "I don't have a Mandrakeonline account and I want to subscribe"
msgstr "Nuk e posedon llogarin Mandrakeonline dhe dëshiroj të "
#: ../mdkonline:111 ../mdkonline:131 ../mdkonline_tui:114 ../mdkonline_tui:145
#, c-format
msgid "Login:"
msgstr "Login:"
#: ../mdkonline:112 ../mdkonline:132 ../mdkonline_tui:115 ../mdkonline_tui:146
#, c-format
msgid "Password:"
msgstr "Parulla:"
#: ../mdkonline:113 ../mdkonline_tui:147
#, c-format
msgid "Confirm Password:"
msgstr "Konfirmoje Parullën:"
#: ../mdkonline:114 ../mdkonline_tui:148
#, fuzzy, c-format
msgid "Mail contact:"
msgstr "Kontakt Mail:"
#: ../mdkonline:121
#, c-format
msgid "Mandrakelinux Privacy Policy"
msgstr "Mandrakelinux dhe jeta e juaj private"
#: ../mdkonline:127
#, fuzzy, c-format
msgid "Authentification"
msgstr "Vërtetësimi"
#: ../mdkonline:128 ../mdkonline_tui:108
#, c-format
msgid "Enter your Mandrakeonline login, password and machine name:"
msgstr "Hyni loginin, parullën dhe emrin e makinës suaj në Mandrakeonline:"
#: ../mdkonline:133 ../mdkonline_tui:116
#, c-format
msgid "Machine name:"
msgstr "Emri i Makinës:"
#: ../mdkonline:138
#, fuzzy, c-format
msgid "Send Configuration"
msgstr "Konfigurimi i zërit"
#: ../mdkonline:139 ../mdkonline_tui:128
#, c-format
msgid ""
"In order to benefit from Mandrakeonline services,\n"
"we are about to upload your configuration.\n"
"\n"
"The Wizard will now send the following information to Mandrakesoft:\n"
"1) the list of packages you have installed on your system,\n"
"2) your hardware configuration.\n"
"\n"
"If you feel uncomfortable by that idea, or do not want to benefit from this "
"service,\n"
"please press 'Cancel'. By pressing 'Next', you allow us to keep you "
"informed\n"
"about security updates and useful upgrades via personalized email alerts.\n"
"Furthermore, you benefit from discounted paid support services on\n"
"www.mandrakeexpert.com."
msgstr ""
"Më në fund që të përfitoni nga servicet Mandrakeonline,\n"
"ne jeni përsipër në marrjes e të dhënave mbi konfigurimin tuaj.\n"
"Asistenti do të ju komunikoj të dhënat e poshtë të shënuara në "
"Mandrakesoft:\n"
"1) listën e pakove të cilat i keni instaluar në sistemin tuaj,\n"
"2) konfigurimin e hardwarit tuaj.\n"
"\n"
"Nëse ju nuk e ndieni veten të qetë me këtë ide, e ne nuk keni dëshirë që të "
"përfitoni nga këto service,\n"
"ju lutemi shtypni 'Anulo'. Me shtypje mbi 'Tjetri', ju do të na mundësoni që "
"të ju informojmë për azhurnimin e sigurisë\n"
"përmirësime të përdorshme me lidhje të azhurnimit të sigurisë drejt e-mail "
"elektronike.\n"
"Njashtu, ju përfitoni në vënie të serviseve ndihmuese të paguara në\n"
"www.mandrakeexpert.com"
#: ../mdkonline:144 ../mdkonline:211 ../mdkonline:234
#, c-format
msgid "Finish"
msgstr "Mbaro"
#: ../mdkonline:145 ../mdkonline_tui:167
#, c-format
msgid "Your upload was successful!"
msgstr "Dërgesa e juaj ishte me sukses!"
#: ../mdkonline:145 ../mdkonline_tui:167
#, c-format
msgid ""
"From now you will receive on security and updates \n"
"announcements thanks to Mandrakeonline."
msgstr ""
"Prej ketij momenti Mandrakeonline do të ju dërgon azhurnimet\n"
"e reja të sigurisë."
#: ../mdkonline:145 ../mdkonline_tui:167
#, c-format
msgid ""
"Mandrakeonline offers you the ability to automate the updates.\n"
"A program will run regulary in your system waiting for new updates\n"
msgstr ""
"Mandrakeonline ju mundëson që ti automatozoni azhurnimet e reja.\n"
"Një program do të starton rregulisht në makinën tuaj për pritjen e "
"azhurnimeve të reja.\n"
#: ../mdkonline:146
#, c-format
msgid "automated Upgrades"
msgstr "Azhurnim automatikë"
#: ../mdkonline:150
#, c-format
msgid "Country:"
msgstr "Vendi:"
#: ../mdkonline:178 ../mdkonline:183 ../mdkonline:185 ../mdkonline:187
#, c-format
msgid "Error"
msgstr "Gabim"
#: ../mdkonline:183 ../mdkonline_tui:152
#, fuzzy, c-format
msgid "Please provide a login"
msgstr "Ju lutemi provoni edhe një herë"
#: ../mdkonline:185 ../mdkonline_tui:152
#, c-format
msgid ""
"The passwords do not match\n"
" Please try again\n"
msgstr ""
"Parulla e juaj nuk pëputhet\n"
" Ju lutemi provoni edhe një herë\n"
#: ../mdkonline:187 ../mdkonline_tui:152
#, c-format
msgid "Not a valid mail address!\n"
msgstr "Nuk është një adresë e-mail valide!\n"
#: ../mdkonline:199 ../mdkonline_tui:78
#, c-format
msgid "Reading configuration\n"
msgstr "Lexim i konfiguracionit\n"
#: ../mdkonline:204 ../mdkonline_tui:82
#, fuzzy, c-format
msgid "Sending configuration..."
msgstr "Lexim i konfiguracionit\n"
#: ../mdkonline:213 ../mdkonline:273 ../mdkonline_tui:130 ../mdkonline_tui:169
#: ../mdkupdate:124 ../mdkupdate:195
#, c-format
msgid "Connection problem"
msgstr "Lidhje e ballafaquar"
#: ../mdkonline:213 ../mdkonline_tui:169
#, c-format
msgid "Problem occurs when uploading files, please try again"
msgstr ""
#: ../mdkonline:251
#, c-format
msgid "Quitting Wizard\n"
msgstr "Mbyllja e Asistentit\n"
#: ../mdkonline:273
#, fuzzy, c-format
msgid "Mandrakeonline could not be contacted, please try again at a later time"
msgstr ""
"Mandrakeupdate nuk mund të kontaktoj sitin, ne do të mundohemi edhe një herë."
#: ../mdkonline:285
#, c-format
msgid "Wrong password"
msgstr "Parulla e gabuar"
#: ../mdkonline:285 ../mdkonline_tui:130
#, c-format
msgid ""
"Your login or password was wrong.\n"
" Either you'll have to type it again, or you'll need to create an account on "
"Mandrakeonline.\n"
" In the latter case, go back to the first step to connect to "
"Mandrakeonline.\n"
" Be aware that you must also provide a Machine name \n"
" (only alphabetical characters are admitted)"
msgstr ""
"Logini apo parulla juaj janë të pa sakta.\n"
"Ju duhet të shtypni përsëri apo të krijoni një llogarie tjetër në "
"Mandrakeonline.\n"
"Në këtë pjesë të dytë, ju duhet të ktheheni në pikën e parë të kyqjes "
"Mandrakeonline.\n"
"Shënoni se ju duhet ta shkruani emrin e Makinës suaj \n"
"(vetëm shkronjat alfabetike janë të autorizuara)"
#: ../mdkonline.pm:58
#, c-format
msgid "Login and password should be less than 12 characters\n"
msgstr ""
#: ../mdkonline.pm:59
#, c-format
msgid "Special characters are not allowed\n"
msgstr ""
#: ../mdkonline.pm:60
#, c-format
msgid "Please fill in all fields\n"
msgstr ""
#: ../mdkonline.pm:61
#, c-format
msgid "Email not valid\n"
msgstr ""
#: ../mdkonline.pm:62
#, c-format
msgid "Account already exist\n"
msgstr ""
#: ../mdkonline.pm:68
#, c-format
msgid "Problem connecting to server \n"
msgstr "Problem gjatë lidhjes në server \n"
#: ../mdkonline_tui:45 ../mdkonline_tui:95
#, fuzzy, c-format
msgid "Mandrakeonline"
msgstr "Mirë se Vini në Mandrakeonline"
#: ../mdkonline_tui:48
#, c-format
msgid "I already have an account"
msgstr ""
#: ../mdkonline_tui:49
#, c-format
msgid "I want to subscribe"
msgstr ""
#: ../mdkonline_tui:78 ../mdkonline_tui:82 ../mdkonline_tui:120
#, c-format
msgid "Please wait"
msgstr "Një moment ju lutemi"
#: ../mdkonline_tui:103
#, c-format
msgid "Account creation or authentication"
msgstr ""
#: ../mdkonline_tui:120
#, fuzzy, c-format
msgid "Connecting to Mandrakeonline website..."
msgstr "Mirë se Vini në Mandrakeonline"
#: ../mdkonline_tui:130
#, c-format
msgid "or"
msgstr ""
#: ../mdkonline_tui:130
#, fuzzy, c-format
msgid "wrong password:"
msgstr "Parulla e gabuar"
#: ../mdkonline_tui:158
#, c-format
msgid ""
"Mandrakeonline Account successfully created.\n"
"Please click \"Next\" to authenticate and upload your configuration\n"
msgstr ""
#: ../mdkonline_tui:175
#, fuzzy, c-format
msgid "Country"
msgstr "Vendi:"
#: ../mdkonline_tui:187
#, fuzzy, c-format
msgid "Congratulations"
msgstr "Konfigurimi i zërit"
#: ../mdkonline_tui:187
#, c-format
msgid "Your Mandrakeonline account has been successfully configured\n"
msgstr ""
#: ../mdkupdate:50
#, c-format
msgid ""
"mdkupdate version %s\n"
"Copyright (C) %s Mandrakesoft.\n"