summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/diskdrake
blob: 7e56455092cbbc92eac0f9b81a44da7ba682c651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
#!/usr/bin/perl

# DiskDrake
# Copyright (C) 1999-2008 Mandriva (pixel)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

# DiskDrake uses resize_fat which is a perl rewrite of the work of Andrew
# Clausen (libresize).
# DiskDrake is also based upon the libfdisk and the install from Red Hat Software


use lib qw(/usr/lib/libDrakX);

use standalone;     #- warning, standalone must be loaded very first, for 'explanations'

use common;
use interactive;
use detect_devices;
use fsedit;
use fs;
use log;
use c;

$ugtk3::wm_icon = "/usr/share/mcc/themes/default/diskdrake_hd.png";

my %options;
my @l = @ARGV;
while (my $e = shift @l) {
    my ($option) = $e =~ /--?(.*)/ or next;
    if ($option =~ /(.*?)=(.*)/) {
	$options{$1} = $2;
    } else {
	$options{$option} = '';
    }
}

my @types = qw(hd nfs smb dav removable fileshare list-hd change-geometry);
my ($type, $para) = ('hd', '');
foreach (@types) {
    if (exists $options{$_}) {
        $para = delete $options{$_};
	$type = $_;
	last;
    }
}
keys %options and die "usage: diskdrake [--expert] [--testing] [--{" . join(",", @types) . "}]\n";

if ($>) {
    $ENV{PATH} = "/sbin:/usr/sbin:$ENV{PATH}";
}


my $in = 'interactive'->vnew('su');

if ($type eq 'fileshare') {
    require any;
    any::fileshare_config($in, '');
    $in->exit(0);
}

my $all_hds = fsedit::get_hds({}, $in);

fs::get_raw_hds('', $all_hds);

fs::get_info_from_fstab($all_hds);
fs::merge_info_from_mtab([ fs::get::really_all_fstab($all_hds) ]);

$all_hds->{current_fstab} = fs::fstab_to_string($all_hds, '');

if ($type eq 'list-hd') {
    print partition_table::description($_), "\n" foreach fs::get::fstab($all_hds);    
} elsif ($type eq 'change-geometry') {
    my ($device, undef, $heads, $sectors) = $para =~ /(.+)=(\d+,)?(\d+),(\d+)$/ or die "usage: diskdrake --change-geometry=<device>=[<cylinders>,]<heads>,<sectors>\n";
    my $hd = fs::get::device2part($device, $all_hds->{hds});
    put_in_hash($hd->{geom}, { heads => $heads, sectors => $sectors });
    $hd->{isDirty} = 1;
    partition_table::write($hd);
} elsif ($type eq 'hd') {
    require diskdrake::interactive;
    diskdrake::interactive::main($in, $all_hds, '');
} elsif ($type eq 'removable') {
    require diskdrake::removable;
    my ($raw_hd) = $para ?
      fs::get::device2part($para, $all_hds->{raw_hds}) || die "unknown removable $para\n" :
      $in->ask_from_listf('', '', \&diskdrake::interactive::format_raw_hd_info, $all_hds->{raw_hds}) or $in->exit(0);

    if (!$raw_hd->{mntpoint}) {
	my $mntpoint = detect_devices::suggest_mount_point($raw_hd);
	$raw_hd->{mntpoint} ||= find { !fs::get::has_mntpoint($_, $all_hds) } map { "/media/$mntpoint$_" } '', 2 .. 10;
	$raw_hd->{is_removable} = 1; #- force removable flag

	require security::level;
	require lang;
	fs::mount_options::set_default($raw_hd, 
				security => security::level::get(), 
				lang::fs_options(lang::read()));
    }
    diskdrake::removable::main($in, $all_hds, $raw_hd);
} elsif ($type eq 'dav') {
    require diskdrake::dav;
    diskdrake::dav::main($in, $all_hds);
} else {
    $in->ask_warn('', "Sorry only a gtk frontend is available") if !$in->isa('interactive::gtk');
    require diskdrake::smbnfs_gtk;
    diskdrake::smbnfs_gtk::main($in, $all_hds, $type);
}

$in->exit(0);
n334'>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
# Srpski cirilicni prevod MandrakeUpdate fajla.
# Copyright (C) 1997-2000 GeaArt, Inc.
# Tomislav Jankovic <tomaja@net.yu>,1999,2000,2001
#
#
msgid ""
msgstr ""
"Project-Id-Version: rpmdrake 1.3\n"
"POT-Creation-Date: 2002-09-04 12:24+0200\n"
"PO-Revision-Date: 2002-08-23 19:11GMT+1\n"
"Last-Translator: Toma Jankovic <tomaja@net.yu>\n"
"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-5\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"

#: ../edit-urpm-sources.pl_.c:41
msgid "Unable to create medium."
msgstr "½Õ ÜÞÓã ÔÐ ÚàÕØàÐÜ ÜÕÔØøãÜ."

#: ../edit-urpm-sources.pl_.c:42
msgid "Unable to update medium; it will be automatically disabled."
msgstr "½Õ ÜÞÓã ÔÐ ÐÖãàØàÐÜ ÜÕÔØøãÜ; ÞÝ üÕ ÑØâØ ÐãâÞÜÐâáÚØ ØáÚùãçÕÝ."

#: ../edit-urpm-sources.pl_.c:53 ../edit-urpm-sources.pl_.c:163
msgid "Edit a source"
msgstr "¸×ÜÕÝØ Ø×ÒÞàÝØ ÚÞÔ"

#: ../edit-urpm-sources.pl_.c:54
msgid "Local files"
msgstr "»ÞÚÐÛÝØ äÐøÛÞÒØ"

#: ../edit-urpm-sources.pl_.c:54
msgid "Path:"
msgstr "¿ãâaúÐ:"

#: ../edit-urpm-sources.pl_.c:55
msgid "FTP server"
msgstr "FTP áÕàÒÕà"

#: ../edit-urpm-sources.pl_.c:55 ../edit-urpm-sources.pl_.c:56
#: ../edit-urpm-sources.pl_.c:58 ../edit-urpm-sources.pl_.c:169
msgid "URL:"
msgstr "URL:"

#: ../edit-urpm-sources.pl_.c:56
msgid "HTTP server"
msgstr "HTTP áÕàÒÕà"

#: ../edit-urpm-sources.pl_.c:57
msgid "Path or mount point:"
msgstr "¿ãâÐúÐ ØÛØ âaçÚÕ ÜÞÝâØàaúÐ:"

#: ../edit-urpm-sources.pl_.c:57
msgid "Removable device"
msgstr "¿àÕÝÞáÝØ ãàÕóÐø"

#: ../edit-urpm-sources.pl_.c:58 ../rpmdrake_.c:472
msgid "Security updates"
msgstr "±Õ×ÑÕÔÝÞáÝØ ßÐÚÕâØ ×Ð ÐÖãàØàaúe"

#: ../edit-urpm-sources.pl_.c:69
msgid "Browse..."
msgstr "¿àÕâàÐÖØ..."

#: ../edit-urpm-sources.pl_.c:71
msgid "Choose a mirror..."
msgstr "¸×ÐÑÕàØâÕ áÒÞj ÜØàÞà áÐjâ..."

#: ../edit-urpm-sources.pl_.c:91
msgid "Login:"
msgstr "Login:"

#: ../edit-urpm-sources.pl_.c:91 ../edit-urpm-sources.pl_.c:227
msgid "Password:"
msgstr "»Þ×ØÝÚÐ:"

#: ../edit-urpm-sources.pl_.c:96
msgid "Name:"
msgstr "¸Üe:"

#: ../edit-urpm-sources.pl_.c:98 ../edit-urpm-sources.pl_.c:170
msgid "Relative path to synthesis/hdlist:"
msgstr "ÀÕÛÐâØÒÝÐ ßãâaúÐ ÚÐ synthesis/hdlist:"

#: ../edit-urpm-sources.pl_.c:106
msgid "You need to fill up at least the two first entries."
msgstr "¼ÞàÐâÕ ÔÐ ßÞßãÝØâÕ ÝÐøÜÐúÕ ßàÒÐ ÔÒÐ ßÞùÐ."

#: ../edit-urpm-sources.pl_.c:110
msgid ""
"There is already a medium by that name, do you\n"
"really want to replace it?"
msgstr ""
"²Õü ßÞáâÞøØ ÜÕÔØø áÐ âØÜ ØÜÕÝÞÜ, ÔÐ ÛØ\n"
"×ÐØáâÐ ÖÕÛØâÕ ÔÐ øÕ ×ÐÜÕÝØâÕ?"

#: ../edit-urpm-sources.pl_.c:118
msgid "Adding a source:"
msgstr "´ÞÔÐjÕÜ Ø×ÒÞà:"

#: ../edit-urpm-sources.pl_.c:119
msgid "Type of source:"
msgstr "ÂØß Ø×ÒÞàa:"

#: ../edit-urpm-sources.pl_.c:123 ../edit-urpm-sources.pl_.c:182
#: ../edit-urpm-sources.pl_.c:231 ../rpmdrake.pm_.c:85 ../rpmdrake.pm_.c:105
#: ../rpmdrake.pm_.c:277 ../rpmdrake_.c:326 ../rpmdrake_.c:826
#: ../rpmdrake_.c:852
msgid "Ok"
msgstr "¾K"

#: ../edit-urpm-sources.pl_.c:126 ../edit-urpm-sources.pl_.c:174
#: ../edit-urpm-sources.pl_.c:182 ../edit-urpm-sources.pl_.c:201
#: ../edit-urpm-sources.pl_.c:232 ../rpmdrake.pm_.c:277 ../rpmdrake_.c:326
#: ../rpmdrake_.c:852
msgid "Cancel"
msgstr "¿ÞÝØèâØ"

#: ../edit-urpm-sources.pl_.c:143
msgid "Please wait, adding medium..."
msgstr "¼ÞÛØÜ ÒÐá áÐçÕÚÐøâÕ, ÔÞÔÐøÕÜ ÜÕÔØø..."

#: ../edit-urpm-sources.pl_.c:152
msgid "Please wait, removing medium..."
msgstr "¼ÞÛØÜ ²Ðá áÐçÕÚÐøâÕ, ãÚÛÐúÐÜ ÜÕÔØø..."

#: ../edit-urpm-sources.pl_.c:167
#, c-format
msgid "Editing source \"%s\":"
msgstr "ÃàÕóØøÕÜ Ø×ÒÞà \"%s\":"

#: ../edit-urpm-sources.pl_.c:173
msgid "Save changes"
msgstr "ÁÐèãÒÐø Ø×ÜÕÝÕ"

#: ../edit-urpm-sources.pl_.c:180
msgid "You need to insert the medium to continue"
msgstr ""

#: ../edit-urpm-sources.pl_.c:181
msgid ""
"In order to save the changes, you need to insert the medium in the drive."
msgstr ""

#: ../edit-urpm-sources.pl_.c:186
msgid "Please wait, updating medium..."
msgstr "¿ÞÛØÜ ²Ðá áÐçÕÚÐøâÕ, ÐÖãàØàÐÜ ÜÕÔØø..."

#: ../edit-urpm-sources.pl_.c:193
msgid "Update source(s)"
msgstr "°ÖãàØàÐúÕ ¸×ÒÞàÐ"

#: ../edit-urpm-sources.pl_.c:196
msgid "Select the source(s) you wish to update:"
msgstr "¸×ÐÑÕàØâÕ ÚÞøÕ ßÐÚÕâ(Õ) ÖÕÛØâÕ ÔÐ ÐÖãàØàÐâÕ:"

#: ../edit-urpm-sources.pl_.c:200
msgid "Update"
msgstr "AÖãàØàaúe"

#: ../edit-urpm-sources.pl_.c:208
msgid "Please wait, updating media..."
msgstr "¼ÞÛØÜ ²Ðá áÐçÕÚÐøâÕ, ÐÖãàØàÐÜ ÜÕÔØø..."

#: ../edit-urpm-sources.pl_.c:214
#, fuzzy
msgid "Configure proxies"
msgstr "¿ÞÔÕèÐÒÐúÕ Ø×ÒÞàÐ"

#: ../edit-urpm-sources.pl_.c:219
msgid ""
"If you need a proxy, enter the hostname and an optional port (syntax: "
"<proxyhost[:port]>):"
msgstr ""

#: ../edit-urpm-sources.pl_.c:221
msgid "Proxy hostname:"
msgstr ""

#: ../edit-urpm-sources.pl_.c:223
msgid "You may specify a user/password for the proxy authentication:"
msgstr ""

#: ../edit-urpm-sources.pl_.c:225
msgid "User:"
msgstr ""

#: ../edit-urpm-sources.pl_.c:249
msgid "Configure sources"
msgstr "¿ÞÔÕèÐÒÐúÕ Ø×ÒÞàÐ"

#: ../edit-urpm-sources.pl_.c:250
msgid "Enabled?"
msgstr "¾ÜÞÓãüØ?"

#: ../edit-urpm-sources.pl_.c:250
msgid "Source"
msgstr "¸×ÒÞà"

#: ../edit-urpm-sources.pl_.c:278 ../rpmdrake_.c:623
msgid "Remove"
msgstr "ÃÚÛÞÝØ"

#: ../edit-urpm-sources.pl_.c:280
msgid "Edit"
msgstr "¸×ÜÕÝØ"

#: ../edit-urpm-sources.pl_.c:282
msgid "Add..."
msgstr "´ÞÔÐø..."

#: ../edit-urpm-sources.pl_.c:284
msgid "Update..."
msgstr "°ÖãàØàÐø..."

#: ../edit-urpm-sources.pl_.c:285
msgid "Proxy..."
msgstr ""

#: ../edit-urpm-sources.pl_.c:288
msgid "Save and quit"
msgstr "ÁÐçãÒÐø Ø ¸×ÐóØ"

#: ../edit-urpm-sources.pl_.c:289 ../rpmdrake_.c:626
msgid "Quit"
msgstr "ºàÐj"

#: ../edit-urpm-sources.pl_.c:299 ../rpmdrake_.c:950
#, c-format
msgid ""
"%s\n"
"\n"
"Is it ok to continue?"
msgstr ""
"%s\n"
"\n"
"´Ð ÛØ øÕ Ã àÕÔã ÔÐ ÝÐáâÐÒØÜ?"

#: ../edit-urpm-sources.pl_.c:302
msgid ""
"Welcome to the packages source editor!\n"
"\n"
"This tool will help you configure the packages sources you wish to use on\n"
"your computer. They will then be available to install new software package\n"
"or to perform updates."
msgstr ""
"´ÞÑàÞÔÞèÛØ ã µÔØâÞà Ø×ÒÞàÝÞÓ ÚÞÔÐ ã ¿ÐÚÕâØÜÐ!\n"
"\n"
"¾ÒÐø ÐÛÐâ ÒÐÜ ÜÞÖÕ ßÞÜÞüØ ÔÐ ßÞÔÕáØâÕ ÚÞÔ ã ßÐÚÕâØÜÐ ÚÞøÕ ÖÕÛØâÕ ÔÐ "
"ÚÞàØáâØâÕ\n"
"ÝÐ ÒÐèÕÜ àÐçãÝÐàã. ½ÐÚÞÝ âÞÓÐ üÕ ÑØâØ áßàÕÜØ ×Ð ØÝáâÐÛÐæØøã ÚÐÞ ÝÞÒØ ßÐÚÕâØ\n"
"ØÛØ ×Ð ÐÖãàØàÐúÕ áâÐàØå."

#: ../rpmdrake.pm_.c:81
msgid "Yes"
msgstr "´Ð"

#: ../rpmdrake.pm_.c:83
msgid "No"
msgstr "½Õ"

#: ../rpmdrake.pm_.c:97
msgid "Info..."
msgstr ""

#: ../rpmdrake.pm_.c:147
msgid "Austria"
msgstr "°ãáâàØøÐ"

#: ../rpmdrake.pm_.c:148
msgid "Australia"
msgstr "°ãáâàÐÛØøÐ"

#: ../rpmdrake.pm_.c:149
msgid "Belgium"
msgstr "±ÕÛÓØøÐ"

#: ../rpmdrake.pm_.c:150
msgid "Brazil"
msgstr "±àÐ×ØÛ"

#: ../rpmdrake.pm_.c:151
msgid "Canada"
msgstr "ºÐÝÐÔÐ"

#: ../rpmdrake.pm_.c:152
msgid "Costa Rica"
msgstr "ºÞáâÐ ÀØÚÐ"

#: ../rpmdrake.pm_.c:153
msgid "Czech Republic"
msgstr "ÇÕèÚÐ"

#: ../rpmdrake.pm_.c:154
msgid "Germany"
msgstr "½ÕÜÐçÚÐ"

#: ../rpmdrake.pm_.c:155
msgid "Danmark"
msgstr "´ÐÝáÚÐ"

#: ../rpmdrake.pm_.c:156 ../rpmdrake.pm_.c:160
msgid "Greece"
msgstr "³àçÚÐ"

#: ../rpmdrake.pm_.c:157
msgid "Spain"
msgstr "ÈßÐÝØøÐ"

#: ../rpmdrake.pm_.c:158
msgid "Finland"
msgstr "ÄØÝáÚÐ"

#: ../rpmdrake.pm_.c:159
msgid "France"
msgstr "ÄàÐÝæãáÚÐ"

#: ../rpmdrake.pm_.c:161
msgid "Israel"
msgstr "¸×àÐÕÛ"

#: ../rpmdrake.pm_.c:162
msgid "Italy"
msgstr "¸âÐÛØøÐ"

#: ../rpmdrake.pm_.c:163
msgid "Japan"
msgstr "¨ÐßÐÝ"

#: ../rpmdrake.pm_.c:164
msgid "Korea"
msgstr "ºÞàÕøÐ"

#: ../rpmdrake.pm_.c:165
msgid "Netherlands"
msgstr "ÅÞÛÐÝÔØøÐ"

#: ../rpmdrake.pm_.c:166
msgid "Norway"
msgstr "½ÞàÒÕèÚÐ"

#: ../rpmdrake.pm_.c:167
msgid "Poland"
msgstr "¿ÞùáÚÐ"

#: ../rpmdrake.pm_.c:168
msgid "Portugal"
msgstr "¿ÞàâãÓÐÛ"

#: ../rpmdrake.pm_.c:169
msgid "Russia"
msgstr "ÀãáØøÐ"

#: ../rpmdrake.pm_.c:170
msgid "Sweden"
msgstr "ÈÒÕÔáÚÐ"

#: ../rpmdrake.pm_.c:171
msgid "Taiwan"
msgstr "ÂÐøÒÐÝ"

#: ../rpmdrake.pm_.c:172
msgid "United Kingdom"
msgstr "ÃøÕÔØúÕÝÞ ºàÐùÕÒáâÒÞ"

#: ../rpmdrake.pm_.c:173
msgid "China"
msgstr "ºØÝÐ"

#: ../rpmdrake.pm_.c:174 ../rpmdrake.pm_.c:175 ../rpmdrake.pm_.c:176
#: ../rpmdrake.pm_.c:177 ../rpmdrake.pm_.c:227
msgid "United States"
msgstr "ÁøÕÔØúÕÝÕ °ÜÕàØçÚÕ ´àÖÐÒÕ"

#: ../rpmdrake.pm_.c:235
msgid ""
"I need to contact MandrakeSoft website to get the mirrors list.\n"
"Please check that your network is currently running.\n"
"\n"
"Is it ok to continue?"
msgstr ""
"¶ÕÛØÜ ÔÐ ßÞáÕâØÜ MandrakeSoft ÒÕÑ áÐøâ ÔÐ ÑØ ÔÞÑÐÒØÞ ÛØáâã ÜØàÞàÐ.\n"
"¿àÞÒÕàØâÕ ÔÐ ÛØ øÕ ÒÐèÐ ÚÞÝÕÚæØøÐ äãÚæØÞÝÐÛÝÐ.\n"
"\n"
"´Ð ÛØ øÕ Ã àÕÔã ÔÐ ÝÐáâÐÒØÜ?"

#: ../rpmdrake.pm_.c:239
msgid "Please wait, downloading mirrors addresses from MandrakeSoft website."
msgstr ""
"¼ÞÛØÜ ²Ðá áÐçÕÚÐøâÕ, áÚØÔÐÜ ÛØáâã ÜØàÞà ÐÔàÕáÐ áÐ MandrakeSoft ÒÕÑ áÐøâÐe."

#: ../rpmdrake.pm_.c:245
msgid "Error during download"
msgstr "³àÕèÚÐ âÞÚÞÜ download-Ð"

#: ../rpmdrake.pm_.c:246
#, c-format
msgid ""
"There was an error downloading the mirrors list:\n"
"\n"
"%s\n"
"The network, or MandrakeSoft website, are maybe unavailable.\n"
"Please try again later."
msgstr ""
"¿ÞøÐÒØÛÐ áÕ ÓàÕèÚÐ âÞÚÞÜ download-Ð ÛØáâÕ ÜØàÞà áÐøâÞÒÐ:\n"
"\n"
"%s\n"
"¸ÝâÕàÝÕâ, ØÛØ MandrakeSoft-ÞÒ ÒÕÑ áÐøâ ÜÞÖÔÐ ÝØáã âàÕÝãâÝÞ ÔÞáâãßÝØ.\n"
"¿ÞÚãèÐøâÕ ÚÐáÝØøÕ ßÞÝÞÒÞ."

#: ../rpmdrake.pm_.c:254
msgid "No mirror"
msgstr "½ÕÜÐ ÜØàÞàÐ"

#: ../rpmdrake.pm_.c:255
msgid ""
"I can't find any suitable mirror.\n"
"\n"
"There can be many reasons for this problem; the most frequent is\n"
"the case when the architecture of your processor is not supported\n"
"by Mandrake Linux Official Updates."
msgstr ""
"½Õ ÜÞÓã ÔÐ ßàÞÝÐóÕÜ ÝØøÕÔÐÝ ÞÔÓÞÒÐàÐøãóØ ÜØàÞà.\n"
"\n"