aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/page_header.php3
-rw-r--r--phpBB/templates/subSilver/overall_header.html6
2 files changed, 6 insertions, 3 deletions
diff --git a/phpBB/includes/page_header.php b/phpBB/includes/page_header.php
index fc9d7a1bfa..c37985ac78 100644
--- a/phpBB/includes/page_header.php
+++ b/phpBB/includes/page_header.php
@@ -285,6 +285,9 @@ $template->assign_vars(array(
'S_CONTENT_DIR_RIGHT' => $user->lang['RIGHT'],
'S_TIMEZONE' => ($user->data['user_dst'] || ($user->data['user_id'] == ANONYMOUS && $config['board_dst'])) ? sprintf($user->lang['ALL_TIMES'], $user->lang[$tz], $user->lang['tz']['dst']) : sprintf($user->lang['ALL_TIMES'], $user->lang[$tz], ''),
'S_DISPLAY_ONLINE_LIST' => (!empty($config['load_online'])) ? 1 : 0,
+ 'S_DISPLAY_SEARCH' => (!empty($config['load_search'])) ? 1 : 0,
+ 'S_DISPLAY_PM' => (empty($config['privmsg_disable'])) ? 1 : 0,
+ 'S_DISPLAY_MEMBERLIST' => (isset($auth)) ? $auth->acl_get('u_viewprofile') : 0,
'T_STYLESHEET_DATA' => $user->theme['css_data'],
'T_STYLESHEET_LINK' => 'templates/' . $user->theme['css_external'],
diff --git a/phpBB/templates/subSilver/overall_header.html b/phpBB/templates/subSilver/overall_header.html
index c3d42dda8f..475f02de61 100644
--- a/phpBB/templates/subSilver/overall_header.html
+++ b/phpBB/templates/subSilver/overall_header.html
@@ -17,7 +17,7 @@
<!-- IF S_USER_PM_POPUP -->
if ( {PRIVATE_MESSAGE_NEW_FLAG} )
{
- window.open('{U_PRIVATEMSGS}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');;
+ window.open('{U_PRIVATEMSGS}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
}
<!-- ENDIF -->
function im_popup(url, width, height)
@@ -47,9 +47,9 @@ function im_popup(url, width, height)
<td colspan="2"><img src="images/spacer.gif" height="5" alt="" /></td>
</tr>
<tr>
- <td height="25" valign="middle" nowrap="nowrap"><span class="mainmenu"><a href="{U_LOGIN_LOGOUT}"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a>&nbsp;<!-- IF S_USER_LOGGED_IN --> &nbsp;<a href="{U_PRIVATEMSGS}"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a><!-- ELSE --> &nbsp;<a href="{U_REGISTER}"><img src="templates/subSilver/images/icon_mini_register.gif" width="12" height="13" border="0" alt="{L_REGISTER}" hspace="3" />{L_REGISTER}</a><!-- ENDIF --></span></td>
+ <td height="25" valign="middle" nowrap="nowrap"><span class="mainmenu"><a href="{U_LOGIN_LOGOUT}"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a>&nbsp;<!-- IF S_USER_LOGGED_IN --><!-- IF S_DISPLAY_PM --> &nbsp;<a href="{U_PRIVATEMSGS}"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a><!-- ENDIF --><!-- ELSE --> &nbsp;<a href="{U_REGISTER}"><img src="templates/subSilver/images/icon_mini_register.gif" width="12" height="13" border="0" alt="{L_REGISTER}" hspace="3" />{L_REGISTER}</a><!-- ENDIF --></span></td>
- <td height="25" align="right" valign="middle" nowrap="nowrap"><span class="mainmenu">&nbsp;<a href="{U_FAQ}"><img src="templates/subSilver/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a>&nbsp; &nbsp;<a href="{U_SEARCH}"><img src="templates/subSilver/images/icon_mini_search.gif" width="12" height="13" border="0" alt="{L_SEARCH}" hspace="3" />{L_SEARCH}</a>&nbsp; &nbsp;<a href="{U_MEMBERLIST}"><img src="templates/subSilver/images/icon_mini_members.gif" width="12" height="13" border="0" alt="{L_MEMBERLIST}" hspace="3" />{L_MEMBERLIST}</a>&nbsp; &nbsp;<a href="{U_GROUP_CP}"><img src="templates/subSilver/images/icon_mini_groups.gif" width="12" height="13" border="0" alt="{L_USERGROUPS}" hspace="3" />{L_USERGROUPS}</a><!-- IF S_USER_LOGGED_IN -->&nbsp; &nbsp;<a href="{U_PROFILE}"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a><!-- ENDIF --></span></td>
+ <td height="25" align="right" valign="middle" nowrap="nowrap"><span class="mainmenu">&nbsp;<a href="{U_FAQ}"><img src="templates/subSilver/images/icon_mini_faq.gif" width="12" height="13" border="0" alt="{L_FAQ}" hspace="3" />{L_FAQ}</a><!-- IF S_DISPLAY_SEARCH -->&nbsp; &nbsp;<a href="{U_SEARCH}"><img src="templates/subSilver/images/icon_mini_search.gif" width="12" height="13" border="0" alt="{L_SEARCH}" hspace="3" />{L_SEARCH}</a><!-- ENDIF -->&nbsp; &nbsp;<!-- IF S_DISPLAY_MEMBERLIST --><a href="{U_MEMBERLIST}"><img src="templates/subSilver/images/icon_mini_members.gif" width="12" height="13" border="0" alt="{L_MEMBERLIST}" hspace="3" />{L_MEMBERLIST}</a><!-- ENDIF -->&nbsp; &nbsp;<a href="{U_GROUP_CP}"><img src="templates/subSilver/images/icon_mini_groups.gif" width="12" height="13" border="0" alt="{L_USERGROUPS}" hspace="3" />{L_USERGROUPS}</a><!-- IF S_USER_LOGGED_IN -->&nbsp; &nbsp;<a href="{U_PROFILE}"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a><!-- ENDIF --></span></td>
</tr>
<tr>
<td><img src="images/spacer.gif" height="8" alt="" /></td>
7'>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 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
# translation of mdkonline-eo.po to Esperanto
# Mesaĝoj de Mandriva Online
# Copyright (C) 2001 Mandriva
# D. Dale Gulledge <dsplat@rochester.rr.com>, 2001.
# Grégoire COLBERT <gcolbert2004@noos.fr>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: mgaonline-eo\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-06-07 16:23-0300\n"
"PO-Revision-Date: 2005-01-13 10:13+0100\n"
"Last-Translator: Grégoire COLBERT <gcolbert2004@noos.fr>\n"
"Language-Team: Esperanto <mandrak-eo@yahoogroups.com>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"

#. -PO: here %s will be replaced by the local time (eg: "Will check updates at 14:03:50"
#: ../mdkapplet:71
#, fuzzy, c-format
msgid "Will check updates at %s"
msgstr "Serĉu ĝisdatigojn"

#: ../mdkapplet:79
#, c-format
msgid "Your system is up-to-date"
msgstr "Via sistemo estas ĝisdata"

#: ../mdkapplet:84
#, c-format
msgid ""
"Service configuration problem. Please check logs and send mail to "
"support@mageiaonline.com"
msgstr ""
"Problemo pri serva konfigurado. Bonvole sendu retmesaĝon al "
"support@mageiaonline.com"

#: ../mdkapplet:90
#, c-format
msgid "Please wait, finding available packages..."
msgstr "Bonvole atendu, mi serĉas haveblajn pakaĵojn..."

#: ../mdkapplet:95
#, c-format
msgid "New updates are available for your system"
msgstr "Novaj ĝisdatigojn estas haveblajn por via sistemo"

#: ../mdkapplet:101
#, c-format
msgid "A new version of Mageia distribution has been released"
msgstr ""

#: ../mdkapplet:119 ../mdkapplet:161
#, 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 "Reto estas haltita. Bonvole konfiguru vian reton"

#: ../mdkapplet:130
#, c-format
msgid "Service is not activated. Please click on \"Online Website\""
msgstr "Servo ne estas aktiva. Bonvole musklaku \"TTT-a retejo\""

#: ../mdkapplet:135 ../mdkapplet:141
#, fuzzy, c-format
msgid "urpmi database locked"
msgstr "urpmi-datenbazo ŝlosita"

#: ../mdkapplet:146
#, c-format
msgid "Release not supported (too old release, or development release)"
msgstr ""
"Sistemversiono ne konvenas (tro malnova versiono, aŭ disvolva versiono)"

#: ../mdkapplet:156
#, c-format
msgid ""
"No medium found. You must add some media through 'Software Media Manager'."
msgstr ""

#: ../mdkapplet:166
#, 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 ""
"Vi konfiguris almenaŭ unu ĝisdatigo-portilon, sed ili ĉiuj estas\n"
"nun elŝaltitaj. Prefere startigu la Program-portil-mastrumilon (Software\n"
"Media Manager) por enŝalti almenaŭ unu (kontrolu ĝin en la\n"
" kolumno \"%s\").\n"
"\n"
"Poste, restartigu (%s)."

#: ../mdkapplet:171
#, c-format
msgid "Enabled"
msgstr "Ĉu enŝaltita"

#: ../mdkapplet:184
#, c-format
msgid "Error updating media"
msgstr ""

#: ../mdkapplet:224 ../mdkapplet:946
#, c-format
msgid "Install updates"
msgstr "Instalu ĝisdatigojn"

#: ../mdkapplet:225 ../mdkapplet:226
#, c-format
msgid "Add additional package medium"
msgstr ""

#: ../mdkapplet:227
#, c-format
msgid "Check Updates"
msgstr "Serĉu ĝisdatigojn"

#: ../mdkapplet:228
#, c-format
msgid "Configure Network"
msgstr "Konfiguru la reton"

#: ../mdkapplet:229
#, c-format
msgid "Upgrade the system"
msgstr ""

#: ../mdkapplet:394
#, 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:439
#, c-format
msgid "Received SIGHUP (probably an upgrade has finished), restarting applet."
msgstr ""

#: ../mdkapplet:446
#, c-format
msgid "Launching drakconnect\n"
msgstr "Lanĉu drakconnect\n"

#: ../mdkapplet:459 ../mdkapplet:632
#, c-format
msgid "New version of Mageia distribution"
msgstr ""

#: ../mdkapplet:464
#, c-format
msgid "Browse"
msgstr ""

#: ../mdkapplet:473
#, c-format
msgid "A new version of Mageia distribution has been released."
msgstr ""

#: ../mdkapplet:475 ../mdkapplet:572
#, c-format
msgid "More info about this new version"
msgstr ""

#: ../mdkapplet:477 ../mdkapplet:566
#, c-format
msgid "Do you want to upgrade to the '%s' distribution?"
msgstr ""

#: ../mdkapplet:479 ../mdkapplet:576 ../mdkapplet:1033 ../mdkapplet:1063
#, c-format
msgid "Do not ask me next time"
msgstr "Ne demandu min venontfoje"

#: ../mdkapplet:482
#, c-format
msgid "Download all packages at once"
msgstr ""

#: ../mdkapplet:483
#, c-format
msgid "(Warning: You will need quite a lot of free space)"
msgstr ""

#: ../mdkapplet:489
#, c-format
msgid "Where to download packages:"
msgstr ""

#: ../mdkapplet:493 ../mdkapplet:581 ../mdkapplet:658 ../mdkapplet:1034
#: ../mdkapplet:1064 ../mdkapplet_gui.pm:232 ../mdkapplet_gui.pm:313
#, c-format
msgid "Next"
msgstr "Sekvanta"

#: ../mdkapplet:493 ../mdkapplet:581 ../mdkapplet:658 ../mdkapplet:1034
#: ../mdkapplet:1064 ../mdkapplet_gui.pm:232 ../mdkapplet_gui.pm:313
#, c-format
msgid "Cancel"
msgstr "Nuligu"

#: ../mdkapplet:508
#, c-format
msgid ""
"Maintenance for this Mageia version has ended. No more updates will be "
"delivered for this system."
msgstr ""

#: ../mdkapplet:514
#, c-format
msgid "In order to keep your system secure, you can:"
msgstr ""

#: ../mdkapplet:520
#, fuzzy, c-format
msgid "Mageia"
msgstr "Mageia Online"

#: ../mdkapplet:526
#, c-format
msgid "You should get extended maintenance."
msgstr ""

#: ../mdkapplet:528
#, c-format
msgid ""
"You should either get extended maintenance or upgrade to a newer version of "
"the %s distribution."
msgstr ""

#: ../mdkapplet:532
#, c-format
msgid "You should upgrade to a newer version of the %s distribution."
msgstr ""

#: ../mdkapplet:542
#, c-format
msgid "Your distribution is no longer supported"
msgstr ""

#: ../mdkapplet:547
#, c-format
msgid "Extended Maintenance"
msgstr ""

#: ../mdkapplet:552
#, c-format
msgid ""
"Purchase a maintenance extension for this version (%s) and keep it running "
"until %s."
msgstr ""

#: ../mdkapplet:649
#, c-format
msgid ""
"This upgrade requires high bandwidth network connection (cable, xDSL, ...)  "
"and may take several hours to complete."
msgstr ""

#: ../mdkapplet:651
#, c-format
msgid "Estimated download data will be %s"
msgstr ""

#: ../mdkapplet:652
#, c-format
msgid "You should close all other running applications before continuing."
msgstr ""

#: ../mdkapplet:655
#, c-format
msgid ""
"You should put your laptop on AC and favor ethernet connection over wifi, if "
"available."
msgstr ""

#: ../mdkapplet:687
#, c-format
msgid "Launching MageiaUpdate\n"
msgstr "Lanĉu MageiaUpdate\n"

#: ../mdkapplet:719
#, c-format
msgid "Computing new updates...\n"
msgstr "Kalkulu novajn ĝisdatigojn...\n"

#: ../mdkapplet:826
#, c-format
msgid "System is up-to-date\n"
msgstr "Sistemo estas ĝisdata\n"

#: ../mdkapplet:866
#, c-format
msgid "Checking Network: seems disabled\n"
msgstr "Kontrolante Reton: ĝi ŝajnas haltita\n"

#: ../mdkapplet:893
#, fuzzy, c-format
msgid "Mageia Online %s"
msgstr "Mageia Online"

#: ../mdkapplet:894
#, c-format
msgid "Copyright (C) %s by %s"
msgstr "Kopirajto (C) %s ĉe %s"

#: ../mdkapplet:897
#, c-format
msgid "Mageia Online gives access to Mageia web services."
msgstr ""

#: ../mdkapplet:899
#, c-format
msgid "Online WebSite"
msgstr "TTT-a retejo"

#. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>")
#: ../mdkapplet:904
#, c-format
msgid "_: Translator(s) name(s) & email(s)\n"
msgstr ""

#: ../mdkapplet:932
#, c-format
msgid "Warning"
msgstr "Averto"

#: ../mdkapplet:935 ../mdkapplet:940 ../mdkapplet:948 ../mdkapplet:950
#: ../mdkapplet_gui.pm:264
#, c-format
msgid "More Information"
msgstr ""

#: ../mdkapplet:952
#, c-format
msgid "Add media"
msgstr ""

#: ../mdkapplet:967
#, c-format
msgid "About..."
msgstr "Pri..."

#: ../mdkapplet:969 ../mdkapplet-config:68
#, fuzzy, c-format
msgid "Updates Configuration"
msgstr "Legas konfiguradon\n"

#: ../mdkapplet:971
#, c-format
msgid "Always launch on startup"
msgstr "Ĉiam startu post sistemstartado"

#: ../mdkapplet:973
#, c-format
msgid "Quit"
msgstr "Eliru"

#: ../mdkapplet:1023 ../mdkapplet:1028 ../mdkapplet:1053 ../mdkapplet:1058
#, c-format
msgid "New medium available"
msgstr ""

#: ../mdkapplet:1030 ../mdkapplet:1060
#, c-format
msgid ""
"You use '%s' distribution and therefore have privileged access to additional "
"software."
msgstr ""

#: ../mdkapplet:1032 ../mdkapplet:1062
#, c-format
msgid "Do you want to install this additional software repository?"
msgstr ""

#: ../mdkapplet:1061 ../mdkonline.pm:182
#, c-format
msgid "Mageia Enterprise Server"
msgstr ""

#: ../mdkapplet-add-media-helper:84 ../mdkapplet-config:43
#, c-format
msgid "Adding an additional package medium"
msgstr ""

#: ../mdkapplet-add-media-helper:128
#, c-format
msgid "Supported products are %s, '%s' is not on the list.\n"
msgstr ""

#: ../mdkapplet-add-media-helper:138
#, c-format
msgid "Please fill in your account ID to add an additional package medium"
msgstr ""

#: ../mdkapplet-add-media-helper:148 ../mdkapplet-add-media-helper:193
#: ../mdkapplet-add-media-helper:225 ../mdkapplet_gui.pm:244
#, c-format
msgid "Error"
msgstr "Eraro"

#: ../mdkapplet-add-media-helper:149
#, c-format
msgid "Failure while retrieving distributions list:"
msgstr ""

#. -PO: Here '%s' will be a localized date (eg:
#: ../mdkapplet-add-media-helper:161
#, c-format
msgid ""
"Mageia provides 12 months of desktop updates (until %s) and 18 months of "
"base updates (up to the %s) for distributions."
msgstr ""

#: ../mdkapplet-add-media-helper:167
#, c-format
msgid ""
"Extended maintenance is now available to get 18 months of additional updates "
"(until %s)."
msgstr ""

#: ../mdkapplet-add-media-helper:170
#, c-format
msgid "You can subscribe <b>right now</b> to get extended maintenance:"
msgstr ""

#: ../mdkapplet-add-media-helper:174
#, c-format
msgid "Lifetime policy"
msgstr ""

#: ../mdkapplet-add-media-helper:175 ../mdkapplet_gui.pm:105
#, fuzzy, c-format
msgid "Online subscription"
msgstr "Maŝinnomo:"

#: ../mdkapplet-add-media-helper:194
#, c-format
msgid "An error occurred"
msgstr "Eraro okazis"

#: ../mdkapplet-add-media-helper:200
#, c-format
msgid "Your Mageia account does not have %s download subscription enabled."
msgstr ""

#: ../mdkapplet-add-media-helper:226
#, fuzzy, c-format
msgid "An error occurred while adding medium"
msgstr "Paneo ĉe aldono de portilo"

#: ../mdkapplet-add-media-helper:234
#, c-format
msgid "Successfully added media!"
msgstr ""

#: ../mdkapplet-add-media-helper:236
#, c-format
msgid "Successfully added media %s."
msgstr ""

#: ../mdkapplet-add-media-helper:238
#, c-format
msgid "Ok"
msgstr "Jeso"

#: ../mdkapplet-config:69
#, c-format
msgid "Here you can configure the updates applet"
msgstr ""

#: ../mdkapplet-config:71
#, c-format
msgid "Update frequency (hours)"
msgstr ""

#: ../mdkapplet-config:80
#, c-format
msgid "First check delay (minutes)"
msgstr ""

#: ../mdkapplet-config:89
#, c-format
msgid "Check for newer \"%s\" releases"
msgstr ""

#: ../mdkapplet-config:95 ../mdkapplet-config:101
#, c-format
msgid "Check for missing \"%s\" media"
msgstr ""

#: ../mdkapplet-config:95
#, c-format
msgid "Restricted"
msgstr ""

#: ../mdkapplet-config:101
#, c-format
msgid "Enterprise"
msgstr ""

#: ../mdkapplet_gui.pm:87
#, c-format
msgid ""
"Mageia Powerpack brings you the best of Linux experience for desktop: "
"stability and efficiency of open source solutions together with exclusive "
"softwares and Mageia official support."
msgstr ""

#: ../mdkapplet_gui.pm:94
#, fuzzy, c-format
msgid "Mageia Features"
msgstr "Mageia Online"

#: ../mdkapplet_gui.pm:213
#, c-format
msgid "More information on your user account"
msgstr ""

#: ../mdkapplet_gui.pm:220
#, c-format
msgid "Your email"
msgstr ""

#: ../mdkapplet_gui.pm:221
#, fuzzy, c-format
msgid "Your password"
msgstr "Malĝusta pasvorto"

#: ../mdkapplet_gui.pm:228
#, fuzzy, c-format
msgid "Forgotten password"
msgstr "Malĝusta pasvorto"

#: ../mdkapplet_gui.pm:245
#, c-format
msgid "Password and email cannot be empty."
msgstr ""

#: ../mdkapplet_gui.pm:267
#, c-format
msgid "Close"
msgstr "Fermu"

#: ../mdkapplet_gui.pm:302
#, c-format
msgid "Choose your upgrade version"
msgstr ""

#: ../mdkapplet_gui.pm:306
#, c-format
msgid "Your Powerpack access has ended"
msgstr ""

#: ../mdkapplet_gui.pm:309
#, c-format
msgid "%s is now available, you can upgrade to:"
msgstr ""

#: ../mdkonline.pm:177
#, fuzzy, c-format
msgid "Mageia Flash"
msgstr "Mageia Online"

#: ../mdkonline.pm:178 ../mdkonline.pm:198
#, fuzzy, c-format
msgid "Mageia Free"
msgstr "Mageia Online"

#: ../mdkonline.pm:179
#, fuzzy, c-format
msgid "Mageia Mini"
msgstr "Mageia Online"

#: ../mdkonline.pm:180
#, fuzzy, c-format
msgid "Mageia One"
msgstr "Mageia Online"

#: ../mdkonline.pm:181 ../mdkonline.pm:194
#, fuzzy, c-format
msgid "Mageia PowerPack"
msgstr "Mageia Online"

#: ../mdkonline.pm:195
#, c-format
msgid "The Mageia distribution with even more softwares and official support."
msgstr ""

#: ../mdkonline.pm:199
#, c-format
msgid "The 100%% Open Source distribution freely available."
msgstr ""

#: ../mdkonline.pm:213
#, c-format
msgid "Distribution Upgrade"
msgstr ""

#: ../mdkupdate:59
#, c-format
msgid ""
"mdkupdate version %s\n"
"Copyright (C) %s Mageia.\n"
"This is free software and may be redistributed under the terms of the GNU "
"GPL.\n"
"\n"
"usage:\n"
msgstr ""
"mdkupdate versio %s\n"
"Kopirajto © %s Mageia.\n"
"Tio ĉi estas libera programaro kaj povas esti pludisdonata sub la termoj de "
"GNU GPL.\n"
"\n"
"uzado:\n"

#: ../mdkupdate:64
#, c-format
msgid "  --help\t\t- print this help message.\n"
msgstr "  --help\t\t- presu tiun helpmesaĝon.\n"

#: ../mdkupdate:65
#, c-format
msgid "  --auto\t\t- Mageia Update launched automatically.\n"
msgstr "  --auto\t\t- Mageia Update startos aŭtomate.\n"

#: ../mdkupdate:66
#, c-format
msgid "  --mnf\t\t\t- launch mnf specific scripts.\n"
msgstr ""

#: ../mdkupdate:67
#, fuzzy, c-format
msgid "  --noX\t\t\t- text mode version of Mageia Update.\n"
msgstr "  --applet       - startas Mageia Update.\n"

#: ../mdkupdate:68
#, c-format
msgid "  --debug\t\t\t- log what is done\n"
msgstr ""

#: ../mdkupdate:98
#, c-format
msgid "Unable to update packages from update_source medium.\n"
msgstr "Ne kapablas ĝisdatigi pakaĵojn el 'update_source medium'.\n"

#, fuzzy
#~ msgid "Mageia Linux"
#~ msgstr "Mageia Online"

#, fuzzy
#~ msgid "Mandiva Free"
#~ msgstr "Mageia Online"

#, fuzzy
#~ msgid "Get Powerpack subscription!"
#~ msgstr "Maŝinnomo:"

#~ msgid "Installation failed"
#~ msgstr "Instalado malsukcesis"

#~ msgid "Retry"
#~ msgstr "Reprovu"

#~ msgid "Congratulations"
#~ msgstr "Gratulojn"

#~ msgid "Reboot"
#~ msgstr "Restarto"

#~ msgid ""
#~ "Packages database is locked. Please close other applications\n"
#~ "working with packages database (do you have another media\n"
#~ "manager on another desktop, or are you currently installing\n"
#~ "packages as well?)."
#~ msgstr ""
#~ "La pakaĵo-datumbazo estas blokita. Bonvole fermi aliajn aplikaĵojn\n"
#~ "kiuj laboras kun la pakaĵ-datumbao (ĉu vi havas alian portil-\n"
#~ "mastrumilon sur alia labortablo, aŭ ĉu vi momente instalas pakaĵojn?)"

#~ msgid "Failure when adding medium"
#~ msgstr "Paneo ĉe aldono de portilo"

#~ msgid "Yes"
#~ msgstr "Jes"

#~ msgid "No"
#~ msgstr "Ne"

#~ msgid "Mageia Online seems to be reinstalled, reloading applet ...."
#~ msgstr "Mageia Online ŝajnas reinstalita, reŝarĝas programeton ...."

#~ msgid "Checking... Updates are available\n"
#~ msgstr "Kontrolante... Ĝisdatigojn haveblas\n"

#, fuzzy
#~ msgid "Failed to open urpmi database"
#~ msgstr "ne povis malfermi rpmdb"

#~ msgid "Connecting to"
#~ msgstr "Konektiĝas al"

#~ msgid "Mageia Linux Updates Applet"
#~ msgstr "Mageia Linux-Ĝisdatigajn programeto"

#, fuzzy
#~ msgid "Security error"
#~ msgstr "Sekureco"

#, fuzzy
#~ msgid "Database error"
#~ msgstr "Datenbaza eraro"

#, fuzzy
#~ msgid "Registration error"
#~ msgstr "Tipo de registrado"

#, fuzzy
#~ msgid "Some parameters are missing"
#~ msgstr "Horo-parametroj"

#, fuzzy
#~ msgid "Password error"
#~ msgstr "Pasvorto por %s"

#, fuzzy
#~ msgid "Login error"
#~ msgstr "nekonata eraro"

#, fuzzy
#~ msgid ""
#~ "The email you provided is already in use\n"
#~ "Please enter another one\n"
#~ msgstr ""
#~ "Alinomo * %s * estas jam uzata aŭ nevalida\n"
#~ "Bonvole elektu alian\n"

#, fuzzy
#~ msgid ""
#~ "Email address box is empty\n"
#~ "Please provide one"
#~ msgstr "Nomo-kampo malplenas, bonvolu enmeti nomon"

#, fuzzy
#~ msgid "Restriction Error"
#~ msgstr "Priskribo: "

#, fuzzy
#~ msgid "Database access forbidden"
#~ msgstr "Datumbaz-servilo"

#, fuzzy
#~ msgid "Service error"
#~ msgstr "Skriberaro\n"

#, fuzzy
#~ msgid "Password mismatch"
#~ msgstr "Pasvortoj malakordas."

#, fuzzy
#~ msgid "User Forbidden"
#~ msgstr "Uzul-menuo"

#, fuzzy
#~ msgid "Connection error"
#~ msgstr "Nomo de konekto"

#~ msgid "Please wait"
#~ msgstr "Bonvole atendu"

#~ msgid "Preparing..."
#~ msgstr "Mi preparas..."

#~ msgid "Installing packages ...\n"
#~ msgstr "Instalanta pakaĵojn...\n"

#, fuzzy
#~ msgid "New bundles are available for your system"
#~ msgstr "Novaj ĝisdatigojn estas haveblajn por via sistemo"

#~ msgid "Service is not configured. Please click on \"Configure the service\""
#~ msgstr ""
#~ "Servo ne estas konfigurata. Bonvole musklaku \"Konfiguru la servon\""

#~ msgid "Configure the service"
#~ msgstr "Konfiguru la servon"

#~ msgid "Check updates"
#~ msgstr "Serĉu ĝisdatigojn"

#~ msgid "Configure Now!"
#~ msgstr "Konfiguru nun!"

#~ msgid "Actions"
#~ msgstr "Agoj"

#~ msgid "Configure"
#~ msgstr "Konfiguru"

#~ msgid "See logs"
#~ msgstr "Vidu logdosieron"

#~ msgid "Status"
#~ msgstr "Statuso"

#~ msgid "Network Connection: "
#~ msgstr "Reta konekto: "

#~ msgid "Up"
#~ msgstr "Aktiva"

#~ msgid "Down"
#~ msgstr "Malaktiva"

#~ msgid "Last check: "
#~ msgstr "Lasta kontrolo: "

#~ msgid "Machine name:"
#~ msgstr "Maŝinnomo:"

#~ msgid "Updates: "
#~ msgstr "Ĝisdatigoj: "

#~ msgid "Development release not supported by service"
#~ msgstr "Servo ne funkcias kun disvolvaj versionoj"

#~ msgid "Too old release not supported by service"
#~ msgstr "Servo ne funkcias kun tro malnovaj versionoj"

#~ msgid "Unknown state"
#~ msgstr "Nekonata stato"

#~ msgid "Online services disabled. Contact Mageia Online site\n"
#~ msgstr "Retaj servoj haltitaj. Kontaktu Mageia Online-retejon\n"

#~ msgid "Wrong Password.\n"
#~ msgstr "Malĝusta pasvorto\n"

#~ msgid "Wrong Action or host or login.\n"
#~ msgstr "Erara Ago aŭ gasto aŭ konektinformoj.\n"

#~ msgid ""
#~ "Something is wrong with your network settings (check your route, firewall "
#~ "or proxy settings)\n"
#~ msgstr ""
#~ "Io fuŝas en via reta konfigurado (kontrolu la retan kurson, fajroŝirmilon "
#~ "aŭ la parametrojn de la prokura servilo)\n"

#~ msgid "Response from Mageia Online server\n"
#~ msgstr "Respondo el Mageia Online-servilo\n"

#~ msgid "No check"
#~ msgstr "Neniu kontrolo"

#~ msgid "Checking config file: Not present\n"
#~ msgstr "Kontrolante konfigurdosiero: Ne trovebla\n"

#~ msgid "Logs"
#~ msgstr "Logdosieroj"

#~ msgid "Clear"
#~ msgstr "Forviŝu"

#~ msgid ""
#~ "mdonline version %s\n"
#~ "Copyright (C) %s Mageia.\n"
#~ "This is free software and may be redistributed under the terms of the GNU "
#~ "GPL.\n"
#~ "\n"
#~ "usage:\n"
#~ msgstr ""
#~ "mdonline versio %s\n"
#~ "Kopirajto © %s Mageia.\n"
#~ "Tio ĉi estas libera programaro kaj povas esti pludisdonata sub la termoj "
#~ "de GNU GPL.\n"
#~ "\n"
#~ "uzado:\n"

#~ msgid "I already have an account"
#~ msgstr "Mi jam havas konton"

#~ msgid "I want to subscribe"
#~ msgstr "Mi volas malfermi konton"

#~ msgid "Mr."
#~ msgstr "s-ro"

#~ msgid "Mrs."
#~ msgstr "s-ino"

#~ msgid "Ms."
#~ msgstr "s-ino"

#~ 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 ""
#~ "Tiu helpilo alŝutos vian konfiguradon (pakaĵoj, sistem-konfigurado)\n"
#~ "al centrala datumbazo, por ke vi estu informita pri sekurecaj\n"
#~ "ĝisdatigojn kaj utilaj plibonigojn.\n"

#~ msgid "Account creation or authentication"
#~ msgstr "Kontokreado aŭ identiĝado"

#~ msgid "Enter your Mageia Online login, password and machine name:"
#~ msgstr "Enigu vian Mageia Online salutnomon, pasvorton kaj maŝinnomon:"

#, fuzzy
#~ msgid "Email address:"
#~ msgstr "IP-adreso"

#~ msgid "Country"
#~ msgstr "Lando"

#~ msgid "Password:"
#~ msgstr "Pasvorto:"

#, fuzzy
#~ msgid "Machine name must be 1 to 40 alphanumerical characters"
#~ msgstr "Surmetingoj devas enteni nur alfanumerajn signojn"

#~ msgid "Connecting to Mageia Online website..."
#~ msgstr "Konektiĝas al Mageia Online-retejo..."

#~ msgid ""
#~ "In order to benefit from Mageia Online services,\n"
#~ "we are about to upload your configuration.\n"
#~ "\n"
#~ "The Wizard will now send the following information to Mageia:\n"
#~ "\n"
#~ "1) the list of packages you have installed on your system,\n"
#~ "\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.mandrivaexpert.com."
#~ msgstr ""
#~ "Por ke vi profitu el Mageia Online-servoj,\n"
#~ "ni tuj alŝutos vian konfiguradon.\n"
#~ "\n"
#~ "Tiu programo sendos la sekvaj informoj al Mageia:\n"
#~ "\n"
#~ "1) la listo de pakaĵoj instalitaj,\n"
#~ "\n"
#~ "2) via hardvara konfigurado.\n"
#~ "\n"
#~ "Se tio funkcio ne plaĉas al vi, aŭ se vi ne volas tiun servon,\n"
#~ "bonvole musklaki 'Nuligu'. Se vi musklakas 'Sekva', vi permesas nin\n"
#~ "informi vin pri sekurecaj ĝisdatigoj kaj utilaj plibonigoj per personaj\n"
#~ "retmesaĝoj.\n"
#~ "Cetere, vi havos malpli kostaj servoj ĉe www.mandrivaexpert.com."

#~ msgid "Connection problem"
#~ msgstr "Konektproblemo"

#~ msgid "Problem occurs when uploading files, please try again"
#~ msgstr "Problemo okazis kiam alŝutante dosierojn, bonvole provu denove"

#~ msgid "Create a Mageia Online Account"
#~ msgstr "Kreu Mageia Online-konton"

#, fuzzy
#~ msgid "Greeting:"
#~ msgstr "Verda"

#, fuzzy
#~ msgid "First name:"
#~ msgstr "Poŝtejo:"

#, fuzzy
#~ msgid "Last name:"
#~ msgstr "Poŝtejo:"

#~ msgid "Confirm Password:"
#~ msgstr "Konfirmu pasvorton:"

#~ msgid ""
#~ "The passwords do not match\n"
#~ " Please try again\n"
#~ msgstr ""
#~ "La pasvortoj malsamas\n"
#~ " Bonvole provu denove\n"

#, fuzzy
#~ msgid "Please fill in each field"
#~ msgstr "Bonvole enigu ĉiuj informoj\n"

#~ msgid "Not a valid mail address!\n"
#~ msgstr "Nevalida retpoŝta adreso!\n"

#~ msgid ""
#~ "Mageia Online Account successfully created.\n"
#~ "Please click \"Next\" to authenticate and upload your configuration\n"
#~ msgstr ""
#~ "Mageia Online konto sukcese kreita.\n"