package harddrake::sound; # lists filled with Danny Tholen help, enhanced by Thierry Vignaud # # No ALSA for OSS's # o isa cards: msnd_pinnacle, pas2, # o pci cards: ad1889, sam9407 # No OSS for ALSA's # o pci cards: snd_als4000, snd_es968, snd_hdsp # o isa cards: snd_azt2320, snd_cs4231, snd_cs4236, # snd_dt0197h, snd_korg1212, snd_rme32 # o pcmcia cards: snd_vxp440 snd_vxpocket # TODO: # o ensure sound is not user (either dsp/midi/sequencer/mixer) # o fix sound/alsa services use strict; use common; use run_program; use modules; use list_modules; use detect_devices; use log; our %alsa2oss = ( if_(arch() =~ /ppc/, "snd_powermac" => [ "dmasound_pmac" ]), if_(arch() =~ /sparc/, "snd_sun_amd7930" => [ "unknown" ], "snd_sun_cs4231" => [ "unknown" ], "snd_sun_dbri" => [ "unknown" ], ), "snd_ad1816a" => [ "ad1816" ], # isa "snd_ad1848" => [ "ad1848", "pss" ], # isa "snd_ad1889" => [ "ad1889" ], "snd_ali5451" => [ "trident" ], "snd_als100" => [ "sb" ], # isa "snd_als300" => [ "unknown" ], "snd_als4000" => [ "unknown" ], "snd_aoa" => [ "unknown" ], "snd_asihpi" => [ "unknown" ], "snd_atiixp" => [ "unknown" ], "snd_au8810" => [ "unknown" ], "snd_au8820" => [ "unknown" ], "snd_au8830" => [ "unknown" ], "snd_audigyls" => [ "unknown" ], # pci, renamed as snd_ca0106 "snd_azt2320" => [ "unknown" ], # isa "snd_azt3328" => [ "unknown" ], # isa "snd_azx" => [ "unknown" ], "snd_bt87x" => [ "btaudio" ], "snd_ca0106" => [ "unknown" ], # pci "snd_cmi8330" => [ "sb" ], # isa "snd_cmi8788" => [ "unknown" ], # pci "snd_cmipci" => [ "cmpci" ], "snd_cs4231" => [ "unknown" ], # isa "snd_cs4232" => [ "cs4232" ], # isa "snd_cs4236" => [ "ad1848" ], # isa "snd_cs4281" => [ "cs4281" ], "snd_cs46xx" => [ "cs46xx" ], "snd_cs5530" => [ "unknown" ], "snd_cs5535audio" => [ "unknown" ], "snd_darla20" => [ "unknown" ], "snd_darla24" => [ "unknown" ], "snd_dt0197h" => [ "unknown" ], # isa "snd_dt019x" => [ "unknown" ], # isa "snd_echo3g" => [ "unknown" ], "snd_emu10k1" => [ "audigy", "emu10k1" ], "snd_emu10k1x" => [ "unknown" ], "snd_ens1370" => [ "es1370" ], "snd_ens1371" => [ "es1371" ], "snd_es1688" => [ "sb" ], # isa "snd_es18xx" => [ "sb" ], # isa "snd_es1938" => [ "esssolo1" ], "snd_es1968" => [ "maestro" ], # isa "snd_es968" => [ "sb" ], "snd_fm801" => [ "forte" ], "snd_gina20" => [ "unknown" ], "snd_gina24" => [ "unknown" ], "snd_gina3g" => [ "unknown" ], "snd_gusclassic" => [ "gus" ], # isa "snd_gusextreme" => [ "gus" ], # isa "snd_gusmax" => [ "gus" ], # isa "snd_hda_intel" => [ "unknown" ], "snd_hdspm" => [ "unknown" ], "snd_hdsp" => [ "unknown" ], "snd_ice1712" => [ "unknown" ], # isa "snd_ice1724" => [ "unknown" ], # isa "snd_indi" => [ "unknown" ], # pci "snd_indigo" => [ "unknown" ], # pci "snd_indigodj" => [ "unknown" ], # pci "snd_indigoio" => [ "unknown" ], # pci "snd_intel8x0" => [ "ali5455", "i810_audio", "nvaudio" ], "snd_interwave" => [ "gus" ], # isa "snd_interwave_stb" => [ "unknown" ], # isa "snd_korg1212" => [ "unknown" ], # isa "snd_layla20" => [ "unknown" ], "snd_layla24" => [ "unknown" ], "snd_layla3g" => [ "unknown" ], "snd_maestro3" => [ "maestro3" ], "snd_mia" => [ "unknown" ], "snd_mixart" => [ "unknown" ], "snd_mona" => [ "unknown" ], "snd_mpu401" => [ "mpu401" ], "snd_nm256" => [ "nm256_audio" ], "snd_opl3sa2" => [ "opl3", "opl3sa", "opl3sa2" ], # isa "snd_opti92x_ad1848" => [ "unknown" ], # isa "snd_opti92x_cs4231" => [ "unknown" ], # isa "snd_opti93x" => [ "mad16" ], "snd_pcxhr" => [ "unknown" ], # pci "snd_riptide" => [ "unknown" ], "snd_rme32" => [ "unknown" ], # isa "snd_rme96" => [ "rme96xx" ], # pci "snd_rme9652" => [ "rme96xx" ], # pci "snd_sb16" => ["sscape", "sb"], "snd_sb8" => [ "sb" ], "snd_sbawe" => [ "awe_wave" ], "snd_sgalaxy" => [ "sgalaxy" ], # isa "snd_sonicvibes" => [ "sonicvibes" ], "snd_sscape" => [ "sscape" ], # isa "snd_trident" => [ "trident" ], "snd_usb_audio" => [ "audio" ], # usb "snd_usb_caiaq" => [ "unknown" ], "snd_usb_usx2y" => [ "unknown" ], "snd_via82xx" => [ "via82cxxx_audio" ], "snd_vx222" => [ "unknown" ], "snd_vxp440" => [ "unknown" ], # pcmcia "snd_vxpocket" => [ "unknown" ], # pcmcia "snd_wavefront" => [ "wavefront" ], # isa "snd_ymfpci" => [ "ymfpci" ], ); our %oss2alsa = ( if_(arch() =~ /ppc/, "dmasound_pmac" => [ "snd_powermac" ]), "ad1816" => [ "snd_ad1816a" ], "ad1848" => [ "snd_ad1848", "snd_cs4236" ], "ad1889" => [ "snd_ad1889" ], "ali5455" => [ "snd_intel8x0" ], "audigy" => [ "snd_emu10k1" ], "audio" => [ "snd_usb_audio" ], # usb "awe_wave" => [ "snd_sbawe" ], "btaudio" => [ "snd_bt87x" ], "cmpci" => [ "snd_cmipci" ], "cs4232" => [ "snd_cs4232" ], "cs4281" => [ "snd_cs4281" ], "cs46xx" => [ "snd_cs46xx" ], "emu10k1" => [ "snd_emu10k1" ], "es1370" => [ "snd_ens1370" ], "es1371" => [ "snd_ens1371" ], "esssolo1" => [ "snd_es1938" ], "forte" => [ "snd_fm801" ], "gus" => ["snd_interwave", "snd_gusclassic", "snd_gusmax", "snd_gusextreme"], "i810_audio" => [ "snd_intel8x0" ], "ice1712" => [ "snd_ice1712" ], "mad16" => [ "snd_opti93x" ], "maestro" => [ "snd_es1968" ], "maestro3" => [ "snd_maestro3" ], "mpu401" => [ "snd_mpu401" ], "msnd_pinnacle" => [ "unknown" ], "nm256_audio" => [ "snd_nm256" ], "nvaudio" => [ "snd_intel8x0" ], "opl3" => [ "snd_opl3sa2" ], "opl3sa" => [ "snd_opl3sa2" ], "opl3sa2" => [ "snd_opl3sa2" ], "pas2" => [ "unknown" ], "pss" => [ "snd_ad1848" ], "rme96xx" => [ "snd_rme96", "snd_rme9652" ], "sam9407" => [ "unknown" ], "sb" => [ "snd_als100", "snd_cmi8330", "snd_es1688", "snd_es18xx", "snd_es968", "snd_sb8", "snd_sb16" ], "sgalaxy" => [ "snd_sgalaxy" ], "sonicvibes" => [ "snd_sonicvibes" ], "sscape" => [ "snd_sb16", "snd_sscape" ], "trident" => [ "snd_ali5451", "snd_trident" ], "via82cxxx_audio" => [ "snd_via82xx" ], "wavefront" => [ "snd_wavefront" ], "ymfpci" => [ "snd_ymfpci" ], ); my @blacklist = qw(cs46xx cs4281); my $blacklisted = 0; sub is_pulseaudio_enabled() { my $soundprofile = common::read_alternative('soundprofile'); $soundprofile =~ /pulse$/; } sub set_pulseaudio { my ($val) = @_; my $alterative = '/etc/sound/profiles/' . ($val ? 'pulse' : 'alsa'); return if ! -d $alterative; common::symlinkf_update_alternatives('soundprofile', $alterative); # (cg) This config file will eventually be dropped, but it is still needed for now # as several packages/patches depend on it. my $config_file = "$::prefix/etc/sysconfig/pulseaudio"; $val = 'PULSE_SERVER_TYPE=' . ($val ? 'personal' : 'none') . "\n"; my $done; substInFile { if (/^PULSE_SERVER_TYPE=/) { $_ = $val; $done = 1; } } $config_file; append_to_file($config_file, $val) if !$done; } my $pa_startup_scriptfile = "$::prefix/etc/pulse/default.pa"; sub is_pulseaudio_glitchfree_enabled() { return -f $pa_startup_scriptfile && cat_($pa_startup_scriptfile) !~ /^load-module\s+module-(udev|hal)-detect\s+tsched=0/m; } sub set_pulseaudio_glitchfree { my ($val) = @_; return if ! -f $pa_startup_scriptfile; substInFile { if ($val) { s/^(load-module\s+module-(udev|hal)-detect)\s+tsched=0/$1/; } else { s/^(load-module\s+module-(udev|hal)-detect).*/$1 tsched=0/; } } $pa_startup_scriptfile; } my $pa_client_conffile = "$::prefix/etc/pulse/client.conf"; sub set_PA_autospan { my ($val) = @_; return if ! -f $pa_client_conffile; $val = 'autospawn = ' . bool2yesno($val) . "\n"; my $done; substInFile { if (/^autospawn\s*=/) { $_ = $val; $done = 1; } } $pa_client_conffile; append_to_file($pa_client_conffile, $val) if !$done; } sub rooted { run_program::rooted($::prefix, @_) } sub unload { modules::unload(@_) if $::isStandalone || $blacklisted } sub load { my ($modules_conf, $name) = @_; modules::load_and_configure($modules_conf, $name) if $::isStandalone || $blacklisted; } sub get_alternative { my ($driver) = @_; my $list = $alsa2oss{$driver} || $oss2alsa{$driver}; $list ? @$list : "unknown"; } sub do_switch { my ($in, $modules_conf, $old_driver, $new_driver, $index) = @_; return if $old_driver eq $new_driver; my $_wait = $in->wait_message(N("Please wait"), N("Please Wait... Applying the configuration")); log::explanations("removing old $old_driver\n"); if ($::isStandalone) { rooted("service sound stop") unless $blacklisted; rooted("service alsa stop") if $old_driver =~ /^snd_/ && !$blacklisted; unload($old_driver); # run_program("/sbin/modprobe -r $driver"); # just in case ... } $modules_conf->remove_module($old_driver); configure_one_sound_slot($modules_conf, $index, $new_driver); $modules_conf->write; if ($new_driver =~ /^snd_/) { # new driver is an alsa one $in->do_pkgs->ensure_binary_is_installed(qw(alsa-utils alsactl), 1); $in->do_pkgs->ensure_binary_is_installed(qw(aoss aoss), 1); rooted("service alsa start") if $::isStandalone && !$blacklisted; rooted("/sbin/chkconfig --add alsa") if $::isStandalone; load($modules_conf, $new_driver) if $::isStandalone; # service alsa is buggy } else { rooted("/sbin/chkconfig --del alsa") } log::explanations("loading new $new_driver\n"); rooted("/sbin/chkconfig --add sound"); # just in case ... rooted("service sound start") if $::isStandalone && !$blacklisted; } sub switch { my ($in, $modules_conf, $device) = @_; my $driver = $device->{current_driver} || $device->{driver}; foreach (@blacklist) { $blacklisted = 1 if $driver eq $_ } my @alternative = $driver ne 'unknown' ? get_alternative($driver) : (); unless ($driver eq $device->{driver} || member($device->{driver}, @alternative)) { push @alternative, get_alternative($device->{driver}), $device->{driver}; } if (@alternative) { my $new_driver = $driver; push @alternative, $driver; my %des = modules::category2modules_and_description('multimedia/sound'); my $is_pulseaudio_installed = (-f $pa_startup_scriptfile && -f $pa_client_conffile && -d '/etc/sound/profiles/pulse'); my $is_pulseaudio_enabled = is_pulseaudio_enabled(); my $is_pulseaudio_glitchfree_enabled = is_pulseaudio_glitchfree_enabled(); my $old_value = $is_pulseaudio_enabled; my $write_config = sub { return if !$is_pulseaudio_installed; set_pulseaudio($is_pulseaudio_enabled); set_pulseaudio_glitchfree($is_pulseaudio_glitchfree_enabled); set_PA_autospan($is_pulseaudio_enabled); if ($is_pulseaudio_enabled) { my $lib = (arch() =~ /x86_64/ ? 'lib64' : 'lib'); $in->do_pkgs->ensure_is_installed($lib . 'alsa-plugins-pulseaudio', '/usr/' . $lib . '/alsa-lib/libasound_module_pcm_pulse.so'); } if ($old_value ne $is_pulseaudio_enabled) { require any; any::ask_for_X_restart($in); } }; my @common = ( get_any_driver_entry($in, $modules_conf, $driver, $device), { text => N("Enable PulseAudio"), type => 'bool', val => \$is_pulseaudio_enabled, disabled => sub { !$is_pulseaudio_installed }, }, { text => N("Use Glitch-Free mode"), type => 'bool', val => \$is_pulseaudio_glitchfree_enabled, disabled => sub { !$is_pulseaudio_installed || !$is_pulseaudio_enabled }, }, { advanced => 1, val => N("Reset sound mixer to default values"), clicked => sub { run_program::run('reset_sound') } }, { advanced => 1, val => N("Troubleshooting"), disabled => sub {}, clicked => sub { &trouble($in) } }, ); if ($new_driver eq 'unknown') { if ($in->ask_from_({ title => N("No alternative driver"), messages => N("There's no known OSS/ALSA alternative driver for your sound card (%s) which currently uses \"%s\"", $device->{description}, $driver), }, \@common, )) { $write_config->(); } } elsif ($in->ask_from_({ title => N("Sound configuration"), messages => N("Here you can select an alternative driver (either OSS or ALSA) for your sound card (%s).", $device->{description}) . #-PO: here the first %s is either "OSS" or "ALSA", #-PO: the second %s is the name of the current driver #-PO: and the third %s is the name of the default driver N("\n\nYour card currently uses the %s\"%s\" driver (the default driver for your card is \"%s\")", ($driver =~ /^snd_/ ? "ALSA " : "OSS "), $driver, $device->{driver}), interactive_help => sub { N("OSS (Open Sound System) was the first sound API. It's an OS independent sound API (it's available on most UNIX(tm) systems) but it's a very basic and limited API. What's more, OSS drivers all reinvent the wheel. ALSA (Advanced Linux Sound Architecture) is a modularized architecture which supports quite a large range of ISA, USB and PCI cards.\n It also provides a much higher API than OSS.\n To use alsa, one can either use: - the old compatibility OSS API - the new ALSA API that provides many enhanced features but requires using the ALSA library. "); }, }, [ { label => N("Driver:"), val => \$new_driver, list => \@alternative, default => $new_driver, sort =>1, allow_empty_list => 1, format => sub { my ($drv) = @_; $drv eq 'unknown' ? $drv : sprintf(($des{$drv} ? "$des{$drv} (%s [%s])" : "%s [%s]"), $drv, $drv =~ /^snd_/ ? 'ALSA' : 'OSS'); } }, @common, ])) { $write_config->(); return if $new_driver eq $device->{current_driver}; log::explanations("switching audio driver from '" . $device->{current_driver} . "' to '$new_driver'\n"); $in->ask_warn(N("Warning"), N("The old \"%s\" driver is blacklisted.\n It has been reported to oops the kernel on unloading.\n The new \"%s\" driver will only be used on next bootstrap.", $device->{current_driver}, $new_driver)) if $blacklisted; do_switch($in, $modules_conf, $device->{current_driver}, $new_driver, $device->{sound_slot_index}); $device->{current_driver} = $new_driver; } } elsif ($driver =~ /^Bad:/) { $driver =~ s/^Bad://; $in->ask_warn(N("No open source driver"), N("There's no free driver for your sound card (%s), but there's a proprietary driver at \"%s\".", $device->{description}, $driver)); } elsif ($driver eq "unknown") { $in->ask_from(N("No known driver"), N("There's no known driver for your sound card (%s)", $device->{description}), [ get_any_driver_entry($in, $modules_conf, $driver, $device) ]); } end: } sub config { my ($in, $modules_conf, $device) = @_; switch($in, $modules_conf, $device); } sub trouble { my ($in) = @_; $in->ask_warn(N("Sound troubleshooting"), formatAlaTeX( #-PO: keep the double empty lines between sections, this is formatted a la LaTeX N("Below are some basic tips to help debug audio problems, but for accurate and up-to-date tips and tricks, please see: https://wiki.mageia.org/en/Support:DebuggingSoundProblems - General Recommendation: Enable PulseAudio. If you have opted to not to use PulseAudio, we would strongly advise you enable it. For the vast majority of desktop use cases, PulseAudio is the recommended and best supported option. - \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol\" (generic) will launch graphical applications to allow you to view your sound devices and adjust volume levels - \"ps aux | grep pulseaudio\" will check that PulseAudio is running. - \"pactl stat\" will check that you can connect to the PulseAudio daemon correctly. - \"pactl list sink-inputs\" will tell you which programs are currently playing sound via PulseAudio. - \"systemctl status osspd.service\" will tell you the current state of the OSS Proxy Daemon. This is used to enable sound from legacy applications which use the OSS sound API. You should install the \"ossp\" package if you need this functionality. - \"pacmd ls\" will give you a LOT of debug information about the current state of your audio. - \"lspcidrake -v | grep -i audio\" will tell you which low-level driver your card uses by default. - \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound related kernel modules (drivers) are loaded. - \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA mixer controls for first sound card - \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are currently using the sound card directly (normally this should only show PulseAudio) "))); } sub get_any_driver_entry { my ($in, $modules_conf, $driver, $device) = @_; return () if $::isInstall; +{ advanced => 1, val => N("Let me pick any driver"), disabled => sub {}, clicked => sub { my $old_driver = $driver; if ($in->ask_from(N("Choosing an arbitrary driver"), formatAlaTeX( #-PO: keep the double empty lines between sections, this is formatted a la LaTeX N("If you really think that you know which driver is the right one for your card you can pick one from the above list. The current driver for your \"%s\" sound card is \"%s\" ", $device->{description}, $driver)), [ { label => N("Driver:"), val => \$driver, list => [ category2modules("multimedia/sound") ], type => 'combo', default => $driver, sort =>1, separator => '|' }, ] )) { do_switch($in, $modules_conf, $old_driver, $driver, $device->{sound_slot_index}); goto end; } } }; } sub configure_one_sound_slot { my ($modules_conf, $index, $driver) = @_; $modules_conf->set_sound_slot("sound-slot-$index", $driver); $modules_conf->set_options($driver, "xbox=1") if $driver eq "snd_intel8x0" && detect_devices::is_xbox(); $modules_conf->set_options('snd-ac97-codec', "power_save=1") if $driver =~ /^snd/ && detect_devices::isLaptop() && arch() !~ /mips/; } sub configure_sound_slots { my ($modules_conf) = @_; my $altered = 0; each_index { my $default_driver = $modules_conf->get_alias("sound-slot-$::i"); if (!member($default_driver, get_alternative($_->{driver}), $_->{driver})) { $altered ||= $default_driver; configure_one_sound_slot($modules_conf, $::i, $_->{driver}); } } detect_devices::getSoundDevices(); $modules_conf->write if $altered && $::isStandalone; } 1; /a> 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 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619
# translation of rpmdrake-az.po to Azerbaijani
# translation of rpmdrake-az.po to Azerbaijani Turkish
# rpmdrake-az.po faylının Azərbaycan dilinə tərcüməsi
#
# Latest versions of po files are at http://www.mandrakelinux.com/l10n/az.php3
#
# Mandrakelinux Update.
# Copyright (C) 2000,2003, 2004 Free Software Foundation, Inc.
# VASIF ISMAILOGLU <azerb_linux@hotmail.com>, 2000.
# Mətin Əmirov <metin@karegen.com>, 2003, 2004.
#
#
msgid ""
msgstr ""
"Project-Id-Version: rpmdrake-az\n"
"POT-Creation-Date: 2005-01-18 13:29+0100\n"
"PO-Revision-Date: 2004-09-12 20:17+0300\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
#: ../edit-urpm-sources.pl:66
#, c-format
msgid "Choose media type"
msgstr ""
#: ../edit-urpm-sources.pl:67
#, c-format
msgid ""
"This step enables you to add sources from a Mandrakelinux web or FTP "
"mirror.\n"
"\n"
"There are two kinds of official mirrors. You can choose to add sources that\n"
"contain the complete set of packages of your distribution (usually a "
"superset\n"
"of what comes on the standard installation CDs), or sources that provide "
"the\n"
"official updates for your distribution. (You can add both, but you'll have\n"
"to do this in two steps.)"
msgstr ""
#: ../edit-urpm-sources.pl:75
#, c-format
msgid "Distribution sources"
msgstr ""
#: ../edit-urpm-sources.pl:75
#, fuzzy, c-format
msgid "Official updates"
msgstr "Normal yeniləmələr"
#: ../edit-urpm-sources.pl:78
#, fuzzy, c-format
msgid ""
"This will attempt to install all official sources corresponding to your\n"
"distribution (%s).\n"
"\n"
"I need to contact the Mandrakesoft website to get the mirror list.\n"
"Please check that your network is currently running.\n"
"\n"
"Is it ok to continue?"
msgstr ""
"Əks siyahılarını almaq üçün indi Mandrakesoft'a bağlanmaq lazımdır.\n"
"Xahiş edirik, şəbəkənizin işlədiyini yoxlayın.\n"
"\n"
"Davam edilsin?"
#: ../edit-urpm-sources.pl:87
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Xahiş edirik gözləyin, mediya yenilənir..."
#: ../edit-urpm-sources.pl:120
#, c-format
msgid "Add a medium"
msgstr "Mediyum əlavə et"
#: ../edit-urpm-sources.pl:122
#, c-format
msgid "Local files"
msgstr "Yerli fayllar"
#: ../edit-urpm-sources.pl:122
#, c-format
msgid "Path:"
msgstr "Cığır:"
#: ../edit-urpm-sources.pl:123
#, c-format
msgid "FTP server"
msgstr "FTP vericisi"
#: ../edit-urpm-sources.pl:123 ../edit-urpm-sources.pl:124
#: ../edit-urpm-sources.pl:382
#, c-format
msgid "URL:"
msgstr "URL:"
#: ../edit-urpm-sources.pl:124
#, c-format
msgid "HTTP server"
msgstr "HTTP vericisi"
#: ../edit-urpm-sources.pl:125
#, c-format
msgid "Removable device"
msgstr "Çıxardıla bilən avadanlıq"
#: ../edit-urpm-sources.pl:125
#, c-format
msgid "Path or mount point:"
msgstr "Cığır ya da bağlama nöqtəsi:"
#: ../edit-urpm-sources.pl:141
#, c-format
msgid "Browse..."
msgstr "Gəz..."
#: ../edit-urpm-sources.pl:171
#, c-format
msgid "Login:"
msgstr "Giriş:"
#: ../edit-urpm-sources.pl:171 ../edit-urpm-sources.pl:459
#, c-format
msgid "Password:"
msgstr "Şifrə:"
#: ../edit-urpm-sources.pl:176 ../edit-urpm-sources.pl:383
#, c-format
msgid "Relative path to synthesis/hdlist:"
msgstr "synthesis/hdlist'in nisbi cığırı:"
#: ../edit-urpm-sources.pl:178
#, c-format
msgid "If left blank, synthesis/hdlist will be automatically probed"
msgstr "Boş buraxılsa, synthesis/hdlist avtomatik olaraq yoxlanacaq"
#: ../edit-urpm-sources.pl:183
#, c-format
msgid "Name:"
msgstr "Ad:"
#: ../edit-urpm-sources.pl:194
#, c-format
msgid "Create media for a whole distribution"
msgstr ""
#: ../edit-urpm-sources.pl:212
#, c-format
msgid "You need to fill up at least the two first entries."
msgstr "Ən azından ilk iki girişi doldurmalısınız."
#: ../edit-urpm-sources.pl:216
#, c-format
msgid ""
"There is already a medium by that name, do you\n"
"really want to replace it?"
msgstr ""
"Bu adla onsuzda bir mediyum mövcuddur, həqiqətən\n"
"də onu əvəz etmək istəyirsiniz?"
#: ../edit-urpm-sources.pl:227
#, c-format
msgid "Adding a medium:"
msgstr "Mediyum əlavə edilir:"
#: ../edit-urpm-sources.pl:228
#, c-format
msgid "Type of medium:"
msgstr "Mediyum növü:"
#: ../edit-urpm-sources.pl:233 ../edit-urpm-sources.pl:303
#: ../edit-urpm-sources.pl:389 ../edit-urpm-sources.pl:414
#: ../edit-urpm-sources.pl:476 ../edit-urpm-sources.pl:557
#: ../edit-urpm-sources.pl:597 ../edit-urpm-sources.pl:655
#: ../edit-urpm-sources.pl:794 ../rpmdrake:159 ../rpmdrake:676
#: ../rpmdrake:1418 ../rpmdrake:1426 ../rpmdrake.pm:502 ../rpmdrake.pm:592
#: ../rpmdrake.pm:661
#, c-format
msgid "Cancel"
msgstr "Ləğv et"
#: ../edit-urpm-sources.pl:235 ../edit-urpm-sources.pl:305
#: ../edit-urpm-sources.pl:414 ../edit-urpm-sources.pl:466
#: ../edit-urpm-sources.pl:554 ../edit-urpm-sources.pl:596
#: ../edit-urpm-sources.pl:648 ../edit-urpm-sources.pl:720
#: ../edit-urpm-sources.pl:787 ../edit-urpm-sources.pl:840
#: ../edit-urpm-sources.pl:990 ../rpmdrake:159 ../rpmdrake:676 ../rpmdrake:693
#: ../rpmdrake:698 ../rpmdrake:1360 ../rpmdrake:1418 ../rpmdrake:1561
#: ../rpmdrake.pm:191 ../rpmdrake.pm:248 ../rpmdrake.pm:502
#, c-format
msgid "Ok"
msgstr "Oldu"
#: ../edit-urpm-sources.pl:287
#, fuzzy, c-format
msgid "Global options for package installation"
msgstr "Paketlər qurulum üçün hazırlanır..."
#: ../edit-urpm-sources.pl:289
#, c-format
msgid "always"
msgstr ""
#: ../edit-urpm-sources.pl:290
#, fuzzy, c-format
msgid "never"
msgstr "Vericilər"
#: ../edit-urpm-sources.pl:299
#, fuzzy, c-format
msgid "Verify RPMs to be installed:"
msgstr "Bə'zi paketlər qurula bilməz"
#: ../edit-urpm-sources.pl:300
#, fuzzy, c-format
msgid "Download program to use:"
msgstr "`%s' endirilir, sür'ət:%s"
#: ../edit-urpm-sources.pl:330
#, c-format
msgid "Source Removal"
msgstr "Mənbə Silinməsi"
#: ../edit-urpm-sources.pl:331
#, c-format
msgid "Are you sure you want to remove source \"%s\"?"
msgstr "\"%s\" mediumunu silmək istəyirsiniz?"
#: ../edit-urpm-sources.pl:336
#, c-format
msgid "Please wait, removing medium..."
msgstr "Xahiş edirik gözləyin, mediyum silinir..."
#: ../edit-urpm-sources.pl:373
#, c-format
msgid "Edit a medium"
msgstr "Mediyumu düzəlt"
#: ../edit-urpm-sources.pl:379
#, c-format
msgid "Editing medium \"%s\":"
msgstr "\"%s\" mediyumu dəyişdirilir:"
#: ../edit-urpm-sources.pl:393
#, c-format
msgid "Save changes"
msgstr "Dəyişiklikləri qeyd et"
#: ../edit-urpm-sources.pl:401 ../edit-urpm-sources.pl:977
#, c-format
msgid "Proxy..."
msgstr "Vəkil..."
#: ../edit-urpm-sources.pl:412
#, c-format
msgid "You need to insert the medium to continue"
msgstr "Davam etmək üçün mediyumu daxil etməlisiniz"
#: ../edit-urpm-sources.pl:413
#, c-format
msgid ""
"In order to save the changes, you need to insert the medium in the drive."
msgstr "Dəyişiklikləri qeyd edə bilmək üçün, mediyumu sürücüyə taxmalısınız."
#: ../edit-urpm-sources.pl:435
#, c-format
msgid "Configure proxies"
msgstr "Vəkilləri quraşdır"
#: ../edit-urpm-sources.pl:445
#, c-format
msgid "Proxy settings for media \"%s\""
msgstr "\"%s\" mediası üçün vəkil qurğuları"
#: ../edit-urpm-sources.pl:446
#, c-format
msgid "Global proxy settings"
msgstr "Qlobal vəkil qurğuları"
#: ../edit-urpm-sources.pl:448
#, c-format
msgid ""
"If you need a proxy, enter the hostname and an optional port (syntax: "
"<proxyhost[:port]>):"
msgstr ""
"Əgər vəkil vericisinə ehtiyacınız varsa, qovşaq adını və istəsəniz qapısını "
"girin (yazma qaydası: <vəkilqovşaqadı[:qapı]>):"
#: ../edit-urpm-sources.pl:451
#, c-format
msgid "Proxy hostname:"
msgstr "Vəkil qovşaq adı:"
#: ../edit-urpm-sources.pl:454
#, c-format
msgid "You may specify a user/password for the proxy authentication:"
msgstr ""
"Vəkil səlahiyyətləndirilməsi üçün istifadəçi adı/şifrə bildirə bilərsiniz:"
#: ../edit-urpm-sources.pl:457
#, c-format
msgid "User:"
msgstr "İstifadəçi:"
#: ../edit-urpm-sources.pl:525
#, c-format
msgid "Add a parallel group"
msgstr "Paralel qrup əlavə et"
#: ../edit-urpm-sources.pl:525
#, c-format
msgid "Edit a parallel group"
msgstr "Paralel qrupu düzəlt"
#: ../edit-urpm-sources.pl:536
#, c-format
msgid "Add a medium limit"
msgstr "Mənbə sərhədi əlavə et"
#: ../edit-urpm-sources.pl:548
#, c-format
msgid "Choose a medium for adding in the media limit:"
msgstr "Mediya sərhədinə əlavə etmək üçün mediyum seçin:"
#: ../edit-urpm-sources.pl:585
#, c-format
msgid "Add a host"
msgstr "Qovşaq əlavə et"
#: ../edit-urpm-sources.pl:591
#, c-format
msgid "Type in the hostname or IP address of the host to add:"
msgstr "Əlavə ediləcək qovşağın IP ünvanını ya da qovşaq adını girin:"
#: ../edit-urpm-sources.pl:622
#, c-format
msgid "Editing parallel group \"%s\":"
msgstr "\"%s\" paralel qrupu dəyişdirilir:"
#: ../edit-urpm-sources.pl:626
#, c-format
msgid "Group name:"
msgstr "Qrup adı:"
#: ../edit-urpm-sources.pl:627
#, c-format
msgid "Protocol:"
msgstr "Protokol:"
#: ../edit-urpm-sources.pl:629
#, c-format
msgid "Media limit:"
msgstr "Mediya sərhədi:"
#: ../edit-urpm-sources.pl:634 ../edit-urpm-sources.pl:641
#, c-format
msgid "Add"
msgstr "Əlavə Et"
#: ../edit-urpm-sources.pl:635 ../edit-urpm-sources.pl:642
#: ../edit-urpm-sources.pl:700 ../edit-urpm-sources.pl:955 ../rpmdrake:1154
#, c-format
msgid "Remove"
msgstr "Sil"
#: ../edit-urpm-sources.pl:636
#, c-format
msgid "Hosts:"
msgstr "Qovşaqlar:"
#: ../edit-urpm-sources.pl:670
#, c-format
msgid "Configure parallel urpmi (distributed execution of urpmi)"
msgstr "Paralel urpmi-ni quraşdır"
#: ../edit-urpm-sources.pl:673
#, c-format
msgid "Group"
msgstr "Qrup"
#: ../edit-urpm-sources.pl:673
#, c-format
msgid "Protocol"
msgstr "Protokol"
#: ../edit-urpm-sources.pl:673
#, c-format
msgid "Media limit"
msgstr "Mediya sərhədi"
#: ../edit-urpm-sources.pl:674
#, c-format
msgid "Command"
msgstr "Əmr"
#: ../edit-urpm-sources.pl:684 ../rpmdrake:353 ../rpmdrake:370 ../rpmdrake:492
#: ../rpmdrake:608
#, c-format
msgid "(none)"
msgstr "(heç biri)"
#: ../edit-urpm-sources.pl:704 ../edit-urpm-sources.pl:959
#, c-format
msgid "Edit"
msgstr "Düzəlt"
#: ../edit-urpm-sources.pl:712 ../edit-urpm-sources.pl:965
#, c-format
msgid "Add..."
msgstr "Əlavə Et..."
#: ../edit-urpm-sources.pl:728
#, c-format
msgid "Manage keys for digital signatures of packages"
msgstr "Paketlərin digital imzaları üçün açarları idarə edin"
#: ../edit-urpm-sources.pl:732 ../edit-urpm-sources.pl:874
#, c-format
msgid "Medium"
msgstr "Mediyum"
#: ../edit-urpm-sources.pl:737
#, c-format
msgid "Keys"
msgstr "Açarlar"
#: ../edit-urpm-sources.pl:756
#, c-format
msgid "no name found, key doesn't exist in rpm keyring!"
msgstr "ad tapıla bilmədi, açar rpm keyring içində mövcud deyil!"
#: ../edit-urpm-sources.pl:769
#, c-format
msgid "Add a key"
msgstr "Açar əlavə et"
#: ../edit-urpm-sources.pl:781
#, c-format
msgid "Choose a key for adding to the medium %s"
msgstr "%s mediyumuna əlavə etmək üçün açar seçin"
#: ../edit-urpm-sources.pl:809
#, c-format
msgid "Remove a key"
msgstr "Açarı sil"
#: ../edit-urpm-sources.pl:810
#, c-format
msgid ""
"Are you sure you want to remove the key %s from medium %s?\n"
"(name of the key: %s)"
msgstr ""
"%s açarını %s mediumundan silmək istəyirsiniz?\n"
"(açar adı: %s)"
#: ../edit-urpm-sources.pl:828
#, c-format
msgid "Add a key..."
msgstr "Açar əlavə et..."
#: ../edit-urpm-sources.pl:832
#, c-format
msgid "Remove key"
msgstr "Açarı sil"
#: ../edit-urpm-sources.pl:848
#, c-format
msgid "Configure media"
msgstr "Mediyanı quraşdır"
#: ../edit-urpm-sources.pl:873
#, c-format
msgid "Enabled?"
msgstr "Fəal?"
#: ../edit-urpm-sources.pl:886
#, c-format
msgid "Update medium"
msgstr "Mediyumu yenilə"
#: ../edit-urpm-sources.pl:886
#, c-format
msgid "Regenerate hdlist"
msgstr "hdlist'i yenidən yarat"
#: ../edit-urpm-sources.pl:898 ../rpmdrake.pm:585
#, c-format
msgid "Please wait, updating media..."
msgstr "Xahiş edirik gözləyin, mediya yenilənir..."
#: ../edit-urpm-sources.pl:902
#, c-format
msgid "Please wait, generating hdlist..."
msgstr "Xahiş edirik gözləyin, hdlist yaradılır..."
#: ../edit-urpm-sources.pl:969
#, fuzzy, c-format
msgid "Add custom..."
msgstr "Əlavə Et..."
#: ../edit-urpm-sources.pl:973
#, c-format
msgid "Update..."
msgstr "Yenilə..."
#: ../edit-urpm-sources.pl:976
#, c-format
msgid "Manage keys..."
msgstr "Açarları idarə et..."
#: ../edit-urpm-sources.pl:978
#, c-format
msgid "Parallel..."
msgstr "Paralel..."
#: ../edit-urpm-sources.pl:979
#, fuzzy, c-format
msgid "Global options..."
msgstr "Qlobal vəkil qurğuları"
#: ../edit-urpm-sources.pl:989
#, c-format
msgid "Help"
msgstr "Yardım"
#: ../edit-urpm-sources.pl:1001 ../gurpmi.addmedia:75 ../rpmdrake:1672
#, c-format
msgid ""
"%s\n"
"\n"
"Is it ok to continue?"
msgstr ""
"%s\n"
"\n"
"Davam edilsin?"
#: ../edit-urpm-sources.pl:1004
#, c-format
msgid ""
"Welcome to the Software Media Manager!\n"
"\n"
"This tool will help you configure the packages media you wish to use on\n"
"your computer. They will then be available to install new software package\n"
"or to perform updates."
msgstr ""
"Tə'minat Mediya İdarəçisinə Xoş Gəldiniz!\n"
"\n"
"Bu vasitə sizə kompüterinizdə işlətmək istədiyiniz paketlərin mediyasını\n"
"quraşdırmaqda yardımçı olacaq. Bu mediyaların yardımı ilə daha sonra yeni\n"
"proqram qurmaq və yeniləmələri etmə imkanına sahib olacaqsınız."
#: ../edit-urpm-sources.pl:1016
#, c-format
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 ""
"Paket mə'lumat bazası qıfıllıdır. Xahiş edirik paket mə'lumat bazasını\n"
"işlədən digər proqramları bağlayın (hazırda açıq olan başqa bir\n"
"mediya idarəçisi varsa bağlayın, ya da hazırda paket qurmağı dayandırın)."
#: ../gurpmi.addmedia:70
#, c-format
msgid "Unable to add medium, wrong or missing arguments"
msgstr "Medium əlavə edilə bilmədi, səhv ya da əksik arqumentlər"
#: ../gurpmi.addmedia:78
#, c-format
msgid ""
"You are about to add a new packages medium, `%s'.\n"
"That means you will be able to add new software packages\n"
"to your system from that new medium."
msgstr ""
"`%s' paket mediyumunu əlavə etmək üzrəsiniz.\n"
"Bunun köməyi ilə sisteminizə bu mediyumdan yeni\n"
"proqram tə'minatları əlavə edə biləcəksiniz."
#: ../gurpmi.addmedia:87
#, c-format
msgid "Successfully added medium `%s'."
msgstr "`%s' mediyumu müvəffəqiyyətlə əlavə edildi."
#: ../rpmdrake:156
#, c-format
msgid "Running in user mode"
msgstr "İstifadəçi modunda işləyir"
#: ../rpmdrake:157
#, c-format
msgid ""
"You are launching this program as a normal user.\n"
"You will not be able to perform modifications on the system,\n"
"but you may still browse the existing database."
msgstr ""
"Bu proqramı adi istifadəçi olaraq başladırsınız.\n"
"Sistem üstündə təkmilləşdirmə apara bilməyəcəksiniz,\n"
"ancaq yenə də mövcud mə'lumat bazasını gəzə biləcəksiniz."
#: ../rpmdrake:165
#, c-format
msgid "Accessibility"
msgstr "Yetişmə Qabiliyyəti"
#: ../rpmdrake:166 ../rpmdrake:167 ../rpmdrake:168 ../rpmdrake:169
#, c-format
msgid "Archiving"
msgstr "Arxivləmə"
#: ../rpmdrake:166
#, c-format
msgid "Backup"
msgstr "Ehtiyatlama"
#: ../rpmdrake:167
#, c-format
msgid "Cd burning"
msgstr "Cd yazma"
#: ../rpmdrake:168
#, c-format
msgid "Compression"
msgstr "Sıxışdırma"
#: ../rpmdrake:169 ../rpmdrake:174 ../rpmdrake:186 ../rpmdrake:197
#: ../rpmdrake:206 ../rpmdrake:218 ../rpmdrake:230 ../rpmdrake:238
#: ../rpmdrake:322
#, c-format
msgid "Other"
msgstr "Digər"
#: ../rpmdrake:170 ../rpmdrake:171 ../rpmdrake:172 ../rpmdrake:173
#: ../rpmdrake:174
#, c-format
msgid "Books"
msgstr "Kitablar"
#: ../rpmdrake:170
#, c-format
msgid "Computer books"
msgstr "Kompüter kitabları"
#: ../rpmdrake:171
#, c-format
msgid "Faqs"
msgstr "Çox Soruşulan Suallar"
#: ../rpmdrake:172
#, c-format
msgid "Howtos"
msgstr "Howto sənədləri"
#: ../rpmdrake:173
#, c-format
msgid "Literature"
msgstr "Ədəbiyyat"
#: ../rpmdrake:175 ../rpmdrake:176
#, c-format
msgid "Cluster"
msgstr "Klaster"
#: ../rpmdrake:175
#, c-format
msgid "Message Passing"
msgstr "İsmarış Keçməsi"
#: ../rpmdrake:176
#, c-format
msgid "Queueing Services"
msgstr "Xidmətlər Növbəyə Alınır"
#: ../rpmdrake:177
#, c-format
msgid "Communications"
msgstr "Rabitə"
#: ../rpmdrake:178 ../rpmdrake:181
#, c-format
msgid "Databases"
msgstr "Mə'lumat bazaları"
#: ../rpmdrake:179 ../rpmdrake:180 ../rpmdrake:181 ../rpmdrake:182
#: ../rpmdrake:183 ../rpmdrake:184 ../rpmdrake:185 ../rpmdrake:186
#: ../rpmdrake:187 ../rpmdrake:188
#, fuzzy, c-format
msgid "Development"
msgstr "İnkişaf"
#: ../rpmdrake:179
#, c-format
msgid "C"
msgstr "C"
#: ../rpmdrake:180
#, c-format
msgid "C++"
msgstr "C++"
#: ../rpmdrake:182
#, c-format
msgid "GNOME and GTK+"
msgstr "GNOME və GTK+"
#: ../rpmdrake:183
#, c-format
msgid "Java"
msgstr "Java"
#: ../rpmdrake:184
#, c-format
msgid "KDE and Qt"
msgstr "KDE və Qt"
#: ../rpmdrake:185
#, c-format
msgid "Kernel"
msgstr "Çəyirdək"
#: ../rpmdrake:187
#, c-format
msgid "Perl"
msgstr "Perl"
#: ../rpmdrake:188
#, c-format
msgid "Python"
msgstr "Python"
#: ../rpmdrake:189
#, c-format
msgid "Editors"
msgstr "Editorlar"
#: ../rpmdrake:190
#, c-format
msgid "Education"
msgstr "Maarif"
#: ../rpmdrake:191
#, c-format
msgid "Emulators"
msgstr "Emulyatorlar"
#: ../rpmdrake:192
#, c-format
msgid "File tools"
msgstr "Fayl vasitələri"
#: ../rpmdrake:193 ../rpmdrake:194 ../rpmdrake:195 ../rpmdrake:196
#: ../rpmdrake:197 ../rpmdrake:198 ../rpmdrake:199 ../rpmdrake:200
#, c-format
msgid "Games"
msgstr "Oyunlar"
#: ../rpmdrake:193
#, c-format
msgid "Adventure"
msgstr "Macəra"
#: ../rpmdrake:194
#, c-format
msgid "Arcade"
msgstr "Əyləncə"
#: ../rpmdrake:195
#, c-format
msgid "Boards"
msgstr "Lövhə oyunları"
#: ../rpmdrake:196
#, c-format
msgid "Cards"
msgstr "Kartlar"
#: ../rpmdrake:198
#, c-format
msgid "Puzzles"
msgstr "Tapmacalar"
#: ../rpmdrake:199
#, c-format
msgid "Sports"
msgstr "İdman"
#: ../rpmdrake:200
#, c-format
msgid "Strategy"
msgstr "Strategiya"
#: ../rpmdrake:201 ../rpmdrake:202 ../rpmdrake:203 ../rpmdrake:204
#: ../rpmdrake:205 ../rpmdrake:206 ../rpmdrake:207 ../rpmdrake:208
#, c-format
msgid "Graphical desktop"
msgstr "Qrafiki masa üstü"
#: ../rpmdrake:201
#, c-format
msgid "Enlightenment"
msgstr "Enlightenment"
#: ../rpmdrake:202
#, c-format
msgid "FVWM based"
msgstr "FVWM əsaslı"
#: ../rpmdrake:203
#, c-format
msgid "GNOME"
msgstr "GNOME"
#: ../rpmdrake:204
#, c-format
msgid "Icewm"
msgstr "Icewm"
#: ../rpmdrake:205
#, c-format
msgid "KDE"
msgstr "KDE"
#: ../rpmdrake:207
#, c-format
msgid "Sawfish"
msgstr "Sawfish"
#: ../rpmdrake:208
#, c-format
msgid "WindowMaker"
msgstr "WindowMaker"
#: ../rpmdrake:209
#, c-format
msgid "Graphics"
msgstr "Qrafika"
#: ../rpmdrake:210
#, c-format
msgid "Monitoring"
msgstr "İzləmə"
#: ../rpmdrake:211
#, c-format
msgid "Multimedia"
msgstr "Multimedya"
#: ../rpmdrake:212 ../rpmdrake:213 ../rpmdrake:214 ../rpmdrake:215
#: ../rpmdrake:216 ../rpmdrake:217 ../rpmdrake:218 ../rpmdrake:219
#: ../rpmdrake:220 ../rpmdrake:237
#, c-format
msgid "Networking"
msgstr "Şəbəkə"
#: ../rpmdrake:212
#, c-format
msgid "Chat"
msgstr "Söhbət"
#: ../rpmdrake:213
#, c-format
msgid "File transfer"
msgstr "Fayl transferi"
#: ../rpmdrake:214
#, c-format
msgid "IRC"
msgstr "IRC"
#: ../rpmdrake:215
#, c-format
msgid "Instant messaging"
msgstr "Canlı ismarışlaşma"
#: ../rpmdrake:216
#, c-format
msgid "Mail"
msgstr "Poçt"
#: ../rpmdrake:217
#, c-format
msgid "News"
msgstr "Xəbərlər"
#: ../rpmdrake:219
#, c-format
msgid "Remote access"
msgstr "Uzaqdan yetişmə"
#: ../rpmdrake:220
#, c-format
msgid "WWW"
msgstr "WWW"
#: ../rpmdrake:221
#, c-format
msgid "Office"
msgstr "Offis"
#: ../rpmdrake:222
#, c-format
msgid "Public Keys"
msgstr "Açıq Açarlar"
#: ../rpmdrake:223
#, c-format
msgid "Publishing"
msgstr "Nəşr"
#: ../rpmdrake:224 ../rpmdrake:225 ../rpmdrake:226 ../rpmdrake:227
#: ../rpmdrake:228 ../rpmdrake:229 ../rpmdrake:230 ../rpmdrake:231
#, c-format
msgid "Sciences"
msgstr "Elm"
#: ../rpmdrake:224
#, c-format
msgid "Astronomy"
msgstr "Astronomiya"
#: ../rpmdrake:225
#, c-format
msgid "Biology"
msgstr "Biyologiya"
#: ../rpmdrake:226
#, c-format
msgid "Chemistry"
msgstr "Kimya"
#: ../rpmdrake:227
#, c-format
msgid "Computer science"
msgstr "Kompüter elmi"
#: ../rpmdrake:228
#, c-format
msgid "Geosciences"
msgstr "Geologiya elmləri"
#: ../rpmdrake:229
#, c-format
msgid "Mathematics"
msgstr "Riyaziyyat"
#: ../rpmdrake:231
#, c-format
msgid "Physics"
msgstr "Fizika"
#: ../rpmdrake:232
#, c-format
msgid "Shells"
msgstr "Qabıqlar"
#: ../rpmdrake:233
#, c-format
msgid "Sound"
msgstr "Səs"
#: ../rpmdrake:234 ../rpmdrake:235 ../rpmdrake:236 ../rpmdrake:237
#: ../rpmdrake:238 ../rpmdrake:239 ../rpmdrake:240 ../rpmdrake:241
#: ../rpmdrake:242 ../rpmdrake:243 ../rpmdrake:244 ../rpmdrake:245
#: ../rpmdrake:246 ../rpmdrake:247 ../rpmdrake:248 ../rpmdrake:249
#: ../rpmdrake:250 ../rpmdrake:251
#, c-format
msgid "System"
msgstr "Sistem"
#: ../rpmdrake:234
#, c-format
msgid "Base"
msgstr "Əsas"
#: ../rpmdrake:235 ../rpmdrake:236 ../rpmdrake:237 ../rpmdrake:238
#: ../rpmdrake:239 ../rpmdrake:240
#, c-format
msgid "Configuration"
msgstr "Quraşdırma"
#: ../rpmdrake:235
#, c-format
msgid "Boot and Init"
msgstr "Açılış və Init"
#: ../rpmdrake:236
#, c-format
msgid "Hardware"
msgstr "Avadanlıq"
#: ../rpmdrake:239
#, c-format
msgid "Packaging"
msgstr "Paketləmə"
#: ../rpmdrake:240
#, c-format
msgid "Printing"
msgstr "Çap"
#: ../rpmdrake:241
#, c-format
msgid "Deploiement"
msgstr "İnkişaf"
#: ../rpmdrake:242
#, c-format
msgid "Deployment"
msgstr "İnkişaf"
#: ../rpmdrake:243 ../rpmdrake:244 ../rpmdrake:245 ../rpmdrake:246
#, c-format
msgid "Fonts"
msgstr "Yazı növləri"
#: ../rpmdrake:243
#, c-format
msgid "Console"
msgstr "Konsol"
#: ../rpmdrake:244
#, c-format
msgid "True type"
msgstr "True type"
#: ../rpmdrake:245
#, c-format
msgid "Type1"
msgstr "Növ1"
#: ../rpmdrake:246
#, c-format
msgid "X11 bitmap"
msgstr "X11 bitməpi"
#: ../rpmdrake:247
#, c-format
msgid "Internationalization"
msgstr "Yerliləşdirmə"
#: ../rpmdrake:248
#, c-format
msgid "Kernel and hardware"
msgstr "Çəyirdək və avadanlıq"
#: ../rpmdrake:249
#, c-format
msgid "Libraries"
msgstr "Kitabxanalar"
#: ../rpmdrake:250
#, c-format
msgid "Servers"
msgstr "Vericilər"
#: ../rpmdrake:251
#, c-format
msgid "XFree86"
msgstr "XFree86"
#: ../rpmdrake:252
#, c-format
msgid "Terminals"
msgstr "Terminallar"
#: ../rpmdrake:253
#, c-format
msgid "Text tools"
msgstr "Mətn vasitələri"
#: ../rpmdrake:254
#, c-format
msgid "Toys"
msgstr "Oyuncaqlar"
#: ../rpmdrake:255
#, c-format
msgid "Video"
msgstr "Video"
#: ../rpmdrake:376 ../rpmdrake:509 ../rpmdrake:511
#, c-format
msgid "(Not available)"
msgstr "(Mövcud deyil)"
#: ../rpmdrake:405 ../rpmdrake:473
#, c-format
msgid "Search results"
msgstr "Axtarış nəticələri"
#: ../rpmdrake:405
#, c-format
msgid "Search results (none)"
msgstr "Axtarış nəticələri (heçnə)"
#: ../rpmdrake:416 ../rpmdrake:437
#, c-format
msgid "Please wait, searching..."
msgstr "Xahiş edirik gözləyin, axtarılır..."
#: ../rpmdrake:435 ../rpmdrake:1194 ../rpmdrake:1458 ../rpmdrake:1671
#, c-format
msgid "Rpmdrake"
msgstr "Rpmdrake"
#: ../rpmdrake:440
#, c-format
msgid "Stop"
msgstr "Dayan"
#: ../rpmdrake:474 ../rpmdrake:639
#, c-format
msgid "Upgradable"
msgstr "Yenilənə bilən"
#: ../rpmdrake:474 ../rpmdrake:639
#, c-format
msgid "Addable"
msgstr "Əlvə edilə bilən"
#: ../rpmdrake:476
#, c-format
msgid "Selected"
msgstr "Seçili"
#: ../rpmdrake:476
#, c-format
msgid "Not selected"
msgstr "Seçili deyil"
#: ../rpmdrake:506
#, c-format
msgid "Files:\n"
msgstr "Fayllar:\n"
#: ../rpmdrake:511
#, c-format
msgid "Changelog:\n"
msgstr "Dəyişmə qeydi:\n"
#: ../rpmdrake:516
#, c-format
msgid "Medium: "
msgstr "Mediyum: "
#: ../rpmdrake:518
#, c-format
msgid "Currently installed version: "
msgstr "Hazırda qurulu olan buraxılış: "
#: ../rpmdrake:526
#, c-format
msgid "Name: "
msgstr "Ad: "
#: ../rpmdrake:527
#, c-format
msgid "Version: "
msgstr "Buraxılış: "
#: ../rpmdrake:528
#, c-format
msgid "Size: "
msgstr "Böyüklük: "
#: ../rpmdrake:528
#, c-format
msgid "%s KB"
msgstr "%s KB"
#: ../rpmdrake:531
#, c-format
msgid "Importance: "
msgstr "Vaciblik: "
#: ../rpmdrake:534
#, c-format
msgid "Summary: "
msgstr "İcmal: "
#: ../rpmdrake:537
#, c-format
msgid "Reason for update: "
msgstr "Yeniləmə səbəbi: "
#: ../rpmdrake:539
#, c-format
msgid "Description: "
msgstr "İzahat: "
#: ../rpmdrake:554
#, c-format
msgid "Rpmdrake %s"
msgstr "Rpmdrake %s"
#: ../rpmdrake:571 ../rpmdrake:689 ../rpmdrake:691 ../rpmdrake:1551
#, c-format
msgid "More information on package..."
msgstr "Paket haqqında daha çox mə'lumat..."
#: ../rpmdrake:572
#, c-format
msgid "Please choose"
msgstr "Xahiş edirik seçin"
#: ../rpmdrake:572
#, c-format
msgid "One of the following packages is needed:"
msgstr "Aşağıdakı paketlərin birinə ehtiyac var:"
#: ../rpmdrake:593
#, c-format
msgid "Please wait, listing packages..."
msgstr "Xahiş edirik gözləyin, paketlər sıralanır..."
#: ../rpmdrake:610
#, c-format
msgid "No update"
msgstr "Yeniləmə yoxdur"
#: ../rpmdrake:611
#, c-format
msgid ""
"The list of updates is empty. This means that either there is\n"
"no available update for the packages installed on your computer,\n"
"or you already installed all of them."
msgstr ""
"Yeniləmələr siyahısı boşdur. Bu o deməkdir ki, sisteminizdə\n"
"qurulu olan heç bir paketin yeniləməsi yoxdur, ya da siz onları\n"
"onsuz da qurmusunuz və bütün proqram tə'minatlarınız yenidir."
#: ../rpmdrake:632
#, c-format
msgid "All"
msgstr "Hamısı"
#. -PO: Keep it short, this is gonna be on a button
#: ../rpmdrake:676 ../rpmdrake:681
#, c-format
msgid "More info"
msgstr "Daha çox mə'lumat"
#: ../rpmdrake:684 ../rpmdrake:1540
#, c-format
msgid "Information on packages"
msgstr "Paketlər haqqında mə'lumat"
#: ../rpmdrake:706
#, c-format
msgid "Some additional packages need to be removed"
msgstr "Bə'zi əlavə paketlər kənar edilməlidir"
#: ../rpmdrake:707
#, c-format
msgid ""
"Because of their dependencies, the following package(s) also need to be\n"
"removed:\n"
"\n"
msgstr ""
"Asılılıqlarına görə, bu paket(lər) də silinməlidir\n"
"\n"
#: ../rpmdrake:713 ../rpmdrake:722
#, c-format
msgid "Some packages can't be removed"
msgstr "Bə'zi paketlər silinə bilməz"
#: ../rpmdrake:714
#, c-format
msgid ""
"Removing these packages would break your system, sorry:\n"
"\n"
msgstr ""
"Bu paketləri çıxartmaq sisteminizi xarab edəcək, üzr istəyirik:\n"
"\n"
#: ../rpmdrake:723 ../rpmdrake:785
#, c-format
msgid ""
"Because of their dependencies, the following package(s) must be\n"
"unselected now:\n"
"\n"
msgstr ""
"Asıllılıqlarına görə, aşağıdakı paket(lər) \n"
"seçilməməlidir:\n"
"\n"
#: ../rpmdrake:752
#, c-format
msgid "Additional packages needed"
msgstr "Əlavə paketlərə ehtiyac var"
#: ../rpmdrake:753
#, c-format
msgid ""
"To satisfy dependencies, the following package(s) also need\n"
"to be installed:\n"
"\n"
msgstr ""
"Asıllılıqları ortadan qaldırmaq üçün, aşağıdakı paket(lər) də\n"
"qurulmalıdır:\n"
"\n"
#: ../rpmdrake:768
#, c-format
msgid "%s (belongs to the skip list)"
msgstr "%s"
#: ../rpmdrake:770
#, c-format
msgid "Some packages can't be installed"
msgstr "Bə'zi paketlər qurula bilməz"
#: ../rpmdrake:771
#, c-format
msgid ""
"Sorry, the following package(s) can't be selected:\n"
"\n"
"%s"
msgstr ""
"Bağışlayın, aşağıdakı paket(lər) seçilə bilməz:\n"
"\n"
"%s"
#: ../rpmdrake:784 ../rpmdrake:1048
#, c-format
msgid "Some packages need to be removed"
msgstr "Bəzi paketlər kənar edilməlidir"
#: ../rpmdrake:807
#, c-format
msgid "Selected: %d MB / Free disk space: %d MB"
msgstr "Seçili: %d MB / Boş disk sahəsi: %d MB"
#: ../rpmdrake:809
#, c-format
msgid "Selected size: %d MB"
msgstr "Seçili böyüklük: %d MB"
#: ../rpmdrake:814
#, c-format
msgid "Description not available for this package\n"
msgstr "BU paketin izahatı mövcud deyil\n"
#: ../rpmdrake:881
#, c-format
msgid "Security updates"
msgstr "Təhlükəsizlik yeniləmələri"
#: ../rpmdrake:881
#, c-format
msgid "Bugfixes updates"
msgstr "Xəta düzəltməsi yeniləmələri"
#: ../rpmdrake:881
#, c-format
msgid "Normal updates"
msgstr "Normal yeniləmələr"
#: ../rpmdrake:901
#, c-format
msgid "%s choices"
msgstr ""
#: ../rpmdrake:901
#, c-format
msgid "Mandrakelinux choices"
msgstr "Mandrakelinux seçimləri"
#: ../rpmdrake:904
#, c-format
msgid "All packages, alphabetical"
msgstr "Bütün paketlər, əlifba sırasına görə"
#: ../rpmdrake:912
#, c-format
msgid "All packages, by group"
msgstr "Bütün paketlər, qrupa görə"
#: ../rpmdrake:913
#, c-format
msgid "All packages, by size"
msgstr "Bütün paketlər, böyüklüklərinə görə"
#: ../rpmdrake:914
#, c-format
msgid "All packages, by selection state"
msgstr "Bütün paketlər, seçim vəziyyətinə görə"
#: ../rpmdrake:918
#, c-format
msgid "All packages, by medium repository"
msgstr "Bütün paketlər, mediyumun saxlandığı yerə görə"
#: ../rpmdrake:919
#, c-format
msgid "All packages, by update availability"
msgstr "Bütün paketlər, yeniləmə imkanlarına görə"
#: ../rpmdrake:923
#, c-format
msgid "Leaves only, sorted by install date"
msgstr "Qurulma tarixinə görə sıralanmış, yalnız yarpaqlar"
#: ../rpmdrake:997
#, c-format
msgid "in names"
msgstr "adlarda"
#: ../rpmdrake:999
#, c-format
msgid "in descriptions"
msgstr "izahatlarda"
#: ../rpmdrake:1001
#, c-format
msgid "in file names"
msgstr "fayl adlarında"
#: ../rpmdrake:1010
#, c-format
msgid "Normal information"
msgstr "Normal mə'lumat"
#: ../rpmdrake:1010
#, c-format
msgid "Maximum information"
msgstr "Maksimal mə'lumat"
#: ../rpmdrake:1030
#, c-format
msgid "You need to select some packages first."
msgstr "Əvvəlcə bə'zi paketləri seçməlisiniz."
#: ../rpmdrake:1035
#, c-format
msgid "Too many packages are selected"
msgstr "Həddindən artıq çox paket seçilib"
#: ../rpmdrake:1036
#, c-format
msgid ""
"Warning: it seems that you are attempting to add so much\n"
"packages that your filesystem may run out of free diskspace,\n"
"during or after package installation ; this is particularly\n"
"dangerous and should be considered with care.\n"
"\n"
"Do you really want to install all the selected packages?"
msgstr ""
"Xəbərdarlıq: Görünən odur ki, siz sisteminizin ala bilməyəcəyi\n"
"qədər çox paketi qurmaq üzrə seçmişsiniz. Bu biraz təhlükəlidir\n"
"və burada diqqətli olmalısınız.\n"
"\n"
"Həqiqətən də bütün seçili paketləri qurmaq istəyirsiniz?"
#: ../rpmdrake:1049
#, c-format
msgid ""
"The following packages have to be removed for others to be upgraded:\n"
"\n"
"%s\n"
"\n"
"Is it ok to continue?"
msgstr ""
"Paketlərin yenilənməsi üçün aşağıdakı paketlər kənar edilməlidir:\n"
"\n"
"%s\n"
"\n"
"Davam edilsin?"
#: ../rpmdrake:1082
#, c-format
msgid "Software Packages Removal"
msgstr "Proqram Tə'minatlarının Silinməsi"
#: ../rpmdrake:1083
#, c-format
msgid "Software Packages Update"
msgstr "Proqram Tə'minatlarının Yenilənməsi"
#: ../rpmdrake:1084
#, c-format
msgid "Software Packages Installation"
msgstr "Proqram Tə'minatlarının Qurulması"
#: ../rpmdrake:1090 ../rpmdrake:1093 ../rpmdrake:1102 ../rpmdrake:1113
#: ../rpmdrake:1118
#, c-format
msgid "/_File"
msgstr "/_Fayl"
#: ../rpmdrake:1093
#, fuzzy, c-format
msgid "/_Update media"
msgstr "Mediyanı yenilə"
#: ../rpmdrake:1102
#, fuzzy, c-format
msgid "/_Reset the selection"
msgstr "Seçimi sıfırla"
#: ../rpmdrake:1113
#, fuzzy, c-format
msgid "/Reload the _packages list"
msgstr "Paket siyahısını yenidən yüklə"
#: ../rpmdrake:1118
#, c-format
msgid "/_Quit"
msgstr "/Çı_x"
#: ../rpmdrake:1119
#, fuzzy, c-format
msgid "/_View"
msgstr "Görünüş"
#: ../rpmdrake:1121 ../rpmdrake:1122 ../rpmdrake:1129
#, c-format
msgid "/_Options"
msgstr "/_Seçimlər"
#: ../rpmdrake:1122 ../rpmdrake:1129
#, fuzzy, c-format
msgid "/_Show automatically selected packages"
msgstr "Avtomatik seçili paketləri göstər"
#: ../rpmdrake:1126 ../rpmdrake:1127
#, c-format
msgid "/_Help"
msgstr "/_Yardım"
#: ../rpmdrake:1143
#, c-format
msgid "Find:"
msgstr "Axtar:"
#: ../rpmdrake:1148
#, c-format
msgid "Search"
msgstr "Axtar"
#: ../rpmdrake:1154
#, c-format
msgid "Install"
msgstr "Qur"
#: ../rpmdrake:1186
#, c-format
msgid "Fatal error"
msgstr "Ölümcül xəta"
#: ../rpmdrake:1187
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Ölümcül xəta yarandı: %s."
#: ../rpmdrake:1195
#, c-format
msgid ""
"I need to contact the mirror to get latest update packages.\n"
"Please check that your network is currently running.\n"
"\n"
"Is it ok to continue?"
msgstr ""
"Ən son yeniləmələri almaq üçün indi əksə bağlanmaq lazımdır.\n"
"Xahiş edirik, şəbəkənizin işlədiyini yoxlayın.\n"
"\n"
"Davam edilsin?"
#: ../rpmdrake:1204
#, c-format
msgid "Already existing update media"
msgstr "Onsuzda mövcud olan yeniləmə mediyası"
#: ../rpmdrake:1205
#, 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 Enabled?\n"
"column).\n"
"\n"
"Then, restart %s."
msgstr ""
"Onsuzda ən az bir dənə quraşdırılmış yeniləmə mediyumunuz \n"
"mövcuddur, yalnız onların hamısı hazırda qeyri-fəal vəziyyətdədir.\n"
"Tə'minat Mediyası İdarəçisini başladıb ən az birini fəal\n"
"vəziyyətə gətirməlisiniz (Fəal? sütununu işarələyin).\n"
"\n"
"Daha sonra, %s'i yenidən başladın."
#: ../rpmdrake:1215
#, c-format
msgid "How to choose manually your mirror"
msgstr "Əksinizin əl ilə necə seçiləcəyi"
#: ../rpmdrake:1216
#, c-format
msgid ""
"You may also choose your desired mirror manually: to do so,\n"
"launch the Software Media Manager, and then add a `Security\n"
"updates' medium.\n"
"\n"
"Then, restart %s."
msgstr ""
"Əksinizi əl ilə də seçə bilərsiniz: bunu etmək üçün, \n"
"Tə'minat Mediyası İdarəçisini başladın, və daha sonra\n"
"'Təhlükəsizlik Yeniləmələri' mediyumunu əlavə edin.\n"
"\n"
"Daha sonra, %s'i yenidən başladın."
#: ../rpmdrake:1249
#, c-format
msgid "Please wait, finding available packages..."
msgstr "Xahiş edirik gözləyin, mövcud paketlər tapılır..."
#: ../rpmdrake:1297
#, c-format
msgid "Inspecting %s"
msgstr "%s yoxlanır"
#: ../rpmdrake:1316
#, c-format
msgid "changes:"
msgstr "dəyişikliklər:"
#: ../rpmdrake:1320
#, c-format
msgid "Remove .%s"
msgstr "%s'i sil"
#: ../rpmdrake:1322
#, c-format
msgid "Use .%s as main file"
msgstr "%s faylını əsas fayl olaraq işlət"
#: ../rpmdrake:1324
#, c-format
msgid "Do nothing"
msgstr "Heç bir şey etmə"
#: ../rpmdrake:1337
#, c-format
msgid "Installation finished"
msgstr "Qurulum bitdi"
#: ../rpmdrake:1352
#, c-format
msgid "Inspect..."
msgstr "Təftiş Et..."
#: ../rpmdrake:1381 ../rpmdrake:1536
#, c-format
msgid "Everything installed successfully"